@opusdns/api 0.308.0 → 0.310.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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "@opusdns/api-spec-ts-generator": "^0.19.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "0.308.0",
6
+ "version": "0.310.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -4480,6 +4480,10 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
4480
4480
  US_APP_PURPOSE: "US_APP_PURPOSE",
4481
4481
  NIC_IT_ENTITY_TYPE: "NIC_IT_ENTITY_TYPE",
4482
4482
  NIC_IT_REG_CODE: "NIC_IT_REG_CODE",
4483
+ CZ_NIC_IDENT_TYPE: "CZ_NIC_IDENT_TYPE",
4484
+ CZ_NIC_IDENT_VALUE: "CZ_NIC_IDENT_VALUE",
4485
+ CZ_NIC_VAT: "CZ_NIC_VAT",
4486
+ CZ_NIC_NOTIFY_EMAIL: "CZ_NIC_NOTIFY_EMAIL",
4483
4487
  } as const satisfies Record<string, RegistryHandleAttributeType>;
4484
4488
 
4485
4489
  /**
@@ -4540,7 +4544,11 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
4540
4544
  'US_NEXUS_COUNTRY_CODE',
4541
4545
  'US_APP_PURPOSE',
4542
4546
  'NIC_IT_ENTITY_TYPE',
4543
- 'NIC_IT_REG_CODE'
4547
+ 'NIC_IT_REG_CODE',
4548
+ 'CZ_NIC_IDENT_TYPE',
4549
+ 'CZ_NIC_IDENT_VALUE',
4550
+ 'CZ_NIC_VAT',
4551
+ 'CZ_NIC_NOTIFY_EMAIL'
4544
4552
  ] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
4545
4553
 
4546
4554
  /**
@@ -1691,6 +1691,45 @@ export type PUT_ContactsContactIdVerification_Request_Query = PUT_ContactsContac
1691
1691
  */
1692
1692
  export type PUT_ContactsContactIdVerification_Request_Path = PUT_ContactsContactIdVerification_Request['parameters']['path'];
1693
1693
 
1694
+ /**
1695
+ * Request type for GET ContactsContactIdVerifications endpoint
1696
+ *
1697
+ * Get contact verification status
1698
+ * Retrieve the current verification state for a contact from the contact-verification service.
1699
+ *
1700
+ * @remarks
1701
+ * This type defines the complete request structure for the GET ContactsContactIdVerifications endpoint.
1702
+ * It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
1703
+ * Use this type to ensure type safety when making API requests to this endpoint.
1704
+ *
1705
+ * @example
1706
+ * Use this type to ensure type safety when making API requests to this endpoint.
1707
+ *
1708
+ * @path /v1/contacts/{contact_id}/verifications
1709
+ *
1710
+ * @see {@link GET_ContactsContactIdVerifications_Request_Query} - Query parameters type
1711
+ * @see {@link GET_ContactsContactIdVerifications_Request_Path} - Path parameters type
1712
+ * @see {@link GET_ContactsContactIdVerifications_Request_Body} - Request body type
1713
+ */
1714
+ export type GET_ContactsContactIdVerifications_Request = {
1715
+ parameters: {
1716
+ path: operations['get_contact_verification_status_v1_contacts__contact_id__verifications_get']['parameters']['path'];
1717
+ };
1718
+ }
1719
+ /**
1720
+ * Path parameters for GET /v1/contacts/{contact_id}/verifications
1721
+ *
1722
+ * @remarks
1723
+ * This type defines the path parameters for the GET /v1/contacts/{contact_id}/verifications endpoint.
1724
+ * It provides type safety for all path parameters as defined in the OpenAPI specification.
1725
+ *
1726
+ * @example
1727
+ * Use this type to ensure type safety for path parameters.
1728
+ *
1729
+ * @path /v1/contacts/{contact_id}/verifications
1730
+ */
1731
+ export type GET_ContactsContactIdVerifications_Request_Path = GET_ContactsContactIdVerifications_Request['parameters']['path'];
1732
+
1694
1733
  /**
1695
1734
  * Request type for POST ContactsContactIdVerificationsAttest endpoint
1696
1735
  *
@@ -3257,6 +3257,116 @@ export type PUT_ContactsByContactIdVerification_Response_404 = Problem
3257
3257
  */
