@opusdns/api 1.67.0 → 1.69.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/src/schema.d.ts CHANGED
@@ -1253,6 +1253,64 @@ export interface paths {
1253
1253
  patch?: never;
1254
1254
  trace?: never;
1255
1255
  };
1256
+ "/v1/domains/tld-specific/no/applicant-declaration": {
1257
+ parameters: {
1258
+ query?: never;
1259
+ header?: never;
1260
+ path?: never;
1261
+ cookie?: never;
1262
+ };
1263
+ /** Retrieve the .no applicant declaration by token */
1264
+ get: operations["get_norid_declaration_by_token_v1_domains_tld_specific_no_applicant_declaration_get"];
1265
+ /**
1266
+ * Sign the .no applicant declaration with token
1267
+ * @description Records the applicant declaration signature (`acceptName` + `acceptDate`) and queues the actual registration at Norid.
1268
+ */
1269
+ put: operations["confirm_norid_declaration_by_token_v1_domains_tld_specific_no_applicant_declaration_put"];
1270
+ post?: never;
1271
+ delete?: never;
1272
+ options?: never;
1273
+ head?: never;
1274
+ patch?: never;
1275
+ trace?: never;
1276
+ };
1277
+ "/v1/domains/tld-specific/no/{domain_reference}/applicant-declaration": {
1278
+ parameters: {
1279
+ query?: never;
1280
+ header?: never;
1281
+ path?: never;
1282
+ cookie?: never;
1283
+ };
1284
+ get?: never;
1285
+ put?: never;
1286
+ /**
1287
+ * Submit the .no applicant declaration on behalf of the subscriber
1288
+ * @description Records the applicant declaration signature collected by the registrar (e.g. via Norid's own signing tool) and queues the actual registration at Norid, without the registrant email round-trip.
1289
+ */
1290
+ post: operations["submit_norid_declaration_v1_domains_tld_specific_no__domain_reference__applicant_declaration_post"];
1291
+ delete?: never;
1292
+ options?: never;
1293
+ head?: never;
1294
+ patch?: never;
1295
+ trace?: never;
1296
+ };
1297
+ "/v1/domains/tld-specific/no/{domain_reference}/resend-declaration-email": {
1298
+ parameters: {
1299
+ query?: never;
1300
+ header?: never;
1301
+ path?: never;
1302
+ cookie?: never;
1303
+ };
1304
+ get?: never;
1305
+ put?: never;
1306
+ /** Resend the .no applicant declaration email to the registrant */
1307
+ post: operations["resend_norid_declaration_email_v1_domains_tld_specific_no__domain_reference__resend_declaration_email_post"];
1308
+ delete?: never;
1309
+ options?: never;
1310
+ head?: never;
1311
+ patch?: never;
1312
+ trace?: never;
1313
+ };
1256
1314
  "/v1/domains/transfer": {
1257
1315
  parameters: {
1258
1316
  query?: never;
@@ -2735,6 +2793,41 @@ export interface paths {
2735
2793
  patch?: never;
2736
2794
  trace?: never;
2737
2795
  };
2796
+ "/v1/whitelabel-branding": {
2797
+ parameters: {
2798
+ query?: never;
2799
+ header?: never;
2800
+ path?: never;
2801
+ cookie?: never;
2802
+ };
2803
+ /** Get the organization's whitelabel branding config */
2804
+ get: operations["get_whitelabel_branding_v1_whitelabel_branding_get"];
2805
+ put?: never;
2806
+ /** Create the organization's whitelabel branding config */
2807
+ post: operations["create_whitelabel_branding_v1_whitelabel_branding_post"];
2808
+ delete?: never;
2809
+ options?: never;
2810
+ head?: never;
2811
+ patch?: never;
2812
+ trace?: never;
2813
+ };
2814
+ "/v1/whitelabel-branding/recheck": {
2815
+ parameters: {
2816
+ query?: never;
2817
+ header?: never;
2818
+ path?: never;
2819
+ cookie?: never;
2820
+ };
2821
+ get?: never;
2822
+ put?: never;
2823
+ /** Re-run onboarding for the organization's whitelabel branding config */
2824
+ post: operations["recheck_whitelabel_branding_v1_whitelabel_branding_recheck_post"];
2825
+ delete?: never;
2826
+ options?: never;
2827
+ head?: never;
2828
+ patch?: never;
2829
+ trace?: never;
2830
+ };
2738
2831
  }
2739
2832
  export type webhooks = Record<string, never>;
2740
2833
  export interface components {
@@ -4945,7 +5038,7 @@ export interface components {
4945
5038
  * DomainAttributeKey
4946
5039
  * @enum {string}
4947
5040
  */
4948
- DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "nic_it_compliance_confirmation" | "travel_industry_acknowledgement" | "verification_required" | "de_general_request_contact" | "de_abuse_contact" | "nor_id_applicant_version" | "nor_id_applicant_accept_name" | "nor_id_applicant_accept_date";
5041
+ DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "nic_it_compliance_confirmation" | "travel_industry_acknowledgement" | "verification_required" | "de_general_request_contact" | "de_abuse_contact" | "nor_id_applicant_version" | "nor_id_applicant_accept_name" | "nor_id_applicant_accept_date" | "nor_id_declaration" | "nor_id_declaration_token";
4949
5042
  /** DomainAvailability */
4950
5043
  DomainAvailability: {
4951
5044
  /** Domain */
@@ -8559,6 +8652,83 @@ export interface components {
8559
8652
  */
8560
8653
  ip_addresses?: string[];
8561
8654
  };
8655
+ /** NorIdDeclarationConfirmRequest */
8656
+ NorIdDeclarationConfirmRequest: {
8657
+ /**
8658
+ * Accept Name
8659
+ * @description The full name of the person signing the applicant declaration. For private individuals this is the subscriber personally; for organizations it must be an authorized representative.
8660
+ */
8661
+ accept_name: string;
8662
+ };
8663
+ /** NorIdDeclarationResponse */
8664
+ NorIdDeclarationResponse: {
8665
+ /**
8666
+ * Declaration Contract Text
8667
+ * @description The fixed Norwegian declaration contract text
8668
+ */
8669
+ declaration_contract_text: string;
8670
+ /**
8671
+ * Declaration Header
8672
+ * @description The fixed Norwegian declaration header
8673
+ */
8674
+ declaration_header: string;
8675
+ /**
8676
+ * Declaration Introduction
8677
+ * @description The fixed Norwegian declaration introduction
8678
+ */
8679
+ declaration_introduction: string;
8680
+ /**
8681
+ * Declaration Version
8682
+ * @description The applicant declaration text version
8683
+ */
8684
+ declaration_version: string;
8685
+ /**
8686
+ * Domain Name
8687
+ * @description The domain name the declaration applies to
8688
+ */
8689
+ domain_name: string;
8690
+ /**
8691
+ * Expires On
8692
+ * Format: date-time
8693
+ * @description When the unconfirmed create request expires
8694
+ */
8695
+ expires_on: Date;
8696
+ /**
8697
+ * Identity Type
8698
+ * @description The subscriber identity type
8699
+ */
8700
+ identity_type?: string | null;
8701
+ /**
8702
+ * Identity Value
8703
+ * @description The subscriber identity (organization number or Person-ID)
8704
+ */
8705
+ identity_value?: string | null;
8706
+ /** @description The declaration status */
8707
+ status: components["schemas"]["NorIdDeclarationStatus"];
8708
+ /**
8709
+ * Subscriber Name
8710
+ * @description The domain name subscriber (registrant)
8711
+ */
8712
+ subscriber_name: string;
8713
+ };
8714
+ /**
8715
+ * NorIdDeclarationStatus
8716
+ * @enum {string}
8717
+ */
8718
+ NorIdDeclarationStatus: "pending" | "confirmed" | "completed" | "expired" | "failed";
8719
+ /** NorIdResellerDeclarationRequest */
8720
+ NorIdResellerDeclarationRequest: {
8721
+ /**
8722
+ * Accept Date
8723
+ * @description UTC timestamp of the declaration signature. Only provide it when the declaration was signed out-of-band (e.g. via Norid's own tool); defaults to the submission time.
8724
+ */
8725
+ accept_date?: Date | null;
8726
+ /**
8727
+ * Accept Name
8728
+ * @description The full name of the person signing the applicant declaration. For private individuals this is the subscriber personally; for organizations it must be an authorized representative.
8729
+ */
8730
+ accept_name: string;
8731
+ };
8562
8732
  /**
8563
8733
  * ObjectEventType
8564
8734
  * @enum {string}
@@ -9935,6 +10105,26 @@ export interface components {
9935
10105
  /** Problem type */
9936
10106
  type: string;
9937
10107
  };
10108
+ /** ProductCreateRes */
10109
+ ProductCreateRes: {
10110
+ /**
10111
+ * Product Name
10112
+ * @description The product name
10113
+ */
10114
+ product_name: string;
10115
+ /**
10116
+ * Subscribable Id
10117
+ * @description The created resource ID
10118
+ */
10119
+ subscribable_id: string;
10120
+ /**
10121
+ * Subscription Id
10122
+ * Format: typeid
10123
+ * @description The created subscription ID
10124
+ * @example subscription_01h45ytscbebyvny4gc8cr8ma2
10125
+ */
10126
+ subscription_id: TypeId<"subscription">;
10127
+ };
9938
10128
  /**
9939
10129
  * Protocol
9940
10130
  * @enum {string}
@@ -11762,6 +11952,69 @@ export interface components {
11762
11952
  /** Unique */
11763
11953
  unique: number;
11764
11954
  };
11955
+ /**
11956
+ * WhitelabelBrandingCreate
11957
+ * @description Public create request body. The owning org comes from auth context, and
11958
+ * `verification_domain` is derived server-side (the registrable domain of `hostname`),
11959
+ * so neither is accepted here. Both hostnames must resolve to the same registrable
11960
+ * domain (checked server-side in WhitelabelBrandingService.create).
11961
+ */
11962
+ WhitelabelBrandingCreate: {
11963
+ /**
11964
+ * Auth Hostname
11965
+ * @description Auth/login hostname served by Keycloak (e.g. auth.customer.com)
11966
+ */
11967
+ auth_hostname: string;
11968
+ /**
11969
+ * Hostname
11970
+ * @description Dashboard hostname the customer wants to brand (e.g. dash.customer.com)
11971
+ */
11972
+ hostname: string;
11973
+ };
11974
+ /**
11975
+ * WhitelabelBrandingResponse
11976
+ * @description Public read shape for an organization's whitelabel branding config.
11977
+ */
11978
+ WhitelabelBrandingResponse: {
11979
+ /** Auth Hostname */
11980
+ auth_hostname: string;
11981
+ /**
11982
+ * Created On
11983
+ * Format: date-time
11984
+ */
11985
+ created_on: Date;
11986
+ /** Failure Reason */
11987
+ failure_reason: string | null;
11988
+ /** Hostname */
11989
+ hostname: string;
11990
+ /** Keycloak Client Id */
11991
+ keycloak_client_id: string | null;
11992
+ onboarding_status: components["schemas"]["WhitelabelOnboardingStatus"];
11993
+ /**
11994
+ * Organization Id
11995
+ * Format: typeid
11996
+ * @example organization_01h45ytscbebyvny4gc8cr8ma2
11997
+ */
11998
+ organization_id: TypeId<"organization">;
11999
+ /**
12000
+ * Updated On
12001
+ * Format: date-time
12002
+ */
12003
+ updated_on: Date;
12004
+ /** Verification Domain */
12005
+ verification_domain: string;
12006
+ /**
12007
+ * Whitelabel Branding Id
12008
+ * Format: typeid
12009
+ * @example wlb_01h45ytscbebyvny4gc8cr8ma2
12010
+ */
12011
+ whitelabel_branding_id: TypeId<"wlb">;
12012
+ };
12013
+ /**
12014
+ * WhitelabelOnboardingStatus
12015
+ * @enum {string}
12016
+ */
12017
+ WhitelabelOnboardingStatus: "pending_domain_verification" | "verifying" | "provisioning" | "active" | "failed";
11765
12018
  /** WhoisBase */
11766
12019
  WhoisBase: {
11767
12020
  /**
@@ -18472,6 +18725,293 @@ export interface operations {
18472
18725
  };
18473
18726
  };
18474
18727
  };
18728
+ get_norid_declaration_by_token_v1_domains_tld_specific_no_applicant_declaration_get: {
18729
+ parameters: {
18730
+ query: {
18731
+ token: string;
18732
+ };
18733
+ header?: {
18734
+ /**
18735
+ * @description Opt in to RFC 3339 datetime serialization. When set to `rfc3339`, response datetimes are normalized to UTC and serialized with a `Z` suffix. This is opt-in until the announced default cutover date, after which RFC 3339 becomes the default and this header is accepted as a no-op. Any other value or omission uses the current default serialization.
18736
+ * @example rfc3339
18737
+ */
18738
+ "X-Datetime-Format"?: components["parameters"]["DatetimeFormatHeader"];
18739
+ };
18740
+ path?: never;
18741
+ cookie?: never;
18742
+ };
18743
+ requestBody?: never;
18744
+ responses: {
18745
+ /** @description Successful Response */
18746
+ 200: {
18747
+ headers: {
18748
+ [name: string]: unknown;
18749
+ };
18750
+ content: {
18751
+ "application/json": components["schemas"]["NorIdDeclarationResponse"];
18752
+ };
18753
+ };
18754
+ /** @description Not Found */
18755
+ 404: {
18756
+ headers: {
18757
+ [name: string]: unknown;
18758
+ };
18759
+ content: {
18760
+ /** @example {
18761
+ * "code": "ERROR_NORID_DECLARATION_NOT_FOUND",
18762
+ * "detail": "Additional error context.",
18763
+ * "status": 404,
18764
+ * "title": "Domain Management Error",
18765
+ * "type": "nor-id-declaration-not-found"
18766
+ * } */
18767
+ "application/problem+json": components["schemas"]["Problem"];
18768
+ };
18769
+ };
18770
+ /** @description Validation Error */
18771
+ 422: {
18772
+ headers: {
18773
+ [name: string]: unknown;
18774
+ };
18775
+ content: {
18776
+ "application/problem+json": components["schemas"]["HTTPValidationError"];
18777
+ };
18778
+ };
18779
+ };
18780
+ };
18781
+ confirm_norid_declaration_by_token_v1_domains_tld_specific_no_applicant_declaration_put: {
18782
+ parameters: {
18783
+ query: {
18784
+ token: string;
18785
+ };
18786
+ header?: {
18787
+ /**
18788
+ * @description Opt in to RFC 3339 datetime serialization. When set to `rfc3339`, response datetimes are normalized to UTC and serialized with a `Z` suffix. This is opt-in until the announced default cutover date, after which RFC 3339 becomes the default and this header is accepted as a no-op. Any other value or omission uses the current default serialization.
18789
+ * @example rfc3339
18790
+ */
18791
+ "X-Datetime-Format"?: components["parameters"]["DatetimeFormatHeader"];
18792
+ };
18793
+ path?: never;
18794
+ cookie?: never;
18795
+ };
18796
+ requestBody: {
18797
+ content: {
18798
+ "application/json": components["schemas"]["NorIdDeclarationConfirmRequest"];
18799
+ };
18800
+ };
18801
+ responses: {
18802
+ /** @description Successful Response */
18803
+ 204: {
18804
+ headers: {
18805
+ [name: string]: unknown;
18806
+ };
18807
+ content?: never;
18808
+ };
18809
+ /** @description Bad Request */
18810
+ 400: {
18811
+ headers: {
18812
+ [name: string]: unknown;
18813
+ };
18814
+ content: {
18815
+ /** @example {
18816
+ * "code": "ERROR_NORID_DECLARATION_EXPIRED",
18817
+ * "detail": "The applicant declaration request has expired",
18818
+ * "domain_name": "Additional error context.",
18819
+ * "status": 400,
18820
+ * "title": "Domain Management Error",
18821
+ * "type": "nor-id-declaration-expired"
18822
+ * } */
18823
+ "application/problem+json": components["schemas"]["Problem"];
18824
+ };
18825
+ };
18826
+ /** @description Not Found */
18827
+ 404: {
18828
+ headers: {
18829
+ [name: string]: unknown;
18830
+ };
18831
+ content: {
18832
+ /** @example {
18833
+ * "code": "ERROR_NORID_DECLARATION_NOT_FOUND",
18834
+ * "detail": "Additional error context.",
18835
+ * "status": 404,
18836
+ * "title": "Domain Management Error",
18837
+ * "type": "nor-id-declaration-not-found"
18838
+ * } */
18839
+ "application/problem+json": components["schemas"]["Problem"];
18840
+ };
18841
+ };
18842
+ /** @description Conflict */
18843
+ 409: {
18844
+ headers: {
18845
+ [name: string]: unknown;
18846
+ };
18847
+ content: {
18848
+ /** @example {
18849
+ * "code": "ERROR_NORID_DECLARATION_STATE",
18850
+ * "detail": "The applicant declaration is not in a valid state",
18851
+ * "domain_name": "Additional error context.",
18852
+ * "status": 409,
18853
+ * "title": "Domain Management Error",
18854
+ * "type": "nor-id-declaration-state"
18855
+ * } */
18856
+ "application/problem+json": components["schemas"]["Problem"];
18857
+ };
18858
+ };
18859
+ /** @description Validation Error */
18860
+ 422: {
18861
+ headers: {
18862
+ [name: string]: unknown;
18863
+ };
18864
+ content: {
18865
+ "application/problem+json": components["schemas"]["HTTPValidationError"];
18866
+ };
18867
+ };
18868
+ };
18869
+ };
18870
+ submit_norid_declaration_v1_domains_tld_specific_no__domain_reference__applicant_declaration_post: {
18871
+ parameters: {
18872
+ query?: never;
18873
+ header?: {
18874
+ /**
18875
+ * @description Opt in to RFC 3339 datetime serialization. When set to `rfc3339`, response datetimes are normalized to UTC and serialized with a `Z` suffix. This is opt-in until the announced default cutover date, after which RFC 3339 becomes the default and this header is accepted as a no-op. Any other value or omission uses the current default serialization.
18876
+ * @example rfc3339
18877
+ */
18878
+ "X-Datetime-Format"?: components["parameters"]["DatetimeFormatHeader"];
18879
+ };
18880
+ path: {
18881
+ domain_reference: TypeId<"domain"> | string;
18882
+ };
18883
+ cookie?: never;
18884
+ };
18885
+ requestBody: {
18886
+ content: {
18887
+ "application/json": components["schemas"]["NorIdResellerDeclarationRequest"];
18888
+ };
18889
+ };
18890
+ responses: {
18891
+ /** @description Successful Response */
18892
+ 202: {
18893
+ headers: {
18894
+ [name: string]: unknown;
18895
+ };
18896
+ content: {
18897
+ "application/json": components["schemas"]["NorIdDeclarationResponse"];
18898
+ };
18899
+ };
18900
+ /** @description Bad Request */
18901
+ 400: {
18902
+ headers: {
18903
+ [name: string]: unknown;
18904
+ };
18905
+ content: {
18906
+ /** @example {
18907
+ * "code": "ERROR_NORID_DECLARATION_EXPIRED",
18908
+ * "detail": "The applicant declaration request has expired",
18909
+ * "domain_name": "Additional error context.",
18910
+ * "status": 400,
18911
+ * "title": "Domain Management Error",
18912
+ * "type": "nor-id-declaration-expired"
18913
+ * } */
18914
+ "application/problem+json": components["schemas"]["Problem"];
18915
+ };
18916
+ };
18917
+ /** @description Not Found */
18918
+ 404: {
18919
+ headers: {
18920
+ [name: string]: unknown;
18921
+ };
18922
+ content: {
18923
+ "application/problem+json": components["schemas"]["Problem"];
18924
+ };
18925
+ };
18926
+ /** @description Conflict */
18927
+ 409: {
18928
+ headers: {
18929
+ [name: string]: unknown;
18930
+ };
18931
+ content: {
18932
+ /** @example {
18933
+ * "code": "ERROR_NORID_DECLARATION_STATE",
18934
+ * "detail": "The applicant declaration is not in a valid state",
18935
+ * "domain_name": "Additional error context.",
18936
+ * "status": 409,
18937
+ * "title": "Domain Management Error",
18938
+ * "type": "nor-id-declaration-state"
18939
+ * } */
18940
+ "application/problem+json": components["schemas"]["Problem"];
18941
+ };
18942
+ };
18943
+ /** @description Validation Error */
18944
+ 422: {
18945
+ headers: {
18946
+ [name: string]: unknown;
18947
+ };
18948
+ content: {
18949
+ "application/problem+json": components["schemas"]["HTTPValidationError"];
18950
+ };
18951
+ };
18952
+ };
18953
+ };
18954
+ resend_norid_declaration_email_v1_domains_tld_specific_no__domain_reference__resend_declaration_email_post: {
18955
+ parameters: {
18956
+ query?: never;
18957
+ header?: {
18958
+ /**
18959
+ * @description Opt in to RFC 3339 datetime serialization. When set to `rfc3339`, response datetimes are normalized to UTC and serialized with a `Z` suffix. This is opt-in until the announced default cutover date, after which RFC 3339 becomes the default and this header is accepted as a no-op. Any other value or omission uses the current default serialization.
18960
+ * @example rfc3339
18961
+ */
18962
+ "X-Datetime-Format"?: components["parameters"]["DatetimeFormatHeader"];
18963
+ };
18964
+ path: {
18965
+ domain_reference: TypeId<"domain"> | string;
18966
+ };
18967
+ cookie?: never;
18968
+ };
18969
+ requestBody?: never;
18970
+ responses: {
18971
+ /** @description Successful Response */
18972
+ 204: {
18973
+ headers: {
18974
+ [name: string]: unknown;
18975
+ };
18976
+ content?: never;
18977
+ };
18978
+ /** @description Not Found */
18979
+ 404: {
18980
+ headers: {
18981
+ [name: string]: unknown;
18982
+ };
18983
+ content: {
18984
+ "application/problem+json": components["schemas"]["Problem"];
18985
+ };
18986
+ };
18987
+ /** @description Conflict */
18988
+ 409: {
18989
+ headers: {
18990
+ [name: string]: unknown;
18991
+ };
18992
+ content: {
18993
+ /** @example {
18994
+ * "code": "ERROR_NORID_DECLARATION_STATE",
18995
+ * "detail": "The applicant declaration is not in a valid state",
18996
+ * "domain_name": "Additional error context.",
18997
+ * "status": 409,
18998
+ * "title": "Domain Management Error",
18999
+ * "type": "nor-id-declaration-state"
19000
+ * } */
19001
+ "application/problem+json": components["schemas"]["Problem"];
19002
+ };
19003
+ };
19004
+ /** @description Validation Error */
19005
+ 422: {
19006
+ headers: {
19007
+ [name: string]: unknown;
19008
+ };
19009
+ content: {
19010
+ "application/problem+json": components["schemas"]["HTTPValidationError"];
19011
+ };
19012
+ };
19013
+ };
19014
+ };
18475
19015
  transfer_domain_v1_domains_transfer_post: {
18476
19016
  parameters: {
18477
19017
  query?: never;
@@ -25139,4 +25679,113 @@ export interface operations {
25139
25679
  };
25140
25680
  };
25141
25681
  };
