@appwrite.io/console 5.0.0 → 6.0.0

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 (41) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +2 -2
  3. package/dist/cjs/sdk.js +516 -285
  4. package/dist/cjs/sdk.js.map +1 -1
  5. package/dist/esm/sdk.js +516 -286
  6. package/dist/esm/sdk.js.map +1 -1
  7. package/dist/iife/sdk.js +517 -286
  8. package/docs/examples/domains/{confirm-purchase.md → update-purchase.md} +1 -1
  9. package/docs/examples/domains/{confirm-transfer-in.md → update-transfer-in.md} +1 -1
  10. package/docs/examples/{projects/update-webhook.md → webhooks/create.md} +5 -6
  11. package/docs/examples/{projects/get-webhook.md → webhooks/delete.md} +3 -4
  12. package/docs/examples/{projects/delete-webhook.md → webhooks/get.md} +3 -4
  13. package/docs/examples/{projects/list-webhooks.md → webhooks/list.md} +4 -4
  14. package/docs/examples/{projects/update-webhook-signature.md → webhooks/update-signature.md} +3 -4
  15. package/docs/examples/{projects/create-webhook.md → webhooks/update.md} +6 -6
  16. package/package.json +1 -1
  17. package/src/client.ts +1 -1
  18. package/src/enums/build-runtime.ts +86 -3
  19. package/src/enums/domain-purchase-status.ts +6 -0
  20. package/src/enums/{domain-transfer-status-status.ts → domain-transfer-status-enum.ts} +1 -1
  21. package/src/enums/runtime.ts +86 -3
  22. package/src/enums/runtimes.ts +86 -3
  23. package/src/enums/scopes.ts +2 -0
  24. package/src/index.ts +3 -2
  25. package/src/models.ts +58 -16
  26. package/src/services/domains.ts +30 -30
  27. package/src/services/projects.ts +0 -473
  28. package/src/services/webhooks.ts +451 -0
  29. package/types/enums/build-runtime.d.ts +87 -4
  30. package/types/enums/domain-purchase-status.d.ts +6 -0
  31. package/types/enums/{domain-transfer-status-status.d.ts → domain-transfer-status-enum.d.ts} +1 -1
  32. package/types/enums/runtime.d.ts +87 -4
  33. package/types/enums/runtimes.d.ts +87 -4
  34. package/types/enums/scopes.d.ts +2 -0
  35. package/types/index.d.ts +3 -2
  36. package/types/models.d.ts +57 -16
  37. package/types/services/domains.d.ts +22 -22
  38. package/types/services/projects.d.ts +0 -171
  39. package/types/services/webhooks.d.ts +165 -0
  40. package/src/enums/domain-purchase-payment-status.ts +0 -10
  41. package/types/enums/domain-purchase-payment-status.d.ts +0 -10
package/dist/iife/sdk.js CHANGED
@@ -4332,7 +4332,7 @@
4332
4332
  'x-sdk-name': 'Console',
4333
4333
  'x-sdk-platform': 'console',
4334
4334
  'x-sdk-language': 'web',
4335
- 'x-sdk-version': '5.0.0',
4335
+ 'x-sdk-version': '6.0.0',
4336
4336
  'X-Appwrite-Response-Format': '1.8.0',
4337
4337
  };
4338
4338
  this.realtime = {
@@ -11625,7 +11625,7 @@
11625
11625
  };
11626
11626
  return this.client.call('post', uri, apiHeaders, payload);
11627
11627
  }
