domain0 0.6.0 → 0.8.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/README.md +17 -4
- package/dist/contracts.cjs +1 -1
- package/dist/contracts.cjs.map +1 -1
- package/dist/contracts.d.cts +2 -2
- package/dist/contracts.d.mts +2 -2
- package/dist/contracts.mjs +1 -1
- package/dist/contracts.mjs.map +1 -1
- package/dist/{index-Cw7qOvHn.d.cts → index-PRBloFve.d.cts} +1851 -160
- package/dist/{index-Cw7qOvHn.d.mts → index-PRBloFve.d.mts} +1851 -160
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/sdk-ByxmQbp7.mjs +153 -0
- package/dist/sdk-ByxmQbp7.mjs.map +1 -0
- package/dist/sdk-CMsVNbRd.cjs +153 -0
- package/dist/sdk-CMsVNbRd.cjs.map +1 -0
- package/dist/{sdk-BCgyva16.d.cts → sdk-J-WH31qu.d.cts} +4 -2
- package/dist/{sdk-CljceWZQ.d.mts → sdk-nLkY_Wqe.d.mts} +4 -2
- package/dist/ui.cjs +1 -1
- package/dist/ui.d.cts +4 -3
- package/dist/ui.d.mts +4 -3
- package/dist/ui.mjs +1 -1
- package/package.json +2 -1
- package/dist/sdk-CmmUNLRB.mjs +0 -148
- package/dist/sdk-CmmUNLRB.mjs.map +0 -1
- package/dist/sdk-CrmroILY.cjs +0 -148
- package/dist/sdk-CrmroILY.cjs.map +0 -1
|
@@ -1,4 +1,52 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
+
//#region src/contracts/authorization.d.ts
|
|
3
|
+
declare const TransientCredentialKindSchema: z.ZodEnum<{
|
|
4
|
+
api_token: "api_token";
|
|
5
|
+
api_endpoint_token: "api_endpoint_token";
|
|
6
|
+
access_key: "access_key";
|
|
7
|
+
username_password: "username_password";
|
|
8
|
+
account_token: "account_token";
|
|
9
|
+
sub_account_token: "sub_account_token";
|
|
10
|
+
username_token: "username_token";
|
|
11
|
+
ovh: "ovh";
|
|
12
|
+
private_key: "private_key";
|
|
13
|
+
aws_session: "aws_session";
|
|
14
|
+
cpanel: "cpanel";
|
|
15
|
+
client_credentials: "client_credentials";
|
|
16
|
+
}>;
|
|
17
|
+
type TransientCredentialKind = z.infer<typeof TransientCredentialKindSchema>;
|
|
18
|
+
declare const ProviderAuthorizationInputsSchema: z.ZodObject<{
|
|
19
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
20
|
+
api_token: "api_token";
|
|
21
|
+
api_endpoint_token: "api_endpoint_token";
|
|
22
|
+
access_key: "access_key";
|
|
23
|
+
username_password: "username_password";
|
|
24
|
+
account_token: "account_token";
|
|
25
|
+
sub_account_token: "sub_account_token";
|
|
26
|
+
username_token: "username_token";
|
|
27
|
+
ovh: "ovh";
|
|
28
|
+
private_key: "private_key";
|
|
29
|
+
aws_session: "aws_session";
|
|
30
|
+
cpanel: "cpanel";
|
|
31
|
+
client_credentials: "client_credentials";
|
|
32
|
+
}>>;
|
|
33
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
34
|
+
api_token: "api_token";
|
|
35
|
+
api_endpoint_token: "api_endpoint_token";
|
|
36
|
+
access_key: "access_key";
|
|
37
|
+
username_password: "username_password";
|
|
38
|
+
account_token: "account_token";
|
|
39
|
+
sub_account_token: "sub_account_token";
|
|
40
|
+
username_token: "username_token";
|
|
41
|
+
ovh: "ovh";
|
|
42
|
+
private_key: "private_key";
|
|
43
|
+
aws_session: "aws_session";
|
|
44
|
+
cpanel: "cpanel";
|
|
45
|
+
client_credentials: "client_credentials";
|
|
46
|
+
}>>;
|
|
47
|
+
}, z.core.$strict>;
|
|
48
|
+
type ProviderAuthorizationInputs = z.infer<typeof ProviderAuthorizationInputsSchema>;
|
|
49
|
+
//#endregion
|
|
2
50
|
//#region src/contracts/connection.d.ts
|
|
3
51
|
declare const ConnectionStateSchema: z.ZodEnum<{
|
|
4
52
|
requested: "requested";
|
|
@@ -176,15 +224,46 @@ declare const ConnectionSchema: z.ZodObject<{
|
|
|
176
224
|
manual: "manual";
|
|
177
225
|
}>;
|
|
178
226
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
227
|
+
api_token: "api_token";
|
|
179
228
|
domain_connect: "domain_connect";
|
|
180
229
|
manual: "manual";
|
|
181
230
|
oauth2_pkce: "oauth2_pkce";
|
|
182
231
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
183
|
-
|
|
232
|
+
provider_session: "provider_session";
|
|
184
233
|
api_key: "api_key";
|
|
185
234
|
basic: "basic";
|
|
186
235
|
session: "session";
|
|
187
236
|
}>>;
|
|
237
|
+
authorizationInputs: z.ZodObject<{
|
|
238
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
239
|
+
api_token: "api_token";
|
|
240
|
+
api_endpoint_token: "api_endpoint_token";
|
|
241
|
+
access_key: "access_key";
|
|
242
|
+
username_password: "username_password";
|
|
243
|
+
account_token: "account_token";
|
|
244
|
+
sub_account_token: "sub_account_token";
|
|
245
|
+
username_token: "username_token";
|
|
246
|
+
ovh: "ovh";
|
|
247
|
+
private_key: "private_key";
|
|
248
|
+
aws_session: "aws_session";
|
|
249
|
+
cpanel: "cpanel";
|
|
250
|
+
client_credentials: "client_credentials";
|
|
251
|
+
}>>;
|
|
252
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
253
|
+
api_token: "api_token";
|
|
254
|
+
api_endpoint_token: "api_endpoint_token";
|
|
255
|
+
access_key: "access_key";
|
|
256
|
+
username_password: "username_password";
|
|
257
|
+
account_token: "account_token";
|
|
258
|
+
sub_account_token: "sub_account_token";
|
|
259
|
+
username_token: "username_token";
|
|
260
|
+
ovh: "ovh";
|
|
261
|
+
private_key: "private_key";
|
|
262
|
+
aws_session: "aws_session";
|
|
263
|
+
cpanel: "cpanel";
|
|
264
|
+
client_credentials: "client_credentials";
|
|
265
|
+
}>>;
|
|
266
|
+
}, z.core.$strict>;
|
|
188
267
|
capabilities: z.ZodObject<{
|
|
189
268
|
rootNSModification: z.ZodEnum<{
|
|
190
269
|
supported: "supported";
|
|
@@ -422,15 +501,46 @@ declare const CreateConnectionResponseSchema: z.ZodObject<{
|
|
|
422
501
|
manual: "manual";
|
|
423
502
|
}>;
|
|
424
503
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
504
|
+
api_token: "api_token";
|
|
425
505
|
domain_connect: "domain_connect";
|
|
426
506
|
manual: "manual";
|
|
427
507
|
oauth2_pkce: "oauth2_pkce";
|
|
428
508
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
429
|
-
|
|
509
|
+
provider_session: "provider_session";
|
|
430
510
|
api_key: "api_key";
|
|
431
511
|
basic: "basic";
|
|
432
512
|
session: "session";
|
|
433
513
|
}>>;
|
|
514
|
+
authorizationInputs: z.ZodObject<{
|
|
515
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
516
|
+
api_token: "api_token";
|
|
517
|
+
api_endpoint_token: "api_endpoint_token";
|
|
518
|
+
access_key: "access_key";
|
|
519
|
+
username_password: "username_password";
|
|
520
|
+
account_token: "account_token";
|
|
521
|
+
sub_account_token: "sub_account_token";
|
|
522
|
+
username_token: "username_token";
|
|
523
|
+
ovh: "ovh";
|
|
524
|
+
private_key: "private_key";
|
|
525
|
+
aws_session: "aws_session";
|
|
526
|
+
cpanel: "cpanel";
|
|
527
|
+
client_credentials: "client_credentials";
|
|
528
|
+
}>>;
|
|
529
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
530
|
+
api_token: "api_token";
|
|
531
|
+
api_endpoint_token: "api_endpoint_token";
|
|
532
|
+
access_key: "access_key";
|
|
533
|
+
username_password: "username_password";
|
|
534
|
+
account_token: "account_token";
|
|
535
|
+
sub_account_token: "sub_account_token";
|
|
536
|
+
username_token: "username_token";
|
|
537
|
+
ovh: "ovh";
|
|
538
|
+
private_key: "private_key";
|
|
539
|
+
aws_session: "aws_session";
|
|
540
|
+
cpanel: "cpanel";
|
|
541
|
+
client_credentials: "client_credentials";
|
|
542
|
+
}>>;
|
|
543
|
+
}, z.core.$strict>;
|
|
434
544
|
capabilities: z.ZodObject<{
|
|
435
545
|
rootNSModification: z.ZodEnum<{
|
|
436
546
|
supported: "supported";
|
|
@@ -634,15 +744,46 @@ declare const GetConnectionResponseSchema: z.ZodObject<{
|
|
|
634
744
|
manual: "manual";
|
|
635
745
|
}>;
|
|
636
746
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
747
|
+
api_token: "api_token";
|
|
637
748
|
domain_connect: "domain_connect";
|
|
638
749
|
manual: "manual";
|
|
639
750
|
oauth2_pkce: "oauth2_pkce";
|
|
640
751
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
641
|
-
|
|
752
|
+
provider_session: "provider_session";
|
|
642
753
|
api_key: "api_key";
|
|
643
754
|
basic: "basic";
|
|
644
755
|
session: "session";
|
|
645
756
|
}>>;
|
|
757
|
+
authorizationInputs: z.ZodObject<{
|
|
758
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
759
|
+
api_token: "api_token";
|
|
760
|
+
api_endpoint_token: "api_endpoint_token";
|
|
761
|
+
access_key: "access_key";
|
|
762
|
+
username_password: "username_password";
|
|
763
|
+
account_token: "account_token";
|
|
764
|
+
sub_account_token: "sub_account_token";
|
|
765
|
+
username_token: "username_token";
|
|
766
|
+
ovh: "ovh";
|
|
767
|
+
private_key: "private_key";
|
|
768
|
+
aws_session: "aws_session";
|
|
769
|
+
cpanel: "cpanel";
|
|
770
|
+
client_credentials: "client_credentials";
|
|
771
|
+
}>>;
|
|
772
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
773
|
+
api_token: "api_token";
|
|
774
|
+
api_endpoint_token: "api_endpoint_token";
|
|
775
|
+
access_key: "access_key";
|
|
776
|
+
username_password: "username_password";
|
|
777
|
+
account_token: "account_token";
|
|
778
|
+
sub_account_token: "sub_account_token";
|
|
779
|
+
username_token: "username_token";
|
|
780
|
+
ovh: "ovh";
|
|
781
|
+
private_key: "private_key";
|
|
782
|
+
aws_session: "aws_session";
|
|
783
|
+
cpanel: "cpanel";
|
|
784
|
+
client_credentials: "client_credentials";
|
|
785
|
+
}>>;
|
|
786
|
+
}, z.core.$strict>;
|
|
646
787
|
capabilities: z.ZodObject<{
|
|
647
788
|
rootNSModification: z.ZodEnum<{
|
|
648
789
|
supported: "supported";
|
|
@@ -777,15 +918,46 @@ declare const ProviderCandidateSchema: z.ZodObject<{
|
|
|
777
918
|
manual: "manual";
|
|
778
919
|
}>;
|
|
779
920
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
921
|
+
api_token: "api_token";
|
|
780
922
|
domain_connect: "domain_connect";
|
|
781
923
|
manual: "manual";
|
|
782
924
|
oauth2_pkce: "oauth2_pkce";
|
|
783
925
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
784
|
-
|
|
926
|
+
provider_session: "provider_session";
|
|
785
927
|
api_key: "api_key";
|
|
786
928
|
basic: "basic";
|
|
787
929
|
session: "session";
|
|
788
930
|
}>>;
|
|
931
|
+
authorizationInputs: z.ZodObject<{
|
|
932
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
933
|
+
api_token: "api_token";
|
|
934
|
+
api_endpoint_token: "api_endpoint_token";
|
|
935
|
+
access_key: "access_key";
|
|
936
|
+
username_password: "username_password";
|
|
937
|
+
account_token: "account_token";
|
|
938
|
+
sub_account_token: "sub_account_token";
|
|
939
|
+
username_token: "username_token";
|
|
940
|
+
ovh: "ovh";
|
|
941
|
+
private_key: "private_key";
|
|
942
|
+
aws_session: "aws_session";
|
|
943
|
+
cpanel: "cpanel";
|
|
944
|
+
client_credentials: "client_credentials";
|
|
945
|
+
}>>;
|
|
946
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
947
|
+
api_token: "api_token";
|
|
948
|
+
api_endpoint_token: "api_endpoint_token";
|
|
949
|
+
access_key: "access_key";
|
|
950
|
+
username_password: "username_password";
|
|
951
|
+
account_token: "account_token";
|
|
952
|
+
sub_account_token: "sub_account_token";
|
|
953
|
+
username_token: "username_token";
|
|
954
|
+
ovh: "ovh";
|
|
955
|
+
private_key: "private_key";
|
|
956
|
+
aws_session: "aws_session";
|
|
957
|
+
cpanel: "cpanel";
|
|
958
|
+
client_credentials: "client_credentials";
|
|
959
|
+
}>>;
|
|
960
|
+
}, z.core.$strict>;
|
|
789
961
|
capabilities: z.ZodObject<{
|
|
790
962
|
rootNSModification: z.ZodEnum<{
|
|
791
963
|
supported: "supported";
|
|
@@ -925,15 +1097,46 @@ declare const DetectProviderResponseSchema: z.ZodObject<{
|
|
|
925
1097
|
manual: "manual";
|
|
926
1098
|
}>;
|
|
927
1099
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
1100
|
+
api_token: "api_token";
|
|
928
1101
|
domain_connect: "domain_connect";
|
|
929
1102
|
manual: "manual";
|
|
930
1103
|
oauth2_pkce: "oauth2_pkce";
|
|
931
1104
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
932
|
-
|
|
1105
|
+
provider_session: "provider_session";
|
|
933
1106
|
api_key: "api_key";
|
|
934
1107
|
basic: "basic";
|
|
935
1108
|
session: "session";
|
|
936
1109
|
}>>;
|
|
1110
|
+
authorizationInputs: z.ZodObject<{
|
|
1111
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
1112
|
+
api_token: "api_token";
|
|
1113
|
+
api_endpoint_token: "api_endpoint_token";
|
|
1114
|
+
access_key: "access_key";
|
|
1115
|
+
username_password: "username_password";
|
|
1116
|
+
account_token: "account_token";
|
|
1117
|
+
sub_account_token: "sub_account_token";
|
|
1118
|
+
username_token: "username_token";
|
|
1119
|
+
ovh: "ovh";
|
|
1120
|
+
private_key: "private_key";
|
|
1121
|
+
aws_session: "aws_session";
|
|
1122
|
+
cpanel: "cpanel";
|
|
1123
|
+
client_credentials: "client_credentials";
|
|
1124
|
+
}>>;
|
|
1125
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
1126
|
+
api_token: "api_token";
|
|
1127
|
+
api_endpoint_token: "api_endpoint_token";
|
|
1128
|
+
access_key: "access_key";
|
|
1129
|
+
username_password: "username_password";
|
|
1130
|
+
account_token: "account_token";
|
|
1131
|
+
sub_account_token: "sub_account_token";
|
|
1132
|
+
username_token: "username_token";
|
|
1133
|
+
ovh: "ovh";
|
|
1134
|
+
private_key: "private_key";
|
|
1135
|
+
aws_session: "aws_session";
|
|
1136
|
+
cpanel: "cpanel";
|
|
1137
|
+
client_credentials: "client_credentials";
|
|
1138
|
+
}>>;
|
|
1139
|
+
}, z.core.$strict>;
|
|
937
1140
|
capabilities: z.ZodObject<{
|
|
938
1141
|
rootNSModification: z.ZodEnum<{
|
|
939
1142
|
supported: "supported";
|
|
@@ -1066,15 +1269,46 @@ declare const DetectProviderResponseSchema: z.ZodObject<{
|
|
|
1066
1269
|
manual: "manual";
|
|
1067
1270
|
}>;
|
|
1068
1271
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
1272
|
+
api_token: "api_token";
|
|
1069
1273
|
domain_connect: "domain_connect";
|
|
1070
1274
|
manual: "manual";
|
|
1071
1275
|
oauth2_pkce: "oauth2_pkce";
|
|
1072
1276
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
1073
|
-
|
|
1277
|
+
provider_session: "provider_session";
|
|
1074
1278
|
api_key: "api_key";
|
|
1075
1279
|
basic: "basic";
|
|
1076
1280
|
session: "session";
|
|
1077
1281
|
}>>;
|
|
1282
|
+
authorizationInputs: z.ZodObject<{
|
|
1283
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
1284
|
+
api_token: "api_token";
|
|
1285
|
+
api_endpoint_token: "api_endpoint_token";
|
|
1286
|
+
access_key: "access_key";
|
|
1287
|
+
username_password: "username_password";
|
|
1288
|
+
account_token: "account_token";
|
|
1289
|
+
sub_account_token: "sub_account_token";
|
|
1290
|
+
username_token: "username_token";
|
|
1291
|
+
ovh: "ovh";
|
|
1292
|
+
private_key: "private_key";
|
|
1293
|
+
aws_session: "aws_session";
|
|
1294
|
+
cpanel: "cpanel";
|
|
1295
|
+
client_credentials: "client_credentials";
|
|
1296
|
+
}>>;
|
|
1297
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
1298
|
+
api_token: "api_token";
|
|
1299
|
+
api_endpoint_token: "api_endpoint_token";
|
|
1300
|
+
access_key: "access_key";
|
|
1301
|
+
username_password: "username_password";
|
|
1302
|
+
account_token: "account_token";
|
|
1303
|
+
sub_account_token: "sub_account_token";
|
|
1304
|
+
username_token: "username_token";
|
|
1305
|
+
ovh: "ovh";
|
|
1306
|
+
private_key: "private_key";
|
|
1307
|
+
aws_session: "aws_session";
|
|
1308
|
+
cpanel: "cpanel";
|
|
1309
|
+
client_credentials: "client_credentials";
|
|
1310
|
+
}>>;
|
|
1311
|
+
}, z.core.$strict>;
|
|
1078
1312
|
capabilities: z.ZodObject<{
|
|
1079
1313
|
rootNSModification: z.ZodEnum<{
|
|
1080
1314
|
supported: "supported";
|
|
@@ -1151,7 +1385,7 @@ declare const DomainConnectTemplateSchema: z.ZodObject<{
|
|
|
1151
1385
|
properties: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1152
1386
|
}, z.core.$strict>;
|
|
1153
1387
|
type DomainConnectTemplate = z.input<typeof DomainConnectTemplateSchema>;
|
|
1154
|
-
declare const
|
|
1388
|
+
declare const ExplicitDomainConnectInputSchema: z.ZodObject<{
|
|
1155
1389
|
serviceProviderId: z.ZodString;
|
|
1156
1390
|
serviceId: z.ZodString;
|
|
1157
1391
|
host: z.ZodOptional<z.ZodString>;
|
|
@@ -1162,6 +1396,22 @@ declare const StartDomainConnectInputSchema: z.ZodObject<{
|
|
|
1162
1396
|
properties: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1163
1397
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1164
1398
|
}, z.core.$strict>;
|
|
1399
|
+
declare const AutomaticDomainConnectInputSchema: z.ZodObject<{
|
|
1400
|
+
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1401
|
+
}, z.core.$strict>;
|
|
1402
|
+
declare const StartDomainConnectInputSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1403
|
+
serviceProviderId: z.ZodString;
|
|
1404
|
+
serviceId: z.ZodString;
|
|
1405
|
+
host: z.ZodOptional<z.ZodString>;
|
|
1406
|
+
groupId: z.ZodOptional<z.ZodString>;
|
|
1407
|
+
providerName: z.ZodOptional<z.ZodString>;
|
|
1408
|
+
serviceName: z.ZodOptional<z.ZodString>;
|
|
1409
|
+
instanceId: z.ZodOptional<z.ZodString>;
|
|
1410
|
+
properties: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1411
|
+
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1412
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1413
|
+
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1414
|
+
}, z.core.$strict>]>;
|
|
1165
1415
|
type StartDomainConnectInput = z.input<typeof StartDomainConnectInputSchema>;
|
|
1166
1416
|
declare const StartDomainConnectResponseSchema: z.ZodObject<{
|
|
1167
1417
|
connection: z.ZodObject<{
|
|
@@ -1243,15 +1493,46 @@ declare const StartDomainConnectResponseSchema: z.ZodObject<{
|
|
|
1243
1493
|
manual: "manual";
|
|
1244
1494
|
}>;
|
|
1245
1495
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
1496
|
+
api_token: "api_token";
|
|
1246
1497
|
domain_connect: "domain_connect";
|
|
1247
1498
|
manual: "manual";
|
|
1248
1499
|
oauth2_pkce: "oauth2_pkce";
|
|
1249
1500
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
1250
|
-
|
|
1501
|
+
provider_session: "provider_session";
|
|
1251
1502
|
api_key: "api_key";
|
|
1252
1503
|
basic: "basic";
|
|
1253
1504
|
session: "session";
|
|
1254
1505
|
}>>;
|
|
1506
|
+
authorizationInputs: z.ZodObject<{
|
|
1507
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
1508
|
+
api_token: "api_token";
|
|
1509
|
+
api_endpoint_token: "api_endpoint_token";
|
|
1510
|
+
access_key: "access_key";
|
|
1511
|
+
username_password: "username_password";
|
|
1512
|
+
account_token: "account_token";
|
|
1513
|
+
sub_account_token: "sub_account_token";
|
|
1514
|
+
username_token: "username_token";
|
|
1515
|
+
ovh: "ovh";
|
|
1516
|
+
private_key: "private_key";
|
|
1517
|
+
aws_session: "aws_session";
|
|
1518
|
+
cpanel: "cpanel";
|
|
1519
|
+
client_credentials: "client_credentials";
|
|
1520
|
+
}>>;
|
|
1521
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
1522
|
+
api_token: "api_token";
|
|
1523
|
+
api_endpoint_token: "api_endpoint_token";
|
|
1524
|
+
access_key: "access_key";
|
|
1525
|
+
username_password: "username_password";
|
|
1526
|
+
account_token: "account_token";
|
|
1527
|
+
sub_account_token: "sub_account_token";
|
|
1528
|
+
username_token: "username_token";
|
|
1529
|
+
ovh: "ovh";
|
|
1530
|
+
private_key: "private_key";
|
|
1531
|
+
aws_session: "aws_session";
|
|
1532
|
+
cpanel: "cpanel";
|
|
1533
|
+
client_credentials: "client_credentials";
|
|
1534
|
+
}>>;
|
|
1535
|
+
}, z.core.$strict>;
|
|
1255
1536
|
capabilities: z.ZodObject<{
|
|
1256
1537
|
rootNSModification: z.ZodEnum<{
|
|
1257
1538
|
supported: "supported";
|
|
@@ -1470,15 +1751,46 @@ declare const StartOAuthResponseSchema: z.ZodObject<{
|
|
|
1470
1751
|
manual: "manual";
|
|
1471
1752
|
}>;
|
|
1472
1753
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
1754
|
+
api_token: "api_token";
|
|
1473
1755
|
domain_connect: "domain_connect";
|
|
1474
1756
|
manual: "manual";
|
|
1475
1757
|
oauth2_pkce: "oauth2_pkce";
|
|
1476
1758
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
1477
|
-
|
|
1759
|
+
provider_session: "provider_session";
|
|
1478
1760
|
api_key: "api_key";
|
|
1479
1761
|
basic: "basic";
|
|
1480
1762
|
session: "session";
|
|
1481
1763
|
}>>;
|
|
1764
|
+
authorizationInputs: z.ZodObject<{
|
|
1765
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
1766
|
+
api_token: "api_token";
|
|
1767
|
+
api_endpoint_token: "api_endpoint_token";
|
|
1768
|
+
access_key: "access_key";
|
|
1769
|
+
username_password: "username_password";
|
|
1770
|
+
account_token: "account_token";
|
|
1771
|
+
sub_account_token: "sub_account_token";
|
|
1772
|
+
username_token: "username_token";
|
|
1773
|
+
ovh: "ovh";
|
|
1774
|
+
private_key: "private_key";
|
|
1775
|
+
aws_session: "aws_session";
|
|
1776
|
+
cpanel: "cpanel";
|
|
1777
|
+
client_credentials: "client_credentials";
|
|
1778
|
+
}>>;
|
|
1779
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
1780
|
+
api_token: "api_token";
|
|
1781
|
+
api_endpoint_token: "api_endpoint_token";
|
|
1782
|
+
access_key: "access_key";
|
|
1783
|
+
username_password: "username_password";
|
|
1784
|
+
account_token: "account_token";
|
|
1785
|
+
sub_account_token: "sub_account_token";
|
|
1786
|
+
username_token: "username_token";
|
|
1787
|
+
ovh: "ovh";
|
|
1788
|
+
private_key: "private_key";
|
|
1789
|
+
aws_session: "aws_session";
|
|
1790
|
+
cpanel: "cpanel";
|
|
1791
|
+
client_credentials: "client_credentials";
|
|
1792
|
+
}>>;
|
|
1793
|
+
}, z.core.$strict>;
|
|
1482
1794
|
capabilities: z.ZodObject<{
|
|
1483
1795
|
rootNSModification: z.ZodEnum<{
|
|
1484
1796
|
supported: "supported";
|
|
@@ -1604,31 +1916,622 @@ declare const StartOAuthResponseSchema: z.ZodObject<{
|
|
|
1604
1916
|
expiresAt: z.ZodISODateTime;
|
|
1605
1917
|
}, z.core.$strict>;
|
|
1606
1918
|
type StartOAuthResponse = z.infer<typeof StartOAuthResponseSchema>;
|
|
1607
|
-
declare const
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
}
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
password: z.ZodString;
|
|
1620
|
-
}, z.core.$strict>;
|
|
1621
|
-
declare const AccountTokenCredentialsSchema: z.ZodObject<{
|
|
1622
|
-
kind: z.ZodLiteral<"account_token">;
|
|
1623
|
-
accountId: z.ZodString;
|
|
1624
|
-
token: z.ZodString;
|
|
1919
|
+
declare const ProviderSessionChallengeKindSchema: z.ZodEnum<{
|
|
1920
|
+
otp: "otp";
|
|
1921
|
+
security_answer: "security_answer";
|
|
1922
|
+
}>;
|
|
1923
|
+
type ProviderSessionChallengeKind = z.infer<typeof ProviderSessionChallengeKindSchema>;
|
|
1924
|
+
declare const ProviderSessionChallengeSchema: z.ZodObject<{
|
|
1925
|
+
kind: z.ZodEnum<{
|
|
1926
|
+
otp: "otp";
|
|
1927
|
+
security_answer: "security_answer";
|
|
1928
|
+
}>;
|
|
1929
|
+
prompt: z.ZodString;
|
|
1930
|
+
destination: z.ZodString;
|
|
1625
1931
|
}, z.core.$strict>;
|
|
1626
|
-
|
|
1932
|
+
type ProviderSessionChallenge = z.infer<typeof ProviderSessionChallengeSchema>;
|
|
1933
|
+
declare const ProviderSessionResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1934
|
+
status: z.ZodLiteral<"authorized">;
|
|
1935
|
+
connection: z.ZodObject<{
|
|
1936
|
+
id: z.core.$ZodBranded<z.ZodString, "ConnectionId", "out">;
|
|
1937
|
+
applicationId: z.core.$ZodBranded<z.ZodString, "ApplicationId", "out">;
|
|
1938
|
+
tenantId: z.core.$ZodBranded<z.ZodString, "TenantId", "out">;
|
|
1939
|
+
intent: z.ZodObject<{
|
|
1940
|
+
domain: z.core.$ZodBranded<z.ZodString, "DomainName", "out">;
|
|
1941
|
+
records: z.ZodArray<z.ZodObject<{
|
|
1942
|
+
host: z.ZodString;
|
|
1943
|
+
type: z.ZodEnum<{
|
|
1944
|
+
A: "A";
|
|
1945
|
+
AAAA: "AAAA";
|
|
1946
|
+
CNAME: "CNAME";
|
|
1947
|
+
CAA: "CAA";
|
|
1948
|
+
MX: "MX";
|
|
1949
|
+
TXT: "TXT";
|
|
1950
|
+
NS: "NS";
|
|
1951
|
+
}>;
|
|
1952
|
+
value: z.ZodString;
|
|
1953
|
+
ttl: z.ZodDefault<z.ZodNumber>;
|
|
1954
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1955
|
+
optional: z.ZodDefault<z.ZodBoolean>;
|
|
1956
|
+
advancedDmarcOptions: z.ZodOptional<z.ZodObject<{
|
|
1957
|
+
inheritRootDmarc: z.ZodDefault<z.ZodBoolean>;
|
|
1958
|
+
overrideTags: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1959
|
+
removeTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1960
|
+
addTagsIfNotExist: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1961
|
+
}, z.core.$strict>>;
|
|
1962
|
+
}, z.core.$strict>>;
|
|
1963
|
+
existingRecordPolicy: z.ZodDefault<z.ZodObject<{
|
|
1964
|
+
validateDmarc: z.ZodDefault<z.ZodBoolean>;
|
|
1965
|
+
validateCAA: z.ZodDefault<z.ZodBoolean>;
|
|
1966
|
+
}, z.core.$strict>>;
|
|
1967
|
+
}, z.core.$strict>;
|
|
1968
|
+
effectiveIntent: z.ZodOptional<z.ZodObject<{
|
|
1969
|
+
domain: z.core.$ZodBranded<z.ZodString, "DomainName", "out">;
|
|
1970
|
+
records: z.ZodArray<z.ZodObject<{
|
|
1971
|
+
host: z.ZodString;
|
|
1972
|
+
type: z.ZodEnum<{
|
|
1973
|
+
A: "A";
|
|
1974
|
+
AAAA: "AAAA";
|
|
1975
|
+
CNAME: "CNAME";
|
|
1976
|
+
CAA: "CAA";
|
|
1977
|
+
MX: "MX";
|
|
1978
|
+
TXT: "TXT";
|
|
1979
|
+
NS: "NS";
|
|
1980
|
+
}>;
|
|
1981
|
+
value: z.ZodString;
|
|
1982
|
+
ttl: z.ZodDefault<z.ZodNumber>;
|
|
1983
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1984
|
+
optional: z.ZodDefault<z.ZodBoolean>;
|
|
1985
|
+
}, z.core.$strict>>;
|
|
1986
|
+
}, z.core.$strict>>;
|
|
1987
|
+
state: z.ZodEnum<{
|
|
1988
|
+
requested: "requested";
|
|
1989
|
+
authorized: "authorized";
|
|
1990
|
+
planning: "planning";
|
|
1991
|
+
applying: "applying";
|
|
1992
|
+
active: "active";
|
|
1993
|
+
cancelled: "cancelled";
|
|
1994
|
+
detecting_provider: "detecting_provider";
|
|
1995
|
+
provider_selected: "provider_selected";
|
|
1996
|
+
domain_connect_pending: "domain_connect_pending";
|
|
1997
|
+
authorization_pending: "authorization_pending";
|
|
1998
|
+
awaiting_confirmation: "awaiting_confirmation";
|
|
1999
|
+
propagation_pending: "propagation_pending";
|
|
2000
|
+
manual_required: "manual_required";
|
|
2001
|
+
failed_retryable: "failed_retryable";
|
|
2002
|
+
failed_terminal: "failed_terminal";
|
|
2003
|
+
}>;
|
|
2004
|
+
provider: z.ZodOptional<z.ZodObject<{
|
|
2005
|
+
id: z.core.$ZodBranded<z.ZodString, "ProviderId", "out">;
|
|
2006
|
+
name: z.ZodString;
|
|
2007
|
+
referenceUrl: z.ZodURL;
|
|
2008
|
+
implementation: z.ZodEnum<{
|
|
2009
|
+
automatic: "automatic";
|
|
2010
|
+
domain_connect: "domain_connect";
|
|
2011
|
+
manual: "manual";
|
|
2012
|
+
}>;
|
|
2013
|
+
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
2014
|
+
api_token: "api_token";
|
|
2015
|
+
domain_connect: "domain_connect";
|
|
2016
|
+
manual: "manual";
|
|
2017
|
+
oauth2_pkce: "oauth2_pkce";
|
|
2018
|
+
oauth2_authorization_code: "oauth2_authorization_code";
|
|
2019
|
+
provider_session: "provider_session";
|
|
2020
|
+
api_key: "api_key";
|
|
2021
|
+
basic: "basic";
|
|
2022
|
+
session: "session";
|
|
2023
|
+
}>>;
|
|
2024
|
+
authorizationInputs: z.ZodObject<{
|
|
2025
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
2026
|
+
api_token: "api_token";
|
|
2027
|
+
api_endpoint_token: "api_endpoint_token";
|
|
2028
|
+
access_key: "access_key";
|
|
2029
|
+
username_password: "username_password";
|
|
2030
|
+
account_token: "account_token";
|
|
2031
|
+
sub_account_token: "sub_account_token";
|
|
2032
|
+
username_token: "username_token";
|
|
2033
|
+
ovh: "ovh";
|
|
2034
|
+
private_key: "private_key";
|
|
2035
|
+
aws_session: "aws_session";
|
|
2036
|
+
cpanel: "cpanel";
|
|
2037
|
+
client_credentials: "client_credentials";
|
|
2038
|
+
}>>;
|
|
2039
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
2040
|
+
api_token: "api_token";
|
|
2041
|
+
api_endpoint_token: "api_endpoint_token";
|
|
2042
|
+
access_key: "access_key";
|
|
2043
|
+
username_password: "username_password";
|
|
2044
|
+
account_token: "account_token";
|
|
2045
|
+
sub_account_token: "sub_account_token";
|
|
2046
|
+
username_token: "username_token";
|
|
2047
|
+
ovh: "ovh";
|
|
2048
|
+
private_key: "private_key";
|
|
2049
|
+
aws_session: "aws_session";
|
|
2050
|
+
cpanel: "cpanel";
|
|
2051
|
+
client_credentials: "client_credentials";
|
|
2052
|
+
}>>;
|
|
2053
|
+
}, z.core.$strict>;
|
|
2054
|
+
capabilities: z.ZodObject<{
|
|
2055
|
+
rootNSModification: z.ZodEnum<{
|
|
2056
|
+
supported: "supported";
|
|
2057
|
+
unsupported: "unsupported";
|
|
2058
|
+
unverified: "unverified";
|
|
2059
|
+
}>;
|
|
2060
|
+
subdomainNSModification: z.ZodEnum<{
|
|
2061
|
+
supported: "supported";
|
|
2062
|
+
unsupported: "unsupported";
|
|
2063
|
+
unverified: "unverified";
|
|
2064
|
+
}>;
|
|
2065
|
+
wwwRedirect: z.ZodEnum<{
|
|
2066
|
+
supported: "supported";
|
|
2067
|
+
unsupported: "unsupported";
|
|
2068
|
+
unverified: "unverified";
|
|
2069
|
+
}>;
|
|
2070
|
+
cnameFlattening: z.ZodEnum<{
|
|
2071
|
+
supported: "supported";
|
|
2072
|
+
unsupported: "unsupported";
|
|
2073
|
+
unverified: "unverified";
|
|
2074
|
+
}>;
|
|
2075
|
+
wildcardRecords: z.ZodEnum<{
|
|
2076
|
+
supported: "supported";
|
|
2077
|
+
unsupported: "unsupported";
|
|
2078
|
+
unverified: "unverified";
|
|
2079
|
+
}>;
|
|
2080
|
+
caaRecords: z.ZodEnum<{
|
|
2081
|
+
supported: "supported";
|
|
2082
|
+
unsupported: "unsupported";
|
|
2083
|
+
unverified: "unverified";
|
|
2084
|
+
}>;
|
|
2085
|
+
spfRecords: z.ZodEnum<{
|
|
2086
|
+
supported: "supported";
|
|
2087
|
+
unsupported: "unsupported";
|
|
2088
|
+
unverified: "unverified";
|
|
2089
|
+
}>;
|
|
2090
|
+
socialLogin: z.ZodEnum<{
|
|
2091
|
+
supported: "supported";
|
|
2092
|
+
unsupported: "unsupported";
|
|
2093
|
+
unverified: "unverified";
|
|
2094
|
+
}>;
|
|
2095
|
+
}, z.core.$strict>;
|
|
2096
|
+
detection: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2097
|
+
method: z.ZodEnum<{
|
|
2098
|
+
domain_connect: "domain_connect";
|
|
2099
|
+
nameserver: "nameserver";
|
|
2100
|
+
nameserver_or_domain_connect: "nameserver_or_domain_connect";
|
|
2101
|
+
}>;
|
|
2102
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2103
|
+
method: z.ZodLiteral<"manual">;
|
|
2104
|
+
reasonCode: z.ZodEnum<{
|
|
2105
|
+
no_stable_public_provider_identity: "no_stable_public_provider_identity";
|
|
2106
|
+
}>;
|
|
2107
|
+
}, z.core.$strict>], "method">;
|
|
2108
|
+
limitations: z.ZodArray<z.ZodString>;
|
|
2109
|
+
}, z.core.$strict>>;
|
|
2110
|
+
plan: z.ZodOptional<z.ZodObject<{
|
|
2111
|
+
digest: z.ZodString;
|
|
2112
|
+
changes: z.ZodArray<z.ZodObject<{
|
|
2113
|
+
action: z.ZodEnum<{
|
|
2114
|
+
create: "create";
|
|
2115
|
+
replace: "replace";
|
|
2116
|
+
delete: "delete";
|
|
2117
|
+
}>;
|
|
2118
|
+
before: z.ZodOptional<z.ZodObject<{
|
|
2119
|
+
host: z.ZodString;
|
|
2120
|
+
type: z.ZodEnum<{
|
|
2121
|
+
A: "A";
|
|
2122
|
+
AAAA: "AAAA";
|
|
2123
|
+
CNAME: "CNAME";
|
|
2124
|
+
CAA: "CAA";
|
|
2125
|
+
MX: "MX";
|
|
2126
|
+
TXT: "TXT";
|
|
2127
|
+
NS: "NS";
|
|
2128
|
+
}>;
|
|
2129
|
+
value: z.ZodString;
|
|
2130
|
+
ttl: z.ZodDefault<z.ZodNumber>;
|
|
2131
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
2132
|
+
optional: z.ZodDefault<z.ZodBoolean>;
|
|
2133
|
+
}, z.core.$strict>>;
|
|
2134
|
+
after: z.ZodOptional<z.ZodObject<{
|
|
2135
|
+
host: z.ZodString;
|
|
2136
|
+
type: z.ZodEnum<{
|
|
2137
|
+
A: "A";
|
|
2138
|
+
AAAA: "AAAA";
|
|
2139
|
+
CNAME: "CNAME";
|
|
2140
|
+
CAA: "CAA";
|
|
2141
|
+
MX: "MX";
|
|
2142
|
+
TXT: "TXT";
|
|
2143
|
+
NS: "NS";
|
|
2144
|
+
}>;
|
|
2145
|
+
value: z.ZodString;
|
|
2146
|
+
ttl: z.ZodDefault<z.ZodNumber>;
|
|
2147
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
2148
|
+
optional: z.ZodDefault<z.ZodBoolean>;
|
|
2149
|
+
}, z.core.$strict>>;
|
|
2150
|
+
destructive: z.ZodBoolean;
|
|
2151
|
+
}, z.core.$strict>>;
|
|
2152
|
+
warnings: z.ZodArray<z.ZodEnum<{
|
|
2153
|
+
spf_policy_replaced: "spf_policy_replaced";
|
|
2154
|
+
spf_policy_merged: "spf_policy_merged";
|
|
2155
|
+
}>>;
|
|
2156
|
+
expiresAt: z.ZodISODateTime;
|
|
2157
|
+
}, z.core.$strict>>;
|
|
2158
|
+
failure: z.ZodOptional<z.ZodObject<{
|
|
2159
|
+
code: z.ZodEnum<{
|
|
2160
|
+
provider_snapshot_timeout: "provider_snapshot_timeout";
|
|
2161
|
+
provider_apply_timeout: "provider_apply_timeout";
|
|
2162
|
+
}>;
|
|
2163
|
+
retryable: z.ZodLiteral<true>;
|
|
2164
|
+
resumeState: z.ZodEnum<{
|
|
2165
|
+
authorized: "authorized";
|
|
2166
|
+
applying: "applying";
|
|
2167
|
+
awaiting_confirmation: "awaiting_confirmation";
|
|
2168
|
+
}>;
|
|
2169
|
+
occurredAt: z.ZodISODateTime;
|
|
2170
|
+
}, z.core.$strict>>;
|
|
2171
|
+
optionalFailures: z.ZodArray<z.ZodString>;
|
|
2172
|
+
createdAt: z.ZodISODateTime;
|
|
2173
|
+
updatedAt: z.ZodISODateTime;
|
|
2174
|
+
}, z.core.$strict>;
|
|
2175
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2176
|
+
status: z.ZodLiteral<"challenge">;
|
|
2177
|
+
connection: z.ZodObject<{
|
|
2178
|
+
id: z.core.$ZodBranded<z.ZodString, "ConnectionId", "out">;
|
|
2179
|
+
applicationId: z.core.$ZodBranded<z.ZodString, "ApplicationId", "out">;
|
|
2180
|
+
tenantId: z.core.$ZodBranded<z.ZodString, "TenantId", "out">;
|
|
2181
|
+
intent: z.ZodObject<{
|
|
2182
|
+
domain: z.core.$ZodBranded<z.ZodString, "DomainName", "out">;
|
|
2183
|
+
records: z.ZodArray<z.ZodObject<{
|
|
2184
|
+
host: z.ZodString;
|
|
2185
|
+
type: z.ZodEnum<{
|
|
2186
|
+
A: "A";
|
|
2187
|
+
AAAA: "AAAA";
|
|
2188
|
+
CNAME: "CNAME";
|
|
2189
|
+
CAA: "CAA";
|
|
2190
|
+
MX: "MX";
|
|
2191
|
+
TXT: "TXT";
|
|
2192
|
+
NS: "NS";
|
|
2193
|
+
}>;
|
|
2194
|
+
value: z.ZodString;
|
|
2195
|
+
ttl: z.ZodDefault<z.ZodNumber>;
|
|
2196
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
2197
|
+
optional: z.ZodDefault<z.ZodBoolean>;
|
|
2198
|
+
advancedDmarcOptions: z.ZodOptional<z.ZodObject<{
|
|
2199
|
+
inheritRootDmarc: z.ZodDefault<z.ZodBoolean>;
|
|
2200
|
+
overrideTags: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2201
|
+
removeTags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2202
|
+
addTagsIfNotExist: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2203
|
+
}, z.core.$strict>>;
|
|
2204
|
+
}, z.core.$strict>>;
|
|
2205
|
+
existingRecordPolicy: z.ZodDefault<z.ZodObject<{
|
|
2206
|
+
validateDmarc: z.ZodDefault<z.ZodBoolean>;
|
|
2207
|
+
validateCAA: z.ZodDefault<z.ZodBoolean>;
|
|
2208
|
+
}, z.core.$strict>>;
|
|
2209
|
+
}, z.core.$strict>;
|
|
2210
|
+
effectiveIntent: z.ZodOptional<z.ZodObject<{
|
|
2211
|
+
domain: z.core.$ZodBranded<z.ZodString, "DomainName", "out">;
|
|
2212
|
+
records: z.ZodArray<z.ZodObject<{
|
|
2213
|
+
host: z.ZodString;
|
|
2214
|
+
type: z.ZodEnum<{
|
|
2215
|
+
A: "A";
|
|
2216
|
+
AAAA: "AAAA";
|
|
2217
|
+
CNAME: "CNAME";
|
|
2218
|
+
CAA: "CAA";
|
|
2219
|
+
MX: "MX";
|
|
2220
|
+
TXT: "TXT";
|
|
2221
|
+
NS: "NS";
|
|
2222
|
+
}>;
|
|
2223
|
+
value: z.ZodString;
|
|
2224
|
+
ttl: z.ZodDefault<z.ZodNumber>;
|
|
2225
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
2226
|
+
optional: z.ZodDefault<z.ZodBoolean>;
|
|
2227
|
+
}, z.core.$strict>>;
|
|
2228
|
+
}, z.core.$strict>>;
|
|
2229
|
+
state: z.ZodEnum<{
|
|
2230
|
+
requested: "requested";
|
|
2231
|
+
authorized: "authorized";
|
|
2232
|
+
planning: "planning";
|
|
2233
|
+
applying: "applying";
|
|
2234
|
+
active: "active";
|
|
2235
|
+
cancelled: "cancelled";
|
|
2236
|
+
detecting_provider: "detecting_provider";
|
|
2237
|
+
provider_selected: "provider_selected";
|
|
2238
|
+
domain_connect_pending: "domain_connect_pending";
|
|
2239
|
+
authorization_pending: "authorization_pending";
|
|
2240
|
+
awaiting_confirmation: "awaiting_confirmation";
|
|
2241
|
+
propagation_pending: "propagation_pending";
|
|
2242
|
+
manual_required: "manual_required";
|
|
2243
|
+
failed_retryable: "failed_retryable";
|
|
2244
|
+
failed_terminal: "failed_terminal";
|
|
2245
|
+
}>;
|
|
2246
|
+
provider: z.ZodOptional<z.ZodObject<{
|
|
2247
|
+
id: z.core.$ZodBranded<z.ZodString, "ProviderId", "out">;
|
|
2248
|
+
name: z.ZodString;
|
|
2249
|
+
referenceUrl: z.ZodURL;
|
|
2250
|
+
implementation: z.ZodEnum<{
|
|
2251
|
+
automatic: "automatic";
|
|
2252
|
+
domain_connect: "domain_connect";
|
|
2253
|
+
manual: "manual";
|
|
2254
|
+
}>;
|
|
2255
|
+
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
2256
|
+
api_token: "api_token";
|
|
2257
|
+
domain_connect: "domain_connect";
|
|
2258
|
+
manual: "manual";
|
|
2259
|
+
oauth2_pkce: "oauth2_pkce";
|
|
2260
|
+
oauth2_authorization_code: "oauth2_authorization_code";
|
|
2261
|
+
provider_session: "provider_session";
|
|
2262
|
+
api_key: "api_key";
|
|
2263
|
+
basic: "basic";
|
|
2264
|
+
session: "session";
|
|
2265
|
+
}>>;
|
|
2266
|
+
authorizationInputs: z.ZodObject<{
|
|
2267
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
2268
|
+
api_token: "api_token";
|
|
2269
|
+
api_endpoint_token: "api_endpoint_token";
|
|
2270
|
+
access_key: "access_key";
|
|
2271
|
+
username_password: "username_password";
|
|
2272
|
+
account_token: "account_token";
|
|
2273
|
+
sub_account_token: "sub_account_token";
|
|
2274
|
+
username_token: "username_token";
|
|
2275
|
+
ovh: "ovh";
|
|
2276
|
+
private_key: "private_key";
|
|
2277
|
+
aws_session: "aws_session";
|
|
2278
|
+
cpanel: "cpanel";
|
|
2279
|
+
client_credentials: "client_credentials";
|
|
2280
|
+
}>>;
|
|
2281
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
2282
|
+
api_token: "api_token";
|
|
2283
|
+
api_endpoint_token: "api_endpoint_token";
|
|
2284
|
+
access_key: "access_key";
|
|
2285
|
+
username_password: "username_password";
|
|
2286
|
+
account_token: "account_token";
|
|
2287
|
+
sub_account_token: "sub_account_token";
|
|
2288
|
+
username_token: "username_token";
|
|
2289
|
+
ovh: "ovh";
|
|
2290
|
+
private_key: "private_key";
|
|
2291
|
+
aws_session: "aws_session";
|
|
2292
|
+
cpanel: "cpanel";
|
|
2293
|
+
client_credentials: "client_credentials";
|
|
2294
|
+
}>>;
|
|
2295
|
+
}, z.core.$strict>;
|
|
2296
|
+
capabilities: z.ZodObject<{
|
|
2297
|
+
rootNSModification: z.ZodEnum<{
|
|
2298
|
+
supported: "supported";
|
|
2299
|
+
unsupported: "unsupported";
|
|
2300
|
+
unverified: "unverified";
|
|
2301
|
+
}>;
|
|
2302
|
+
subdomainNSModification: z.ZodEnum<{
|
|
2303
|
+
supported: "supported";
|
|
2304
|
+
unsupported: "unsupported";
|
|
2305
|
+
unverified: "unverified";
|
|
2306
|
+
}>;
|
|
2307
|
+
wwwRedirect: z.ZodEnum<{
|
|
2308
|
+
supported: "supported";
|
|
2309
|
+
unsupported: "unsupported";
|
|
2310
|
+
unverified: "unverified";
|
|
2311
|
+
}>;
|
|
2312
|
+
cnameFlattening: z.ZodEnum<{
|
|
2313
|
+
supported: "supported";
|
|
2314
|
+
unsupported: "unsupported";
|
|
2315
|
+
unverified: "unverified";
|
|
2316
|
+
}>;
|
|
2317
|
+
wildcardRecords: z.ZodEnum<{
|
|
2318
|
+
supported: "supported";
|
|
2319
|
+
unsupported: "unsupported";
|
|
2320
|
+
unverified: "unverified";
|
|
2321
|
+
}>;
|
|
2322
|
+
caaRecords: z.ZodEnum<{
|
|
2323
|
+
supported: "supported";
|
|
2324
|
+
unsupported: "unsupported";
|
|
2325
|
+
unverified: "unverified";
|
|
2326
|
+
}>;
|
|
2327
|
+
spfRecords: z.ZodEnum<{
|
|
2328
|
+
supported: "supported";
|
|
2329
|
+
unsupported: "unsupported";
|
|
2330
|
+
unverified: "unverified";
|
|
2331
|
+
}>;
|
|
2332
|
+
socialLogin: z.ZodEnum<{
|
|
2333
|
+
supported: "supported";
|
|
2334
|
+
unsupported: "unsupported";
|
|
2335
|
+
unverified: "unverified";
|
|
2336
|
+
}>;
|
|
2337
|
+
}, z.core.$strict>;
|
|
2338
|
+
detection: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2339
|
+
method: z.ZodEnum<{
|
|
2340
|
+
domain_connect: "domain_connect";
|
|
2341
|
+
nameserver: "nameserver";
|
|
2342
|
+
nameserver_or_domain_connect: "nameserver_or_domain_connect";
|
|
2343
|
+
}>;
|
|
2344
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2345
|
+
method: z.ZodLiteral<"manual">;
|
|
2346
|
+
reasonCode: z.ZodEnum<{
|
|
2347
|
+
no_stable_public_provider_identity: "no_stable_public_provider_identity";
|
|
2348
|
+
}>;
|
|
2349
|
+
}, z.core.$strict>], "method">;
|
|
2350
|
+
limitations: z.ZodArray<z.ZodString>;
|
|
2351
|
+
}, z.core.$strict>>;
|
|
2352
|
+
plan: z.ZodOptional<z.ZodObject<{
|
|
2353
|
+
digest: z.ZodString;
|
|
2354
|
+
changes: z.ZodArray<z.ZodObject<{
|
|
2355
|
+
action: z.ZodEnum<{
|
|
2356
|
+
create: "create";
|
|
2357
|
+
replace: "replace";
|
|
2358
|
+
delete: "delete";
|
|
2359
|
+
}>;
|
|
2360
|
+
before: z.ZodOptional<z.ZodObject<{
|
|
2361
|
+
host: z.ZodString;
|
|
2362
|
+
type: z.ZodEnum<{
|
|
2363
|
+
A: "A";
|
|
2364
|
+
AAAA: "AAAA";
|
|
2365
|
+
CNAME: "CNAME";
|
|
2366
|
+
CAA: "CAA";
|
|
2367
|
+
MX: "MX";
|
|
2368
|
+
TXT: "TXT";
|
|
2369
|
+
NS: "NS";
|
|
2370
|
+
}>;
|
|
2371
|
+
value: z.ZodString;
|
|
2372
|
+
ttl: z.ZodDefault<z.ZodNumber>;
|
|
2373
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
2374
|
+
optional: z.ZodDefault<z.ZodBoolean>;
|
|
2375
|
+
}, z.core.$strict>>;
|
|
2376
|
+
after: z.ZodOptional<z.ZodObject<{
|
|
2377
|
+
host: z.ZodString;
|
|
2378
|
+
type: z.ZodEnum<{
|
|
2379
|
+
A: "A";
|
|
2380
|
+
AAAA: "AAAA";
|
|
2381
|
+
CNAME: "CNAME";
|
|
2382
|
+
CAA: "CAA";
|
|
2383
|
+
MX: "MX";
|
|
2384
|
+
TXT: "TXT";
|
|
2385
|
+
NS: "NS";
|
|
2386
|
+
}>;
|
|
2387
|
+
value: z.ZodString;
|
|
2388
|
+
ttl: z.ZodDefault<z.ZodNumber>;
|
|
2389
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
2390
|
+
optional: z.ZodDefault<z.ZodBoolean>;
|
|
2391
|
+
}, z.core.$strict>>;
|
|
2392
|
+
destructive: z.ZodBoolean;
|
|
2393
|
+
}, z.core.$strict>>;
|
|
2394
|
+
warnings: z.ZodArray<z.ZodEnum<{
|
|
2395
|
+
spf_policy_replaced: "spf_policy_replaced";
|
|
2396
|
+
spf_policy_merged: "spf_policy_merged";
|
|
2397
|
+
}>>;
|
|
2398
|
+
expiresAt: z.ZodISODateTime;
|
|
2399
|
+
}, z.core.$strict>>;
|
|
2400
|
+
failure: z.ZodOptional<z.ZodObject<{
|
|
2401
|
+
code: z.ZodEnum<{
|
|
2402
|
+
provider_snapshot_timeout: "provider_snapshot_timeout";
|
|
2403
|
+
provider_apply_timeout: "provider_apply_timeout";
|
|
2404
|
+
}>;
|
|
2405
|
+
retryable: z.ZodLiteral<true>;
|
|
2406
|
+
resumeState: z.ZodEnum<{
|
|
2407
|
+
authorized: "authorized";
|
|
2408
|
+
applying: "applying";
|
|
2409
|
+
awaiting_confirmation: "awaiting_confirmation";
|
|
2410
|
+
}>;
|
|
2411
|
+
occurredAt: z.ZodISODateTime;
|
|
2412
|
+
}, z.core.$strict>>;
|
|
2413
|
+
optionalFailures: z.ZodArray<z.ZodString>;
|
|
2414
|
+
createdAt: z.ZodISODateTime;
|
|
2415
|
+
updatedAt: z.ZodISODateTime;
|
|
2416
|
+
}, z.core.$strict>;
|
|
2417
|
+
attemptId: z.ZodString;
|
|
2418
|
+
challenge: z.ZodObject<{
|
|
2419
|
+
kind: z.ZodEnum<{
|
|
2420
|
+
otp: "otp";
|
|
2421
|
+
security_answer: "security_answer";
|
|
2422
|
+
}>;
|
|
2423
|
+
prompt: z.ZodString;
|
|
2424
|
+
destination: z.ZodString;
|
|
2425
|
+
}, z.core.$strict>;
|
|
2426
|
+
expiresAt: z.ZodISODateTime;
|
|
2427
|
+
}, z.core.$strict>], "status">;
|
|
2428
|
+
type ProviderSessionResponse = z.infer<typeof ProviderSessionResponseSchema>;
|
|
2429
|
+
declare const ContinueProviderSessionInputSchema: z.ZodObject<{
|
|
2430
|
+
response: z.ZodString;
|
|
2431
|
+
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
2432
|
+
}, z.core.$strict>;
|
|
2433
|
+
type ContinueProviderSessionInput = z.input<typeof ContinueProviderSessionInputSchema>;
|
|
2434
|
+
declare const ApiTokenCredentialsSchema: z.ZodObject<{
|
|
2435
|
+
kind: z.ZodLiteral<"api_token">;
|
|
2436
|
+
token: z.ZodString;
|
|
2437
|
+
}, z.core.$strict>;
|
|
2438
|
+
declare const ApiEndpointTokenCredentialsSchema: z.ZodObject<{
|
|
2439
|
+
token: z.ZodString;
|
|
2440
|
+
kind: z.ZodLiteral<"api_endpoint_token">;
|
|
2441
|
+
endpoint: z.ZodURL;
|
|
2442
|
+
}, z.core.$strict>;
|
|
2443
|
+
declare const AccessKeyCredentialsSchema: z.ZodObject<{
|
|
2444
|
+
kind: z.ZodLiteral<"access_key">;
|
|
2445
|
+
keyId: z.ZodString;
|
|
2446
|
+
secret: z.ZodString;
|
|
2447
|
+
}, z.core.$strict>;
|
|
2448
|
+
declare const UsernamePasswordCredentialsSchema: z.ZodObject<{
|
|
2449
|
+
kind: z.ZodLiteral<"username_password">;
|
|
2450
|
+
username: z.ZodString;
|
|
2451
|
+
password: z.ZodString;
|
|
2452
|
+
}, z.core.$strict>;
|
|
2453
|
+
declare const AccountTokenCredentialsSchema: z.ZodObject<{
|
|
2454
|
+
kind: z.ZodLiteral<"account_token">;
|
|
2455
|
+
accountId: z.ZodString;
|
|
2456
|
+
token: z.ZodString;
|
|
2457
|
+
}, z.core.$strict>;
|
|
2458
|
+
declare const SubAccountTokenCredentialsSchema: z.ZodObject<{
|
|
2459
|
+
accountId: z.ZodString;
|
|
2460
|
+
token: z.ZodString;
|
|
2461
|
+
kind: z.ZodLiteral<"sub_account_token">;
|
|
2462
|
+
}, z.core.$strict>;
|
|
2463
|
+
declare const UsernameTokenCredentialsSchema: z.ZodObject<{
|
|
2464
|
+
kind: z.ZodLiteral<"username_token">;
|
|
2465
|
+
username: z.ZodString;
|
|
2466
|
+
token: z.ZodString;
|
|
2467
|
+
}, z.core.$strict>;
|
|
2468
|
+
declare const OvhCredentialsSchema: z.ZodObject<{
|
|
2469
|
+
kind: z.ZodLiteral<"ovh">;
|
|
2470
|
+
endpoint: z.ZodEnum<{
|
|
2471
|
+
"ovh-eu": "ovh-eu";
|
|
2472
|
+
"ovh-us": "ovh-us";
|
|
2473
|
+
"ovh-ca": "ovh-ca";
|
|
2474
|
+
"kimsufi-eu": "kimsufi-eu";
|
|
2475
|
+
"kimsufi-ca": "kimsufi-ca";
|
|
2476
|
+
"soyoustart-eu": "soyoustart-eu";
|
|
2477
|
+
"soyoustart-ca": "soyoustart-ca";
|
|
2478
|
+
}>;
|
|
2479
|
+
applicationKey: z.ZodString;
|
|
2480
|
+
applicationSecret: z.ZodString;
|
|
2481
|
+
consumerKey: z.ZodString;
|
|
2482
|
+
}, z.core.$strict>;
|
|
2483
|
+
declare const PrivateKeyCredentialsSchema: z.ZodObject<{
|
|
2484
|
+
kind: z.ZodLiteral<"private_key">;
|
|
2485
|
+
login: z.ZodString;
|
|
2486
|
+
privateKey: z.ZodString;
|
|
2487
|
+
}, z.core.$strict>;
|
|
2488
|
+
declare const AwsSessionCredentialsSchema: z.ZodObject<{
|
|
2489
|
+
kind: z.ZodLiteral<"aws_session">;
|
|
2490
|
+
keyId: z.ZodString;
|
|
2491
|
+
secret: z.ZodString;
|
|
2492
|
+
sessionToken: z.ZodString;
|
|
2493
|
+
hostedZoneId: z.ZodString;
|
|
2494
|
+
expiresAt: z.ZodISODateTime;
|
|
2495
|
+
}, z.core.$strict>;
|
|
2496
|
+
declare const CPanelCredentialsSchema: z.ZodObject<{
|
|
2497
|
+
kind: z.ZodLiteral<"cpanel">;
|
|
2498
|
+
endpoint: z.ZodURL;
|
|
2499
|
+
username: z.ZodString;
|
|
2500
|
+
token: z.ZodString;
|
|
2501
|
+
}, z.core.$strict>;
|
|
2502
|
+
declare const ClientCredentialsSchema: z.ZodObject<{
|
|
2503
|
+
kind: z.ZodLiteral<"client_credentials">;
|
|
2504
|
+
clientId: z.ZodString;
|
|
2505
|
+
clientSecret: z.ZodString;
|
|
2506
|
+
}, z.core.$strict>;
|
|
2507
|
+
declare const DirectCredentialsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2508
|
+
accountId: z.ZodString;
|
|
2509
|
+
token: z.ZodString;
|
|
2510
|
+
kind: z.ZodLiteral<"sub_account_token">;
|
|
2511
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2512
|
+
kind: z.ZodLiteral<"api_token">;
|
|
2513
|
+
token: z.ZodString;
|
|
2514
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2515
|
+
token: z.ZodString;
|
|
2516
|
+
kind: z.ZodLiteral<"api_endpoint_token">;
|
|
2517
|
+
endpoint: z.ZodURL;
|
|
2518
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2519
|
+
kind: z.ZodLiteral<"access_key">;
|
|
2520
|
+
keyId: z.ZodString;
|
|
2521
|
+
secret: z.ZodString;
|
|
2522
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2523
|
+
kind: z.ZodLiteral<"username_password">;
|
|
2524
|
+
username: z.ZodString;
|
|
2525
|
+
password: z.ZodString;
|
|
2526
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2527
|
+
kind: z.ZodLiteral<"account_token">;
|
|
2528
|
+
accountId: z.ZodString;
|
|
2529
|
+
token: z.ZodString;
|
|
2530
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1627
2531
|
kind: z.ZodLiteral<"username_token">;
|
|
1628
2532
|
username: z.ZodString;
|
|
1629
2533
|
token: z.ZodString;
|
|
1630
|
-
}, z.core.$strict
|
|
1631
|
-
declare const OvhCredentialsSchema: z.ZodObject<{
|
|
2534
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1632
2535
|
kind: z.ZodLiteral<"ovh">;
|
|
1633
2536
|
endpoint: z.ZodEnum<{
|
|
1634
2537
|
"ovh-eu": "ovh-eu";
|
|
@@ -1642,31 +2545,94 @@ declare const OvhCredentialsSchema: z.ZodObject<{
|
|
|
1642
2545
|
applicationKey: z.ZodString;
|
|
1643
2546
|
applicationSecret: z.ZodString;
|
|
1644
2547
|
consumerKey: z.ZodString;
|
|
1645
|
-
}, z.core.$strict
|
|
1646
|
-
declare const PrivateKeyCredentialsSchema: z.ZodObject<{
|
|
2548
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1647
2549
|
kind: z.ZodLiteral<"private_key">;
|
|
1648
2550
|
login: z.ZodString;
|
|
1649
2551
|
privateKey: z.ZodString;
|
|
1650
|
-
}, z.core.$strict
|
|
1651
|
-
declare const AwsSessionCredentialsSchema: z.ZodObject<{
|
|
2552
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1652
2553
|
kind: z.ZodLiteral<"aws_session">;
|
|
1653
2554
|
keyId: z.ZodString;
|
|
1654
2555
|
secret: z.ZodString;
|
|
1655
2556
|
sessionToken: z.ZodString;
|
|
1656
2557
|
hostedZoneId: z.ZodString;
|
|
1657
2558
|
expiresAt: z.ZodISODateTime;
|
|
1658
|
-
}, z.core.$strict
|
|
1659
|
-
declare const CPanelCredentialsSchema: z.ZodObject<{
|
|
2559
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1660
2560
|
kind: z.ZodLiteral<"cpanel">;
|
|
1661
2561
|
endpoint: z.ZodURL;
|
|
1662
2562
|
username: z.ZodString;
|
|
1663
2563
|
token: z.ZodString;
|
|
1664
|
-
}, z.core.$strict
|
|
1665
|
-
declare const ClientCredentialsSchema: z.ZodObject<{
|
|
2564
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1666
2565
|
kind: z.ZodLiteral<"client_credentials">;
|
|
1667
2566
|
clientId: z.ZodString;
|
|
1668
2567
|
clientSecret: z.ZodString;
|
|
2568
|
+
}, z.core.$strict>], "kind">;
|
|
2569
|
+
type DirectCredentials = z.input<typeof DirectCredentialsSchema>;
|
|
2570
|
+
declare const StartProviderSessionInputSchema: z.ZodObject<{
|
|
2571
|
+
credentials: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2572
|
+
accountId: z.ZodString;
|
|
2573
|
+
token: z.ZodString;
|
|
2574
|
+
kind: z.ZodLiteral<"sub_account_token">;
|
|
2575
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2576
|
+
kind: z.ZodLiteral<"api_token">;
|
|
2577
|
+
token: z.ZodString;
|
|
2578
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2579
|
+
token: z.ZodString;
|
|
2580
|
+
kind: z.ZodLiteral<"api_endpoint_token">;
|
|
2581
|
+
endpoint: z.ZodURL;
|
|
2582
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2583
|
+
kind: z.ZodLiteral<"access_key">;
|
|
2584
|
+
keyId: z.ZodString;
|
|
2585
|
+
secret: z.ZodString;
|
|
2586
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2587
|
+
kind: z.ZodLiteral<"username_password">;
|
|
2588
|
+
username: z.ZodString;
|
|
2589
|
+
password: z.ZodString;
|
|
2590
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2591
|
+
kind: z.ZodLiteral<"account_token">;
|
|
2592
|
+
accountId: z.ZodString;
|
|
2593
|
+
token: z.ZodString;
|
|
2594
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2595
|
+
kind: z.ZodLiteral<"username_token">;
|
|
2596
|
+
username: z.ZodString;
|
|
2597
|
+
token: z.ZodString;
|
|
2598
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2599
|
+
kind: z.ZodLiteral<"ovh">;
|
|
2600
|
+
endpoint: z.ZodEnum<{
|
|
2601
|
+
"ovh-eu": "ovh-eu";
|
|
2602
|
+
"ovh-us": "ovh-us";
|
|
2603
|
+
"ovh-ca": "ovh-ca";
|
|
2604
|
+
"kimsufi-eu": "kimsufi-eu";
|
|
2605
|
+
"kimsufi-ca": "kimsufi-ca";
|
|
2606
|
+
"soyoustart-eu": "soyoustart-eu";
|
|
2607
|
+
"soyoustart-ca": "soyoustart-ca";
|
|
2608
|
+
}>;
|
|
2609
|
+
applicationKey: z.ZodString;
|
|
2610
|
+
applicationSecret: z.ZodString;
|
|
2611
|
+
consumerKey: z.ZodString;
|
|
2612
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2613
|
+
kind: z.ZodLiteral<"private_key">;
|
|
2614
|
+
login: z.ZodString;
|
|
2615
|
+
privateKey: z.ZodString;
|
|
2616
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2617
|
+
kind: z.ZodLiteral<"aws_session">;
|
|
2618
|
+
keyId: z.ZodString;
|
|
2619
|
+
secret: z.ZodString;
|
|
2620
|
+
sessionToken: z.ZodString;
|
|
2621
|
+
hostedZoneId: z.ZodString;
|
|
2622
|
+
expiresAt: z.ZodISODateTime;
|
|
2623
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2624
|
+
kind: z.ZodLiteral<"cpanel">;
|
|
2625
|
+
endpoint: z.ZodURL;
|
|
2626
|
+
username: z.ZodString;
|
|
2627
|
+
token: z.ZodString;
|
|
2628
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2629
|
+
kind: z.ZodLiteral<"client_credentials">;
|
|
2630
|
+
clientId: z.ZodString;
|
|
2631
|
+
clientSecret: z.ZodString;
|
|
2632
|
+
}, z.core.$strict>], "kind">;
|
|
2633
|
+
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1669
2634
|
}, z.core.$strict>;
|
|
2635
|
+
type StartProviderSessionInput = z.input<typeof StartProviderSessionInputSchema>;
|
|
1670
2636
|
declare const directCredentialAuthorizationOptions: readonly [z.ZodObject<{
|
|
1671
2637
|
providerId: z.ZodLiteral<"alibaba-cloud">;
|
|
1672
2638
|
credentials: z.ZodObject<{
|
|
@@ -1694,20 +2660,17 @@ declare const directCredentialAuthorizationOptions: readonly [z.ZodObject<{
|
|
|
1694
2660
|
expiresAt: z.ZodISODateTime;
|
|
1695
2661
|
}, z.core.$strict>;
|
|
1696
2662
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1697
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1698
|
-
providerId: z.ZodLiteral<"cloudflare">;
|
|
1699
|
-
credentials: z.ZodObject<{
|
|
1700
|
-
kind: z.ZodLiteral<"api_token">;
|
|
1701
|
-
token: z.ZodString;
|
|
1702
|
-
}, z.core.$strict>;
|
|
1703
|
-
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1704
2663
|
}, z.core.$strict>, z.ZodObject<{
|
|
1705
2664
|
providerId: z.ZodLiteral<"cloudns">;
|
|
1706
|
-
credentials: z.ZodObject<{
|
|
2665
|
+
credentials: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1707
2666
|
kind: z.ZodLiteral<"account_token">;
|
|
1708
2667
|
accountId: z.ZodString;
|
|
1709
2668
|
token: z.ZodString;
|
|
1710
|
-
}, z.core.$strict
|
|
2669
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2670
|
+
accountId: z.ZodString;
|
|
2671
|
+
token: z.ZodString;
|
|
2672
|
+
kind: z.ZodLiteral<"sub_account_token">;
|
|
2673
|
+
}, z.core.$strict>], "kind">;
|
|
1711
2674
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1712
2675
|
}, z.core.$strict>, z.ZodObject<{
|
|
1713
2676
|
providerId: z.ZodLiteral<"digitalocean">;
|
|
@@ -1754,19 +2717,16 @@ declare const directCredentialAuthorizationOptions: readonly [z.ZodObject<{
|
|
|
1754
2717
|
token: z.ZodString;
|
|
1755
2718
|
}, z.core.$strict>;
|
|
1756
2719
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1757
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1758
|
-
providerId: z.ZodLiteral<"godaddy">;
|
|
1759
|
-
credentials: z.ZodObject<{
|
|
1760
|
-
kind: z.ZodLiteral<"api_token">;
|
|
1761
|
-
token: z.ZodString;
|
|
1762
|
-
}, z.core.$strict>;
|
|
1763
|
-
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1764
2720
|
}, z.core.$strict>, z.ZodObject<{
|
|
1765
2721
|
providerId: z.ZodLiteral<"hetzner">;
|
|
1766
|
-
credentials: z.ZodObject<{
|
|
2722
|
+
credentials: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1767
2723
|
kind: z.ZodLiteral<"api_token">;
|
|
1768
2724
|
token: z.ZodString;
|
|
1769
|
-
}, z.core.$strict
|
|
2725
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2726
|
+
token: z.ZodString;
|
|
2727
|
+
kind: z.ZodLiteral<"api_endpoint_token">;
|
|
2728
|
+
endpoint: z.ZodLiteral<"https://api.hetzner.cloud/v1">;
|
|
2729
|
+
}, z.core.$strict>], "kind">;
|
|
1770
2730
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1771
2731
|
}, z.core.$strict>, z.ZodObject<{
|
|
1772
2732
|
providerId: z.ZodLiteral<"hostgator">;
|
|
@@ -1802,13 +2762,6 @@ declare const directCredentialAuthorizationOptions: readonly [z.ZodObject<{
|
|
|
1802
2762
|
token: z.ZodString;
|
|
1803
2763
|
}, z.core.$strict>;
|
|
1804
2764
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1805
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1806
|
-
providerId: z.ZodLiteral<"ionos">;
|
|
1807
|
-
credentials: z.ZodObject<{
|
|
1808
|
-
kind: z.ZodLiteral<"api_token">;
|
|
1809
|
-
token: z.ZodString;
|
|
1810
|
-
}, z.core.$strict>;
|
|
1811
|
-
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1812
2765
|
}, z.core.$strict>, z.ZodObject<{
|
|
1813
2766
|
providerId: z.ZodLiteral<"name-com">;
|
|
1814
2767
|
credentials: z.ZodObject<{
|
|
@@ -1817,13 +2770,6 @@ declare const directCredentialAuthorizationOptions: readonly [z.ZodObject<{
|
|
|
1817
2770
|
token: z.ZodString;
|
|
1818
2771
|
}, z.core.$strict>;
|
|
1819
2772
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1820
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1821
|
-
providerId: z.ZodLiteral<"namesilo">;
|
|
1822
|
-
credentials: z.ZodObject<{
|
|
1823
|
-
kind: z.ZodLiteral<"api_token">;
|
|
1824
|
-
token: z.ZodString;
|
|
1825
|
-
}, z.core.$strict>;
|
|
1826
|
-
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1827
2773
|
}, z.core.$strict>, z.ZodObject<{
|
|
1828
2774
|
providerId: z.ZodLiteral<"netlify">;
|
|
1829
2775
|
credentials: z.ZodObject<{
|
|
@@ -1911,13 +2857,6 @@ declare const directCredentialAuthorizationOptions: readonly [z.ZodObject<{
|
|
|
1911
2857
|
token: z.ZodString;
|
|
1912
2858
|
}, z.core.$strict>;
|
|
1913
2859
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1914
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1915
|
-
providerId: z.ZodLiteral<"vercel">;
|
|
1916
|
-
credentials: z.ZodObject<{
|
|
1917
|
-
kind: z.ZodLiteral<"api_token">;
|
|
1918
|
-
token: z.ZodString;
|
|
1919
|
-
}, z.core.$strict>;
|
|
1920
|
-
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1921
2860
|
}, z.core.$strict>, z.ZodObject<{
|
|
1922
2861
|
providerId: z.ZodLiteral<"wix">;
|
|
1923
2862
|
credentials: z.ZodObject<{
|
|
@@ -1929,7 +2868,7 @@ declare const directCredentialAuthorizationOptions: readonly [z.ZodObject<{
|
|
|
1929
2868
|
}, z.core.$strict>];
|
|
1930
2869
|
type DirectCredentialAuthorizationOption = typeof directCredentialAuthorizationOptions[number];
|
|
1931
2870
|
type DirectCredentialProviderId = z.input<DirectCredentialAuthorizationOption>['providerId'];
|
|
1932
|
-
type DirectCredentialKind =
|
|
2871
|
+
type DirectCredentialKind = TransientCredentialKind;
|
|
1933
2872
|
type DirectCredentialKindByProvider = { readonly [ProviderId in DirectCredentialProviderId]: Extract<z.input<DirectCredentialAuthorizationOption>, {
|
|
1934
2873
|
providerId: ProviderId;
|
|
1935
2874
|
}>['credentials']['kind']; };
|
|
@@ -1961,20 +2900,17 @@ declare const AuthorizeWithCredentialInputSchema: z.ZodDiscriminatedUnion<readon
|
|
|
1961
2900
|
expiresAt: z.ZodISODateTime;
|
|
1962
2901
|
}, z.core.$strict>;
|
|
1963
2902
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1964
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1965
|
-
providerId: z.ZodLiteral<"cloudflare">;
|
|
1966
|
-
credentials: z.ZodObject<{
|
|
1967
|
-
kind: z.ZodLiteral<"api_token">;
|
|
1968
|
-
token: z.ZodString;
|
|
1969
|
-
}, z.core.$strict>;
|
|
1970
|
-
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1971
2903
|
}, z.core.$strict>, z.ZodObject<{
|
|
1972
2904
|
providerId: z.ZodLiteral<"cloudns">;
|
|
1973
|
-
credentials: z.ZodObject<{
|
|
2905
|
+
credentials: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1974
2906
|
kind: z.ZodLiteral<"account_token">;
|
|
1975
2907
|
accountId: z.ZodString;
|
|
1976
2908
|
token: z.ZodString;
|
|
1977
|
-
}, z.core.$strict
|
|
2909
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2910
|
+
accountId: z.ZodString;
|
|
2911
|
+
token: z.ZodString;
|
|
2912
|
+
kind: z.ZodLiteral<"sub_account_token">;
|
|
2913
|
+
}, z.core.$strict>], "kind">;
|
|
1978
2914
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
1979
2915
|
}, z.core.$strict>, z.ZodObject<{
|
|
1980
2916
|
providerId: z.ZodLiteral<"digitalocean">;
|
|
@@ -2021,19 +2957,16 @@ declare const AuthorizeWithCredentialInputSchema: z.ZodDiscriminatedUnion<readon
|
|
|
2021
2957
|
token: z.ZodString;
|
|
2022
2958
|
}, z.core.$strict>;
|
|
2023
2959
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
2024
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2025
|
-
providerId: z.ZodLiteral<"godaddy">;
|
|
2026
|
-
credentials: z.ZodObject<{
|
|
2027
|
-
kind: z.ZodLiteral<"api_token">;
|
|
2028
|
-
token: z.ZodString;
|
|
2029
|
-
}, z.core.$strict>;
|
|
2030
|
-
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
2031
2960
|
}, z.core.$strict>, z.ZodObject<{
|
|
2032
2961
|
providerId: z.ZodLiteral<"hetzner">;
|
|
2033
|
-
credentials: z.ZodObject<{
|
|
2962
|
+
credentials: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2034
2963
|
kind: z.ZodLiteral<"api_token">;
|
|
2035
2964
|
token: z.ZodString;
|
|
2036
|
-
}, z.core.$strict
|
|
2965
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2966
|
+
token: z.ZodString;
|
|
2967
|
+
kind: z.ZodLiteral<"api_endpoint_token">;
|
|
2968
|
+
endpoint: z.ZodLiteral<"https://api.hetzner.cloud/v1">;
|
|
2969
|
+
}, z.core.$strict>], "kind">;
|
|
2037
2970
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
2038
2971
|
}, z.core.$strict>, z.ZodObject<{
|
|
2039
2972
|
providerId: z.ZodLiteral<"hostgator">;
|
|
@@ -2069,13 +3002,6 @@ declare const AuthorizeWithCredentialInputSchema: z.ZodDiscriminatedUnion<readon
|
|
|
2069
3002
|
token: z.ZodString;
|
|
2070
3003
|
}, z.core.$strict>;
|
|
2071
3004
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
2072
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2073
|
-
providerId: z.ZodLiteral<"ionos">;
|
|
2074
|
-
credentials: z.ZodObject<{
|
|
2075
|
-
kind: z.ZodLiteral<"api_token">;
|
|
2076
|
-
token: z.ZodString;
|
|
2077
|
-
}, z.core.$strict>;
|
|
2078
|
-
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
2079
3005
|
}, z.core.$strict>, z.ZodObject<{
|
|
2080
3006
|
providerId: z.ZodLiteral<"name-com">;
|
|
2081
3007
|
credentials: z.ZodObject<{
|
|
@@ -2084,13 +3010,6 @@ declare const AuthorizeWithCredentialInputSchema: z.ZodDiscriminatedUnion<readon
|
|
|
2084
3010
|
token: z.ZodString;
|
|
2085
3011
|
}, z.core.$strict>;
|
|
2086
3012
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
2087
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2088
|
-
providerId: z.ZodLiteral<"namesilo">;
|
|
2089
|
-
credentials: z.ZodObject<{
|
|
2090
|
-
kind: z.ZodLiteral<"api_token">;
|
|
2091
|
-
token: z.ZodString;
|
|
2092
|
-
}, z.core.$strict>;
|
|
2093
|
-
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
2094
3013
|
}, z.core.$strict>, z.ZodObject<{
|
|
2095
3014
|
providerId: z.ZodLiteral<"netlify">;
|
|
2096
3015
|
credentials: z.ZodObject<{
|
|
@@ -2178,13 +3097,6 @@ declare const AuthorizeWithCredentialInputSchema: z.ZodDiscriminatedUnion<readon
|
|
|
2178
3097
|
token: z.ZodString;
|
|
2179
3098
|
}, z.core.$strict>;
|
|
2180
3099
|
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
2181
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2182
|
-
providerId: z.ZodLiteral<"vercel">;
|
|
2183
|
-
credentials: z.ZodObject<{
|
|
2184
|
-
kind: z.ZodLiteral<"api_token">;
|
|
2185
|
-
token: z.ZodString;
|
|
2186
|
-
}, z.core.$strict>;
|
|
2187
|
-
commandId: z.core.$ZodBranded<z.ZodString, "CommandId", "out">;
|
|
2188
3100
|
}, z.core.$strict>, z.ZodObject<{
|
|
2189
3101
|
providerId: z.ZodLiteral<"wix">;
|
|
2190
3102
|
credentials: z.ZodObject<{
|
|
@@ -2729,15 +3641,46 @@ declare const Domain0ConnectSuccessEventSchema: z.ZodObject<{
|
|
|
2729
3641
|
manual: "manual";
|
|
2730
3642
|
}>;
|
|
2731
3643
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
3644
|
+
api_token: "api_token";
|
|
2732
3645
|
domain_connect: "domain_connect";
|
|
2733
3646
|
manual: "manual";
|
|
2734
3647
|
oauth2_pkce: "oauth2_pkce";
|
|
2735
3648
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
2736
|
-
|
|
3649
|
+
provider_session: "provider_session";
|
|
2737
3650
|
api_key: "api_key";
|
|
2738
3651
|
basic: "basic";
|
|
2739
3652
|
session: "session";
|
|
2740
3653
|
}>>;
|
|
3654
|
+
authorizationInputs: z.ZodObject<{
|
|
3655
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
3656
|
+
api_token: "api_token";
|
|
3657
|
+
api_endpoint_token: "api_endpoint_token";
|
|
3658
|
+
access_key: "access_key";
|
|
3659
|
+
username_password: "username_password";
|
|
3660
|
+
account_token: "account_token";
|
|
3661
|
+
sub_account_token: "sub_account_token";
|
|
3662
|
+
username_token: "username_token";
|
|
3663
|
+
ovh: "ovh";
|
|
3664
|
+
private_key: "private_key";
|
|
3665
|
+
aws_session: "aws_session";
|
|
3666
|
+
cpanel: "cpanel";
|
|
3667
|
+
client_credentials: "client_credentials";
|
|
3668
|
+
}>>;
|
|
3669
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
3670
|
+
api_token: "api_token";
|
|
3671
|
+
api_endpoint_token: "api_endpoint_token";
|
|
3672
|
+
access_key: "access_key";
|
|
3673
|
+
username_password: "username_password";
|
|
3674
|
+
account_token: "account_token";
|
|
3675
|
+
sub_account_token: "sub_account_token";
|
|
3676
|
+
username_token: "username_token";
|
|
3677
|
+
ovh: "ovh";
|
|
3678
|
+
private_key: "private_key";
|
|
3679
|
+
aws_session: "aws_session";
|
|
3680
|
+
cpanel: "cpanel";
|
|
3681
|
+
client_credentials: "client_credentials";
|
|
3682
|
+
}>>;
|
|
3683
|
+
}, z.core.$strict>;
|
|
2741
3684
|
capabilities: z.ZodObject<{
|
|
2742
3685
|
rootNSModification: z.ZodEnum<{
|
|
2743
3686
|
supported: "supported";
|
|
@@ -2943,15 +3886,46 @@ declare const Domain0ConnectFailureEventSchema: z.ZodObject<{
|
|
|
2943
3886
|
manual: "manual";
|
|
2944
3887
|
}>;
|
|
2945
3888
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
3889
|
+
api_token: "api_token";
|
|
2946
3890
|
domain_connect: "domain_connect";
|
|
2947
3891
|
manual: "manual";
|
|
2948
3892
|
oauth2_pkce: "oauth2_pkce";
|
|
2949
3893
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
2950
|
-
|
|
3894
|
+
provider_session: "provider_session";
|
|
2951
3895
|
api_key: "api_key";
|
|
2952
3896
|
basic: "basic";
|
|
2953
3897
|
session: "session";
|
|
2954
3898
|
}>>;
|
|
3899
|
+
authorizationInputs: z.ZodObject<{
|
|
3900
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
3901
|
+
api_token: "api_token";
|
|
3902
|
+
api_endpoint_token: "api_endpoint_token";
|
|
3903
|
+
access_key: "access_key";
|
|
3904
|
+
username_password: "username_password";
|
|
3905
|
+
account_token: "account_token";
|
|
3906
|
+
sub_account_token: "sub_account_token";
|
|
3907
|
+
username_token: "username_token";
|
|
3908
|
+
ovh: "ovh";
|
|
3909
|
+
private_key: "private_key";
|
|
3910
|
+
aws_session: "aws_session";
|
|
3911
|
+
cpanel: "cpanel";
|
|
3912
|
+
client_credentials: "client_credentials";
|
|
3913
|
+
}>>;
|
|
3914
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
3915
|
+
api_token: "api_token";
|
|
3916
|
+
api_endpoint_token: "api_endpoint_token";
|
|
3917
|
+
access_key: "access_key";
|
|
3918
|
+
username_password: "username_password";
|
|
3919
|
+
account_token: "account_token";
|
|
3920
|
+
sub_account_token: "sub_account_token";
|
|
3921
|
+
username_token: "username_token";
|
|
3922
|
+
ovh: "ovh";
|
|
3923
|
+
private_key: "private_key";
|
|
3924
|
+
aws_session: "aws_session";
|
|
3925
|
+
cpanel: "cpanel";
|
|
3926
|
+
client_credentials: "client_credentials";
|
|
3927
|
+
}>>;
|
|
3928
|
+
}, z.core.$strict>;
|
|
2955
3929
|
capabilities: z.ZodObject<{
|
|
2956
3930
|
rootNSModification: z.ZodEnum<{
|
|
2957
3931
|
supported: "supported";
|
|
@@ -3166,15 +4140,46 @@ declare const Domain0ConnectFailureEventSchema: z.ZodObject<{
|
|
|
3166
4140
|
manual: "manual";
|
|
3167
4141
|
}>;
|
|
3168
4142
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
4143
|
+
api_token: "api_token";
|
|
3169
4144
|
domain_connect: "domain_connect";
|
|
3170
4145
|
manual: "manual";
|
|
3171
4146
|
oauth2_pkce: "oauth2_pkce";
|
|
3172
4147
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
3173
|
-
|
|
4148
|
+
provider_session: "provider_session";
|
|
3174
4149
|
api_key: "api_key";
|
|
3175
4150
|
basic: "basic";
|
|
3176
4151
|
session: "session";
|
|
3177
4152
|
}>>;
|
|
4153
|
+
authorizationInputs: z.ZodObject<{
|
|
4154
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
4155
|
+
api_token: "api_token";
|
|
4156
|
+
api_endpoint_token: "api_endpoint_token";
|
|
4157
|
+
access_key: "access_key";
|
|
4158
|
+
username_password: "username_password";
|
|
4159
|
+
account_token: "account_token";
|
|
4160
|
+
sub_account_token: "sub_account_token";
|
|
4161
|
+
username_token: "username_token";
|
|
4162
|
+
ovh: "ovh";
|
|
4163
|
+
private_key: "private_key";
|
|
4164
|
+
aws_session: "aws_session";
|
|
4165
|
+
cpanel: "cpanel";
|
|
4166
|
+
client_credentials: "client_credentials";
|
|
4167
|
+
}>>;
|
|
4168
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
4169
|
+
api_token: "api_token";
|
|
4170
|
+
api_endpoint_token: "api_endpoint_token";
|
|
4171
|
+
access_key: "access_key";
|
|
4172
|
+
username_password: "username_password";
|
|
4173
|
+
account_token: "account_token";
|
|
4174
|
+
sub_account_token: "sub_account_token";
|
|
4175
|
+
username_token: "username_token";
|
|
4176
|
+
ovh: "ovh";
|
|
4177
|
+
private_key: "private_key";
|
|
4178
|
+
aws_session: "aws_session";
|
|
4179
|
+
cpanel: "cpanel";
|
|
4180
|
+
client_credentials: "client_credentials";
|
|
4181
|
+
}>>;
|
|
4182
|
+
}, z.core.$strict>;
|
|
3178
4183
|
capabilities: z.ZodObject<{
|
|
3179
4184
|
rootNSModification: z.ZodEnum<{
|
|
3180
4185
|
supported: "supported";
|
|
@@ -3417,15 +4422,46 @@ declare const Domain0ConnectErrorEventSchema: z.ZodObject<{
|
|
|
3417
4422
|
manual: "manual";
|
|
3418
4423
|
}>;
|
|
3419
4424
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
4425
|
+
api_token: "api_token";
|
|
3420
4426
|
domain_connect: "domain_connect";
|
|
3421
4427
|
manual: "manual";
|
|
3422
4428
|
oauth2_pkce: "oauth2_pkce";
|
|
3423
4429
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
3424
|
-
|
|
4430
|
+
provider_session: "provider_session";
|
|
3425
4431
|
api_key: "api_key";
|
|
3426
4432
|
basic: "basic";
|
|
3427
4433
|
session: "session";
|
|
3428
4434
|
}>>;
|
|
4435
|
+
authorizationInputs: z.ZodObject<{
|
|
4436
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
4437
|
+
api_token: "api_token";
|
|
4438
|
+
api_endpoint_token: "api_endpoint_token";
|
|
4439
|
+
access_key: "access_key";
|
|
4440
|
+
username_password: "username_password";
|
|
4441
|
+
account_token: "account_token";
|
|
4442
|
+
sub_account_token: "sub_account_token";
|
|
4443
|
+
username_token: "username_token";
|
|
4444
|
+
ovh: "ovh";
|
|
4445
|
+
private_key: "private_key";
|
|
4446
|
+
aws_session: "aws_session";
|
|
4447
|
+
cpanel: "cpanel";
|
|
4448
|
+
client_credentials: "client_credentials";
|
|
4449
|
+
}>>;
|
|
4450
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
4451
|
+
api_token: "api_token";
|
|
4452
|
+
api_endpoint_token: "api_endpoint_token";
|
|
4453
|
+
access_key: "access_key";
|
|
4454
|
+
username_password: "username_password";
|
|
4455
|
+
account_token: "account_token";
|
|
4456
|
+
sub_account_token: "sub_account_token";
|
|
4457
|
+
username_token: "username_token";
|
|
4458
|
+
ovh: "ovh";
|
|
4459
|
+
private_key: "private_key";
|
|
4460
|
+
aws_session: "aws_session";
|
|
4461
|
+
cpanel: "cpanel";
|
|
4462
|
+
client_credentials: "client_credentials";
|
|
4463
|
+
}>>;
|
|
4464
|
+
}, z.core.$strict>;
|
|
3429
4465
|
capabilities: z.ZodObject<{
|
|
3430
4466
|
rootNSModification: z.ZodEnum<{
|
|
3431
4467
|
supported: "supported";
|
|
@@ -3664,15 +4700,46 @@ declare const Domain0ConnectCloseEventSchema: z.ZodObject<{
|
|
|
3664
4700
|
manual: "manual";
|
|
3665
4701
|
}>;
|
|
3666
4702
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
4703
|
+
api_token: "api_token";
|
|
3667
4704
|
domain_connect: "domain_connect";
|
|
3668
4705
|
manual: "manual";
|
|
3669
4706
|
oauth2_pkce: "oauth2_pkce";
|
|
3670
4707
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
3671
|
-
|
|
4708
|
+
provider_session: "provider_session";
|
|
3672
4709
|
api_key: "api_key";
|
|
3673
4710
|
basic: "basic";
|
|
3674
4711
|
session: "session";
|
|
3675
4712
|
}>>;
|
|
4713
|
+
authorizationInputs: z.ZodObject<{
|
|
4714
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
4715
|
+
api_token: "api_token";
|
|
4716
|
+
api_endpoint_token: "api_endpoint_token";
|
|
4717
|
+
access_key: "access_key";
|
|
4718
|
+
username_password: "username_password";
|
|
4719
|
+
account_token: "account_token";
|
|
4720
|
+
sub_account_token: "sub_account_token";
|
|
4721
|
+
username_token: "username_token";
|
|
4722
|
+
ovh: "ovh";
|
|
4723
|
+
private_key: "private_key";
|
|
4724
|
+
aws_session: "aws_session";
|
|
4725
|
+
cpanel: "cpanel";
|
|
4726
|
+
client_credentials: "client_credentials";
|
|
4727
|
+
}>>;
|
|
4728
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
4729
|
+
api_token: "api_token";
|
|
4730
|
+
api_endpoint_token: "api_endpoint_token";
|
|
4731
|
+
access_key: "access_key";
|
|
4732
|
+
username_password: "username_password";
|
|
4733
|
+
account_token: "account_token";
|
|
4734
|
+
sub_account_token: "sub_account_token";
|
|
4735
|
+
username_token: "username_token";
|
|
4736
|
+
ovh: "ovh";
|
|
4737
|
+
private_key: "private_key";
|
|
4738
|
+
aws_session: "aws_session";
|
|
4739
|
+
cpanel: "cpanel";
|
|
4740
|
+
client_credentials: "client_credentials";
|
|
4741
|
+
}>>;
|
|
4742
|
+
}, z.core.$strict>;
|
|
3676
4743
|
capabilities: z.ZodObject<{
|
|
3677
4744
|
rootNSModification: z.ZodEnum<{
|
|
3678
4745
|
supported: "supported";
|
|
@@ -3978,15 +5045,46 @@ declare const Domain0ConnectStepChangeEventSchema: z.ZodObject<{
|
|
|
3978
5045
|
manual: "manual";
|
|
3979
5046
|
}>;
|
|
3980
5047
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
5048
|
+
api_token: "api_token";
|
|
3981
5049
|
domain_connect: "domain_connect";
|
|
3982
5050
|
manual: "manual";
|
|
3983
5051
|
oauth2_pkce: "oauth2_pkce";
|
|
3984
5052
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
3985
|
-
|
|
5053
|
+
provider_session: "provider_session";
|
|
3986
5054
|
api_key: "api_key";
|
|
3987
5055
|
basic: "basic";
|
|
3988
5056
|
session: "session";
|
|
3989
5057
|
}>>;
|
|
5058
|
+
authorizationInputs: z.ZodObject<{
|
|
5059
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
5060
|
+
api_token: "api_token";
|
|
5061
|
+
api_endpoint_token: "api_endpoint_token";
|
|
5062
|
+
access_key: "access_key";
|
|
5063
|
+
username_password: "username_password";
|
|
5064
|
+
account_token: "account_token";
|
|
5065
|
+
sub_account_token: "sub_account_token";
|
|
5066
|
+
username_token: "username_token";
|
|
5067
|
+
ovh: "ovh";
|
|
5068
|
+
private_key: "private_key";
|
|
5069
|
+
aws_session: "aws_session";
|
|
5070
|
+
cpanel: "cpanel";
|
|
5071
|
+
client_credentials: "client_credentials";
|
|
5072
|
+
}>>;
|
|
5073
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
5074
|
+
api_token: "api_token";
|
|
5075
|
+
api_endpoint_token: "api_endpoint_token";
|
|
5076
|
+
access_key: "access_key";
|
|
5077
|
+
username_password: "username_password";
|
|
5078
|
+
account_token: "account_token";
|
|
5079
|
+
sub_account_token: "sub_account_token";
|
|
5080
|
+
username_token: "username_token";
|
|
5081
|
+
ovh: "ovh";
|
|
5082
|
+
private_key: "private_key";
|
|
5083
|
+
aws_session: "aws_session";
|
|
5084
|
+
cpanel: "cpanel";
|
|
5085
|
+
client_credentials: "client_credentials";
|
|
5086
|
+
}>>;
|
|
5087
|
+
}, z.core.$strict>;
|
|
3990
5088
|
capabilities: z.ZodObject<{
|
|
3991
5089
|
rootNSModification: z.ZodEnum<{
|
|
3992
5090
|
supported: "supported";
|
|
@@ -4190,15 +5288,46 @@ declare const Domain0ManualSetupDocumentationClickEventSchema: z.ZodObject<{
|
|
|
4190
5288
|
manual: "manual";
|
|
4191
5289
|
}>;
|
|
4192
5290
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
5291
|
+
api_token: "api_token";
|
|
4193
5292
|
domain_connect: "domain_connect";
|
|
4194
5293
|
manual: "manual";
|
|
4195
5294
|
oauth2_pkce: "oauth2_pkce";
|
|
4196
5295
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
4197
|
-
|
|
5296
|
+
provider_session: "provider_session";
|
|
4198
5297
|
api_key: "api_key";
|
|
4199
5298
|
basic: "basic";
|
|
4200
5299
|
session: "session";
|
|
4201
5300
|
}>>;
|
|
5301
|
+
authorizationInputs: z.ZodObject<{
|
|
5302
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
5303
|
+
api_token: "api_token";
|
|
5304
|
+
api_endpoint_token: "api_endpoint_token";
|
|
5305
|
+
access_key: "access_key";
|
|
5306
|
+
username_password: "username_password";
|
|
5307
|
+
account_token: "account_token";
|
|
5308
|
+
sub_account_token: "sub_account_token";
|
|
5309
|
+
username_token: "username_token";
|
|
5310
|
+
ovh: "ovh";
|
|
5311
|
+
private_key: "private_key";
|
|
5312
|
+
aws_session: "aws_session";
|
|
5313
|
+
cpanel: "cpanel";
|
|
5314
|
+
client_credentials: "client_credentials";
|
|
5315
|
+
}>>;
|
|
5316
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
5317
|
+
api_token: "api_token";
|
|
5318
|
+
api_endpoint_token: "api_endpoint_token";
|
|
5319
|
+
access_key: "access_key";
|
|
5320
|
+
username_password: "username_password";
|
|
5321
|
+
account_token: "account_token";
|
|
5322
|
+
sub_account_token: "sub_account_token";
|
|
5323
|
+
username_token: "username_token";
|
|
5324
|
+
ovh: "ovh";
|
|
5325
|
+
private_key: "private_key";
|
|
5326
|
+
aws_session: "aws_session";
|
|
5327
|
+
cpanel: "cpanel";
|
|
5328
|
+
client_credentials: "client_credentials";
|
|
5329
|
+
}>>;
|
|
5330
|
+
}, z.core.$strict>;
|
|
4202
5331
|
capabilities: z.ZodObject<{
|
|
4203
5332
|
rootNSModification: z.ZodEnum<{
|
|
4204
5333
|
supported: "supported";
|
|
@@ -4404,15 +5533,46 @@ declare const Domain0RequestCloseEventSchema: z.ZodObject<{
|
|
|
4404
5533
|
manual: "manual";
|
|
4405
5534
|
}>;
|
|
4406
5535
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
5536
|
+
api_token: "api_token";
|
|
4407
5537
|
domain_connect: "domain_connect";
|
|
4408
5538
|
manual: "manual";
|
|
4409
5539
|
oauth2_pkce: "oauth2_pkce";
|
|
4410
5540
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
4411
|
-
|
|
5541
|
+
provider_session: "provider_session";
|
|
4412
5542
|
api_key: "api_key";
|
|
4413
5543
|
basic: "basic";
|
|
4414
5544
|
session: "session";
|
|
4415
5545
|
}>>;
|
|
5546
|
+
authorizationInputs: z.ZodObject<{
|
|
5547
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
5548
|
+
api_token: "api_token";
|
|
5549
|
+
api_endpoint_token: "api_endpoint_token";
|
|
5550
|
+
access_key: "access_key";
|
|
5551
|
+
username_password: "username_password";
|
|
5552
|
+
account_token: "account_token";
|
|
5553
|
+
sub_account_token: "sub_account_token";
|
|
5554
|
+
username_token: "username_token";
|
|
5555
|
+
ovh: "ovh";
|
|
5556
|
+
private_key: "private_key";
|
|
5557
|
+
aws_session: "aws_session";
|
|
5558
|
+
cpanel: "cpanel";
|
|
5559
|
+
client_credentials: "client_credentials";
|
|
5560
|
+
}>>;
|
|
5561
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
5562
|
+
api_token: "api_token";
|
|
5563
|
+
api_endpoint_token: "api_endpoint_token";
|
|
5564
|
+
access_key: "access_key";
|
|
5565
|
+
username_password: "username_password";
|
|
5566
|
+
account_token: "account_token";
|
|
5567
|
+
sub_account_token: "sub_account_token";
|
|
5568
|
+
username_token: "username_token";
|
|
5569
|
+
ovh: "ovh";
|
|
5570
|
+
private_key: "private_key";
|
|
5571
|
+
aws_session: "aws_session";
|
|
5572
|
+
cpanel: "cpanel";
|
|
5573
|
+
client_credentials: "client_credentials";
|
|
5574
|
+
}>>;
|
|
5575
|
+
}, z.core.$strict>;
|
|
4416
5576
|
capabilities: z.ZodObject<{
|
|
4417
5577
|
rootNSModification: z.ZodEnum<{
|
|
4418
5578
|
supported: "supported";
|
|
@@ -4638,15 +5798,46 @@ declare const Domain0SharedFlowSentEventSchema: z.ZodObject<{
|
|
|
4638
5798
|
manual: "manual";
|
|
4639
5799
|
}>;
|
|
4640
5800
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
5801
|
+
api_token: "api_token";
|
|
4641
5802
|
domain_connect: "domain_connect";
|
|
4642
5803
|
manual: "manual";
|
|
4643
5804
|
oauth2_pkce: "oauth2_pkce";
|
|
4644
5805
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
4645
|
-
|
|
5806
|
+
provider_session: "provider_session";
|
|
4646
5807
|
api_key: "api_key";
|
|
4647
5808
|
basic: "basic";
|
|
4648
5809
|
session: "session";
|
|
4649
5810
|
}>>;
|
|
5811
|
+
authorizationInputs: z.ZodObject<{
|
|
5812
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
5813
|
+
api_token: "api_token";
|
|
5814
|
+
api_endpoint_token: "api_endpoint_token";
|
|
5815
|
+
access_key: "access_key";
|
|
5816
|
+
username_password: "username_password";
|
|
5817
|
+
account_token: "account_token";
|
|
5818
|
+
sub_account_token: "sub_account_token";
|
|
5819
|
+
username_token: "username_token";
|
|
5820
|
+
ovh: "ovh";
|
|
5821
|
+
private_key: "private_key";
|
|
5822
|
+
aws_session: "aws_session";
|
|
5823
|
+
cpanel: "cpanel";
|
|
5824
|
+
client_credentials: "client_credentials";
|
|
5825
|
+
}>>;
|
|
5826
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
5827
|
+
api_token: "api_token";
|
|
5828
|
+
api_endpoint_token: "api_endpoint_token";
|
|
5829
|
+
access_key: "access_key";
|
|
5830
|
+
username_password: "username_password";
|
|
5831
|
+
account_token: "account_token";
|
|
5832
|
+
sub_account_token: "sub_account_token";
|
|
5833
|
+
username_token: "username_token";
|
|
5834
|
+
ovh: "ovh";
|
|
5835
|
+
private_key: "private_key";
|
|
5836
|
+
aws_session: "aws_session";
|
|
5837
|
+
cpanel: "cpanel";
|
|
5838
|
+
client_credentials: "client_credentials";
|
|
5839
|
+
}>>;
|
|
5840
|
+
}, z.core.$strict>;
|
|
4650
5841
|
capabilities: z.ZodObject<{
|
|
4651
5842
|
rootNSModification: z.ZodEnum<{
|
|
4652
5843
|
supported: "supported";
|
|
@@ -4855,15 +6046,46 @@ declare const Domain0DkimSetupDocumentationClickEventSchema: z.ZodObject<{
|
|
|
4855
6046
|
manual: "manual";
|
|
4856
6047
|
}>;
|
|
4857
6048
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
6049
|
+
api_token: "api_token";
|
|
4858
6050
|
domain_connect: "domain_connect";
|
|
4859
6051
|
manual: "manual";
|
|
4860
6052
|
oauth2_pkce: "oauth2_pkce";
|
|
4861
6053
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
4862
|
-
|
|
6054
|
+
provider_session: "provider_session";
|
|
4863
6055
|
api_key: "api_key";
|
|
4864
6056
|
basic: "basic";
|
|
4865
6057
|
session: "session";
|
|
4866
6058
|
}>>;
|
|
6059
|
+
authorizationInputs: z.ZodObject<{
|
|
6060
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
6061
|
+
api_token: "api_token";
|
|
6062
|
+
api_endpoint_token: "api_endpoint_token";
|
|
6063
|
+
access_key: "access_key";
|
|
6064
|
+
username_password: "username_password";
|
|
6065
|
+
account_token: "account_token";
|
|
6066
|
+
sub_account_token: "sub_account_token";
|
|
6067
|
+
username_token: "username_token";
|
|
6068
|
+
ovh: "ovh";
|
|
6069
|
+
private_key: "private_key";
|
|
6070
|
+
aws_session: "aws_session";
|
|
6071
|
+
cpanel: "cpanel";
|
|
6072
|
+
client_credentials: "client_credentials";
|
|
6073
|
+
}>>;
|
|
6074
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
6075
|
+
api_token: "api_token";
|
|
6076
|
+
api_endpoint_token: "api_endpoint_token";
|
|
6077
|
+
access_key: "access_key";
|
|
6078
|
+
username_password: "username_password";
|
|
6079
|
+
account_token: "account_token";
|
|
6080
|
+
sub_account_token: "sub_account_token";
|
|
6081
|
+
username_token: "username_token";
|
|
6082
|
+
ovh: "ovh";
|
|
6083
|
+
private_key: "private_key";
|
|
6084
|
+
aws_session: "aws_session";
|
|
6085
|
+
cpanel: "cpanel";
|
|
6086
|
+
client_credentials: "client_credentials";
|
|
6087
|
+
}>>;
|
|
6088
|
+
}, z.core.$strict>;
|
|
4867
6089
|
capabilities: z.ZodObject<{
|
|
4868
6090
|
rootNSModification: z.ZodEnum<{
|
|
4869
6091
|
supported: "supported";
|
|
@@ -5082,15 +6304,46 @@ declare const Domain0ConnectEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5082
6304
|
manual: "manual";
|
|
5083
6305
|
}>;
|
|
5084
6306
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
6307
|
+
api_token: "api_token";
|
|
5085
6308
|
domain_connect: "domain_connect";
|
|
5086
6309
|
manual: "manual";
|
|
5087
6310
|
oauth2_pkce: "oauth2_pkce";
|
|
5088
6311
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
5089
|
-
|
|
6312
|
+
provider_session: "provider_session";
|
|
5090
6313
|
api_key: "api_key";
|
|
5091
6314
|
basic: "basic";
|
|
5092
6315
|
session: "session";
|
|
5093
6316
|
}>>;
|
|
6317
|
+
authorizationInputs: z.ZodObject<{
|
|
6318
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
6319
|
+
api_token: "api_token";
|
|
6320
|
+
api_endpoint_token: "api_endpoint_token";
|
|
6321
|
+
access_key: "access_key";
|
|
6322
|
+
username_password: "username_password";
|
|
6323
|
+
account_token: "account_token";
|
|
6324
|
+
sub_account_token: "sub_account_token";
|
|
6325
|
+
username_token: "username_token";
|
|
6326
|
+
ovh: "ovh";
|
|
6327
|
+
private_key: "private_key";
|
|
6328
|
+
aws_session: "aws_session";
|
|
6329
|
+
cpanel: "cpanel";
|
|
6330
|
+
client_credentials: "client_credentials";
|
|
6331
|
+
}>>;
|
|
6332
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
6333
|
+
api_token: "api_token";
|
|
6334
|
+
api_endpoint_token: "api_endpoint_token";
|
|
6335
|
+
access_key: "access_key";
|
|
6336
|
+
username_password: "username_password";
|
|
6337
|
+
account_token: "account_token";
|
|
6338
|
+
sub_account_token: "sub_account_token";
|
|
6339
|
+
username_token: "username_token";
|
|
6340
|
+
ovh: "ovh";
|
|
6341
|
+
private_key: "private_key";
|
|
6342
|
+
aws_session: "aws_session";
|
|
6343
|
+
cpanel: "cpanel";
|
|
6344
|
+
client_credentials: "client_credentials";
|
|
6345
|
+
}>>;
|
|
6346
|
+
}, z.core.$strict>;
|
|
5094
6347
|
capabilities: z.ZodObject<{
|
|
5095
6348
|
rootNSModification: z.ZodEnum<{
|
|
5096
6349
|
supported: "supported";
|
|
@@ -5295,15 +6548,46 @@ declare const Domain0ConnectEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5295
6548
|
manual: "manual";
|
|
5296
6549
|
}>;
|
|
5297
6550
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
6551
|
+
api_token: "api_token";
|
|
5298
6552
|
domain_connect: "domain_connect";
|
|
5299
6553
|
manual: "manual";
|
|
5300
6554
|
oauth2_pkce: "oauth2_pkce";
|
|
5301
6555
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
5302
|
-
|
|
6556
|
+
provider_session: "provider_session";
|
|
5303
6557
|
api_key: "api_key";
|
|
5304
6558
|
basic: "basic";
|
|
5305
6559
|
session: "session";
|
|
5306
6560
|
}>>;
|
|
6561
|
+
authorizationInputs: z.ZodObject<{
|
|
6562
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
6563
|
+
api_token: "api_token";
|
|
6564
|
+
api_endpoint_token: "api_endpoint_token";
|
|
6565
|
+
access_key: "access_key";
|
|
6566
|
+
username_password: "username_password";
|
|
6567
|
+
account_token: "account_token";
|
|
6568
|
+
sub_account_token: "sub_account_token";
|
|
6569
|
+
username_token: "username_token";
|
|
6570
|
+
ovh: "ovh";
|
|
6571
|
+
private_key: "private_key";
|
|
6572
|
+
aws_session: "aws_session";
|
|
6573
|
+
cpanel: "cpanel";
|
|
6574
|
+
client_credentials: "client_credentials";
|
|
6575
|
+
}>>;
|
|
6576
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
6577
|
+
api_token: "api_token";
|
|
6578
|
+
api_endpoint_token: "api_endpoint_token";
|
|
6579
|
+
access_key: "access_key";
|
|
6580
|
+
username_password: "username_password";
|
|
6581
|
+
account_token: "account_token";
|
|
6582
|
+
sub_account_token: "sub_account_token";
|
|
6583
|
+
username_token: "username_token";
|
|
6584
|
+
ovh: "ovh";
|
|
6585
|
+
private_key: "private_key";
|
|
6586
|
+
aws_session: "aws_session";
|
|
6587
|
+
cpanel: "cpanel";
|
|
6588
|
+
client_credentials: "client_credentials";
|
|
6589
|
+
}>>;
|
|
6590
|
+
}, z.core.$strict>;
|
|
5307
6591
|
capabilities: z.ZodObject<{
|
|
5308
6592
|
rootNSModification: z.ZodEnum<{
|
|
5309
6593
|
supported: "supported";
|
|
@@ -5518,15 +6802,46 @@ declare const Domain0ConnectEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5518
6802
|
manual: "manual";
|
|
5519
6803
|
}>;
|
|
5520
6804
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
6805
|
+
api_token: "api_token";
|
|
5521
6806
|
domain_connect: "domain_connect";
|
|
5522
6807
|
manual: "manual";
|
|
5523
6808
|
oauth2_pkce: "oauth2_pkce";
|
|
5524
6809
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
5525
|
-
|
|
6810
|
+
provider_session: "provider_session";
|
|
5526
6811
|
api_key: "api_key";
|
|
5527
6812
|
basic: "basic";
|
|
5528
6813
|
session: "session";
|
|
5529
6814
|
}>>;
|
|
6815
|
+
authorizationInputs: z.ZodObject<{
|
|
6816
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
6817
|
+
api_token: "api_token";
|
|
6818
|
+
api_endpoint_token: "api_endpoint_token";
|
|
6819
|
+
access_key: "access_key";
|
|
6820
|
+
username_password: "username_password";
|
|
6821
|
+
account_token: "account_token";
|
|
6822
|
+
sub_account_token: "sub_account_token";
|
|
6823
|
+
username_token: "username_token";
|
|
6824
|
+
ovh: "ovh";
|
|
6825
|
+
private_key: "private_key";
|
|
6826
|
+
aws_session: "aws_session";
|
|
6827
|
+
cpanel: "cpanel";
|
|
6828
|
+
client_credentials: "client_credentials";
|
|
6829
|
+
}>>;
|
|
6830
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
6831
|
+
api_token: "api_token";
|
|
6832
|
+
api_endpoint_token: "api_endpoint_token";
|
|
6833
|
+
access_key: "access_key";
|
|
6834
|
+
username_password: "username_password";
|
|
6835
|
+
account_token: "account_token";
|
|
6836
|
+
sub_account_token: "sub_account_token";
|
|
6837
|
+
username_token: "username_token";
|
|
6838
|
+
ovh: "ovh";
|
|
6839
|
+
private_key: "private_key";
|
|
6840
|
+
aws_session: "aws_session";
|
|
6841
|
+
cpanel: "cpanel";
|
|
6842
|
+
client_credentials: "client_credentials";
|
|
6843
|
+
}>>;
|
|
6844
|
+
}, z.core.$strict>;
|
|
5530
6845
|
capabilities: z.ZodObject<{
|
|
5531
6846
|
rootNSModification: z.ZodEnum<{
|
|
5532
6847
|
supported: "supported";
|
|
@@ -5768,15 +7083,46 @@ declare const Domain0ConnectEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5768
7083
|
manual: "manual";
|
|
5769
7084
|
}>;
|
|
5770
7085
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
7086
|
+
api_token: "api_token";
|
|
5771
7087
|
domain_connect: "domain_connect";
|
|
5772
7088
|
manual: "manual";
|
|
5773
7089
|
oauth2_pkce: "oauth2_pkce";
|
|
5774
7090
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
5775
|
-
|
|
7091
|
+
provider_session: "provider_session";
|
|
5776
7092
|
api_key: "api_key";
|
|
5777
7093
|
basic: "basic";
|
|
5778
7094
|
session: "session";
|
|
5779
7095
|
}>>;
|
|
7096
|
+
authorizationInputs: z.ZodObject<{
|
|
7097
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
7098
|
+
api_token: "api_token";
|
|
7099
|
+
api_endpoint_token: "api_endpoint_token";
|
|
7100
|
+
access_key: "access_key";
|
|
7101
|
+
username_password: "username_password";
|
|
7102
|
+
account_token: "account_token";
|
|
7103
|
+
sub_account_token: "sub_account_token";
|
|
7104
|
+
username_token: "username_token";
|
|
7105
|
+
ovh: "ovh";
|
|
7106
|
+
private_key: "private_key";
|
|
7107
|
+
aws_session: "aws_session";
|
|
7108
|
+
cpanel: "cpanel";
|
|
7109
|
+
client_credentials: "client_credentials";
|
|
7110
|
+
}>>;
|
|
7111
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
7112
|
+
api_token: "api_token";
|
|
7113
|
+
api_endpoint_token: "api_endpoint_token";
|
|
7114
|
+
access_key: "access_key";
|
|
7115
|
+
username_password: "username_password";
|
|
7116
|
+
account_token: "account_token";
|
|
7117
|
+
sub_account_token: "sub_account_token";
|
|
7118
|
+
username_token: "username_token";
|
|
7119
|
+
ovh: "ovh";
|
|
7120
|
+
private_key: "private_key";
|
|
7121
|
+
aws_session: "aws_session";
|
|
7122
|
+
cpanel: "cpanel";
|
|
7123
|
+
client_credentials: "client_credentials";
|
|
7124
|
+
}>>;
|
|
7125
|
+
}, z.core.$strict>;
|
|
5780
7126
|
capabilities: z.ZodObject<{
|
|
5781
7127
|
rootNSModification: z.ZodEnum<{
|
|
5782
7128
|
supported: "supported";
|
|
@@ -6014,15 +7360,46 @@ declare const Domain0ConnectEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6014
7360
|
manual: "manual";
|
|
6015
7361
|
}>;
|
|
6016
7362
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
7363
|
+
api_token: "api_token";
|
|
6017
7364
|
domain_connect: "domain_connect";
|
|
6018
7365
|
manual: "manual";
|
|
6019
7366
|
oauth2_pkce: "oauth2_pkce";
|
|
6020
7367
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
6021
|
-
|
|
7368
|
+
provider_session: "provider_session";
|
|
6022
7369
|
api_key: "api_key";
|
|
6023
7370
|
basic: "basic";
|
|
6024
7371
|
session: "session";
|
|
6025
7372
|
}>>;
|
|
7373
|
+
authorizationInputs: z.ZodObject<{
|
|
7374
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
7375
|
+
api_token: "api_token";
|
|
7376
|
+
api_endpoint_token: "api_endpoint_token";
|
|
7377
|
+
access_key: "access_key";
|
|
7378
|
+
username_password: "username_password";
|
|
7379
|
+
account_token: "account_token";
|
|
7380
|
+
sub_account_token: "sub_account_token";
|
|
7381
|
+
username_token: "username_token";
|
|
7382
|
+
ovh: "ovh";
|
|
7383
|
+
private_key: "private_key";
|
|
7384
|
+
aws_session: "aws_session";
|
|
7385
|
+
cpanel: "cpanel";
|
|
7386
|
+
client_credentials: "client_credentials";
|
|
7387
|
+
}>>;
|
|
7388
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
7389
|
+
api_token: "api_token";
|
|
7390
|
+
api_endpoint_token: "api_endpoint_token";
|
|
7391
|
+
access_key: "access_key";
|
|
7392
|
+
username_password: "username_password";
|
|
7393
|
+
account_token: "account_token";
|
|
7394
|
+
sub_account_token: "sub_account_token";
|
|
7395
|
+
username_token: "username_token";
|
|
7396
|
+
ovh: "ovh";
|
|
7397
|
+
private_key: "private_key";
|
|
7398
|
+
aws_session: "aws_session";
|
|
7399
|
+
cpanel: "cpanel";
|
|
7400
|
+
client_credentials: "client_credentials";
|
|
7401
|
+
}>>;
|
|
7402
|
+
}, z.core.$strict>;
|
|
6026
7403
|
capabilities: z.ZodObject<{
|
|
6027
7404
|
rootNSModification: z.ZodEnum<{
|
|
6028
7405
|
supported: "supported";
|
|
@@ -6327,15 +7704,46 @@ declare const Domain0ConnectEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6327
7704
|
manual: "manual";
|
|
6328
7705
|
}>;
|
|
6329
7706
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
7707
|
+
api_token: "api_token";
|
|
6330
7708
|
domain_connect: "domain_connect";
|
|
6331
7709
|
manual: "manual";
|
|
6332
7710
|
oauth2_pkce: "oauth2_pkce";
|
|
6333
7711
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
6334
|
-
|
|
7712
|
+
provider_session: "provider_session";
|
|
6335
7713
|
api_key: "api_key";
|
|
6336
7714
|
basic: "basic";
|
|
6337
7715
|
session: "session";
|
|
6338
7716
|
}>>;
|
|
7717
|
+
authorizationInputs: z.ZodObject<{
|
|
7718
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
7719
|
+
api_token: "api_token";
|
|
7720
|
+
api_endpoint_token: "api_endpoint_token";
|
|
7721
|
+
access_key: "access_key";
|
|
7722
|
+
username_password: "username_password";
|
|
7723
|
+
account_token: "account_token";
|
|
7724
|
+
sub_account_token: "sub_account_token";
|
|
7725
|
+
username_token: "username_token";
|
|
7726
|
+
ovh: "ovh";
|
|
7727
|
+
private_key: "private_key";
|
|
7728
|
+
aws_session: "aws_session";
|
|
7729
|
+
cpanel: "cpanel";
|
|
7730
|
+
client_credentials: "client_credentials";
|
|
7731
|
+
}>>;
|
|
7732
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
7733
|
+
api_token: "api_token";
|
|
7734
|
+
api_endpoint_token: "api_endpoint_token";
|
|
7735
|
+
access_key: "access_key";
|
|
7736
|
+
username_password: "username_password";
|
|
7737
|
+
account_token: "account_token";
|
|
7738
|
+
sub_account_token: "sub_account_token";
|
|
7739
|
+
username_token: "username_token";
|
|
7740
|
+
ovh: "ovh";
|
|
7741
|
+
private_key: "private_key";
|
|
7742
|
+
aws_session: "aws_session";
|
|
7743
|
+
cpanel: "cpanel";
|
|
7744
|
+
client_credentials: "client_credentials";
|
|
7745
|
+
}>>;
|
|
7746
|
+
}, z.core.$strict>;
|
|
6339
7747
|
capabilities: z.ZodObject<{
|
|
6340
7748
|
rootNSModification: z.ZodEnum<{
|
|
6341
7749
|
supported: "supported";
|
|
@@ -6538,15 +7946,46 @@ declare const Domain0ConnectEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6538
7946
|
manual: "manual";
|
|
6539
7947
|
}>;
|
|
6540
7948
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
7949
|
+
api_token: "api_token";
|
|
6541
7950
|
domain_connect: "domain_connect";
|
|
6542
7951
|
manual: "manual";
|
|
6543
7952
|
oauth2_pkce: "oauth2_pkce";
|
|
6544
7953
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
6545
|
-
|
|
7954
|
+
provider_session: "provider_session";
|
|
6546
7955
|
api_key: "api_key";
|
|
6547
7956
|
basic: "basic";
|
|
6548
7957
|
session: "session";
|
|
6549
7958
|
}>>;
|
|
7959
|
+
authorizationInputs: z.ZodObject<{
|
|
7960
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
7961
|
+
api_token: "api_token";
|
|
7962
|
+
api_endpoint_token: "api_endpoint_token";
|
|
7963
|
+
access_key: "access_key";
|
|
7964
|
+
username_password: "username_password";
|
|
7965
|
+
account_token: "account_token";
|
|
7966
|
+
sub_account_token: "sub_account_token";
|
|
7967
|
+
username_token: "username_token";
|
|
7968
|
+
ovh: "ovh";
|
|
7969
|
+
private_key: "private_key";
|
|
7970
|
+
aws_session: "aws_session";
|
|
7971
|
+
cpanel: "cpanel";
|
|
7972
|
+
client_credentials: "client_credentials";
|
|
7973
|
+
}>>;
|
|
7974
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
7975
|
+
api_token: "api_token";
|
|
7976
|
+
api_endpoint_token: "api_endpoint_token";
|
|
7977
|
+
access_key: "access_key";
|
|
7978
|
+
username_password: "username_password";
|
|
7979
|
+
account_token: "account_token";
|
|
7980
|
+
sub_account_token: "sub_account_token";
|
|
7981
|
+
username_token: "username_token";
|
|
7982
|
+
ovh: "ovh";
|
|
7983
|
+
private_key: "private_key";
|
|
7984
|
+
aws_session: "aws_session";
|
|
7985
|
+
cpanel: "cpanel";
|
|
7986
|
+
client_credentials: "client_credentials";
|
|
7987
|
+
}>>;
|
|
7988
|
+
}, z.core.$strict>;
|
|
6550
7989
|
capabilities: z.ZodObject<{
|
|
6551
7990
|
rootNSModification: z.ZodEnum<{
|
|
6552
7991
|
supported: "supported";
|
|
@@ -6751,15 +8190,46 @@ declare const Domain0ConnectEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6751
8190
|
manual: "manual";
|
|
6752
8191
|
}>;
|
|
6753
8192
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
8193
|
+
api_token: "api_token";
|
|
6754
8194
|
domain_connect: "domain_connect";
|
|
6755
8195
|
manual: "manual";
|
|
6756
8196
|
oauth2_pkce: "oauth2_pkce";
|
|
6757
8197
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
6758
|
-
|
|
8198
|
+
provider_session: "provider_session";
|
|
6759
8199
|
api_key: "api_key";
|
|
6760
8200
|
basic: "basic";
|
|
6761
8201
|
session: "session";
|
|
6762
8202
|
}>>;
|
|
8203
|
+
authorizationInputs: z.ZodObject<{
|
|
8204
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
8205
|
+
api_token: "api_token";
|
|
8206
|
+
api_endpoint_token: "api_endpoint_token";
|
|
8207
|
+
access_key: "access_key";
|
|
8208
|
+
username_password: "username_password";
|
|
8209
|
+
account_token: "account_token";
|
|
8210
|
+
sub_account_token: "sub_account_token";
|
|
8211
|
+
username_token: "username_token";
|
|
8212
|
+
ovh: "ovh";
|
|
8213
|
+
private_key: "private_key";
|
|
8214
|
+
aws_session: "aws_session";
|
|
8215
|
+
cpanel: "cpanel";
|
|
8216
|
+
client_credentials: "client_credentials";
|
|
8217
|
+
}>>;
|
|
8218
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
8219
|
+
api_token: "api_token";
|
|
8220
|
+
api_endpoint_token: "api_endpoint_token";
|
|
8221
|
+
access_key: "access_key";
|
|
8222
|
+
username_password: "username_password";
|
|
8223
|
+
account_token: "account_token";
|
|
8224
|
+
sub_account_token: "sub_account_token";
|
|
8225
|
+
username_token: "username_token";
|
|
8226
|
+
ovh: "ovh";
|
|
8227
|
+
private_key: "private_key";
|
|
8228
|
+
aws_session: "aws_session";
|
|
8229
|
+
cpanel: "cpanel";
|
|
8230
|
+
client_credentials: "client_credentials";
|
|
8231
|
+
}>>;
|
|
8232
|
+
}, z.core.$strict>;
|
|
6763
8233
|
capabilities: z.ZodObject<{
|
|
6764
8234
|
rootNSModification: z.ZodEnum<{
|
|
6765
8235
|
supported: "supported";
|
|
@@ -6984,15 +8454,46 @@ declare const Domain0ConnectEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6984
8454
|
manual: "manual";
|
|
6985
8455
|
}>;
|
|
6986
8456
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
8457
|
+
api_token: "api_token";
|
|
6987
8458
|
domain_connect: "domain_connect";
|
|
6988
8459
|
manual: "manual";
|
|
6989
8460
|
oauth2_pkce: "oauth2_pkce";
|
|
6990
8461
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
6991
|
-
|
|
8462
|
+
provider_session: "provider_session";
|
|
6992
8463
|
api_key: "api_key";
|
|
6993
8464
|
basic: "basic";
|
|
6994
8465
|
session: "session";
|
|
6995
8466
|
}>>;
|
|
8467
|
+
authorizationInputs: z.ZodObject<{
|
|
8468
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
8469
|
+
api_token: "api_token";
|
|
8470
|
+
api_endpoint_token: "api_endpoint_token";
|
|
8471
|
+
access_key: "access_key";
|
|
8472
|
+
username_password: "username_password";
|
|
8473
|
+
account_token: "account_token";
|
|
8474
|
+
sub_account_token: "sub_account_token";
|
|
8475
|
+
username_token: "username_token";
|
|
8476
|
+
ovh: "ovh";
|
|
8477
|
+
private_key: "private_key";
|
|
8478
|
+
aws_session: "aws_session";
|
|
8479
|
+
cpanel: "cpanel";
|
|
8480
|
+
client_credentials: "client_credentials";
|
|
8481
|
+
}>>;
|
|
8482
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
8483
|
+
api_token: "api_token";
|
|
8484
|
+
api_endpoint_token: "api_endpoint_token";
|
|
8485
|
+
access_key: "access_key";
|
|
8486
|
+
username_password: "username_password";
|
|
8487
|
+
account_token: "account_token";
|
|
8488
|
+
sub_account_token: "sub_account_token";
|
|
8489
|
+
username_token: "username_token";
|
|
8490
|
+
ovh: "ovh";
|
|
8491
|
+
private_key: "private_key";
|
|
8492
|
+
aws_session: "aws_session";
|
|
8493
|
+
cpanel: "cpanel";
|
|
8494
|
+
client_credentials: "client_credentials";
|
|
8495
|
+
}>>;
|
|
8496
|
+
}, z.core.$strict>;
|
|
6996
8497
|
capabilities: z.ZodObject<{
|
|
6997
8498
|
rootNSModification: z.ZodEnum<{
|
|
6998
8499
|
supported: "supported";
|
|
@@ -7200,15 +8701,46 @@ declare const Domain0ConnectEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7200
8701
|
manual: "manual";
|
|
7201
8702
|
}>;
|
|
7202
8703
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
8704
|
+
api_token: "api_token";
|
|
7203
8705
|
domain_connect: "domain_connect";
|
|
7204
8706
|
manual: "manual";
|
|
7205
8707
|
oauth2_pkce: "oauth2_pkce";
|
|
7206
8708
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
7207
|
-
|
|
8709
|
+
provider_session: "provider_session";
|
|
7208
8710
|
api_key: "api_key";
|
|
7209
8711
|
basic: "basic";
|
|
7210
8712
|
session: "session";
|
|
7211
8713
|
}>>;
|
|
8714
|
+
authorizationInputs: z.ZodObject<{
|
|
8715
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
8716
|
+
api_token: "api_token";
|
|
8717
|
+
api_endpoint_token: "api_endpoint_token";
|
|
8718
|
+
access_key: "access_key";
|
|
8719
|
+
username_password: "username_password";
|
|
8720
|
+
account_token: "account_token";
|
|
8721
|
+
sub_account_token: "sub_account_token";
|
|
8722
|
+
username_token: "username_token";
|
|
8723
|
+
ovh: "ovh";
|
|
8724
|
+
private_key: "private_key";
|
|
8725
|
+
aws_session: "aws_session";
|
|
8726
|
+
cpanel: "cpanel";
|
|
8727
|
+
client_credentials: "client_credentials";
|
|
8728
|
+
}>>;
|
|
8729
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
8730
|
+
api_token: "api_token";
|
|
8731
|
+
api_endpoint_token: "api_endpoint_token";
|
|
8732
|
+
access_key: "access_key";
|
|
8733
|
+
username_password: "username_password";
|
|
8734
|
+
account_token: "account_token";
|
|
8735
|
+
sub_account_token: "sub_account_token";
|
|
8736
|
+
username_token: "username_token";
|
|
8737
|
+
ovh: "ovh";
|
|
8738
|
+
private_key: "private_key";
|
|
8739
|
+
aws_session: "aws_session";
|
|
8740
|
+
cpanel: "cpanel";
|
|
8741
|
+
client_credentials: "client_credentials";
|
|
8742
|
+
}>>;
|
|
8743
|
+
}, z.core.$strict>;
|
|
7212
8744
|
capabilities: z.ZodObject<{
|
|
7213
8745
|
rootNSModification: z.ZodEnum<{
|
|
7214
8746
|
supported: "supported";
|
|
@@ -7539,6 +9071,15 @@ declare const Domain0ConnectConfigurationSchema: z.ZodObject<{
|
|
|
7539
9071
|
automatic: "automatic";
|
|
7540
9072
|
manual: "manual";
|
|
7541
9073
|
}>>;
|
|
9074
|
+
conflictPolicy: z.ZodDefault<z.ZodEnum<{
|
|
9075
|
+
preserve: "preserve";
|
|
9076
|
+
replace_same_name_and_type: "replace_same_name_and_type";
|
|
9077
|
+
replace_all_at_name: "replace_all_at_name";
|
|
9078
|
+
}>>;
|
|
9079
|
+
spfPolicy: z.ZodDefault<z.ZodEnum<{
|
|
9080
|
+
replace: "replace";
|
|
9081
|
+
merge: "merge";
|
|
9082
|
+
}>>;
|
|
7542
9083
|
}, z.core.$strict>>;
|
|
7543
9084
|
dkim: z.ZodPrefault<z.ZodObject<{
|
|
7544
9085
|
enableDkim: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -7555,7 +9096,6 @@ declare const CompiledProviderIdSchema: z.ZodEnum<{
|
|
|
7555
9096
|
"alibaba-cloud": "alibaba-cloud";
|
|
7556
9097
|
"all-inkl": "all-inkl";
|
|
7557
9098
|
"amazon-route-53": "amazon-route-53";
|
|
7558
|
-
cloudflare: "cloudflare";
|
|
7559
9099
|
cloudns: "cloudns";
|
|
7560
9100
|
digitalocean: "digitalocean";
|
|
7561
9101
|
dnsimple: "dnsimple";
|
|
@@ -7563,15 +9103,12 @@ declare const CompiledProviderIdSchema: z.ZodEnum<{
|
|
|
7563
9103
|
dynadot: "dynadot";
|
|
7564
9104
|
easydns: "easydns";
|
|
7565
9105
|
gandi: "gandi";
|
|
7566
|
-
godaddy: "godaddy";
|
|
7567
9106
|
hetzner: "hetzner";
|
|
7568
9107
|
hostgator: "hostgator";
|
|
7569
9108
|
hostinger: "hostinger";
|
|
7570
9109
|
"hosting-com": "hosting-com";
|
|
7571
9110
|
"inmotion-hosting": "inmotion-hosting";
|
|
7572
|
-
ionos: "ionos";
|
|
7573
9111
|
"name-com": "name-com";
|
|
7574
|
-
namesilo: "namesilo";
|
|
7575
9112
|
netlify: "netlify";
|
|
7576
9113
|
o2switch: "o2switch";
|
|
7577
9114
|
openprovider: "openprovider";
|
|
@@ -7581,7 +9118,6 @@ declare const CompiledProviderIdSchema: z.ZodEnum<{
|
|
|
7581
9118
|
spaceship: "spaceship";
|
|
7582
9119
|
transip: "transip";
|
|
7583
9120
|
"united-domains": "united-domains";
|
|
7584
|
-
vercel: "vercel";
|
|
7585
9121
|
wix: "wix";
|
|
7586
9122
|
namecheap: "namecheap";
|
|
7587
9123
|
}>;
|
|
@@ -7607,7 +9143,6 @@ declare const ProviderConformanceEvidenceSchema: z.ZodObject<{
|
|
|
7607
9143
|
"alibaba-cloud": "alibaba-cloud";
|
|
7608
9144
|
"all-inkl": "all-inkl";
|
|
7609
9145
|
"amazon-route-53": "amazon-route-53";
|
|
7610
|
-
cloudflare: "cloudflare";
|
|
7611
9146
|
cloudns: "cloudns";
|
|
7612
9147
|
digitalocean: "digitalocean";
|
|
7613
9148
|
dnsimple: "dnsimple";
|
|
@@ -7615,15 +9150,12 @@ declare const ProviderConformanceEvidenceSchema: z.ZodObject<{
|
|
|
7615
9150
|
dynadot: "dynadot";
|
|
7616
9151
|
easydns: "easydns";
|
|
7617
9152
|
gandi: "gandi";
|
|
7618
|
-
godaddy: "godaddy";
|
|
7619
9153
|
hetzner: "hetzner";
|
|
7620
9154
|
hostgator: "hostgator";
|
|
7621
9155
|
hostinger: "hostinger";
|
|
7622
9156
|
"hosting-com": "hosting-com";
|
|
7623
9157
|
"inmotion-hosting": "inmotion-hosting";
|
|
7624
|
-
ionos: "ionos";
|
|
7625
9158
|
"name-com": "name-com";
|
|
7626
|
-
namesilo: "namesilo";
|
|
7627
9159
|
netlify: "netlify";
|
|
7628
9160
|
o2switch: "o2switch";
|
|
7629
9161
|
openprovider: "openprovider";
|
|
@@ -7633,7 +9165,6 @@ declare const ProviderConformanceEvidenceSchema: z.ZodObject<{
|
|
|
7633
9165
|
spaceship: "spaceship";
|
|
7634
9166
|
transip: "transip";
|
|
7635
9167
|
"united-domains": "united-domains";
|
|
7636
|
-
vercel: "vercel";
|
|
7637
9168
|
wix: "wix";
|
|
7638
9169
|
namecheap: "namecheap";
|
|
7639
9170
|
}>;
|
|
@@ -7672,7 +9203,6 @@ declare const VerifiedProviderConformanceEvidenceSchema: z.ZodObject<{
|
|
|
7672
9203
|
"alibaba-cloud": "alibaba-cloud";
|
|
7673
9204
|
"all-inkl": "all-inkl";
|
|
7674
9205
|
"amazon-route-53": "amazon-route-53";
|
|
7675
|
-
cloudflare: "cloudflare";
|
|
7676
9206
|
cloudns: "cloudns";
|
|
7677
9207
|
digitalocean: "digitalocean";
|
|
7678
9208
|
dnsimple: "dnsimple";
|
|
@@ -7680,15 +9210,12 @@ declare const VerifiedProviderConformanceEvidenceSchema: z.ZodObject<{
|
|
|
7680
9210
|
dynadot: "dynadot";
|
|
7681
9211
|
easydns: "easydns";
|
|
7682
9212
|
gandi: "gandi";
|
|
7683
|
-
godaddy: "godaddy";
|
|
7684
9213
|
hetzner: "hetzner";
|
|
7685
9214
|
hostgator: "hostgator";
|
|
7686
9215
|
hostinger: "hostinger";
|
|
7687
9216
|
"hosting-com": "hosting-com";
|
|
7688
9217
|
"inmotion-hosting": "inmotion-hosting";
|
|
7689
|
-
ionos: "ionos";
|
|
7690
9218
|
"name-com": "name-com";
|
|
7691
|
-
namesilo: "namesilo";
|
|
7692
9219
|
netlify: "netlify";
|
|
7693
9220
|
o2switch: "o2switch";
|
|
7694
9221
|
openprovider: "openprovider";
|
|
@@ -7698,7 +9225,6 @@ declare const VerifiedProviderConformanceEvidenceSchema: z.ZodObject<{
|
|
|
7698
9225
|
spaceship: "spaceship";
|
|
7699
9226
|
transip: "transip";
|
|
7700
9227
|
"united-domains": "united-domains";
|
|
7701
|
-
vercel: "vercel";
|
|
7702
9228
|
wix: "wix";
|
|
7703
9229
|
namecheap: "namecheap";
|
|
7704
9230
|
}>;
|
|
@@ -8150,15 +9676,46 @@ declare const DomainProviderCandidateSchema: z.ZodObject<{
|
|
|
8150
9676
|
manual: "manual";
|
|
8151
9677
|
}>;
|
|
8152
9678
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
9679
|
+
api_token: "api_token";
|
|
8153
9680
|
domain_connect: "domain_connect";
|
|
8154
9681
|
manual: "manual";
|
|
8155
9682
|
oauth2_pkce: "oauth2_pkce";
|
|
8156
9683
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
8157
|
-
|
|
9684
|
+
provider_session: "provider_session";
|
|
8158
9685
|
api_key: "api_key";
|
|
8159
9686
|
basic: "basic";
|
|
8160
9687
|
session: "session";
|
|
8161
9688
|
}>>;
|
|
9689
|
+
authorizationInputs: z.ZodObject<{
|
|
9690
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
9691
|
+
api_token: "api_token";
|
|
9692
|
+
api_endpoint_token: "api_endpoint_token";
|
|
9693
|
+
access_key: "access_key";
|
|
9694
|
+
username_password: "username_password";
|
|
9695
|
+
account_token: "account_token";
|
|
9696
|
+
sub_account_token: "sub_account_token";
|
|
9697
|
+
username_token: "username_token";
|
|
9698
|
+
ovh: "ovh";
|
|
9699
|
+
private_key: "private_key";
|
|
9700
|
+
aws_session: "aws_session";
|
|
9701
|
+
cpanel: "cpanel";
|
|
9702
|
+
client_credentials: "client_credentials";
|
|
9703
|
+
}>>;
|
|
9704
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
9705
|
+
api_token: "api_token";
|
|
9706
|
+
api_endpoint_token: "api_endpoint_token";
|
|
9707
|
+
access_key: "access_key";
|
|
9708
|
+
username_password: "username_password";
|
|
9709
|
+
account_token: "account_token";
|
|
9710
|
+
sub_account_token: "sub_account_token";
|
|
9711
|
+
username_token: "username_token";
|
|
9712
|
+
ovh: "ovh";
|
|
9713
|
+
private_key: "private_key";
|
|
9714
|
+
aws_session: "aws_session";
|
|
9715
|
+
cpanel: "cpanel";
|
|
9716
|
+
client_credentials: "client_credentials";
|
|
9717
|
+
}>>;
|
|
9718
|
+
}, z.core.$strict>;
|
|
8162
9719
|
capabilities: z.ZodObject<{
|
|
8163
9720
|
rootNSModification: z.ZodEnum<{
|
|
8164
9721
|
supported: "supported";
|
|
@@ -8330,15 +9887,46 @@ declare const CheckDomainResponseSchema: z.ZodObject<{
|
|
|
8330
9887
|
manual: "manual";
|
|
8331
9888
|
}>;
|
|
8332
9889
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
9890
|
+
api_token: "api_token";
|
|
8333
9891
|
domain_connect: "domain_connect";
|
|
8334
9892
|
manual: "manual";
|
|
8335
9893
|
oauth2_pkce: "oauth2_pkce";
|
|
8336
9894
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
8337
|
-
|
|
9895
|
+
provider_session: "provider_session";
|
|
8338
9896
|
api_key: "api_key";
|
|
8339
9897
|
basic: "basic";
|
|
8340
9898
|
session: "session";
|
|
8341
9899
|
}>>;
|
|
9900
|
+
authorizationInputs: z.ZodObject<{
|
|
9901
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
9902
|
+
api_token: "api_token";
|
|
9903
|
+
api_endpoint_token: "api_endpoint_token";
|
|
9904
|
+
access_key: "access_key";
|
|
9905
|
+
username_password: "username_password";
|
|
9906
|
+
account_token: "account_token";
|
|
9907
|
+
sub_account_token: "sub_account_token";
|
|
9908
|
+
username_token: "username_token";
|
|
9909
|
+
ovh: "ovh";
|
|
9910
|
+
private_key: "private_key";
|
|
9911
|
+
aws_session: "aws_session";
|
|
9912
|
+
cpanel: "cpanel";
|
|
9913
|
+
client_credentials: "client_credentials";
|
|
9914
|
+
}>>;
|
|
9915
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
9916
|
+
api_token: "api_token";
|
|
9917
|
+
api_endpoint_token: "api_endpoint_token";
|
|
9918
|
+
access_key: "access_key";
|
|
9919
|
+
username_password: "username_password";
|
|
9920
|
+
account_token: "account_token";
|
|
9921
|
+
sub_account_token: "sub_account_token";
|
|
9922
|
+
username_token: "username_token";
|
|
9923
|
+
ovh: "ovh";
|
|
9924
|
+
private_key: "private_key";
|
|
9925
|
+
aws_session: "aws_session";
|
|
9926
|
+
cpanel: "cpanel";
|
|
9927
|
+
client_credentials: "client_credentials";
|
|
9928
|
+
}>>;
|
|
9929
|
+
}, z.core.$strict>;
|
|
8342
9930
|
capabilities: z.ZodObject<{
|
|
8343
9931
|
rootNSModification: z.ZodEnum<{
|
|
8344
9932
|
supported: "supported";
|
|
@@ -8408,15 +9996,46 @@ declare const CheckDomainResponseSchema: z.ZodObject<{
|
|
|
8408
9996
|
manual: "manual";
|
|
8409
9997
|
}>;
|
|
8410
9998
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
9999
|
+
api_token: "api_token";
|
|
8411
10000
|
domain_connect: "domain_connect";
|
|
8412
10001
|
manual: "manual";
|
|
8413
10002
|
oauth2_pkce: "oauth2_pkce";
|
|
8414
10003
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
8415
|
-
|
|
10004
|
+
provider_session: "provider_session";
|
|
8416
10005
|
api_key: "api_key";
|
|
8417
10006
|
basic: "basic";
|
|
8418
10007
|
session: "session";
|
|
8419
10008
|
}>>;
|
|
10009
|
+
authorizationInputs: z.ZodObject<{
|
|
10010
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
10011
|
+
api_token: "api_token";
|
|
10012
|
+
api_endpoint_token: "api_endpoint_token";
|
|
10013
|
+
access_key: "access_key";
|
|
10014
|
+
username_password: "username_password";
|
|
10015
|
+
account_token: "account_token";
|
|
10016
|
+
sub_account_token: "sub_account_token";
|
|
10017
|
+
username_token: "username_token";
|
|
10018
|
+
ovh: "ovh";
|
|
10019
|
+
private_key: "private_key";
|
|
10020
|
+
aws_session: "aws_session";
|
|
10021
|
+
cpanel: "cpanel";
|
|
10022
|
+
client_credentials: "client_credentials";
|
|
10023
|
+
}>>;
|
|
10024
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
10025
|
+
api_token: "api_token";
|
|
10026
|
+
api_endpoint_token: "api_endpoint_token";
|
|
10027
|
+
access_key: "access_key";
|
|
10028
|
+
username_password: "username_password";
|
|
10029
|
+
account_token: "account_token";
|
|
10030
|
+
sub_account_token: "sub_account_token";
|
|
10031
|
+
username_token: "username_token";
|
|
10032
|
+
ovh: "ovh";
|
|
10033
|
+
private_key: "private_key";
|
|
10034
|
+
aws_session: "aws_session";
|
|
10035
|
+
cpanel: "cpanel";
|
|
10036
|
+
client_credentials: "client_credentials";
|
|
10037
|
+
}>>;
|
|
10038
|
+
}, z.core.$strict>;
|
|
8420
10039
|
capabilities: z.ZodObject<{
|
|
8421
10040
|
rootNSModification: z.ZodEnum<{
|
|
8422
10041
|
supported: "supported";
|
|
@@ -8625,11 +10244,12 @@ declare const ProviderImplementationSchema: z.ZodEnum<{
|
|
|
8625
10244
|
}>;
|
|
8626
10245
|
type ProviderImplementation = z.infer<typeof ProviderImplementationSchema>;
|
|
8627
10246
|
declare const AuthorizationMethodSchema: z.ZodEnum<{
|
|
10247
|
+
api_token: "api_token";
|
|
8628
10248
|
domain_connect: "domain_connect";
|
|
8629
10249
|
manual: "manual";
|
|
8630
10250
|
oauth2_pkce: "oauth2_pkce";
|
|
8631
10251
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
8632
|
-
|
|
10252
|
+
provider_session: "provider_session";
|
|
8633
10253
|
api_key: "api_key";
|
|
8634
10254
|
basic: "basic";
|
|
8635
10255
|
session: "session";
|
|
@@ -8705,15 +10325,46 @@ declare const ProviderSchema: z.ZodObject<{
|
|
|
8705
10325
|
manual: "manual";
|
|
8706
10326
|
}>;
|
|
8707
10327
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
10328
|
+
api_token: "api_token";
|
|
8708
10329
|
domain_connect: "domain_connect";
|
|
8709
10330
|
manual: "manual";
|
|
8710
10331
|
oauth2_pkce: "oauth2_pkce";
|
|
8711
10332
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
8712
|
-
|
|
10333
|
+
provider_session: "provider_session";
|
|
8713
10334
|
api_key: "api_key";
|
|
8714
10335
|
basic: "basic";
|
|
8715
10336
|
session: "session";
|
|
8716
10337
|
}>>;
|
|
10338
|
+
authorizationInputs: z.ZodObject<{
|
|
10339
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
10340
|
+
api_token: "api_token";
|
|
10341
|
+
api_endpoint_token: "api_endpoint_token";
|
|
10342
|
+
access_key: "access_key";
|
|
10343
|
+
username_password: "username_password";
|
|
10344
|
+
account_token: "account_token";
|
|
10345
|
+
sub_account_token: "sub_account_token";
|
|
10346
|
+
username_token: "username_token";
|
|
10347
|
+
ovh: "ovh";
|
|
10348
|
+
private_key: "private_key";
|
|
10349
|
+
aws_session: "aws_session";
|
|
10350
|
+
cpanel: "cpanel";
|
|
10351
|
+
client_credentials: "client_credentials";
|
|
10352
|
+
}>>;
|
|
10353
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
10354
|
+
api_token: "api_token";
|
|
10355
|
+
api_endpoint_token: "api_endpoint_token";
|
|
10356
|
+
access_key: "access_key";
|
|
10357
|
+
username_password: "username_password";
|
|
10358
|
+
account_token: "account_token";
|
|
10359
|
+
sub_account_token: "sub_account_token";
|
|
10360
|
+
username_token: "username_token";
|
|
10361
|
+
ovh: "ovh";
|
|
10362
|
+
private_key: "private_key";
|
|
10363
|
+
aws_session: "aws_session";
|
|
10364
|
+
cpanel: "cpanel";
|
|
10365
|
+
client_credentials: "client_credentials";
|
|
10366
|
+
}>>;
|
|
10367
|
+
}, z.core.$strict>;
|
|
8717
10368
|
capabilities: z.ZodObject<{
|
|
8718
10369
|
rootNSModification: z.ZodEnum<{
|
|
8719
10370
|
supported: "supported";
|
|
@@ -8782,15 +10433,46 @@ declare const ListProvidersResponseSchema: z.ZodObject<{
|
|
|
8782
10433
|
manual: "manual";
|
|
8783
10434
|
}>;
|
|
8784
10435
|
availableAuthorizationMethods: z.ZodArray<z.ZodEnum<{
|
|
10436
|
+
api_token: "api_token";
|
|
8785
10437
|
domain_connect: "domain_connect";
|
|
8786
10438
|
manual: "manual";
|
|
8787
10439
|
oauth2_pkce: "oauth2_pkce";
|
|
8788
10440
|
oauth2_authorization_code: "oauth2_authorization_code";
|
|
8789
|
-
|
|
10441
|
+
provider_session: "provider_session";
|
|
8790
10442
|
api_key: "api_key";
|
|
8791
10443
|
basic: "basic";
|
|
8792
10444
|
session: "session";
|
|
8793
10445
|
}>>;
|
|
10446
|
+
authorizationInputs: z.ZodObject<{
|
|
10447
|
+
directCredential: z.ZodOptional<z.ZodEnum<{
|
|
10448
|
+
api_token: "api_token";
|
|
10449
|
+
api_endpoint_token: "api_endpoint_token";
|
|
10450
|
+
access_key: "access_key";
|
|
10451
|
+
username_password: "username_password";
|
|
10452
|
+
account_token: "account_token";
|
|
10453
|
+
sub_account_token: "sub_account_token";
|
|
10454
|
+
username_token: "username_token";
|
|
10455
|
+
ovh: "ovh";
|
|
10456
|
+
private_key: "private_key";
|
|
10457
|
+
aws_session: "aws_session";
|
|
10458
|
+
cpanel: "cpanel";
|
|
10459
|
+
client_credentials: "client_credentials";
|
|
10460
|
+
}>>;
|
|
10461
|
+
providerSession: z.ZodOptional<z.ZodEnum<{
|
|
10462
|
+
api_token: "api_token";
|
|
10463
|
+
api_endpoint_token: "api_endpoint_token";
|
|
10464
|
+
access_key: "access_key";
|
|
10465
|
+
username_password: "username_password";
|
|
10466
|
+
account_token: "account_token";
|
|
10467
|
+
sub_account_token: "sub_account_token";
|
|
10468
|
+
username_token: "username_token";
|
|
10469
|
+
ovh: "ovh";
|
|
10470
|
+
private_key: "private_key";
|
|
10471
|
+
aws_session: "aws_session";
|
|
10472
|
+
cpanel: "cpanel";
|
|
10473
|
+
client_credentials: "client_credentials";
|
|
10474
|
+
}>>;
|
|
10475
|
+
}, z.core.$strict>;
|
|
8794
10476
|
capabilities: z.ZodObject<{
|
|
8795
10477
|
rootNSModification: z.ZodEnum<{
|
|
8796
10478
|
supported: "supported";
|
|
@@ -8939,6 +10621,15 @@ declare const Domain0SetupPolicySchema: z.ZodObject<{
|
|
|
8939
10621
|
automatic: "automatic";
|
|
8940
10622
|
manual: "manual";
|
|
8941
10623
|
}>>;
|
|
10624
|
+
conflictPolicy: z.ZodDefault<z.ZodEnum<{
|
|
10625
|
+
preserve: "preserve";
|
|
10626
|
+
replace_same_name_and_type: "replace_same_name_and_type";
|
|
10627
|
+
replace_all_at_name: "replace_all_at_name";
|
|
10628
|
+
}>>;
|
|
10629
|
+
spfPolicy: z.ZodDefault<z.ZodEnum<{
|
|
10630
|
+
replace: "replace";
|
|
10631
|
+
merge: "merge";
|
|
10632
|
+
}>>;
|
|
8942
10633
|
}, z.core.$strict>;
|
|
8943
10634
|
type Domain0SetupPolicy = z.output<typeof Domain0SetupPolicySchema>;
|
|
8944
10635
|
type Domain0SetupPolicyInput = z.input<typeof Domain0SetupPolicySchema>;
|
|
@@ -9449,5 +11140,5 @@ interface VerifyDomain0WebhookInput {
|
|
|
9449
11140
|
}
|
|
9450
11141
|
declare function verifyDomain0Webhook(input: VerifyDomain0WebhookInput): Promise<Domain0WebhookEvent>;
|
|
9451
11142
|
//#endregion
|
|
9452
|
-
export { Domain0SetupPolicy as $, PreparePlanInputSchema as $i, PlannedChange as $n, ConnectionFlowResponseSchema as $r, CheckDomainResponseSchema as $t, Domain0WhiteLabelTheme as A, ConnectionStateSchema as Ai, EmailProviderDetectionStatusSchema as An, Domain0ConnectFailureEventSchema as Ar, ConnectionId as At, ResolveSharedFlowResponse as B, DomainConnectTemplateSchema as Bi, CheckRecordsResponseSchema as Bn, Domain0DkimSetupDocumentationClickEventSchema as Br, ManualSetupDocumentationUrl as Bt, Domain0WhiteLabelCustomProperties as C, UsernamePasswordCredentialsSchema as Ca, Connection as Ci, DkimGuidanceResponseSchema as Cn, Domain0ConnectError as Cr, ProviderImplementation as Ct, Domain0WhiteLabelLogoUrl as D, directCredentialKindByProvider as Da, ConnectionFailureSchema as Di, Domain0DkimGuidanceOptionsSchema as Dn, Domain0ConnectEvent as Dr, ApplicationIdSchema as Dt, Domain0WhiteLabelInput as E, VerifyPropagationInputSchema as Ea, ConnectionFailureCodeSchema as Ei, Domain0DkimGuidanceOptions as En, Domain0ConnectErrorSchema as Er, ApplicationId as Et, CreateSharedFlowInputSchema as F, DetectProviderResponse as Fi, ChangeAction as Fn, Domain0ConnectStepChangeEventSchema as Fr, IsoDateTimeSchema as Ft, SharedFlowInvitationInput as G, IssueConnectionTokenResponse as Gi, DnsIntent as Gn, Domain0SharedFlowSentEvent as Gr, domain0Locales as Gt, SharedFlowId as H, GetConnectionResponseSchema as Hi, CheckedRecordSchema as Hn, Domain0ManualSetupDocumentationClickEventSchema as Hr, ManualSetupDocumentationUrlSchema as Ht, CreateSharedFlowResponse as I, DetectProviderResponseSchema as Ii, ChangeActionSchema as In, Domain0ConnectStepSchema as Ir, ProviderId$1 as It, SharedFlowInvitationUrlSchema as J, OAuthCallbackResponseSchema as Ji, DnsRecordSchema as Jn, ConditionalDnsRecordsSchema as Jr, Domain0ErrorResponse as Jt, SharedFlowInvitationSchema as K, IssueConnectionTokenResponseSchema as Ki, DnsIntentSchema as Kn, Domain0SharedFlowSentEventSchema as Kr, Domain0ErrorCode as Kt, CreateSharedFlowResponseSchema as L, DirectCredentialKind as Li, CheckRecordsInput as Ln, Domain0ConnectSuccessEvent as Lr, ProviderIdSchema as Lt, Domain0WhiteLabelThemeSchema as M, CreateConnectionInputSchema as Mi, EmailProviderSchema as Mn, Domain0ConnectOutcomeSchema as Mr, DomainName as Mt, colorContrastRatio as N, CreateConnectionResponse as Ni, AdvancedDmarcOptions as Nn, Domain0ConnectStep as Nr, DomainNameSchema as Nt, Domain0WhiteLabelLogoUrlSchema as O, ConnectionSchema as Oi, EmailProvider as On, Domain0ConnectEventSchema as Or, CommandId as Ot, CreateSharedFlowInput as P, CreateConnectionResponseSchema as Pi, AdvancedDmarcOptionsSchema as Pn, Domain0ConnectStepChangeEvent as Pr, IsoDateTime as Pt, SharedFlowUrlSchema as Q, PreparePlanInput as Qi, ExistingRecordPolicySchema as Qn, ConnectionFlowResponse as Qr, CheckDomainResponse as Qt, ResolveSharedFlowInput as R, DirectCredentialProviderId as Ri, CheckRecordsInputSchema as Rn, Domain0ConnectSuccessEventSchema as Rr, TenantId as Rt, Domain0WhiteLabelCopySchema as S, SubmitManualCompletionInputSchema as Sa, ConfirmPlanInputSchema as Si, DkimGuidanceResponse as Sn, Domain0ConnectCloseTriggerSchema as Sr, ProviderHealthStatusSchema as St, Domain0WhiteLabelCustomPropertiesSchema as T, VerifyPropagationInput as Ta, ConnectionFailureCode as Ti, DkimSelectorSchema as Tn, Domain0ConnectErrorEventSchema as Tr, ProviderSchema as Tt, SharedFlowIdSchema as U, IssueConnectionTokenInput as Ui, ConflictPolicy as Un, Domain0RequestCloseEvent as Ur, Domain0Locale as Ut, ResolveSharedFlowResponseSchema as V, GetConnectionResponse as Vi, CheckedRecord as Vn, Domain0ManualSetupDocumentationClickEvent as Vr, ManualSetupDocumentationUrlInput as Vt, SharedFlowInvitation as W, IssueConnectionTokenInputSchema as Wi, ConflictPolicySchema as Wn, Domain0RequestCloseEventSchema as Wr, Domain0LocaleSchema as Wt, SharedFlowTokenSchema as X, PlanWarningCode as Xi, DnsRecordTypeSchema as Xn, ConnectionFlowId as Xr, CheckDomainInput as Xt, SharedFlowToken as Y, OvhCredentialsSchema as Yi, DnsRecordType as Yn, ConnectionFlow as Yr, Domain0ErrorResponseSchema as Yt, SharedFlowUrl as Z, PlanWarningCodeSchema as Zi, ExistingRecordPolicy as Zn, ConnectionFlowIdSchema as Zr, CheckDomainInputSchema as Zt, Domain0ThemePalette as _, StartOAuthResponse as _a, CancelConnectionInputSchema as _i, DkimDnsRecordEvidenceSchema as _n, Domain0ConnectConfigurationInput as _r, ProviderHealthReasonSchema as _t, Domain0WebhookEventIdSchema as a, RetryResumeState as aa, CreateConnectionFlowInput as ai, DomainProviderCandidateSchema as an, SpfConflictPolicy as ar, AuthorizationMethodSchema as at, Domain0WhiteLabelCopy as b, SubmitDomainConnectCompletionInputSchema as ba, ClientCredentialsSchema as bi, DkimGuidanceInput as bn, Domain0ConnectCloseEventSchema as br, ProviderHealthSchema as bt, Domain0WebhookEventTypeSchema as c, SelectProviderInputSchema as ca, AccountTokenCredentialsSchema as ci, DomainSetupSupport as cn, CompiledProviderIdSchema as cr, Provider as ct, Domain0WebhookVerificationErrorCode as d, StartDomainConnectResponse as da, ApplyPlanInputSchema as di, RecordConflictReasonSchema as dn, ProviderConformanceEvidence as dr, ProviderDetection as dt, PrivateKeyCredentialsSchema as ea, ConnectionFlowSchema as ei, ConflictAnalysis as en, PlannedChangeSchema as er, Domain0SetupPolicyInput as et, Domain0WebhookVerificationErrorCodeSchema as f, StartDomainConnectResponseSchema as fa, AuthorizeWithCredentialInput as fi, DkimDnsEvidence as fn, ProviderConformanceEvidenceSchema as fr, ProviderDetectionSchema as ft, Domain0ApplicationNameSchema as g, StartOAuthInputSchema as ga, CancelConnectionInput as gi, DkimDnsRecordEvidence as gn, Domain0ConnectConfiguration as gr, ProviderHealthReason as gt, Domain0ApplicationName as h, StartOAuthInput as ha, CPanelCredentialsSchema as hi, DkimDnsEvidenceStatusSchema as hn, expectedProviderConformanceChecks as hr, ProviderHealth as ht, Domain0WebhookEventId as i, RetryConnectionInputSchema as ia, ConnectionFlowTargetSchema as ii, DomainProviderCandidate as in, ResolvedDnsRecordSchema as ir, AuthorizationMethod as it, Domain0WhiteLabelThemeInput as j, CreateConnectionInput as ji, EmailProviderId as jn, Domain0ConnectOutcome as jr, ConnectionIdSchema as jt, Domain0WhiteLabelSchema as k, ConnectionState as ki, EmailProviderDetectionStatus as kn, Domain0ConnectFailureEvent as kr, CommandIdSchema as kt, Domain0WebhookHeaderSource as l, StartDomainConnectInput as la, ApiTokenCredentialsSchema as li, DomainSetupSupportSchema as ln, ProviderConformanceCheckName as lr, ProviderCapabilities as lt, verifyDomain0Webhook as m, StartManualConfigurationInputSchema as ma, AwsSessionCredentialsSchema as mi, DkimDnsEvidenceStatus as mn, VerifiedProviderConformanceEvidenceSchema as mr, ProviderDetectionUnavailableReasonCodeSchema as mt, Domain0WebhookAttributesSchema as n, ProviderCandidateSchema as na, ConnectionFlowTargetInput as ni, DomainDelegationStatus as nn, ResolvedDnsIntentSchema as nr, PlatformCreateConnectionInput as nt, Domain0WebhookEventSchema as o, RetryResumeStateSchema as oa, CreateConnectionFlowInputSchema as oi, DomainRecordConflict as on, SpfConflictPolicySchema as or, ListProvidersResponse as ot, VerifyDomain0WebhookInput as p, StartManualConfigurationInput as pa, AuthorizeWithCredentialInputSchema as pi, DkimDnsEvidenceSchema as pn, VerifiedProviderConformanceEvidence as pr, ProviderDetectionUnavailableReasonCode as pt, SharedFlowInvitationUrl as q, OAuthCallbackResponse as qi, DnsRecord as qn, ConditionalDnsRecords as qr, Domain0ErrorCodeSchema as qt, Domain0WebhookEvent as r, RetryConnectionInput as ra, ConnectionFlowTargetInputSchema as ri, DomainDelegationStatusSchema as rn, ResolvedDnsRecord as rr, PlatformCreateConnectionInputSchema as rt, Domain0WebhookEventType as s, SelectProviderInput as sa, AccessKeyCredentialsSchema as si, DomainRecordConflictSchema as sn, CompiledProviderId as sr, ListProvidersResponseSchema as st, DOMAIN0_WEBHOOK_HEADER_NAMES as t, ProviderCandidate as ta, ConnectionFlowTarget as ti, ConflictAnalysisSchema as tn, ResolvedDnsIntent as tr, Domain0SetupPolicySchema as tt, Domain0WebhookVerificationError as u, StartDomainConnectInputSchema as ua, ApplyPlanInput as ui, RecordConflictReason as un, ProviderConformanceCheckNameSchema as ur, ProviderCapabilitiesSchema as ut, Domain0ThemePaletteInput as v, StartOAuthResponseSchema as va, ChangePlan as vi, DkimDnsRecordType as vn, Domain0ConnectConfigurationSchema as vr, ProviderHealthResponse as vt, Domain0WhiteLabelCustomPropertiesInput as w, UsernameTokenCredentialsSchema as wa, ConnectionFailure as wi, DkimSelector as wn, Domain0ConnectErrorEvent as wr, ProviderImplementationSchema as wt, Domain0WhiteLabelCopyInput as x, SubmitManualCompletionInput as xa, ConfirmPlanInput as xi, DkimGuidanceInputSchema as xn, Domain0ConnectCloseTrigger as xr, ProviderHealthStatus as xt, Domain0WhiteLabel as y, SubmitDomainConnectCompletionInput as ya, ChangePlanSchema as yi, DkimDnsRecordTypeSchema as yn, Domain0ConnectCloseEvent as yr, ProviderHealthResponseSchema as yt, ResolveSharedFlowInputSchema as z, DomainConnectTemplate as zi, CheckRecordsResponse as zn, Domain0DkimSetupDocumentationClickEvent as zr, TenantIdSchema as zt };
|
|
9453
|
-
//# sourceMappingURL=index-
|
|
11143
|
+
export { Domain0SetupPolicy as $, IssueConnectionTokenResponseSchema as $i, PlannedChange as $n, ConnectionFlowResponseSchema as $r, CheckDomainResponseSchema as $t, Domain0WhiteLabelTheme as A, StartOAuthResponse as Aa, ConnectionSchema as Ai, EmailProviderDetectionStatusSchema as An, Domain0ConnectFailureEventSchema as Ar, ConnectionId as At, ResolveSharedFlowResponse as B, UsernameTokenCredentialsSchema as Ba, DetectProviderResponseSchema as Bi, CheckRecordsResponseSchema as Bn, Domain0DkimSetupDocumentationClickEventSchema as Br, ManualSetupDocumentationUrl as Bt, Domain0WhiteLabelCustomProperties as C, StartDomainConnectInputSchema as Ca, ConfirmPlanInput as Ci, DkimGuidanceResponseSchema as Cn, Domain0ConnectError as Cr, ProviderImplementation as Ct, Domain0WhiteLabelLogoUrl as D, StartManualConfigurationInputSchema as Da, ConnectionFailureCode as Di, Domain0DkimGuidanceOptionsSchema as Dn, Domain0ConnectEvent as Dr, ApplicationIdSchema as Dt, Domain0WhiteLabelInput as E, StartManualConfigurationInput as Ea, ConnectionFailure as Ei, Domain0DkimGuidanceOptions as En, Domain0ConnectErrorSchema as Er, ApplicationId as Et, CreateSharedFlowInputSchema as F, SubmitDomainConnectCompletionInput as Fa, CreateConnectionInput as Fi, ChangeAction as Fn, Domain0ConnectStepChangeEventSchema as Fr, IsoDateTimeSchema as Ft, SharedFlowInvitationInput as G, ProviderAuthorizationInputsSchema as Ga, DomainConnectTemplate as Gi, DnsIntent as Gn, Domain0SharedFlowSentEvent as Gr, domain0Locales as Gt, SharedFlowId as H, VerifyPropagationInputSchema as Ha, DirectCredentialProviderId as Hi, CheckedRecordSchema as Hn, Domain0ManualSetupDocumentationClickEventSchema as Hr, ManualSetupDocumentationUrlSchema as Ht, CreateSharedFlowResponse as I, SubmitDomainConnectCompletionInputSchema as Ia, CreateConnectionInputSchema as Ii, ChangeActionSchema as In, Domain0ConnectStepSchema as Ir, ProviderId$1 as It, SharedFlowInvitationUrlSchema as J, GetConnectionResponse as Ji, DnsRecordSchema as Jn, ConditionalDnsRecordsSchema as Jr, Domain0ErrorResponse as Jt, SharedFlowInvitationSchema as K, TransientCredentialKind as Ka, DomainConnectTemplateSchema as Ki, DnsIntentSchema as Kn, Domain0SharedFlowSentEventSchema as Kr, Domain0ErrorCode as Kt, CreateSharedFlowResponseSchema as L, SubmitManualCompletionInput as La, CreateConnectionResponse as Li, CheckRecordsInput as Ln, Domain0ConnectSuccessEvent as Lr, ProviderIdSchema as Lt, Domain0WhiteLabelThemeSchema as M, StartProviderSessionInput as Ma, ConnectionStateSchema as Mi, EmailProviderSchema as Mn, Domain0ConnectOutcomeSchema as Mr, DomainName as Mt, colorContrastRatio as N, StartProviderSessionInputSchema as Na, ContinueProviderSessionInput as Ni, AdvancedDmarcOptions as Nn, Domain0ConnectStep as Nr, DomainNameSchema as Nt, Domain0WhiteLabelLogoUrlSchema as O, StartOAuthInput as Oa, ConnectionFailureCodeSchema as Oi, EmailProvider as On, Domain0ConnectEventSchema as Or, CommandId as Ot, CreateSharedFlowInput as P, SubAccountTokenCredentialsSchema as Pa, ContinueProviderSessionInputSchema as Pi, AdvancedDmarcOptionsSchema as Pn, Domain0ConnectStepChangeEvent as Pr, IsoDateTime as Pt, SharedFlowUrlSchema as Q, IssueConnectionTokenResponse as Qi, ExistingRecordPolicySchema as Qn, ConnectionFlowResponse as Qr, CheckDomainResponse as Qt, ResolveSharedFlowInput as R, SubmitManualCompletionInputSchema as Ra, CreateConnectionResponseSchema as Ri, CheckRecordsInputSchema as Rn, Domain0ConnectSuccessEventSchema as Rr, TenantId as Rt, Domain0WhiteLabelCopySchema as S, StartDomainConnectInput as Sa, ClientCredentialsSchema as Si, DkimGuidanceResponse as Sn, Domain0ConnectCloseTriggerSchema as Sr, ProviderHealthStatusSchema as St, Domain0WhiteLabelCustomPropertiesSchema as T, StartDomainConnectResponseSchema as Ta, Connection as Ti, DkimSelectorSchema as Tn, Domain0ConnectErrorEventSchema as Tr, ProviderSchema as Tt, SharedFlowIdSchema as U, directCredentialKindByProvider as Ua, DirectCredentials as Ui, ConflictPolicy as Un, Domain0RequestCloseEvent as Ur, Domain0Locale as Ut, ResolveSharedFlowResponseSchema as V, VerifyPropagationInput as Va, DirectCredentialKind as Vi, CheckedRecord as Vn, Domain0ManualSetupDocumentationClickEvent as Vr, ManualSetupDocumentationUrlInput as Vt, SharedFlowInvitation as W, ProviderAuthorizationInputs as Wa, DirectCredentialsSchema as Wi, ConflictPolicySchema as Wn, Domain0RequestCloseEventSchema as Wr, Domain0LocaleSchema as Wt, SharedFlowTokenSchema as X, IssueConnectionTokenInput as Xi, DnsRecordTypeSchema as Xn, ConnectionFlowId as Xr, CheckDomainInput as Xt, SharedFlowToken as Y, GetConnectionResponseSchema as Yi, DnsRecordType as Yn, ConnectionFlow as Yr, Domain0ErrorResponseSchema as Yt, SharedFlowUrl as Z, IssueConnectionTokenInputSchema as Zi, ExistingRecordPolicy as Zn, ConnectionFlowIdSchema as Zr, CheckDomainInputSchema as Zt, Domain0ThemePalette as _, RetryConnectionInputSchema as _a, CPanelCredentialsSchema as _i, DkimDnsRecordEvidenceSchema as _n, Domain0ConnectConfigurationInput as _r, ProviderHealthReasonSchema as _t, Domain0WebhookEventIdSchema as a, PreparePlanInput as aa, CreateConnectionFlowInput as ai, DomainProviderCandidateSchema as an, SpfConflictPolicy as ar, AuthorizationMethodSchema as at, Domain0WhiteLabelCopy as b, SelectProviderInput as ba, ChangePlan as bi, DkimGuidanceInput as bn, Domain0ConnectCloseEventSchema as br, ProviderHealthSchema as bt, Domain0WebhookEventTypeSchema as c, ProviderCandidate as ca, AccountTokenCredentialsSchema as ci, DomainSetupSupport as cn, CompiledProviderIdSchema as cr, Provider as ct, Domain0WebhookVerificationErrorCode as d, ProviderSessionChallengeKind as da, ApplyPlanInput as di, RecordConflictReasonSchema as dn, ProviderConformanceEvidence as dr, ProviderDetection as dt, OAuthCallbackResponse as ea, ConnectionFlowSchema as ei, ConflictAnalysis as en, PlannedChangeSchema as er, Domain0SetupPolicyInput as et, Domain0WebhookVerificationErrorCodeSchema as f, ProviderSessionChallengeKindSchema as fa, ApplyPlanInputSchema as fi, DkimDnsEvidence as fn, ProviderConformanceEvidenceSchema as fr, ProviderDetectionSchema as ft, Domain0ApplicationNameSchema as g, RetryConnectionInput as ga, AwsSessionCredentialsSchema as gi, DkimDnsRecordEvidence as gn, Domain0ConnectConfiguration as gr, ProviderHealthReason as gt, Domain0ApplicationName as h, ProviderSessionResponseSchema as ha, AutomaticDomainConnectInputSchema as hi, DkimDnsEvidenceStatusSchema as hn, expectedProviderConformanceChecks as hr, ProviderHealth as ht, Domain0WebhookEventId as i, PlanWarningCodeSchema as ia, ConnectionFlowTargetSchema as ii, DomainProviderCandidate as in, ResolvedDnsRecordSchema as ir, AuthorizationMethod as it, Domain0WhiteLabelThemeInput as j, StartOAuthResponseSchema as ja, ConnectionState as ji, EmailProviderId as jn, Domain0ConnectOutcome as jr, ConnectionIdSchema as jt, Domain0WhiteLabelSchema as k, StartOAuthInputSchema as ka, ConnectionFailureSchema as ki, EmailProviderDetectionStatus as kn, Domain0ConnectFailureEvent as kr, CommandIdSchema as kt, Domain0WebhookHeaderSource as l, ProviderCandidateSchema as la, ApiEndpointTokenCredentialsSchema as li, DomainSetupSupportSchema as ln, ProviderConformanceCheckName as lr, ProviderCapabilities as lt, verifyDomain0Webhook as m, ProviderSessionResponse as ma, AuthorizeWithCredentialInputSchema as mi, DkimDnsEvidenceStatus as mn, VerifiedProviderConformanceEvidenceSchema as mr, ProviderDetectionUnavailableReasonCodeSchema as mt, Domain0WebhookAttributesSchema as n, OvhCredentialsSchema as na, ConnectionFlowTargetInput as ni, DomainDelegationStatus as nn, ResolvedDnsIntentSchema as nr, PlatformCreateConnectionInput as nt, Domain0WebhookEventSchema as o, PreparePlanInputSchema as oa, CreateConnectionFlowInputSchema as oi, DomainRecordConflict as on, SpfConflictPolicySchema as or, ListProvidersResponse as ot, VerifyDomain0WebhookInput as p, ProviderSessionChallengeSchema as pa, AuthorizeWithCredentialInput as pi, DkimDnsEvidenceSchema as pn, VerifiedProviderConformanceEvidence as pr, ProviderDetectionUnavailableReasonCode as pt, SharedFlowInvitationUrl as q, TransientCredentialKindSchema as qa, ExplicitDomainConnectInputSchema as qi, DnsRecord as qn, ConditionalDnsRecords as qr, Domain0ErrorCodeSchema as qt, Domain0WebhookEvent as r, PlanWarningCode as ra, ConnectionFlowTargetInputSchema as ri, DomainDelegationStatusSchema as rn, ResolvedDnsRecord as rr, PlatformCreateConnectionInputSchema as rt, Domain0WebhookEventType as s, PrivateKeyCredentialsSchema as sa, AccessKeyCredentialsSchema as si, DomainRecordConflictSchema as sn, CompiledProviderId as sr, ListProvidersResponseSchema as st, DOMAIN0_WEBHOOK_HEADER_NAMES as t, OAuthCallbackResponseSchema as ta, ConnectionFlowTarget as ti, ConflictAnalysisSchema as tn, ResolvedDnsIntent as tr, Domain0SetupPolicySchema as tt, Domain0WebhookVerificationError as u, ProviderSessionChallenge as ua, ApiTokenCredentialsSchema as ui, RecordConflictReason as un, ProviderConformanceCheckNameSchema as ur, ProviderCapabilitiesSchema as ut, Domain0ThemePaletteInput as v, RetryResumeState as va, CancelConnectionInput as vi, DkimDnsRecordType as vn, Domain0ConnectConfigurationSchema as vr, ProviderHealthResponse as vt, Domain0WhiteLabelCustomPropertiesInput as w, StartDomainConnectResponse as wa, ConfirmPlanInputSchema as wi, DkimSelector as wn, Domain0ConnectErrorEvent as wr, ProviderImplementationSchema as wt, Domain0WhiteLabelCopyInput as x, SelectProviderInputSchema as xa, ChangePlanSchema as xi, DkimGuidanceInputSchema as xn, Domain0ConnectCloseTrigger as xr, ProviderHealthStatus as xt, Domain0WhiteLabel as y, RetryResumeStateSchema as ya, CancelConnectionInputSchema as yi, DkimDnsRecordTypeSchema as yn, Domain0ConnectCloseEvent as yr, ProviderHealthResponseSchema as yt, ResolveSharedFlowInputSchema as z, UsernamePasswordCredentialsSchema as za, DetectProviderResponse as zi, CheckRecordsResponse as zn, Domain0DkimSetupDocumentationClickEvent as zr, TenantIdSchema as zt };
|
|
11144
|
+
//# sourceMappingURL=index-PRBloFve.d.cts.map
|