25682
+ get_whitelabel_branding_v1_whitelabel_branding_get: {
25683
+ parameters: {
25684
+ query?: never;
25685
+ header?: {
25686
+ /**
25687
+ * @description Opt in to RFC 3339 datetime serialization. When set to `rfc3339`, response datetimes are normalized to UTC and serialized with a `Z` suffix. This is opt-in until the announced default cutover date, after which RFC 3339 becomes the default and this header is accepted as a no-op. Any other value or omission uses the current default serialization.
25688
+ * @example rfc3339
25689
+ */
25690
+ "X-Datetime-Format"?: components["parameters"]["DatetimeFormatHeader"];
25691
+ };
25692
+ path?: never;
25693
+ cookie?: never;
25694
+ };
25695
+ requestBody?: never;
25696
+ responses: {
25697
+ /** @description Successful Response */
25698
+ 200: {
25699
+ headers: {
25700
+ [name: string]: unknown;
25701
+ };
25702
+ content: {
25703
+ "application/json": components["schemas"]["WhitelabelBrandingResponse"];
25704
+ };
25705
+ };
25706
+ /** @description Validation Error */
25707
+ 422: {
25708
+ headers: {
25709
+ [name: string]: unknown;
25710
+ };
25711
+ content: {
25712
+ "application/problem+json": components["schemas"]["HTTPValidationError"];
25713
+ };
25714
+ };
25715
+ };
25716
+ };
25717
+ create_whitelabel_branding_v1_whitelabel_branding_post: {
25718
+ parameters: {
25719
+ query?: never;
25720
+ header?: {
25721
+ /**
25722
+ * @description Opt in to RFC 3339 datetime serialization. When set to `rfc3339`, response datetimes are normalized to UTC and serialized with a `Z` suffix. This is opt-in until the announced default cutover date, after which RFC 3339 becomes the default and this header is accepted as a no-op. Any other value or omission uses the current default serialization.
25723
+ * @example rfc3339
25724
+ */
25725
+ "X-Datetime-Format"?: components["parameters"]["DatetimeFormatHeader"];
25726
+ };
25727
+ path?: never;
25728
+ cookie?: never;
25729
+ };
25730
+ requestBody: {
25731
+ content: {
25732
+ "application/json": components["schemas"]["WhitelabelBrandingCreate"];
25733
+ };
25734
+ };
25735
+ responses: {
25736
+ /** @description Successful Response */
25737
+ 202: {
25738
+ headers: {
25739
+ [name: string]: unknown;
25740
+ };
25741
+ content: {
25742
+ "application/json": components["schemas"]["ProductCreateRes"];
25743
+ };
25744
+ };
25745
+ /** @description Validation Error */
25746
+ 422: {
25747
+ headers: {
25748
+ [name: string]: unknown;
25749
+ };
25750
+ content: {
25751
+ "application/problem+json": components["schemas"]["HTTPValidationError"];
25752
+ };
25753
+ };
25754
+ };
25755
+ };
25756
+ recheck_whitelabel_branding_v1_whitelabel_branding_recheck_post: {
25757
+ parameters: {
25758
+ query?: never;
25759
+ header?: {
25760
+ /**
25761
+ * @description Opt in to RFC 3339 datetime serialization. When set to `rfc3339`, response datetimes are normalized to UTC and serialized with a `Z` suffix. This is opt-in until the announced default cutover date, after which RFC 3339 becomes the default and this header is accepted as a no-op. Any other value or omission uses the current default serialization.
25762
+ * @example rfc3339
25763
+ */
25764
+ "X-Datetime-Format"?: components["parameters"]["DatetimeFormatHeader"];
25765
+ };
25766
+ path?: never;
25767
+ cookie?: never;
25768
+ };
25769
+ requestBody?: never;
25770
+ responses: {
25771
+ /** @description Successful Response */
25772
+ 202: {
25773
+ headers: {
25774
+ [name: string]: unknown;
25775
+ };
25776
+ content: {
25777
+ "application/json": components["schemas"]["WhitelabelBrandingResponse"];
25778
+ };
25779
+ };
25780
+ /** @description Validation Error */
25781
+ 422: {
25782
+ headers: {
25783
+ [name: string]: unknown;
25784
+ };
25785
+ content: {
25786
+ "application/problem+json": components["schemas"]["HTTPValidationError"];
25787
+ };
25788
+ };
25789
+ };
25790
+ };
25142
25791
  }