@opusdns/api 1.9.0 → 1.10.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 +32 -240
- package/src/helpers/responses.d.ts +4 -4
- package/src/helpers/schemas.d.ts +2 -20
- package/src/openapi.yaml +8 -442
- package/src/schema.d.ts +8 -315
package/src/openapi.yaml
CHANGED
|
@@ -3747,99 +3747,6 @@ 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
|
|
3843
3750
|
DomainForwardCreateRequest:
|
|
3844
3751
|
properties:
|
|
3845
3752
|
enabled:
|
|
@@ -3861,153 +3768,6 @@ components:
|
|
|
3861
3768
|
- hostname
|
|
3862
3769
|
title: DomainForwardCreateRequest
|
|
3863
3770
|
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
|
|
4011
3771
|
DomainForwardGeoStatsResponse:
|
|
4012
3772
|
properties:
|
|
4013
3773
|
results:
|
|
@@ -4202,95 +3962,6 @@ components:
|
|
|
4202
3962
|
- results
|
|
4203
3963
|
title: DomainForwardStatusCodeStatsResponse
|
|
4204
3964
|
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
|
|
4294
3965
|
DomainForwardUserAgentStatsResponse:
|
|
4295
3966
|
properties:
|
|
4296
3967
|
results:
|
|
@@ -6899,11 +6570,6 @@ components:
|
|
|
6899
6570
|
dns_zone_update_bulk: '#/components/schemas/DnsZoneUpdateBulkCommand'
|
|
6900
6571
|
domain_create: '#/components/schemas/DomainCreateCommand'
|
|
6901
6572
|
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'
|
|
6907
6573
|
domain_transfer: '#/components/schemas/DomainTransferCommand'
|
|
6908
6574
|
domain_transfer_bulk: '#/components/schemas/DomainTransferBulkCommand'
|
|
6909
6575
|
domain_update: '#/components/schemas/DomainUpdateCommand'
|
|
@@ -6932,11 +6598,6 @@ components:
|
|
|
6932
6598
|
- $ref: '#/components/schemas/ParkingEnableBulkCommand'
|
|
6933
6599
|
- $ref: '#/components/schemas/ParkingDisableBulkCommand'
|
|
6934
6600
|
- $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'
|
|
6940
6601
|
maxItems: 50000
|
|
6941
6602
|
title: Commands
|
|
6942
6603
|
type: array
|
|
@@ -8832,19 +8493,19 @@ components:
|
|
|
8832
8493
|
- pagination
|
|
8833
8494
|
title: Pagination[TagResponse]
|
|
8834
8495
|
type: object
|
|
8835
|
-
|
|
8496
|
+
Pagination_UserPublic_:
|
|
8836
8497
|
properties:
|
|
8837
8498
|
pagination:
|
|
8838
8499
|
$ref: '#/components/schemas/PaginationMetadata'
|
|
8839
8500
|
results:
|
|
8840
8501
|
items:
|
|
8841
|
-
$ref: '#/components/schemas/
|
|
8502
|
+
$ref: '#/components/schemas/UserPublic'
|
|
8842
8503
|
title: Results
|
|
8843
8504
|
type: array
|
|
8844
8505
|
required:
|
|
8845
8506
|
- results
|
|
8846
8507
|
- pagination
|
|
8847
|
-
title: Pagination[
|
|
8508
|
+
title: Pagination[UserPublic]
|
|
8848
8509
|
type: object
|
|
8849
8510
|
ParkingActionPayloadData:
|
|
8850
8511
|
properties:
|
|
@@ -11356,97 +11017,6 @@ components:
|
|
|
11356
11017
|
- status
|
|
11357
11018
|
title: UserPublicWithAttributes
|
|
11358
11019
|
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
|
|
11450
11020
|
UserSortField:
|
|
11451
11021
|
enum:
|
|
11452
11022
|
- created_on
|
|
@@ -11553,7 +11123,7 @@ components:
|
|
|
11553
11123
|
title: Username
|
|
11554
11124
|
title: UserUpdate
|
|
11555
11125
|
type: object
|
|
11556
|
-
|
|
11126
|
+
UserWithPermissions:
|
|
11557
11127
|
properties:
|
|
11558
11128
|
created_on:
|
|
11559
11129
|
description: The date/time the entry was created on
|
|
@@ -11615,10 +11185,6 @@ components:
|
|
|
11615
11185
|
examples:
|
|
11616
11186
|
- '+1.2125552368'
|
|
11617
11187
|
title: Phone
|
|
11618
|
-
role:
|
|
11619
|
-
anyOf:
|
|
11620
|
-
- $ref: '#/components/schemas/PublicRole'
|
|
11621
|
-
- type: 'null'
|
|
11622
11188
|
status:
|
|
11623
11189
|
$ref: '#/components/schemas/UserStatus'
|
|
11624
11190
|
readOnly: true
|
|
@@ -11663,7 +11229,7 @@ components:
|
|
|
11663
11229
|
- email
|
|
11664
11230
|
- locale
|
|
11665
11231
|
- status
|
|
11666
|
-
title:
|
|
11232
|
+
title: UserWithPermissions
|
|
11667
11233
|
type: object
|
|
11668
11234
|
ValidationError:
|
|
11669
11235
|
properties:
|
|
@@ -11989,7 +11555,7 @@ info:
|
|
|
11989
11555
|
\n\n"
|
|
11990
11556
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11991
11557
|
title: OpusDNS API
|
|
11992
|
-
version: 2026-06-11-
|
|
11558
|
+
version: 2026-06-11-130907
|
|
11993
11559
|
x-logo:
|
|
11994
11560
|
altText: OpusDNS API Reference
|
|
11995
11561
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -23949,7 +23515,7 @@ paths:
|
|
|
23949
23515
|
content:
|
|
23950
23516
|
application/json:
|
|
23951
23517
|
schema:
|
|
23952
|
-
$ref: '#/components/schemas/
|
|
23518
|
+
$ref: '#/components/schemas/Pagination_UserPublic_'
|
|
23953
23519
|
description: Successful Response
|
|
23954
23520
|
'401':
|
|
23955
23521
|
content:
|
|
@@ -25858,7 +25424,7 @@ paths:
|
|
|
25858
25424
|
content:
|
|
25859
25425
|
application/json:
|
|
25860
25426
|
schema:
|
|
25861
|
-
$ref: '#/components/schemas/
|
|
25427
|
+
$ref: '#/components/schemas/UserWithPermissions'
|
|
25862
25428
|
description: Successful Response
|
|
25863
25429
|
'422':
|
|
25864
25430
|
content:
|