@opusdns/api 1.73.0 → 1.75.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 +11 -0
- package/src/helpers/keys.ts +188 -0
- package/src/helpers/requests.d.ts +9 -0
- package/src/helpers/responses.d.ts +10 -0
- package/src/helpers/schemas.d.ts +13 -0
- package/src/openapi.yaml +501 -1
- package/src/schema.d.ts +291 -0
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -87,6 +87,7 @@ import type {
|
|
|
87
87
|
RegistrantChangeType,
|
|
88
88
|
RegistryHandleAttributeType,
|
|
89
89
|
RenewalMode,
|
|
90
|
+
RenewalModeDTO,
|
|
90
91
|
ReportStatus,
|
|
91
92
|
ReportTriggerType,
|
|
92
93
|
ReportType,
|
|
@@ -1628,6 +1629,16 @@ export const RENEWAL_MODE_VALUES = [
|
|
|
1628
1629
|
'expire',
|
|
1629
1630
|
] as const satisfies ReadonlyArray<RenewalMode>;
|
|
1630
1631
|
|
|
1632
|
+
export const RENEWAL_MODE_DTO = {
|
|
1633
|
+
RENEW: "renew",
|
|
1634
|
+
EXPIRE: "expire",
|
|
1635
|
+
} as const satisfies Record<string, RenewalModeDTO>;
|
|
1636
|
+
|
|
1637
|
+
export const RENEWAL_MODE_DTO_VALUES = [
|
|
1638
|
+
'renew',
|
|
1639
|
+
'expire',
|
|
1640
|
+
] as const satisfies ReadonlyArray<RenewalModeDTO>;
|
|
1641
|
+
|
|
1631
1642
|
export const REPORT_STATUS = {
|
|
1632
1643
|
PENDING: "pending",
|
|
1633
1644
|
GENERATING: "generating",
|
package/src/helpers/keys.ts
CHANGED
|
@@ -5,8 +5,11 @@ import type {
|
|
|
5
5
|
AiUsageTimeBucket,
|
|
6
6
|
AllowedNumberOfNameserverBase,
|
|
7
7
|
AttributeCondition,
|
|
8
|
+
Auth,
|
|
8
9
|
BillingMetadata,
|
|
9
10
|
BillingTransaction,
|
|
11
|
+
Brand,
|
|
12
|
+
BrandingDocument,
|
|
10
13
|
BrowserStatsBucket,
|
|
11
14
|
BulkObjectTagChanges,
|
|
12
15
|
ClaimsNotice,
|
|
@@ -42,6 +45,7 @@ import type {
|
|
|
42
45
|
ContactsBase,
|
|
43
46
|
ContactsContext,
|
|
44
47
|
ContactsContextCreate,
|
|
48
|
+
Content,
|
|
45
49
|
ContextList,
|
|
46
50
|
ContextMeta,
|
|
47
51
|
ContextPayload_DomainForward,
|
|
@@ -240,6 +244,7 @@ import type {
|
|
|
240
244
|
EventData,
|
|
241
245
|
EventError,
|
|
242
246
|
EventResponse,
|
|
247
|
+
Footer,
|
|
243
248
|
GeneralAvailabilityBase,
|
|
244
249
|
GeoStatsBucket,
|
|
245
250
|
GetPrices,
|
|
@@ -266,10 +271,12 @@ import type {
|
|
|
266
271
|
Job,
|
|
267
272
|
LaunchPhaseBase,
|
|
268
273
|
LaunchPhasesBase,
|
|
274
|
+
Legal,
|
|
269
275
|
LegalRequirementBase,
|
|
270
276
|
ListVanityNameserverSetsRes,
|
|
271
277
|
ListZonesReferencingSetRes,
|
|
272
278
|
LocalPresenceBase,
|
|
279
|
+
Logo,
|
|
273
280
|
MemoryFact,
|
|
274
281
|
MemoryFactCreateRequest,
|
|
275
282
|
MemoryFactList,
|
|
@@ -302,6 +309,7 @@ import type {
|
|
|
302
309
|
PageResponse_RequestHistory,
|
|
303
310
|
PaginationMetadata,
|
|
304
311
|
PaginationMetadataDTO,
|
|
312
|
+
Palette,
|
|
305
313
|
ParkingActionPayloadData,
|
|
306
314
|
ParkingAgreementAcceptance,
|
|
307
315
|
ParkingCreateBulkCommand,
|
|
@@ -336,6 +344,8 @@ import type {
|
|
|
336
344
|
PremiumPricingAction,
|
|
337
345
|
PremiumPricingRes,
|
|
338
346
|
PremiumPricing,
|
|
347
|
+
PreviewMailReq,
|
|
348
|
+
PreviewMailRes,
|
|
339
349
|
PriceInfo,
|
|
340
350
|
PricingPeriod,
|
|
341
351
|
Problem,
|
|
@@ -364,10 +374,12 @@ import type {
|
|
|
364
374
|
StatusChanges,
|
|
365
375
|
StatusCodeStatsBucket,
|
|
366
376
|
StatusTag,
|
|
377
|
+
Support,
|
|
367
378
|
TagCreate,
|
|
368
379
|
TagEnriched,
|
|
369
380
|
Tag,
|
|
370
381
|
TagUpdate,
|
|
382
|
+
Theme,
|
|
371
383
|
TimeSeriesBucket,
|
|
372
384
|
TldBase,
|
|
373
385
|
TldResponseShort,
|
|
@@ -486,6 +498,14 @@ export const KEYS_ATTRIBUTE_CONDITION = [
|
|
|
486
498
|
KEY_ATTRIBUTE_CONDITION_VALUE,
|
|
487
499
|
] as const satisfies (keyof AttributeCondition)[];
|
|
488
500
|
|
|
501
|
+
export const KEY_AUTH_AUTHORITY = 'authority' satisfies keyof Auth;
|
|
502
|
+
export const KEY_AUTH_CLIENT_ID = 'client_id' satisfies keyof Auth;
|
|
503
|
+
|
|
504
|
+
export const KEYS_AUTH = [
|
|
505
|
+
KEY_AUTH_AUTHORITY,
|
|
506
|
+
KEY_AUTH_CLIENT_ID,
|
|
507
|
+
] as const satisfies (keyof Auth)[];
|
|
508
|
+
|
|
489
509
|
export const KEY_BILLING_METADATA_BILLING_MODEL = 'billing_model' satisfies keyof BillingMetadata;
|
|
490
510
|
export const KEY_BILLING_METADATA_CREDIT_LIMIT = 'credit_limit' satisfies keyof BillingMetadata;
|
|
491
511
|
export const KEY_BILLING_METADATA_CUSTOMER_NUMBER = 'customer_number' satisfies keyof BillingMetadata;
|
|
@@ -530,6 +550,28 @@ export const KEYS_BILLING_TRANSACTION = [
|
|
|
530
550
|
KEY_BILLING_TRANSACTION_VOLUME,
|
|
531
551
|
] as const satisfies (keyof BillingTransaction)[];
|
|
532
552
|
|
|
553
|
+
export const KEY_BRAND_LOGO = 'logo' satisfies keyof Brand;
|
|
554
|
+
export const KEY_BRAND_NAME = 'name' satisfies keyof Brand;
|
|
555
|
+
|
|
556
|
+
export const KEYS_BRAND = [
|
|
557
|
+
KEY_BRAND_LOGO,
|
|
558
|
+
KEY_BRAND_NAME,
|
|
559
|
+
] as const satisfies (keyof Brand)[];
|
|
560
|
+
|
|
561
|
+
export const KEY_BRANDING_DOCUMENT_AUTH = 'auth' satisfies keyof BrandingDocument;
|
|
562
|
+
export const KEY_BRANDING_DOCUMENT_BRAND = 'brand' satisfies keyof BrandingDocument;
|
|
563
|
+
export const KEY_BRANDING_DOCUMENT_CONTENT = 'content' satisfies keyof BrandingDocument;
|
|
564
|
+
export const KEY_BRANDING_DOCUMENT_THEME = 'theme' satisfies keyof BrandingDocument;
|
|
565
|
+
export const KEY_BRANDING_DOCUMENT_VERSION = 'version' satisfies keyof BrandingDocument;
|
|
566
|
+
|
|
567
|
+
export const KEYS_BRANDING_DOCUMENT = [
|
|
568
|
+
KEY_BRANDING_DOCUMENT_AUTH,
|
|
569
|
+
KEY_BRANDING_DOCUMENT_BRAND,
|
|
570
|
+
KEY_BRANDING_DOCUMENT_CONTENT,
|
|
571
|
+
KEY_BRANDING_DOCUMENT_THEME,
|
|
572
|
+
KEY_BRANDING_DOCUMENT_VERSION,
|
|
573
|
+
] as const satisfies (keyof BrandingDocument)[];
|
|
574
|
+
|
|
533
575
|
export const KEY_BROWSER_STATS_BUCKET_KEY = 'key' satisfies keyof BrowserStatsBucket;
|
|
534
576
|
export const KEY_BROWSER_STATS_BUCKET_TOTAL = 'total' satisfies keyof BrowserStatsBucket;
|
|
535
577
|
export const KEY_BROWSER_STATS_BUCKET_UNIQUE = 'unique' satisfies keyof BrowserStatsBucket;
|
|
@@ -1062,6 +1104,20 @@ export const KEYS_CONTACTS_CONTEXT_CREATE = [
|
|
|
1062
1104
|
KEY_CONTACTS_CONTEXT_CREATE_PAYLOAD,
|
|
1063
1105
|
] as const satisfies (keyof ContactsContextCreate)[];
|
|
1064
1106
|
|
|
1107
|
+
export const KEY_CONTENT_EMAIL_BLOCKS = 'email_blocks' satisfies keyof Content;
|
|
1108
|
+
export const KEY_CONTENT_FOOTER = 'footer' satisfies keyof Content;
|
|
1109
|
+
export const KEY_CONTENT_LEGAL = 'legal' satisfies keyof Content;
|
|
1110
|
+
export const KEY_CONTENT_SIGNATURE = 'signature' satisfies keyof Content;
|
|
1111
|
+
export const KEY_CONTENT_SUPPORT = 'support' satisfies keyof Content;
|
|
1112
|
+
|
|
1113
|
+
export const KEYS_CONTENT = [
|
|
1114
|
+
KEY_CONTENT_EMAIL_BLOCKS,
|
|
1115
|
+
KEY_CONTENT_FOOTER,
|
|
1116
|
+
KEY_CONTENT_LEGAL,
|
|
1117
|
+
KEY_CONTENT_SIGNATURE,
|
|
1118
|
+
KEY_CONTENT_SUPPORT,
|
|
1119
|
+
] as const satisfies (keyof Content)[];
|
|
1120
|
+
|
|
1065
1121
|
export const KEY_CONTEXT_LIST_PAGINATION = 'pagination' satisfies keyof ContextList;
|
|
1066
1122
|
export const KEY_CONTEXT_LIST_RESULTS = 'results' satisfies keyof ContextList;
|
|
1067
1123
|
|
|
@@ -3288,6 +3344,20 @@ export const KEYS_EVENT_RESPONSE = [
|
|
|
3288
3344
|
KEY_EVENT_RESPONSE_TYPE,
|
|
3289
3345
|
] as const satisfies (keyof EventResponse)[];
|
|
3290
3346
|
|
|
3347
|
+
export const KEY_FOOTER_CONTACT_EMAIL = 'contact_email' satisfies keyof Footer;
|
|
3348
|
+
export const KEY_FOOTER_DISCLAIMER = 'disclaimer' satisfies keyof Footer;
|
|
3349
|
+
export const KEY_FOOTER_LEGAL_ENTITY = 'legal_entity' satisfies keyof Footer;
|
|
3350
|
+
export const KEY_FOOTER_LINES = 'lines' satisfies keyof Footer;
|
|
3351
|
+
export const KEY_FOOTER_VAT_ID = 'vat_id' satisfies keyof Footer;
|
|
3352
|
+
|
|
3353
|
+
export const KEYS_FOOTER = [
|
|
3354
|
+
KEY_FOOTER_CONTACT_EMAIL,
|
|
3355
|
+
KEY_FOOTER_DISCLAIMER,
|
|
3356
|
+
KEY_FOOTER_LEGAL_ENTITY,
|
|
3357
|
+
KEY_FOOTER_LINES,
|
|
3358
|
+
KEY_FOOTER_VAT_ID,
|
|
3359
|
+
] as const satisfies (keyof Footer)[];
|
|
3360
|
+
|
|
3291
3361
|
export const KEY_GENERAL_AVAILABILITY_BASE_START_DATE = 'start_date' satisfies keyof GeneralAvailabilityBase;
|
|
3292
3362
|
|
|
3293
3363
|
export const KEYS_GENERAL_AVAILABILITY_BASE = [
|
|
@@ -3676,6 +3746,14 @@ export const KEYS_LAUNCH_PHASES_BASE = [
|
|
|
3676
3746
|
KEY_LAUNCH_PHASES_BASE_TRADEMARK_CLAIMS,
|
|
3677
3747
|
] as const satisfies (keyof LaunchPhasesBase)[];
|
|
3678
3748
|
|
|
3749
|
+
export const KEY_LEGAL_PRIVACY_URL = 'privacy_url' satisfies keyof Legal;
|
|
3750
|
+
export const KEY_LEGAL_TERMS_URL = 'terms_url' satisfies keyof Legal;
|
|
3751
|
+
|
|
3752
|
+
export const KEYS_LEGAL = [
|
|
3753
|
+
KEY_LEGAL_PRIVACY_URL,
|
|
3754
|
+
KEY_LEGAL_TERMS_URL,
|
|
3755
|
+
] as const satisfies (keyof Legal)[];
|
|
3756
|
+
|
|
3679
3757
|
export const KEY_LEGAL_REQUIREMENT_BASE_KEY = 'key' satisfies keyof LegalRequirementBase;
|
|
3680
3758
|
export const KEY_LEGAL_REQUIREMENT_BASE_OPERATIONS = 'operations' satisfies keyof LegalRequirementBase;
|
|
3681
3759
|
export const KEY_LEGAL_REQUIREMENT_BASE_TYPE = 'type' satisfies keyof LegalRequirementBase;
|
|
@@ -3718,6 +3796,18 @@ export const KEYS_LOCAL_PRESENCE_BASE = [
|
|
|
3718
3796
|
KEY_LOCAL_PRESENCE_BASE_TYPE,
|
|
3719
3797
|
] as const satisfies (keyof LocalPresenceBase)[];
|
|
3720
3798
|
|
|
3799
|
+
export const KEY_LOGO_DARK = 'dark' satisfies keyof Logo;
|
|
3800
|
+
export const KEY_LOGO_FAVICON = 'favicon' satisfies keyof Logo;
|
|
3801
|
+
export const KEY_LOGO_ICON = 'icon' satisfies keyof Logo;
|
|
3802
|
+
export const KEY_LOGO_LIGHT = 'light' satisfies keyof Logo;
|
|
3803
|
+
|
|
3804
|
+
export const KEYS_LOGO = [
|
|
3805
|
+
KEY_LOGO_DARK,
|
|
3806
|
+
KEY_LOGO_FAVICON,
|
|
3807
|
+
KEY_LOGO_ICON,
|
|
3808
|
+
KEY_LOGO_LIGHT,
|
|
3809
|
+
] as const satisfies (keyof Logo)[];
|
|
3810
|
+
|
|
3721
3811
|
export const KEY_MEMORY_FACT_CREATED_AT = 'created_at' satisfies keyof MemoryFact;
|
|
3722
3812
|
export const KEY_MEMORY_FACT_EXPIRES_AT = 'expires_at' satisfies keyof MemoryFact;
|
|
3723
3813
|
export const KEY_MEMORY_FACT_FACT_ID = 'fact_id' satisfies keyof MemoryFact;
|
|
@@ -4226,6 +4316,54 @@ export const KEYS_PAGINATION_METADATA_DTO = [
|
|
|
4226
4316
|
KEY_PAGINATION_METADATA_DTO_TOTAL_PAGES,
|
|
4227
4317
|
] as const satisfies (keyof PaginationMetadataDTO)[];
|
|
4228
4318
|
|
|
4319
|
+
export const KEY_PALETTE_ACCENT = 'accent' satisfies keyof Palette;
|
|
4320
|
+
export const KEY_PALETTE_ACCENT_FOREGROUND = 'accent_foreground' satisfies keyof Palette;
|
|
4321
|
+
export const KEY_PALETTE_BACKGROUND = 'background' satisfies keyof Palette;
|
|
4322
|
+
export const KEY_PALETTE_BORDER = 'border' satisfies keyof Palette;
|
|
4323
|
+
export const KEY_PALETTE_CARD = 'card' satisfies keyof Palette;
|
|
4324
|
+
export const KEY_PALETTE_CARD_FOREGROUND = 'card_foreground' satisfies keyof Palette;
|
|
4325
|
+
export const KEY_PALETTE_CHART_COLORS = 'chart_colors' satisfies keyof Palette;
|
|
4326
|
+
export const KEY_PALETTE_DANGER = 'danger' satisfies keyof Palette;
|
|
4327
|
+
export const KEY_PALETTE_FOREGROUND = 'foreground' satisfies keyof Palette;
|
|
4328
|
+
export const KEY_PALETTE_INFO = 'info' satisfies keyof Palette;
|
|
4329
|
+
export const KEY_PALETTE_INPUT = 'input' satisfies keyof Palette;
|
|
4330
|
+
export const KEY_PALETTE_MUTED = 'muted' satisfies keyof Palette;
|
|
4331
|
+
export const KEY_PALETTE_MUTED_FOREGROUND = 'muted_foreground' satisfies keyof Palette;
|
|
4332
|
+
export const KEY_PALETTE_PRIMARY = 'primary' satisfies keyof Palette;
|
|
4333
|
+
export const KEY_PALETTE_PRIMARY_FOREGROUND = 'primary_foreground' satisfies keyof Palette;
|
|
4334
|
+
export const KEY_PALETTE_SECONDARY = 'secondary' satisfies keyof Palette;
|
|
4335
|
+
export const KEY_PALETTE_SECONDARY_FOREGROUND = 'secondary_foreground' satisfies keyof Palette;
|
|
4336
|
+
export const KEY_PALETTE_SIDEBAR = 'sidebar' satisfies keyof Palette;
|
|
4337
|
+
export const KEY_PALETTE_SIDEBAR_FOREGROUND = 'sidebar_foreground' satisfies keyof Palette;
|
|
4338
|
+
export const KEY_PALETTE_SUCCESS = 'success' satisfies keyof Palette;
|
|
4339
|
+
export const KEY_PALETTE_TAG_COLORS = 'tag_colors' satisfies keyof Palette;
|
|
4340
|
+
export const KEY_PALETTE_WARNING = 'warning' satisfies keyof Palette;
|
|
4341
|
+
|
|
4342
|
+
export const KEYS_PALETTE = [
|
|
4343
|
+
KEY_PALETTE_ACCENT,
|
|
4344
|
+
KEY_PALETTE_ACCENT_FOREGROUND,
|
|
4345
|
+
KEY_PALETTE_BACKGROUND,
|
|
4346
|
+
KEY_PALETTE_BORDER,
|
|
4347
|
+
KEY_PALETTE_CARD,
|
|
4348
|
+
KEY_PALETTE_CARD_FOREGROUND,
|
|
4349
|
+
KEY_PALETTE_CHART_COLORS,
|
|
4350
|
+
KEY_PALETTE_DANGER,
|
|
4351
|
+
KEY_PALETTE_FOREGROUND,
|
|
4352
|
+
KEY_PALETTE_INFO,
|
|
4353
|
+
KEY_PALETTE_INPUT,
|
|
4354
|
+
KEY_PALETTE_MUTED,
|
|
4355
|
+
KEY_PALETTE_MUTED_FOREGROUND,
|
|
4356
|
+
KEY_PALETTE_PRIMARY,
|
|
4357
|
+
KEY_PALETTE_PRIMARY_FOREGROUND,
|
|
4358
|
+
KEY_PALETTE_SECONDARY,
|
|
4359
|
+
KEY_PALETTE_SECONDARY_FOREGROUND,
|
|
4360
|
+
KEY_PALETTE_SIDEBAR,
|
|
4361
|
+
KEY_PALETTE_SIDEBAR_FOREGROUND,
|
|
4362
|
+
KEY_PALETTE_SUCCESS,
|
|
4363
|
+
KEY_PALETTE_TAG_COLORS,
|
|
4364
|
+
KEY_PALETTE_WARNING,
|
|
4365
|
+
] as const satisfies (keyof Palette)[];
|
|
4366
|
+
|
|
4229
4367
|
export const KEY_PARKING_ACTION_PAYLOAD_DATA_PARKING_REFERENCE = 'parking_reference' satisfies keyof ParkingActionPayloadData;
|
|
4230
4368
|
|
|
4231
4369
|
export const KEYS_PARKING_ACTION_PAYLOAD_DATA = [
|
|
@@ -4538,6 +4676,26 @@ export const KEYS_PREMIUM_PRICING = [
|
|
|
4538
4676
|
KEY_PREMIUM_PRICING_PRICES,
|
|
4539
4677
|
] as const satisfies (keyof PremiumPricing)[];
|
|
4540
4678
|
|
|
4679
|
+
export const KEY_PREVIEW_MAIL_REQ_BRANDING_DOCUMENT = 'branding_document' satisfies keyof PreviewMailReq;
|
|
4680
|
+
export const KEY_PREVIEW_MAIL_REQ_LANGUAGE_CODE = 'language_code' satisfies keyof PreviewMailReq;
|
|
4681
|
+
export const KEY_PREVIEW_MAIL_REQ_TEMPLATE_NAME = 'template_name' satisfies keyof PreviewMailReq;
|
|
4682
|
+
|
|
4683
|
+
export const KEYS_PREVIEW_MAIL_REQ = [
|
|
4684
|
+
KEY_PREVIEW_MAIL_REQ_BRANDING_DOCUMENT,
|
|
4685
|
+
KEY_PREVIEW_MAIL_REQ_LANGUAGE_CODE,
|
|
4686
|
+
KEY_PREVIEW_MAIL_REQ_TEMPLATE_NAME,
|
|
4687
|
+
] as const satisfies (keyof PreviewMailReq)[];
|
|
4688
|
+
|
|
4689
|
+
export const KEY_PREVIEW_MAIL_RES_HTML = 'html' satisfies keyof PreviewMailRes;
|
|
4690
|
+
export const KEY_PREVIEW_MAIL_RES_SUBJECT = 'subject' satisfies keyof PreviewMailRes;
|
|
4691
|
+
export const KEY_PREVIEW_MAIL_RES_TEXT = 'text' satisfies keyof PreviewMailRes;
|
|
4692
|
+
|
|
4693
|
+
export const KEYS_PREVIEW_MAIL_RES = [
|
|
4694
|
+
KEY_PREVIEW_MAIL_RES_HTML,
|
|
4695
|
+
KEY_PREVIEW_MAIL_RES_SUBJECT,
|
|
4696
|
+
KEY_PREVIEW_MAIL_RES_TEXT,
|
|
4697
|
+
] as const satisfies (keyof PreviewMailRes)[];
|
|
4698
|
+
|
|
4541
4699
|
export const KEY_PRICE_INFO_CURRENCY = 'currency' satisfies keyof PriceInfo;
|
|
4542
4700
|
export const KEY_PRICE_INFO_PERIOD = 'period' satisfies keyof PriceInfo;
|
|
4543
4701
|
export const KEY_PRICE_INFO_PRICE = 'price' satisfies keyof PriceInfo;
|
|
@@ -4864,6 +5022,14 @@ export const KEYS_STATUS_TAG = [
|
|
|
4864
5022
|
KEY_STATUS_TAG_TAG_TYPE,
|
|
4865
5023
|
] as const satisfies (keyof StatusTag)[];
|
|
4866
5024
|
|
|
5025
|
+
export const KEY_SUPPORT_EMAIL = 'email' satisfies keyof Support;
|
|
5026
|
+
export const KEY_SUPPORT_URL = 'url' satisfies keyof Support;
|
|
5027
|
+
|
|
5028
|
+
export const KEYS_SUPPORT = [
|
|
5029
|
+
KEY_SUPPORT_EMAIL,
|
|
5030
|
+
KEY_SUPPORT_URL,
|
|
5031
|
+
] as const satisfies (keyof Support)[];
|
|
5032
|
+
|
|
4867
5033
|
export const KEY_TAG_CREATE_COLOR = 'color' satisfies keyof TagCreate;
|
|
4868
5034
|
export const KEY_TAG_CREATE_DESCRIPTION = 'description' satisfies keyof TagCreate;
|
|
4869
5035
|
export const KEY_TAG_CREATE_LABEL = 'label' satisfies keyof TagCreate;
|
|
@@ -4916,6 +5082,20 @@ export const KEYS_TAG_UPDATE = [
|
|
|
4916
5082
|
KEY_TAG_UPDATE_LABEL,
|
|
4917
5083
|
] as const satisfies (keyof TagUpdate)[];
|
|
4918
5084
|
|
|
5085
|
+
export const KEY_THEME_DARK = 'dark' satisfies keyof Theme;
|
|
5086
|
+
export const KEY_THEME_FONT_FAMILY = 'font_family' satisfies keyof Theme;
|
|
5087
|
+
export const KEY_THEME_FONT_URL = 'font_url' satisfies keyof Theme;
|
|
5088
|
+
export const KEY_THEME_LIGHT = 'light' satisfies keyof Theme;
|
|
5089
|
+
export const KEY_THEME_RADIUS = 'radius' satisfies keyof Theme;
|
|
5090
|
+
|
|
5091
|
+
export const KEYS_THEME = [
|
|
5092
|
+
KEY_THEME_DARK,
|
|
5093
|
+
KEY_THEME_FONT_FAMILY,
|
|
5094
|
+
KEY_THEME_FONT_URL,
|
|
5095
|
+
KEY_THEME_LIGHT,
|
|
5096
|
+
KEY_THEME_RADIUS,
|
|
5097
|
+
] as const satisfies (keyof Theme)[];
|
|
5098
|
+
|
|
4919
5099
|
export const KEY_TIME_SERIES_BUCKET_TIMESTAMP = 'timestamp' satisfies keyof TimeSeriesBucket;
|
|
4920
5100
|
export const KEY_TIME_SERIES_BUCKET_TOTAL = 'total' satisfies keyof TimeSeriesBucket;
|
|
4921
5101
|
|
|
@@ -5420,21 +5600,29 @@ export const KEYS_VANITY_NAMESERVER_SET_DTO = [
|
|
|
5420
5600
|
KEY_VANITY_NAMESERVER_SET_DTO_SOA_RNAME,
|
|
5421
5601
|
] as const satisfies (keyof VanityNameserverSetDTO)[];
|
|
5422
5602
|
|
|
5603
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_EXPIRES_ON = 'expires_on' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5604
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_GRACE_PERIOD_ENDS_AT = 'grace_period_ends_at' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5423
5605
|
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_IS_DEFAULT = 'is_default' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5424
5606
|
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_NAME = 'name' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5425
5607
|
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_NAMESERVERS = 'nameservers' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5426
5608
|
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_ORGANIZATION_ID = 'organization_id' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5427
5609
|
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_PARENT_DOMAIN_NAME = 'parent_domain_name' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5610
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_RENEW_SCHEDULED_AT = 'renew_scheduled_at' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5611
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_RENEWAL_MODE = 'renewal_mode' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5428
5612
|
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_SET_ID = 'set_id' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5429
5613
|
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_SOA_RNAME = 'soa_rname' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5430
5614
|
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_STATUS = 'status' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
5431
5615
|
|
|
5432
5616
|
export const KEYS_VANITY_NAMESERVER_SET_SUMMARY_DTO = [
|
|
5617
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_EXPIRES_ON,
|
|
5618
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_GRACE_PERIOD_ENDS_AT,
|
|
5433
5619
|
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_IS_DEFAULT,
|
|
5434
5620
|
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_NAME,
|
|
5435
5621
|
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_NAMESERVERS,
|
|
5436
5622
|
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_ORGANIZATION_ID,
|
|
5437
5623
|
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_PARENT_DOMAIN_NAME,
|
|
5624
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_RENEW_SCHEDULED_AT,
|
|
5625
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_RENEWAL_MODE,
|
|
5438
5626
|
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_SET_ID,
|
|
5439
5627
|
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_SOA_RNAME,
|
|
5440
5628
|
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_STATUS,
|
|
@@ -45,6 +45,7 @@ import type {
|
|
|
45
45
|
OrganizationCreate,
|
|
46
46
|
OrganizationUpdate,
|
|
47
47
|
ParkingSignupRequest,
|
|
48
|
+
PreviewMailReq,
|
|
48
49
|
PublicAuthRequestForm,
|
|
49
50
|
PublicRoleAssignmentRequest,
|
|
50
51
|
TagCreate,
|
|
@@ -1125,5 +1126,13 @@ export type POST_WhitelabelBranding_Request = {
|
|
|
1125
1126
|
};
|
|
1126
1127
|
export type POST_WhitelabelBranding_Request_Body = POST_WhitelabelBranding_Request['requestBody'];
|
|
1127
1128
|
|
|
1129
|
+
export type POST_WhitelabelBrandingEmailPreview_Request = {
|
|
1130
|
+
requestBody: PreviewMailReq;
|
|
1131
|
+
};
|
|
1132
|
+
export type POST_WhitelabelBrandingEmailPreview_Request_Body = POST_WhitelabelBrandingEmailPreview_Request['requestBody'];
|
|
1133
|
+
|
|
1134
|
+
export type GET_WhitelabelBrandingEmailTemplates_Request = {
|
|
1135
|
+
};
|
|
1136
|
+
|
|
1128
1137
|
export type POST_WhitelabelBrandingRecheck_Request = {
|
|
1129
1138
|
};
|
|
@@ -87,6 +87,7 @@ import type {
|
|
|
87
87
|
ParkingSignup,
|
|
88
88
|
ParkingSignupStatus,
|
|
89
89
|
ParkingTotalMetrics,
|
|
90
|
+
PreviewMailRes,
|
|
90
91
|
Problem,
|
|
91
92
|
ProductCreateRes,
|
|
92
93
|
PublicPermissionSet,
|
|
@@ -860,6 +861,10 @@ export type GET_WhitelabelBranding_Response = GET_WhitelabelBranding_Response_20
|
|
|
860
861
|
export type GET_WhitelabelBranding_Response_200 = WhitelabelBranding;
|
|
861
862
|
export type GET_WhitelabelBranding_Response_422 = HTTPValidationError;
|
|
862
863
|
|
|
864
|
+
export type GET_WhitelabelBrandingEmailTemplates_Response = GET_WhitelabelBrandingEmailTemplates_Response_422;
|
|
865
|
+
|
|
866
|
+
export type GET_WhitelabelBrandingEmailTemplates_Response_422 = HTTPValidationError;
|
|
867
|
+
|
|
863
868
|
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;
|
|
864
869
|
|
|
865
870
|
export type PATCH_AiConciergeConversationsByConversationId_Response_200 = Conversation;
|
|
@@ -1354,6 +1359,11 @@ export type POST_WhitelabelBranding_Response = POST_WhitelabelBranding_Response_
|
|
|
1354
1359
|
export type POST_WhitelabelBranding_Response_202 = ProductCreateRes;
|
|
1355
1360
|
export type POST_WhitelabelBranding_Response_422 = HTTPValidationError;
|
|
1356
1361
|
|
|
1362
|
+
export type POST_WhitelabelBrandingEmailPreview_Response = POST_WhitelabelBrandingEmailPreview_Response_200 | POST_WhitelabelBrandingEmailPreview_Response_422;
|
|
1363
|
+
|
|
1364
|
+
export type POST_WhitelabelBrandingEmailPreview_Response_200 = PreviewMailRes;
|
|
1365
|
+
export type POST_WhitelabelBrandingEmailPreview_Response_422 = HTTPValidationError;
|
|
1366
|
+
|
|
1357
1367
|
export type POST_WhitelabelBrandingRecheck_Response = POST_WhitelabelBrandingRecheck_Response_202 | POST_WhitelabelBrandingRecheck_Response_422;
|
|
1358
1368
|
|
|
1359
1369
|
export type POST_WhitelabelBrandingRecheck_Response_202 = WhitelabelBranding;
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export type AllowedNumberOfNameserverBase = components['schemas']['AllowedNumber
|
|
|
10
10
|
export type AssignablePublicRole = components['schemas']['AssignablePublicRole'];
|
|
11
11
|
export type AttributeCondition = components['schemas']['AttributeCondition'];
|
|
12
12
|
export type AttributeType = components['schemas']['AttributeType'];
|
|
13
|
+
export type Auth = components['schemas']['Auth'];
|
|
13
14
|
export type BatchSortField = components['schemas']['BatchSortField'];
|
|
14
15
|
export type BatchStatus = components['schemas']['BatchStatus'];
|
|
15
16
|
export type BillingMetadata = components['schemas']['BillingMetadata'];
|
|
@@ -19,6 +20,8 @@ export type BillingTransactionProductType = components['schemas']['BillingTransa
|
|
|
19
20
|
export type BillingTransaction = components['schemas']['BillingTransactionResponse'];
|
|
20
21
|
export type BillingTransactionSortField = components['schemas']['BillingTransactionSortField'];
|
|
21
22
|
export type BillingTransactionStatus = components['schemas']['BillingTransactionStatus'];
|
|
23
|
+
export type Brand = components['schemas']['Brand'];
|
|
24
|
+
export type BrandingDocument = components['schemas']['BrandingDocument'];
|
|
22
25
|
export type BrowserStatsBucket = components['schemas']['BrowserStatsBucket'];
|
|
23
26
|
export type BulkObjectTagChanges = components['schemas']['BulkObjectTagChanges'];
|
|
24
27
|
export type ClaimsNotice = components['schemas']['ClaimsNotice'];
|
|
@@ -65,6 +68,7 @@ export type ContactVerificationStatus = components['schemas']['ContactVerificati
|
|
|
65
68
|
export type ContactsBase = components['schemas']['ContactsBase'];
|
|
66
69
|
export type ContactsContext = components['schemas']['ContactsContext'];
|
|
67
70
|
export type ContactsContextCreate = components['schemas']['ContactsContextCreate'];
|
|
71
|
+
export type Content = components['schemas']['Content'];
|
|
68
72
|
export type ContextList = components['schemas']['ContextListResponse'];
|
|
69
73
|
export type ContextMeta = components['schemas']['ContextMeta'];
|
|
70
74
|
export type ContextPayload_DomainForward = components['schemas']['ContextPayload_DomainForward_'];
|
|
@@ -295,6 +299,7 @@ export type EventSubtype = components['schemas']['EventSubtype'];
|
|
|
295
299
|
export type EventType = components['schemas']['EventType'];
|
|
296
300
|
export type EventVersion = components['schemas']['EventVersion'];
|
|
297
301
|
export type ExecutingEntity = components['schemas']['ExecutingEntity'];
|
|
302
|
+
export type Footer = components['schemas']['Footer'];
|
|
298
303
|
export type GeneralAvailabilityBase = components['schemas']['GeneralAvailabilityBase'];
|
|
299
304
|
export type GeoStatsBucket = components['schemas']['GeoStatsBucket'];
|
|
300
305
|
export type GetPrices = components['schemas']['GetPricesResponse'];
|
|
@@ -332,6 +337,7 @@ export type JsonValue = components['schemas']['JsonValue'];
|
|
|
332
337
|
export type LaunchPhaseBase = components['schemas']['LaunchPhaseBase'];
|
|
333
338
|
export type LaunchPhaseType = components['schemas']['LaunchPhaseType'];
|
|
334
339
|
export type LaunchPhasesBase = components['schemas']['LaunchPhasesBase'];
|
|
340
|
+
export type Legal = components['schemas']['Legal'];
|
|
335
341
|
export type LegalRequirementBase = components['schemas']['LegalRequirementBase'];
|
|
336
342
|
export type LegalRequirementOperationType = components['schemas']['LegalRequirementOperationType'];
|
|
337
343
|
export type LegalRequirementType = components['schemas']['LegalRequirementType'];
|
|
@@ -339,6 +345,7 @@ export type ListVanityNameserverSetsRes = components['schemas']['ListVanityNames
|
|
|
339
345
|
export type ListZonesReferencingSetRes = components['schemas']['ListZonesReferencingSetRes'];
|
|
340
346
|
export type LocalPresenceBase = components['schemas']['LocalPresenceBase'];
|
|
341
347
|
export type LocalPresenceRequirementType = components['schemas']['LocalPresenceRequirementType'];
|
|
348
|
+
export type Logo = components['schemas']['Logo'];
|
|
342
349
|
export type MemoryFact = components['schemas']['MemoryFact'];
|
|
343
350
|
export type MemoryFactCreateRequest = components['schemas']['MemoryFactCreateRequest'];
|
|
344
351
|
export type MemoryFactKind = components['schemas']['MemoryFactKind'];
|
|
@@ -394,6 +401,7 @@ export type Pagination_Invoice = components['schemas']['Pagination_InvoiceRespon
|
|
|
394
401
|
export type Pagination_Organization = components['schemas']['Pagination_Organization_'];
|
|
395
402
|
export type Pagination_Tag = components['schemas']['Pagination_TagResponse_'];
|
|
396
403
|
export type Pagination_UserPublicWithRole = components['schemas']['Pagination_UserPublicWithRole_'];
|
|
404
|
+
export type Palette = components['schemas']['Palette'];
|
|
397
405
|
export type ParkingActionPayloadData = components['schemas']['ParkingActionPayloadData'];
|
|
398
406
|
export type ParkingAgreementAcceptance = components['schemas']['ParkingAgreementAcceptance'];
|
|
399
407
|
export type ParkingCreateBulkCommand = components['schemas']['ParkingCreateBulkCommand'];
|
|
@@ -437,6 +445,8 @@ export type PremiumPricingAction = components['schemas']['PremiumPricingAction']
|
|
|
437
445
|
export type PremiumPricingRes = components['schemas']['PremiumPricingRes'];
|
|
438
446
|
export type PremiumPricing = components['schemas']['PremiumPricingResponse'];
|
|
439
447
|
export type PremiumSourceType = components['schemas']['PremiumSourceType'];
|
|
448
|
+
export type PreviewMailReq = components['schemas']['PreviewMailReq'];
|
|
449
|
+
export type PreviewMailRes = components['schemas']['PreviewMailRes'];
|
|
440
450
|
export type PriceInfo = components['schemas']['PriceInfo'];
|
|
441
451
|
export type PricingPeriod = components['schemas']['PricingPeriod'];
|
|
442
452
|
export type Problem = components['schemas']['Problem'];
|
|
@@ -466,6 +476,7 @@ export type RegistrarZone = components['schemas']['RegistrarZone'];
|
|
|
466
476
|
export type RegistryHandleAttributeType = components['schemas']['RegistryHandleAttributeType'];
|
|
467
477
|
export type RegistryLockBase = components['schemas']['RegistryLockBase'];
|
|
468
478
|
export type RenewalMode = components['schemas']['RenewalMode'];
|
|
479
|
+
export type RenewalModeDTO = components['schemas']['RenewalModeDTO'];
|
|
469
480
|
export type ReportStatus = components['schemas']['ReportStatus'];
|
|
470
481
|
export type ReportTriggerType = components['schemas']['ReportTriggerType'];
|
|
471
482
|
export type ReportType = components['schemas']['ReportType'];
|
|
@@ -482,6 +493,7 @@ export type StatusCodeStatsBucket = components['schemas']['StatusCodeStatsBucket
|
|
|
482
493
|
export type StatusTag = components['schemas']['StatusTagResponse'];
|
|
483
494
|
export type StatusTagType = components['schemas']['StatusTagType'];
|
|
484
495
|
export type StrictMoneyDecimal = components['schemas']['StrictMoneyDecimal'];
|
|
496
|
+
export type Support = components['schemas']['Support'];
|
|
485
497
|
export type SyncOperationType = components['schemas']['SyncOperationType'];
|
|
486
498
|
export type TLDType = components['schemas']['TLDType'];
|
|
487
499
|
export type TagColor = components['schemas']['TagColor'];
|
|
@@ -492,6 +504,7 @@ export type Tag = components['schemas']['TagResponse'];
|
|
|
492
504
|
export type TagSortField = components['schemas']['TagSortField'];
|
|
493
505
|
export type TagType = components['schemas']['TagType'];
|
|
494
506
|
export type TagUpdate = components['schemas']['TagUpdate'];
|
|
507
|
+
export type Theme = components['schemas']['Theme'];
|
|
495
508
|
export type TimeRange = components['schemas']['TimeRange'];
|
|
496
509
|
export type TimeSeriesBucket = components['schemas']['TimeSeriesBucket'];
|
|
497
510
|
export type TldBase = components['schemas']['TldBase'];
|