@opusdns/api 0.297.0 → 0.299.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 +28 -1
- package/src/openapi.yaml +146 -49
- package/src/schema.d.ts +8 -1
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -18480,6 +18480,32 @@ export const KEYS_DOMAIN_STATUSES_BASE = [
|
|
|
18480
18480
|
KEY_DOMAIN_STATUSES_BASE_SUPPORTED_STATUSES,
|
|
18481
18481
|
] as const satisfies (keyof DomainStatusesBase)[];
|
|
18482
18482
|
|
|
18483
|
+
/**
|
|
18484
|
+
* By Organization
|
|
18485
|
+
*
|
|
18486
|
+
* Domain counts by organization name (name: count)
|
|
18487
|
+
*
|
|
18488
|
+
* @type {object}
|
|
18489
|
+
*
|
|
18490
|
+
*
|
|
18491
|
+
* @remarks
|
|
18492
|
+
* This key constant provides type-safe access to the `by_organization` property of DomainSummaryData objects.
|
|
18493
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
18494
|
+
*
|
|
18495
|
+
* @example
|
|
18496
|
+
* ```typescript
|
|
18497
|
+
* // Direct property access
|
|
18498
|
+
* const value = domainsummarydata[KEY_DOMAIN_SUMMARY_DATA_BY_ORGANIZATION];
|
|
18499
|
+
*
|
|
18500
|
+
* // Dynamic property access
|
|
18501
|
+
* const propertyName = KEY_DOMAIN_SUMMARY_DATA_BY_ORGANIZATION;
|
|
18502
|
+
* const value = domainsummarydata[propertyName];
|
|
18503
|
+
* ```
|
|
18504
|
+
*
|
|
18505
|
+
* @see {@link DomainSummaryData} - The TypeScript type definition
|
|
18506
|
+
* @see {@link KEYS_DOMAIN_SUMMARY_DATA} - Array of all keys for this type
|
|
18507
|
+
*/
|
|
18508
|
+
export const KEY_DOMAIN_SUMMARY_DATA_BY_ORGANIZATION: keyof DomainSummaryData = 'by_organization';
|
|
18483
18509
|
/**
|
|
18484
18510
|
* By Status
|
|
18485
18511
|
*
|
|
@@ -18560,7 +18586,7 @@ export const KEY_DOMAIN_SUMMARY_DATA_EXPIRING_SOON: keyof DomainSummaryData = 'e
|
|
|
18560
18586
|
/**
|
|
18561
18587
|
* Total Count
|
|
18562
18588
|
*
|
|
18563
|
-
* Total number of domains
|
|
18589
|
+
* Total number of domains including sub-organizations
|
|
18564
18590
|
*
|
|
18565
18591
|
* @type {integer}
|
|
18566
18592
|
*
|
|
@@ -18605,6 +18631,7 @@ export const KEY_DOMAIN_SUMMARY_DATA_TOTAL_COUNT: keyof DomainSummaryData = 'tot
|
|
|
18605
18631
|
* @see {@link DomainSummaryData} - The TypeScript type definition
|
|
18606
18632
|
*/
|
|
18607
18633
|
export const KEYS_DOMAIN_SUMMARY_DATA = [
|
|
18634
|
+
KEY_DOMAIN_SUMMARY_DATA_BY_ORGANIZATION,
|
|
18608
18635
|
KEY_DOMAIN_SUMMARY_DATA_BY_STATUS,
|
|
18609
18636
|
KEY_DOMAIN_SUMMARY_DATA_BY_TLD,
|
|
18610
18637
|
KEY_DOMAIN_SUMMARY_DATA_EXPIRING_SOON,
|
package/src/openapi.yaml
CHANGED
|
@@ -188,7 +188,8 @@ components:
|
|
|
188
188
|
type: string
|
|
189
189
|
product_reference:
|
|
190
190
|
anyOf:
|
|
191
|
-
-
|
|
191
|
+
- maxLength: 255
|
|
192
|
+
minLength: 1
|
|
192
193
|
type: string
|
|
193
194
|
- type: 'null'
|
|
194
195
|
description: The reference of the product
|
|
@@ -729,6 +730,7 @@ components:
|
|
|
729
730
|
properties:
|
|
730
731
|
city:
|
|
731
732
|
description: The city of the contact
|
|
733
|
+
maxLength: 255
|
|
732
734
|
minLength: 1
|
|
733
735
|
title: City
|
|
734
736
|
type: string
|
|
@@ -757,17 +759,20 @@ components:
|
|
|
757
759
|
title: Fax
|
|
758
760
|
first_name:
|
|
759
761
|
description: The first name of the contact
|
|
762
|
+
maxLength: 255
|
|
760
763
|
minLength: 1
|
|
761
764
|
title: First Name
|
|
762
765
|
type: string
|
|
763
766
|
last_name:
|
|
764
767
|
description: The last name of the contact
|
|
768
|
+
maxLength: 255
|
|
765
769
|
minLength: 1
|
|
766
770
|
title: Last Name
|
|
767
771
|
type: string
|
|
768
772
|
org:
|
|
769
773
|
anyOf:
|
|
770
|
-
-
|
|
774
|
+
- maxLength: 255
|
|
775
|
+
minLength: 1
|
|
771
776
|
type: string
|
|
772
777
|
- type: 'null'
|
|
773
778
|
description: The organization of the contact
|
|
@@ -781,24 +786,28 @@ components:
|
|
|
781
786
|
type: string
|
|
782
787
|
postal_code:
|
|
783
788
|
description: The postal code of the contact
|
|
789
|
+
maxLength: 255
|
|
784
790
|
minLength: 1
|
|
785
791
|
title: Postal Code
|
|
786
792
|
type: string
|
|
787
793
|
state:
|
|
788
794
|
anyOf:
|
|
789
|
-
-
|
|
795
|
+
- maxLength: 255
|
|
796
|
+
minLength: 1
|
|
790
797
|
type: string
|
|
791
798
|
- type: 'null'
|
|
792
799
|
description: The state of the contact
|
|
793
800
|
title: State
|
|
794
801
|
street:
|
|
795
802
|
description: The address of the contact
|
|
803
|
+
maxLength: 255
|
|
796
804
|
minLength: 1
|
|
797
805
|
title: Street
|
|
798
806
|
type: string
|
|
799
807
|
title:
|
|
800
808
|
anyOf:
|
|
801
|
-
-
|
|
809
|
+
- maxLength: 255
|
|
810
|
+
minLength: 1
|
|
802
811
|
type: string
|
|
803
812
|
- type: 'null'
|
|
804
813
|
description: The title of the contact
|
|
@@ -844,6 +853,7 @@ components:
|
|
|
844
853
|
properties:
|
|
845
854
|
city:
|
|
846
855
|
description: City
|
|
856
|
+
maxLength: 255
|
|
847
857
|
minLength: 1
|
|
848
858
|
title: City
|
|
849
859
|
type: string
|
|
@@ -874,17 +884,20 @@ components:
|
|
|
874
884
|
title: Fax
|
|
875
885
|
first_name:
|
|
876
886
|
description: First name of the contact
|
|
887
|
+
maxLength: 255
|
|
877
888
|
minLength: 1
|
|
878
889
|
title: First Name
|
|
879
890
|
type: string
|
|
880
891
|
last_name:
|
|
881
892
|
description: Last name of the contact
|
|
893
|
+
maxLength: 255
|
|
882
894
|
minLength: 1
|
|
883
895
|
title: Last Name
|
|
884
896
|
type: string
|
|
885
897
|
org:
|
|
886
898
|
anyOf:
|
|
887
|
-
-
|
|
899
|
+
- maxLength: 255
|
|
900
|
+
minLength: 1
|
|
888
901
|
type: string
|
|
889
902
|
- type: 'null'
|
|
890
903
|
description: Override organization for this contact
|
|
@@ -896,24 +909,28 @@ components:
|
|
|
896
909
|
type: string
|
|
897
910
|
postal_code:
|
|
898
911
|
description: Postal code
|
|
912
|
+
maxLength: 255
|
|
899
913
|
minLength: 1
|
|
900
914
|
title: Postal Code
|
|
901
915
|
type: string
|
|
902
916
|
state:
|
|
903
917
|
anyOf:
|
|
904
|
-
-
|
|
918
|
+
- maxLength: 255
|
|
919
|
+
minLength: 1
|
|
905
920
|
type: string
|
|
906
921
|
- type: 'null'
|
|
907
922
|
description: Override state for this contact
|
|
908
923
|
title: State
|
|
909
924
|
street:
|
|
910
925
|
description: Street address
|
|
926
|
+
maxLength: 255
|
|
911
927
|
minLength: 1
|
|
912
928
|
title: Street
|
|
913
929
|
type: string
|
|
914
930
|
title:
|
|
915
931
|
anyOf:
|
|
916
|
-
-
|
|
932
|
+
- maxLength: 255
|
|
933
|
+
minLength: 1
|
|
917
934
|
type: string
|
|
918
935
|
- type: 'null'
|
|
919
936
|
description: Override title for this contact
|
|
@@ -959,21 +976,24 @@ components:
|
|
|
959
976
|
type: boolean
|
|
960
977
|
org:
|
|
961
978
|
anyOf:
|
|
962
|
-
-
|
|
979
|
+
- maxLength: 255
|
|
980
|
+
minLength: 1
|
|
963
981
|
type: string
|
|
964
982
|
- type: 'null'
|
|
965
983
|
description: Organization name
|
|
966
984
|
title: Org
|
|
967
985
|
state:
|
|
968
986
|
anyOf:
|
|
969
|
-
-
|
|
987
|
+
- maxLength: 255
|
|
988
|
+
minLength: 1
|
|
970
989
|
type: string
|
|
971
990
|
- type: 'null'
|
|
972
991
|
description: State/province
|
|
973
992
|
title: State
|
|
974
993
|
title:
|
|
975
994
|
anyOf:
|
|
976
|
-
-
|
|
995
|
+
- maxLength: 255
|
|
996
|
+
minLength: 1
|
|
977
997
|
type: string
|
|
978
998
|
- type: 'null'
|
|
979
999
|
description: Contact title
|
|
@@ -1012,6 +1032,7 @@ components:
|
|
|
1012
1032
|
properties:
|
|
1013
1033
|
city:
|
|
1014
1034
|
description: The city of the contact
|
|
1035
|
+
maxLength: 255
|
|
1015
1036
|
minLength: 1
|
|
1016
1037
|
title: City
|
|
1017
1038
|
type: string
|
|
@@ -1040,17 +1061,20 @@ components:
|
|
|
1040
1061
|
title: Fax
|
|
1041
1062
|
first_name:
|
|
1042
1063
|
description: The first name of the contact
|
|
1064
|
+
maxLength: 255
|
|
1043
1065
|
minLength: 1
|
|
1044
1066
|
title: First Name
|
|
1045
1067
|
type: string
|
|
1046
1068
|
last_name:
|
|
1047
1069
|
description: The last name of the contact
|
|
1070
|
+
maxLength: 255
|
|
1048
1071
|
minLength: 1
|
|
1049
1072
|
title: Last Name
|
|
1050
1073
|
type: string
|
|
1051
1074
|
org:
|
|
1052
1075
|
anyOf:
|
|
1053
|
-
-
|
|
1076
|
+
- maxLength: 255
|
|
1077
|
+
minLength: 1
|
|
1054
1078
|
type: string
|
|
1055
1079
|
- type: 'null'
|
|
1056
1080
|
description: The organization of the contact
|
|
@@ -1064,24 +1088,28 @@ components:
|
|
|
1064
1088
|
type: string
|
|
1065
1089
|
postal_code:
|
|
1066
1090
|
description: The postal code of the contact
|
|
1091
|
+
maxLength: 255
|
|
1067
1092
|
minLength: 1
|
|
1068
1093
|
title: Postal Code
|
|
1069
1094
|
type: string
|
|
1070
1095
|
state:
|
|
1071
1096
|
anyOf:
|
|
1072
|
-
-
|
|
1097
|
+
- maxLength: 255
|
|
1098
|
+
minLength: 1
|
|
1073
1099
|
type: string
|
|
1074
1100
|
- type: 'null'
|
|
1075
1101
|
description: The state of the contact
|
|
1076
1102
|
title: State
|
|
1077
1103
|
street:
|
|
1078
1104
|
description: The address of the contact
|
|
1105
|
+
maxLength: 255
|
|
1079
1106
|
minLength: 1
|
|
1080
1107
|
title: Street
|
|
1081
1108
|
type: string
|
|
1082
1109
|
title:
|
|
1083
1110
|
anyOf:
|
|
1084
|
-
-
|
|
1111
|
+
- maxLength: 255
|
|
1112
|
+
minLength: 1
|
|
1085
1113
|
type: string
|
|
1086
1114
|
- type: 'null'
|
|
1087
1115
|
description: The title of the contact
|
|
@@ -1185,6 +1213,7 @@ components:
|
|
|
1185
1213
|
type: array
|
|
1186
1214
|
city:
|
|
1187
1215
|
description: The city of the contact
|
|
1216
|
+
maxLength: 255
|
|
1188
1217
|
minLength: 1
|
|
1189
1218
|
title: City
|
|
1190
1219
|
type: string
|
|
@@ -1226,17 +1255,20 @@ components:
|
|
|
1226
1255
|
title: Fax
|
|
1227
1256
|
first_name:
|
|
1228
1257
|
description: The first name of the contact
|
|
1258
|
+
maxLength: 255
|
|
1229
1259
|
minLength: 1
|
|
1230
1260
|
title: First Name
|
|
1231
1261
|
type: string
|
|
1232
1262
|
last_name:
|
|
1233
1263
|
description: The last name of the contact
|
|
1264
|
+
maxLength: 255
|
|
1234
1265
|
minLength: 1
|
|
1235
1266
|
title: Last Name
|
|
1236
1267
|
type: string
|
|
1237
1268
|
org:
|
|
1238
1269
|
anyOf:
|
|
1239
|
-
-
|
|
1270
|
+
- maxLength: 255
|
|
1271
|
+
minLength: 1
|
|
1240
1272
|
type: string
|
|
1241
1273
|
- type: 'null'
|
|
1242
1274
|
description: The organization of the contact
|
|
@@ -1260,18 +1292,21 @@ components:
|
|
|
1260
1292
|
type: string
|
|
1261
1293
|
postal_code:
|
|
1262
1294
|
description: The postal code of the contact
|
|
1295
|
+
maxLength: 255
|
|
1263
1296
|
minLength: 1
|
|
1264
1297
|
title: Postal Code
|
|
1265
1298
|
type: string
|
|
1266
1299
|
state:
|
|
1267
1300
|
anyOf:
|
|
1268
|
-
-
|
|
1301
|
+
- maxLength: 255
|
|
1302
|
+
minLength: 1
|
|
1269
1303
|
type: string
|
|
1270
1304
|
- type: 'null'
|
|
1271
1305
|
description: The state of the contact
|
|
1272
1306
|
title: State
|
|
1273
1307
|
street:
|
|
1274
1308
|
description: The address of the contact
|
|
1309
|
+
maxLength: 255
|
|
1275
1310
|
minLength: 1
|
|
1276
1311
|
title: Street
|
|
1277
1312
|
type: string
|
|
@@ -1285,7 +1320,8 @@ components:
|
|
|
1285
1320
|
title: Tags
|
|
1286
1321
|
title:
|
|
1287
1322
|
anyOf:
|
|
1288
|
-
-
|
|
1323
|
+
- maxLength: 255
|
|
1324
|
+
minLength: 1
|
|
1289
1325
|
type: string
|
|
1290
1326
|
- type: 'null'
|
|
1291
1327
|
description: The title of the contact
|
|
@@ -1306,6 +1342,7 @@ components:
|
|
|
1306
1342
|
properties:
|
|
1307
1343
|
city:
|
|
1308
1344
|
description: The city of the contact
|
|
1345
|
+
maxLength: 255
|
|
1309
1346
|
minLength: 1
|
|
1310
1347
|
title: City
|
|
1311
1348
|
type: string
|
|
@@ -1347,17 +1384,20 @@ components:
|
|
|
1347
1384
|
title: Fax
|
|
1348
1385
|
first_name:
|
|
1349
1386
|
description: The first name of the contact
|
|
1387
|
+
maxLength: 255
|
|
1350
1388
|
minLength: 1
|
|
1351
1389
|
title: First Name
|
|
1352
1390
|
type: string
|
|
1353
1391
|
last_name:
|
|
1354
1392
|
description: The last name of the contact
|
|
1393
|
+
maxLength: 255
|
|
1355
1394
|
minLength: 1
|
|
1356
1395
|
title: Last Name
|
|
1357
1396
|
type: string
|
|
1358
1397
|
org:
|
|
1359
1398
|
anyOf:
|
|
1360
|
-
-
|
|
1399
|
+
- maxLength: 255
|
|
1400
|
+
minLength: 1
|
|
1361
1401
|
type: string
|
|
1362
1402
|
- type: 'null'
|
|
1363
1403
|
description: The organization of the contact
|
|
@@ -1381,24 +1421,28 @@ components:
|
|
|
1381
1421
|
type: string
|
|
1382
1422
|
postal_code:
|
|
1383
1423
|
description: The postal code of the contact
|
|
1424
|
+
maxLength: 255
|
|
1384
1425
|
minLength: 1
|
|
1385
1426
|
title: Postal Code
|
|
1386
1427
|
type: string
|
|
1387
1428
|
state:
|
|
1388
1429
|
anyOf:
|
|
1389
|
-
-
|
|
1430
|
+
- maxLength: 255
|
|
1431
|
+
minLength: 1
|
|
1390
1432
|
type: string
|
|
1391
1433
|
- type: 'null'
|
|
1392
1434
|
description: The state of the contact
|
|
1393
1435
|
title: State
|
|
1394
1436
|
street:
|
|
1395
1437
|
description: The address of the contact
|
|
1438
|
+
maxLength: 255
|
|
1396
1439
|
minLength: 1
|
|
1397
1440
|
title: Street
|
|
1398
1441
|
type: string
|
|
1399
1442
|
title:
|
|
1400
1443
|
anyOf:
|
|
1401
|
-
-
|
|
1444
|
+
- maxLength: 255
|
|
1445
|
+
minLength: 1
|
|
1402
1446
|
type: string
|
|
1403
1447
|
- type: 'null'
|
|
1404
1448
|
description: The title of the contact
|
|
@@ -4003,7 +4047,8 @@ components:
|
|
|
4003
4047
|
properties:
|
|
4004
4048
|
auth_code:
|
|
4005
4049
|
anyOf:
|
|
4006
|
-
-
|
|
4050
|
+
- maxLength: 255
|
|
4051
|
+
minLength: 1
|
|
4007
4052
|
type: string
|
|
4008
4053
|
- type: 'null'
|
|
4009
4054
|
description: The auth code for the domain
|
|
@@ -4123,6 +4168,7 @@ components:
|
|
|
4123
4168
|
description: The second level domain
|
|
4124
4169
|
examples:
|
|
4125
4170
|
- example
|
|
4171
|
+
maxLength: 255
|
|
4126
4172
|
minLength: 1
|
|
4127
4173
|
title: Sld
|
|
4128
4174
|
type: string
|
|
@@ -4148,6 +4194,7 @@ components:
|
|
|
4148
4194
|
description: The top level domain of the domain
|
|
4149
4195
|
examples:
|
|
4150
4196
|
- com
|
|
4197
|
+
maxLength: 255
|
|
4151
4198
|
minLength: 1
|
|
4152
4199
|
title: Tld
|
|
4153
4200
|
type: string
|
|
@@ -4370,6 +4417,12 @@ components:
|
|
|
4370
4417
|
type: object
|
|
4371
4418
|
DomainSummaryData:
|
|
4372
4419
|
properties:
|
|
4420
|
+
by_organization:
|
|
4421
|
+
additionalProperties:
|
|
4422
|
+
type: integer
|
|
4423
|
+
description: 'Domain counts by organization name (name: count)'
|
|
4424
|
+
title: By Organization
|
|
4425
|
+
type: object
|
|
4373
4426
|
by_status:
|
|
4374
4427
|
additionalProperties:
|
|
4375
4428
|
type: integer
|
|
@@ -4386,13 +4439,14 @@ components:
|
|
|
4386
4439
|
$ref: '#/components/schemas/DomainsExpiringSoon'
|
|
4387
4440
|
description: Domains expiring soon
|
|
4388
4441
|
total_count:
|
|
4389
|
-
description: Total number of domains
|
|
4442
|
+
description: Total number of domains including sub-organizations
|
|
4390
4443
|
title: Total Count
|
|
4391
4444
|
type: integer
|
|
4392
4445
|
required:
|
|
4393
4446
|
- total_count
|
|
4394
4447
|
- by_status
|
|
4395
4448
|
- by_tld
|
|
4449
|
+
- by_organization
|
|
4396
4450
|
- expiring_soon
|
|
4397
4451
|
title: DomainSummaryData
|
|
4398
4452
|
type: object
|
|
@@ -4759,7 +4813,8 @@ components:
|
|
|
4759
4813
|
properties:
|
|
4760
4814
|
auth_code:
|
|
4761
4815
|
anyOf:
|
|
4762
|
-
-
|
|
4816
|
+
- maxLength: 255
|
|
4817
|
+
minLength: 1
|
|
4763
4818
|
type: string
|
|
4764
4819
|
- type: 'null'
|
|
4765
4820
|
description: The new auth code for the domain
|
|
@@ -4833,7 +4888,8 @@ components:
|
|
|
4833
4888
|
properties:
|
|
4834
4889
|
auth_code:
|
|
4835
4890
|
anyOf:
|
|
4836
|
-
-
|
|
4891
|
+
- maxLength: 255
|
|
4892
|
+
minLength: 1
|
|
4837
4893
|
type: string
|
|
4838
4894
|
- type: 'null'
|
|
4839
4895
|
description: Override auth code for this domain
|
|
@@ -4965,7 +5021,8 @@ components:
|
|
|
4965
5021
|
properties:
|
|
4966
5022
|
auth_code:
|
|
4967
5023
|
anyOf:
|
|
4968
|
-
-
|
|
5024
|
+
- maxLength: 255
|
|
5025
|
+
minLength: 1
|
|
4969
5026
|
type: string
|
|
4970
5027
|
- type: 'null'
|
|
4971
5028
|
description: The new auth code for the domain
|
|
@@ -7145,14 +7202,16 @@ components:
|
|
|
7145
7202
|
properties:
|
|
7146
7203
|
address_1:
|
|
7147
7204
|
anyOf:
|
|
7148
|
-
-
|
|
7205
|
+
- maxLength: 255
|
|
7206
|
+
minLength: 1
|
|
7149
7207
|
type: string
|
|
7150
7208
|
- type: 'null'
|
|
7151
7209
|
description: First line of the organization's address.
|
|
7152
7210
|
title: Address 1
|
|
7153
7211
|
address_2:
|
|
7154
7212
|
anyOf:
|
|
7155
|
-
-
|
|
7213
|
+
- maxLength: 255
|
|
7214
|
+
minLength: 1
|
|
7156
7215
|
type: string
|
|
7157
7216
|
- type: 'null'
|
|
7158
7217
|
description: Second line of the organization's address.
|
|
@@ -7173,7 +7232,8 @@ components:
|
|
|
7173
7232
|
title: Business Number
|
|
7174
7233
|
city:
|
|
7175
7234
|
anyOf:
|
|
7176
|
-
-
|
|
7235
|
+
- maxLength: 255
|
|
7236
|
+
minLength: 1
|
|
7177
7237
|
type: string
|
|
7178
7238
|
- type: 'null'
|
|
7179
7239
|
description: City of the organization's address.
|
|
@@ -7219,6 +7279,7 @@ components:
|
|
|
7219
7279
|
title: Keycloak Organization Id
|
|
7220
7280
|
name:
|
|
7221
7281
|
description: Name of the organization.
|
|
7282
|
+
maxLength: 255
|
|
7222
7283
|
minLength: 1
|
|
7223
7284
|
title: Name
|
|
7224
7285
|
type: string
|
|
@@ -7252,7 +7313,8 @@ components:
|
|
|
7252
7313
|
title: Postal Code
|
|
7253
7314
|
state:
|
|
7254
7315
|
anyOf:
|
|
7255
|
-
-
|
|
7316
|
+
- maxLength: 255
|
|
7317
|
+
minLength: 1
|
|
7256
7318
|
type: string
|
|
7257
7319
|
- type: 'null'
|
|
7258
7320
|
description: State or province of the organization's address.
|
|
@@ -7428,14 +7490,16 @@ components:
|
|
|
7428
7490
|
properties:
|
|
7429
7491
|
address_1:
|
|
7430
7492
|
anyOf:
|
|
7431
|
-
-
|
|
7493
|
+
- maxLength: 255
|
|
7494
|
+
minLength: 1
|
|
7432
7495
|
type: string
|
|
7433
7496
|
- type: 'null'
|
|
7434
7497
|
description: First line of the organization's address.
|
|
7435
7498
|
title: Address 1
|
|
7436
7499
|
address_2:
|
|
7437
7500
|
anyOf:
|
|
7438
|
-
-
|
|
7501
|
+
- maxLength: 255
|
|
7502
|
+
minLength: 1
|
|
7439
7503
|
type: string
|
|
7440
7504
|
- type: 'null'
|
|
7441
7505
|
description: Second line of the organization's address.
|
|
@@ -7457,7 +7521,8 @@ components:
|
|
|
7457
7521
|
title: Business Number
|
|
7458
7522
|
city:
|
|
7459
7523
|
anyOf:
|
|
7460
|
-
-
|
|
7524
|
+
- maxLength: 255
|
|
7525
|
+
minLength: 1
|
|
7461
7526
|
type: string
|
|
7462
7527
|
- type: 'null'
|
|
7463
7528
|
description: City of the organization's address.
|
|
@@ -7485,6 +7550,7 @@ components:
|
|
|
7485
7550
|
title: Default Locale
|
|
7486
7551
|
name:
|
|
7487
7552
|
description: Name of the organization.
|
|
7553
|
+
maxLength: 255
|
|
7488
7554
|
minLength: 1
|
|
7489
7555
|
title: Name
|
|
7490
7556
|
type: string
|
|
@@ -7509,7 +7575,8 @@ components:
|
|
|
7509
7575
|
title: Postal Code
|
|
7510
7576
|
state:
|
|
7511
7577
|
anyOf:
|
|
7512
|
-
-
|
|
7578
|
+
- maxLength: 255
|
|
7579
|
+
minLength: 1
|
|
7513
7580
|
type: string
|
|
7514
7581
|
- type: 'null'
|
|
7515
7582
|
description: State or province of the organization's address.
|
|
@@ -7588,14 +7655,16 @@ components:
|
|
|
7588
7655
|
properties:
|
|
7589
7656
|
address_1:
|
|
7590
7657
|
anyOf:
|
|
7591
|
-
-
|
|
7658
|
+
- maxLength: 255
|
|
7659
|
+
minLength: 1
|
|
7592
7660
|
type: string
|
|
7593
7661
|
- type: 'null'
|
|
7594
7662
|
description: First line of the organization's address.
|
|
7595
7663
|
title: Address 1
|
|
7596
7664
|
address_2:
|
|
7597
7665
|
anyOf:
|
|
7598
|
-
-
|
|
7666
|
+
- maxLength: 255
|
|
7667
|
+
minLength: 1
|
|
7599
7668
|
type: string
|
|
7600
7669
|
- type: 'null'
|
|
7601
7670
|
description: Second line of the organization's address.
|
|
@@ -7611,7 +7680,8 @@ components:
|
|
|
7611
7680
|
title: Business Number
|
|
7612
7681
|
city:
|
|
7613
7682
|
anyOf:
|
|
7614
|
-
-
|
|
7683
|
+
- maxLength: 255
|
|
7684
|
+
minLength: 1
|
|
7615
7685
|
type: string
|
|
7616
7686
|
- type: 'null'
|
|
7617
7687
|
description: City of the organization's address.
|
|
@@ -7635,35 +7705,40 @@ components:
|
|
|
7635
7705
|
title: Default Locale
|
|
7636
7706
|
name:
|
|
7637
7707
|
anyOf:
|
|
7638
|
-
-
|
|
7708
|
+
- maxLength: 255
|
|
7709
|
+
minLength: 1
|
|
7639
7710
|
type: string
|
|
7640
7711
|
- type: 'null'
|
|
7641
7712
|
description: Name of the organization.
|
|
7642
7713
|
title: Name
|
|
7643
7714
|
postal_code:
|
|
7644
7715
|
anyOf:
|
|
7645
|
-
-
|
|
7716
|
+
- maxLength: 255
|
|
7717
|
+
minLength: 1
|
|
7646
7718
|
type: string
|
|
7647
7719
|
- type: 'null'
|
|
7648
7720
|
description: Postal code of the organization's address.
|
|
7649
7721
|
title: Postal Code
|
|
7650
7722
|
state:
|
|
7651
7723
|
anyOf:
|
|
7652
|
-
-
|
|
7724
|
+
- maxLength: 255
|
|
7725
|
+
minLength: 1
|
|
7653
7726
|
type: string
|
|
7654
7727
|
- type: 'null'
|
|
7655
7728
|
description: State or province of the organization's address.
|
|
7656
7729
|
title: State
|
|
7657
7730
|
tax_id:
|
|
7658
7731
|
anyOf:
|
|
7659
|
-
-
|
|
7732
|
+
- maxLength: 255
|
|
7733
|
+
minLength: 1
|
|
7660
7734
|
type: string
|
|
7661
7735
|
- type: 'null'
|
|
7662
7736
|
description: Tax ID of the organization.
|
|
7663
7737
|
title: Tax Id
|
|
7664
7738
|
tax_id_type:
|
|
7665
7739
|
anyOf:
|
|
7666
|
-
-
|
|
7740
|
+
- maxLength: 255
|
|
7741
|
+
minLength: 1
|
|
7667
7742
|
type: string
|
|
7668
7743
|
- type: 'null'
|
|
7669
7744
|
description: Type of tax ID for the organization.
|
|
@@ -7690,14 +7765,16 @@ components:
|
|
|
7690
7765
|
$ref: '#/components/schemas/BillingPlan'
|
|
7691
7766
|
address_1:
|
|
7692
7767
|
anyOf:
|
|
7693
|
-
-
|
|
7768
|
+
- maxLength: 255
|
|
7769
|
+
minLength: 1
|
|
7694
7770
|
type: string
|
|
7695
7771
|
- type: 'null'
|
|
7696
7772
|
description: First line of the organization's address.
|
|
7697
7773
|
title: Address 1
|
|
7698
7774
|
address_2:
|
|
7699
7775
|
anyOf:
|
|
7700
|
-
-
|
|
7776
|
+
- maxLength: 255
|
|
7777
|
+
minLength: 1
|
|
7701
7778
|
type: string
|
|
7702
7779
|
- type: 'null'
|
|
7703
7780
|
description: Second line of the organization's address.
|
|
@@ -7720,7 +7797,8 @@ components:
|
|
|
7720
7797
|
title: Business Number
|
|
7721
7798
|
city:
|
|
7722
7799
|
anyOf:
|
|
7723
|
-
-
|
|
7800
|
+
- maxLength: 255
|
|
7801
|
+
minLength: 1
|
|
7724
7802
|
type: string
|
|
7725
7803
|
- type: 'null'
|
|
7726
7804
|
description: City of the organization's address.
|
|
@@ -7766,6 +7844,7 @@ components:
|
|
|
7766
7844
|
title: Keycloak Organization Id
|
|
7767
7845
|
name:
|
|
7768
7846
|
description: Name of the organization.
|
|
7847
|
+
maxLength: 255
|
|
7769
7848
|
minLength: 1
|
|
7770
7849
|
title: Name
|
|
7771
7850
|
type: string
|
|
@@ -7799,7 +7878,8 @@ components:
|
|
|
7799
7878
|
title: Postal Code
|
|
7800
7879
|
state:
|
|
7801
7880
|
anyOf:
|
|
7802
|
-
-
|
|
7881
|
+
- maxLength: 255
|
|
7882
|
+
minLength: 1
|
|
7803
7883
|
type: string
|
|
7804
7884
|
- type: 'null'
|
|
7805
7885
|
description: State or province of the organization's address.
|
|
@@ -9524,6 +9604,7 @@ components:
|
|
|
9524
9604
|
title: Description
|
|
9525
9605
|
label:
|
|
9526
9606
|
description: The label of the tag
|
|
9607
|
+
maxLength: 255
|
|
9527
9608
|
minLength: 1
|
|
9528
9609
|
title: Label
|
|
9529
9610
|
type: string
|
|
@@ -9609,6 +9690,7 @@ components:
|
|
|
9609
9690
|
description: The color of the tag
|
|
9610
9691
|
label:
|
|
9611
9692
|
description: The label of the tag
|
|
9693
|
+
maxLength: 255
|
|
9612
9694
|
minLength: 1
|
|
9613
9695
|
title: Label
|
|
9614
9696
|
type: string
|
|
@@ -9652,6 +9734,7 @@ components:
|
|
|
9652
9734
|
title: Description
|
|
9653
9735
|
label:
|
|
9654
9736
|
description: The label of the tag
|
|
9737
|
+
maxLength: 255
|
|
9655
9738
|
minLength: 1
|
|
9656
9739
|
title: Label
|
|
9657
9740
|
type: string
|
|
@@ -10322,6 +10405,7 @@ components:
|
|
|
10322
10405
|
type: string
|
|
10323
10406
|
first_name:
|
|
10324
10407
|
description: The user's first name
|
|
10408
|
+
maxLength: 255
|
|
10325
10409
|
minLength: 1
|
|
10326
10410
|
title: First Name
|
|
10327
10411
|
type: string
|
|
@@ -10333,6 +10417,7 @@ components:
|
|
|
10333
10417
|
title: Keycloak User Id
|
|
10334
10418
|
last_name:
|
|
10335
10419
|
description: The user's last name
|
|
10420
|
+
maxLength: 255
|
|
10336
10421
|
minLength: 1
|
|
10337
10422
|
title: Last Name
|
|
10338
10423
|
type: string
|
|
@@ -10450,11 +10535,13 @@ components:
|
|
|
10450
10535
|
type: string
|
|
10451
10536
|
first_name:
|
|
10452
10537
|
description: The user's first name
|
|
10538
|
+
maxLength: 255
|
|
10453
10539
|
minLength: 1
|
|
10454
10540
|
title: First Name
|
|
10455
10541
|
type: string
|
|
10456
10542
|
last_name:
|
|
10457
10543
|
description: The user's last name
|
|
10544
|
+
maxLength: 255
|
|
10458
10545
|
minLength: 1
|
|
10459
10546
|
title: Last Name
|
|
10460
10547
|
type: string
|
|
@@ -10524,11 +10611,13 @@ components:
|
|
|
10524
10611
|
type: string
|
|
10525
10612
|
first_name:
|
|
10526
10613
|
description: The user's first name
|
|
10614
|
+
maxLength: 255
|
|
10527
10615
|
minLength: 1
|
|
10528
10616
|
title: First Name
|
|
10529
10617
|
type: string
|
|
10530
10618
|
last_name:
|
|
10531
10619
|
description: The user's last name
|
|
10620
|
+
maxLength: 255
|
|
10532
10621
|
minLength: 1
|
|
10533
10622
|
title: Last Name
|
|
10534
10623
|
type: string
|
|
@@ -10609,11 +10698,13 @@ components:
|
|
|
10609
10698
|
type: string
|
|
10610
10699
|
first_name:
|
|
10611
10700
|
description: The user's first name
|
|
10701
|
+
maxLength: 255
|
|
10612
10702
|
minLength: 1
|
|
10613
10703
|
title: First Name
|
|
10614
10704
|
type: string
|
|
10615
10705
|
last_name:
|
|
10616
10706
|
description: The user's last name
|
|
10707
|
+
maxLength: 255
|
|
10617
10708
|
minLength: 1
|
|
10618
10709
|
title: Last Name
|
|
10619
10710
|
type: string
|
|
@@ -10746,14 +10837,16 @@ components:
|
|
|
10746
10837
|
title: Email
|
|
10747
10838
|
first_name:
|
|
10748
10839
|
anyOf:
|
|
10749
|
-
-
|
|
10840
|
+
- maxLength: 255
|
|
10841
|
+
minLength: 1
|
|
10750
10842
|
type: string
|
|
10751
10843
|
- type: 'null'
|
|
10752
10844
|
description: The user's first name
|
|
10753
10845
|
title: First Name
|
|
10754
10846
|
last_name:
|
|
10755
10847
|
anyOf:
|
|
10756
|
-
-
|
|
10848
|
+
- maxLength: 255
|
|
10849
|
+
minLength: 1
|
|
10757
10850
|
type: string
|
|
10758
10851
|
- type: 'null'
|
|
10759
10852
|
description: The user's last name
|
|
@@ -10783,7 +10876,8 @@ components:
|
|
|
10783
10876
|
title: User Attributes
|
|
10784
10877
|
username:
|
|
10785
10878
|
anyOf:
|
|
10786
|
-
-
|
|
10879
|
+
- maxLength: 255
|
|
10880
|
+
minLength: 1
|
|
10787
10881
|
type: string
|
|
10788
10882
|
- type: 'null'
|
|
10789
10883
|
description: The user's unique username
|
|
@@ -10811,11 +10905,13 @@ components:
|
|
|
10811
10905
|
type: string
|
|
10812
10906
|
first_name:
|
|
10813
10907
|
description: The user's first name
|
|
10908
|
+
maxLength: 255
|
|
10814
10909
|
minLength: 1
|
|
10815
10910
|
title: First Name
|
|
10816
10911
|
type: string
|
|
10817
10912
|
last_name:
|
|
10818
10913
|
description: The user's last name
|
|
10914
|
+
maxLength: 255
|
|
10819
10915
|
minLength: 1
|
|
10820
10916
|
title: Last Name
|
|
10821
10917
|
type: string
|
|
@@ -11209,7 +11305,7 @@ info:
|
|
|
11209
11305
|
\n\n"
|
|
11210
11306
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11211
11307
|
title: OpusDNS API
|
|
11212
|
-
version: 2026-05-
|
|
11308
|
+
version: 2026-05-13-153000
|
|
11213
11309
|
x-logo:
|
|
11214
11310
|
altText: OpusDNS API Reference
|
|
11215
11311
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -23216,7 +23312,8 @@ paths:
|
|
|
23216
23312
|
required: false
|
|
23217
23313
|
schema:
|
|
23218
23314
|
anyOf:
|
|
23219
|
-
-
|
|
23315
|
+
- maxLength: 255
|
|
23316
|
+
minLength: 1
|
|
23220
23317
|
type: string
|
|
23221
23318
|
- type: 'null'
|
|
23222
23319
|
title: Product Reference
|
package/src/schema.d.ts
CHANGED
|
@@ -5338,6 +5338,13 @@ export interface components {
|
|
|
5338
5338
|
};
|
|
5339
5339
|
/** DomainSummaryData */
|
|
5340
5340
|
DomainSummaryData: {
|
|
5341
|
+
/**
|
|
5342
|
+
* By Organization
|
|
5343
|
+
* @description Domain counts by organization name (name: count)
|
|
5344
|
+
*/
|
|
5345
|
+
by_organization: {
|
|
5346
|
+
[key: string]: number;
|
|
5347
|
+
};
|
|
5341
5348
|
/**
|
|
5342
5349
|
* By Status
|
|
5343
5350
|
* @description Domain counts by status (status: count)
|
|
@@ -5356,7 +5363,7 @@ export interface components {
|
|
|
5356
5363
|
expiring_soon: components["schemas"]["DomainsExpiringSoon"];
|
|
5357
5364
|
/**
|
|
5358
5365
|
* Total Count
|
|
5359
|
-
* @description Total number of domains
|
|
5366
|
+
* @description Total number of domains including sub-organizations
|
|
5360
5367
|
*/
|
|
5361
5368
|
total_count: number;
|
|
5362
5369
|
};
|