@opusdns/api 0.42.0 → 0.44.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 +7 -1
- package/src/openapi.yaml +4 -1
- package/src/schema.d.ts +97 -97
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -538,6 +538,9 @@ export const DNS_RRSET_TYPE = {
|
|
|
538
538
|
TXT: "TXT",
|
|
539
539
|
SOA: "SOA",
|
|
540
540
|
SRV: "SRV",
|
|
541
|
+
SMIMEA: "SMIMEA",
|
|
542
|
+
TLSA: "TLSA",
|
|
543
|
+
URI: "URI",
|
|
541
544
|
} as const satisfies Record<string, DnsRrsetType>;
|
|
542
545
|
|
|
543
546
|
/**
|
|
@@ -574,7 +577,10 @@ export const DNS_RRSET_TYPE_VALUES = [
|
|
|
574
577
|
'PTR',
|
|
575
578
|
'TXT',
|
|
576
579
|
'SOA',
|
|
577
|
-
'SRV'
|
|
580
|
+
'SRV',
|
|
581
|
+
'SMIMEA',
|
|
582
|
+
'TLSA',
|
|
583
|
+
'URI'
|
|
578
584
|
] as const satisfies [string, ...string[]] | DnsRrsetType[];
|
|
579
585
|
|
|
580
586
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -987,6 +987,9 @@ components:
|
|
|
987
987
|
- TXT
|
|
988
988
|
- SOA
|
|
989
989
|
- SRV
|
|
990
|
+
- SMIMEA
|
|
991
|
+
- TLSA
|
|
992
|
+
- URI
|
|
990
993
|
title: DnsRrsetType
|
|
991
994
|
type: string
|
|
992
995
|
DnsRrsetWithOneRecordPatch:
|
|
@@ -5268,7 +5271,7 @@ info:
|
|
|
5268
5271
|
'
|
|
5269
5272
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5270
5273
|
title: OpusDNS API
|
|
5271
|
-
version: 2025-09-
|
|
5274
|
+
version: 2025-09-15-221912
|
|
5272
5275
|
x-logo:
|
|
5273
5276
|
altText: OpusDNS API Reference
|
|
5274
5277
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TypeId } from "typeid-js";
|
|
2
2
|
export interface paths {
|
|
3
3
|
"/v1/auth/client_credentials": {
|
|
4
4
|
parameters: {
|
|
@@ -1268,7 +1268,7 @@ export interface components {
|
|
|
1268
1268
|
* Client Id
|
|
1269
1269
|
* @description The organization ID associated with the credentials.
|
|
1270
1270
|
*/
|
|
1271
|
-
client_id?:
|
|
1271
|
+
client_id?: TypeId<"organization"> | null;
|
|
1272
1272
|
/**
|
|
1273
1273
|
* Client Secret
|
|
1274
1274
|
* @description Client secret for authentication.
|
|
@@ -1386,10 +1386,10 @@ export interface components {
|
|
|
1386
1386
|
* Format: typeid
|
|
1387
1387
|
* @description The contact id of the contact
|
|
1388
1388
|
*/
|
|
1389
|
-
contact_id:
|
|
1389
|
+
contact_id: TypeId<"contact">;
|
|
1390
1390
|
};
|
|
1391
1391
|
ContactIdList: {
|
|
1392
|
-
[key: string]:
|
|
1392
|
+
[key: string]: TypeId<"contact">;
|
|
1393
1393
|
};
|
|
1394
1394
|
/** ContactResponse */
|
|
1395
1395
|
ContactResponse: {
|
|
@@ -1477,7 +1477,7 @@ export interface components {
|
|
|
1477
1477
|
* Contact Id
|
|
1478
1478
|
* Format: typeid
|
|
1479
1479
|
*/
|
|
1480
|
-
contact_id?:
|
|
1480
|
+
contact_id?: TypeId<"contact">;
|
|
1481
1481
|
/**
|
|
1482
1482
|
* Country
|
|
1483
1483
|
* @description The country of the contact
|
|
@@ -1531,7 +1531,7 @@ export interface components {
|
|
|
1531
1531
|
* @description The organization that owns the domain
|
|
1532
1532
|
* @default None
|
|
1533
1533
|
*/
|
|
1534
|
-
organization_id:
|
|
1534
|
+
organization_id: TypeId<"organization">;
|
|
1535
1535
|
/**
|
|
1536
1536
|
* Phone
|
|
1537
1537
|
* Format: phone
|
|
@@ -1577,12 +1577,12 @@ export interface components {
|
|
|
1577
1577
|
* @description The contact that is being verified
|
|
1578
1578
|
* @default None
|
|
1579
1579
|
*/
|
|
1580
|
-
contact_id:
|
|
1580
|
+
contact_id: TypeId<"contact">;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* Contact Verification Id
|
|
1583
1583
|
* Format: typeid
|
|
1584
1584
|
*/
|
|
1585
|
-
contact_verification_id?:
|
|
1585
|
+
contact_verification_id?: TypeId<"contact_verification">;
|
|
1586
1586
|
/**
|
|
1587
1587
|
* Created On
|
|
1588
1588
|
* Format: date-time
|
|
@@ -1626,12 +1626,12 @@ export interface components {
|
|
|
1626
1626
|
* @description The contact that is being verified
|
|
1627
1627
|
* @default None
|
|
1628
1628
|
*/
|
|
1629
|
-
contact_id:
|
|
1629
|
+
contact_id: TypeId<"contact">;
|
|
1630
1630
|
/**
|
|
1631
1631
|
* Contact Verification Id
|
|
1632
1632
|
* Format: typeid
|
|
1633
1633
|
*/
|
|
1634
|
-
contact_verification_id?:
|
|
1634
|
+
contact_verification_id?: TypeId<"contact_verification">;
|
|
1635
1635
|
/**
|
|
1636
1636
|
* Created On
|
|
1637
1637
|
* Format: date-time
|
|
@@ -1670,12 +1670,12 @@ export interface components {
|
|
|
1670
1670
|
* @description The contact that is being verified
|
|
1671
1671
|
* @default None
|
|
1672
1672
|
*/
|
|
1673
|
-
contact_id:
|
|
1673
|
+
contact_id: TypeId<"contact">;
|
|
1674
1674
|
/**
|
|
1675
1675
|
* Contact Verification Id
|
|
1676
1676
|
* Format: typeid
|
|
1677
1677
|
*/
|
|
1678
|
-
contact_verification_id?:
|
|
1678
|
+
contact_verification_id?: TypeId<"contact_verification">;
|
|
1679
1679
|
/**
|
|
1680
1680
|
* Created On
|
|
1681
1681
|
* Format: date-time
|
|
@@ -1878,7 +1878,7 @@ export interface components {
|
|
|
1878
1878
|
* DnsRrsetType
|
|
1879
1879
|
* @enum {string}
|
|
1880
1880
|
*/
|
|
1881
|
-
DnsRrsetType: "A" | "AAAA" | "ALIAS" | "CAA" | "CNAME" | "DNSKEY" | "DS" | "MX" | "NS" | "PTR" | "TXT" | "SOA" | "SRV";
|
|
1881
|
+
DnsRrsetType: "A" | "AAAA" | "ALIAS" | "CAA" | "CNAME" | "DNSKEY" | "DS" | "MX" | "NS" | "PTR" | "TXT" | "SOA" | "SRV" | "SMIMEA" | "TLSA" | "URI";
|
|
1882
1882
|
/** DnsRrsetWithOneRecordPatch */
|
|
1883
1883
|
DnsRrsetWithOneRecordPatch: {
|
|
1884
1884
|
/** Name */
|
|
@@ -2013,7 +2013,7 @@ export interface components {
|
|
|
2013
2013
|
* Format: typeid
|
|
2014
2014
|
* @description The contact id of the contact
|
|
2015
2015
|
*/
|
|
2016
|
-
contact_id:
|
|
2016
|
+
contact_id: TypeId<"contact">;
|
|
2017
2017
|
/** @description The type of contact */
|
|
2018
2018
|
contact_type: components["schemas"]["DomainContactType"];
|
|
2019
2019
|
};
|
|
@@ -2104,14 +2104,14 @@ export interface components {
|
|
|
2104
2104
|
* Domain Dnssec Data Id
|
|
2105
2105
|
* Format: typeid
|
|
2106
2106
|
*/
|
|
2107
|
-
domain_dnssec_data_id?:
|
|
2107
|
+
domain_dnssec_data_id?: TypeId<"domain_dnssec">;
|
|
2108
2108
|
/**
|
|
2109
2109
|
* Domain Id
|
|
2110
2110
|
* Format: typeid
|
|
2111
2111
|
* @description The domain this DNSSEC record belongs to
|
|
2112
2112
|
* @default None
|
|
2113
2113
|
*/
|
|
2114
|
-
domain_id:
|
|
2114
|
+
domain_id: TypeId<"domain">;
|
|
2115
2115
|
/**
|
|
2116
2116
|
* Flags
|
|
2117
2117
|
* @description DNSKEY flags for key records
|
|
@@ -2283,7 +2283,7 @@ export interface components {
|
|
|
2283
2283
|
* Domain Id
|
|
2284
2284
|
* Format: typeid
|
|
2285
2285
|
*/
|
|
2286
|
-
domain_id?:
|
|
2286
|
+
domain_id?: TypeId<"domain">;
|
|
2287
2287
|
/**
|
|
2288
2288
|
* Expires On
|
|
2289
2289
|
* @description When the domain expires
|
|
@@ -2305,7 +2305,7 @@ export interface components {
|
|
|
2305
2305
|
* @description The organization that owns the domain
|
|
2306
2306
|
* @default None
|
|
2307
2307
|
*/
|
|
2308
|
-
owner_id:
|
|
2308
|
+
owner_id: TypeId<"organization">;
|
|
2309
2309
|
/**
|
|
2310
2310
|
* Registered On
|
|
2311
2311
|
* @description When the domain was registered
|
|
@@ -2316,7 +2316,7 @@ export interface components {
|
|
|
2316
2316
|
* Format: typeid
|
|
2317
2317
|
* @default None
|
|
2318
2318
|
*/
|
|
2319
|
-
registry_account_id:
|
|
2319
|
+
registry_account_id: TypeId<"registry_account">;
|
|
2320
2320
|
/**
|
|
2321
2321
|
* Registry Statuses
|
|
2322
2322
|
* @description All the domain statuses
|
|
@@ -2446,7 +2446,7 @@ export interface components {
|
|
|
2446
2446
|
* Format: typeid
|
|
2447
2447
|
* @description The organization ID
|
|
2448
2448
|
*/
|
|
2449
|
-
organization_id:
|
|
2449
|
+
organization_id: TypeId<"organization">;
|
|
2450
2450
|
};
|
|
2451
2451
|
/** DomainTransferIn */
|
|
2452
2452
|
DomainTransferIn: {
|
|
@@ -2553,7 +2553,7 @@ export interface components {
|
|
|
2553
2553
|
* Event Id
|
|
2554
2554
|
* Format: typeid
|
|
2555
2555
|
*/
|
|
2556
|
-
event_id?:
|
|
2556
|
+
event_id?: TypeId<"epp_event">;
|
|
2557
2557
|
/**
|
|
2558
2558
|
* Object Id
|
|
2559
2559
|
* @description The id of the object that the event is about
|
|
@@ -2588,7 +2588,7 @@ export interface components {
|
|
|
2588
2588
|
* Event Id
|
|
2589
2589
|
* Format: typeid
|
|
2590
2590
|
*/
|
|
2591
|
-
event_id?:
|
|
2591
|
+
event_id?: TypeId<"epp_event">;
|
|
2592
2592
|
/**
|
|
2593
2593
|
* Message Queue Id
|
|
2594
2594
|
* @description A composite key with the registry account + message queue ID from the poll operation.
|
|
@@ -2613,14 +2613,14 @@ export interface components {
|
|
|
2613
2613
|
* Source Event Id
|
|
2614
2614
|
* @description The reference of the original registry event (if any) that triggered this customer-facing event
|
|
2615
2615
|
*/
|
|
2616
|
-
source_event_id?:
|
|
2616
|
+
source_event_id?: TypeId<"epp_event"> | null;
|
|
2617
2617
|
/** @description The specific type/result of operation (considering the type property), more detailed (e.g., 'NOTIFICATION' with the 'DOMAIN_MODIFICATION' class) */
|
|
2618
2618
|
subtype?: components["schemas"]["EventSubtype"] | null;
|
|
2619
2619
|
/**
|
|
2620
2620
|
* Target
|
|
2621
2621
|
* @description The target of the event
|
|
2622
2622
|
*/
|
|
2623
|
-
target?:
|
|
2623
|
+
target?: TypeId<"organization"> | null;
|
|
2624
2624
|
/** @description The type of the event - indicates the kind of operation occurring (e.g., 'ACCOUNT_CREATE', 'DOMAIN_MODIFICATION') */
|
|
2625
2625
|
type?: components["schemas"]["EventType"] | null;
|
|
2626
2626
|
};
|
|
@@ -2701,7 +2701,7 @@ export interface components {
|
|
|
2701
2701
|
* Organization Id
|
|
2702
2702
|
* Format: typeid
|
|
2703
2703
|
*/
|
|
2704
|
-
organization_id?:
|
|
2704
|
+
organization_id?: TypeId<"organization">;
|
|
2705
2705
|
};
|
|
2706
2706
|
/** IpRestrictionResponse */
|
|
2707
2707
|
IpRestrictionResponse: {
|
|
@@ -2724,7 +2724,7 @@ export interface components {
|
|
|
2724
2724
|
* Organization Id
|
|
2725
2725
|
* Format: typeid
|
|
2726
2726
|
*/
|
|
2727
|
-
organization_id:
|
|
2727
|
+
organization_id: TypeId<"organization">;
|
|
2728
2728
|
};
|
|
2729
2729
|
/** IpRestrictionUpdate */
|
|
2730
2730
|
IpRestrictionUpdate: {
|
|
@@ -2845,7 +2845,7 @@ export interface components {
|
|
|
2845
2845
|
* Notification Id
|
|
2846
2846
|
* Format: typeid
|
|
2847
2847
|
*/
|
|
2848
|
-
notification_id?:
|
|
2848
|
+
notification_id?: TypeId<"notification">;
|
|
2849
2849
|
/**
|
|
2850
2850
|
* Publish Date
|
|
2851
2851
|
* Format: date-time
|
|
@@ -2934,7 +2934,7 @@ export interface components {
|
|
|
2934
2934
|
* Notification Id
|
|
2935
2935
|
* Format: typeid
|
|
2936
2936
|
*/
|
|
2937
|
-
notification_id?:
|
|
2937
|
+
notification_id?: TypeId<"notification">;
|
|
2938
2938
|
/**
|
|
2939
2939
|
* Publish Date
|
|
2940
2940
|
* Format: date-time
|
|
@@ -3058,12 +3058,12 @@ export interface components {
|
|
|
3058
3058
|
* Format: typeid
|
|
3059
3059
|
* @description Unique identifier for the organization.
|
|
3060
3060
|
*/
|
|
3061
|
-
organization_id?:
|
|
3061
|
+
organization_id?: TypeId<"organization">;
|
|
3062
3062
|
/**
|
|
3063
3063
|
* Parent Organization Id
|
|
3064
3064
|
* @description ID of the parent organization.
|
|
3065
3065
|
*/
|
|
3066
|
-
parent_organization_id?:
|
|
3066
|
+
parent_organization_id?: TypeId<"organization"> | null;
|
|
3067
3067
|
/**
|
|
3068
3068
|
* Postal Code
|
|
3069
3069
|
* @description Postal code of the organization's address.
|
|
@@ -3255,7 +3255,7 @@ export interface components {
|
|
|
3255
3255
|
* Parent Organization Id
|
|
3256
3256
|
* @description ID of the parent organization.
|
|
3257
3257
|
*/
|
|
3258
|
-
parent_organization_id?:
|
|
3258
|
+
parent_organization_id?: TypeId<"organization"> | null;
|
|
3259
3259
|
/**
|
|
3260
3260
|
* Postal Code
|
|
3261
3261
|
* @description Postal code of the organization's address.
|
|
@@ -3299,7 +3299,7 @@ export interface components {
|
|
|
3299
3299
|
* Format: typeid
|
|
3300
3300
|
* @description Unique identifier of the organization credential.
|
|
3301
3301
|
*/
|
|
3302
|
-
api_key_id:
|
|
3302
|
+
api_key_id: TypeId<"api_key">;
|
|
3303
3303
|
/**
|
|
3304
3304
|
* Api Key Name
|
|
3305
3305
|
* @description Name of the organization credential. Only a-z, A-Z, 0-9, underscore, and hyphen are allowed.
|
|
@@ -3326,7 +3326,7 @@ export interface components {
|
|
|
3326
3326
|
* Format: typeid
|
|
3327
3327
|
* @default None
|
|
3328
3328
|
*/
|
|
3329
|
-
organization_id:
|
|
3329
|
+
organization_id: TypeId<"organization">;
|
|
3330
3330
|
/** @description The status of the organization credential. */
|
|
3331
3331
|
readonly status: components["schemas"]["OrganizationCredentialStatus"];
|
|
3332
3332
|
};
|
|
@@ -3337,7 +3337,7 @@ export interface components {
|
|
|
3337
3337
|
* Format: typeid
|
|
3338
3338
|
* @description Unique identifier of the organization credential.
|
|
3339
3339
|
*/
|
|
3340
|
-
api_key:
|
|
3340
|
+
api_key: TypeId<"api_key">;
|
|
3341
3341
|
/**
|
|
3342
3342
|
* Api Key Description
|
|
3343
3343
|
* @description Description of the organization credential.
|
|
@@ -3353,7 +3353,7 @@ export interface components {
|
|
|
3353
3353
|
* Format: typeid
|
|
3354
3354
|
* @default None
|
|
3355
3355
|
*/
|
|
3356
|
-
client_id:
|
|
3356
|
+
client_id: TypeId<"organization">;
|
|
3357
3357
|
/**
|
|
3358
3358
|
* Client Secret
|
|
3359
3359
|
* @description Plaintext secret to be hashed (not stored directly in the DB).
|
|
@@ -3539,12 +3539,12 @@ export interface components {
|
|
|
3539
3539
|
* Format: typeid
|
|
3540
3540
|
* @description Unique identifier for the organization.
|
|
3541
3541
|
*/
|
|
3542
|
-
organization_id?:
|
|
3542
|
+
organization_id?: TypeId<"organization">;
|
|
3543
3543
|
/**
|
|
3544
3544
|
* Parent Organization Id
|
|
3545
3545
|
* @description ID of the parent organization.
|
|
3546
3546
|
*/
|
|
3547
|
-
parent_organization_id?:
|
|
3547
|
+
parent_organization_id?: TypeId<"organization"> | null;
|
|
3548
3548
|
/**
|
|
3549
3549
|
* Postal Code
|
|
3550
3550
|
* @description Postal code of the organization's address.
|
|
@@ -4121,7 +4121,7 @@ export interface components {
|
|
|
4121
4121
|
* @description The user's organization id
|
|
4122
4122
|
* @default None
|
|
4123
4123
|
*/
|
|
4124
|
-
organization_id:
|
|
4124
|
+
organization_id: TypeId<"organization">;
|
|
4125
4125
|
/**
|
|
4126
4126
|
* Phone
|
|
4127
4127
|
* @description The user's phone number
|
|
@@ -4138,7 +4138,7 @@ export interface components {
|
|
|
4138
4138
|
* User Id
|
|
4139
4139
|
* Format: typeid
|
|
4140
4140
|
*/
|
|
4141
|
-
user_id?:
|
|
4141
|
+
user_id?: TypeId<"user">;
|
|
4142
4142
|
/**
|
|
4143
4143
|
* Username
|
|
4144
4144
|
* @description The user's unique username
|
|
@@ -4231,7 +4231,7 @@ export interface components {
|
|
|
4231
4231
|
* @description Unique identifier for the notification
|
|
4232
4232
|
* @default None
|
|
4233
4233
|
*/
|
|
4234
|
-
notification_id:
|
|
4234
|
+
notification_id: TypeId<"notification">;
|
|
4235
4235
|
/**
|
|
4236
4236
|
* @description Whether the user has read the notification
|
|
4237
4237
|
* @default unread
|
|
@@ -4248,12 +4248,12 @@ export interface components {
|
|
|
4248
4248
|
* Format: typeid
|
|
4249
4249
|
* @default None
|
|
4250
4250
|
*/
|
|
4251
|
-
user_id:
|
|
4251
|
+
user_id: TypeId<"user">;
|
|
4252
4252
|
/**
|
|
4253
4253
|
* User Notification Id
|
|
4254
4254
|
* Format: typeid
|
|
4255
4255
|
*/
|
|
4256
|
-
user_notification_id?:
|
|
4256
|
+
user_notification_id?: TypeId<"user_notification">;
|
|
4257
4257
|
};
|
|
4258
4258
|
/**
|
|
4259
4259
|
* UserNotificationStatus
|
|
@@ -4272,7 +4272,7 @@ export interface components {
|
|
|
4272
4272
|
* User Notification Id
|
|
4273
4273
|
* Format: typeid
|
|
4274
4274
|
*/
|
|
4275
|
-
user_notification_id?:
|
|
4275
|
+
user_notification_id?: TypeId<"user_notification">;
|
|
4276
4276
|
};
|
|
4277
4277
|
/** UserPasswordResetEmailResponse */
|
|
4278
4278
|
UserPasswordResetEmailResponse: {
|
|
@@ -4379,12 +4379,12 @@ export interface components {
|
|
|
4379
4379
|
* @description The user's id
|
|
4380
4380
|
* @default None
|
|
4381
4381
|
*/
|
|
4382
|
-
user_id:
|
|
4382
|
+
user_id: TypeId<"user">;
|
|
4383
4383
|
/**
|
|
4384
4384
|
* User Verification Id
|
|
4385
4385
|
* Format: typeid
|
|
4386
4386
|
*/
|
|
4387
|
-
user_verification_id?:
|
|
4387
|
+
user_verification_id?: TypeId<"user_verification">;
|
|
4388
4388
|
/**
|
|
4389
4389
|
* Verified On
|
|
4390
4390
|
* @description The date the verification was verified
|
|
@@ -4423,12 +4423,12 @@ export interface components {
|
|
|
4423
4423
|
* @description The user's id
|
|
4424
4424
|
* @default None
|
|
4425
4425
|
*/
|
|
4426
|
-
user_id:
|
|
4426
|
+
user_id: TypeId<"user">;
|
|
4427
4427
|
/**
|
|
4428
4428
|
* User Verification Id
|
|
4429
4429
|
* Format: typeid
|
|
4430
4430
|
*/
|
|
4431
|
-
user_verification_id?:
|
|
4431
|
+
user_verification_id?: TypeId<"user_verification">;
|
|
4432
4432
|
/**
|
|
4433
4433
|
* Verified On
|
|
4434
4434
|
* @description The date the verification was verified
|
|
@@ -4467,12 +4467,12 @@ export interface components {
|
|
|
4467
4467
|
* @description The user's id
|
|
4468
4468
|
* @default None
|
|
4469
4469
|
*/
|
|
4470
|
-
user_id:
|
|
4470
|
+
user_id: TypeId<"user">;
|
|
4471
4471
|
/**
|
|
4472
4472
|
* User Verification Id
|
|
4473
4473
|
* Format: typeid
|
|
4474
4474
|
*/
|
|
4475
|
-
user_verification_id?:
|
|
4475
|
+
user_verification_id?: TypeId<"user_verification">;
|
|
4476
4476
|
/**
|
|
4477
4477
|
* Verified On
|
|
4478
4478
|
* @description The date the verification was verified
|
|
@@ -4516,7 +4516,7 @@ export interface components {
|
|
|
4516
4516
|
* @description The user's organization id
|
|
4517
4517
|
* @default None
|
|
4518
4518
|
*/
|
|
4519
|
-
organization_id:
|
|
4519
|
+
organization_id: TypeId<"organization">;
|
|
4520
4520
|
/**
|
|
4521
4521
|
* Phone
|
|
4522
4522
|
* @description The user's phone number
|
|
@@ -4540,7 +4540,7 @@ export interface components {
|
|
|
4540
4540
|
* User Id
|
|
4541
4541
|
* Format: typeid
|
|
4542
4542
|
*/
|
|
4543
|
-
user_id?:
|
|
4543
|
+
user_id?: TypeId<"user">;
|
|
4544
4544
|
/**
|
|
4545
4545
|
* Username
|
|
4546
4546
|
* @description The user's unique username
|
|
@@ -4584,7 +4584,7 @@ export interface components {
|
|
|
4584
4584
|
* @description The user's organization id
|
|
4585
4585
|
* @default None
|
|
4586
4586
|
*/
|
|
4587
|
-
organization_id:
|
|
4587
|
+
organization_id: TypeId<"organization">;
|
|
4588
4588
|
/** Permissions */
|
|
4589
4589
|
permissions?: components["schemas"]["Permission"][] | null;
|
|
4590
4590
|
/**
|
|
@@ -4612,7 +4612,7 @@ export interface components {
|
|
|
4612
4612
|
* User Id
|
|
4613
4613
|
* Format: typeid
|
|
4614
4614
|
*/
|
|
4615
|
-
user_id?:
|
|
4615
|
+
user_id?: TypeId<"user">;
|
|
4616
4616
|
/**
|
|
4617
4617
|
* Username
|
|
4618
4618
|
* @description The user's unique username
|
|
@@ -4777,7 +4777,7 @@ export interface operations {
|
|
|
4777
4777
|
query?: never;
|
|
4778
4778
|
header?: never;
|
|
4779
4779
|
path: {
|
|
4780
|
-
api_key_id:
|
|
4780
|
+
api_key_id: TypeId<"api_key">;
|
|
4781
4781
|
};
|
|
4782
4782
|
cookie?: never;
|
|
4783
4783
|
};
|
|
@@ -5377,7 +5377,7 @@ export interface operations {
|
|
|
5377
5377
|
query?: never;
|
|
5378
5378
|
header?: never;
|
|
5379
5379
|
path: {
|
|
5380
|
-
contact_id:
|
|
5380
|
+
contact_id: TypeId<"contact">;
|
|
5381
5381
|
};
|
|
5382
5382
|
cookie?: never;
|
|
5383
5383
|
};
|
|
@@ -5425,7 +5425,7 @@ export interface operations {
|
|
|
5425
5425
|
query?: never;
|
|
5426
5426
|
header?: never;
|
|
5427
5427
|
path: {
|
|
5428
|
-
contact_id:
|
|
5428
|
+
contact_id: TypeId<"contact">;
|
|
5429
5429
|
};
|
|
5430
5430
|
cookie?: never;
|
|
5431
5431
|
};
|
|
@@ -5514,7 +5514,7 @@ export interface operations {
|
|
|
5514
5514
|
query?: never;
|
|
5515
5515
|
header?: never;
|
|
5516
5516
|
path: {
|
|
5517
|
-
contact_id:
|
|
5517
|
+
contact_id: TypeId<"contact">;
|
|
5518
5518
|
};
|
|
5519
5519
|
cookie?: never;
|
|
5520
5520
|
};
|
|
@@ -5580,7 +5580,7 @@ export interface operations {
|
|
|
5580
5580
|
};
|
|
5581
5581
|
header?: never;
|
|
5582
5582
|
path: {
|
|
5583
|
-
contact_id:
|
|
5583
|
+
contact_id: TypeId<"contact">;
|
|
5584
5584
|
};
|
|
5585
5585
|
cookie?: never;
|
|
5586
5586
|
};
|
|
@@ -5669,7 +5669,7 @@ export interface operations {
|
|
|
5669
5669
|
};
|
|
5670
5670
|
header?: never;
|
|
5671
5671
|
path: {
|
|
5672
|
-
contact_id:
|
|
5672
|
+
contact_id: TypeId<"contact">;
|
|
5673
5673
|
};
|
|
5674
5674
|
cookie?: never;
|
|
5675
5675
|
};
|
|
@@ -5749,7 +5749,7 @@ export interface operations {
|
|
|
5749
5749
|
query?: never;
|
|
5750
5750
|
header?: never;
|
|
5751
5751
|
path: {
|
|
5752
|
-
contact_id:
|
|
5752
|
+
contact_id: TypeId<"contact">;
|
|
5753
5753
|
};
|
|
5754
5754
|
cookie?: never;
|
|
5755
5755
|
};
|
|
@@ -6476,7 +6476,7 @@ export interface operations {
|
|
|
6476
6476
|
query?: never;
|
|
6477
6477
|
header?: never;
|
|
6478
6478
|
path: {
|
|
6479
|
-
domain_reference:
|
|
6479
|
+
domain_reference: TypeId<"domain"> | string;
|
|
6480
6480
|
};
|
|
6481
6481
|
cookie?: never;
|
|
6482
6482
|
};
|
|
@@ -6524,7 +6524,7 @@ export interface operations {
|
|
|
6524
6524
|
query?: never;
|
|
6525
6525
|
header?: never;
|
|
6526
6526
|
path: {
|
|
6527
|
-
domain_reference:
|
|
6527
|
+
domain_reference: TypeId<"domain"> | string;
|
|
6528
6528
|
};
|
|
6529
6529
|
cookie?: never;
|
|
6530
6530
|
};
|
|
@@ -6588,7 +6588,7 @@ export interface operations {
|
|
|
6588
6588
|
query?: never;
|
|
6589
6589
|
header?: never;
|
|
6590
6590
|
path: {
|
|
6591
|
-
domain_reference:
|
|
6591
|
+
domain_reference: TypeId<"domain"> | string;
|
|
6592
6592
|
};
|
|
6593
6593
|
cookie?: never;
|
|
6594
6594
|
};
|
|
@@ -6632,7 +6632,7 @@ export interface operations {
|
|
|
6632
6632
|
query?: never;
|
|
6633
6633
|
header?: never;
|
|
6634
6634
|
path: {
|
|
6635
|
-
domain_reference:
|
|
6635
|
+
domain_reference: TypeId<"domain"> | string;
|
|
6636
6636
|
};
|
|
6637
6637
|
cookie?: never;
|
|
6638
6638
|
};
|
|
@@ -6680,7 +6680,7 @@ export interface operations {
|
|
|
6680
6680
|
query?: never;
|
|
6681
6681
|
header?: never;
|
|
6682
6682
|
path: {
|
|
6683
|
-
domain_reference:
|
|
6683
|
+
domain_reference: TypeId<"domain"> | string;
|
|
6684
6684
|
};
|
|
6685
6685
|
cookie?: never;
|
|
6686
6686
|
};
|
|
@@ -6732,7 +6732,7 @@ export interface operations {
|
|
|
6732
6732
|
query?: never;
|
|
6733
6733
|
header?: never;
|
|
6734
6734
|
path: {
|
|
6735
|
-
domain_reference:
|
|
6735
|
+
domain_reference: TypeId<"domain"> | string;
|
|
6736
6736
|
};
|
|
6737
6737
|
cookie?: never;
|
|
6738
6738
|
};
|
|
@@ -6778,7 +6778,7 @@ export interface operations {
|
|
|
6778
6778
|
query?: never;
|
|
6779
6779
|
header?: never;
|
|
6780
6780
|
path: {
|
|
6781
|
-
domain_reference:
|
|
6781
|
+
domain_reference: TypeId<"domain"> | string;
|
|
6782
6782
|
};
|
|
6783
6783
|
cookie?: never;
|
|
6784
6784
|
};
|
|
@@ -6824,7 +6824,7 @@ export interface operations {
|
|
|
6824
6824
|
query?: never;
|
|
6825
6825
|
header?: never;
|
|
6826
6826
|
path: {
|
|
6827
|
-
domain_reference:
|
|
6827
|
+
domain_reference: TypeId<"domain"> | string;
|
|
6828
6828
|
};
|
|
6829
6829
|
cookie?: never;
|
|
6830
6830
|
};
|
|
@@ -6872,7 +6872,7 @@ export interface operations {
|
|
|
6872
6872
|
query?: never;
|
|
6873
6873
|
header?: never;
|
|
6874
6874
|
path: {
|
|
6875
|
-
domain_reference:
|
|
6875
|
+
domain_reference: TypeId<"domain"> | string;
|
|
6876
6876
|
};
|
|
6877
6877
|
cookie?: never;
|
|
6878
6878
|
};
|
|
@@ -6907,7 +6907,7 @@ export interface operations {
|
|
|
6907
6907
|
query?: never;
|
|
6908
6908
|
header?: never;
|
|
6909
6909
|
path: {
|
|
6910
|
-
domain_reference:
|
|
6910
|
+
domain_reference: TypeId<"domain"> | string;
|
|
6911
6911
|
};
|
|
6912
6912
|
cookie?: never;
|
|
6913
6913
|
};
|
|
@@ -7277,7 +7277,7 @@ export interface operations {
|
|
|
7277
7277
|
query?: never;
|
|
7278
7278
|
header?: never;
|
|
7279
7279
|
path: {
|
|
7280
|
-
event_id:
|
|
7280
|
+
event_id: TypeId<"epp_event">;
|
|
7281
7281
|
};
|
|
7282
7282
|
cookie?: never;
|
|
7283
7283
|
};
|
|
@@ -7341,7 +7341,7 @@ export interface operations {
|
|
|
7341
7341
|
query?: never;
|
|
7342
7342
|
header?: never;
|
|
7343
7343
|
path: {
|
|
7344
|
-
event_id:
|
|
7344
|
+
event_id: TypeId<"epp_event">;
|
|
7345
7345
|
};
|
|
7346
7346
|
cookie?: never;
|
|
7347
7347
|
};
|
|
@@ -7401,7 +7401,7 @@ export interface operations {
|
|
|
7401
7401
|
list_notifications_v1_notifications_get: {
|
|
7402
7402
|
parameters: {
|
|
7403
7403
|
query: {
|
|
7404
|
-
user_id:
|
|
7404
|
+
user_id: TypeId<"user">;
|
|
7405
7405
|
page?: number;
|
|
7406
7406
|
page_size?: number;
|
|
7407
7407
|
};
|
|
@@ -7467,11 +7467,11 @@ export interface operations {
|
|
|
7467
7467
|
get_notification_v1_notifications__notification_id__get: {
|
|
7468
7468
|
parameters: {
|
|
7469
7469
|
query: {
|
|
7470
|
-
user_id:
|
|
7470
|
+
user_id: TypeId<"user">;
|
|
7471
7471
|
};
|
|
7472
7472
|
header?: never;
|
|
7473
7473
|
path: {
|
|
7474
|
-
notification_id:
|
|
7474
|
+
notification_id: TypeId<"notification">;
|
|
7475
7475
|
};
|
|
7476
7476
|
cookie?: never;
|
|
7477
7477
|
};
|
|
@@ -7502,7 +7502,7 @@ export interface operations {
|
|
|
7502
7502
|
query?: never;
|
|
7503
7503
|
header?: never;
|
|
7504
7504
|
path: {
|
|
7505
|
-
notification_id:
|
|
7505
|
+
notification_id: TypeId<"notification">;
|
|
7506
7506
|
};
|
|
7507
7507
|
cookie?: never;
|
|
7508
7508
|
};
|
|
@@ -7537,7 +7537,7 @@ export interface operations {
|
|
|
7537
7537
|
query?: never;
|
|
7538
7538
|
header?: never;
|
|
7539
7539
|
path: {
|
|
7540
|
-
notification_id:
|
|
7540
|
+
notification_id: TypeId<"notification">;
|
|
7541
7541
|
};
|
|
7542
7542
|
cookie?: never;
|
|
7543
7543
|
};
|
|
@@ -7568,7 +7568,7 @@ export interface operations {
|
|
|
7568
7568
|
query?: never;
|
|
7569
7569
|
header?: never;
|
|
7570
7570
|
path: {
|
|
7571
|
-
notification_id:
|
|
7571
|
+
notification_id: TypeId<"notification">;
|
|
7572
7572
|
};
|
|
7573
7573
|
cookie?: never;
|
|
7574
7574
|
};
|
|
@@ -7662,7 +7662,7 @@ export interface operations {
|
|
|
7662
7662
|
get_attributes_v1_organizations_attributes_get: {
|
|
7663
7663
|
parameters: {
|
|
7664
7664
|
query?: {
|
|
7665
|
-
organization_id?:
|
|
7665
|
+
organization_id?: TypeId<"organization"> | null;
|
|
7666
7666
|
/** @description Optional list of attribute keys to filter */
|
|
7667
7667
|
keys?: string[] | null;
|
|
7668
7668
|
};
|
|
@@ -7695,7 +7695,7 @@ export interface operations {
|
|
|
7695
7695
|
update_attributes_v1_organizations_attributes_patch: {
|
|
7696
7696
|
parameters: {
|
|
7697
7697
|
query?: {
|
|
7698
|
-
organization_id?:
|
|
7698
|
+
organization_id?: TypeId<"organization"> | null;
|
|
7699
7699
|
};
|
|
7700
7700
|
header?: never;
|
|
7701
7701
|
path?: never;
|
|
@@ -7735,7 +7735,7 @@ export interface operations {
|
|
|
7735
7735
|
};
|
|
7736
7736
|
header?: never;
|
|
7737
7737
|
path: {
|
|
7738
|
-
organization_id:
|
|
7738
|
+
organization_id: TypeId<"organization"> | null;
|
|
7739
7739
|
};
|
|
7740
7740
|
cookie?: never;
|
|
7741
7741
|
};
|
|
@@ -7766,7 +7766,7 @@ export interface operations {
|
|
|
7766
7766
|
query?: never;
|
|
7767
7767
|
header?: never;
|
|
7768
7768
|
path: {
|
|
7769
|
-
organization_id:
|
|
7769
|
+
organization_id: TypeId<"organization"> | null;
|
|
7770
7770
|
};
|
|
7771
7771
|
cookie?: never;
|
|
7772
7772
|
};
|
|
@@ -8001,7 +8001,7 @@ export interface operations {
|
|
|
8001
8001
|
query?: never;
|
|
8002
8002
|
header?: never;
|
|
8003
8003
|
path: {
|
|
8004
|
-
organization_id:
|
|
8004
|
+
organization_id: TypeId<"organization">;
|
|
8005
8005
|
};
|
|
8006
8006
|
cookie?: never;
|
|
8007
8007
|
};
|
|
@@ -8032,7 +8032,7 @@ export interface operations {
|
|
|
8032
8032
|
query?: never;
|
|
8033
8033
|
header?: never;
|
|
8034
8034
|
path: {
|
|
8035
|
-
organization_id:
|
|
8035
|
+
organization_id: TypeId<"organization">;
|
|
8036
8036
|
};
|
|
8037
8037
|
cookie?: never;
|
|
8038
8038
|
};
|
|
@@ -8061,7 +8061,7 @@ export interface operations {
|
|
|
8061
8061
|
query?: never;
|
|
8062
8062
|
header?: never;
|
|
8063
8063
|
path: {
|
|
8064
|
-
organization_id:
|
|
8064
|
+
organization_id: TypeId<"organization">;
|
|
8065
8065
|
};
|
|
8066
8066
|
cookie?: never;
|
|
8067
8067
|
};
|
|
@@ -8096,7 +8096,7 @@ export interface operations {
|
|
|
8096
8096
|
query?: never;
|
|
8097
8097
|
header?: never;
|
|
8098
8098
|
path: {
|
|
8099
|
-
organization_id:
|
|
8099
|
+
organization_id: TypeId<"organization">;
|
|
8100
8100
|
};
|
|
8101
8101
|
cookie?: never;
|
|
8102
8102
|
};
|
|
@@ -8130,7 +8130,7 @@ export interface operations {
|
|
|
8130
8130
|
};
|
|
8131
8131
|
header?: never;
|
|
8132
8132
|
path: {
|
|
8133
|
-
organization_id:
|
|
8133
|
+
organization_id: TypeId<"organization">;
|
|
8134
8134
|
product_type: components["schemas"]["BillingTransactionProductType"];
|
|
8135
8135
|
};
|
|
8136
8136
|
cookie?: never;
|
|
@@ -8625,7 +8625,7 @@ export interface operations {
|
|
|
8625
8625
|
};
|
|
8626
8626
|
header?: never;
|
|
8627
8627
|
path: {
|
|
8628
|
-
user_id:
|
|
8628
|
+
user_id: TypeId<"user">;
|
|
8629
8629
|
};
|
|
8630
8630
|
cookie?: never;
|
|
8631
8631
|
};
|
|
@@ -8656,7 +8656,7 @@ export interface operations {
|
|
|
8656
8656
|
query?: never;
|
|
8657
8657
|
header?: never;
|
|
8658
8658
|
path: {
|
|
8659
|
-
user_id:
|
|
8659
|
+
user_id: TypeId<"user">;
|
|
8660
8660
|
};
|
|
8661
8661
|
cookie?: never;
|
|
8662
8662
|
};
|
|
@@ -8701,7 +8701,7 @@ export interface operations {
|
|
|
8701
8701
|
query?: never;
|
|
8702
8702
|
header?: never;
|
|
8703
8703
|
path: {
|
|
8704
|
-
user_id:
|
|
8704
|
+
user_id: TypeId<"user">;
|
|
8705
8705
|
};
|
|
8706
8706
|
cookie?: never;
|
|
8707
8707
|
};
|
|
@@ -8736,7 +8736,7 @@ export interface operations {
|
|
|
8736
8736
|
query?: never;
|
|
8737
8737
|
header?: never;
|
|
8738
8738
|
path: {
|
|
8739
|
-
user_id:
|
|
8739
|
+
user_id: TypeId<"user">;
|
|
8740
8740
|
};
|
|
8741
8741
|
cookie?: never;
|
|
8742
8742
|
};
|
|
@@ -8767,7 +8767,7 @@ export interface operations {
|
|
|
8767
8767
|
query?: never;
|
|
8768
8768
|
header?: never;
|
|
8769
8769
|
path: {
|
|
8770
|
-
user_id:
|
|
8770
|
+
user_id: TypeId<"user">;
|
|
8771
8771
|
};
|
|
8772
8772
|
cookie?: never;
|
|
8773
8773
|
};
|
|
@@ -8798,7 +8798,7 @@ export interface operations {
|
|
|
8798
8798
|
query?: never;
|
|
8799
8799
|
header?: never;
|
|
8800
8800
|
path: {
|
|
8801
|
-
user_id:
|
|
8801
|
+
user_id: TypeId<"user">;
|
|
8802
8802
|
};
|
|
8803
8803
|
cookie?: never;
|
|
8804
8804
|
};
|
|
@@ -8833,7 +8833,7 @@ export interface operations {
|
|
|
8833
8833
|
query?: never;
|
|
8834
8834
|
header?: never;
|
|
8835
8835
|
path: {
|
|
8836
|
-
user_id:
|
|
8836
|
+
user_id: TypeId<"user">;
|
|
8837
8837
|
};
|
|
8838
8838
|
cookie?: never;
|
|
8839
8839
|
};
|
|
@@ -8882,7 +8882,7 @@ export interface operations {
|
|
|
8882
8882
|
};
|
|
8883
8883
|
header?: never;
|
|
8884
8884
|
path: {
|
|
8885
|
-
user_id:
|
|
8885
|
+
user_id: TypeId<"user">;
|
|
8886
8886
|
};
|
|
8887
8887
|
cookie?: never;
|
|
8888
8888
|
};
|
|
@@ -8961,7 +8961,7 @@ export interface operations {
|
|
|
8961
8961
|
query?: never;
|
|
8962
8962
|
header?: never;
|
|
8963
8963
|
path: {
|
|
8964
|
-
user_id:
|
|
8964
|
+
user_id: TypeId<"user">;
|
|
8965
8965
|
};
|
|
8966
8966
|
cookie?: never;
|
|
8967
8967
|
};
|
|
@@ -9008,7 +9008,7 @@ export interface operations {
|
|
|
9008
9008
|
};
|
|
9009
9009
|
header?: never;
|
|
9010
9010
|
path: {
|
|
9011
|
-
user_id:
|
|
9011
|
+
user_id: TypeId<"user">;
|
|
9012
9012
|
};
|
|
9013
9013
|
cookie?: never;
|
|
9014
9014
|
};
|