@opusdns/api 1.37.0 → 1.38.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.37.0",
6
+ "version": "1.38.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -100,7 +100,6 @@ import type {
100
100
  TimeRange,
101
101
  TransferAckType,
102
102
  UserSortField,
103
- UserStatus,
104
103
  VanityNameserverSetStatusDTO,
105
104
  VanityNsCheckConfidence,
106
105
  VanityNsCheckSeverity,
@@ -1783,16 +1782,6 @@ export const USER_SORT_FIELD_VALUES = [
1783
1782
  'email',
1784
1783
  ] as const satisfies ReadonlyArray<UserSortField>;
1785
1784
 
1786
- export const USER_STATUS = {
1787
- ACTIVE: "active",
1788
- INACTIVE: "inactive",
1789
- } as const satisfies Record<string, UserStatus>;
1790
-
1791
- export const USER_STATUS_VALUES = [
1792
- 'active',
1793
- 'inactive',
1794
- ] as const satisfies ReadonlyArray<UserStatus>;
1795
-
1796
1785
  export const VANITY_NAMESERVER_SET_STATUS_DTO = {
1797
1786
  PROVISIONING: "provisioning",
1798
1787
  ACTIVE: "active",
@@ -5033,7 +5033,6 @@ export const KEYS_TRANSFER_POLICIES_BASE = [
5033
5033
  ] as const satisfies (keyof TransferPoliciesBase)[];
5034
5034
 
5035
5035
  export const KEY_USER_CREATED_ON = 'created_on' satisfies keyof User;
5036
- export const KEY_USER_DELETED_ON = 'deleted_on' satisfies keyof User;
5037
5036
  export const KEY_USER_EMAIL = 'email' satisfies keyof User;
5038
5037
  export const KEY_USER_FIRST_NAME = 'first_name' satisfies keyof User;
5039
5038
  export const KEY_USER_KEYCLOAK_USER_ID = 'keycloak_user_id' satisfies keyof User;
@@ -5041,14 +5040,12 @@ export const KEY_USER_LAST_NAME = 'last_name' satisfies keyof User;
5041
5040
  export const KEY_USER_LOCALE = 'locale' satisfies keyof User;
5042
5041
  export const KEY_USER_ORGANIZATION_ID = 'organization_id' satisfies keyof User;
5043
5042
  export const KEY_USER_PHONE = 'phone' satisfies keyof User;
5044
- export const KEY_USER_STATUS = 'status' satisfies keyof User;
5045
5043
  export const KEY_USER_UPDATED_ON = 'updated_on' satisfies keyof User;
5046
5044
  export const KEY_USER_USER_ID = 'user_id' satisfies keyof User;
5047
5045
  export const KEY_USER_USERNAME = 'username' satisfies keyof User;
5048
5046
 
5049
5047
  export const KEYS_USER = [
5050
5048
  KEY_USER_CREATED_ON,
5051
- KEY_USER_DELETED_ON,
5052
5049
  KEY_USER_EMAIL,
5053
5050
  KEY_USER_FIRST_NAME,
5054
5051
  KEY_USER_KEYCLOAK_USER_ID,
@@ -5056,7 +5053,6 @@ export const KEYS_USER = [
5056
5053
  KEY_USER_LOCALE,
5057
5054
  KEY_USER_ORGANIZATION_ID,
5058
5055
  KEY_USER_PHONE,
5059
- KEY_USER_STATUS,
5060
5056
  KEY_USER_UPDATED_ON,
5061
5057
  KEY_USER_USER_ID,
5062
5058
  KEY_USER_USERNAME,
@@ -5109,42 +5105,36 @@ export const KEYS_USER_CREATE = [
5109
5105
  ] as const satisfies (keyof UserCreate)[];
5110
5106
 
5111
5107
  export const KEY_USER_PUBLIC_CREATED_ON = 'created_on' satisfies keyof UserPublic;
5112
- export const KEY_USER_PUBLIC_DELETED_ON = 'deleted_on' satisfies keyof UserPublic;
5113
5108
  export const KEY_USER_PUBLIC_EMAIL = 'email' satisfies keyof UserPublic;
5114
5109
  export const KEY_USER_PUBLIC_FIRST_NAME = 'first_name' satisfies keyof UserPublic;
5115
5110
  export const KEY_USER_PUBLIC_LAST_NAME = 'last_name' satisfies keyof UserPublic;
5116
5111
  export const KEY_USER_PUBLIC_LOCALE = 'locale' satisfies keyof UserPublic;
5117
5112
  export const KEY_USER_PUBLIC_ORGANIZATION_ID = 'organization_id' satisfies keyof UserPublic;
5118
5113
  export const KEY_USER_PUBLIC_PHONE = 'phone' satisfies keyof UserPublic;
5119
- export const KEY_USER_PUBLIC_STATUS = 'status' satisfies keyof UserPublic;
5120
5114
  export const KEY_USER_PUBLIC_UPDATED_ON = 'updated_on' satisfies keyof UserPublic;
5121
5115
  export const KEY_USER_PUBLIC_USER_ID = 'user_id' satisfies keyof UserPublic;
5122
5116
  export const KEY_USER_PUBLIC_USERNAME = 'username' satisfies keyof UserPublic;
5123
5117
 
5124
5118
  export const KEYS_USER_PUBLIC = [
5125
5119
  KEY_USER_PUBLIC_CREATED_ON,
5126
- KEY_USER_PUBLIC_DELETED_ON,
5127
5120
  KEY_USER_PUBLIC_EMAIL,
5128
5121
  KEY_USER_PUBLIC_FIRST_NAME,
5129
5122
  KEY_USER_PUBLIC_LAST_NAME,
5130
5123
  KEY_USER_PUBLIC_LOCALE,
5131
5124
  KEY_USER_PUBLIC_ORGANIZATION_ID,
5132
5125
  KEY_USER_PUBLIC_PHONE,
5133
- KEY_USER_PUBLIC_STATUS,
5134
5126
  KEY_USER_PUBLIC_UPDATED_ON,
5135
5127
  KEY_USER_PUBLIC_USER_ID,
5136
5128
  KEY_USER_PUBLIC_USERNAME,
5137
5129
  ] as const satisfies (keyof UserPublic)[];
5138
5130
 
5139
5131
  export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_CREATED_ON = 'created_on' satisfies keyof UserPublicWithAttributes;
5140
- export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_DELETED_ON = 'deleted_on' satisfies keyof UserPublicWithAttributes;
5141
5132
  export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_EMAIL = 'email' satisfies keyof UserPublicWithAttributes;
5142
5133
  export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_FIRST_NAME = 'first_name' satisfies keyof UserPublicWithAttributes;
5143
5134
  export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_LAST_NAME = 'last_name' satisfies keyof UserPublicWithAttributes;
5144
5135
  export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_LOCALE = 'locale' satisfies keyof UserPublicWithAttributes;
5145
5136
  export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_ORGANIZATION_ID = 'organization_id' satisfies keyof UserPublicWithAttributes;
5146
5137
  export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_PHONE = 'phone' satisfies keyof UserPublicWithAttributes;
5147
- export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_STATUS = 'status' satisfies keyof UserPublicWithAttributes;
5148
5138
  export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_UPDATED_ON = 'updated_on' satisfies keyof UserPublicWithAttributes;
5149
5139
  export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_USER_ATTRIBUTES = 'user_attributes' satisfies keyof UserPublicWithAttributes;
5150
5140
  export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_USER_ID = 'user_id' satisfies keyof UserPublicWithAttributes;
@@ -5152,14 +5142,12 @@ export const KEY_USER_PUBLIC_WITH_ATTRIBUTES_USERNAME = 'username' satisfies key
5152
5142
 
5153
5143
  export const KEYS_USER_PUBLIC_WITH_ATTRIBUTES = [
5154
5144
  KEY_USER_PUBLIC_WITH_ATTRIBUTES_CREATED_ON,
5155
- KEY_USER_PUBLIC_WITH_ATTRIBUTES_DELETED_ON,
5156
5145
  KEY_USER_PUBLIC_WITH_ATTRIBUTES_EMAIL,
5157
5146
  KEY_USER_PUBLIC_WITH_ATTRIBUTES_FIRST_NAME,
5158
5147
  KEY_USER_PUBLIC_WITH_ATTRIBUTES_LAST_NAME,
5159
5148
  KEY_USER_PUBLIC_WITH_ATTRIBUTES_LOCALE,
5160
5149
  KEY_USER_PUBLIC_WITH_ATTRIBUTES_ORGANIZATION_ID,
5161
5150
  KEY_USER_PUBLIC_WITH_ATTRIBUTES_PHONE,
5162
- KEY_USER_PUBLIC_WITH_ATTRIBUTES_STATUS,
5163
5151
  KEY_USER_PUBLIC_WITH_ATTRIBUTES_UPDATED_ON,
5164
5152
  KEY_USER_PUBLIC_WITH_ATTRIBUTES_USER_ATTRIBUTES,
5165
5153
  KEY_USER_PUBLIC_WITH_ATTRIBUTES_USER_ID,
@@ -5167,7 +5155,6 @@ export const KEYS_USER_PUBLIC_WITH_ATTRIBUTES = [
5167
5155
  ] as const satisfies (keyof UserPublicWithAttributes)[];
5168
5156
 
5169
5157
  export const KEY_USER_PUBLIC_WITH_ROLE_CREATED_ON = 'created_on' satisfies keyof UserPublicWithRole;
5170
- export const KEY_USER_PUBLIC_WITH_ROLE_DELETED_ON = 'deleted_on' satisfies keyof UserPublicWithRole;
5171
5158
  export const KEY_USER_PUBLIC_WITH_ROLE_EMAIL = 'email' satisfies keyof UserPublicWithRole;
5172
5159
  export const KEY_USER_PUBLIC_WITH_ROLE_FIRST_NAME = 'first_name' satisfies keyof UserPublicWithRole;
5173
5160
  export const KEY_USER_PUBLIC_WITH_ROLE_LAST_NAME = 'last_name' satisfies keyof UserPublicWithRole;
@@ -5175,14 +5162,12 @@ export const KEY_USER_PUBLIC_WITH_ROLE_LOCALE = 'locale' satisfies keyof UserPub
5175
5162
  export const KEY_USER_PUBLIC_WITH_ROLE_ORGANIZATION_ID = 'organization_id' satisfies keyof UserPublicWithRole;
5176
5163
  export const KEY_USER_PUBLIC_WITH_ROLE_PHONE = 'phone' satisfies keyof UserPublicWithRole;
5177
5164
  export const KEY_USER_PUBLIC_WITH_ROLE_ROLE = 'role' satisfies keyof UserPublicWithRole;
5178
- export const KEY_USER_PUBLIC_WITH_ROLE_STATUS = 'status' satisfies keyof UserPublicWithRole;
5179
5165
  export const KEY_USER_PUBLIC_WITH_ROLE_UPDATED_ON = 'updated_on' satisfies keyof UserPublicWithRole;
5180
5166
  export const KEY_USER_PUBLIC_WITH_ROLE_USER_ID = 'user_id' satisfies keyof UserPublicWithRole;
5181
5167
  export const KEY_USER_PUBLIC_WITH_ROLE_USERNAME = 'username' satisfies keyof UserPublicWithRole;
5182
5168
 
5183
5169
  export const KEYS_USER_PUBLIC_WITH_ROLE = [
5184
5170
  KEY_USER_PUBLIC_WITH_ROLE_CREATED_ON,
5185
- KEY_USER_PUBLIC_WITH_ROLE_DELETED_ON,
5186
5171
  KEY_USER_PUBLIC_WITH_ROLE_EMAIL,
5187
5172
  KEY_USER_PUBLIC_WITH_ROLE_FIRST_NAME,
5188
5173
  KEY_USER_PUBLIC_WITH_ROLE_LAST_NAME,
@@ -5190,7 +5175,6 @@ export const KEYS_USER_PUBLIC_WITH_ROLE = [
5190
5175
  KEY_USER_PUBLIC_WITH_ROLE_ORGANIZATION_ID,
5191
5176
  KEY_USER_PUBLIC_WITH_ROLE_PHONE,
5192
5177
  KEY_USER_PUBLIC_WITH_ROLE_ROLE,
5193
- KEY_USER_PUBLIC_WITH_ROLE_STATUS,
5194
5178
  KEY_USER_PUBLIC_WITH_ROLE_UPDATED_ON,
5195
5179
  KEY_USER_PUBLIC_WITH_ROLE_USER_ID,
5196
5180
  KEY_USER_PUBLIC_WITH_ROLE_USERNAME,
@@ -5229,7 +5213,6 @@ export const KEYS_USER_UPDATE = [
5229
5213
  ] as const satisfies (keyof UserUpdate)[];
5230
5214
 
5231
5215
  export const KEY_USER_WITH_AUTHORIZATION_CREATED_ON = 'created_on' satisfies keyof UserWithAuthorization;
5232
- export const KEY_USER_WITH_AUTHORIZATION_DELETED_ON = 'deleted_on' satisfies keyof UserWithAuthorization;
5233
5216
  export const KEY_USER_WITH_AUTHORIZATION_EMAIL = 'email' satisfies keyof UserWithAuthorization;
5234
5217
  export const KEY_USER_WITH_AUTHORIZATION_FIRST_NAME = 'first_name' satisfies keyof UserWithAuthorization;
5235
5218
  export const KEY_USER_WITH_AUTHORIZATION_LAST_NAME = 'last_name' satisfies keyof UserWithAuthorization;
@@ -5238,7 +5221,6 @@ export const KEY_USER_WITH_AUTHORIZATION_ORGANIZATION_ID = 'organization_id' sat
5238
5221
  export const KEY_USER_WITH_AUTHORIZATION_PERMISSIONS = 'permissions' satisfies keyof UserWithAuthorization;
5239
5222
  export const KEY_USER_WITH_AUTHORIZATION_PHONE = 'phone' satisfies keyof UserWithAuthorization;
5240
5223
  export const KEY_USER_WITH_AUTHORIZATION_ROLE = 'role' satisfies keyof UserWithAuthorization;
5241
- export const KEY_USER_WITH_AUTHORIZATION_STATUS = 'status' satisfies keyof UserWithAuthorization;
5242
5224
  export const KEY_USER_WITH_AUTHORIZATION_UPDATED_ON = 'updated_on' satisfies keyof UserWithAuthorization;
5243
5225
  export const KEY_USER_WITH_AUTHORIZATION_USER_ATTRIBUTES = 'user_attributes' satisfies keyof UserWithAuthorization;
5244
5226
  export const KEY_USER_WITH_AUTHORIZATION_USER_ID = 'user_id' satisfies keyof UserWithAuthorization;
@@ -5246,7 +5228,6 @@ export const KEY_USER_WITH_AUTHORIZATION_USERNAME = 'username' satisfies keyof U
5246
5228
 
5247
5229
  export const KEYS_USER_WITH_AUTHORIZATION = [
5248
5230
  KEY_USER_WITH_AUTHORIZATION_CREATED_ON,
5249
- KEY_USER_WITH_AUTHORIZATION_DELETED_ON,
5250
5231
  KEY_USER_WITH_AUTHORIZATION_EMAIL,
5251
5232
  KEY_USER_WITH_AUTHORIZATION_FIRST_NAME,
5252
5233
  KEY_USER_WITH_AUTHORIZATION_LAST_NAME,
@@ -5255,7 +5236,6 @@ export const KEYS_USER_WITH_AUTHORIZATION = [
5255
5236
  KEY_USER_WITH_AUTHORIZATION_PERMISSIONS,
5256
5237
  KEY_USER_WITH_AUTHORIZATION_PHONE,
5257
5238
  KEY_USER_WITH_AUTHORIZATION_ROLE,
5258
- KEY_USER_WITH_AUTHORIZATION_STATUS,
5259
5239
  KEY_USER_WITH_AUTHORIZATION_UPDATED_ON,
5260
5240
  KEY_USER_WITH_AUTHORIZATION_USER_ATTRIBUTES,
5261
5241
  KEY_USER_WITH_AUTHORIZATION_USER_ID,
@@ -510,7 +510,6 @@ export type UserPublic = components['schemas']['UserPublic'];
510
510
  export type UserPublicWithAttributes = components['schemas']['UserPublicWithAttributes'];
511
511
  export type UserPublicWithRole = components['schemas']['UserPublicWithRole'];
512
512
  export type UserSortField = components['schemas']['UserSortField'];
513
- export type UserStatus = components['schemas']['UserStatus'];
514
513
  export type UserToken = components['schemas']['UserTokenResponse'];
515
514
  export type UserUpdate = components['schemas']['UserUpdate'];
516
515
  export type UserWithAuthorization = components['schemas']['UserWithAuthorization'];
package/src/openapi.yaml CHANGED
@@ -12578,13 +12578,6 @@ components:
12578
12578
  format: date-time
12579
12579
  title: Created On
12580
12580
  type: string
12581
- deleted_on:
12582
- anyOf:
12583
- - format: date-time
12584
- type: string
12585
- - type: 'null'
12586
- description: The date/time the entry was deleted on
12587
- title: Deleted On
12588
12581
  email:
12589
12582
  description: The user's email address
12590
12583
  format: email
@@ -12632,9 +12625,6 @@ components:
12632
12625
  examples:
12633
12626
  - '+1.2125552368'
12634
12627
  title: Phone
12635
- status:
12636
- $ref: '#/components/schemas/UserStatus'
12637
- readOnly: true
12638
12628
  updated_on:
12639
12629
  description: The date/time the entry was last updated on
12640
12630
  format: date-time
@@ -12661,7 +12651,6 @@ components:
12661
12651
  - last_name
12662
12652
  - email
12663
12653
  - locale
12664
- - status
12665
12654
  title: User
12666
12655
  type: object
12667
12656
  UserAgentStatsBucket:
@@ -12784,13 +12773,6 @@ components:
12784
12773
  format: date-time
12785
12774
  title: Created On
12786
12775
  type: string
12787
- deleted_on:
12788
- anyOf:
12789
- - format: date-time
12790
- type: string
12791
- - type: 'null'
12792
- description: The date/time the entry was deleted on
12793
- title: Deleted On
12794
12776
  email:
12795
12777
  description: The user's email address
12796
12778
  format: email
@@ -12832,9 +12814,6 @@ components:
12832
12814
  examples:
12833
12815
  - '+1.2125552368'
12834
12816
  title: Phone
12835
- status:
12836
- $ref: '#/components/schemas/UserStatus'
12837
- readOnly: true
12838
12817
  updated_on:
12839
12818
  description: The date/time the entry was last updated on
12840
12819
  format: date-time
@@ -12861,7 +12840,6 @@ components:
12861
12840
  - last_name
12862
12841
  - email
12863
12842
  - locale
12864
- - status
12865
12843
  title: UserPublic
12866
12844
  type: object
12867
12845
  UserPublicWithAttributes:
@@ -12871,13 +12849,6 @@ components:
12871
12849
  format: date-time
12872
12850
  title: Created On
12873
12851
  type: string
12874
- deleted_on:
12875
- anyOf:
12876
- - format: date-time
12877
- type: string
12878
- - type: 'null'
12879
- description: The date/time the entry was deleted on
12880
- title: Deleted On
12881
12852
  email:
12882
12853
  description: The user's email address
12883
12854
  format: email
@@ -12919,9 +12890,6 @@ components:
12919
12890
  examples:
12920
12891
  - '+1.2125552368'
12921
12892
  title: Phone
12922
- status:
12923
- $ref: '#/components/schemas/UserStatus'
12924
- readOnly: true
12925
12893
  updated_on:
12926
12894
  description: The date/time the entry was last updated on
12927
12895
  format: date-time
@@ -12962,7 +12930,6 @@ components:
12962
12930
  - last_name
12963
12931
  - email
12964
12932
  - locale
12965
- - status
12966
12933
  title: UserPublicWithAttributes
12967
12934
  type: object
12968
12935
  UserPublicWithRole:
@@ -12972,13 +12939,6 @@ components:
12972
12939
  format: date-time
12973
12940
  title: Created On
12974
12941
  type: string
12975
- deleted_on:
12976
- anyOf:
12977
- - format: date-time
12978
- type: string
12979
- - type: 'null'
12980
- description: The date/time the entry was deleted on
12981
- title: Deleted On
12982
12942
  email:
12983
12943
  description: The user's email address
12984
12944
  format: email
@@ -13026,9 +12986,6 @@ components:
13026
12986
  - $ref: '#/components/schemas/CustomRoleLabel'
13027
12987
  - type: 'null'
13028
12988
  title: Role
13029
- status:
13030
- $ref: '#/components/schemas/UserStatus'
13031
- readOnly: true
13032
12989
  updated_on:
13033
12990
  description: The date/time the entry was last updated on
13034
12991
  format: date-time
@@ -13055,7 +13012,6 @@ components:
13055
13012
  - last_name
13056
13013
  - email
13057
13014
  - locale
13058
- - status
13059
13015
  title: UserPublicWithRole
13060
13016
  type: object
13061
13017
  UserSortField:
@@ -13065,12 +13021,6 @@ components:
13065
13021
  - email
13066
13022
  title: UserSortField
13067
13023
  type: string
13068
- UserStatus:
13069
- enum:
13070
- - active
13071
- - inactive
13072
- title: UserStatus
13073
- type: string
13074
13024
  UserTokenResponse:
13075
13025
  properties:
13076
13026
  access_token:
@@ -13171,13 +13121,6 @@ components:
13171
13121
  format: date-time
13172
13122
  title: Created On
13173
13123
  type: string
13174
- deleted_on:
13175
- anyOf:
13176
- - format: date-time
13177
- type: string
13178
- - type: 'null'
13179
- description: The date/time the entry was deleted on
13180
- title: Deleted On
13181
13124
  email:
13182
13125
  description: The user's email address
13183
13126
  format: email
@@ -13232,9 +13175,6 @@ components:
13232
13175
  - $ref: '#/components/schemas/CustomRoleLabel'
13233
13176
  - type: 'null'
13234
13177
  title: Role
13235
- status:
13236
- $ref: '#/components/schemas/UserStatus'
13237
- readOnly: true
13238
13178
  updated_on:
13239
13179
  description: The date/time the entry was last updated on
13240
13180
  format: date-time
@@ -13275,7 +13215,6 @@ components:
13275
13215
  - last_name
13276
13216
  - email
13277
13217
  - locale
13278
- - status
13279
13218
  title: UserWithAuthorization
13280
13219
  type: object
13281
13220
  ValidationError:
@@ -13996,7 +13935,7 @@ info:
13996
13935
  \n\n"
13997
13936
  summary: OpusDNS - your gateway to a seamless domain management experience.
13998
13937
  title: OpusDNS API
13999
- version: 2026-06-25-145633
13938
+ version: 2026-06-25-181920
14000
13939
  x-logo:
14001
13940
  altText: OpusDNS API Reference
14002
13941
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -11041,11 +11041,6 @@ export interface components {
11041
11041
  * @description The date/time the entry was created on
11042
11042
  */
11043
11043
  created_on?: Date;
11044
- /**
11045
- * Deleted On
11046
- * @description The date/time the entry was deleted on
11047
- */
11048
- deleted_on?: Date | null;
11049
11044
  /**
11050
11045
  * Email
11051
11046
  * Format: email
@@ -11086,7 +11081,6 @@ export interface components {
11086
11081
  * @example +1.2125552368
11087
11082
  */
11088
11083
  phone?: string | null;
11089
- readonly status: components["schemas"]["UserStatus"];
11090
11084
  /**
11091
11085
  * Updated On
11092
11086
  * Format: date-time
@@ -11187,11 +11181,6 @@ export interface components {
11187
11181
  * @description The date/time the entry was created on
11188
11182
  */
11189
11183
  created_on?: Date;
11190
- /**
11191
- * Deleted On
11192
- * @description The date/time the entry was deleted on
11193
- */
11194
- deleted_on?: Date | null;
11195
11184
  /**
11196
11185
  * Email
11197
11186
  * Format: email
@@ -11227,7 +11216,6 @@ export interface components {
11227
11216
  * @example +1.2125552368
11228
11217
  */
11229
11218
  phone?: string | null;
11230
- readonly status: components["schemas"]["UserStatus"];
11231
11219
  /**
11232
11220
  * Updated On
11233
11221
  * Format: date-time
@@ -11254,11 +11242,6 @@ export interface components {
11254
11242
  * @description The date/time the entry was created on
11255
11243
  */
11256
11244
  created_on?: Date;
11257
- /**
11258
- * Deleted On
11259
- * @description The date/time the entry was deleted on
11260
- */
11261
- deleted_on?: Date | null;
11262
11245
  /**
11263
11246
  * Email
11264
11247
  * Format: email
@@ -11294,7 +11277,6 @@ export interface components {
11294
11277
  * @example +1.2125552368
11295
11278
  */
11296
11279
  phone?: string | null;
11297
- readonly status: components["schemas"]["UserStatus"];
11298
11280
  /**
11299
11281
  * Updated On
11300
11282
  * Format: date-time
@@ -11338,11 +11320,6 @@ export interface components {
11338
11320
  * @description The date/time the entry was created on
11339
11321
  */
11340
11322
  created_on?: Date;
11341
- /**
11342
- * Deleted On
11343
- * @description The date/time the entry was deleted on
11344
- */
11345
- deleted_on?: Date | null;
11346
11323
  /**
11347
11324
  * Email
11348
11325
  * Format: email
@@ -11380,7 +11357,6 @@ export interface components {
11380
11357
  phone?: string | null;
11381
11358
  /** Role */
11382
11359
  role?: components["schemas"]["PublicRole"] | components["schemas"]["CustomRoleLabel"] | null;
11383
- readonly status: components["schemas"]["UserStatus"];
11384
11360
  /**
11385
11361
  * Updated On
11386
11362
  * Format: date-time
@@ -11404,11 +11380,6 @@ export interface components {
11404
11380
  * @enum {string}
11405
11381
  */
11406
11382
  UserSortField: "created_on" | "username" | "email";
11407
- /**
11408
- * UserStatus
11409
- * @enum {string}
11410
- */
11411
- UserStatus: "active" | "inactive";
11412
11383
  /** UserTokenResponse */
11413
11384
  UserTokenResponse: {
11414
11385
  /**
@@ -11484,11 +11455,6 @@ export interface components {
11484
11455
  * @description The date/time the entry was created on
11485
11456
  */
11486
11457
  created_on?: Date;
11487
- /**
11488
- * Deleted On
11489
- * @description The date/time the entry was deleted on
11490
- */
11491
- deleted_on?: Date | null;
11492
11458
  /**
11493
11459
  * Email
11494
11460
  * Format: email
@@ -11528,7 +11494,6 @@ export interface components {
11528
11494
  phone?: string | null;
11529
11495
  /** Role */
11530
11496
  role?: components["schemas"]["PublicRole"] | components["schemas"]["CustomRoleLabel"] | null;
11531
- readonly status: components["schemas"]["UserStatus"];
11532
11497
  /**
11533
11498
  * Updated On
11534
11499
  * Format: date-time