11628
- confirmPurchase(paramsOrFirst, ...rest) {
11628
+ updatePurchase(paramsOrFirst, ...rest) {
11629
11629
  let params;
11630
11630
  if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
11631
11631
  params = (paramsOrFirst || {});
@@ -11644,7 +11644,7 @@
11644
11644
  if (typeof organizationId === 'undefined') {
11645
11645
  throw new AppwriteException('Missing required parameter: "organizationId"');
11646
11646
  }
11647
- const apiPath = '/domains/purchases/{domainId}/confirm'.replace('{domainId}', domainId);
11647
+ const apiPath = '/domains/purchases/{domainId}'.replace('{domainId}', domainId);
11648
11648
  const payload = {};
11649
11649
  if (typeof organizationId !== 'undefined') {
11650
11650
  payload['organizationId'] = organizationId;
@@ -11653,7 +11653,7 @@
11653
11653
  const apiHeaders = {
11654
11654
  'content-type': 'application/json',
11655
11655
  };
11656
- return this.client.call('post', uri, apiHeaders, payload);
11656
+ return this.client.call('patch', uri, apiHeaders, payload);
11657
11657
  }
11658
11658
  listSuggestions(paramsOrFirst, ...rest) {
11659
11659
  let params;
@@ -11752,7 +11752,7 @@
11752
11752
  };
11753
11753
  return this.client.call('post', uri, apiHeaders, payload);
11754
11754
  }
11755
- confirmTransferIn(paramsOrFirst, ...rest) {
11755
+ updateTransferIn(paramsOrFirst, ...rest) {
11756
11756
  let params;
11757
11757
  if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
11758
11758
  params = (paramsOrFirst || {});
@@ -11771,7 +11771,7 @@
11771
11771
  if (typeof organizationId === 'undefined') {
11772
11772
  throw new AppwriteException('Missing required parameter: "organizationId"');
11773
11773
  }
11774
- const apiPath = '/domains/transfers/in/{domainId}/confirm'.replace('{domainId}', domainId);
11774
+ const apiPath = '/domains/transfers/in/{domainId}'.replace('{domainId}', domainId);
11775
11775
  const payload = {};
11776
11776
  if (typeof organizationId !== 'undefined') {
11777
11777
  payload['organizationId'] = organizationId;
@@ -11780,7 +11780,7 @@
11780
11780
  const apiHeaders = {
11781
11781
  'content-type': 'application/json',
11782
11782
  };
11783
- return this.client.call('post', uri, apiHeaders, payload);
11783
+ return this.client.call('patch', uri, apiHeaders, payload);
11784
11784
  }
11785
11785
  createTransferOut(paramsOrFirst, ...rest) {
11786
11786
  let params;
@@ -22470,253 +22470,6 @@
22470
22470
  };
22471
22471
  return this.client.call('delete', uri, apiHeaders, payload);
22472
22472
  }
22473
- listWebhooks(paramsOrFirst, ...rest) {
22474
- let params;
22475
- if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
22476
- params = (paramsOrFirst || {});
22477
- }
22478
- else {
22479
- params = {
22480
- projectId: paramsOrFirst,
22481
- total: rest[0]
22482
- };
22483
- }
22484
- const projectId = params.projectId;
22485
- const total = params.total;
22486
- if (typeof projectId === 'undefined') {
22487
- throw new AppwriteException('Missing required parameter: "projectId"');
22488
- }
22489
- const apiPath = '/projects/{projectId}/webhooks'.replace('{projectId}', projectId);
22490
- const payload = {};
22491
- if (typeof total !== 'undefined') {
22492
- payload['total'] = total;
22493
- }
22494
- const uri = new URL(this.client.config.endpoint + apiPath);
22495
- const apiHeaders = {};
22496
- return this.client.call('get', uri, apiHeaders, payload);
22497
- }
22498
- createWebhook(paramsOrFirst, ...rest) {
22499
- let params;
22500
- if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
22501
- params = (paramsOrFirst || {});
22502
- }
22503
- else {
22504
- params = {
22505
- projectId: paramsOrFirst,
22506
- name: rest[0],
22507
- events: rest[1],
22508
- url: rest[2],
22509
- security: rest[3],
22510
- enabled: rest[4],
22511
- httpUser: rest[5],
22512
- httpPass: rest[6]
22513
- };
22514
- }
22515
- const projectId = params.projectId;
22516
- const name = params.name;
22517
- const events = params.events;
22518
- const url = params.url;
22519
- const security = params.security;
22520
- const enabled = params.enabled;
22521
- const httpUser = params.httpUser;
22522
- const httpPass = params.httpPass;
22523
- if (typeof projectId === 'undefined') {
22524
- throw new AppwriteException('Missing required parameter: "projectId"');
22525
- }
22526
- if (typeof name === 'undefined') {
22527
- throw new AppwriteException('Missing required parameter: "name"');
22528
- }
22529
- if (typeof events === 'undefined') {
22530
- throw new AppwriteException('Missing required parameter: "events"');
22531
- }
22532
- if (typeof url === 'undefined') {
22533
- throw new AppwriteException('Missing required parameter: "url"');
22534
- }
22535
- if (typeof security === 'undefined') {
22536
- throw new AppwriteException('Missing required parameter: "security"');
22537
- }
22538
- const apiPath = '/projects/{projectId}/webhooks'.replace('{projectId}', projectId);
22539
- const payload = {};
22540
- if (typeof name !== 'undefined') {
22541
- payload['name'] = name;
22542
- }
22543
- if (typeof enabled !== 'undefined') {
22544
- payload['enabled'] = enabled;
22545
- }
22546
- if (typeof events !== 'undefined') {
22547
- payload['events'] = events;
22548
- }
22549
- if (typeof url !== 'undefined') {
22550
- payload['url'] = url;
22551
- }
22552
- if (typeof security !== 'undefined') {
22553
- payload['security'] = security;
22554
- }
22555
- if (typeof httpUser !== 'undefined') {
22556
- payload['httpUser'] = httpUser;
22557
- }
22558
- if (typeof httpPass !== 'undefined') {
22559
- payload['httpPass'] = httpPass;
22560
- }
22561
- const uri = new URL(this.client.config.endpoint + apiPath);
22562
- const apiHeaders = {
22563
- 'content-type': 'application/json',
22564
- };
22565
- return this.client.call('post', uri, apiHeaders, payload);
22566
- }
22567
- getWebhook(paramsOrFirst, ...rest) {
22568
- let params;
22569
- if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
22570
- params = (paramsOrFirst || {});
22571
- }
22572
- else {
22573
- params = {
22574
- projectId: paramsOrFirst,
22575
- webhookId: rest[0]
22576
- };
22577
- }
22578
- const projectId = params.projectId;
22579
- const webhookId = params.webhookId;
22580
- if (typeof projectId === 'undefined') {
22581
- throw new AppwriteException('Missing required parameter: "projectId"');
22582
- }
22583
- if (typeof webhookId === 'undefined') {
22584
- throw new AppwriteException('Missing required parameter: "webhookId"');
22585
- }
22586
- const apiPath = '/projects/{projectId}/webhooks/{webhookId}'.replace('{projectId}', projectId).replace('{webhookId}', webhookId);
22587
- const payload = {};
22588
- const uri = new URL(this.client.config.endpoint + apiPath);
22589
- const apiHeaders = {};
22590
- return this.client.call('get', uri, apiHeaders, payload);
22591
- }
22592
- updateWebhook(paramsOrFirst, ...rest) {
22593
- let params;
22594
- if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
22595
- params = (paramsOrFirst || {});
22596
- }
22597
- else {
22598
- params = {
22599
- projectId: paramsOrFirst,
22600
- webhookId: rest[0],
22601
- name: rest[1],
22602
- events: rest[2],
22603
- url: rest[3],
22604
- security: rest[4],
22605
- enabled: rest[5],
22606
- httpUser: rest[6],
22607
- httpPass: rest[7]
22608
- };
22609
- }
22610
- const projectId = params.projectId;
22611
- const webhookId = params.webhookId;
22612
- const name = params.name;
22613
- const events = params.events;
22614
- const url = params.url;
22615
- const security = params.security;
22616
- const enabled = params.enabled;
22617
- const httpUser = params.httpUser;
22618
- const httpPass = params.httpPass;
22619
- if (typeof projectId === 'undefined') {
22620
- throw new AppwriteException('Missing required parameter: "projectId"');
22621
- }
22622
- if (typeof webhookId === 'undefined') {
22623
- throw new AppwriteException('Missing required parameter: "webhookId"');
22624
- }
22625
- if (typeof name === 'undefined') {
22626
- throw new AppwriteException('Missing required parameter: "name"');
22627
- }
22628
- if (typeof events === 'undefined') {
22629
- throw new AppwriteException('Missing required parameter: "events"');
22630
- }
22631
- if (typeof url === 'undefined') {
22632
- throw new AppwriteException('Missing required parameter: "url"');
22633
- }
22634
- if (typeof security === 'undefined') {
22635
- throw new AppwriteException('Missing required parameter: "security"');
22636
- }
22637
- const apiPath = '/projects/{projectId}/webhooks/{webhookId}'.replace('{projectId}', projectId).replace('{webhookId}', webhookId);
22638
- const payload = {};
22639
- if (typeof name !== 'undefined') {
22640
- payload['name'] = name;
22641
- }
22642
- if (typeof enabled !== 'undefined') {
22643
- payload['enabled'] = enabled;
22644
- }
22645
- if (typeof events !== 'undefined') {
22646
- payload['events'] = events;
22647
- }
22648
- if (typeof url !== 'undefined') {
22649
- payload['url'] = url;
22650
- }
22651
- if (typeof security !== 'undefined') {
22652
- payload['security'] = security;
22653
- }
22654
- if (typeof httpUser !== 'undefined') {
22655
- payload['httpUser'] = httpUser;
22656
- }
22657
- if (typeof httpPass !== 'undefined') {
22658
- payload['httpPass'] = httpPass;
22659
- }
22660
- const uri = new URL(this.client.config.endpoint + apiPath);
22661
- const apiHeaders = {
22662
- 'content-type': 'application/json',
22663
- };
22664
- return this.client.call('put', uri, apiHeaders, payload);
22665
- }
22666
- deleteWebhook(paramsOrFirst, ...rest) {
22667
- let params;
22668
- if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
22669
- params = (paramsOrFirst || {});
22670
- }
22671
- else {
22672
- params = {
22673
- projectId: paramsOrFirst,
22674
- webhookId: rest[0]
22675
- };
22676
- }
22677
- const projectId = params.projectId;
22678
- const webhookId = params.webhookId;
22679
- if (typeof projectId === 'undefined') {
22680
- throw new AppwriteException('Missing required parameter: "projectId"');
22681
- }
22682
- if (typeof webhookId === 'undefined') {
22683
- throw new AppwriteException('Missing required parameter: "webhookId"');
22684
- }
22685
- const apiPath = '/projects/{projectId}/webhooks/{webhookId}'.replace('{projectId}', projectId).replace('{webhookId}', webhookId);
22686
- const payload = {};
22687
- const uri = new URL(this.client.config.endpoint + apiPath);
22688
- const apiHeaders = {
22689
- 'content-type': 'application/json',
22690
- };
22691
- return this.client.call('delete', uri, apiHeaders, payload);
22692
- }
22693
- updateWebhookSignature(paramsOrFirst, ...rest) {
22694
- let params;
22695
- if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
22696
- params = (paramsOrFirst || {});
22697
- }
22698
- else {
22699
- params = {
22700
- projectId: paramsOrFirst,
22701
- webhookId: rest[0]
22702
- };
22703
- }
22704
- const projectId = params.projectId;
22705
- const webhookId = params.webhookId;
22706
- if (typeof projectId === 'undefined') {
22707
- throw new AppwriteException('Missing required parameter: "projectId"');
22708
- }
22709
- if (typeof webhookId === 'undefined') {
22710
- throw new AppwriteException('Missing required parameter: "webhookId"');
22711
- }
22712
- const apiPath = '/projects/{projectId}/webhooks/{webhookId}/signature'.replace('{projectId}', projectId).replace('{webhookId}', webhookId);
22713
- const payload = {};
22714
- const uri = new URL(this.client.config.endpoint + apiPath);
22715
- const apiHeaders = {
22716
- 'content-type': 'application/json',
22717
- };
22718
- return this.client.call('patch', uri, apiHeaders, payload);
22719
- }
22720
22473
  }
