vercel-api-js 1.22.3 → 1.22.5

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.
@@ -1781,6 +1781,23 @@ const resolveUrl = (url, queryParams = {})=>{
1781
1781
  });
1782
1782
  return data;
1783
1783
  }
1784
+ /**
1785
+ * @summary Get Domain Availability and Pricing
1786
+ * @description Start domain research here. Get registration availability and pricing for 1–200 exact domain names. Returns results in input order, with registration and renewal prices in USD for available domains. No authentication required.
1787
+ * @link /v1/registrar/domains/search
1788
+ */ async function searchDomains({ queryParams, config } = {}) {
1789
+ const { client: request = client, ...requestConfig } = config ?? {};
1790
+ const data = await request({
1791
+ method: "POST",
1792
+ url: `/v1/registrar/domains/search`,
1793
+ queryParams,
1794
+ ...requestConfig,
1795
+ headers: {
1796
+ ...requestConfig.headers
1797
+ }
1798
+ });
1799
+ return data;
1800
+ }
1784
1801
  /**
1785
1802
  * @summary Get supported TLDs
1786
1803
  * @description Get a list of TLDs supported by Vercel
@@ -1912,23 +1929,6 @@ const resolveUrl = (url, queryParams = {})=>{
1912
1929
  });
1913
1930
  return data;
1914
1931
  }
1915
- /**
1916
- * @summary Check domain availability and pricing
1917
- * @description Check registration availability for 1–200 exact domain names, such as `example.com`. Returns results in input order, with registration and renewal prices in USD for available domains. No authentication required.
1918
- * @link /v1/registrar/domains/search
1919
- */ async function searchDomains({ queryParams, config } = {}) {
1920
- const { client: request = client, ...requestConfig } = config ?? {};
1921
- const data = await request({
1922
- method: "POST",
1923
- url: `/v1/registrar/domains/search`,
1924
- queryParams,
1925
- ...requestConfig,
1926
- headers: {
1927
- ...requestConfig.headers
1928
- }
1929
- });
1930
- return data;
1931
- }
1932
1932
  /**
1933
1933
  * @summary Get contact info schema
1934
1934
  * @description Some TLDs require additional contact information. Use this endpoint to get the schema for the tld-specific contact information for a domain.
@@ -4162,15 +4162,17 @@ const resolveUrl = (url, queryParams = {})=>{
4162
4162
  return data;
4163
4163
  }
4164
4164
  /**
4165
- * @summary List issuers
4166
- * @description Retrieve the list of KMS issuers that belong to the authenticated team. The results are paginated.
4167
- * @link /v1/kms/issuers
4168
- */ async function listKmsIssuers({ queryParams, config } = {}) {
4165
+ * @summary Sign a message
4166
+ * @description Sign a raw message with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign. The response `signature` is standard-base64 of the raw signature over the decoded message bytes. `keyId` and `algorithm` identify the signing key in the issuer's JWKS.
4167
+ * @link /v1/kms/issuers/{issuerId}/sign/message
4168
+ */ async function signKmsMessage({ pathParams, config } = {}) {
4169
4169
  const { client: request = client, ...requestConfig } = config ?? {};
4170
+ if (!pathParams.issuerId) {
4171
+ throw new Error(`Missing required path parameter: issuerId`);
4172
+ }
4170
4173
  const data = await request({
4171
- method: "GET",
4172
- url: `/v1/kms/issuers`,
4173
- queryParams,
4174
+ method: "POST",
4175
+ url: `/v1/kms/issuers/${pathParams.issuerId}/sign/message`,
4174
4176
  ...requestConfig,
4175
4177
  headers: {
4176
4178
  ...requestConfig.headers
@@ -4179,15 +4181,17 @@ const resolveUrl = (url, queryParams = {})=>{
4179
4181
  return data;
4180
4182
  }
4181
4183
  /**
4182
- * @summary Create an issuer
4183
- * @description Create a new KMS issuer for the authenticated team. An issuer owns the asymmetric signing keys that are used to sign tokens and messages.
4184
- * @link /v1/kms/issuers
4185
- */ async function createKmsIssuer({ queryParams, config } = {}) {
4184
+ * @summary Sign a token
4185
+ * @description Sign a JWT with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign.
4186
+ * @link /v1/kms/issuers/{issuerId}/sign/token
4187
+ */ async function signKmsToken({ pathParams, config } = {}) {
4186
4188
  const { client: request = client, ...requestConfig } = config ?? {};
4189
+ if (!pathParams.issuerId) {
4190
+ throw new Error(`Missing required path parameter: issuerId`);
4191
+ }
4187
4192
  const data = await request({
4188
4193
  method: "POST",
4189
- url: `/v1/kms/issuers`,
4190
- queryParams,
4194
+ url: `/v1/kms/issuers/${pathParams.issuerId}/sign/token`,
4191
4195
  ...requestConfig,
4192
4196
  headers: {
4193
4197
  ...requestConfig.headers
@@ -4196,17 +4200,15 @@ const resolveUrl = (url, queryParams = {})=>{
4196
4200
  return data;
4197
4201
  }
4198
4202
  /**
4199
- * @summary Sign a message
4200
- * @description Sign a raw message with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign. The response `signature` is standard-base64 of the raw signature over the decoded message bytes. `keyId` and `algorithm` identify the signing key in the issuer's JWKS.
4201
- * @link /v1/kms/issuers/{issuerId}/sign/message
4202
- */ async function signKmsMessage({ pathParams, config } = {}) {
4203
+ * @summary List issuers
4204
+ * @description Retrieve the list of KMS issuers that belong to the authenticated team. The results are paginated.
4205
+ * @link /v1/kms/issuers
4206
+ */ async function listKmsIssuers({ queryParams, config } = {}) {
4203
4207
  const { client: request = client, ...requestConfig } = config ?? {};
4204
- if (!pathParams.issuerId) {
4205
- throw new Error(`Missing required path parameter: issuerId`);
4206
- }
4207
4208
  const data = await request({
4208
- method: "POST",
4209
- url: `/v1/kms/issuers/${pathParams.issuerId}/sign/message`,
4209
+ method: "GET",
4210
+ url: `/v1/kms/issuers`,
4211
+ queryParams,
4210
4212
  ...requestConfig,
4211
4213
  headers: {
4212
4214
  ...requestConfig.headers
@@ -4215,17 +4217,15 @@ const resolveUrl = (url, queryParams = {})=>{
4215
4217
  return data;
4216
4218
  }
4217
4219
  /**
4218
- * @summary Sign a token
4219
- * @description Sign a JWT with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign.
4220
- * @link /v1/kms/issuers/{issuerId}/sign/token
4221
- */ async function signKmsToken({ pathParams, config } = {}) {
4220
+ * @summary Create an issuer
4221
+ * @description Create a new KMS issuer for the authenticated team. An issuer owns the asymmetric signing keys that are used to sign tokens and messages.
4222
+ * @link /v1/kms/issuers
4223
+ */ async function createKmsIssuer({ queryParams, config } = {}) {
4222
4224
  const { client: request = client, ...requestConfig } = config ?? {};
4223
- if (!pathParams.issuerId) {
4224
- throw new Error(`Missing required path parameter: issuerId`);
4225
- }
4226
4225
  const data = await request({
4227
4226
  method: "POST",
4228
- url: `/v1/kms/issuers/${pathParams.issuerId}/sign/token`,
4227
+ url: `/v1/kms/issuers`,
4228
+ queryParams,
4229
4229
  ...requestConfig,
4230
4230
  headers: {
4231
4231
  ...requestConfig.headers
@@ -8386,6 +8386,7 @@ const operationsByPath = {
8386
8386
  "PUT /domains/{domain}/records": replaceDomainsByDomainRecords,
8387
8387
  "GET /domains/records/{recordId}": getDomainsRecordsByRecordId,
8388
8388
  "DELETE /v2/domains/{domain}/records/{recordId}": removeRecord,
8389
+ "POST /v1/registrar/domains/search": searchDomains,
8389
8390
  "GET /v1/registrar/tlds/supported": getSupportedTlds,
8390
8391
  "GET /v1/registrar/tlds/{tld}": getTld,
8391
8392
  "GET /v1/registrar/tlds/{tld}/price": getTldPrice,
@@ -8393,7 +8394,6 @@ const operationsByPath = {
8393
8394
  "GET /v1/registrar/domains/{domain}/price": getDomainPrice,
8394
8395
  "POST /v1/registrar/domains/price": getBulkPrice,
8395
8396
  "POST /v1/registrar/domains/availability": getBulkAvailability,
8396
- "POST /v1/registrar/domains/search": searchDomains,
8397
8397
  "GET /v1/registrar/domains/{domain}/contact-info/schema": getContactInfoSchema,
8398
8398
  "GET /v1/registrar/domains/{domain}/auth-code": getDomainAuthCode,
8399
8399
  "POST /v1/registrar/domains/{domain}/buy": buySingleDomain,
@@ -8507,10 +8507,10 @@ const operationsByPath = {
8507
8507
  "POST /v2/integrations/log-drains": createLogDrain,
8508
8508
  "DELETE /v1/integrations/log-drains/{id}": deleteIntegrationLogDrain,
8509
8509
  "POST /api-keys": createApiKeys,
8510
- "GET /v1/kms/issuers": listKmsIssuers,
8511
- "POST /v1/kms/issuers": createKmsIssuer,
8512
8510
  "POST /v1/kms/issuers/{issuerId}/sign/message": signKmsMessage,
8513
8511
  "POST /v1/kms/issuers/{issuerId}/sign/token": signKmsToken,
8512
+ "GET /v1/kms/issuers": listKmsIssuers,
8513
+ "POST /v1/kms/issuers": createKmsIssuer,
8514
8514
  "POST /v1/kms/issuers/{issuerId}/keys": createKmsSigningKey,
8515
8515
  "POST /v1/kms/issuers/{issuerId}/keys/{keyId}/activate": activateKmsSigningKey,
8516
8516
  "POST /v1/kms/issuers/{issuerId}/keys/{keyId}/revoke": revokeKmsSigningKey,
@@ -8844,6 +8844,7 @@ const operationsByTag = {
8844
8844
  removeRecord
8845
8845
  },
8846
8846
  domainsRegistrar: {
8847
+ searchDomains,
8847
8848
  getSupportedTlds,
8848
8849
  getTld,
8849
8850
  getTldPrice,
@@ -8851,7 +8852,6 @@ const operationsByTag = {
8851
8852
  getDomainPrice,
8852
8853
  getBulkPrice,
8853
8854
  getBulkAvailability,
8854
- searchDomains,
8855
8855
  getContactInfoSchema,
8856
8856
  getDomainAuthCode,
8857
8857
  buySingleDomain,
@@ -8995,10 +8995,10 @@ const operationsByTag = {
8995
8995
  deleteAuthToken
8996
8996
  },
8997
8997
  kms: {
8998
- listKmsIssuers,
8999
- createKmsIssuer,
9000
8998
  signKmsMessage,
9001
8999
  signKmsToken,
9000
+ listKmsIssuers,
9001
+ createKmsIssuer,
9002
9002
  createKmsSigningKey,
9003
9003
  activateKmsSigningKey,
9004
9004
  revokeKmsSigningKey,
@@ -9440,6 +9440,15 @@ const tagDictionary = {
9440
9440
  ]
9441
9441
  },
9442
9442
  domainsRegistrar: {
9443
+ POST: [
9444
+ "searchDomains",
9445
+ "getBulkPrice",
9446
+ "getBulkAvailability",
9447
+ "buySingleDomain",
9448
+ "buyDomains",
9449
+ "transferInDomain",
9450
+ "renewDomain"
9451
+ ],
9443
9452
  GET: [
9444
9453
  "getSupportedTlds",
9445
9454
  "getTld",
@@ -9452,15 +9461,6 @@ const tagDictionary = {
9452
9461
  "getDomainContactVerification",
9453
9462
  "getOrder"
9454
9463
  ],
9455
- POST: [
9456
- "getBulkPrice",
9457
- "getBulkAvailability",
9458
- "searchDomains",
9459
- "buySingleDomain",
9460
- "buyDomains",
9461
- "transferInDomain",
9462
- "renewDomain"
9463
- ],
9464
9464
  PATCH: [
9465
9465
  "updateDomainAutoRenew",
9466
9466
  "updateDomainNameservers"
@@ -9667,19 +9667,19 @@ const tagDictionary = {
9667
9667
  ]
9668
9668
  },
9669
9669
  kms: {
9670
- GET: [
9671
- "listKmsIssuers",
9672
- "getKmsIssuer"
9673
- ],
9674
9670
  POST: [
9675
- "createKmsIssuer",
9676
9671
  "signKmsMessage",
9677
9672
  "signKmsToken",
9673
+ "createKmsIssuer",
9678
9674
  "createKmsSigningKey",
9679
9675
  "activateKmsSigningKey",
9680
9676
  "revokeKmsSigningKey",
9681
9677
  "createKmsIssuerPolicy"
9682
9678
  ],
9679
+ GET: [
9680
+ "listKmsIssuers",
9681
+ "getKmsIssuer"
9682
+ ],
9683
9683
  PATCH: [
9684
9684
  "updateKmsIssuer",
9685
9685
  "updateKmsIssuerPolicy"
@@ -1781,6 +1781,23 @@ const resolveUrl = (url, queryParams = {})=>{
1781
1781
  });
1782
1782
  return data;
1783
1783
  }
1784
+ /**
1785
+ * @summary Get Domain Availability and Pricing
1786
+ * @description Start domain research here. Get registration availability and pricing for 1–200 exact domain names. Returns results in input order, with registration and renewal prices in USD for available domains. No authentication required.
1787
+ * @link /v1/registrar/domains/search
1788
+ */ async function searchDomains({ queryParams, config } = {}) {
1789
+ const { client: request = client, ...requestConfig } = config ?? {};
1790
+ const data = await request({
1791
+ method: "POST",
1792
+ url: `/v1/registrar/domains/search`,
1793
+ queryParams,
1794
+ ...requestConfig,
1795
+ headers: {
1796
+ ...requestConfig.headers
1797
+ }
1798
+ });
1799
+ return data;
1800
+ }
1784
1801
  /**
1785
1802
  * @summary Get supported TLDs
1786
1803
  * @description Get a list of TLDs supported by Vercel
@@ -1912,23 +1929,6 @@ const resolveUrl = (url, queryParams = {})=>{
1912
1929
  });
1913
1930
  return data;
1914
1931
  }
1915
- /**
1916
- * @summary Check domain availability and pricing
1917
- * @description Check registration availability for 1–200 exact domain names, such as `example.com`. Returns results in input order, with registration and renewal prices in USD for available domains. No authentication required.
1918
- * @link /v1/registrar/domains/search
1919
- */ async function searchDomains({ queryParams, config } = {}) {
1920
- const { client: request = client, ...requestConfig } = config ?? {};
1921
- const data = await request({
1922
- method: "POST",
1923
- url: `/v1/registrar/domains/search`,
1924
- queryParams,
1925
- ...requestConfig,
1926
- headers: {
1927
- ...requestConfig.headers
1928
- }
1929
- });
1930
- return data;
1931
- }
1932
1932
  /**
1933
1933
  * @summary Get contact info schema
1934
1934
  * @description Some TLDs require additional contact information. Use this endpoint to get the schema for the tld-specific contact information for a domain.
@@ -4162,15 +4162,17 @@ const resolveUrl = (url, queryParams = {})=>{
4162
4162
  return data;
4163
4163
  }
4164
4164
  /**
4165
- * @summary List issuers
4166
- * @description Retrieve the list of KMS issuers that belong to the authenticated team. The results are paginated.
4167
- * @link /v1/kms/issuers
4168
- */ async function listKmsIssuers({ queryParams, config } = {}) {
4165
+ * @summary Sign a message
4166
+ * @description Sign a raw message with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign. The response `signature` is standard-base64 of the raw signature over the decoded message bytes. `keyId` and `algorithm` identify the signing key in the issuer's JWKS.
4167
+ * @link /v1/kms/issuers/{issuerId}/sign/message
4168
+ */ async function signKmsMessage({ pathParams, config } = {}) {
4169
4169
  const { client: request = client, ...requestConfig } = config ?? {};
4170
+ if (!pathParams.issuerId) {
4171
+ throw new Error(`Missing required path parameter: issuerId`);
4172
+ }
4170
4173
  const data = await request({
4171
- method: "GET",
4172
- url: `/v1/kms/issuers`,
4173
- queryParams,
4174
+ method: "POST",
4175
+ url: `/v1/kms/issuers/${pathParams.issuerId}/sign/message`,
4174
4176
  ...requestConfig,
4175
4177
  headers: {
4176
4178
  ...requestConfig.headers
@@ -4179,15 +4181,17 @@ const resolveUrl = (url, queryParams = {})=>{
4179
4181
  return data;
4180
4182
  }
4181
4183
  /**
4182
- * @summary Create an issuer
4183
- * @description Create a new KMS issuer for the authenticated team. An issuer owns the asymmetric signing keys that are used to sign tokens and messages.
4184
- * @link /v1/kms/issuers
4185
- */ async function createKmsIssuer({ queryParams, config } = {}) {
4184
+ * @summary Sign a token
4185
+ * @description Sign a JWT with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign.
4186
+ * @link /v1/kms/issuers/{issuerId}/sign/token
4187
+ */ async function signKmsToken({ pathParams, config } = {}) {
4186
4188
  const { client: request = client, ...requestConfig } = config ?? {};
4189
+ if (!pathParams.issuerId) {
4190
+ throw new Error(`Missing required path parameter: issuerId`);
4191
+ }
4187
4192
  const data = await request({
4188
4193
  method: "POST",
4189
- url: `/v1/kms/issuers`,
4190
- queryParams,
4194
+ url: `/v1/kms/issuers/${pathParams.issuerId}/sign/token`,
4191
4195
  ...requestConfig,
4192
4196
  headers: {
4193
4197
  ...requestConfig.headers
@@ -4196,17 +4200,15 @@ const resolveUrl = (url, queryParams = {})=>{
4196
4200
  return data;
4197
4201
  }
4198
4202
  /**
4199
- * @summary Sign a message
4200
- * @description Sign a raw message with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign. The response `signature` is standard-base64 of the raw signature over the decoded message bytes. `keyId` and `algorithm` identify the signing key in the issuer's JWKS.
4201
- * @link /v1/kms/issuers/{issuerId}/sign/message
4202
- */ async function signKmsMessage({ pathParams, config } = {}) {
4203
+ * @summary List issuers
4204
+ * @description Retrieve the list of KMS issuers that belong to the authenticated team. The results are paginated.
4205
+ * @link /v1/kms/issuers
4206
+ */ async function listKmsIssuers({ queryParams, config } = {}) {
4203
4207
  const { client: request = client, ...requestConfig } = config ?? {};
4204
- if (!pathParams.issuerId) {
4205
- throw new Error(`Missing required path parameter: issuerId`);
4206
- }
4207
4208
  const data = await request({
4208
- method: "POST",
4209
- url: `/v1/kms/issuers/${pathParams.issuerId}/sign/message`,
4209
+ method: "GET",
4210
+ url: `/v1/kms/issuers`,
4211
+ queryParams,
4210
4212
  ...requestConfig,
4211
4213
  headers: {
4212
4214
  ...requestConfig.headers
@@ -4215,17 +4217,15 @@ const resolveUrl = (url, queryParams = {})=>{
4215
4217
  return data;
4216
4218
  }
4217
4219
  /**
4218
- * @summary Sign a token
4219
- * @description Sign a JWT with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign.
4220
- * @link /v1/kms/issuers/{issuerId}/sign/token
4221
- */ async function signKmsToken({ pathParams, config } = {}) {
4220
+ * @summary Create an issuer
4221
+ * @description Create a new KMS issuer for the authenticated team. An issuer owns the asymmetric signing keys that are used to sign tokens and messages.
4222
+ * @link /v1/kms/issuers
4223
+ */ async function createKmsIssuer({ queryParams, config } = {}) {
4222
4224
  const { client: request = client, ...requestConfig } = config ?? {};
4223
- if (!pathParams.issuerId) {
4224
- throw new Error(`Missing required path parameter: issuerId`);
4225
- }
4226
4225
  const data = await request({
4227
4226
  method: "POST",
4228
- url: `/v1/kms/issuers/${pathParams.issuerId}/sign/token`,
4227
+ url: `/v1/kms/issuers`,
4228
+ queryParams,
4229
4229
  ...requestConfig,
4230
4230
  headers: {
4231
4231
  ...requestConfig.headers
@@ -8386,6 +8386,7 @@ const operationsByPath = {
8386
8386
  "PUT /domains/{domain}/records": replaceDomainsByDomainRecords,
8387
8387
  "GET /domains/records/{recordId}": getDomainsRecordsByRecordId,
8388
8388
  "DELETE /v2/domains/{domain}/records/{recordId}": removeRecord,
8389
+ "POST /v1/registrar/domains/search": searchDomains,
8389
8390
  "GET /v1/registrar/tlds/supported": getSupportedTlds,
8390
8391
  "GET /v1/registrar/tlds/{tld}": getTld,
8391
8392
  "GET /v1/registrar/tlds/{tld}/price": getTldPrice,
@@ -8393,7 +8394,6 @@ const operationsByPath = {
8393
8394
  "GET /v1/registrar/domains/{domain}/price": getDomainPrice,
8394
8395
  "POST /v1/registrar/domains/price": getBulkPrice,
8395
8396
  "POST /v1/registrar/domains/availability": getBulkAvailability,
8396
- "POST /v1/registrar/domains/search": searchDomains,
8397
8397
  "GET /v1/registrar/domains/{domain}/contact-info/schema": getContactInfoSchema,
8398
8398
  "GET /v1/registrar/domains/{domain}/auth-code": getDomainAuthCode,
8399
8399
  "POST /v1/registrar/domains/{domain}/buy": buySingleDomain,
@@ -8507,10 +8507,10 @@ const operationsByPath = {
8507
8507
  "POST /v2/integrations/log-drains": createLogDrain,
8508
8508
  "DELETE /v1/integrations/log-drains/{id}": deleteIntegrationLogDrain,
8509
8509
  "POST /api-keys": createApiKeys,
8510
- "GET /v1/kms/issuers": listKmsIssuers,
8511
- "POST /v1/kms/issuers": createKmsIssuer,
8512
8510
  "POST /v1/kms/issuers/{issuerId}/sign/message": signKmsMessage,
8513
8511
  "POST /v1/kms/issuers/{issuerId}/sign/token": signKmsToken,
8512
+ "GET /v1/kms/issuers": listKmsIssuers,
8513
+ "POST /v1/kms/issuers": createKmsIssuer,
8514
8514
  "POST /v1/kms/issuers/{issuerId}/keys": createKmsSigningKey,
8515
8515
  "POST /v1/kms/issuers/{issuerId}/keys/{keyId}/activate": activateKmsSigningKey,
8516
8516
  "POST /v1/kms/issuers/{issuerId}/keys/{keyId}/revoke": revokeKmsSigningKey,
@@ -8844,6 +8844,7 @@ const operationsByTag = {
8844
8844
  removeRecord
8845
8845
  },
8846
8846
  domainsRegistrar: {
8847
+ searchDomains,
8847
8848
  getSupportedTlds,
8848
8849
  getTld,
8849
8850
  getTldPrice,
@@ -8851,7 +8852,6 @@ const operationsByTag = {
8851
8852
  getDomainPrice,
8852
8853
  getBulkPrice,
8853
8854
  getBulkAvailability,
8854
- searchDomains,
8855
8855
  getContactInfoSchema,
8856
8856
  getDomainAuthCode,
8857
8857
  buySingleDomain,
@@ -8995,10 +8995,10 @@ const operationsByTag = {
8995
8995
  deleteAuthToken
8996
8996
  },
8997
8997
  kms: {
8998
- listKmsIssuers,
8999
- createKmsIssuer,
9000
8998
  signKmsMessage,
9001
8999
  signKmsToken,
9000
+ listKmsIssuers,
9001
+ createKmsIssuer,
9002
9002
  createKmsSigningKey,
9003
9003
  activateKmsSigningKey,
9004
9004
  revokeKmsSigningKey,
@@ -9440,6 +9440,15 @@ const tagDictionary = {
9440
9440
  ]
9441
9441
  },
9442
9442
  domainsRegistrar: {
9443
+ POST: [
9444
+ "searchDomains",
9445
+ "getBulkPrice",
9446
+ "getBulkAvailability",
9447
+ "buySingleDomain",
9448
+ "buyDomains",
9449
+ "transferInDomain",
9450
+ "renewDomain"
9451
+ ],
9443
9452
  GET: [
9444
9453
  "getSupportedTlds",
9445
9454
  "getTld",
@@ -9452,15 +9461,6 @@ const tagDictionary = {
9452
9461
  "getDomainContactVerification",
9453
9462
  "getOrder"
9454
9463
  ],
9455
- POST: [
9456
- "getBulkPrice",
9457
- "getBulkAvailability",
9458
- "searchDomains",
9459
- "buySingleDomain",
9460
- "buyDomains",
9461
- "transferInDomain",
9462
- "renewDomain"
9463
- ],
9464
9464
  PATCH: [
9465
9465
  "updateDomainAutoRenew",
9466
9466
  "updateDomainNameservers"
@@ -9667,19 +9667,19 @@ const tagDictionary = {
9667
9667
  ]
9668
9668
  },
9669
9669
  kms: {
9670
- GET: [
9671
- "listKmsIssuers",
9672
- "getKmsIssuer"
9673
- ],
9674
9670
  POST: [
9675
- "createKmsIssuer",
9676
9671
  "signKmsMessage",
9677
9672
  "signKmsToken",
9673
+ "createKmsIssuer",
9678
9674
  "createKmsSigningKey",
9679
9675
  "activateKmsSigningKey",
9680
9676
  "revokeKmsSigningKey",
9681
9677
  "createKmsIssuerPolicy"
9682
9678
  ],
9679
+ GET: [
9680
+ "listKmsIssuers",
9681
+ "getKmsIssuer"
9682
+ ],
9683
9683
  PATCH: [
9684
9684
  "updateKmsIssuer",
9685
9685
  "updateKmsIssuerPolicy"
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
 
3
- var components = require('./components-pfe7zbum.cjs');
3
+ var components = require('./components-cuxd0v55.cjs');
4
4
 
5
5
 
6
6