3258
3258
  export type PUT_ContactsByContactIdVerification_Response_422 = HTTPValidationError
3259
3259
 
3260
+ /**
3261
+ * Response types for GET ContactsByContactIdVerifications endpoint
3262
+ *
3263
+ * Get contact verification status
3264
+ * Retrieve the current verification state for a contact from the contact-verification service.
3265
+ *
3266
+ * @remarks
3267
+ * This type defines all possible response structures for the GET ContactsByContactIdVerifications endpoint.
3268
+ * Each response code maps to a specific response type as defined in the OpenAPI specification.
3269
+ * Use this type to ensure type safety when handling API responses from this endpoint.
3270
+ *
3271
+
3272
+ *
3273
+ * @path /v1/contacts/{contact_id}/verifications
3274
+ *
3275
+ * @see {@link GET_ContactsByContactIdVerifications_Response_200} - 200 response type
3276
+ * @see {@link GET_ContactsByContactIdVerifications_Response_401} - 401 response type
3277
+ * @see {@link GET_ContactsByContactIdVerifications_Response_404} - 404 response type
3278
+ * @see {@link GET_ContactsByContactIdVerifications_Response_422} - 422 response type
3279
+ * @see {@link GET_ContactsByContactIdVerifications_Response_502} - 502 response type
3280
+ *
3281
+
3282
+ */
3283
+ export type GET_ContactsByContactIdVerifications_Response = GET_ContactsByContactIdVerifications_Response_200 | GET_ContactsByContactIdVerifications_Response_401 | GET_ContactsByContactIdVerifications_Response_404 | GET_ContactsByContactIdVerifications_Response_422 | GET_ContactsByContactIdVerifications_Response_502;
3284
+
3285
+ /**
3286
+ * 200 response for GET ContactsByContactIdVerifications endpoint
3287
+ *
3288
+ * @remarks
3289
+ * This type defines the response structure for the 200 status code
3290
+ * of the GET ContactsByContactIdVerifications endpoint.
3291
+ * It provides type safety for handling this specific response as defined in the OpenAPI specification.
3292
+ *
3293
+
3294
+ *
3295
+ * @path /v1/contacts/{contact_id}/verifications
3296
+ *
3297
+ * @see {@link GET_ContactsByContactIdVerifications_Response} - The main response type definition
3298
+ * @see {@link ContactAttestRes} - The actual schema type definition
3299
+ */
3300
+ export type GET_ContactsByContactIdVerifications_Response_200 = ContactAttestRes
3301
+
3302
+ /**
3303
+ * 401 response for GET ContactsByContactIdVerifications endpoint
3304
+ *
3305
+ * @remarks
3306
+ * This type defines the response structure for the 401 status code
3307
+ * of the GET ContactsByContactIdVerifications endpoint.
3308
+ * It provides type safety for handling this specific response as defined in the OpenAPI specification.
3309
+ *
3310
+
3311
+ *
3312
+ * @path /v1/contacts/{contact_id}/verifications
3313
+ *
3314
+ * @see {@link GET_ContactsByContactIdVerifications_Response} - The main response type definition
3315
+ * @see {@link Problem} - The actual schema type definition
3316
+ */
3317
+ export type GET_ContactsByContactIdVerifications_Response_401 = Problem
3318
+
3319
+ /**
3320
+ * 404 response for GET ContactsByContactIdVerifications endpoint
3321
+ *
3322
+ * @remarks
3323
+ * This type defines the response structure for the 404 status code
3324
+ * of the GET ContactsByContactIdVerifications endpoint.
3325
+ * It provides type safety for handling this specific response as defined in the OpenAPI specification.
3326
+ *
3327
+
3328
+ *
3329
+ * @path /v1/contacts/{contact_id}/verifications
3330
+ *
3331
+ * @see {@link GET_ContactsByContactIdVerifications_Response} - The main response type definition
3332
+ * @see {@link Problem} - The actual schema type definition
3333
+ */
3334
+ export type GET_ContactsByContactIdVerifications_Response_404 = Problem
3335
+
3336
+ /**
3337
+ * 422 response for GET ContactsByContactIdVerifications endpoint
3338
+ *
3339
+ * @remarks
3340
+ * This type defines the response structure for the 422 status code
3341
+ * of the GET ContactsByContactIdVerifications endpoint.
3342
+ * It provides type safety for handling this specific response as defined in the OpenAPI specification.
3343
+ *
3344
+
3345
+ *
3346
+ * @path /v1/contacts/{contact_id}/verifications
3347
+ *
3348
+ * @see {@link GET_ContactsByContactIdVerifications_Response} - The main response type definition
3349
+ * @see {@link HTTPValidationError} - The actual schema type definition
3350
+ */
3351
+ export type GET_ContactsByContactIdVerifications_Response_422 = HTTPValidationError
3352
+
3353
+ /**
3354
+ * 502 response for GET ContactsByContactIdVerifications endpoint
3355
+ *
3356
+ * @remarks
3357
+ * This type defines the response structure for the 502 status code
3358
+ * of the GET ContactsByContactIdVerifications endpoint.
3359
+ * It provides type safety for handling this specific response as defined in the OpenAPI specification.
3360
+ *
3361
+
3362
+ *
3363
+ * @path /v1/contacts/{contact_id}/verifications
3364
+ *
3365
+ * @see {@link GET_ContactsByContactIdVerifications_Response} - The main response type definition
3366
+ * @see {@link Problem} - The actual schema type definition
3367
+ */
3368
+ export type GET_ContactsByContactIdVerifications_Response_502 = Problem
3369
+
3260
3370
  /**
3261
3371
  * Response types for POST ContactsByContactIdVerificationsAttest endpoint
3262
3372
  *
@@ -3275,12 +3385,13 @@ export type PUT_ContactsByContactIdVerification_Response_422 = HTTPValidationErr
3275
3385
  * @see {@link POST_ContactsByContactIdVerificationsAttest_Response_200} - 200 response type
3276
3386
  * @see {@link POST_ContactsByContactIdVerificationsAttest_Response_400} - 400 response type
3277
3387
  * @see {@link POST_ContactsByContactIdVerificationsAttest_Response_401} - 401 response type
3388
+ * @see {@link POST_ContactsByContactIdVerificationsAttest_Response_404} - 404 response type
3278
3389
  * @see {@link POST_ContactsByContactIdVerificationsAttest_Response_422} - 422 response type
3279
3390
  * @see {@link POST_ContactsByContactIdVerificationsAttest_Response_502} - 502 response type
3280
3391
  *
3281
3392
 
3282
3393
  */
