node-appwrite 15.0.0 → 15.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/dist/client.js +7 -4
  2. package/dist/client.js.map +1 -1
  3. package/dist/client.mjs +7 -4
  4. package/dist/client.mjs.map +1 -1
  5. package/dist/models.d.mts +2 -2
  6. package/dist/models.d.ts +2 -2
  7. package/dist/services/account.d.mts +0 -86
  8. package/dist/services/account.d.ts +0 -86
  9. package/dist/services/account.js +86 -172
  10. package/dist/services/account.js.map +1 -1
  11. package/dist/services/account.mjs +86 -172
  12. package/dist/services/account.mjs.map +1 -1
  13. package/dist/services/avatars.d.mts +0 -14
  14. package/dist/services/avatars.d.ts +0 -14
  15. package/dist/services/avatars.js +14 -28
  16. package/dist/services/avatars.js.map +1 -1
  17. package/dist/services/avatars.mjs +14 -28
  18. package/dist/services/avatars.mjs.map +1 -1
  19. package/dist/services/databases.d.mts +0 -84
  20. package/dist/services/databases.d.ts +0 -84
  21. package/dist/services/databases.js +84 -168
  22. package/dist/services/databases.js.map +1 -1
  23. package/dist/services/databases.mjs +84 -168
  24. package/dist/services/databases.mjs.map +1 -1
  25. package/dist/services/functions.d.mts +0 -48
  26. package/dist/services/functions.d.ts +0 -48
  27. package/dist/services/functions.js +48 -96
  28. package/dist/services/functions.js.map +1 -1
  29. package/dist/services/functions.mjs +48 -96
  30. package/dist/services/functions.mjs.map +1 -1
  31. package/dist/services/graphql.d.mts +0 -4
  32. package/dist/services/graphql.d.ts +0 -4
  33. package/dist/services/graphql.js +4 -8
  34. package/dist/services/graphql.js.map +1 -1
  35. package/dist/services/graphql.mjs +4 -8
  36. package/dist/services/graphql.mjs.map +1 -1
  37. package/dist/services/health.d.mts +0 -46
  38. package/dist/services/health.d.ts +0 -46
  39. package/dist/services/health.js +46 -92
  40. package/dist/services/health.js.map +1 -1
  41. package/dist/services/health.mjs +46 -92
  42. package/dist/services/health.mjs.map +1 -1
  43. package/dist/services/locale.d.mts +0 -16
  44. package/dist/services/locale.d.ts +0 -16
  45. package/dist/services/locale.js +16 -32
  46. package/dist/services/locale.js.map +1 -1
  47. package/dist/services/locale.mjs +16 -32
  48. package/dist/services/locale.mjs.map +1 -1
  49. package/dist/services/messaging.d.mts +3 -95
  50. package/dist/services/messaging.d.ts +3 -95
  51. package/dist/services/messaging.js +95 -187
  52. package/dist/services/messaging.js.map +1 -1
  53. package/dist/services/messaging.mjs +95 -187
  54. package/dist/services/messaging.mjs.map +1 -1
  55. package/dist/services/storage.d.mts +0 -26
  56. package/dist/services/storage.d.ts +0 -26
  57. package/dist/services/storage.js +26 -52
  58. package/dist/services/storage.js.map +1 -1
  59. package/dist/services/storage.mjs +26 -52
  60. package/dist/services/storage.mjs.map +1 -1
  61. package/dist/services/teams.d.mts +0 -26
  62. package/dist/services/teams.d.ts +0 -26
  63. package/dist/services/teams.js +26 -52
  64. package/dist/services/teams.js.map +1 -1
  65. package/dist/services/teams.mjs +26 -52
  66. package/dist/services/teams.mjs.map +1 -1
  67. package/dist/services/users.d.mts +0 -84
  68. package/dist/services/users.d.ts +0 -84
  69. package/dist/services/users.js +84 -168
  70. package/dist/services/users.js.map +1 -1
  71. package/dist/services/users.mjs +84 -168
  72. package/dist/services/users.mjs.map +1 -1
  73. package/package.json +1 -1
