@opusdns/api 0.247.0 → 0.248.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.247.0",
6
+ "version": "0.248.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -32451,7 +32451,7 @@ export const KEY_PUBLIC_AUTH_REQUEST_FORM_CLIENT_ID: keyof PublicAuthRequestForm
32451
32451
  /**
32452
32452
  * Client Secret
32453
32453
  *
32454
- * Client secret for authentication.
32454
+ * Your client secret.
32455
32455
  *
32456
32456
  * @type {string}
32457
32457
  *
package/src/openapi.yaml CHANGED
@@ -6706,13 +6706,19 @@ components:
6706
6706
  OrganizationTokenResponse:
6707
6707
  properties:
6708
6708
  access_token:
6709
+ examples:
6710
+ - eyJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJodHRwczovL2FwaS5vcHVzZG5zLmNvbSJ9.signature
6709
6711
  title: Access Token
6710
6712
  type: string
6711
6713
  expires_in:
6714
+ examples:
6715
+ - 3600
6712
6716
  title: Expires In
6713
6717
  type: integer
6714
6718
  token_type:
6715
6719
  default: Bearer
6720
+ examples:
6721
+ - Bearer
6716
6722
  title: Token Type
6717
6723
  type: string
6718
6724
  required:
@@ -8099,12 +8105,16 @@ components:
8099
8105
  type: string
8100
8106
  x-typeid-prefix: organization
8101
8107
  client_secret:
8102
- description: Client secret for authentication.
8108
+ description: Your client secret.
8109
+ examples:
8110
+ - TLKI8chiHU1s123VUgEAMLZDvX6cVW
8103
8111
  title: Client Secret
8104
8112
  type: string
8105
8113
  grant_type:
8106
8114
  description: The grant type for the authentication request (should always
8107
8115
  be 'client_credentials').
8116
+ examples:
8117
+ - client_credentials
8108
8118
  title: Grant Type
8109
8119
  type: string
8110
8120
  required:
@@ -9338,19 +9348,29 @@ components:
9338
9348
  UserTokenResponse:
9339
9349
  properties:
9340
9350
  access_token:
9351
+ examples:
9352
+ - eyJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJodHRwczovL2FwaS5vcHVzZG5zLmNvbSJ9.signature
9341
9353
  title: Access Token
9342
9354
  type: string
9343
9355
  expires_in:
9356
+ examples:
9357
+ - 3600
9344
9358
  title: Expires In
9345
9359
  type: integer
9346
9360
  refresh_expires_in:
9361
+ examples:
9362
+ - 86400
9347
9363
  title: Refresh Expires In
9348
9364
  type: integer
9349
9365
  refresh_token:
9366
+ examples:
9367
+ - eyJhbGciOiJSUzI1NiJ9.eyJ0eXBlIjoicmVmcmVzaCJ9.signature
9350
9368
  title: Refresh Token
9351
9369
  type: string
9352
9370
  token_type:
9353
9371
  default: Bearer
9372
+ examples:
9373
+ - Bearer
9354
9374
  title: Token Type
9355
9375
  type: string
9356
9376
  required:
@@ -9762,7 +9782,7 @@ info:
9762
9782
  \n\n"
9763
9783
  summary: OpusDNS - your gateway to a seamless domain management experience.
9764
9784
  title: OpusDNS API
9765
- version: 2026-04-11-180046
9785
+ version: 2026-04-14-081732
9766
9786
  x-logo:
9767
9787
  altText: OpusDNS API Reference
9768
9788
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -10409,7 +10429,6 @@ paths:
10409
10429
  $ref: '#/components/schemas/Problem'
10410
10430
  description: Unauthorized
10411
10431
  security:
10412
- - APIKeyHeader: []
10413
10432
  - OAuth2PasswordBearer: []
10414
10433
  summary: Issue Organization Token
10415
10434
  tags:
package/src/schema.d.ts CHANGED
@@ -6712,13 +6712,20 @@ export interface components {
6712
6712
  OrganizationStatus: "active" | "inactive";
6713
6713
  /** OrganizationTokenResponse */
6714
6714
  OrganizationTokenResponse: {
6715
- /** Access Token */
6715
+ /**
6716
+ * Access Token
6717
+ * @example eyJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJodHRwczovL2FwaS5vcHVzZG5zLmNvbSJ9.signature
6718
+ */
6716
6719
  access_token: string;
6717
- /** Expires In */
6720
+ /**
6721
+ * Expires In
6722
+ * @example 3600
6723
+ */
6718
6724
  expires_in: number;
6719
6725
  /**
6720
6726
  * Token Type
6721
6727
  * @default Bearer
6728
+ * @example Bearer
6722
6729
  */
6723
6730
  token_type: string;
6724
6731
  };
@@ -7586,12 +7593,14 @@ export interface components {
7586
7593
  client_id: TypeId<"organization">;
7587
7594
  /**
7588
7595
  * Client Secret
7589
- * @description Client secret for authentication.
7596
+ * @description Your client secret.
7597
+ * @example TLKI8chiHU1s123VUgEAMLZDvX6cVW
7590
7598
  */
7591
7599
  client_secret: string;
7592
7600
  /**
7593
7601
  * Grant Type
7594
7602
  * @description The grant type for the authentication request (should always be 'client_credentials').
7603
+ * @example client_credentials
7595
7604
  */
7596
7605
  grant_type: string;
7597
7606
  };
@@ -8423,17 +8432,30 @@ export interface components {
8423
8432
  UserStatus: "active" | "inactive";
8424
8433
  /** UserTokenResponse */
8425
8434
  UserTokenResponse: {
8426
- /** Access Token */
8435
+ /**
8436
+ * Access Token
8437
+ * @example eyJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJodHRwczovL2FwaS5vcHVzZG5zLmNvbSJ9.signature
8438
+ */
8427
8439
  access_token: string;
8428
- /** Expires In */
8440
+ /**
8441
+ * Expires In
8442
+ * @example 3600
8443
+ */
8429
8444
  expires_in: number;
8430
- /** Refresh Expires In */
8445
+ /**
8446
+ * Refresh Expires In
8447
+ * @example 86400
8448
+ */
8431
8449
  refresh_expires_in: number;
8432
- /** Refresh Token */
8450
+ /**
8451
+ * Refresh Token
8452
+ * @example eyJhbGciOiJSUzI1NiJ9.eyJ0eXBlIjoicmVmcmVzaCJ9.signature
8453
+ */
8433
8454
  refresh_token: string;
8434
8455
  /**
8435
8456
  * Token Type
8436
8457
  * @default Bearer
8458
+ * @example Bearer
8437
8459
  */
8438
8460
  token_type: string;
8439
8461
  };