3283
- export type POST_ContactsByContactIdVerificationsAttest_Response = POST_ContactsByContactIdVerificationsAttest_Response_200 | POST_ContactsByContactIdVerificationsAttest_Response_400 | POST_ContactsByContactIdVerificationsAttest_Response_401 | POST_ContactsByContactIdVerificationsAttest_Response_422 | POST_ContactsByContactIdVerificationsAttest_Response_502;
3394
+ export type POST_ContactsByContactIdVerificationsAttest_Response = POST_ContactsByContactIdVerificationsAttest_Response_200 | POST_ContactsByContactIdVerificationsAttest_Response_400 | POST_ContactsByContactIdVerificationsAttest_Response_401 | POST_ContactsByContactIdVerificationsAttest_Response_404 | POST_ContactsByContactIdVerificationsAttest_Response_422 | POST_ContactsByContactIdVerificationsAttest_Response_502;
3284
3395
 
3285
3396
  /**
3286
3397
  * 200 response for POST ContactsByContactIdVerificationsAttest endpoint
@@ -3333,6 +3444,23 @@ export type POST_ContactsByContactIdVerificationsAttest_Response_400 = Problem
3333
3444
  */
3334
3445
  export type POST_ContactsByContactIdVerificationsAttest_Response_401 = Problem
