@appwrite.io/console 4.0.0 → 5.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.
- package/CHANGELOG.md +18 -0
- package/README.md +1 -1
- package/dist/cjs/sdk.js +172 -34
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +173 -35
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +172 -34
- package/docs/examples/domains/confirm-purchase.md +16 -0
- package/docs/examples/domains/confirm-transfer-in.md +16 -0
- package/docs/examples/functions/create.md +3 -1
- package/docs/examples/functions/update.md +3 -1
- package/docs/examples/sites/create.md +4 -1
- package/docs/examples/sites/update.md +4 -1
- package/package.json +1 -1
- package/src/client.ts +5 -1
- package/src/enums/appwrite-migration-resource.ts +4 -0
- package/src/enums/build-runtime.ts +3 -0
- package/src/enums/domain-purchase-payment-status.ts +10 -0
- package/src/enums/runtime.ts +3 -0
- package/src/enums/runtimes.ts +3 -0
- package/src/index.ts +1 -0
- package/src/models.ts +90 -5
- package/src/services/account.ts +2 -2
- package/src/services/domains.ts +126 -0
- package/src/services/functions.ts +52 -24
- package/src/services/organizations.ts +2 -2
- package/src/services/sites.ts +83 -41
- package/types/enums/appwrite-migration-resource.d.ts +4 -0
- package/types/enums/build-runtime.d.ts +3 -0
- package/types/enums/domain-purchase-payment-status.d.ts +10 -0
- package/types/enums/runtime.d.ts +3 -0
- package/types/enums/runtimes.d.ts +3 -0
- package/types/index.d.ts +1 -0
- package/types/models.d.ts +90 -5
- package/types/services/account.d.ts +2 -2
- package/types/services/domains.d.ts +44 -0
- package/types/services/functions.d.ts +20 -8
- package/types/services/organizations.d.ts +2 -2
- package/types/services/sites.d.ts +26 -8
package/dist/esm/sdk.js
CHANGED
|
@@ -568,7 +568,7 @@ class Client {
|
|
|
568
568
|
'x-sdk-name': 'Console',
|
|
569
569
|
'x-sdk-platform': 'console',
|
|
570
570
|
'x-sdk-language': 'web',
|
|
571
|
-
'x-sdk-version': '
|
|
571
|
+
'x-sdk-version': '5.0.0',
|
|
572
572
|
'X-Appwrite-Response-Format': '1.8.0',
|
|
573
573
|
};
|
|
574
574
|
this.realtime = {
|
|
@@ -1110,6 +1110,9 @@ class Client {
|
|
|
1110
1110
|
window.console.warn('Appwrite is using localStorage for session management. Increase your security by adding a custom domain as your API endpoint.');
|
|
1111
1111
|
window.localStorage.setItem('cookieFallback', cookieFallback);
|
|
1112
1112
|
}
|
|
1113
|
+
if (data && typeof data === 'object') {
|
|
1114
|
+
data.toString = () => JSONbig.stringify(data);
|
|
1115
|
+
}
|
|
1113
1116
|
return data;
|
|
1114
1117
|
});
|
|
1115
1118
|
}
|
|
@@ -7858,6 +7861,36 @@ class Domains {
|
|
|
7858
7861
|
};
|
|
7859
7862
|
return this.client.call('post', uri, apiHeaders, payload);
|
|
7860
7863
|
}
|
|
7864
|
+
confirmPurchase(paramsOrFirst, ...rest) {
|
|
7865
|
+
let params;
|
|
7866
|
+
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
|
|
7867
|
+
params = (paramsOrFirst || {});
|
|
7868
|
+
}
|
|
7869
|
+
else {
|
|
7870
|
+
params = {
|
|
7871
|
+
domainId: paramsOrFirst,
|
|
7872
|
+
organizationId: rest[0]
|
|
7873
|
+
};
|
|
7874
|
+
}
|
|
7875
|
+
const domainId = params.domainId;
|
|
7876
|
+
const organizationId = params.organizationId;
|
|
7877
|
+
if (typeof domainId === 'undefined') {
|
|
7878
|
+
throw new AppwriteException('Missing required parameter: "domainId"');
|
|
7879
|
+
}
|
|
7880
|
+
if (typeof organizationId === 'undefined') {
|
|
7881
|
+
throw new AppwriteException('Missing required parameter: "organizationId"');
|
|
7882
|
+
}
|
|
7883
|
+
const apiPath = '/domains/purchases/{domainId}/confirm'.replace('{domainId}', domainId);
|
|
7884
|
+
const payload = {};
|
|
7885
|
+
if (typeof organizationId !== 'undefined') {
|
|
7886
|
+
payload['organizationId'] = organizationId;
|
|
7887
|
+
}
|
|
7888
|
+
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
7889
|
+
const apiHeaders = {
|
|
7890
|
+
'content-type': 'application/json',
|
|
7891
|
+
};
|
|
7892
|
+
return this.client.call('post', uri, apiHeaders, payload);
|
|
7893
|
+
}
|
|
7861
7894
|
listSuggestions(paramsOrFirst, ...rest) {
|
|
7862
7895
|
let params;
|
|
7863
7896
|
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
|
|
@@ -7955,6 +7988,36 @@ class Domains {
|
|
|
7955
7988
|
};
|
|
7956
7989
|
return this.client.call('post', uri, apiHeaders, payload);
|
|
7957
7990
|
}
|
|
7991
|
+
confirmTransferIn(paramsOrFirst, ...rest) {
|
|
7992
|
+
let params;
|
|
7993
|
+
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
|
|
7994
|
+
params = (paramsOrFirst || {});
|
|
7995
|
+
}
|
|
7996
|
+
else {
|
|
7997
|
+
params = {
|
|
7998
|
+
domainId: paramsOrFirst,
|
|
7999
|
+
organizationId: rest[0]
|
|
8000
|
+
};
|
|
8001
|
+
}
|
|
8002
|
+
const domainId = params.domainId;
|
|
8003
|
+
const organizationId = params.organizationId;
|
|
8004
|
+
if (typeof domainId === 'undefined') {
|
|
8005
|
+
throw new AppwriteException('Missing required parameter: "domainId"');
|
|
8006
|
+
}
|
|
8007
|
+
if (typeof organizationId === 'undefined') {
|
|
8008
|
+
throw new AppwriteException('Missing required parameter: "organizationId"');
|
|
8009
|
+
}
|
|
8010
|
+
const apiPath = '/domains/transfers/in/{domainId}/confirm'.replace('{domainId}', domainId);
|
|
8011
|
+
const payload = {};
|
|
8012
|
+
if (typeof organizationId !== 'undefined') {
|
|
8013
|
+
payload['organizationId'] = organizationId;
|
|
8014
|
+
}
|
|
8015
|
+
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
8016
|
+
const apiHeaders = {
|
|
8017
|
+
'content-type': 'application/json',
|
|
8018
|
+
};
|
|
8019
|
+
return this.client.call('post', uri, apiHeaders, payload);
|
|
8020
|
+
}
|
|
7958
8021
|
createTransferOut(paramsOrFirst, ...rest) {
|
|
7959
8022
|
let params;
|
|
7960
8023
|
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
|
|
@@ -9672,7 +9735,9 @@ class Functions {
|
|
|
9672
9735
|
providerBranch: rest[13],
|
|
9673
9736
|
providerSilentMode: rest[14],
|
|
9674
9737
|
providerRootDirectory: rest[15],
|
|
9675
|
-
|
|
9738
|
+
buildSpecification: rest[16],
|
|
9739
|
+
runtimeSpecification: rest[17],
|
|
9740
|
+
deploymentRetention: rest[18]
|
|
9676
9741
|
};
|
|
9677
9742
|
}
|
|
9678
9743
|
const functionId = params.functionId;
|
|
@@ -9692,7 +9757,9 @@ class Functions {
|
|
|
9692
9757
|
const providerBranch = params.providerBranch;
|
|
9693
9758
|
const providerSilentMode = params.providerSilentMode;
|
|
9694
9759
|
const providerRootDirectory = params.providerRootDirectory;
|
|
9695
|
-
const
|
|
9760
|
+
const buildSpecification = params.buildSpecification;
|
|
9761
|
+
const runtimeSpecification = params.runtimeSpecification;
|
|
9762
|
+
const deploymentRetention = params.deploymentRetention;
|
|
9696
9763
|
if (typeof functionId === 'undefined') {
|
|
9697
9764
|
throw new AppwriteException('Missing required parameter: "functionId"');
|
|
9698
9765
|
}
|
|
@@ -9755,8 +9822,14 @@ class Functions {
|
|
|
9755
9822
|
if (typeof providerRootDirectory !== 'undefined') {
|
|
9756
9823
|
payload['providerRootDirectory'] = providerRootDirectory;
|
|
9757
9824
|
}
|
|
9758
|
-
if (typeof
|
|
9759
|
-
payload['
|
|
9825
|
+
if (typeof buildSpecification !== 'undefined') {
|
|
9826
|
+
payload['buildSpecification'] = buildSpecification;
|
|
9827
|
+
}
|
|
9828
|
+
if (typeof runtimeSpecification !== 'undefined') {
|
|
9829
|
+
payload['runtimeSpecification'] = runtimeSpecification;
|
|
9830
|
+
}
|
|
9831
|
+
if (typeof deploymentRetention !== 'undefined') {
|
|
9832
|
+
payload['deploymentRetention'] = deploymentRetention;
|
|
9760
9833
|
}
|
|
9761
9834
|
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
9762
9835
|
const apiHeaders = {
|
|
@@ -9914,7 +9987,9 @@ class Functions {
|
|
|
9914
9987
|
providerBranch: rest[13],
|
|
9915
9988
|
providerSilentMode: rest[14],
|
|
9916
9989
|
providerRootDirectory: rest[15],
|
|
9917
|
-
|
|
9990
|
+
buildSpecification: rest[16],
|
|
9991
|
+
runtimeSpecification: rest[17],
|
|
9992
|
+
deploymentRetention: rest[18]
|
|
9918
9993
|
};
|
|
9919
9994
|
}
|
|
9920
9995
|
const functionId = params.functionId;
|
|
@@ -9934,7 +10009,9 @@ class Functions {
|
|
|
9934
10009
|
const providerBranch = params.providerBranch;
|
|
9935
10010
|
const providerSilentMode = params.providerSilentMode;
|
|
9936
10011
|
const providerRootDirectory = params.providerRootDirectory;
|
|
9937
|
-
const
|
|
10012
|
+
const buildSpecification = params.buildSpecification;
|
|
10013
|
+
const runtimeSpecification = params.runtimeSpecification;
|
|
10014
|
+
const deploymentRetention = params.deploymentRetention;
|
|
9938
10015
|
if (typeof functionId === 'undefined') {
|
|
9939
10016
|
throw new AppwriteException('Missing required parameter: "functionId"');
|
|
9940
10017
|
}
|
|
@@ -9991,8 +10068,14 @@ class Functions {
|
|
|
9991
10068
|
if (typeof providerRootDirectory !== 'undefined') {
|
|
9992
10069
|
payload['providerRootDirectory'] = providerRootDirectory;
|
|
9993
10070
|
}
|
|
9994
|
-
if (typeof
|
|
9995
|
-
payload['
|
|
10071
|
+
if (typeof buildSpecification !== 'undefined') {
|
|
10072
|
+
payload['buildSpecification'] = buildSpecification;
|
|
10073
|
+
}
|
|
10074
|
+
if (typeof runtimeSpecification !== 'undefined') {
|
|
10075
|
+
payload['runtimeSpecification'] = runtimeSpecification;
|
|
10076
|
+
}
|
|
10077
|
+
if (typeof deploymentRetention !== 'undefined') {
|
|
10078
|
+
payload['deploymentRetention'] = deploymentRetention;
|
|
9996
10079
|
}
|
|
9997
10080
|
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
9998
10081
|
const apiHeaders = {
|
|
@@ -19180,15 +19263,18 @@ class Sites {
|
|
|
19180
19263
|
timeout: rest[5],
|
|
19181
19264
|
installCommand: rest[6],
|
|
19182
19265
|
buildCommand: rest[7],
|
|
19183
|
-
|
|
19184
|
-
|
|
19185
|
-
|
|
19186
|
-
|
|
19187
|
-
|
|
19188
|
-
|
|
19189
|
-
|
|
19190
|
-
|
|
19191
|
-
|
|
19266
|
+
startCommand: rest[8],
|
|
19267
|
+
outputDirectory: rest[9],
|
|
19268
|
+
adapter: rest[10],
|
|
19269
|
+
installationId: rest[11],
|
|
19270
|
+
fallbackFile: rest[12],
|
|
19271
|
+
providerRepositoryId: rest[13],
|
|
19272
|
+
providerBranch: rest[14],
|
|
19273
|
+
providerSilentMode: rest[15],
|
|
19274
|
+
providerRootDirectory: rest[16],
|
|
19275
|
+
buildSpecification: rest[17],
|
|
19276
|
+
runtimeSpecification: rest[18],
|
|
19277
|
+
deploymentRetention: rest[19]
|
|
19192
19278
|
};
|
|
19193
19279
|
}
|
|
19194
19280
|
const siteId = params.siteId;
|
|
@@ -19200,6 +19286,7 @@ class Sites {
|
|
|
19200
19286
|
const timeout = params.timeout;
|
|
19201
19287
|
const installCommand = params.installCommand;
|
|
19202
19288
|
const buildCommand = params.buildCommand;
|
|
19289
|
+
const startCommand = params.startCommand;
|
|
19203
19290
|
const outputDirectory = params.outputDirectory;
|
|
19204
19291
|
const adapter = params.adapter;
|
|
19205
19292
|
const installationId = params.installationId;
|
|
@@ -19208,7 +19295,9 @@ class Sites {
|
|
|
19208
19295
|
const providerBranch = params.providerBranch;
|
|
19209
19296
|
const providerSilentMode = params.providerSilentMode;
|
|
19210
19297
|
const providerRootDirectory = params.providerRootDirectory;
|
|
19211
|
-
const
|
|
19298
|
+
const buildSpecification = params.buildSpecification;
|
|
19299
|
+
const runtimeSpecification = params.runtimeSpecification;
|
|
19300
|
+
const deploymentRetention = params.deploymentRetention;
|
|
19212
19301
|
if (typeof siteId === 'undefined') {
|
|
19213
19302
|
throw new AppwriteException('Missing required parameter: "siteId"');
|
|
19214
19303
|
}
|
|
@@ -19247,6 +19336,9 @@ class Sites {
|
|
|
19247
19336
|
if (typeof buildCommand !== 'undefined') {
|
|
19248
19337
|
payload['buildCommand'] = buildCommand;
|
|
19249
19338
|
}
|
|
19339
|
+
if (typeof startCommand !== 'undefined') {
|
|
19340
|
+
payload['startCommand'] = startCommand;
|
|
19341
|
+
}
|
|
19250
19342
|
if (typeof outputDirectory !== 'undefined') {
|
|
19251
19343
|
payload['outputDirectory'] = outputDirectory;
|
|
19252
19344
|
}
|
|
@@ -19274,8 +19366,14 @@ class Sites {
|
|
|
19274
19366
|
if (typeof providerRootDirectory !== 'undefined') {
|
|
19275
19367
|
payload['providerRootDirectory'] = providerRootDirectory;
|
|
19276
19368
|
}
|
|
19277
|
-
if (typeof
|
|
19278
|
-
payload['
|
|
19369
|
+
if (typeof buildSpecification !== 'undefined') {
|
|
19370
|
+
payload['buildSpecification'] = buildSpecification;
|
|
19371
|
+
}
|
|
19372
|
+
if (typeof runtimeSpecification !== 'undefined') {
|
|
19373
|
+
payload['runtimeSpecification'] = runtimeSpecification;
|
|
19374
|
+
}
|
|
19375
|
+
if (typeof deploymentRetention !== 'undefined') {
|
|
19376
|
+
payload['deploymentRetention'] = deploymentRetention;
|
|
19279
19377
|
}
|
|
19280
19378
|
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
19281
19379
|
const apiHeaders = {
|
|
@@ -19419,16 +19517,19 @@ class Sites {
|
|
|
19419
19517
|
timeout: rest[4],
|
|
19420
19518
|
installCommand: rest[5],
|
|
19421
19519
|
buildCommand: rest[6],
|
|
19422
|
-
|
|
19423
|
-
|
|
19424
|
-
|
|
19425
|
-
|
|
19426
|
-
|
|
19427
|
-
|
|
19428
|
-
|
|
19429
|
-
|
|
19430
|
-
|
|
19431
|
-
|
|
19520
|
+
startCommand: rest[7],
|
|
19521
|
+
outputDirectory: rest[8],
|
|
19522
|
+
buildRuntime: rest[9],
|
|
19523
|
+
adapter: rest[10],
|
|
19524
|
+
fallbackFile: rest[11],
|
|
19525
|
+
installationId: rest[12],
|
|
19526
|
+
providerRepositoryId: rest[13],
|
|
19527
|
+
providerBranch: rest[14],
|
|
19528
|
+
providerSilentMode: rest[15],
|
|
19529
|
+
providerRootDirectory: rest[16],
|
|
19530
|
+
buildSpecification: rest[17],
|
|
19531
|
+
runtimeSpecification: rest[18],
|
|
19532
|
+
deploymentRetention: rest[19]
|
|
19432
19533
|
};
|
|
19433
19534
|
}
|
|
19434
19535
|
const siteId = params.siteId;
|
|
@@ -19439,6 +19540,7 @@ class Sites {
|
|
|
19439
19540
|
const timeout = params.timeout;
|
|
19440
19541
|
const installCommand = params.installCommand;
|
|
19441
19542
|
const buildCommand = params.buildCommand;
|
|
19543
|
+
const startCommand = params.startCommand;
|
|
19442
19544
|
const outputDirectory = params.outputDirectory;
|
|
19443
19545
|
const buildRuntime = params.buildRuntime;
|
|
19444
19546
|
const adapter = params.adapter;
|
|
@@ -19448,7 +19550,9 @@ class Sites {
|
|
|
19448
19550
|
const providerBranch = params.providerBranch;
|
|
19449
19551
|
const providerSilentMode = params.providerSilentMode;
|
|
19450
19552
|
const providerRootDirectory = params.providerRootDirectory;
|
|
19451
|
-
const
|
|
19553
|
+
const buildSpecification = params.buildSpecification;
|
|
19554
|
+
const runtimeSpecification = params.runtimeSpecification;
|
|
19555
|
+
const deploymentRetention = params.deploymentRetention;
|
|
19452
19556
|
if (typeof siteId === 'undefined') {
|
|
19453
19557
|
throw new AppwriteException('Missing required parameter: "siteId"');
|
|
19454
19558
|
}
|
|
@@ -19481,6 +19585,9 @@ class Sites {
|
|
|
19481
19585
|
if (typeof buildCommand !== 'undefined') {
|
|
19482
19586
|
payload['buildCommand'] = buildCommand;
|
|
19483
19587
|
}
|
|
19588
|
+
if (typeof startCommand !== 'undefined') {
|
|
19589
|
+
payload['startCommand'] = startCommand;
|
|
19590
|
+
}
|
|
19484
19591
|
if (typeof outputDirectory !== 'undefined') {
|
|
19485
19592
|
payload['outputDirectory'] = outputDirectory;
|
|
19486
19593
|
}
|
|
@@ -19508,8 +19615,14 @@ class Sites {
|
|
|
19508
19615
|
if (typeof providerRootDirectory !== 'undefined') {
|
|
19509
19616
|
payload['providerRootDirectory'] = providerRootDirectory;
|
|
19510
19617
|
}
|
|
19511
|
-
if (typeof
|
|
19512
|
-
payload['
|
|
19618
|
+
if (typeof buildSpecification !== 'undefined') {
|
|
19619
|
+
payload['buildSpecification'] = buildSpecification;
|
|
19620
|
+
}
|
|
19621
|
+
if (typeof runtimeSpecification !== 'undefined') {
|
|
19622
|
+
payload['runtimeSpecification'] = runtimeSpecification;
|
|
19623
|
+
}
|
|
19624
|
+
if (typeof deploymentRetention !== 'undefined') {
|
|
19625
|
+
payload['deploymentRetention'] = deploymentRetention;
|
|
19513
19626
|
}
|
|
19514
19627
|
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
19515
19628
|
const apiHeaders = {
|
|
@@ -28434,6 +28547,9 @@ var Runtime;
|
|
|
28434
28547
|
Runtime["Pythonml311"] = "python-ml-3.11";
|
|
28435
28548
|
Runtime["Pythonml312"] = "python-ml-3.12";
|
|
28436
28549
|
Runtime["Pythonml313"] = "python-ml-3.13";
|
|
28550
|
+
Runtime["Deno121"] = "deno-1.21";
|
|
28551
|
+
Runtime["Deno124"] = "deno-1.24";
|
|
28552
|
+
Runtime["Deno135"] = "deno-1.35";
|
|
28437
28553
|
Runtime["Deno140"] = "deno-1.40";
|
|
28438
28554
|
Runtime["Deno146"] = "deno-1.46";
|
|
28439
28555
|
Runtime["Deno20"] = "deno-2.0";
|
|
@@ -28524,6 +28640,9 @@ var Runtimes;
|
|
|
28524
28640
|
Runtimes["Pythonml311"] = "python-ml-3.11";
|
|
28525
28641
|
Runtimes["Pythonml312"] = "python-ml-3.12";
|
|
28526
28642
|
Runtimes["Pythonml313"] = "python-ml-3.13";
|
|
28643
|
+
Runtimes["Deno121"] = "deno-1.21";
|
|
28644
|
+
Runtimes["Deno124"] = "deno-1.24";
|
|
28645
|
+
Runtimes["Deno135"] = "deno-1.35";
|
|
28527
28646
|
Runtimes["Deno140"] = "deno-1.40";
|
|
28528
28647
|
Runtimes["Deno146"] = "deno-1.46";
|
|
28529
28648
|
Runtimes["Deno20"] = "deno-2.0";
|
|
@@ -28673,6 +28792,10 @@ var AppwriteMigrationResource;
|
|
|
28673
28792
|
AppwriteMigrationResource["Function"] = "function";
|
|
28674
28793
|
AppwriteMigrationResource["Deployment"] = "deployment";
|
|
28675
28794
|
AppwriteMigrationResource["Environmentvariable"] = "environment-variable";
|
|
28795
|
+
AppwriteMigrationResource["Provider"] = "provider";
|
|
28796
|
+
AppwriteMigrationResource["Topic"] = "topic";
|
|
28797
|
+
AppwriteMigrationResource["Subscriber"] = "subscriber";
|
|
28798
|
+
AppwriteMigrationResource["Message"] = "message";
|
|
28676
28799
|
AppwriteMigrationResource["Site"] = "site";
|
|
28677
28800
|
AppwriteMigrationResource["Sitedeployment"] = "site-deployment";
|
|
28678
28801
|
AppwriteMigrationResource["Sitevariable"] = "site-variable";
|
|
@@ -29166,6 +29289,9 @@ var BuildRuntime;
|
|
|
29166
29289
|
BuildRuntime["Pythonml311"] = "python-ml-3.11";
|
|
29167
29290
|
BuildRuntime["Pythonml312"] = "python-ml-3.12";
|
|
29168
29291
|
BuildRuntime["Pythonml313"] = "python-ml-3.13";
|
|
29292
|
+
BuildRuntime["Deno121"] = "deno-1.21";
|
|
29293
|
+
BuildRuntime["Deno124"] = "deno-1.24";
|
|
29294
|
+
BuildRuntime["Deno135"] = "deno-1.35";
|
|
29169
29295
|
BuildRuntime["Deno140"] = "deno-1.40";
|
|
29170
29296
|
BuildRuntime["Deno146"] = "deno-1.46";
|
|
29171
29297
|
BuildRuntime["Deno20"] = "deno-2.0";
|
|
@@ -29398,6 +29524,18 @@ var BillingPlanGroup;
|
|
|
29398
29524
|
BillingPlanGroup["Scale"] = "scale";
|
|
29399
29525
|
})(BillingPlanGroup || (BillingPlanGroup = {}));
|
|
29400
29526
|
|
|
29527
|
+
var DomainPurchasePaymentStatus;
|
|
29528
|
+
(function (DomainPurchasePaymentStatus) {
|
|
29529
|
+
DomainPurchasePaymentStatus["Pending"] = "pending";
|
|
29530
|
+
DomainPurchasePaymentStatus["PendingConfirmation"] = "pending_confirmation";
|
|
29531
|
+
DomainPurchasePaymentStatus["PendingPaymentProcessing"] = "pending_payment_processing";
|
|
29532
|
+
DomainPurchasePaymentStatus["Authorized"] = "authorized";
|
|
29533
|
+
DomainPurchasePaymentStatus["Captured"] = "captured";
|
|
29534
|
+
DomainPurchasePaymentStatus["Failed"] = "failed";
|
|
29535
|
+
DomainPurchasePaymentStatus["CaptureFailed"] = "capture_failed";
|
|
29536
|
+
DomainPurchasePaymentStatus["RenewalCaptureFailed"] = "renewal_capture_failed";
|
|
29537
|
+
})(DomainPurchasePaymentStatus || (DomainPurchasePaymentStatus = {}));
|
|
29538
|
+
|
|
29401
29539
|
var DomainTransferStatusStatus;
|
|
29402
29540
|
(function (DomainTransferStatusStatus) {
|
|
29403
29541
|
DomainTransferStatusStatus["Transferrable"] = "transferrable";
|
|
@@ -29410,5 +29548,5 @@ var DomainTransferStatusStatus;
|
|
|
29410
29548
|
DomainTransferStatusStatus["ServiceUnavailable"] = "service_unavailable";
|
|
29411
29549
|
})(DomainTransferStatusStatus || (DomainTransferStatusStatus = {}));
|
|
29412
29550
|
|
|
29413
|
-
export { Account, Activities, Adapter, Api, ApiService, AppwriteException, AppwriteMigrationResource, Assistant, AttributeStatus, AuthMethod, AuthenticationFactor, AuthenticatorType, Avatars, BackupServices, Backups, BillingPlanGroup, Browser, BrowserPermission, BuildRuntime, Channel, Client, ColumnStatus, Compression, Condition, Console, ConsoleResourceType, CreditCard, DatabaseType, Databases, DeploymentDownloadType, DeploymentStatus, DomainTransferStatusStatus, Domains, EmailTemplateLocale, EmailTemplateType, ExecutionMethod, ExecutionStatus, ExecutionTrigger, FilterType, FirebaseMigrationResource, Flag, Framework, Frameworks, Functions, Graphql, Health, HealthAntivirusStatus, HealthCheckStatus, ID, ImageFormat, ImageGravity, IndexStatus, IndexType, Locale, MessagePriority, MessageStatus, Messaging, MessagingProviderType, Migrations, NHostMigrationResource, Name, OAuthProvider, Operator, OrderBy, Organizations, PasswordHash, Permission, Platform, PlatformType, Project, ProjectUsageRange, Projects, Proxy, ProxyResourceType, ProxyRuleDeploymentResourceType, ProxyRuleStatus, Query, Realtime, Region, RegistrationType, RelationMutate, RelationshipType, ResourceType, Role, Runtime, Runtimes, SMTPSecure, Scopes, Sites, SmsTemplateLocale, SmsTemplateType, SmtpEncryption, Status, StatusCode, Storage, SupabaseMigrationResource, TablesDB, Teams, TemplateReferenceType, Theme, Timezone, Tokens, UsageRange, UseCases, Users, VCSDetectionType, VCSReferenceType, Vcs };
|
|
29551
|
+
export { Account, Activities, Adapter, Api, ApiService, AppwriteException, AppwriteMigrationResource, Assistant, AttributeStatus, AuthMethod, AuthenticationFactor, AuthenticatorType, Avatars, BackupServices, Backups, BillingPlanGroup, Browser, BrowserPermission, BuildRuntime, Channel, Client, ColumnStatus, Compression, Condition, Console, ConsoleResourceType, CreditCard, DatabaseType, Databases, DeploymentDownloadType, DeploymentStatus, DomainPurchasePaymentStatus, DomainTransferStatusStatus, Domains, EmailTemplateLocale, EmailTemplateType, ExecutionMethod, ExecutionStatus, ExecutionTrigger, FilterType, FirebaseMigrationResource, Flag, Framework, Frameworks, Functions, Graphql, Health, HealthAntivirusStatus, HealthCheckStatus, ID, ImageFormat, ImageGravity, IndexStatus, IndexType, Locale, MessagePriority, MessageStatus, Messaging, MessagingProviderType, Migrations, NHostMigrationResource, Name, OAuthProvider, Operator, OrderBy, Organizations, PasswordHash, Permission, Platform, PlatformType, Project, ProjectUsageRange, Projects, Proxy, ProxyResourceType, ProxyRuleDeploymentResourceType, ProxyRuleStatus, Query, Realtime, Region, RegistrationType, RelationMutate, RelationshipType, ResourceType, Role, Runtime, Runtimes, SMTPSecure, Scopes, Sites, SmsTemplateLocale, SmsTemplateType, SmtpEncryption, Status, StatusCode, Storage, SupabaseMigrationResource, TablesDB, Teams, TemplateReferenceType, Theme, Timezone, Tokens, UsageRange, UseCases, Users, VCSDetectionType, VCSReferenceType, Vcs };
|
|
29414
29552
|
//# sourceMappingURL=sdk.js.map
|