22721
22474
 
22722
22475
  class Proxy {
@@ -30422,6 +30175,236 @@
30422
30175
  }
30423
30176
  }
30424
30177
 
30178
+ class Webhooks {
30179
+ constructor(client) {
30180
+ this.client = client;
30181
+ }
30182
+ list(paramsOrFirst, ...rest) {
30183
+ let params;
30184
+ if (!paramsOrFirst || (paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
30185
+ params = (paramsOrFirst || {});
30186
+ }
30187
+ else {
30188
+ params = {
30189
+ queries: paramsOrFirst,
30190
+ total: rest[0]
30191
+ };
30192
+ }
30193
+ const queries = params.queries;
30194
+ const total = params.total;
30195
+ const apiPath = '/webhooks';
30196
+ const payload = {};
30197
+ if (typeof queries !== 'undefined') {
30198
+ payload['queries'] = queries;
30199
+ }
30200
+ if (typeof total !== 'undefined') {
30201
+ payload['total'] = total;
30202
+ }
30203
+ const uri = new URL(this.client.config.endpoint + apiPath);
30204
+ const apiHeaders = {};
30205
+ return this.client.call('get', uri, apiHeaders, payload);
30206
+ }
30207
+ create(paramsOrFirst, ...rest) {
30208
+ let params;
30209
+ if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
30210
+ params = (paramsOrFirst || {});
30211
+ }
30212
+ else {
30213
+ params = {
30214
+ webhookId: paramsOrFirst,
30215
+ url: rest[0],
30216
+ name: rest[1],
30217
+ events: rest[2],
30218
+ enabled: rest[3],
30219
+ security: rest[4],
30220
+ httpUser: rest[5],
30221
+ httpPass: rest[6]
30222
+ };
30223
+ }
30224
+ const webhookId = params.webhookId;
30225
+ const url = params.url;
30226
+ const name = params.name;
30227
+ const events = params.events;
30228
+ const enabled = params.enabled;
30229
+ const security = params.security;
30230
+ const httpUser = params.httpUser;
30231
+ const httpPass = params.httpPass;
30232
+ if (typeof webhookId === 'undefined') {
30233
+ throw new AppwriteException('Missing required parameter: "webhookId"');
30234
+ }
30235
+ if (typeof url === 'undefined') {
30236
+ throw new AppwriteException('Missing required parameter: "url"');
30237
+ }
30238
+ if (typeof name === 'undefined') {
30239
+ throw new AppwriteException('Missing required parameter: "name"');
30240
+ }
30241
+ if (typeof events === 'undefined') {
30242
+ throw new AppwriteException('Missing required parameter: "events"');
30243
+ }
30244
+ const apiPath = '/webhooks';
30245
+ const payload = {};
30246
+ if (typeof webhookId !== 'undefined') {
30247
+ payload['webhookId'] = webhookId;
30248
+ }
30249
+ if (typeof url !== 'undefined') {
30250
+ payload['url'] = url;
30251
+ }
30252
+ if (typeof name !== 'undefined') {
30253
+ payload['name'] = name;
30254
+ }
30255
+ if (typeof events !== 'undefined') {
30256
+ payload['events'] = events;
30257
+ }
30258
+ if (typeof enabled !== 'undefined') {
30259
+ payload['enabled'] = enabled;
30260
+ }
30261
+ if (typeof security !== 'undefined') {
30262
+ payload['security'] = security;
30263
+ }
30264
+ if (typeof httpUser !== 'undefined') {
30265
+ payload['httpUser'] = httpUser;
30266
+ }
30267
+ if (typeof httpPass !== 'undefined') {
30268
+ payload['httpPass'] = httpPass;
30269
+ }
30270
+ const uri = new URL(this.client.config.endpoint + apiPath);
30271
+ const apiHeaders = {
30272
+ 'content-type': 'application/json',
30273
+ };
30274
+ return this.client.call('post', uri, apiHeaders, payload);
30275
+ }
30276
+ get(paramsOrFirst) {
30277
+ let params;
30278
+ if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
30279
+ params = (paramsOrFirst || {});
30280
+ }
30281
+ else {
30282
+ params = {
30283
+ webhookId: paramsOrFirst
30284
+ };
30285
+ }
30286
+ const webhookId = params.webhookId;
30287
+ if (typeof webhookId === 'undefined') {
30288
+ throw new AppwriteException('Missing required parameter: "webhookId"');
30289
+ }
30290
+ const apiPath = '/webhooks/{webhookId}'.replace('{webhookId}', webhookId);
30291
+ const payload = {};
30292
+ const uri = new URL(this.client.config.endpoint + apiPath);
30293
+ const apiHeaders = {};
30294
+ return this.client.call('get', uri, apiHeaders, payload);
30295
+ }
30296
+ update(paramsOrFirst, ...rest) {
30297
+ let params;
30298
+ if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
30299
+ params = (paramsOrFirst || {});
30300
+ }
30301
+ else {
30302
+ params = {
30303
+ webhookId: paramsOrFirst,
30304
+ name: rest[0],
30305
+ url: rest[1],
30306
+ events: rest[2],
30307
+ enabled: rest[3],
30308
+ security: rest[4],
30309
+ httpUser: rest[5],
30310
+ httpPass: rest[6]
30311
+ };
30312
+ }
30313
+ const webhookId = params.webhookId;
30314
+ const name = params.name;
30315
+ const url = params.url;
30316
+ const events = params.events;
30317
+ const enabled = params.enabled;
30318
+ const security = params.security;
30319
+ const httpUser = params.httpUser;
30320
+ const httpPass = params.httpPass;
30321
+ if (typeof webhookId === 'undefined') {
30322
+ throw new AppwriteException('Missing required parameter: "webhookId"');
30323
+ }
30324
+ if (typeof name === 'undefined') {
30325
+ throw new AppwriteException('Missing required parameter: "name"');
30326
+ }
30327
+ if (typeof url === 'undefined') {
30328
+ throw new AppwriteException('Missing required parameter: "url"');
30329
+ }
30330
+ if (typeof events === 'undefined') {
30331
+ throw new AppwriteException('Missing required parameter: "events"');
30332
+ }
30333
+ const apiPath = '/webhooks/{webhookId}'.replace('{webhookId}', webhookId);
30334
+ const payload = {};
30335
+ if (typeof name !== 'undefined') {
30336
+ payload['name'] = name;
30337
+ }
30338
+ if (typeof url !== 'undefined') {
30339
+ payload['url'] = url;
30340
+ }
30341
+ if (typeof events !== 'undefined') {
30342
+ payload['events'] = events;
30343
+ }
30344
+ if (typeof enabled !== 'undefined') {
30345
+ payload['enabled'] = enabled;
30346
+ }
30347
+ if (typeof security !== 'undefined') {
30348
+ payload['security'] = security;
30349
+ }
30350
+ if (typeof httpUser !== 'undefined') {
30351
+ payload['httpUser'] = httpUser;
30352
+ }
30353
+ if (typeof httpPass !== 'undefined') {
30354
+ payload['httpPass'] = httpPass;
30355
+ }
30356
+ const uri = new URL(this.client.config.endpoint + apiPath);
30357
+ const apiHeaders = {
30358
+ 'content-type': 'application/json',
30359
+ };
30360
+ return this.client.call('put', uri, apiHeaders, payload);
30361
+ }
30362
+ delete(paramsOrFirst) {
30363
+ let params;
30364
+ if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
30365
+ params = (paramsOrFirst || {});
30366
+ }
30367
+ else {
30368
+ params = {
30369
+ webhookId: paramsOrFirst
30370
+ };
30371
+ }
30372
+ const webhookId = params.webhookId;
30373
+ if (typeof webhookId === 'undefined') {
30374
+ throw new AppwriteException('Missing required parameter: "webhookId"');
30375
+ }
30376
+ const apiPath = '/webhooks/{webhookId}'.replace('{webhookId}', webhookId);
30377
+ const payload = {};
30378
+ const uri = new URL(this.client.config.endpoint + apiPath);
30379
+ const apiHeaders = {
30380
+ 'content-type': 'application/json',
30381
+ };
30382
+ return this.client.call('delete', uri, apiHeaders, payload);
30383
+ }
30384
+ updateSignature(paramsOrFirst) {
30385
+ let params;
30386
+ if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
30387
+ params = (paramsOrFirst || {});
30388
+ }
30389
+ else {
30390
+ params = {
30391
+ webhookId: paramsOrFirst
30392
+ };
30393
+ }
30394
+ const webhookId = params.webhookId;
30395
+ if (typeof webhookId === 'undefined') {
30396
+ throw new AppwriteException('Missing required parameter: "webhookId"');
30397
+ }
30398
+ const apiPath = '/webhooks/{webhookId}/signature'.replace('{webhookId}', webhookId);
30399
+ const payload = {};
30400
+ const uri = new URL(this.client.config.endpoint + apiPath);
30401
+ const apiHeaders = {
30402
+ 'content-type': 'application/json',
30403
+ };
30404
+ return this.client.call('patch', uri, apiHeaders, payload);
30405
+ }
30406
+ }
30407
+
30425
30408
  var RealtimeCode;
