@opusdns/api 1.39.0 → 1.40.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": "^1.2.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.39.0",
6
+ "version": "1.40.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -318,7 +318,6 @@ import type {
318
318
  ParkingSignupStatus,
319
319
  ParkingStatistics,
320
320
  ParkingTotalMetrics,
321
- PasswordUpdate,
322
321
  Period,
323
322
  PlatformStatsBucket,
324
323
  PremiumDomainsBase,
@@ -4370,12 +4369,6 @@ export const KEYS_PARKING_TOTAL_METRICS = [
4370
4369
  KEY_PARKING_TOTAL_METRICS_TOTAL_METRICS,
4371
4370
  ] as const satisfies (keyof ParkingTotalMetrics)[];
4372
4371
 
4373
- export const KEY_PASSWORD_UPDATE_NEW_PASSWORD = 'new_password' satisfies keyof PasswordUpdate;
4374
-
4375
- export const KEYS_PASSWORD_UPDATE = [
4376
- KEY_PASSWORD_UPDATE_NEW_PASSWORD,
4377
- ] as const satisfies (keyof PasswordUpdate)[];
4378
-
4379
4372
  export const KEY_PERIOD_UNIT = 'unit' satisfies keyof Period;
4380
4373
  export const KEY_PERIOD_VALUE = 'value' satisfies keyof Period;
4381
4374
 