@@ -8,8 +8,6 @@ declare class Functions {
8
8
  client: Client;
9
9
  constructor(client: Client);
10
10
  /**
11
- * List functions
12
- *
13
11
  * Get a list of all the project's functions. You can use the query params to filter your results.
14
12
  *
15
13
  * @param {string[]} queries
@@ -19,8 +17,6 @@ declare class Functions {
19
17
  */
20
18
  list(queries?: string[], search?: string): Promise<Models.FunctionList>;
21
19
  /**
22
- * Create function
23
- *
24
20
  * Create a new function. You can pass a list of [permissions](https://appwrite.io/docs/permissions) to allow different project users or team with access to execute the function using the client API.
25
21
  *
26
22
  * @param {string} functionId
@@ -50,8 +46,6 @@ declare class Functions {
50
46
  */
51
47
  create(functionId: string, name: string, runtime: Runtime, execute?: string[], events?: string[], schedule?: string, timeout?: number, enabled?: boolean, logging?: boolean, entrypoint?: string, commands?: string, scopes?: string[], installationId?: string, providerRepositoryId?: string, providerBranch?: string, providerSilentMode?: boolean, providerRootDirectory?: string, templateRepository?: string, templateOwner?: string, templateRootDirectory?: string, templateVersion?: string, specification?: string): Promise<Models.Function>;
52
48
  /**
53
- * List runtimes
54
- *
55
49
  * Get a list of all runtimes that are currently active on your instance.
56
50
  *
57
51
  * @throws {AppwriteException}
@@ -59,8 +53,6 @@ declare class Functions {
59
53
  */
60
54
  listRuntimes(): Promise<Models.RuntimeList>;
61
55
  /**
62
- * List available function runtime specifications
63
- *
64
56
  * List allowed function specifications for this instance.
65
57
 
66
58
  *
@@ -69,8 +61,6 @@ declare class Functions {
69
61
  */
70
62
  listSpecifications(): Promise<Models.SpecificationList>;
71
63
  /**
72
- * Get function
73
- *
74
64
  * Get a function by its unique ID.
75
65
  *
76
66
  * @param {string} functionId
@@ -79,8 +69,6 @@ declare class Functions {
79
69
  */
80
70
  get(functionId: string): Promise<Models.Function>;
81
71
  /**
82
- * Update function
83
- *
84
72
  * Update function by its unique ID.
85
73
  *
86
74
  * @param {string} functionId
@@ -106,8 +94,6 @@ declare class Functions {
106
94
  */
107
95
  update(functionId: string, name: string, runtime?: Runtime, execute?: string[], events?: string[], schedule?: string, timeout?: number, enabled?: boolean, logging?: boolean, entrypoint?: string, commands?: string, scopes?: string[], installationId?: string, providerRepositoryId?: string, providerBranch?: string, providerSilentMode?: boolean, providerRootDirectory?: string, specification?: string): Promise<Models.Function>;
108
96
  /**
109
- * Delete function
110
- *
111
97
  * Delete a function by its unique ID.
112
98
  *
113
99
  * @param {string} functionId
@@ -116,8 +102,6 @@ declare class Functions {
116
102
  */
117
103
  delete(functionId: string): Promise<{}>;
118
104
  /**
119
- * List deployments
120
- *
121
105
  * Get a list of all the project&#039;s code deployments. You can use the query params to filter your results.
122
106
  *
123
107
  * @param {string} functionId
@@ -128,8 +112,6 @@ declare class Functions {
128
112
  */
129
113
  listDeployments(functionId: string, queries?: string[], search?: string): Promise<Models.DeploymentList>;
130
114
  /**
131
- * Create deployment
132
- *
133
115
  * Create a new function code deployment. Use this endpoint to upload a new version of your code function. To execute your newly uploaded code, you&#039;ll need to update the function&#039;s deployment to use your new deployment UID.
134
116
 
135
117
  This endpoint accepts a tar.gz file compressed with your code. Make sure to include any dependencies your code has within the compressed file. You can learn more about code packaging in the [Appwrite Cloud Functions tutorial](https://appwrite.io/docs/functions).
@@ -146,8 +128,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
146
128
  */
147
129
  createDeployment(functionId: string, code: File, activate: boolean, entrypoint?: string, commands?: string, onProgress?: (progress: UploadProgress) => void): Promise<Models.Deployment>;
148
130
  /**
149
- * Get deployment
150
- *
151
131
  * Get a code deployment by its unique ID.
152
132
  *
153
133
  * @param {string} functionId
@@ -157,8 +137,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
157
137
  */
158
138
  getDeployment(functionId: string, deploymentId: string): Promise<Models.Deployment>;
159
139
  /**
160
- * Update deployment
161
- *
162
140
  * Update the function code deployment ID using the unique function ID. Use this endpoint to switch the code deployment that should be executed by the execution endpoint.
163
141
  *
164
142
  * @param {string} functionId
@@ -168,8 +146,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
168
146
  */
169
147
  updateDeployment(functionId: string, deploymentId: string): Promise<Models.Function>;
170
148
  /**
171
- * Delete deployment
172
- *
173
149
  * Delete a code deployment by its unique ID.
174
150
  *
175
151
  * @param {string} functionId
@@ -179,8 +155,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
179
155
  */
180
156
  deleteDeployment(functionId: string, deploymentId: string): Promise<{}>;
181
157
  /**
182
- * Rebuild deployment
183
- *
184
158
  * Create a new build for an existing function deployment. This endpoint allows you to rebuild a deployment with the updated function configuration, including its entrypoint and build commands if they have been modified The build process will be queued and executed asynchronously. The original deployment&#039;s code will be preserved and used for the new build.
185
159
  *
186
160
  * @param {string} functionId
@@ -191,8 +165,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
191
165
  */
192
166
  createBuild(functionId: string, deploymentId: string, buildId?: string): Promise<{}>;
193
167
  /**
194
- * Cancel deployment
195
- *
196
168
  * Cancel an ongoing function deployment build. If the build is already in progress, it will be stopped and marked as canceled. If the build hasn&#039;t started yet, it will be marked as canceled without executing. You cannot cancel builds that have already completed (status &#039;ready&#039;) or failed. The response includes the final build status and details.
197
169
  *
198
170
  * @param {string} functionId
@@ -202,8 +174,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
202
174
  */
203
175
  updateDeploymentBuild(functionId: string, deploymentId: string): Promise<Models.Build>;
204
176
  /**
205
- * Download deployment
206
- *
207
177
  * Get a Deployment&#039;s contents by its unique ID. This endpoint supports range requests for partial or streaming file download.
208
178
  *
209
179
  * @param {string} functionId
@@ -213,8 +183,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
213
183
  */
214
184
  getDeploymentDownload(functionId: string, deploymentId: string): Promise<ArrayBuffer>;
215
185
  /**
216
- * List executions
217
- *
218
186
  * Get a list of all the current user function execution logs. You can use the query params to filter your results.
219
187
  *
220
188
  * @param {string} functionId
@@ -225,8 +193,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
225
193
  */
226
194
  listExecutions(functionId: string, queries?: string[], search?: string): Promise<Models.ExecutionList>;
227
195
  /**
228
- * Create execution
229
- *
230
196
  * Trigger a function execution. The returned object will return you the current execution status. You can ping the `Get Execution` endpoint to get updates on the current execution status. Once this endpoint is called, your function execution process will start asynchronously.
231
197
  *
232
198
  * @param {string} functionId
@@ -241,8 +207,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
241
207
  */
242
208
  createExecution(functionId: string, body?: string, async?: boolean, xpath?: string, method?: ExecutionMethod, headers?: object, scheduledAt?: string): Promise<Models.Execution>;
243
209
  /**
244
- * Get execution
245
- *
246
210
  * Get a function execution log by its unique ID.
247
211
  *
248
212
  * @param {string} functionId
@@ -252,8 +216,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
252
216
  */
253
217
  getExecution(functionId: string, executionId: string): Promise<Models.Execution>;
254
218
  /**
255
- * Delete execution
256
- *
257
219
  * Delete a function execution by its unique ID.
258
220
 
259
221
  *
@@ -264,8 +226,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
264
226
  */
265
227
  deleteExecution(functionId: string, executionId: string): Promise<{}>;
266
228
  /**
267
- * List variables
268
- *
269
229
  * Get a list of all variables of a specific function.
270
230
  *
271
231
  * @param {string} functionId
@@ -274,8 +234,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
274
234
  */
275
235
  listVariables(functionId: string): Promise<Models.VariableList>;
276
236
  /**
277
- * Create variable
278
- *
279
237
  * Create a new function environment variable. These variables can be accessed in the function at runtime as environment variables.
280
238
  *
281
239
  * @param {string} functionId
@@ -286,8 +244,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
286
244
  */
287
245
  createVariable(functionId: string, key: string, value: string): Promise<Models.Variable>;
288
246
  /**
289
- * Get variable
290
- *
291
247
  * Get a variable by its unique ID.
292
248
  *
293
249
  * @param {string} functionId
@@ -297,8 +253,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
297
253
  */
298
254
  getVariable(functionId: string, variableId: string): Promise<Models.Variable>;
299
255
  /**
300
- * Update variable
301
- *
302
256
  * Update variable by its unique ID.
303
257
  *
304
258
  * @param {string} functionId
@@ -310,8 +264,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
310
264
  */
311
265
  updateVariable(functionId: string, variableId: string, key: string, value?: string): Promise<Models.Variable>;
312
266
  /**
313
- * Delete variable
314
- *
315
267
  * Delete a variable by its unique ID.
316
268
  *
317
269
  * @param {string} functionId
@@ -8,8 +8,6 @@ declare class Functions {
8
8
  client: Client;
9
9
  constructor(client: Client);
10
10
  /**
11
- * List functions
12
- *
13
11
  * Get a list of all the project&#039;s functions. You can use the query params to filter your results.
14
12
  *
15
13
  * @param {string[]} queries
@@ -19,8 +17,6 @@ declare class Functions {
19
17
  */
20
18
  list(queries?: string[], search?: string): Promise<Models.FunctionList>;
21
19
  /**
22
- * Create function
23
- *
24
20
  * Create a new function. You can pass a list of [permissions](https://appwrite.io/docs/permissions) to allow different project users or team with access to execute the function using the client API.
25
21
  *
26
22
  * @param {string} functionId
@@ -50,8 +46,6 @@ declare class Functions {
50
46
  */
51
47
  create(functionId: string, name: string, runtime: Runtime, execute?: string[], events?: string[], schedule?: string, timeout?: number, enabled?: boolean, logging?: boolean, entrypoint?: string, commands?: string, scopes?: string[], installationId?: string, providerRepositoryId?: string, providerBranch?: string, providerSilentMode?: boolean, providerRootDirectory?: string, templateRepository?: string, templateOwner?: string, templateRootDirectory?: string, templateVersion?: string, specification?: string): Promise<Models.Function>;
52
48
  /**
53
- * List runtimes
54
- *
55
49
  * Get a list of all runtimes that are currently active on your instance.
56
50
  *
57
51
  * @throws {AppwriteException}
@@ -59,8 +53,6 @@ declare class Functions {
59
53
  */
60
54
  listRuntimes(): Promise<Models.RuntimeList>;
61
55
  /**
62
- * List available function runtime specifications
63
- *
64
56
  * List allowed function specifications for this instance.
65
57
 
66
58
  *
@@ -69,8 +61,6 @@ declare class Functions {
69
61
  */
70
62
  listSpecifications(): Promise<Models.SpecificationList>;
71
63
  /**
72
- * Get function
73
- *
74
64
  * Get a function by its unique ID.
75
65
  *
76
66
  * @param {string} functionId
@@ -79,8 +69,6 @@ declare class Functions {
79
69
  */
80
70
  get(functionId: string): Promise<Models.Function>;
81
71
  /**
82
- * Update function
83
- *
84
72
  * Update function by its unique ID.
85
73
  *
86
74
  * @param {string} functionId
@@ -106,8 +94,6 @@ declare class Functions {
106
94
  */
107
95
  update(functionId: string, name: string, runtime?: Runtime, execute?: string[], events?: string[], schedule?: string, timeout?: number, enabled?: boolean, logging?: boolean, entrypoint?: string, commands?: string, scopes?: string[], installationId?: string, providerRepositoryId?: string, providerBranch?: string, providerSilentMode?: boolean, providerRootDirectory?: string, specification?: string): Promise<Models.Function>;
108
96
  /**
109
- * Delete function
110
- *
111
97
  * Delete a function by its unique ID.
112
98
  *
113
99
  * @param {string} functionId
@@ -116,8 +102,6 @@ declare class Functions {
116
102
  */
117
103
  delete(functionId: string): Promise<{}>;
118
104
  /**
119
- * List deployments
120
- *
121
105
  * Get a list of all the project&#039;s code deployments. You can use the query params to filter your results.
122
106
  *
123
107
  * @param {string} functionId
@@ -128,8 +112,6 @@ declare class Functions {
128
112
  */
129
113
  listDeployments(functionId: string, queries?: string[], search?: string): Promise<Models.DeploymentList>;
130
114
  /**
131
- * Create deployment
132
- *
133
115
  * Create a new function code deployment. Use this endpoint to upload a new version of your code function. To execute your newly uploaded code, you&#039;ll need to update the function&#039;s deployment to use your new deployment UID.
134
116
 
135
117
  This endpoint accepts a tar.gz file compressed with your code. Make sure to include any dependencies your code has within the compressed file. You can learn more about code packaging in the [Appwrite Cloud Functions tutorial](https://appwrite.io/docs/functions).
@@ -146,8 +128,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
146
128
  */
147
129
  createDeployment(functionId: string, code: File, activate: boolean, entrypoint?: string, commands?: string, onProgress?: (progress: UploadProgress) => void): Promise<Models.Deployment>;
148
130
  /**
149
- * Get deployment
150
- *
151
131
  * Get a code deployment by its unique ID.
152
132
  *
153
133
  * @param {string} functionId
@@ -157,8 +137,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
157
137
  */
158
138
  getDeployment(functionId: string, deploymentId: string): Promise<Models.Deployment>;
159
139
  /**
160
- * Update deployment
161
- *
162
140
  * Update the function code deployment ID using the unique function ID. Use this endpoint to switch the code deployment that should be executed by the execution endpoint.
163
141
  *
164
142
  * @param {string} functionId
@@ -168,8 +146,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
168
146
  */
169
147
  updateDeployment(functionId: string, deploymentId: string): Promise<Models.Function>;
170
148
  /**
171
- * Delete deployment
172
- *
173
149
  * Delete a code deployment by its unique ID.
174
150
  *
175
151
  * @param {string} functionId
@@ -179,8 +155,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
179
155
  */
180
156
  deleteDeployment(functionId: string, deploymentId: string): Promise<{}>;
181
157
  /**
182
- * Rebuild deployment
183
- *
184
158
  * Create a new build for an existing function deployment. This endpoint allows you to rebuild a deployment with the updated function configuration, including its entrypoint and build commands if they have been modified The build process will be queued and executed asynchronously. The original deployment&#039;s code will be preserved and used for the new build.
185
159
  *
186
160
  * @param {string} functionId
@@ -191,8 +165,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
191
165
  */
192
166
  createBuild(functionId: string, deploymentId: string, buildId?: string): Promise<{}>;
193
167
  /**
194
- * Cancel deployment
195
- *
196
168
  * Cancel an ongoing function deployment build. If the build is already in progress, it will be stopped and marked as canceled. If the build hasn&#039;t started yet, it will be marked as canceled without executing. You cannot cancel builds that have already completed (status &#039;ready&#039;) or failed. The response includes the final build status and details.
197
169
  *
198
170
  * @param {string} functionId
@@ -202,8 +174,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
202
174
  */
203
175
  updateDeploymentBuild(functionId: string, deploymentId: string): Promise<Models.Build>;
204
176
  /**
205
- * Download deployment
206
- *
207
177
  * Get a Deployment&#039;s contents by its unique ID. This endpoint supports range requests for partial or streaming file download.
208
178
  *
209
179
  * @param {string} functionId
@@ -213,8 +183,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
213
183
  */
214
184
  getDeploymentDownload(functionId: string, deploymentId: string): Promise<ArrayBuffer>;
215
185
  /**
216
- * List executions
217
- *
218
186
  * Get a list of all the current user function execution logs. You can use the query params to filter your results.
219
187
  *
220
188
  * @param {string} functionId
@@ -225,8 +193,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
225
193
  */
226
194
  listExecutions(functionId: string, queries?: string[], search?: string): Promise<Models.ExecutionList>;
227
195
  /**
228
- * Create execution
229
- *
230
196
  * Trigger a function execution. The returned object will return you the current execution status. You can ping the `Get Execution` endpoint to get updates on the current execution status. Once this endpoint is called, your function execution process will start asynchronously.
231
197
  *
232
198
  * @param {string} functionId
@@ -241,8 +207,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
241
207
  */
242
208
  createExecution(functionId: string, body?: string, async?: boolean, xpath?: string, method?: ExecutionMethod, headers?: object, scheduledAt?: string): Promise<Models.Execution>;
243
209
  /**
244
- * Get execution
245
- *
246
210
  * Get a function execution log by its unique ID.
247
211
  *
248
212
  * @param {string} functionId
@@ -252,8 +216,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
252
216
  */
253
217
  getExecution(functionId: string, executionId: string): Promise<Models.Execution>;
254
218
  /**
255
- * Delete execution
256
- *
257
219
  * Delete a function execution by its unique ID.
258
220
 
259
221
  *
@@ -264,8 +226,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
264
226
  */
265
227
  deleteExecution(functionId: string, executionId: string): Promise<{}>;
266
228
  /**
267
- * List variables
268
- *
269
229
  * Get a list of all variables of a specific function.
270
230
  *
271
231
  * @param {string} functionId
@@ -274,8 +234,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
274
234
  */
275
235
  listVariables(functionId: string): Promise<Models.VariableList>;
276
236
  /**
277
- * Create variable
278
- *
279
237
  * Create a new function environment variable. These variables can be accessed in the function at runtime as environment variables.
280
238
  *
281
239
  * @param {string} functionId
@@ -286,8 +244,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
286
244
  */
287
245
  createVariable(functionId: string, key: string, value: string): Promise<Models.Variable>;
288
246
  /**
289
- * Get variable
290
- *
291
247
  * Get a variable by its unique ID.
292
248
  *
293
249
  * @param {string} functionId
@@ -297,8 +253,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
297
253
  */
298
254
  getVariable(functionId: string, variableId: string): Promise<Models.Variable>;
299
255
  /**
300
- * Update variable
301
- *
302
256
  * Update variable by its unique ID.
303
257
  *
304
258
  * @param {string} functionId
@@ -310,8 +264,6 @@ Use the &quot;command&quot; param to set the entrypoint used to execute your cod
310
264
  */
311
265
  updateVariable(functionId: string, variableId: string, key: string, value?: string): Promise<Models.Variable>;
312
266
  /**
313
- * Delete variable
314
- *
315
267
  * Delete a variable by its unique ID.
316
268
  *
317
269
  * @param {string} functionId