@opusdns/api 1.67.0 → 1.69.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/package.json +1 -1
- package/src/helpers/constants.ts +38 -0
- package/src/helpers/keys.ts +86 -0
- package/src/helpers/requests.d.ts +38 -0
- package/src/helpers/responses.d.ts +45 -0
- package/src/helpers/schemas.d.ts +8 -0
- package/src/openapi.yaml +580 -1
- package/src/schema.d.ts +650 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -65,6 +65,7 @@ import type {
|
|
|
65
65
|
MemoryFactKind,
|
|
66
66
|
MessageRole,
|
|
67
67
|
MetricsGrouping,
|
|
68
|
+
NorIdDeclarationStatus,
|
|
68
69
|
ObjectEventType,
|
|
69
70
|
ObjectLogSortField,
|
|
70
71
|
OrganizationCredentialStatus,
|
|
@@ -110,6 +111,7 @@ import type {
|
|
|
110
111
|
VerificationClaimType,
|
|
111
112
|
VerificationDeadlineType,
|
|
112
113
|
VerificationType,
|
|
114
|
+
WhitelabelOnboardingStatus,
|
|
113
115
|
ZoneIncludeField,
|
|
114
116
|
ZoneSortField,
|
|
115
117
|
} from './schemas';
|
|
@@ -611,6 +613,8 @@ export const DOMAIN_ATTRIBUTE_KEY = {
|
|
|
611
613
|
NOR_ID_APPLICANT_VERSION: "nor_id_applicant_version",
|
|
612
614
|
NOR_ID_APPLICANT_ACCEPT_NAME: "nor_id_applicant_accept_name",
|
|
613
615
|
NOR_ID_APPLICANT_ACCEPT_DATE: "nor_id_applicant_accept_date",
|
|
616
|
+
NOR_ID_DECLARATION: "nor_id_declaration",
|
|
617
|
+
NOR_ID_DECLARATION_TOKEN: "nor_id_declaration_token",
|
|
614
618
|
} as const satisfies Record<string, DomainAttributeKey>;
|
|
615
619
|
|
|
616
620
|
export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
|
|
@@ -624,6 +628,8 @@ export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
|
|
|
624
628
|
'nor_id_applicant_version',
|
|
625
629
|
'nor_id_applicant_accept_name',
|
|
626
630
|
'nor_id_applicant_accept_date',
|
|
631
|
+
'nor_id_declaration',
|
|
632
|
+
'nor_id_declaration_token',
|
|
627
633
|
] as const satisfies ReadonlyArray<DomainAttributeKey>;
|
|
628
634
|
|
|
629
635
|
export const DOMAIN_AVAILABILITY_STATUS = {
|
|
@@ -1190,6 +1196,22 @@ export const METRICS_GROUPING_VALUES = [
|
|
|
1190
1196
|
'rule',
|
|
1191
1197
|
] as const satisfies ReadonlyArray<MetricsGrouping>;
|
|
1192
1198
|
|
|
1199
|
+
export const NOR_ID_DECLARATION_STATUS = {
|
|
1200
|
+
PENDING: "pending",
|
|
1201
|
+
CONFIRMED: "confirmed",
|
|
1202
|
+
COMPLETED: "completed",
|
|
1203
|
+
EXPIRED: "expired",
|
|
1204
|
+
FAILED: "failed",
|
|
1205
|
+
} as const satisfies Record<string, NorIdDeclarationStatus>;
|
|
1206
|
+
|
|
1207
|
+
export const NOR_ID_DECLARATION_STATUS_VALUES = [
|
|
1208
|
+
'pending',
|
|
1209
|
+
'confirmed',
|
|
1210
|
+
'completed',
|
|
1211
|
+
'expired',
|
|
1212
|
+
'failed',
|
|
1213
|
+
] as const satisfies ReadonlyArray<NorIdDeclarationStatus>;
|
|
1214
|
+
|
|
1193
1215
|
export const OBJECT_EVENT_TYPE = {
|
|
1194
1216
|
CREATED: "CREATED",
|
|
1195
1217
|
UPDATED: "UPDATED",
|
|
@@ -1935,6 +1957,22 @@ export const VERIFICATION_TYPE_VALUES = [
|
|
|
1935
1957
|
'email',
|
|
1936
1958
|
] as const satisfies ReadonlyArray<VerificationType>;
|
|
1937
1959
|
|
|
1960
|
+
export const WHITELABEL_ONBOARDING_STATUS = {
|
|
1961
|
+
PENDING_DOMAIN_VERIFICATION: "pending_domain_verification",
|
|
1962
|
+
VERIFYING: "verifying",
|
|
1963
|
+
PROVISIONING: "provisioning",
|
|
1964
|
+
ACTIVE: "active",
|
|
1965
|
+
FAILED: "failed",
|
|
1966
|
+
} as const satisfies Record<string, WhitelabelOnboardingStatus>;
|
|
1967
|
+
|
|
1968
|
+
export const WHITELABEL_ONBOARDING_STATUS_VALUES = [
|
|
1969
|
+
'pending_domain_verification',
|
|
1970
|
+
'verifying',
|
|
1971
|
+
'provisioning',
|
|
1972
|
+
'active',
|
|
1973
|
+
'failed',
|
|
1974
|
+
] as const satisfies ReadonlyArray<WhitelabelOnboardingStatus>;
|
|
1975
|
+
|
|
1938
1976
|
export const ZONE_INCLUDE_FIELD = {
|
|
1939
1977
|
TAGS: "tags",
|
|
1940
1978
|
} as const satisfies Record<string, ZoneIncludeField>;
|
package/src/helpers/keys.ts
CHANGED
|
@@ -274,6 +274,9 @@ import type {
|
|
|
274
274
|
MessageCreateRequest,
|
|
275
275
|
MessageList,
|
|
276
276
|
Nameserver,
|
|
277
|
+
NorIdDeclarationConfirmRequest,
|
|
278
|
+
NorIdDeclaration,
|
|
279
|
+
NorIdResellerDeclarationRequest,
|
|
277
280
|
ObjectLog,
|
|
278
281
|
ObjectTagChanges,
|
|
279
282
|
ObjectTagChanges2,
|
|
@@ -332,6 +335,7 @@ import type {
|
|
|
332
335
|
PriceInfo,
|
|
333
336
|
PricingPeriod,
|
|
334
337
|
Problem,
|
|
338
|
+
ProductCreateRes,
|
|
335
339
|
PublicAuthRequestForm,
|
|
336
340
|
PublicPermissionSet,
|
|
337
341
|
PublicReportListRes,
|
|
@@ -401,6 +405,8 @@ import type {
|
|
|
401
405
|
VerificationRegistrantDetails,
|
|
402
406
|
Verification,
|
|
403
407
|
VisitsByKeyBucket,
|
|
408
|
+
WhitelabelBrandingCreate,
|
|
409
|
+
WhitelabelBranding,
|
|
404
410
|
WhoisBase,
|
|
405
411
|
ZoneVanitySetUpdate,
|
|
406
412
|
ZonesContext,
|
|
@@ -3750,6 +3756,44 @@ export const KEYS_NAMESERVER = [
|
|
|
3750
3756
|
KEY_NAMESERVER_IP_ADDRESSES,
|
|
3751
3757
|
] as const satisfies (keyof Nameserver)[];
|
|
3752
3758
|
|
|
3759
|
+
export const KEY_NOR_ID_DECLARATION_CONFIRM_REQUEST_ACCEPT_NAME = 'accept_name' satisfies keyof NorIdDeclarationConfirmRequest;
|
|
3760
|
+
|
|
3761
|
+
export const KEYS_NOR_ID_DECLARATION_CONFIRM_REQUEST = [
|
|
3762
|
+
KEY_NOR_ID_DECLARATION_CONFIRM_REQUEST_ACCEPT_NAME,
|
|
3763
|
+
] as const satisfies (keyof NorIdDeclarationConfirmRequest)[];
|
|
3764
|
+
|
|
3765
|
+
export const KEY_NOR_ID_DECLARATION_DECLARATION_CONTRACT_TEXT = 'declaration_contract_text' satisfies keyof NorIdDeclaration;
|
|
3766
|
+
export const KEY_NOR_ID_DECLARATION_DECLARATION_HEADER = 'declaration_header' satisfies keyof NorIdDeclaration;
|
|
3767
|
+
export const KEY_NOR_ID_DECLARATION_DECLARATION_INTRODUCTION = 'declaration_introduction' satisfies keyof NorIdDeclaration;
|
|
3768
|
+
export const KEY_NOR_ID_DECLARATION_DECLARATION_VERSION = 'declaration_version' satisfies keyof NorIdDeclaration;
|
|
3769
|
+
export const KEY_NOR_ID_DECLARATION_DOMAIN_NAME = 'domain_name' satisfies keyof NorIdDeclaration;
|
|
3770
|
+
export const KEY_NOR_ID_DECLARATION_EXPIRES_ON = 'expires_on' satisfies keyof NorIdDeclaration;
|
|
3771
|
+
export const KEY_NOR_ID_DECLARATION_IDENTITY_TYPE = 'identity_type' satisfies keyof NorIdDeclaration;
|
|
3772
|
+
export const KEY_NOR_ID_DECLARATION_IDENTITY_VALUE = 'identity_value' satisfies keyof NorIdDeclaration;
|
|
3773
|
+
export const KEY_NOR_ID_DECLARATION_STATUS = 'status' satisfies keyof NorIdDeclaration;
|
|
3774
|
+
export const KEY_NOR_ID_DECLARATION_SUBSCRIBER_NAME = 'subscriber_name' satisfies keyof NorIdDeclaration;
|
|
3775
|
+
|
|
3776
|
+
export const KEYS_NOR_ID_DECLARATION = [
|
|
3777
|
+
KEY_NOR_ID_DECLARATION_DECLARATION_CONTRACT_TEXT,
|
|
3778
|
+
KEY_NOR_ID_DECLARATION_DECLARATION_HEADER,
|
|
3779
|
+
KEY_NOR_ID_DECLARATION_DECLARATION_INTRODUCTION,
|
|
3780
|
+
KEY_NOR_ID_DECLARATION_DECLARATION_VERSION,
|
|
3781
|
+
KEY_NOR_ID_DECLARATION_DOMAIN_NAME,
|
|
3782
|
+
KEY_NOR_ID_DECLARATION_EXPIRES_ON,
|
|
3783
|
+
KEY_NOR_ID_DECLARATION_IDENTITY_TYPE,
|
|
3784
|
+
KEY_NOR_ID_DECLARATION_IDENTITY_VALUE,
|
|
3785
|
+
KEY_NOR_ID_DECLARATION_STATUS,
|
|
3786
|
+
KEY_NOR_ID_DECLARATION_SUBSCRIBER_NAME,
|
|
3787
|
+
] as const satisfies (keyof NorIdDeclaration)[];
|
|
3788
|
+
|
|
3789
|
+
export const KEY_NOR_ID_RESELLER_DECLARATION_REQUEST_ACCEPT_DATE = 'accept_date' satisfies keyof NorIdResellerDeclarationRequest;
|
|
3790
|
+
export const KEY_NOR_ID_RESELLER_DECLARATION_REQUEST_ACCEPT_NAME = 'accept_name' satisfies keyof NorIdResellerDeclarationRequest;
|
|
3791
|
+
|
|
3792
|
+
export const KEYS_NOR_ID_RESELLER_DECLARATION_REQUEST = [
|
|
3793
|
+
KEY_NOR_ID_RESELLER_DECLARATION_REQUEST_ACCEPT_DATE,
|
|
3794
|
+
KEY_NOR_ID_RESELLER_DECLARATION_REQUEST_ACCEPT_NAME,
|
|
3795
|
+
] as const satisfies (keyof NorIdResellerDeclarationRequest)[];
|
|
3796
|
+
|
|
3753
3797
|
export const KEY_OBJECT_LOG_ACTION = 'action' satisfies keyof ObjectLog;
|
|
3754
3798
|
export const KEY_OBJECT_LOG_CREATED_ON = 'created_on' satisfies keyof ObjectLog;
|
|
3755
3799
|
export const KEY_OBJECT_LOG_DETAILS = 'details' satisfies keyof ObjectLog;
|
|
@@ -4476,6 +4520,16 @@ export const KEYS_PROBLEM = [
|
|
|
4476
4520
|
KEY_PROBLEM_TYPE,
|
|
4477
4521
|
] as const satisfies (keyof Problem)[];
|
|
4478
4522
|
|
|
4523
|
+
export const KEY_PRODUCT_CREATE_RES_PRODUCT_NAME = 'product_name' satisfies keyof ProductCreateRes;
|
|
4524
|
+
export const KEY_PRODUCT_CREATE_RES_SUBSCRIBABLE_ID = 'subscribable_id' satisfies keyof ProductCreateRes;
|
|
4525
|
+
export const KEY_PRODUCT_CREATE_RES_SUBSCRIPTION_ID = 'subscription_id' satisfies keyof ProductCreateRes;
|
|
4526
|
+
|
|
4527
|
+
export const KEYS_PRODUCT_CREATE_RES = [
|
|
4528
|
+
KEY_PRODUCT_CREATE_RES_PRODUCT_NAME,
|
|
4529
|
+
KEY_PRODUCT_CREATE_RES_SUBSCRIBABLE_ID,
|
|
4530
|
+
KEY_PRODUCT_CREATE_RES_SUBSCRIPTION_ID,
|
|
4531
|
+
] as const satisfies (keyof ProductCreateRes)[];
|
|
4532
|
+
|
|
4479
4533
|
export const KEY_PUBLIC_AUTH_REQUEST_FORM_CLIENT_ID = 'client_id' satisfies keyof PublicAuthRequestForm;
|
|
4480
4534
|
export const KEY_PUBLIC_AUTH_REQUEST_FORM_CLIENT_SECRET = 'client_secret' satisfies keyof PublicAuthRequestForm;
|
|
4481
4535
|
export const KEY_PUBLIC_AUTH_REQUEST_FORM_GRANT_TYPE = 'grant_type' satisfies keyof PublicAuthRequestForm;
|
|
@@ -5418,6 +5472,38 @@ export const KEYS_VISITS_BY_KEY_BUCKET = [
|
|
|
5418
5472
|
KEY_VISITS_BY_KEY_BUCKET_UNIQUE,
|
|
5419
5473
|
] as const satisfies (keyof VisitsByKeyBucket)[];
|
|
5420
5474
|
|
|
5475
|
+
export const KEY_WHITELABEL_BRANDING_CREATE_AUTH_HOSTNAME = 'auth_hostname' satisfies keyof WhitelabelBrandingCreate;
|
|
5476
|
+
export const KEY_WHITELABEL_BRANDING_CREATE_HOSTNAME = 'hostname' satisfies keyof WhitelabelBrandingCreate;
|
|
5477
|
+
|
|
5478
|
+
export const KEYS_WHITELABEL_BRANDING_CREATE = [
|
|
5479
|
+
KEY_WHITELABEL_BRANDING_CREATE_AUTH_HOSTNAME,
|
|
5480
|
+
KEY_WHITELABEL_BRANDING_CREATE_HOSTNAME,
|
|
5481
|
+
] as const satisfies (keyof WhitelabelBrandingCreate)[];
|
|
5482
|
+
|
|
5483
|
+
export const KEY_WHITELABEL_BRANDING_AUTH_HOSTNAME = 'auth_hostname' satisfies keyof WhitelabelBranding;
|
|
5484
|
+
export const KEY_WHITELABEL_BRANDING_CREATED_ON = 'created_on' satisfies keyof WhitelabelBranding;
|
|
5485
|
+
export const KEY_WHITELABEL_BRANDING_FAILURE_REASON = 'failure_reason' satisfies keyof WhitelabelBranding;
|
|
5486
|
+
export const KEY_WHITELABEL_BRANDING_HOSTNAME = 'hostname' satisfies keyof WhitelabelBranding;
|
|
5487
|
+
export const KEY_WHITELABEL_BRANDING_KEYCLOAK_CLIENT_ID = 'keycloak_client_id' satisfies keyof WhitelabelBranding;
|
|
5488
|
+
export const KEY_WHITELABEL_BRANDING_ONBOARDING_STATUS = 'onboarding_status' satisfies keyof WhitelabelBranding;
|
|
5489
|
+
export const KEY_WHITELABEL_BRANDING_ORGANIZATION_ID = 'organization_id' satisfies keyof WhitelabelBranding;
|
|
5490
|
+
export const KEY_WHITELABEL_BRANDING_UPDATED_ON = 'updated_on' satisfies keyof WhitelabelBranding;
|
|
5491
|
+
export const KEY_WHITELABEL_BRANDING_VERIFICATION_DOMAIN = 'verification_domain' satisfies keyof WhitelabelBranding;
|
|
5492
|
+
export const KEY_WHITELABEL_BRANDING_WHITELABEL_BRANDING_ID = 'whitelabel_branding_id' satisfies keyof WhitelabelBranding;
|
|
5493
|
+
|
|
5494
|
+
export const KEYS_WHITELABEL_BRANDING = [
|
|
5495
|
+
KEY_WHITELABEL_BRANDING_AUTH_HOSTNAME,
|
|
5496
|
+
KEY_WHITELABEL_BRANDING_CREATED_ON,
|
|
5497
|
+
KEY_WHITELABEL_BRANDING_FAILURE_REASON,
|
|
5498
|
+
KEY_WHITELABEL_BRANDING_HOSTNAME,
|
|
5499
|
+
KEY_WHITELABEL_BRANDING_KEYCLOAK_CLIENT_ID,
|
|
5500
|
+
KEY_WHITELABEL_BRANDING_ONBOARDING_STATUS,
|
|
5501
|
+
KEY_WHITELABEL_BRANDING_ORGANIZATION_ID,
|
|
5502
|
+
KEY_WHITELABEL_BRANDING_UPDATED_ON,
|
|
5503
|
+
KEY_WHITELABEL_BRANDING_VERIFICATION_DOMAIN,
|
|
5504
|
+
KEY_WHITELABEL_BRANDING_WHITELABEL_BRANDING_ID,
|
|
5505
|
+
] as const satisfies (keyof WhitelabelBranding)[];
|
|
5506
|
+
|
|
5421
5507
|
export const KEY_WHOIS_BASE_WHOIS_SERVER = 'whois_server' satisfies keyof WhoisBase;
|
|
5422
5508
|
|
|
5423
5509
|
export const KEYS_WHOIS_BASE = [
|
|
@@ -38,6 +38,8 @@ import type {
|
|
|
38
38
|
MemoryFactCreateRequest,
|
|
39
39
|
MemoryFactPatchRequest,
|
|
40
40
|
MessageCreateRequest,
|
|
41
|
+
NorIdDeclarationConfirmRequest,
|
|
42
|
+
NorIdResellerDeclarationRequest,
|
|
41
43
|
ObjectTagChanges,
|
|
42
44
|
OrganizationAttributeUpdate,
|
|
43
45
|
OrganizationCreate,
|
|
@@ -51,6 +53,7 @@ import type {
|
|
|
51
53
|
UserUpdate,
|
|
52
54
|
VanityNameserverSetCreate,
|
|
53
55
|
VanityNsCheckPublicReq,
|
|
56
|
+
WhitelabelBrandingCreate,
|
|
54
57
|
ZoneVanitySetUpdate,
|
|
55
58
|
} from './schemas';
|
|
56
59
|
|
|
@@ -597,6 +600,30 @@ export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Request =
|
|
|
597
600
|
};
|
|
598
601
|
export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Request_Path = POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Request['parameters']['path'];
|
|
599
602
|
|
|
603
|
+
export type GET_DomainsTldSpecificNoApplicantDeclaration_Request = {
|
|
604
|
+
parameters: operations['get_norid_declaration_by_token_v1_domains_tld_specific_no_applicant_declaration_get']['parameters'];
|
|
605
|
+
};
|
|
606
|
+
export type GET_DomainsTldSpecificNoApplicantDeclaration_Request_Query = GET_DomainsTldSpecificNoApplicantDeclaration_Request['parameters']['query'];
|
|
607
|
+
|
|
608
|
+
export type PUT_DomainsTldSpecificNoApplicantDeclaration_Request = {
|
|
609
|
+
parameters: operations['confirm_norid_declaration_by_token_v1_domains_tld_specific_no_applicant_declaration_put']['parameters'];
|
|
610
|
+
requestBody: NorIdDeclarationConfirmRequest;
|
|
611
|
+
};
|
|
612
|
+
export type PUT_DomainsTldSpecificNoApplicantDeclaration_Request_Query = PUT_DomainsTldSpecificNoApplicantDeclaration_Request['parameters']['query'];
|
|
613
|
+
export type PUT_DomainsTldSpecificNoApplicantDeclaration_Request_Body = PUT_DomainsTldSpecificNoApplicantDeclaration_Request['requestBody'];
|
|
614
|
+
|
|
615
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Request = {
|
|
616
|
+
parameters: operations['submit_norid_declaration_v1_domains_tld_specific_no__domain_reference__applicant_declaration_post']['parameters'];
|
|
617
|
+
requestBody: NorIdResellerDeclarationRequest;
|
|
618
|
+
};
|
|
619
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Request_Path = POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Request['parameters']['path'];
|
|
620
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Request_Body = POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Request['requestBody'];
|
|
621
|
+
|
|
622
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceResendDeclarationEmail_Request = {
|
|
623
|
+
parameters: operations['resend_norid_declaration_email_v1_domains_tld_specific_no__domain_reference__resend_declaration_email_post']['parameters'];
|
|
624
|
+
};
|
|
625
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceResendDeclarationEmail_Request_Path = POST_DomainsTldSpecificNoByDomainReferenceResendDeclarationEmail_Request['parameters']['path'];
|
|
626
|
+
|
|
600
627
|
export type POST_DomainsTransfer_Request = {
|
|
601
628
|
requestBody: DomainTransferIn;
|
|
602
629
|
};
|
|
@@ -1079,3 +1106,14 @@ export type POST_VanityNameserverSetsCheck_Request_Body = POST_VanityNameserverS
|
|
|
1079
1106
|
|
|
1080
1107
|
export type DELETE_VanityNameserverSetsDefault_Request = {
|
|
1081
1108
|
};
|
|
1109
|
+
|
|
1110
|
+
export type GET_WhitelabelBranding_Request = {
|
|
1111
|
+
};
|
|
1112
|
+
|
|
1113
|
+
export type POST_WhitelabelBranding_Request = {
|
|
1114
|
+
requestBody: WhitelabelBrandingCreate;
|
|
1115
|
+
};
|
|
1116
|
+
export type POST_WhitelabelBranding_Request_Body = POST_WhitelabelBranding_Request['requestBody'];
|
|
1117
|
+
|
|
1118
|
+
export type POST_WhitelabelBrandingRecheck_Request = {
|
|
1119
|
+
};
|
|
@@ -55,6 +55,7 @@ import type {
|
|
|
55
55
|
MemoryFactList,
|
|
56
56
|
Message,
|
|
57
57
|
MessageList,
|
|
58
|
+
NorIdDeclaration,
|
|
58
59
|
ObjectTagChanges2,
|
|
59
60
|
Organization,
|
|
60
61
|
OrganizationAttribute2,
|
|
@@ -85,6 +86,7 @@ import type {
|
|
|
85
86
|
ParkingSignupStatus,
|
|
86
87
|
ParkingTotalMetrics,
|
|
87
88
|
Problem,
|
|
89
|
+
ProductCreateRes,
|
|
88
90
|
PublicPermissionSet,
|
|
89
91
|
PublicReportListRes,
|
|
90
92
|
PublicReportRes,
|
|
@@ -102,6 +104,7 @@ import type {
|
|
|
102
104
|
UserPublicWithAttributes,
|
|
103
105
|
VanityNameserverSetSummaryDTO,
|
|
104
106
|
VanityNsCheckRes,
|
|
107
|
+
WhitelabelBranding,
|
|
105
108
|
} from './schemas';
|
|
106
109
|
|
|
107
110
|
export type DELETE_AiConciergeConversationsByConversationId_Response = DELETE_AiConciergeConversationsByConversationId_Response_401 | DELETE_AiConciergeConversationsByConversationId_Response_404 | DELETE_AiConciergeConversationsByConversationId_Response_422 | DELETE_AiConciergeConversationsByConversationId_Response_502;
|
|
@@ -558,6 +561,12 @@ export type GET_DomainsSummary_Response = GET_DomainsSummary_Response_200 | GET_
|
|
|
558
561
|
export type GET_DomainsSummary_Response_200 = DomainSummary;
|
|
559
562
|
export type GET_DomainsSummary_Response_422 = HTTPValidationError;
|
|
560
563
|
|
|
564
|
+
export type GET_DomainsTldSpecificNoApplicantDeclaration_Response = GET_DomainsTldSpecificNoApplicantDeclaration_Response_200 | GET_DomainsTldSpecificNoApplicantDeclaration_Response_404 | GET_DomainsTldSpecificNoApplicantDeclaration_Response_422;
|
|
565
|
+
|
|
566
|
+
export type GET_DomainsTldSpecificNoApplicantDeclaration_Response_200 = NorIdDeclaration;
|
|
567
|
+
export type GET_DomainsTldSpecificNoApplicantDeclaration_Response_404 = Problem;
|
|
568
|
+
export type GET_DomainsTldSpecificNoApplicantDeclaration_Response_422 = HTTPValidationError;
|
|
569
|
+
|
|
561
570
|
export type GET_EmailForwards_Response = GET_EmailForwards_Response_200 | GET_EmailForwards_Response_401 | GET_EmailForwards_Response_403 | GET_EmailForwards_Response_422;
|
|
562
571
|
|
|
563
572
|
export type GET_EmailForwards_Response_200 = Pagination_EmailForward;
|
|
@@ -830,6 +839,11 @@ export type GET_VanityNameserverSetsBySetIdZones_Response = GET_VanityNameserver
|
|
|
830
839
|
export type GET_VanityNameserverSetsBySetIdZones_Response_200 = ListZonesReferencingSetRes;
|
|
831
840
|
export type GET_VanityNameserverSetsBySetIdZones_Response_422 = HTTPValidationError;
|
|
832
841
|
|
|
842
|
+
export type GET_WhitelabelBranding_Response = GET_WhitelabelBranding_Response_200 | GET_WhitelabelBranding_Response_422;
|
|
843
|
+
|
|
844
|
+
export type GET_WhitelabelBranding_Response_200 = WhitelabelBranding;
|
|
845
|
+
export type GET_WhitelabelBranding_Response_422 = HTTPValidationError;
|
|
846
|
+
|
|
833
847
|
export type PATCH_AiConciergeConversationsByConversationId_Response = PATCH_AiConciergeConversationsByConversationId_Response_200 | PATCH_AiConciergeConversationsByConversationId_Response_401 | PATCH_AiConciergeConversationsByConversationId_Response_404 | PATCH_AiConciergeConversationsByConversationId_Response_422 | PATCH_AiConciergeConversationsByConversationId_Response_502;
|
|
834
848
|
|
|
835
849
|
export type PATCH_AiConciergeConversationsByConversationId_Response_200 = Conversation;
|
|
@@ -1148,6 +1162,20 @@ export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_4
|
|
|
1148
1162
|
export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_404 = Problem;
|
|
1149
1163
|
export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_422 = HTTPValidationError;
|
|
1150
1164
|
|
|
1165
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Response = POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Response_202 | POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Response_400 | POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Response_404 | POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Response_409 | POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Response_422;
|
|
1166
|
+
|
|
1167
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Response_202 = NorIdDeclaration;
|
|
1168
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Response_400 = Problem;
|
|
1169
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Response_404 = Problem;
|
|
1170
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Response_409 = Problem;
|
|
1171
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceApplicantDeclaration_Response_422 = HTTPValidationError;
|
|
1172
|
+
|
|
1173
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceResendDeclarationEmail_Response = POST_DomainsTldSpecificNoByDomainReferenceResendDeclarationEmail_Response_404 | POST_DomainsTldSpecificNoByDomainReferenceResendDeclarationEmail_Response_409 | POST_DomainsTldSpecificNoByDomainReferenceResendDeclarationEmail_Response_422;
|
|
1174
|
+
|
|
1175
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceResendDeclarationEmail_Response_404 = Problem;
|
|
1176
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceResendDeclarationEmail_Response_409 = Problem;
|
|
1177
|
+
export type POST_DomainsTldSpecificNoByDomainReferenceResendDeclarationEmail_Response_422 = HTTPValidationError;
|
|
1178
|
+
|
|
1151
1179
|
export type POST_DomainsTransfer_Response = POST_DomainsTransfer_Response_201 | POST_DomainsTransfer_Response_400 | POST_DomainsTransfer_Response_403 | POST_DomainsTransfer_Response_404 | POST_DomainsTransfer_Response_409 | POST_DomainsTransfer_Response_422;
|
|
1152
1180
|
|
|
1153
1181
|
export type POST_DomainsTransfer_Response_201 = Domain;
|
|
@@ -1305,6 +1333,16 @@ export type POST_VanityNameserverSetsCheck_Response = POST_VanityNameserverSetsC
|
|
|
1305
1333
|
export type POST_VanityNameserverSetsCheck_Response_200 = VanityNsCheckRes;
|
|
1306
1334
|
export type POST_VanityNameserverSetsCheck_Response_422 = HTTPValidationError;
|
|
1307
1335
|
|
|
1336
|
+
export type POST_WhitelabelBranding_Response = POST_WhitelabelBranding_Response_202 | POST_WhitelabelBranding_Response_422;
|
|
1337
|
+
|
|
1338
|
+
export type POST_WhitelabelBranding_Response_202 = ProductCreateRes;
|
|
1339
|
+
export type POST_WhitelabelBranding_Response_422 = HTTPValidationError;
|
|
1340
|
+
|
|
1341
|
+
export type POST_WhitelabelBrandingRecheck_Response = POST_WhitelabelBrandingRecheck_Response_202 | POST_WhitelabelBrandingRecheck_Response_422;
|
|
1342
|
+
|
|
1343
|
+
export type POST_WhitelabelBrandingRecheck_Response_202 = WhitelabelBranding;
|
|
1344
|
+
export type POST_WhitelabelBrandingRecheck_Response_422 = HTTPValidationError;
|
|
1345
|
+
|
|
1308
1346
|
export type PUT_ContactsByContactIdVerification_Response = PUT_ContactsByContactIdVerification_Response_400 | PUT_ContactsByContactIdVerification_Response_401 | PUT_ContactsByContactIdVerification_Response_403 | PUT_ContactsByContactIdVerification_Response_404 | PUT_ContactsByContactIdVerification_Response_422;
|
|
1309
1347
|
|
|
1310
1348
|
export type PUT_ContactsByContactIdVerification_Response_400 = Problem;
|
|
@@ -1339,6 +1377,13 @@ export type PUT_DomainsByDomainReferenceDnssec_Response_200 = DomainDnssecData[]
|
|
|
1339
1377
|
export type PUT_DomainsByDomainReferenceDnssec_Response_404 = Problem;
|
|
1340
1378
|
export type PUT_DomainsByDomainReferenceDnssec_Response_422 = Problem;
|
|
1341
1379
|
|
|
1380
|
+
export type PUT_DomainsTldSpecificNoApplicantDeclaration_Response = PUT_DomainsTldSpecificNoApplicantDeclaration_Response_400 | PUT_DomainsTldSpecificNoApplicantDeclaration_Response_404 | PUT_DomainsTldSpecificNoApplicantDeclaration_Response_409 | PUT_DomainsTldSpecificNoApplicantDeclaration_Response_422;
|
|
1381
|
+
|
|
1382
|
+
export type PUT_DomainsTldSpecificNoApplicantDeclaration_Response_400 = Problem;
|
|
1383
|
+
export type PUT_DomainsTldSpecificNoApplicantDeclaration_Response_404 = Problem;
|
|
1384
|
+
export type PUT_DomainsTldSpecificNoApplicantDeclaration_Response_409 = Problem;
|
|
1385
|
+
export type PUT_DomainsTldSpecificNoApplicantDeclaration_Response_422 = HTTPValidationError;
|
|
1386
|
+
|
|
1342
1387
|
export type PUT_EmailForwardsByEmailForwardIdAliasesByAliasId_Response = PUT_EmailForwardsByEmailForwardIdAliasesByAliasId_Response_200 | PUT_EmailForwardsByEmailForwardIdAliasesByAliasId_Response_401 | PUT_EmailForwardsByEmailForwardIdAliasesByAliasId_Response_403 | PUT_EmailForwardsByEmailForwardIdAliasesByAliasId_Response_404 | PUT_EmailForwardsByEmailForwardIdAliasesByAliasId_Response_422;
|
|
1343
1388
|
|
|
1344
1389
|
export type PUT_EmailForwardsByEmailForwardIdAliasesByAliasId_Response_200 = EmailForwardAlias;
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -345,6 +345,10 @@ export type MessageList = components['schemas']['MessageListResponse'];
|
|
|
345
345
|
export type MessageRole = components['schemas']['MessageRole'];
|
|
346
346
|
export type MetricsGrouping = components['schemas']['MetricsGrouping'];
|
|
347
347
|
export type Nameserver = components['schemas']['Nameserver'];
|
|
348
|
+
export type NorIdDeclarationConfirmRequest = components['schemas']['NorIdDeclarationConfirmRequest'];
|
|
349
|
+
export type NorIdDeclaration = components['schemas']['NorIdDeclarationResponse'];
|
|
350
|
+
export type NorIdDeclarationStatus = components['schemas']['NorIdDeclarationStatus'];
|
|
351
|
+
export type NorIdResellerDeclarationRequest = components['schemas']['NorIdResellerDeclarationRequest'];
|
|
348
352
|
export type ObjectEventType = components['schemas']['ObjectEventType'];
|
|
349
353
|
export type ObjectLog = components['schemas']['ObjectLog'];
|
|
350
354
|
export type ObjectLogSortField = components['schemas']['ObjectLogSortField'];
|
|
@@ -431,6 +435,7 @@ export type PremiumSourceType = components['schemas']['PremiumSourceType'];
|
|
|
431
435
|
export type PriceInfo = components['schemas']['PriceInfo'];
|
|
432
436
|
export type PricingPeriod = components['schemas']['PricingPeriod'];
|
|
433
437
|
export type Problem = components['schemas']['Problem'];
|
|
438
|
+
export type ProductCreateRes = components['schemas']['ProductCreateRes'];
|
|
434
439
|
export type Protocol = components['schemas']['Protocol'];
|
|
435
440
|
export type PublicAuthRequestForm = components['schemas']['PublicAuthRequestForm'];
|
|
436
441
|
export type PublicPermission = components['schemas']['PublicPermission'];
|
|
@@ -535,6 +540,9 @@ export type VerificationRegistrantDetails = components['schemas']['VerificationR
|
|
|
535
540
|
export type Verification = components['schemas']['VerificationResponse'];
|
|
536
541
|
export type VerificationType = components['schemas']['VerificationType'];
|
|
537
542
|
export type VisitsByKeyBucket = components['schemas']['VisitsByKeyBucket'];
|
|
543
|
+
export type WhitelabelBrandingCreate = components['schemas']['WhitelabelBrandingCreate'];
|
|
544
|
+
export type WhitelabelBranding = components['schemas']['WhitelabelBrandingResponse'];
|
|
545
|
+
export type WhitelabelOnboardingStatus = components['schemas']['WhitelabelOnboardingStatus'];
|
|
538
546
|
export type WhoisBase = components['schemas']['WhoisBase'];
|
|
539
547
|
export type ZoneIncludeField = components['schemas']['ZoneIncludeField'];
|
|
540
548
|
export type ZoneSortField = components['schemas']['ZoneSortField'];
|