@wix/domains 1.0.16 → 1.0.18

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/domains",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -19,11 +19,11 @@
19
19
  ],
20
20
  "dependencies": {
21
21
  "@wix/domains_connected-domain-setup-info": "1.0.3",
22
- "@wix/domains_connected-domains": "1.0.5",
22
+ "@wix/domains_connected-domains": "1.0.7",
23
23
  "@wix/domains_domain-availability": "1.0.2",
24
24
  "@wix/domains_domain-dns": "1.0.2",
25
- "@wix/domains_domain-suggestions": "1.0.6",
26
- "@wix/domains_registered-domains": "1.0.4"
25
+ "@wix/domains_domain-suggestions": "1.0.7",
26
+ "@wix/domains_registered-domains": "1.0.5"
27
27
  },
28
28
  "devDependencies": {
29
29
  "glob": "^10.4.1",
@@ -47,5 +47,5 @@
47
47
  "fqdn": ""
48
48
  }
49
49
  },
50
- "falconPackageHash": "a43673407ebc5e1b8f3f9038bda336f42744e0810994d330ee40edcd"
50
+ "falconPackageHash": "cc944a65d440fe44d55613a961a415816b3bc8c8bf8c664d5d94e5c5"
51
51
  }
@@ -48,15 +48,17 @@ declare function createEventModule<T extends EventDefinition<any, string>>(event
48
48
 
49
49
  declare const createConnectedDomain: ReturnType<typeof createRESTModule$5<typeof publicCreateConnectedDomain>>;
50
50
  declare const getConnectedDomain: ReturnType<typeof createRESTModule$5<typeof publicGetConnectedDomain>>;
51
+ declare const deleteConnectedDomain: ReturnType<typeof createRESTModule$5<typeof publicDeleteConnectedDomain>>;
51
52
  declare const listConnectedDomains: ReturnType<typeof createRESTModule$5<typeof publicListConnectedDomains>>;
52
53
  declare const onConnectedDomainRemoved: ReturnType<typeof createEventModule<typeof publicOnConnectedDomainRemoved>>;
53
54
 
54
55
  declare const context$5_createConnectedDomain: typeof createConnectedDomain;
56
+ declare const context$5_deleteConnectedDomain: typeof deleteConnectedDomain;
55
57
  declare const context$5_getConnectedDomain: typeof getConnectedDomain;
56
58
  declare const context$5_listConnectedDomains: typeof listConnectedDomains;
57
59
  declare const context$5_onConnectedDomainRemoved: typeof onConnectedDomainRemoved;
58
60
  declare namespace context$5 {
59
- export { context$5_createConnectedDomain as createConnectedDomain, context$5_getConnectedDomain as getConnectedDomain, context$5_listConnectedDomains as listConnectedDomains, context$5_onConnectedDomainRemoved as onConnectedDomainRemoved };
61
+ export { context$5_createConnectedDomain as createConnectedDomain, context$5_deleteConnectedDomain as deleteConnectedDomain, context$5_getConnectedDomain as getConnectedDomain, context$5_listConnectedDomains as listConnectedDomains, context$5_onConnectedDomainRemoved as onConnectedDomainRemoved };
60
62
  }
61
63
 
62
64
  declare function createRESTModule$4<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
@@ -125,7 +125,7 @@ interface GetConnectedDomainResponse {
125
125
  }
126
126
  interface DeleteConnectedDomainRequest {
127
127
  /** ID of the connected domain to delete. Identical to the domain name including TLD. */
128
- connectedDomainId?: string;
128
+ connectedDomainId: string;
129
129
  }
130
130
  interface DeleteConnectedDomainResponse {
131
131
  }
@@ -159,7 +159,7 @@ interface ListConnectedDomainsResponse {
159
159
  interface CursorPagingMetadata$2 {
160
160
  /** Number of domains returned in the response. */
161
161
  count?: number | null;
162
- /** Offset that was requested. */
162
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
163
163
  cursors?: Cursors$2;
164
164
  /**
165
165
  * Indicates if there are more results after the current page.
@@ -226,7 +226,7 @@ interface DomainEventBodyOneOf$2 {
226
226
  interface EntityCreatedEvent$2 {
227
227
  entity?: string;
228
228
  }
229
- interface RestoreInfo {
229
+ interface RestoreInfo$1 {
230
230
  deletedDate?: Date;
231
231
  }
232
232
  interface EntityUpdatedEvent$2 {
@@ -453,6 +453,7 @@ declare function getConnectedDomain(httpClient: HttpClient): (connectedDomainId:
453
453
  suppressNotifications: boolean;
454
454
  dnsPropagationStatus: DnsPropagationStatus$1;
455
455
  }>;
456
+ declare function deleteConnectedDomain(httpClient: HttpClient): (connectedDomainId: string) => Promise<void>;
456
457
  declare function listConnectedDomains(httpClient: HttpClient): (options?: ListConnectedDomainsOptions) => Promise<ListConnectedDomainsResponse & ListConnectedDomainsResponseNonNullableFields>;
457
458
  declare const onConnectedDomainRemoved: EventDefinition<ConnectedDomainRemovedEnvelope, "wix.premium.domains.v1.connected_domain_removed">;
458
459
 
@@ -472,13 +473,13 @@ type index_d$5_ListConnectedDomainsOptions = ListConnectedDomainsOptions;
472
473
  type index_d$5_ListConnectedDomainsRequest = ListConnectedDomainsRequest;
473
474
  type index_d$5_ListConnectedDomainsResponse = ListConnectedDomainsResponse;
474
475
  type index_d$5_ListConnectedDomainsResponseNonNullableFields = ListConnectedDomainsResponseNonNullableFields;
475
- type index_d$5_RestoreInfo = RestoreInfo;
476
476
  declare const index_d$5_createConnectedDomain: typeof createConnectedDomain;
477
+ declare const index_d$5_deleteConnectedDomain: typeof deleteConnectedDomain;
477
478
  declare const index_d$5_getConnectedDomain: typeof getConnectedDomain;
478
479
  declare const index_d$5_listConnectedDomains: typeof listConnectedDomains;
479
480
  declare const index_d$5_onConnectedDomainRemoved: typeof onConnectedDomainRemoved;
480
481
  declare namespace index_d$5 {
481
- export { type ActionEvent$2 as ActionEvent, AssignmentType$1 as AssignmentType, type index_d$5_BaseEventMetadata as BaseEventMetadata, type index_d$5_ConnectedDomain as ConnectedDomain, type index_d$5_ConnectedDomainRemovedEnvelope as ConnectedDomainRemovedEnvelope, ConnectionType$1 as ConnectionType, type index_d$5_CreateConnectedDomainRequest as CreateConnectedDomainRequest, type index_d$5_CreateConnectedDomainResponse as CreateConnectedDomainResponse, type index_d$5_CreateConnectedDomainResponseNonNullableFields as CreateConnectedDomainResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type Cursors$2 as Cursors, type index_d$5_DeleteConnectedDomainRequest as DeleteConnectedDomainRequest, type index_d$5_DeleteConnectedDomainResponse as DeleteConnectedDomainResponse, DnsPropagationStatus$1 as DnsPropagationStatus, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DomainRemovedEvent$1 as DomainRemovedEvent, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$5_EventMetadata as EventMetadata, type index_d$5_GetConnectedDomainRequest as GetConnectedDomainRequest, type index_d$5_GetConnectedDomainResponse as GetConnectedDomainResponse, type index_d$5_GetConnectedDomainResponseNonNullableFields as GetConnectedDomainResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$5_ListConnectedDomainsOptions as ListConnectedDomainsOptions, type index_d$5_ListConnectedDomainsRequest as ListConnectedDomainsRequest, type index_d$5_ListConnectedDomainsResponse as ListConnectedDomainsResponse, type index_d$5_ListConnectedDomainsResponseNonNullableFields as ListConnectedDomainsResponseNonNullableFields, type MessageEnvelope$2 as MessageEnvelope, type RedirectAssignmentInfo$1 as RedirectAssignmentInfo, type index_d$5_RestoreInfo as RestoreInfo, type SiteInfo$1 as SiteInfo, type SiteInfoAssignmentInfoOneOf$1 as SiteInfoAssignmentInfoOneOf, WebhookIdentityType$2 as WebhookIdentityType, __metadata$5 as __metadata, index_d$5_createConnectedDomain as createConnectedDomain, index_d$5_getConnectedDomain as getConnectedDomain, index_d$5_listConnectedDomains as listConnectedDomains, index_d$5_onConnectedDomainRemoved as onConnectedDomainRemoved };
482
+ export { type ActionEvent$2 as ActionEvent, AssignmentType$1 as AssignmentType, type index_d$5_BaseEventMetadata as BaseEventMetadata, type index_d$5_ConnectedDomain as ConnectedDomain, type index_d$5_ConnectedDomainRemovedEnvelope as ConnectedDomainRemovedEnvelope, ConnectionType$1 as ConnectionType, type index_d$5_CreateConnectedDomainRequest as CreateConnectedDomainRequest, type index_d$5_CreateConnectedDomainResponse as CreateConnectedDomainResponse, type index_d$5_CreateConnectedDomainResponseNonNullableFields as CreateConnectedDomainResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type Cursors$2 as Cursors, type index_d$5_DeleteConnectedDomainRequest as DeleteConnectedDomainRequest, type index_d$5_DeleteConnectedDomainResponse as DeleteConnectedDomainResponse, DnsPropagationStatus$1 as DnsPropagationStatus, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DomainRemovedEvent$1 as DomainRemovedEvent, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$5_EventMetadata as EventMetadata, type index_d$5_GetConnectedDomainRequest as GetConnectedDomainRequest, type index_d$5_GetConnectedDomainResponse as GetConnectedDomainResponse, type index_d$5_GetConnectedDomainResponseNonNullableFields as GetConnectedDomainResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$5_ListConnectedDomainsOptions as ListConnectedDomainsOptions, type index_d$5_ListConnectedDomainsRequest as ListConnectedDomainsRequest, type index_d$5_ListConnectedDomainsResponse as ListConnectedDomainsResponse, type index_d$5_ListConnectedDomainsResponseNonNullableFields as ListConnectedDomainsResponseNonNullableFields, type MessageEnvelope$2 as MessageEnvelope, type RedirectAssignmentInfo$1 as RedirectAssignmentInfo, type RestoreInfo$1 as RestoreInfo, type SiteInfo$1 as SiteInfo, type SiteInfoAssignmentInfoOneOf$1 as SiteInfoAssignmentInfoOneOf, WebhookIdentityType$2 as WebhookIdentityType, __metadata$5 as __metadata, index_d$5_createConnectedDomain as createConnectedDomain, index_d$5_deleteConnectedDomain as deleteConnectedDomain, index_d$5_getConnectedDomain as getConnectedDomain, index_d$5_listConnectedDomains as listConnectedDomains, index_d$5_onConnectedDomainRemoved as onConnectedDomainRemoved };
482
483
  }
483
484
 
484
485
  /**
@@ -1512,7 +1513,7 @@ interface ListRegisteredDomainsResponse {
1512
1513
  interface CursorPagingMetadata$1 {
1513
1514
  /** Number of domains returned in the response. */
1514
1515
  count?: number | null;
1515
- /** Offset that was requested. */
1516
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
1516
1517
  cursors?: Cursors$1;
1517
1518
  /**
1518
1519
  * Indicates if there are more results after the current page.
@@ -1596,6 +1597,9 @@ interface DomainEventBodyOneOf {
1596
1597
  interface EntityCreatedEvent {
1597
1598
  entity?: string;
1598
1599
  }
1600
+ interface RestoreInfo {
1601
+ deletedDate?: Date;
1602
+ }
1599
1603
  interface EntityUpdatedEvent {
1600
1604
  /**
1601
1605
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -2074,6 +2078,7 @@ type index_d$2_RedeemRegisteredDomainResponseNonNullableFields = RedeemRegistere
2074
2078
  type index_d$2_RedirectAssignmentInfo = RedirectAssignmentInfo;
2075
2079
  type index_d$2_RegisteredDomain = RegisteredDomain;
2076
2080
  type index_d$2_RegisteredDomainStatusInfoOneOf = RegisteredDomainStatusInfoOneOf;
2081
+ type index_d$2_RestoreInfo = RestoreInfo;
2077
2082
  type index_d$2_SiteInfo = SiteInfo;
2078
2083
  type index_d$2_SiteInfoAssignmentInfoOneOf = SiteInfoAssignmentInfoOneOf;
2079
2084
  type index_d$2_Status = Status;
@@ -2085,7 +2090,7 @@ declare const index_d$2_getRegisteredDomain: typeof getRegisteredDomain;
2085
2090
  declare const index_d$2_listRegisteredDomains: typeof listRegisteredDomains;
2086
2091
  declare const index_d$2_redeemRegisteredDomain: typeof redeemRegisteredDomain;
2087
2092
  declare namespace index_d$2 {
2088
- export { type index_d$2_ActionEvent as ActionEvent, index_d$2_AssignmentType as AssignmentType, type index_d$2_ContactData as ContactData, type index_d$2_Contacts as Contacts, type index_d$2_CreateRegisteredDomainRequest as CreateRegisteredDomainRequest, type index_d$2_CreateRegisteredDomainResponse as CreateRegisteredDomainResponse, type index_d$2_CreateRegisteredDomainResponseNonNullableFields as CreateRegisteredDomainResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type Cursors$1 as Cursors, type index_d$2_DeleteRegisteredDomainByIdRequest as DeleteRegisteredDomainByIdRequest, type index_d$2_DeleteRegisteredDomainByIdResponse as DeleteRegisteredDomainByIdResponse, index_d$2_DnsPropagationStatus as DnsPropagationStatus, type index_d$2_DomainEvent as DomainEvent, type index_d$2_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d$2_EntityCreatedEvent as EntityCreatedEvent, type index_d$2_EntityDeletedEvent as EntityDeletedEvent, type index_d$2_EntityUpdatedEvent as EntityUpdatedEvent, type index_d$2_Expired as Expired, type index_d$2_FailedRegistrationInfo as FailedRegistrationInfo, index_d$2_FailureCode as FailureCode, type index_d$2_GetRegisteredDomainRequest as GetRegisteredDomainRequest, type index_d$2_GetRegisteredDomainResponse as GetRegisteredDomainResponse, type index_d$2_GetRegisteredDomainResponseNonNullableFields as GetRegisteredDomainResponseNonNullableFields, index_d$2_ICANNConfirmationStatus as ICANNConfirmationStatus, type index_d$2_ICANNConfirmationStatusInfo as ICANNConfirmationStatusInfo, type index_d$2_ICANNConfirmationStatusInfoStatusOneOf as ICANNConfirmationStatusInfoStatusOneOf, type index_d$2_IdentificationData as IdentificationData, type index_d$2_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d$2_LatestAttempt as LatestAttempt, type index_d$2_ListRegisteredDomainsOptions as ListRegisteredDomainsOptions, type index_d$2_ListRegisteredDomainsRequest as ListRegisteredDomainsRequest, type index_d$2_ListRegisteredDomainsResponse as ListRegisteredDomainsResponse, type index_d$2_ListRegisteredDomainsResponseNonNullableFields as ListRegisteredDomainsResponseNonNullableFields, type index_d$2_MessageEnvelope as MessageEnvelope, type index_d$2_Pending as Pending, type index_d$2_PendingRegistrationInfo as PendingRegistrationInfo, type index_d$2_RedeemRegisteredDomainRequest as RedeemRegisteredDomainRequest, type index_d$2_RedeemRegisteredDomainResponse as RedeemRegisteredDomainResponse, type index_d$2_RedeemRegisteredDomainResponseNonNullableFields as RedeemRegisteredDomainResponseNonNullableFields, type index_d$2_RedirectAssignmentInfo as RedirectAssignmentInfo, type index_d$2_RegisteredDomain as RegisteredDomain, type index_d$2_RegisteredDomainStatusInfoOneOf as RegisteredDomainStatusInfoOneOf, type index_d$2_SiteInfo as SiteInfo, type index_d$2_SiteInfoAssignmentInfoOneOf as SiteInfoAssignmentInfoOneOf, index_d$2_Status as Status, index_d$2_WebhookIdentityType as WebhookIdentityType, __metadata$2 as __metadata, index_d$2_createRegisteredDomain as createRegisteredDomain, index_d$2_getRegisteredDomain as getRegisteredDomain, index_d$2_listRegisteredDomains as listRegisteredDomains, index_d$2_redeemRegisteredDomain as redeemRegisteredDomain };
2093
+ export { type index_d$2_ActionEvent as ActionEvent, index_d$2_AssignmentType as AssignmentType, type index_d$2_ContactData as ContactData, type index_d$2_Contacts as Contacts, type index_d$2_CreateRegisteredDomainRequest as CreateRegisteredDomainRequest, type index_d$2_CreateRegisteredDomainResponse as CreateRegisteredDomainResponse, type index_d$2_CreateRegisteredDomainResponseNonNullableFields as CreateRegisteredDomainResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type Cursors$1 as Cursors, type index_d$2_DeleteRegisteredDomainByIdRequest as DeleteRegisteredDomainByIdRequest, type index_d$2_DeleteRegisteredDomainByIdResponse as DeleteRegisteredDomainByIdResponse, index_d$2_DnsPropagationStatus as DnsPropagationStatus, type index_d$2_DomainEvent as DomainEvent, type index_d$2_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d$2_EntityCreatedEvent as EntityCreatedEvent, type index_d$2_EntityDeletedEvent as EntityDeletedEvent, type index_d$2_EntityUpdatedEvent as EntityUpdatedEvent, type index_d$2_Expired as Expired, type index_d$2_FailedRegistrationInfo as FailedRegistrationInfo, index_d$2_FailureCode as FailureCode, type index_d$2_GetRegisteredDomainRequest as GetRegisteredDomainRequest, type index_d$2_GetRegisteredDomainResponse as GetRegisteredDomainResponse, type index_d$2_GetRegisteredDomainResponseNonNullableFields as GetRegisteredDomainResponseNonNullableFields, index_d$2_ICANNConfirmationStatus as ICANNConfirmationStatus, type index_d$2_ICANNConfirmationStatusInfo as ICANNConfirmationStatusInfo, type index_d$2_ICANNConfirmationStatusInfoStatusOneOf as ICANNConfirmationStatusInfoStatusOneOf, type index_d$2_IdentificationData as IdentificationData, type index_d$2_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d$2_LatestAttempt as LatestAttempt, type index_d$2_ListRegisteredDomainsOptions as ListRegisteredDomainsOptions, type index_d$2_ListRegisteredDomainsRequest as ListRegisteredDomainsRequest, type index_d$2_ListRegisteredDomainsResponse as ListRegisteredDomainsResponse, type index_d$2_ListRegisteredDomainsResponseNonNullableFields as ListRegisteredDomainsResponseNonNullableFields, type index_d$2_MessageEnvelope as MessageEnvelope, type index_d$2_Pending as Pending, type index_d$2_PendingRegistrationInfo as PendingRegistrationInfo, type index_d$2_RedeemRegisteredDomainRequest as RedeemRegisteredDomainRequest, type index_d$2_RedeemRegisteredDomainResponse as RedeemRegisteredDomainResponse, type index_d$2_RedeemRegisteredDomainResponseNonNullableFields as RedeemRegisteredDomainResponseNonNullableFields, type index_d$2_RedirectAssignmentInfo as RedirectAssignmentInfo, type index_d$2_RegisteredDomain as RegisteredDomain, type index_d$2_RegisteredDomainStatusInfoOneOf as RegisteredDomainStatusInfoOneOf, type index_d$2_RestoreInfo as RestoreInfo, type index_d$2_SiteInfo as SiteInfo, type index_d$2_SiteInfoAssignmentInfoOneOf as SiteInfoAssignmentInfoOneOf, index_d$2_Status as Status, index_d$2_WebhookIdentityType as WebhookIdentityType, __metadata$2 as __metadata, index_d$2_createRegisteredDomain as createRegisteredDomain, index_d$2_getRegisteredDomain as getRegisteredDomain, index_d$2_listRegisteredDomains as listRegisteredDomains, index_d$2_redeemRegisteredDomain as redeemRegisteredDomain };
2089
2094
  }
2090
2095
 
2091
2096
  interface DomainAvailability {
@@ -2162,13 +2167,13 @@ interface SuggestDomainsRequest {
2162
2167
  * Min: `1`
2163
2168
  * Max: `20`
2164
2169
  * Default: `10`
2165
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead
2170
+ * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2166
2171
  * @deprecated Number of domain suggestions to return.
2167
2172
  *
2168
2173
  * Min: `1`
2169
2174
  * Max: `20`
2170
2175
  * Default: `10`
2171
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead
2176
+ * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2172
2177
  * @replacedBy paging.limit
2173
2178
  * @targetRemovalDate 2025-03-01
2174
2179
  */
@@ -2202,7 +2207,7 @@ interface SuggestDomainsResponse {
2202
2207
  interface CursorPagingMetadata {
2203
2208
  /** Number of domains returned in the response. */
2204
2209
  count?: number | null;
2205
- /** Offset that was requested. */
2210
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
2206
2211
  cursors?: Cursors;
2207
2212
  /**
2208
2213
  * Indicates if there are more results after the current page.
@@ -2239,13 +2244,13 @@ interface SuggestDomainsOptions {
2239
2244
  * Min: `1`
2240
2245
  * Max: `20`
2241
2246
  * Default: `10`
2242
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead
2247
+ * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2243
2248
  * @deprecated Number of domain suggestions to return.
2244
2249
  *
2245
2250
  * Min: `1`
2246
2251
  * Max: `20`
2247
2252
  * Default: `10`
2248
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead
2253
+ * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2249
2254
  * @replacedBy paging.limit
2250
2255
  * @targetRemovalDate 2025-03-01
2251
2256
  */
@@ -116,6 +116,12 @@ interface GetConnectedDomainResponse$1 {
116
116
  /** Retrieved connected domain. */
117
117
  connectedDomain?: ConnectedDomain$1;
118
118
  }
119
+ interface DeleteConnectedDomainRequest$1 {
120
+ /** ID of the connected domain to delete. Identical to the domain name including TLD. */
121
+ connectedDomainId: string;
122
+ }
123
+ interface DeleteConnectedDomainResponse$1 {
124
+ }
119
125
  interface ListConnectedDomainsRequest$1 {
120
126
  /** Cursor paging options. */
121
127
  paging?: CursorPaging$5;
@@ -146,7 +152,7 @@ interface ListConnectedDomainsResponse$1 {
146
152
  interface CursorPagingMetadata$5 {
147
153
  /** Number of domains returned in the response. */
148
154
  count?: number | null;
149
- /** Offset that was requested. */
155
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
150
156
  cursors?: Cursors$5;
151
157
  /**
152
158
  * Indicates if there are more results after the current page.
@@ -325,6 +331,12 @@ interface GetConnectedDomainResponse {
325
331
  /** Retrieved connected domain. */
326
332
  connectedDomain?: ConnectedDomain;
327
333
  }
334
+ interface DeleteConnectedDomainRequest {
335
+ /** ID of the connected domain to delete. Identical to the domain name including TLD. */
336
+ connectedDomainId: string;
337
+ }
338
+ interface DeleteConnectedDomainResponse {
339
+ }
328
340
  interface ListConnectedDomainsRequest {
329
341
  /** Cursor paging options. */
330
342
  paging?: CursorPaging$4;
@@ -355,7 +367,7 @@ interface ListConnectedDomainsResponse {
355
367
  interface CursorPagingMetadata$4 {
356
368
  /** Number of domains returned in the response. */
357
369
  count?: number | null;
358
- /** Offset that was requested. */
370
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
359
371
  cursors?: Cursors$4;
360
372
  /**
361
373
  * Indicates if there are more results after the current page.
@@ -430,13 +442,17 @@ declare function createConnectedDomain(): __PublicMethodMetaInfo$5<'POST', {}, C
430
442
  declare function getConnectedDomain(): __PublicMethodMetaInfo$5<'GET', {
431
443
  connectedDomainId: string;
432
444
  }, GetConnectedDomainRequest, GetConnectedDomainRequest$1, GetConnectedDomainResponse & GetConnectedDomainResponseNonNullableFields, GetConnectedDomainResponse$1 & GetConnectedDomainResponseNonNullableFields$1>;
445
+ declare function deleteConnectedDomain(): __PublicMethodMetaInfo$5<'DELETE', {
446
+ connectedDomainId: string;
447
+ }, DeleteConnectedDomainRequest, DeleteConnectedDomainRequest$1, DeleteConnectedDomainResponse, DeleteConnectedDomainResponse$1>;
433
448
  declare function listConnectedDomains(): __PublicMethodMetaInfo$5<'GET', {}, ListConnectedDomainsRequest, ListConnectedDomainsRequest$1, ListConnectedDomainsResponse & ListConnectedDomainsResponseNonNullableFields, ListConnectedDomainsResponse$1 & ListConnectedDomainsResponseNonNullableFields$1>;
434
449
 
435
450
  declare const meta$5_createConnectedDomain: typeof createConnectedDomain;
451
+ declare const meta$5_deleteConnectedDomain: typeof deleteConnectedDomain;
436
452
  declare const meta$5_getConnectedDomain: typeof getConnectedDomain;
437
453
  declare const meta$5_listConnectedDomains: typeof listConnectedDomains;
438
454
  declare namespace meta$5 {
439
- export { type __PublicMethodMetaInfo$5 as __PublicMethodMetaInfo, meta$5_createConnectedDomain as createConnectedDomain, meta$5_getConnectedDomain as getConnectedDomain, meta$5_listConnectedDomains as listConnectedDomains };
455
+ export { type __PublicMethodMetaInfo$5 as __PublicMethodMetaInfo, meta$5_createConnectedDomain as createConnectedDomain, meta$5_deleteConnectedDomain as deleteConnectedDomain, meta$5_getConnectedDomain as getConnectedDomain, meta$5_listConnectedDomains as listConnectedDomains };
440
456
  }
441
457
 
442
458
  /**
@@ -1626,7 +1642,7 @@ interface ListRegisteredDomainsResponse$1 {
1626
1642
  interface CursorPagingMetadata$3 {
1627
1643
  /** Number of domains returned in the response. */
1628
1644
  count?: number | null;
1629
- /** Offset that was requested. */
1645
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
1630
1646
  cursors?: Cursors$3;
1631
1647
  /**
1632
1648
  * Indicates if there are more results after the current page.
@@ -2338,7 +2354,7 @@ interface ListRegisteredDomainsResponse {
2338
2354
  interface CursorPagingMetadata$2 {
2339
2355
  /** Number of domains returned in the response. */
2340
2356
  count?: number | null;
2341
- /** Offset that was requested. */
2357
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
2342
2358
  cursors?: Cursors$2;
2343
2359
  /**
2344
2360
  * Indicates if there are more results after the current page.
@@ -2748,13 +2764,13 @@ interface SuggestDomainsRequest$1 {
2748
2764
  * Min: `1`
2749
2765
  * Max: `20`
2750
2766
  * Default: `10`
2751
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead
2767
+ * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2752
2768
  * @deprecated Number of domain suggestions to return.
2753
2769
  *
2754
2770
  * Min: `1`
2755
2771
  * Max: `20`
2756
2772
  * Default: `10`
2757
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead
2773
+ * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2758
2774
  * @replacedBy paging.limit
2759
2775
  * @targetRemovalDate 2025-03-01
2760
2776
  */
@@ -2788,7 +2804,7 @@ interface SuggestDomainsResponse$1 {
2788
2804
  interface CursorPagingMetadata$1 {
2789
2805
  /** Number of domains returned in the response. */
2790
2806
  count?: number | null;
2791
- /** Offset that was requested. */
2807
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
2792
2808
  cursors?: Cursors$1;
2793
2809
  /**
2794
2810
  * Indicates if there are more results after the current page.
@@ -2838,13 +2854,13 @@ interface SuggestDomainsRequest {
2838
2854
  * Min: `1`
2839
2855
  * Max: `20`
2840
2856
  * Default: `10`
2841
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead
2857
+ * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2842
2858
  * @deprecated Number of domain suggestions to return.
2843
2859
  *
2844
2860
  * Min: `1`
2845
2861
  * Max: `20`
2846
2862
  * Default: `10`
2847
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead
2863
+ * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2848
2864
  * @replacedBy paging.limit
2849
2865
  * @targetRemovalDate 2025-03-01
2850
2866
  */
@@ -2878,7 +2894,7 @@ interface SuggestDomainsResponse {
2878
2894
  interface CursorPagingMetadata {
2879
2895
  /** Number of domains returned in the response. */
2880
2896
  count?: number | null;
2881
- /** Offset that was requested. */
2897
+ /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
2882
2898
  cursors?: Cursors;
2883
2899
  /**
2884
2900
  * Indicates if there are more results after the current page.