30426
30409
  (function (RealtimeCode) {
30427
30410
  RealtimeCode[RealtimeCode["NORMAL_CLOSURE"] = 1000] = "NORMAL_CLOSURE";
@@ -31441,6 +31424,8 @@
31441
31424
  Scopes["AssistantRead"] = "assistant.read";
31442
31425
  Scopes["TokensRead"] = "tokens.read";
31443
31426
  Scopes["TokensWrite"] = "tokens.write";
31427
+ Scopes["WebhooksRead"] = "webhooks.read";
31428
+ Scopes["WebhooksWrite"] = "webhooks.write";
31444
31429
  Scopes["PoliciesWrite"] = "policies.write";
31445
31430
  Scopes["PoliciesRead"] = "policies.read";
31446
31431
  Scopes["ArchivesRead"] = "archives.read";
@@ -32311,9 +32296,6 @@
32311
32296
  Runtime["Pythonml311"] = "python-ml-3.11";
32312
32297
  Runtime["Pythonml312"] = "python-ml-3.12";
32313
32298
  Runtime["Pythonml313"] = "python-ml-3.13";
32314
- Runtime["Deno121"] = "deno-1.21";
32315
- Runtime["Deno124"] = "deno-1.24";
32316
- Runtime["Deno135"] = "deno-1.35";
32317
32299
  Runtime["Deno140"] = "deno-1.40";
32318
32300
  Runtime["Deno146"] = "deno-1.46";
32319
32301
  Runtime["Deno20"] = "deno-2.0";
@@ -32369,6 +32351,92 @@
32369
32351
  Runtime["Flutter332"] = "flutter-3.32";
32370
32352
  Runtime["Flutter335"] = "flutter-3.35";
32371
32353
  Runtime["Flutter338"] = "flutter-3.38";
32354
+ Runtime["Node145rc"] = "node-14.5-rc";
32355
+ Runtime["Node160rc"] = "node-16.0-rc";
32356
+ Runtime["Node180rc"] = "node-18.0-rc";
32357
+ Runtime["Node190rc"] = "node-19.0-rc";
32358
+ Runtime["Node200rc"] = "node-20.0-rc";
32359
+ Runtime["Node210rc"] = "node-21.0-rc";
32360
+ Runtime["Node22rc"] = "node-22-rc";
32361
+ Runtime["Node23rc"] = "node-23-rc";
32362
+ Runtime["Node24rc"] = "node-24-rc";
32363
+ Runtime["Node25rc"] = "node-25-rc";
32364
+ Runtime["Php80rc"] = "php-8.0-rc";
32365
+ Runtime["Php81rc"] = "php-8.1-rc";
32366
+ Runtime["Php82rc"] = "php-8.2-rc";
32367
+ Runtime["Php83rc"] = "php-8.3-rc";
32368
+ Runtime["Php84rc"] = "php-8.4-rc";
32369
+ Runtime["Ruby30rc"] = "ruby-3.0-rc";
32370
+ Runtime["Ruby31rc"] = "ruby-3.1-rc";
32371
+ Runtime["Ruby32rc"] = "ruby-3.2-rc";
32372
+ Runtime["Ruby33rc"] = "ruby-3.3-rc";
32373
+ Runtime["Ruby34rc"] = "ruby-3.4-rc";
32374
+ Runtime["Ruby40rc"] = "ruby-4.0-rc";
32375
+ Runtime["Python38rc"] = "python-3.8-rc";
32376
+ Runtime["Python39rc"] = "python-3.9-rc";
32377
+ Runtime["Python310rc"] = "python-3.10-rc";
32378
+ Runtime["Python311rc"] = "python-3.11-rc";
32379
+ Runtime["Python312rc"] = "python-3.12-rc";
32380
+ Runtime["Python313rc"] = "python-3.13-rc";
32381
+ Runtime["Python314rc"] = "python-3.14-rc";
32382
+ Runtime["Pythonml311rc"] = "python-ml-3.11-rc";
32383
+ Runtime["Pythonml312rc"] = "python-ml-3.12-rc";
32384
+ Runtime["Pythonml313rc"] = "python-ml-3.13-rc";
32385
+ Runtime["Deno140rc"] = "deno-1.40-rc";
32386
+ Runtime["Deno146rc"] = "deno-1.46-rc";
32387
+ Runtime["Deno20rc"] = "deno-2.0-rc";
32388
+ Runtime["Deno25rc"] = "deno-2.5-rc";
32389
+ Runtime["Deno26rc"] = "deno-2.6-rc";
32390
+ Runtime["Dart215rc"] = "dart-2.15-rc";
32391
+ Runtime["Dart216rc"] = "dart-2.16-rc";
32392
+ Runtime["Dart217rc"] = "dart-2.17-rc";
32393
+ Runtime["Dart218rc"] = "dart-2.18-rc";
32394
+ Runtime["Dart219rc"] = "dart-2.19-rc";
32395
+ Runtime["Dart30rc"] = "dart-3.0-rc";
32396
+ Runtime["Dart31rc"] = "dart-3.1-rc";
32397
+ Runtime["Dart33rc"] = "dart-3.3-rc";
32398
+ Runtime["Dart35rc"] = "dart-3.5-rc";
32399
+ Runtime["Dart38rc"] = "dart-3.8-rc";
32400
+ Runtime["Dart39rc"] = "dart-3.9-rc";
32401
+ Runtime["Dart310rc"] = "dart-3.10-rc";
32402
+ Runtime["Dotnet60rc"] = "dotnet-6.0-rc";
32403
+ Runtime["Dotnet70rc"] = "dotnet-7.0-rc";
32404
+ Runtime["Dotnet80rc"] = "dotnet-8.0-rc";
32405
+ Runtime["Dotnet10rc"] = "dotnet-10-rc";
32406
+ Runtime["Java80rc"] = "java-8.0-rc";
32407
+ Runtime["Java110rc"] = "java-11.0-rc";
32408
+ Runtime["Java170rc"] = "java-17.0-rc";
32409
+ Runtime["Java180rc"] = "java-18.0-rc";
32410
+ Runtime["Java210rc"] = "java-21.0-rc";
32411
+ Runtime["Java22rc"] = "java-22-rc";
32412
+ Runtime["Java25rc"] = "java-25-rc";
32413
+ Runtime["Swift55rc"] = "swift-5.5-rc";
32414
+ Runtime["Swift58rc"] = "swift-5.8-rc";
32415
+ Runtime["Swift59rc"] = "swift-5.9-rc";
32416
+ Runtime["Swift510rc"] = "swift-5.10-rc";
32417
+ Runtime["Swift62rc"] = "swift-6.2-rc";
32418
+ Runtime["Kotlin16rc"] = "kotlin-1.6-rc";
32419
+ Runtime["Kotlin18rc"] = "kotlin-1.8-rc";
32420
+ Runtime["Kotlin19rc"] = "kotlin-1.9-rc";
32421
+ Runtime["Kotlin20rc"] = "kotlin-2.0-rc";
32422
+ Runtime["Kotlin23rc"] = "kotlin-2.3-rc";
32423
+ Runtime["Cpp17rc"] = "cpp-17-rc";
32424
+ Runtime["Cpp20rc"] = "cpp-20-rc";
32425
+ Runtime["Bun10rc"] = "bun-1.0-rc";
32426
+ Runtime["Bun11rc"] = "bun-1.1-rc";
32427
+ Runtime["Bun12rc"] = "bun-1.2-rc";
32428
+ Runtime["Bun13rc"] = "bun-1.3-rc";
32429
+ Runtime["Go123rc"] = "go-1.23-rc";
32430
+ Runtime["Go124rc"] = "go-1.24-rc";
32431
+ Runtime["Go125rc"] = "go-1.25-rc";
32432
+ Runtime["Go126rc"] = "go-1.26-rc";
32433
+ Runtime["Static1rc"] = "static-1-rc";
32434
+ Runtime["Flutter324rc"] = "flutter-3.24-rc";
32435
+ Runtime["Flutter327rc"] = "flutter-3.27-rc";
32436
+ Runtime["Flutter329rc"] = "flutter-3.29-rc";
32437
+ Runtime["Flutter332rc"] = "flutter-3.32-rc";
32438
+ Runtime["Flutter335rc"] = "flutter-3.35-rc";
32439
+ Runtime["Flutter338rc"] = "flutter-3.38-rc";
32372
32440
  })(exports.Runtime || (exports.Runtime = {}));