3335
3446
 
3447
+ /**
3448
+ * 404 response for POST ContactsByContactIdVerificationsAttest endpoint
3449
+ *
3450
+ * @remarks
3451
+ * This type defines the response structure for the 404 status code
3452
+ * of the POST ContactsByContactIdVerificationsAttest endpoint.
3453
+ * It provides type safety for handling this specific response as defined in the OpenAPI specification.
3454
+ *
3455
+
3456
+ *
3457
+ * @path /v1/contacts/{contact_id}/verifications/attest
3458
+ *
3459
+ * @see {@link POST_ContactsByContactIdVerificationsAttest_Response} - The main response type definition
3460
+ * @see {@link Problem} - The actual schema type definition
3461
+ */
3462
+ export type POST_ContactsByContactIdVerificationsAttest_Response_404 = Problem
3463
+
3336
3464
  /**
3337
3465
  * 422 response for POST ContactsByContactIdVerificationsAttest endpoint
3338
3466
  *
package/src/openapi.yaml CHANGED
@@ -9492,6 +9492,10 @@ components:
9492
9492
  - US_APP_PURPOSE
9493
9493
  - NIC_IT_ENTITY_TYPE
9494
9494
  - NIC_IT_REG_CODE
9495
+ - CZ_NIC_IDENT_TYPE
9496
+ - CZ_NIC_IDENT_VALUE
9497
+ - CZ_NIC_VAT
9498
+ - CZ_NIC_NOTIFY_EMAIL
9495
9499
  title: RegistryHandleAttributeType
9496
9500
  type: string
9497
9501
  RegistryLockBase:
@@ -11529,7 +11533,7 @@ info:
11529
11533
  \n\n"
11530
11534
  summary: OpusDNS - your gateway to a seamless domain management experience.
11531
11535
  title: OpusDNS API
11532
- version: 2026-05-19-074018
11536
+ version: 2026-05-20-160808
11533
11537
  x-logo:
11534
11538
  altText: OpusDNS API Reference
11535
11539
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -14605,6 +14609,79 @@ paths:
14605
14609
  summary: Complete contact verification by contact ID
14606
14610
  tags:
14607
14611
  - contact
14612
+ /v1/contacts/{contact_id}/verifications:
14613
+ get:
14614
+ description: Retrieve the current verification state for a contact from the
14615
+ contact-verification service.
14616
+ operationId: get_contact_verification_status_v1_contacts__contact_id__verifications_get
14617
+ parameters:
14618
+ - in: path
14619
+ name: contact_id
14620
+ required: true
14621
+ schema:
14622
+ examples:
14623
+ - contact_01h45ytscbebyvny4gc8cr8ma2
14624
+ format: typeid
14625
+ pattern: ^contact_[0-7][0-9a-hjkmnpq-tv-z]{25}$
14626
+ title: Contact Id
14627
+ type: string
14628
+ x-typeid-prefix: contact
14629
+ responses:
14630
+ '200':
14631
+ content:
14632
+ application/json:
14633
+ schema:
14634
+ $ref: '#/components/schemas/ContactAttestRes'
14635
+ description: Successful Response
14636
+ '401':
14637
+ content:
14638
+ application/problem+json:
14639
+ example:
14640
+ code: ERROR_AUTHENTICATION
14641
+ detail: Additional error context.
14642
+ status: 401
14643
+ title: Authentication Error
14644
+ type: authentication
14645
+ schema:
14646
+ $ref: '#/components/schemas/Problem'
14647
+ description: Unauthorized
14648
+ '404':
14649
+ content:
14650
+ application/problem+json:
14651
+ example:
14652
+ code: ERROR_CONTACT_VERIFICATION_UPSTREAM_NOT_FOUND
14653
+ contact_id: Additional error context.
14654
+ detail: Contact is not registered with the contact-verification service.
14655
+ status: 404
14656
+ title: Contact Not Registered with Verification Service
14657
+ type: contact-verification-upstream-not-found
14658
+ schema:
14659
+ $ref: '#/components/schemas/Problem'
14660
+ description: Not Found
14661
+ '422':
14662
+ content:
14663
+ application/problem+json:
14664
+ schema:
14665
+ $ref: '#/components/schemas/HTTPValidationError'
14666
+ description: Validation Error
14667
+ '502':
14668
+ content:
14669
+ application/problem+json:
14670
+ example:
14671
+ code: ERROR_CONTACT_VERIFICATION_UPSTREAM_ERROR
14672
+ detail: Additional error context.
14673
+ status: 502
14674
+ title: Contact Verification Service Error
14675
+ type: contact-verification-upstream
14676
+ schema:
14677
+ $ref: '#/components/schemas/Problem'
14678
+ description: Bad Gateway
14679
+ security:
14680
+ - OAuth2PasswordBearer: []
14681
+ - APIKeyHeader: []
14682
+ summary: Get contact verification status
14683
+ tags:
14684
+ - contact
14608
14685
  /v1/contacts/{contact_id}/verifications/attest:
14609
14686
  post:
14610
14687
  description: Submit one or more contact-verification attestations. Returns the
@@ -14662,6 +14739,19 @@ paths:
14662
14739
  schema:
14663
14740
  $ref: '#/components/schemas/Problem'
14664
14741
  description: Unauthorized
14742
+ '404':
14743
+ content:
14744
+ application/problem+json:
14745
+ example:
14746
+ code: ERROR_CONTACT_VERIFICATION_UPSTREAM_NOT_FOUND
14747
+ contact_id: Additional error context.
14748
+ detail: Contact is not registered with the contact-verification service.
14749
+ status: 404
14750
+ title: Contact Not Registered with Verification Service
14751
+ type: contact-verification-upstream-not-found
14752
+ schema:
14753
+ $ref: '#/components/schemas/Problem'
14754
+ description: Not Found
14665
14755
  '422':
14666
14756
  content:
14667
14757
  application/problem+json:
package/src/schema.d.ts CHANGED
@@ -471,6 +471,26 @@ export interface paths {
471
471
  patch?: never;
472
472
  trace?: never;
473
473
  };
474
+ "/v1/contacts/{contact_id}/verifications": {
475
+ parameters: {
476
+ query?: never;
477
+ header?: never;
478
+ path?: never;
479
+ cookie?: never;
480
+ };
481
+ /**
482
+ * Get contact verification status
483
+ * @description Retrieve the current verification state for a contact from the contact-verification service.
484
+ */
485
+ get: operations["get_contact_verification_status_v1_contacts__contact_id__verifications_get"];
486
+ put?: never;
487
+ post?: never;
488
+ delete?: never;
489
+ options?: never;
490
+ head?: never;
491
+ patch?: never;
492
+ trace?: never;
493
+ };
474
494
  "/v1/contacts/{contact_id}/verifications/attest": {
475
495
  parameters: {
476
496
  query?: never;
@@ -8673,7 +8693,7 @@ export interface components {
8673
8693
  * @description Registry handle attribute types for type-safe attribute key access.
8674
8694
  * @enum {string}
8675
8695
  */
8676
- RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR" | "SIDN_LEGAL_FORM" | "SIDN_LEGAL_REG_NO" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE" | "NIC_IT_ENTITY_TYPE" | "NIC_IT_REG_CODE";
8696
+ RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR" | "SIDN_LEGAL_FORM" | "SIDN_LEGAL_REG_NO" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE" | "NIC_IT_ENTITY_TYPE" | "NIC_IT_REG_CODE" | "CZ_NIC_IDENT_TYPE" | "CZ_NIC_IDENT_VALUE" | "CZ_NIC_VAT" | "CZ_NIC_NOTIFY_EMAIL";
8677
8697
  /** RegistryLockBase */
8678
8698
  RegistryLockBase: {
8679
8699
  /**
@@ -12650,6 +12670,86 @@ export interface operations {
12650
12670
  };
12651
12671
  };
12652
12672
  };
12673
+ get_contact_verification_status_v1_contacts__contact_id__verifications_get: {
12674
+ parameters: {
12675
+ query?: never;
12676
+ header?: never;
12677
+ path: {
12678
+ contact_id: TypeId<"contact">;
12679
+ };
12680
+ cookie?: never;
12681
+ };
12682
+ requestBody?: never;
12683
+ responses: {
12684
+ /** @description Successful Response */
12685
+ 200: {
12686
+ headers: {
12687
+ [name: string]: unknown;
12688
+ };
12689
+ content: {
12690
+ "application/json": components["schemas"]["ContactAttestRes"];
12691
+ };
12692
+ };
12693
+ /** @description Unauthorized */
12694
+ 401: {
12695
+ headers: {
12696
+ [name: string]: unknown;
12697
+ };
12698
+ content: {
12699
+ /** @example {
12700
+ * "code": "ERROR_AUTHENTICATION",
12701
+ * "detail": "Additional error context.",
12702
+ * "status": 401,
12703
+ * "title": "Authentication Error",
12704
+ * "type": "authentication"
12705
+ * } */
12706
+ "application/problem+json": components["schemas"]["Problem"];
12707
+ };
12708
+ };
12709
+ /** @description Not Found */
12710
+ 404: {
12711
+ headers: {
12712
+ [name: string]: unknown;
12713
+ };
12714
+ content: {
12715
+ /** @example {
12716
+ * "code": "ERROR_CONTACT_VERIFICATION_UPSTREAM_NOT_FOUND",
12717
+ * "contact_id": "Additional error context.",
12718
+ * "detail": "Contact is not registered with the contact-verification service.",
12719
+ * "status": 404,
12720
+ * "title": "Contact Not Registered with Verification Service",
12721
+ * "type": "contact-verification-upstream-not-found"
12722
+ * } */
12723
+ "application/problem+json": components["schemas"]["Problem"];
12724
+ };
12725
+ };
12726
+ /** @description Validation Error */
12727
+ 422: {
12728
+ headers: {
12729
+ [name: string]: unknown;
12730
+ };
12731
+ content: {
12732
+ "application/problem+json": components["schemas"]["HTTPValidationError"];
12733
+ };
12734
+ };
12735
+ /** @description Bad Gateway */
12736
+ 502: {
12737
+ headers: {
12738
+ [name: string]: unknown;
12739
+ };
12740
+ content: {
12741
+ /** @example {
12742
+ * "code": "ERROR_CONTACT_VERIFICATION_UPSTREAM_ERROR",
12743
+ * "detail": "Additional error context.",
12744
+ * "status": 502,
12745
+ * "title": "Contact Verification Service Error",
12746
+ * "type": "contact-verification-upstream"
12747
+ * } */
12748
+ "application/problem+json": components["schemas"]["Problem"];
12749
+ };
12750
+ };
12751
+ };
12752
+ };
12653
12753
  attest_contact_verification_v1_contacts__contact_id__verifications_attest_post: {
12654
12754
  parameters: {
12655
12755
  query?: never;
@@ -12707,6 +12807,23 @@ export interface operations {
12707
12807
  "application/problem+json": components["schemas"]["Problem"];
12708
12808
  };
12709
12809
  };
12810
+ /** @description Not Found */
12811
+ 404: {
12812
+ headers: {
12813
+ [name: string]: unknown;
12814
+ };
12815
+ content: {
12816
+ /** @example {
12817
+ * "code": "ERROR_CONTACT_VERIFICATION_UPSTREAM_NOT_FOUND",
12818
+ * "contact_id": "Additional error context.",
12819
+ * "detail": "Contact is not registered with the contact-verification service.",
12820
+ * "status": 404,
12821
+ * "title": "Contact Not Registered with Verification Service",
12822
+ * "type": "contact-verification-upstream-not-found"
12823
+ * } */
12824
+ "application/problem+json": components["schemas"]["Problem"];
12825
+ };
12826
+ };
12710
12827
  /** @description Validation Error */
12711
12828
  422: {
12712
12829
  headers: {