@opusdns/api 1.10.0 → 1.11.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 +1 -1
- package/src/helpers/keys.ts +240 -32
- package/src/helpers/responses.d.ts +4 -4
- package/src/helpers/schemas.d.ts +20 -2
- package/src/openapi.yaml +442 -8
- package/src/schema.d.ts +315 -8
package/src/openapi.yaml
CHANGED
|
@@ -3747,6 +3747,99 @@ components:
|
|
|
3747
3747
|
- results
|
|
3748
3748
|
title: DomainForwardBrowserStatsResponse
|
|
3749
3749
|
type: object
|
|
3750
|
+
DomainForwardCreateBulkCommand:
|
|
3751
|
+
properties:
|
|
3752
|
+
command:
|
|
3753
|
+
const: domain_forward_create_bulk
|
|
3754
|
+
default: domain_forward_create_bulk
|
|
3755
|
+
title: Command
|
|
3756
|
+
type: string
|
|
3757
|
+
idempotency_key:
|
|
3758
|
+
anyOf:
|
|
3759
|
+
- type: string
|
|
3760
|
+
- type: 'null'
|
|
3761
|
+
description: Idempotency key for this bulk command
|
|
3762
|
+
title: Idempotency Key
|
|
3763
|
+
payload:
|
|
3764
|
+
$ref: '#/components/schemas/DomainForwardCreateBulkPayload'
|
|
3765
|
+
description: Bulk domain forward create payload
|
|
3766
|
+
version:
|
|
3767
|
+
default: v1
|
|
3768
|
+
description: Command version
|
|
3769
|
+
title: Version
|
|
3770
|
+
type: string
|
|
3771
|
+
required:
|
|
3772
|
+
- payload
|
|
3773
|
+
title: DomainForwardCreateBulkCommand
|
|
3774
|
+
type: object
|
|
3775
|
+
DomainForwardCreateBulkInstance:
|
|
3776
|
+
properties:
|
|
3777
|
+
enabled:
|
|
3778
|
+
anyOf:
|
|
3779
|
+
- type: boolean
|
|
3780
|
+
- type: 'null'
|
|
3781
|
+
description: Override enabled setting for this hostname
|
|
3782
|
+
title: Enabled
|
|
3783
|
+
hostname:
|
|
3784
|
+
description: Hostname to create forward for
|
|
3785
|
+
title: Hostname
|
|
3786
|
+
type: string
|
|
3787
|
+
http:
|
|
3788
|
+
anyOf:
|
|
3789
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
3790
|
+
- type: 'null'
|
|
3791
|
+
description: Override HTTP redirects
|
|
3792
|
+
https:
|
|
3793
|
+
anyOf:
|
|
3794
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
3795
|
+
- type: 'null'
|
|
3796
|
+
description: Override HTTPS redirects
|
|
3797
|
+
required:
|
|
3798
|
+
- hostname
|
|
3799
|
+
title: DomainForwardCreateBulkInstance
|
|
3800
|
+
type: object
|
|
3801
|
+
DomainForwardCreateBulkPayload:
|
|
3802
|
+
properties:
|
|
3803
|
+
instances:
|
|
3804
|
+
description: List of domain forwards to create (1-1000)
|
|
3805
|
+
items:
|
|
3806
|
+
$ref: '#/components/schemas/DomainForwardCreateBulkInstance'
|
|
3807
|
+
maxItems: 1000
|
|
3808
|
+
minItems: 1
|
|
3809
|
+
title: Instances
|
|
3810
|
+
type: array
|
|
3811
|
+
template:
|
|
3812
|
+
$ref: '#/components/schemas/DomainForwardCreateBulkTemplate'
|
|
3813
|
+
description: Shared settings for all domain forwards
|
|
3814
|
+
required:
|
|
3815
|
+
- template
|
|
3816
|
+
- instances
|
|
3817
|
+
title: DomainForwardCreateBulkPayload
|
|
3818
|
+
type: object
|
|
3819
|
+
DomainForwardCreateBulkTemplate:
|
|
3820
|
+
properties:
|
|
3821
|
+
auto_create_zone:
|
|
3822
|
+
default: false
|
|
3823
|
+
description: Create apex DNS zone automatically when missing
|
|
3824
|
+
title: Auto Create Zone
|
|
3825
|
+
type: boolean
|
|
3826
|
+
enabled:
|
|
3827
|
+
default: false
|
|
3828
|
+
description: Whether domain forward should be enabled
|
|
3829
|
+
title: Enabled
|
|
3830
|
+
type: boolean
|
|
3831
|
+
http:
|
|
3832
|
+
anyOf:
|
|
3833
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
3834
|
+
- type: 'null'
|
|
3835
|
+
description: HTTP redirect definitions
|
|
3836
|
+
https:
|
|
3837
|
+
anyOf:
|
|
3838
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
3839
|
+
- type: 'null'
|
|
3840
|
+
description: HTTPS redirect definitions
|
|
3841
|
+
title: DomainForwardCreateBulkTemplate
|
|
3842
|
+
type: object
|
|
3750
3843
|
DomainForwardCreateRequest:
|
|
3751
3844
|
properties:
|
|
3752
3845
|
enabled:
|
|
@@ -3768,6 +3861,153 @@ components:
|
|
|
3768
3861
|
- hostname
|
|
3769
3862
|
title: DomainForwardCreateRequest
|
|
3770
3863
|
type: object
|
|
3864
|
+
DomainForwardDeleteBulkCommand:
|
|
3865
|
+
properties:
|
|
3866
|
+
command:
|
|
3867
|
+
const: domain_forward_delete_bulk
|
|
3868
|
+
default: domain_forward_delete_bulk
|
|
3869
|
+
title: Command
|
|
3870
|
+
type: string
|
|
3871
|
+
idempotency_key:
|
|
3872
|
+
anyOf:
|
|
3873
|
+
- type: string
|
|
3874
|
+
- type: 'null'
|
|
3875
|
+
description: Idempotency key for this bulk command
|
|
3876
|
+
title: Idempotency Key
|
|
3877
|
+
payload:
|
|
3878
|
+
$ref: '#/components/schemas/DomainForwardDeleteBulkPayload'
|
|
3879
|
+
description: Bulk domain forward delete payload
|
|
3880
|
+
version:
|
|
3881
|
+
default: v1
|
|
3882
|
+
description: Command version
|
|
3883
|
+
title: Version
|
|
3884
|
+
type: string
|
|
3885
|
+
required:
|
|
3886
|
+
- payload
|
|
3887
|
+
title: DomainForwardDeleteBulkCommand
|
|
3888
|
+
type: object
|
|
3889
|
+
DomainForwardDeleteBulkInstance:
|
|
3890
|
+
properties:
|
|
3891
|
+
hostname:
|
|
3892
|
+
description: Hostname to delete forwarding for
|
|
3893
|
+
title: Hostname
|
|
3894
|
+
type: string
|
|
3895
|
+
required:
|
|
3896
|
+
- hostname
|
|
3897
|
+
title: DomainForwardDeleteBulkInstance
|
|
3898
|
+
type: object
|
|
3899
|
+
DomainForwardDeleteBulkPayload:
|
|
3900
|
+
properties:
|
|
3901
|
+
instances:
|
|
3902
|
+
description: List of hostnames to delete forwarding for (1-1000)
|
|
3903
|
+
items:
|
|
3904
|
+
$ref: '#/components/schemas/DomainForwardDeleteBulkInstance'
|
|
3905
|
+
maxItems: 1000
|
|
3906
|
+
minItems: 1
|
|
3907
|
+
title: Instances
|
|
3908
|
+
type: array
|
|
3909
|
+
required:
|
|
3910
|
+
- instances
|
|
3911
|
+
title: DomainForwardDeleteBulkPayload
|
|
3912
|
+
type: object
|
|
3913
|
+
DomainForwardDisableBulkCommand:
|
|
3914
|
+
properties:
|
|
3915
|
+
command:
|
|
3916
|
+
const: domain_forward_disable_bulk
|
|
3917
|
+
default: domain_forward_disable_bulk
|
|
3918
|
+
title: Command
|
|
3919
|
+
type: string
|
|
3920
|
+
idempotency_key:
|
|
3921
|
+
anyOf:
|
|
3922
|
+
- type: string
|
|
3923
|
+
- type: 'null'
|
|
3924
|
+
description: Idempotency key for this bulk command
|
|
3925
|
+
title: Idempotency Key
|
|
3926
|
+
payload:
|
|
3927
|
+
$ref: '#/components/schemas/DomainForwardDisableBulkPayload'
|
|
3928
|
+
description: Bulk domain forward disable payload
|
|
3929
|
+
version:
|
|
3930
|
+
default: v1
|
|
3931
|
+
description: Command version
|
|
3932
|
+
title: Version
|
|
3933
|
+
type: string
|
|
3934
|
+
required:
|
|
3935
|
+
- payload
|
|
3936
|
+
title: DomainForwardDisableBulkCommand
|
|
3937
|
+
type: object
|
|
3938
|
+
DomainForwardDisableBulkInstance:
|
|
3939
|
+
properties:
|
|
3940
|
+
hostname:
|
|
3941
|
+
description: Hostname to disable forwarding for
|
|
3942
|
+
title: Hostname
|
|
3943
|
+
type: string
|
|
3944
|
+
required:
|
|
3945
|
+
- hostname
|
|
3946
|
+
title: DomainForwardDisableBulkInstance
|
|
3947
|
+
type: object
|
|
3948
|
+
DomainForwardDisableBulkPayload:
|
|
3949
|
+
properties:
|
|
3950
|
+
instances:
|
|
3951
|
+
description: List of hostnames to disable forwarding for (1-1000)
|
|
3952
|
+
items:
|
|
3953
|
+
$ref: '#/components/schemas/DomainForwardDisableBulkInstance'
|
|
3954
|
+
maxItems: 1000
|
|
3955
|
+
minItems: 1
|
|
3956
|
+
title: Instances
|
|
3957
|
+
type: array
|
|
3958
|
+
required:
|
|
3959
|
+
- instances
|
|
3960
|
+
title: DomainForwardDisableBulkPayload
|
|
3961
|
+
type: object
|
|
3962
|
+
DomainForwardEnableBulkCommand:
|
|
3963
|
+
properties:
|
|
3964
|
+
command:
|
|
3965
|
+
const: domain_forward_enable_bulk
|
|
3966
|
+
default: domain_forward_enable_bulk
|
|
3967
|
+
title: Command
|
|
3968
|
+
type: string
|
|
3969
|
+
idempotency_key:
|
|
3970
|
+
anyOf:
|
|
3971
|
+
- type: string
|
|
3972
|
+
- type: 'null'
|
|
3973
|
+
description: Idempotency key for this bulk command
|
|
3974
|
+
title: Idempotency Key
|
|
3975
|
+
payload:
|
|
3976
|
+
$ref: '#/components/schemas/DomainForwardEnableBulkPayload'
|
|
3977
|
+
description: Bulk domain forward enable payload
|
|
3978
|
+
version:
|
|
3979
|
+
default: v1
|
|
3980
|
+
description: Command version
|
|
3981
|
+
title: Version
|
|
3982
|
+
type: string
|
|
3983
|
+
required:
|
|
3984
|
+
- payload
|
|
3985
|
+
title: DomainForwardEnableBulkCommand
|
|
3986
|
+
type: object
|
|
3987
|
+
DomainForwardEnableBulkInstance:
|
|
3988
|
+
properties:
|
|
3989
|
+
hostname:
|
|
3990
|
+
description: Hostname to enable forwarding for
|
|
3991
|
+
title: Hostname
|
|
3992
|
+
type: string
|
|
3993
|
+
required:
|
|
3994
|
+
- hostname
|
|
3995
|
+
title: DomainForwardEnableBulkInstance
|
|
3996
|
+
type: object
|
|
3997
|
+
DomainForwardEnableBulkPayload:
|
|
3998
|
+
properties:
|
|
3999
|
+
instances:
|
|
4000
|
+
description: List of hostnames to enable forwarding for (1-1000)
|
|
4001
|
+
items:
|
|
4002
|
+
$ref: '#/components/schemas/DomainForwardEnableBulkInstance'
|
|
4003
|
+
maxItems: 1000
|
|
4004
|
+
minItems: 1
|
|
4005
|
+
title: Instances
|
|
4006
|
+
type: array
|
|
4007
|
+
required:
|
|
4008
|
+
- instances
|
|
4009
|
+
title: DomainForwardEnableBulkPayload
|
|
4010
|
+
type: object
|
|
3771
4011
|
DomainForwardGeoStatsResponse:
|
|
3772
4012
|
properties:
|
|
3773
4013
|
results:
|
|
@@ -3962,6 +4202,95 @@ components:
|
|
|
3962
4202
|
- results
|
|
3963
4203
|
title: DomainForwardStatusCodeStatsResponse
|
|
3964
4204
|
type: object
|
|
4205
|
+
DomainForwardUpdateBulkCommand:
|
|
4206
|
+
properties:
|
|
4207
|
+
command:
|
|
4208
|
+
const: domain_forward_update_bulk
|
|
4209
|
+
default: domain_forward_update_bulk
|
|
4210
|
+
title: Command
|
|
4211
|
+
type: string
|
|
4212
|
+
idempotency_key:
|
|
4213
|
+
anyOf:
|
|
4214
|
+
- type: string
|
|
4215
|
+
- type: 'null'
|
|
4216
|
+
description: Idempotency key for this bulk command
|
|
4217
|
+
title: Idempotency Key
|
|
4218
|
+
payload:
|
|
4219
|
+
$ref: '#/components/schemas/DomainForwardUpdateBulkPayload'
|
|
4220
|
+
description: Bulk domain forward update payload
|
|
4221
|
+
version:
|
|
4222
|
+
default: v1
|
|
4223
|
+
description: Command version
|
|
4224
|
+
title: Version
|
|
4225
|
+
type: string
|
|
4226
|
+
required:
|
|
4227
|
+
- payload
|
|
4228
|
+
title: DomainForwardUpdateBulkCommand
|
|
4229
|
+
type: object
|
|
4230
|
+
DomainForwardUpdateBulkInstance:
|
|
4231
|
+
properties:
|
|
4232
|
+
enabled:
|
|
4233
|
+
anyOf:
|
|
4234
|
+
- type: boolean
|
|
4235
|
+
- type: 'null'
|
|
4236
|
+
description: Override enabled setting for this hostname
|
|
4237
|
+
title: Enabled
|
|
4238
|
+
hostname:
|
|
4239
|
+
description: Hostname to update forward for
|
|
4240
|
+
title: Hostname
|
|
4241
|
+
type: string
|
|
4242
|
+
http:
|
|
4243
|
+
anyOf:
|
|
4244
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
4245
|
+
- type: 'null'
|
|
4246
|
+
description: Override HTTP redirects
|
|
4247
|
+
https:
|
|
4248
|
+
anyOf:
|
|
4249
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
4250
|
+
- type: 'null'
|
|
4251
|
+
description: Override HTTPS redirects
|
|
4252
|
+
required:
|
|
4253
|
+
- hostname
|
|
4254
|
+
title: DomainForwardUpdateBulkInstance
|
|
4255
|
+
type: object
|
|
4256
|
+
DomainForwardUpdateBulkPayload:
|
|
4257
|
+
properties:
|
|
4258
|
+
instances:
|
|
4259
|
+
description: List of domain forwards to update (1-1000)
|
|
4260
|
+
items:
|
|
4261
|
+
$ref: '#/components/schemas/DomainForwardUpdateBulkInstance'
|
|
4262
|
+
maxItems: 1000
|
|
4263
|
+
minItems: 1
|
|
4264
|
+
title: Instances
|
|
4265
|
+
type: array
|
|
4266
|
+
template:
|
|
4267
|
+
$ref: '#/components/schemas/DomainForwardUpdateBulkTemplate'
|
|
4268
|
+
description: Shared settings for all domain forwards
|
|
4269
|
+
required:
|
|
4270
|
+
- template
|
|
4271
|
+
- instances
|
|
4272
|
+
title: DomainForwardUpdateBulkPayload
|
|
4273
|
+
type: object
|
|
4274
|
+
DomainForwardUpdateBulkTemplate:
|
|
4275
|
+
properties:
|
|
4276
|
+
enabled:
|
|
4277
|
+
description: Whether domain forward should be enabled
|
|
4278
|
+
title: Enabled
|
|
4279
|
+
type: boolean
|
|
4280
|
+
http:
|
|
4281
|
+
anyOf:
|
|
4282
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
4283
|
+
- type: 'null'
|
|
4284
|
+
description: HTTP redirect definitions
|
|
4285
|
+
https:
|
|
4286
|
+
anyOf:
|
|
4287
|
+
- $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
|
|
4288
|
+
- type: 'null'
|
|
4289
|
+
description: HTTPS redirect definitions
|
|
4290
|
+
required:
|
|
4291
|
+
- enabled
|
|
4292
|
+
title: DomainForwardUpdateBulkTemplate
|
|
4293
|
+
type: object
|
|
3965
4294
|
DomainForwardUserAgentStatsResponse:
|
|
3966
4295
|
properties:
|
|
3967
4296
|
results:
|
|
@@ -6570,6 +6899,11 @@ components:
|
|
|
6570
6899
|
dns_zone_update_bulk: '#/components/schemas/DnsZoneUpdateBulkCommand'
|
|
6571
6900
|
domain_create: '#/components/schemas/DomainCreateCommand'
|
|
6572
6901
|
domain_create_bulk: '#/components/schemas/DomainCreateBulkCommand'
|
|
6902
|
+
domain_forward_create_bulk: '#/components/schemas/DomainForwardCreateBulkCommand'
|
|
6903
|
+
domain_forward_delete_bulk: '#/components/schemas/DomainForwardDeleteBulkCommand'
|
|
6904
|
+
domain_forward_disable_bulk: '#/components/schemas/DomainForwardDisableBulkCommand'
|
|
6905
|
+
domain_forward_enable_bulk: '#/components/schemas/DomainForwardEnableBulkCommand'
|
|
6906
|
+
domain_forward_update_bulk: '#/components/schemas/DomainForwardUpdateBulkCommand'
|
|
6573
6907
|
domain_transfer: '#/components/schemas/DomainTransferCommand'
|
|
6574
6908
|
domain_transfer_bulk: '#/components/schemas/DomainTransferBulkCommand'
|
|
6575
6909
|
domain_update: '#/components/schemas/DomainUpdateCommand'
|
|
@@ -6598,6 +6932,11 @@ components:
|
|
|
6598
6932
|
- $ref: '#/components/schemas/ParkingEnableBulkCommand'
|
|
6599
6933
|
- $ref: '#/components/schemas/ParkingDisableBulkCommand'
|
|
6600
6934
|
- $ref: '#/components/schemas/ParkingDeleteBulkCommand'
|
|
6935
|
+
- $ref: '#/components/schemas/DomainForwardCreateBulkCommand'
|
|
6936
|
+
- $ref: '#/components/schemas/DomainForwardUpdateBulkCommand'
|
|
6937
|
+
- $ref: '#/components/schemas/DomainForwardEnableBulkCommand'
|
|
6938
|
+
- $ref: '#/components/schemas/DomainForwardDisableBulkCommand'
|
|
6939
|
+
- $ref: '#/components/schemas/DomainForwardDeleteBulkCommand'
|
|
6601
6940
|
maxItems: 50000
|
|
6602
6941
|
title: Commands
|
|
6603
6942
|
type: array
|
|
@@ -8493,19 +8832,19 @@ components:
|
|
|
8493
8832
|
- pagination
|
|
8494
8833
|
title: Pagination[TagResponse]
|
|
8495
8834
|
type: object
|
|
8496
|
-
|
|
8835
|
+
Pagination_UserPublicWithRole_:
|
|
8497
8836
|
properties:
|
|
8498
8837
|
pagination:
|
|
8499
8838
|
$ref: '#/components/schemas/PaginationMetadata'
|
|
8500
8839
|
results:
|
|
8501
8840
|
items:
|
|
8502
|
-
$ref: '#/components/schemas/
|
|
8841
|
+
$ref: '#/components/schemas/UserPublicWithRole'
|
|
8503
8842
|
title: Results
|
|
8504
8843
|
type: array
|
|
8505
8844
|
required:
|
|
8506
8845
|
- results
|
|
8507
8846
|
- pagination
|
|
8508
|
-
title: Pagination[
|
|
8847
|
+
title: Pagination[UserPublicWithRole]
|
|
8509
8848
|
type: object
|
|
8510
8849
|
ParkingActionPayloadData:
|
|
8511
8850
|
properties:
|
|
@@ -11017,6 +11356,97 @@ components:
|
|
|
11017
11356
|
- status
|
|
11018
11357
|
title: UserPublicWithAttributes
|
|
11019
11358
|
type: object
|
|
11359
|
+
UserPublicWithRole:
|
|
11360
|
+
properties:
|
|
11361
|
+
created_on:
|
|
11362
|
+
description: The date/time the entry was created on
|
|
11363
|
+
format: date-time
|
|
11364
|
+
title: Created On
|
|
11365
|
+
type: string
|
|
11366
|
+
deleted_on:
|
|
11367
|
+
anyOf:
|
|
11368
|
+
- format: date-time
|
|
11369
|
+
type: string
|
|
11370
|
+
- type: 'null'
|
|
11371
|
+
description: The date/time the entry was deleted on
|
|
11372
|
+
title: Deleted On
|
|
11373
|
+
email:
|
|
11374
|
+
description: The user's email address
|
|
11375
|
+
format: email
|
|
11376
|
+
title: Email
|
|
11377
|
+
type: string
|
|
11378
|
+
first_name:
|
|
11379
|
+
description: The user's first name
|
|
11380
|
+
maxLength: 255
|
|
11381
|
+
minLength: 1
|
|
11382
|
+
title: First Name
|
|
11383
|
+
type: string
|
|
11384
|
+
last_name:
|
|
11385
|
+
description: The user's last name
|
|
11386
|
+
maxLength: 255
|
|
11387
|
+
minLength: 1
|
|
11388
|
+
title: Last Name
|
|
11389
|
+
type: string
|
|
11390
|
+
locale:
|
|
11391
|
+
examples:
|
|
11392
|
+
- en_US
|
|
11393
|
+
title: Locale
|
|
11394
|
+
type: string
|
|
11395
|
+
organization_id:
|
|
11396
|
+
default: None
|
|
11397
|
+
description: The user's organization id
|
|
11398
|
+
examples:
|
|
11399
|
+
- organization_01h45ytscbebyvny4gc8cr8ma2
|
|
11400
|
+
format: typeid
|
|
11401
|
+
pattern: ^organization_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
11402
|
+
title: Organization Id
|
|
11403
|
+
type: string
|
|
11404
|
+
x-typeid-prefix: organization
|
|
11405
|
+
phone:
|
|
11406
|
+
anyOf:
|
|
11407
|
+
- format: phone
|
|
11408
|
+
type: string
|
|
11409
|
+
- type: 'null'
|
|
11410
|
+
description: The user's phone number
|
|
11411
|
+
examples:
|
|
11412
|
+
- '+1.2125552368'
|
|
11413
|
+
title: Phone
|
|
11414
|
+
role:
|
|
11415
|
+
anyOf:
|
|
11416
|
+
- $ref: '#/components/schemas/PublicRole'
|
|
11417
|
+
- type: 'null'
|
|
11418
|
+
status:
|
|
11419
|
+
$ref: '#/components/schemas/UserStatus'
|
|
11420
|
+
readOnly: true
|
|
11421
|
+
updated_on:
|
|
11422
|
+
description: The date/time the entry was last updated on
|
|
11423
|
+
format: date-time
|
|
11424
|
+
title: Updated On
|
|
11425
|
+
type: string
|
|
11426
|
+
user_id:
|
|
11427
|
+
examples:
|
|
11428
|
+
- user_01h45ytscbebyvny4gc8cr8ma2
|
|
11429
|
+
format: typeid
|
|
11430
|
+
pattern: ^user_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
11431
|
+
title: User Id
|
|
11432
|
+
type: string
|
|
11433
|
+
x-typeid-prefix: user
|
|
11434
|
+
username:
|
|
11435
|
+
description: The user's unique username
|
|
11436
|
+
maxLength: 128
|
|
11437
|
+
minLength: 3
|
|
11438
|
+
pattern: ^[a-zA-Z0-9\-+_@.]+$
|
|
11439
|
+
title: Username
|
|
11440
|
+
type: string
|
|
11441
|
+
required:
|
|
11442
|
+
- username
|
|
11443
|
+
- first_name
|
|
11444
|
+
- last_name
|
|
11445
|
+
- email
|
|
11446
|
+
- locale
|
|
11447
|
+
- status
|
|
11448
|
+
title: UserPublicWithRole
|
|
11449
|
+
type: object
|
|
11020
11450
|
UserSortField:
|
|
11021
11451
|
enum:
|
|
11022
11452
|
- created_on
|
|
@@ -11123,7 +11553,7 @@ components:
|
|
|
11123
11553
|
title: Username
|
|
11124
11554
|
title: UserUpdate
|
|
11125
11555
|
type: object
|
|
11126
|
-
|
|
11556
|
+
UserWithAuthorization:
|
|
11127
11557
|
properties:
|
|
11128
11558
|
created_on:
|
|
11129
11559
|
description: The date/time the entry was created on
|
|
@@ -11185,6 +11615,10 @@ components:
|
|
|
11185
11615
|
examples:
|
|
11186
11616
|
- '+1.2125552368'
|
|
11187
11617
|
title: Phone
|
|
11618
|
+
role:
|
|
11619
|
+
anyOf:
|
|
11620
|
+
- $ref: '#/components/schemas/PublicRole'
|
|
11621
|
+
- type: 'null'
|
|
11188
11622
|
status:
|
|
11189
11623
|
$ref: '#/components/schemas/UserStatus'
|
|
11190
11624
|
readOnly: true
|
|
@@ -11229,7 +11663,7 @@ components:
|
|
|
11229
11663
|
- email
|
|
11230
11664
|
- locale
|
|
11231
11665
|
- status
|
|
11232
|
-
title:
|
|
11666
|
+
title: UserWithAuthorization
|
|
11233
11667
|
type: object
|
|
11234
11668
|
ValidationError:
|
|
11235
11669
|
properties:
|
|
@@ -11555,7 +11989,7 @@ info:
|
|
|
11555
11989
|
\n\n"
|
|
11556
11990
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11557
11991
|
title: OpusDNS API
|
|
11558
|
-
version: 2026-06-11-
|
|
11992
|
+
version: 2026-06-11-134841
|
|
11559
11993
|
x-logo:
|
|
11560
11994
|
altText: OpusDNS API Reference
|
|
11561
11995
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -23515,7 +23949,7 @@ paths:
|
|
|
23515
23949
|
content:
|
|
23516
23950
|
application/json:
|
|
23517
23951
|
schema:
|
|
23518
|
-
$ref: '#/components/schemas/
|
|
23952
|
+
$ref: '#/components/schemas/Pagination_UserPublicWithRole_'
|
|
23519
23953
|
description: Successful Response
|
|
23520
23954
|
'401':
|
|
23521
23955
|
content:
|
|
@@ -25424,7 +25858,7 @@ paths:
|
|
|
25424
25858
|
content:
|
|
25425
25859
|
application/json:
|
|
25426
25860
|
schema:
|
|
25427
|
-
$ref: '#/components/schemas/
|
|
25861
|
+
$ref: '#/components/schemas/UserWithAuthorization'
|
|
25428
25862
|
description: Successful Response
|
|
25429
25863
|
'422':
|
|
25430
25864
|
content:
|