32373
32441
 
32374
32442
  exports.Runtimes = void 0;
@@ -32404,9 +32472,6 @@
32404
32472
  Runtimes["Pythonml311"] = "python-ml-3.11";
32405
32473
  Runtimes["Pythonml312"] = "python-ml-3.12";
32406
32474
  Runtimes["Pythonml313"] = "python-ml-3.13";
32407
- Runtimes["Deno121"] = "deno-1.21";
32408
- Runtimes["Deno124"] = "deno-1.24";
32409
- Runtimes["Deno135"] = "deno-1.35";
32410
32475
  Runtimes["Deno140"] = "deno-1.40";
32411
32476
  Runtimes["Deno146"] = "deno-1.46";
32412
32477
  Runtimes["Deno20"] = "deno-2.0";
@@ -32462,6 +32527,92 @@
32462
32527
  Runtimes["Flutter332"] = "flutter-3.32";
32463
32528
  Runtimes["Flutter335"] = "flutter-3.35";
32464
32529
  Runtimes["Flutter338"] = "flutter-3.38";
32530
+ Runtimes["Node145rc"] = "node-14.5-rc";
32531
+ Runtimes["Node160rc"] = "node-16.0-rc";
32532
+ Runtimes["Node180rc"] = "node-18.0-rc";
32533
+ Runtimes["Node190rc"] = "node-19.0-rc";
32534
+ Runtimes["Node200rc"] = "node-20.0-rc";
32535
+ Runtimes["Node210rc"] = "node-21.0-rc";
32536
+ Runtimes["Node22rc"] = "node-22-rc";
32537
+ Runtimes["Node23rc"] = "node-23-rc";
32538
+ Runtimes["Node24rc"] = "node-24-rc";
32539
+ Runtimes["Node25rc"] = "node-25-rc";
32540
+ Runtimes["Php80rc"] = "php-8.0-rc";
32541
+ Runtimes["Php81rc"] = "php-8.1-rc";
32542
+ Runtimes["Php82rc"] = "php-8.2-rc";
32543
+ Runtimes["Php83rc"] = "php-8.3-rc";
32544
+ Runtimes["Php84rc"] = "php-8.4-rc";
32545
+ Runtimes["Ruby30rc"] = "ruby-3.0-rc";
32546
+ Runtimes["Ruby31rc"] = "ruby-3.1-rc";
32547
+ Runtimes["Ruby32rc"] = "ruby-3.2-rc";
32548
+ Runtimes["Ruby33rc"] = "ruby-3.3-rc";
32549
+ Runtimes["Ruby34rc"] = "ruby-3.4-rc";
32550
+ Runtimes["Ruby40rc"] = "ruby-4.0-rc";
32551
+ Runtimes["Python38rc"] = "python-3.8-rc";
32552
+ Runtimes["Python39rc"] = "python-3.9-rc";
32553
+ Runtimes["Python310rc"] = "python-3.10-rc";
32554
+ Runtimes["Python311rc"] = "python-3.11-rc";
32555
+ Runtimes["Python312rc"] = "python-3.12-rc";
32556
+ Runtimes["Python313rc"] = "python-3.13-rc";
32557
+ Runtimes["Python314rc"] = "python-3.14-rc";
32558
+ Runtimes["Pythonml311rc"] = "python-ml-3.11-rc";
32559
+ Runtimes["Pythonml312rc"] = "python-ml-3.12-rc";
32560
+ Runtimes["Pythonml313rc"] = "python-ml-3.13-rc";
32561
+ Runtimes["Deno140rc"] = "deno-1.40-rc";
32562
+ Runtimes["Deno146rc"] = "deno-1.46-rc";
32563
+ Runtimes["Deno20rc"] = "deno-2.0-rc";
32564
+ Runtimes["Deno25rc"] = "deno-2.5-rc";
32565
+ Runtimes["Deno26rc"] = "deno-2.6-rc";
32566
+ Runtimes["Dart215rc"] = "dart-2.15-rc";
32567
+ Runtimes["Dart216rc"] = "dart-2.16-rc";
32568
+ Runtimes["Dart217rc"] = "dart-2.17-rc";
32569
+ Runtimes["Dart218rc"] = "dart-2.18-rc";
32570
+ Runtimes["Dart219rc"] = "dart-2.19-rc";
32571
+ Runtimes["Dart30rc"] = "dart-3.0-rc";
32572
+ Runtimes["Dart31rc"] = "dart-3.1-rc";
32573
+ Runtimes["Dart33rc"] = "dart-3.3-rc";
32574
+ Runtimes["Dart35rc"] = "dart-3.5-rc";
32575
+ Runtimes["Dart38rc"] = "dart-3.8-rc";
32576
+ Runtimes["Dart39rc"] = "dart-3.9-rc";
32577
+ Runtimes["Dart310rc"] = "dart-3.10-rc";
32578
+ Runtimes["Dotnet60rc"] = "dotnet-6.0-rc";
32579
+ Runtimes["Dotnet70rc"] = "dotnet-7.0-rc";
32580
+ Runtimes["Dotnet80rc"] = "dotnet-8.0-rc";
32581
+ Runtimes["Dotnet10rc"] = "dotnet-10-rc";
32582
+ Runtimes["Java80rc"] = "java-8.0-rc";
32583
+ Runtimes["Java110rc"] = "java-11.0-rc";
32584
+ Runtimes["Java170rc"] = "java-17.0-rc";
32585
+ Runtimes["Java180rc"] = "java-18.0-rc";
32586
+ Runtimes["Java210rc"] = "java-21.0-rc";
32587
+ Runtimes["Java22rc"] = "java-22-rc";
32588
+ Runtimes["Java25rc"] = "java-25-rc";
32589
+ Runtimes["Swift55rc"] = "swift-5.5-rc";
32590
+ Runtimes["Swift58rc"] = "swift-5.8-rc";
32591
+ Runtimes["Swift59rc"] = "swift-5.9-rc";
32592
+ Runtimes["Swift510rc"] = "swift-5.10-rc";
32593
+ Runtimes["Swift62rc"] = "swift-6.2-rc";
32594
+ Runtimes["Kotlin16rc"] = "kotlin-1.6-rc";
32595
+ Runtimes["Kotlin18rc"] = "kotlin-1.8-rc";
32596
+ Runtimes["Kotlin19rc"] = "kotlin-1.9-rc";
32597
+ Runtimes["Kotlin20rc"] = "kotlin-2.0-rc";
32598
+ Runtimes["Kotlin23rc"] = "kotlin-2.3-rc";
32599
+ Runtimes["Cpp17rc"] = "cpp-17-rc";
32600
+ Runtimes["Cpp20rc"] = "cpp-20-rc";
32601
+ Runtimes["Bun10rc"] = "bun-1.0-rc";
32602
+ Runtimes["Bun11rc"] = "bun-1.1-rc";
32603
+ Runtimes["Bun12rc"] = "bun-1.2-rc";
32604
+ Runtimes["Bun13rc"] = "bun-1.3-rc";
32605
+ Runtimes["Go123rc"] = "go-1.23-rc";
32606
+ Runtimes["Go124rc"] = "go-1.24-rc";
32607
+ Runtimes["Go125rc"] = "go-1.25-rc";
32608
+ Runtimes["Go126rc"] = "go-1.26-rc";
32609
+ Runtimes["Static1rc"] = "static-1-rc";
32610
+ Runtimes["Flutter324rc"] = "flutter-3.24-rc";
32611
+ Runtimes["Flutter327rc"] = "flutter-3.27-rc";
32612
+ Runtimes["Flutter329rc"] = "flutter-3.29-rc";
32613
+ Runtimes["Flutter332rc"] = "flutter-3.32-rc";
32614
+ Runtimes["Flutter335rc"] = "flutter-3.35-rc";
32615
+ Runtimes["Flutter338rc"] = "flutter-3.38-rc";
32465
32616
  })(exports.Runtimes || (exports.Runtimes = {}));