@@ -43,7 +43,6 @@ import type {
43
43
  OrganizationCreate,
44
44
  OrganizationUpdate,
45
45
  ParkingSignupRequest,
46
- PasswordUpdate,
47
46
  PublicAuthRequestForm,
48
47
  PublicRoleAssignmentRequest,
49
48
  TagCreate,
@@ -1027,11 +1026,6 @@ export type GET_UsersMe_Request = {
1027
1026
  };
1028
1027
  export type GET_UsersMe_Request_Query = GET_UsersMe_Request['parameters']['query'];
1029
1028
 
1030
- export type PATCH_UsersMePasswordReset_Request = {
1031
- requestBody: PasswordUpdate;
1032
- };
1033
- export type PATCH_UsersMePasswordReset_Request_Body = PATCH_UsersMePasswordReset_Request['requestBody'];
1034
-
1035
1029
  export type GET_VanityNameserverSets_Request = {
1036
1030
  parameters: operations['list_vanity_nameserver_sets_v1_vanity_nameserver_sets_get']['parameters'];
1037
1031
  };
@@ -962,11 +962,6 @@ export type PATCH_UsersByUserId_Response = PATCH_UsersByUserId_Response_200 | PA
962
962
  export type PATCH_UsersByUserId_Response_200 = UserPublicWithAttributes;
963
963
  export type PATCH_UsersByUserId_Response_422 = HTTPValidationError;
964
964
 
965
- export type PATCH_UsersMePasswordReset_Response = PATCH_UsersMePasswordReset_Response_401 | PATCH_UsersMePasswordReset_Response_422;
966
-
967
- export type PATCH_UsersMePasswordReset_Response_401 = Problem;
968
- export type PATCH_UsersMePasswordReset_Response_422 = HTTPValidationError;
969
-
970
965
  export type PATCH_VanityNameserverSetsBySetIdDefault_Response = PATCH_VanityNameserverSetsBySetIdDefault_Response_200 | PATCH_VanityNameserverSetsBySetIdDefault_Response_422;
971
966
 
972
967
  export type PATCH_VanityNameserverSetsBySetIdDefault_Response_200 = SetVanityNameserverSetDefaultRes;
@@ -414,7 +414,6 @@ export type ParkingSignupStatus = components['schemas']['ParkingSignupStatusResp
414
414
  export type ParkingSortField = components['schemas']['ParkingSortField'];
415
415
  export type ParkingStatistics = components['schemas']['ParkingStatistics'];
416
416
  export type ParkingTotalMetrics = components['schemas']['ParkingTotalMetricsResponse'];
417
- export type PasswordUpdate = components['schemas']['PasswordUpdate'];
418
417
  export type PatchOp = components['schemas']['PatchOp'];
419
418
  export type Period = components['schemas']['Period'];
420
419
  export type PeriodList = components['schemas']['PeriodList'];
package/src/openapi.yaml CHANGED
@@ -10759,17 +10759,6 @@ components:
10759
10759
  - total_metrics
10760
10760
  title: ParkingTotalMetricsResponse
10761
10761
  type: object
10762
- PasswordUpdate:
10763
- properties:
10764
- new_password:
10765
- examples:
10766
- - correcthorsebatterystaple
10767
- title: New Password
10768
- type: string
10769
- required:
10770
- - new_password
10771
- title: PasswordUpdate
10772
- type: object
10773
10762
  PatchOp:
10774
10763
  enum:
10775
10764
  - upsert
@@ -13937,7 +13926,7 @@ info:
13937
13926
  \n\n"
13938
13927
  summary: OpusDNS - your gateway to a seamless domain management experience.
13939
13928
  title: OpusDNS API
13940
- version: 2026-06-25-204413
13929
+ version: 2026-06-29-123437
13941
13930
  x-logo:
13942
13931
  altText: OpusDNS API Reference
13943
13932
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -28763,43 +28752,6 @@ paths:
28763
28752
  - user
28764
28753
  x-required-permissions:
28765
28754
  - users:read
28766
- /v1/users/me/password-reset:
28767
- patch:
28768
- operationId: change_password_v1_users_me_password_reset_patch
28769
- requestBody:
28770
- content:
28771
- application/json:
28772
- schema:
28773
- $ref: '#/components/schemas/PasswordUpdate'
28774
- required: true
28775
- responses:
28776
- '204':
28777
- description: Successful Response
28778
- '401':
28779
- content:
28780
- application/problem+json:
28781
- example:
28782
- code: ERROR_AUTHENTICATION
28783
- detail: Additional error context.
28784
- status: 401
28785
- title: Authentication Error
28786
- type: authentication
28787
- schema:
28788
- $ref: '#/components/schemas/Problem'
28789
- description: Unauthorized
28790
- '422':
28791
- content:
28792
- application/problem+json:
28793
- schema:
28794
- $ref: '#/components/schemas/HTTPValidationError'
28795
- description: Validation Error
28796
- security:
28797
- - OAuth2PasswordBearer: []
28798
- summary: Change Password
28799
- tags:
28800
- - user
28801
- x-required-permissions:
28802
- - users:manage
28803
28755
  /v1/users/{user_id}:
28804
28756
  delete:
28805
28757
  description: Delete a user by ID
package/src/schema.d.ts CHANGED
@@ -2508,23 +2508,6 @@ export interface paths {
2508
2508
  patch?: never;
2509
2509
  trace?: never;
2510
2510
  };
2511
- "/v1/users/me/password-reset": {
2512
- parameters: {
2513
- query?: never;
2514
- header?: never;
2515
- path?: never;
2516
- cookie?: never;
2517
- };
2518
- get?: never;
2519
- put?: never;
2520
- post?: never;
2521
- delete?: never;
2522
- options?: never;
2523
- head?: never;
2524
- /** Change Password */
2525
- patch: operations["change_password_v1_users_me_password_reset_patch"];
2526
- trace?: never;
2527
- };
2528
2511
  "/v1/users/{user_id}": {
2529
2512
  parameters: {
2530
2513
  query?: never;
@@ -9861,14 +9844,6 @@ export interface components {
9861
9844
  /** @description Aggregated metrics for all parking entries */
9862
9845
  total_metrics: components["schemas"]["ParkingStatistics"];
9863
9846
  };
9864
- /** PasswordUpdate */
9865
- PasswordUpdate: {
9866
- /**
9867
- * New Password
9868
- * @example correcthorsebatterystaple
9869
- */
9870
- new_password: string;
9871
- };
9872
9847
  /**
9873
9848
  * PatchOp
9874
9849
  * @enum {string}
@@ -23240,53 +23215,6 @@ export interface operations {
23240
23215
  };
23241
23216
  };
23242
23217
  };
23243
- change_password_v1_users_me_password_reset_patch: {
23244
- parameters: {
23245
- query?: never;
23246
- header?: never;
23247
- path?: never;
23248
- cookie?: never;
23249
- };
23250
- requestBody: {
23251
- content: {
23252
- "application/json": components["schemas"]["PasswordUpdate"];
23253
- };
23254
- };
23255
- responses: {
23256
- /** @description Successful Response */
23257
- 204: {
23258
- headers: {
23259
- [name: string]: unknown;
23260
- };
23261
- content?: never;
23262
- };
23263
- /** @description Unauthorized */
23264
- 401: {
23265
- headers: {
23266
- [name: string]: unknown;
23267
- };
23268
- content: {
23269
- /** @example {
23270
- * "code": "ERROR_AUTHENTICATION",
23271
- * "detail": "Additional error context.",
23272
- * "status": 401,
23273
- * "title": "Authentication Error",
23274
- * "type": "authentication"
23275
- * } */
23276
- "application/problem+json": components["schemas"]["Problem"];
23277
- };
23278
- };
23279
- /** @description Validation Error */
23280
- 422: {
23281
- headers: {
23282
- [name: string]: unknown;
23283
- };
23284
- content: {
23285
- "application/problem+json": components["schemas"]["HTTPValidationError"];
23286
- };
23287
- };
23288
- };
23289
- };
23290
23218
  get_user_v1_users__user_id__get: {
23291
23219
  parameters: {
23292
23220
  query?: {