chore: add devkey to client keys

This commit is contained in:
Chirag Aggarwal
2025-05-01 04:54:13 +00:00
parent e3e0fed7ba
commit b1cbf8e21e
5 changed files with 31 additions and 1 deletions
@@ -10221,6 +10221,12 @@
"name": "X-Appwrite-Session",
"description": "The user session to authenticate with",
"in": "header"
},
"DevKey": {
"type": "apiKey",
"name": "X-Appwrite-DevKey",
"description": "Your secret development API key",
"in": "header"
}
}
},
@@ -10221,6 +10221,12 @@
"name": "X-Appwrite-Session",
"description": "The user session to authenticate with",
"in": "header"
},
"DevKey": {
"type": "apiKey",
"name": "X-Appwrite-DevKey",
"description": "Your secret development API key",
"in": "header"
}
}
},
@@ -61,6 +61,12 @@
"name": "X-Appwrite-Session",
"description": "The user session to authenticate with",
"in": "header"
},
"DevKey": {
"type": "apiKey",
"name": "X-Appwrite-DevKey",
"description": "Your secret development API key",
"in": "header"
}
},
"paths": {
@@ -61,6 +61,12 @@
"name": "X-Appwrite-Session",
"description": "The user session to authenticate with",
"in": "header"
},
"DevKey": {
"type": "apiKey",
"name": "X-Appwrite-DevKey",
"description": "Your secret development API key",
"in": "header"
}
},
"paths": {
+7 -1
View File
@@ -102,7 +102,13 @@ class Specs extends Action
'name' => 'X-Appwrite-Session',
'description' => 'The user session to authenticate with',
'in' => 'header',
]
],
'DevKey' => [
'type' => 'apiKey',
'name' => 'X-Appwrite-DevKey',
'description' => 'Your secret development API key',
'in' => 'header',
],
],
APP_PLATFORM_SERVER => [
'Project' => [