32466
32617
 
32467
32618
  exports.UseCases = void 0;
@@ -33053,9 +33204,6 @@
33053
33204
  BuildRuntime["Pythonml311"] = "python-ml-3.11";
33054
33205
  BuildRuntime["Pythonml312"] = "python-ml-3.12";
33055
33206
  BuildRuntime["Pythonml313"] = "python-ml-3.13";
33056
- BuildRuntime["Deno121"] = "deno-1.21";
33057
- BuildRuntime["Deno124"] = "deno-1.24";
33058
- BuildRuntime["Deno135"] = "deno-1.35";
33059
33207
  BuildRuntime["Deno140"] = "deno-1.40";
33060
33208
  BuildRuntime["Deno146"] = "deno-1.46";
33061
33209
  BuildRuntime["Deno20"] = "deno-2.0";
@@ -33111,6 +33259,92 @@
33111
33259
  BuildRuntime["Flutter332"] = "flutter-3.32";
33112
33260
  BuildRuntime["Flutter335"] = "flutter-3.35";
33113
33261
  BuildRuntime["Flutter338"] = "flutter-3.38";
33262
+ BuildRuntime["Node145rc"] = "node-14.5-rc";
33263
+ BuildRuntime["Node160rc"] = "node-16.0-rc";
33264
+ BuildRuntime["Node180rc"] = "node-18.0-rc";
33265
+ BuildRuntime["Node190rc"] = "node-19.0-rc";
33266
+ BuildRuntime["Node200rc"] = "node-20.0-rc";
33267
+ BuildRuntime["Node210rc"] = "node-21.0-rc";
33268
+ BuildRuntime["Node22rc"] = "node-22-rc";
33269
+ BuildRuntime["Node23rc"] = "node-23-rc";
33270
+ BuildRuntime["Node24rc"] = "node-24-rc";
33271
+ BuildRuntime["Node25rc"] = "node-25-rc";
33272
+ BuildRuntime["Php80rc"] = "php-8.0-rc";
33273
+ BuildRuntime["Php81rc"] = "php-8.1-rc";
33274
+ BuildRuntime["Php82rc"] = "php-8.2-rc";
33275
+ BuildRuntime["Php83rc"] = "php-8.3-rc";
33276
+ BuildRuntime["Php84rc"] = "php-8.4-rc";
33277
+ BuildRuntime["Ruby30rc"] = "ruby-3.0-rc";
33278
+ BuildRuntime["Ruby31rc"] = "ruby-3.1-rc";
33279
+ BuildRuntime["Ruby32rc"] = "ruby-3.2-rc";
33280
+ BuildRuntime["Ruby33rc"] = "ruby-3.3-rc";
33281
+ BuildRuntime["Ruby34rc"] = "ruby-3.4-rc";
33282
+ BuildRuntime["Ruby40rc"] = "ruby-4.0-rc";
33283
+ BuildRuntime["Python38rc"] = "python-3.8-rc";
33284
+ BuildRuntime["Python39rc"] = "python-3.9-rc";
33285
+ BuildRuntime["Python310rc"] = "python-3.10-rc";
33286
+ BuildRuntime["Python311rc"] = "python-3.11-rc";
33287
+ BuildRuntime["Python312rc"] = "python-3.12-rc";
33288
+ BuildRuntime["Python313rc"] = "python-3.13-rc";
33289
+ BuildRuntime["Python314rc"] = "python-3.14-rc";
33290
+ BuildRuntime["Pythonml311rc"] = "python-ml-3.11-rc";
33291
+ BuildRuntime["Pythonml312rc"] = "python-ml-3.12-rc";
33292
+ BuildRuntime["Pythonml313rc"] = "python-ml-3.13-rc";
33293
+ BuildRuntime["Deno140rc"] = "deno-1.40-rc";
33294
+ BuildRuntime["Deno146rc"] = "deno-1.46-rc";
33295
+ BuildRuntime["Deno20rc"] = "deno-2.0-rc";
33296
+ BuildRuntime["Deno25rc"] = "deno-2.5-rc";
33297
+ BuildRuntime["Deno26rc"] = "deno-2.6-rc";
33298
+ BuildRuntime["Dart215rc"] = "dart-2.15-rc";
33299
+ BuildRuntime["Dart216rc"] = "dart-2.16-rc";
33300
+ BuildRuntime["Dart217rc"] = "dart-2.17-rc";
33301
+ BuildRuntime["Dart218rc"] = "dart-2.18-rc";
33302
+ BuildRuntime["Dart219rc"] = "dart-2.19-rc";
33303
+ BuildRuntime["Dart30rc"] = "dart-3.0-rc";
33304
+ BuildRuntime["Dart31rc"] = "dart-3.1-rc";
33305
+ BuildRuntime["Dart33rc"] = "dart-3.3-rc";
33306
+ BuildRuntime["Dart35rc"] = "dart-3.5-rc";
33307
+ BuildRuntime["Dart38rc"] = "dart-3.8-rc";
33308
+ BuildRuntime["Dart39rc"] = "dart-3.9-rc";
33309
+ BuildRuntime["Dart310rc"] = "dart-3.10-rc";
33310
+ BuildRuntime["Dotnet60rc"] = "dotnet-6.0-rc";
33311
+ BuildRuntime["Dotnet70rc"] = "dotnet-7.0-rc";
33312
+ BuildRuntime["Dotnet80rc"] = "dotnet-8.0-rc";
33313
+ BuildRuntime["Dotnet10rc"] = "dotnet-10-rc";
33314
+ BuildRuntime["Java80rc"] = "java-8.0-rc";
33315
+ BuildRuntime["Java110rc"] = "java-11.0-rc";
33316
+ BuildRuntime["Java170rc"] = "java-17.0-rc";
33317
+ BuildRuntime["Java180rc"] = "java-18.0-rc";
33318
+ BuildRuntime["Java210rc"] = "java-21.0-rc";
33319
+ BuildRuntime["Java22rc"] = "java-22-rc";
33320
+ BuildRuntime["Java25rc"] = "java-25-rc";
33321
+ BuildRuntime["Swift55rc"] = "swift-5.5-rc";
33322
+ BuildRuntime["Swift58rc"] = "swift-5.8-rc";
33323
+ BuildRuntime["Swift59rc"] = "swift-5.9-rc";
33324
+ BuildRuntime["Swift510rc"] = "swift-5.10-rc";
33325
+ BuildRuntime["Swift62rc"] = "swift-6.2-rc";
33326
+ BuildRuntime["Kotlin16rc"] = "kotlin-1.6-rc";
33327
+ BuildRuntime["Kotlin18rc"] = "kotlin-1.8-rc";
33328
+ BuildRuntime["Kotlin19rc"] = "kotlin-1.9-rc";
33329
+ BuildRuntime["Kotlin20rc"] = "kotlin-2.0-rc";
33330
+ BuildRuntime["Kotlin23rc"] = "kotlin-2.3-rc";
33331
+ BuildRuntime["Cpp17rc"] = "cpp-17-rc";
33332
+ BuildRuntime["Cpp20rc"] = "cpp-20-rc";
33333
+ BuildRuntime["Bun10rc"] = "bun-1.0-rc";
33334
+ BuildRuntime["Bun11rc"] = "bun-1.1-rc";
33335
+ BuildRuntime["Bun12rc"] = "bun-1.2-rc";
33336
+ BuildRuntime["Bun13rc"] = "bun-1.3-rc";
33337
+ BuildRuntime["Go123rc"] = "go-1.23-rc";
33338
+ BuildRuntime["Go124rc"] = "go-1.24-rc";
33339
+ BuildRuntime["Go125rc"] = "go-1.25-rc";
33340
+ BuildRuntime["Go126rc"] = "go-1.26-rc";
33341
+ BuildRuntime["Static1rc"] = "static-1-rc";
33342
+ BuildRuntime["Flutter324rc"] = "flutter-3.24-rc";
33343
+ BuildRuntime["Flutter327rc"] = "flutter-3.27-rc";
33344
+ BuildRuntime["Flutter329rc"] = "flutter-3.29-rc";
33345
+ BuildRuntime["Flutter332rc"] = "flutter-3.32-rc";
33346
+ BuildRuntime["Flutter335rc"] = "flutter-3.35-rc";
33347
+ BuildRuntime["Flutter338rc"] = "flutter-3.38-rc";
33114
33348
  })(exports.BuildRuntime || (exports.BuildRuntime = {}));
33115
33349
 
33116
33350
  exports.Adapter = void 0;
@@ -33288,29 +33522,25 @@
33288
33522
  BillingPlanGroup["Scale"] = "scale";
33289
33523
  })(exports.BillingPlanGroup || (exports.BillingPlanGroup = {}));
33290
33524
 
33291
- exports.DomainPurchasePaymentStatus = void 0;
33292
- (function (DomainPurchasePaymentStatus) {
33293
- DomainPurchasePaymentStatus["Pending"] = "pending";
33294
- DomainPurchasePaymentStatus["PendingConfirmation"] = "pending_confirmation";
33295
- DomainPurchasePaymentStatus["PendingPaymentProcessing"] = "pending_payment_processing";
33296
- DomainPurchasePaymentStatus["Authorized"] = "authorized";
33297
- DomainPurchasePaymentStatus["Captured"] = "captured";
33298
- DomainPurchasePaymentStatus["Failed"] = "failed";
33299
- DomainPurchasePaymentStatus["CaptureFailed"] = "capture_failed";
33300
- DomainPurchasePaymentStatus["RenewalCaptureFailed"] = "renewal_capture_failed";
33301
- })(exports.DomainPurchasePaymentStatus || (exports.DomainPurchasePaymentStatus = {}));
33302
-
33303
- exports.DomainTransferStatusStatus = void 0;
33304
- (function (DomainTransferStatusStatus) {
33305
- DomainTransferStatusStatus["Transferrable"] = "transferrable";
33306
- DomainTransferStatusStatus["NotTransferrable"] = "not_transferrable";
33307
- DomainTransferStatusStatus["PendingOwner"] = "pending_owner";
33308
- DomainTransferStatusStatus["PendingAdmin"] = "pending_admin";
33309
- DomainTransferStatusStatus["PendingRegistry"] = "pending_registry";
33310
- DomainTransferStatusStatus["Completed"] = "completed";
33311
- DomainTransferStatusStatus["Cancelled"] = "cancelled";
33312
- DomainTransferStatusStatus["ServiceUnavailable"] = "service_unavailable";
33313
- })(exports.DomainTransferStatusStatus || (exports.DomainTransferStatusStatus = {}));
33525
+ exports.DomainTransferStatusEnum = void 0;
33526
+ (function (DomainTransferStatusEnum) {
33527
+ DomainTransferStatusEnum["Transferrable"] = "transferrable";
33528
+ DomainTransferStatusEnum["NotTransferrable"] = "not_transferrable";
33529
+ DomainTransferStatusEnum["PendingOwner"] = "pending_owner";
33530
+ DomainTransferStatusEnum["PendingAdmin"] = "pending_admin";
33531
+ DomainTransferStatusEnum["PendingRegistry"] = "pending_registry";
33532
+ DomainTransferStatusEnum["Completed"] = "completed";
33533
+ DomainTransferStatusEnum["Cancelled"] = "cancelled";
33534
+ DomainTransferStatusEnum["ServiceUnavailable"] = "service_unavailable";
33535
+ })(exports.DomainTransferStatusEnum || (exports.DomainTransferStatusEnum = {}));
33536
+
33537
+ exports.DomainPurchaseStatus = void 0;
33538
+ (function (DomainPurchaseStatus) {
33539
+ DomainPurchaseStatus["Pending"] = "pending";
33540
+ DomainPurchaseStatus["Succeeded"] = "succeeded";
33541
+ DomainPurchaseStatus["Failed"] = "failed";
33542
+ DomainPurchaseStatus["Cancelled"] = "cancelled";
33543
+ })(exports.DomainPurchaseStatus || (exports.DomainPurchaseStatus = {}));
33314
33544
 
33315
33545
  exports.Account = Account;
33316
33546
  exports.Activities = Activities;
@@ -33346,6 +33576,7 @@
33346
33576
  exports.Tokens = Tokens;
33347
33577
  exports.Users = Users;
33348
33578
  exports.Vcs = Vcs;
33579
+ exports.Webhooks = Webhooks;
33349
33580
 
33350
33581
  Object.defineProperty(exports, '__esModule', { value: true });
33351
33582