@unkey/api 0.33.1 → 0.34.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/dist/index.d.mts +293 -4
- package/dist/index.d.ts +293 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -260,6 +260,28 @@ interface components {
|
|
|
260
260
|
requestId: string;
|
|
261
261
|
};
|
|
262
262
|
};
|
|
263
|
+
ErrPreconditionFailed: {
|
|
264
|
+
error: {
|
|
265
|
+
/**
|
|
266
|
+
* @description A machine readable error code.
|
|
267
|
+
* @example PRECONDITION_FAILED
|
|
268
|
+
* @enum {string}
|
|
269
|
+
*/
|
|
270
|
+
code: "PRECONDITION_FAILED";
|
|
271
|
+
/**
|
|
272
|
+
* @description A link to our documentation with more details about this error code
|
|
273
|
+
* @example https://unkey.dev/docs/api-reference/errors/code/PRECONDITION_FAILED
|
|
274
|
+
*/
|
|
275
|
+
docs: string;
|
|
276
|
+
/** @description A human readable explanation of what went wrong */
|
|
277
|
+
message: string;
|
|
278
|
+
/**
|
|
279
|
+
* @description Please always include the requestId in your error report
|
|
280
|
+
* @example req_1234
|
|
281
|
+
*/
|
|
282
|
+
requestId: string;
|
|
283
|
+
};
|
|
284
|
+
};
|
|
263
285
|
ErrTooManyRequests: {
|
|
264
286
|
error: {
|
|
265
287
|
/**
|
|
@@ -570,6 +592,8 @@ interface components {
|
|
|
570
592
|
[key: string]: unknown;
|
|
571
593
|
};
|
|
572
594
|
};
|
|
595
|
+
/** @description A unique id for this request, please provide it to Unkey support to help us debug your issue. */
|
|
596
|
+
requestId: string;
|
|
573
597
|
};
|
|
574
598
|
/** @description A query for which permissions you require */
|
|
575
599
|
PermissionQuery: OneOf<[string, {
|
|
@@ -748,6 +772,12 @@ interface operations {
|
|
|
748
772
|
"application/json": components["schemas"]["ErrConflict"];
|
|
749
773
|
};
|
|
750
774
|
};
|
|
775
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
776
|
+
412: {
|
|
777
|
+
content: {
|
|
778
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
779
|
+
};
|
|
780
|
+
};
|
|
751
781
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
752
782
|
429: {
|
|
753
783
|
content: {
|
|
@@ -806,6 +836,12 @@ interface operations {
|
|
|
806
836
|
"application/json": components["schemas"]["ErrConflict"];
|
|
807
837
|
};
|
|
808
838
|
};
|
|
839
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
840
|
+
412: {
|
|
841
|
+
content: {
|
|
842
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
843
|
+
};
|
|
844
|
+
};
|
|
809
845
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
810
846
|
429: {
|
|
811
847
|
content: {
|
|
@@ -923,6 +959,12 @@ interface operations {
|
|
|
923
959
|
"application/json": components["schemas"]["ErrConflict"];
|
|
924
960
|
};
|
|
925
961
|
};
|
|
962
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
963
|
+
412: {
|
|
964
|
+
content: {
|
|
965
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
966
|
+
};
|
|
967
|
+
};
|
|
926
968
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
927
969
|
429: {
|
|
928
970
|
content: {
|
|
@@ -947,7 +989,7 @@ interface operations {
|
|
|
947
989
|
*/
|
|
948
990
|
keyId: string;
|
|
949
991
|
/**
|
|
950
|
-
* @description By default Unkey soft deletes keys, so they may be recovered later. If you want to permanently delete it, set permanent=true. This might be necessary if you run into
|
|
992
|
+
* @description By default Unkey soft deletes keys, so they may be recovered later. If you want to permanently delete it, set permanent=true. This might be necessary if you run into CONFLICT errors during key migration.
|
|
951
993
|
* @default false
|
|
952
994
|
*/
|
|
953
995
|
permanent?: boolean;
|
|
@@ -991,6 +1033,12 @@ interface operations {
|
|
|
991
1033
|
"application/json": components["schemas"]["ErrConflict"];
|
|
992
1034
|
};
|
|
993
1035
|
};
|
|
1036
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
1037
|
+
412: {
|
|
1038
|
+
content: {
|
|
1039
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
1040
|
+
};
|
|
1041
|
+
};
|
|
994
1042
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
995
1043
|
429: {
|
|
996
1044
|
content: {
|
|
@@ -1218,6 +1266,12 @@ interface operations {
|
|
|
1218
1266
|
"application/json": components["schemas"]["ErrConflict"];
|
|
1219
1267
|
};
|
|
1220
1268
|
};
|
|
1269
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
1270
|
+
412: {
|
|
1271
|
+
content: {
|
|
1272
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
1273
|
+
};
|
|
1274
|
+
};
|
|
1221
1275
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
1222
1276
|
429: {
|
|
1223
1277
|
content: {
|
|
@@ -1275,6 +1329,12 @@ interface operations {
|
|
|
1275
1329
|
"application/json": components["schemas"]["ErrConflict"];
|
|
1276
1330
|
};
|
|
1277
1331
|
};
|
|
1332
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
1333
|
+
412: {
|
|
1334
|
+
content: {
|
|
1335
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
1336
|
+
};
|
|
1337
|
+
};
|
|
1278
1338
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
1279
1339
|
429: {
|
|
1280
1340
|
content: {
|
|
@@ -1499,6 +1559,12 @@ interface operations {
|
|
|
1499
1559
|
"application/json": components["schemas"]["ErrConflict"];
|
|
1500
1560
|
};
|
|
1501
1561
|
};
|
|
1562
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
1563
|
+
412: {
|
|
1564
|
+
content: {
|
|
1565
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
1566
|
+
};
|
|
1567
|
+
};
|
|
1502
1568
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
1503
1569
|
429: {
|
|
1504
1570
|
content: {
|
|
@@ -1578,6 +1644,12 @@ interface operations {
|
|
|
1578
1644
|
"application/json": components["schemas"]["ErrConflict"];
|
|
1579
1645
|
};
|
|
1580
1646
|
};
|
|
1647
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
1648
|
+
412: {
|
|
1649
|
+
content: {
|
|
1650
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
1651
|
+
};
|
|
1652
|
+
};
|
|
1581
1653
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
1582
1654
|
429: {
|
|
1583
1655
|
content: {
|
|
@@ -1662,6 +1734,12 @@ interface operations {
|
|
|
1662
1734
|
"application/json": components["schemas"]["ErrConflict"];
|
|
1663
1735
|
};
|
|
1664
1736
|
};
|
|
1737
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
1738
|
+
412: {
|
|
1739
|
+
content: {
|
|
1740
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
1741
|
+
};
|
|
1742
|
+
};
|
|
1665
1743
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
1666
1744
|
429: {
|
|
1667
1745
|
content: {
|
|
@@ -1745,6 +1823,12 @@ interface operations {
|
|
|
1745
1823
|
"application/json": components["schemas"]["ErrConflict"];
|
|
1746
1824
|
};
|
|
1747
1825
|
};
|
|
1826
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
1827
|
+
412: {
|
|
1828
|
+
content: {
|
|
1829
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
1830
|
+
};
|
|
1831
|
+
};
|
|
1748
1832
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
1749
1833
|
429: {
|
|
1750
1834
|
content: {
|
|
@@ -1822,6 +1906,12 @@ interface operations {
|
|
|
1822
1906
|
"application/json": components["schemas"]["ErrConflict"];
|
|
1823
1907
|
};
|
|
1824
1908
|
};
|
|
1909
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
1910
|
+
412: {
|
|
1911
|
+
content: {
|
|
1912
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
1913
|
+
};
|
|
1914
|
+
};
|
|
1825
1915
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
1826
1916
|
429: {
|
|
1827
1917
|
content: {
|
|
@@ -1920,6 +2010,12 @@ interface operations {
|
|
|
1920
2010
|
"application/json": components["schemas"]["ErrConflict"];
|
|
1921
2011
|
};
|
|
1922
2012
|
};
|
|
2013
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
2014
|
+
412: {
|
|
2015
|
+
content: {
|
|
2016
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
2017
|
+
};
|
|
2018
|
+
};
|
|
1923
2019
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
1924
2020
|
429: {
|
|
1925
2021
|
content: {
|
|
@@ -2018,6 +2114,12 @@ interface operations {
|
|
|
2018
2114
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2019
2115
|
};
|
|
2020
2116
|
};
|
|
2117
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
2118
|
+
412: {
|
|
2119
|
+
content: {
|
|
2120
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
2121
|
+
};
|
|
2122
|
+
};
|
|
2021
2123
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
2022
2124
|
429: {
|
|
2023
2125
|
content: {
|
|
@@ -2095,6 +2197,12 @@ interface operations {
|
|
|
2095
2197
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2096
2198
|
};
|
|
2097
2199
|
};
|
|
2200
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
2201
|
+
412: {
|
|
2202
|
+
content: {
|
|
2203
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
2204
|
+
};
|
|
2205
|
+
};
|
|
2098
2206
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
2099
2207
|
429: {
|
|
2100
2208
|
content: {
|
|
@@ -2193,6 +2301,12 @@ interface operations {
|
|
|
2193
2301
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2194
2302
|
};
|
|
2195
2303
|
};
|
|
2304
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
2305
|
+
412: {
|
|
2306
|
+
content: {
|
|
2307
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
2308
|
+
};
|
|
2309
|
+
};
|
|
2196
2310
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
2197
2311
|
429: {
|
|
2198
2312
|
content: {
|
|
@@ -2266,6 +2380,12 @@ interface operations {
|
|
|
2266
2380
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2267
2381
|
};
|
|
2268
2382
|
};
|
|
2383
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
2384
|
+
412: {
|
|
2385
|
+
content: {
|
|
2386
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
2387
|
+
};
|
|
2388
|
+
};
|
|
2269
2389
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
2270
2390
|
429: {
|
|
2271
2391
|
content: {
|
|
@@ -2335,6 +2455,12 @@ interface operations {
|
|
|
2335
2455
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2336
2456
|
};
|
|
2337
2457
|
};
|
|
2458
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
2459
|
+
412: {
|
|
2460
|
+
content: {
|
|
2461
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
2462
|
+
};
|
|
2463
|
+
};
|
|
2338
2464
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
2339
2465
|
429: {
|
|
2340
2466
|
content: {
|
|
@@ -2407,6 +2533,12 @@ interface operations {
|
|
|
2407
2533
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2408
2534
|
};
|
|
2409
2535
|
};
|
|
2536
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
2537
|
+
412: {
|
|
2538
|
+
content: {
|
|
2539
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
2540
|
+
};
|
|
2541
|
+
};
|
|
2410
2542
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
2411
2543
|
429: {
|
|
2412
2544
|
content: {
|
|
@@ -2470,6 +2602,12 @@ interface operations {
|
|
|
2470
2602
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2471
2603
|
};
|
|
2472
2604
|
};
|
|
2605
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
2606
|
+
412: {
|
|
2607
|
+
content: {
|
|
2608
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
2609
|
+
};
|
|
2610
|
+
};
|
|
2473
2611
|
/** @description The api is protected from deletions */
|
|
2474
2612
|
429: {
|
|
2475
2613
|
content: {
|
|
@@ -2541,6 +2679,12 @@ interface operations {
|
|
|
2541
2679
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2542
2680
|
};
|
|
2543
2681
|
};
|
|
2682
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
2683
|
+
412: {
|
|
2684
|
+
content: {
|
|
2685
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
2686
|
+
};
|
|
2687
|
+
};
|
|
2544
2688
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
2545
2689
|
429: {
|
|
2546
2690
|
content: {
|
|
@@ -2689,6 +2833,12 @@ interface operations {
|
|
|
2689
2833
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2690
2834
|
};
|
|
2691
2835
|
};
|
|
2836
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
2837
|
+
412: {
|
|
2838
|
+
content: {
|
|
2839
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
2840
|
+
};
|
|
2841
|
+
};
|
|
2692
2842
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
2693
2843
|
429: {
|
|
2694
2844
|
content: {
|
|
@@ -2783,6 +2933,12 @@ interface operations {
|
|
|
2783
2933
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2784
2934
|
};
|
|
2785
2935
|
};
|
|
2936
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
2937
|
+
412: {
|
|
2938
|
+
content: {
|
|
2939
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
2940
|
+
};
|
|
2941
|
+
};
|
|
2786
2942
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
2787
2943
|
429: {
|
|
2788
2944
|
content: {
|
|
@@ -2858,6 +3014,12 @@ interface operations {
|
|
|
2858
3014
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2859
3015
|
};
|
|
2860
3016
|
};
|
|
3017
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
3018
|
+
412: {
|
|
3019
|
+
content: {
|
|
3020
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
3021
|
+
};
|
|
3022
|
+
};
|
|
2861
3023
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
2862
3024
|
429: {
|
|
2863
3025
|
content: {
|
|
@@ -2931,6 +3093,12 @@ interface operations {
|
|
|
2931
3093
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2932
3094
|
};
|
|
2933
3095
|
};
|
|
3096
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
3097
|
+
412: {
|
|
3098
|
+
content: {
|
|
3099
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
3100
|
+
};
|
|
3101
|
+
};
|
|
2934
3102
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
2935
3103
|
429: {
|
|
2936
3104
|
content: {
|
|
@@ -2996,6 +3164,12 @@ interface operations {
|
|
|
2996
3164
|
"application/json": components["schemas"]["ErrConflict"];
|
|
2997
3165
|
};
|
|
2998
3166
|
};
|
|
3167
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
3168
|
+
412: {
|
|
3169
|
+
content: {
|
|
3170
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
3171
|
+
};
|
|
3172
|
+
};
|
|
2999
3173
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
3000
3174
|
429: {
|
|
3001
3175
|
content: {
|
|
@@ -3216,6 +3390,12 @@ interface operations {
|
|
|
3216
3390
|
"application/json": components["schemas"]["ErrConflict"];
|
|
3217
3391
|
};
|
|
3218
3392
|
};
|
|
3393
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
3394
|
+
412: {
|
|
3395
|
+
content: {
|
|
3396
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
3397
|
+
};
|
|
3398
|
+
};
|
|
3219
3399
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
3220
3400
|
429: {
|
|
3221
3401
|
content: {
|
|
@@ -3426,6 +3606,12 @@ interface operations {
|
|
|
3426
3606
|
"application/json": components["schemas"]["ErrConflict"];
|
|
3427
3607
|
};
|
|
3428
3608
|
};
|
|
3609
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
3610
|
+
412: {
|
|
3611
|
+
content: {
|
|
3612
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
3613
|
+
};
|
|
3614
|
+
};
|
|
3429
3615
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
3430
3616
|
429: {
|
|
3431
3617
|
content: {
|
|
@@ -3453,7 +3639,7 @@ interface operations {
|
|
|
3453
3639
|
* @description Explain what this permission does. This is just for your team, your users will not see this.
|
|
3454
3640
|
* @example record.write can create new dns records for our domains.
|
|
3455
3641
|
*/
|
|
3456
|
-
description?: string;
|
|
3642
|
+
description?: string | "";
|
|
3457
3643
|
};
|
|
3458
3644
|
};
|
|
3459
3645
|
};
|
|
@@ -3500,6 +3686,12 @@ interface operations {
|
|
|
3500
3686
|
"application/json": components["schemas"]["ErrConflict"];
|
|
3501
3687
|
};
|
|
3502
3688
|
};
|
|
3689
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
3690
|
+
412: {
|
|
3691
|
+
content: {
|
|
3692
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
3693
|
+
};
|
|
3694
|
+
};
|
|
3503
3695
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
3504
3696
|
429: {
|
|
3505
3697
|
content: {
|
|
@@ -3563,6 +3755,12 @@ interface operations {
|
|
|
3563
3755
|
"application/json": components["schemas"]["ErrConflict"];
|
|
3564
3756
|
};
|
|
3565
3757
|
};
|
|
3758
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
3759
|
+
412: {
|
|
3760
|
+
content: {
|
|
3761
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
3762
|
+
};
|
|
3763
|
+
};
|
|
3566
3764
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
3567
3765
|
429: {
|
|
3568
3766
|
content: {
|
|
@@ -3636,6 +3834,12 @@ interface operations {
|
|
|
3636
3834
|
"application/json": components["schemas"]["ErrConflict"];
|
|
3637
3835
|
};
|
|
3638
3836
|
};
|
|
3837
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
3838
|
+
412: {
|
|
3839
|
+
content: {
|
|
3840
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
3841
|
+
};
|
|
3842
|
+
};
|
|
3639
3843
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
3640
3844
|
429: {
|
|
3641
3845
|
content: {
|
|
@@ -3704,6 +3908,12 @@ interface operations {
|
|
|
3704
3908
|
"application/json": components["schemas"]["ErrConflict"];
|
|
3705
3909
|
};
|
|
3706
3910
|
};
|
|
3911
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
3912
|
+
412: {
|
|
3913
|
+
content: {
|
|
3914
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
3915
|
+
};
|
|
3916
|
+
};
|
|
3707
3917
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
3708
3918
|
429: {
|
|
3709
3919
|
content: {
|
|
@@ -3731,7 +3941,7 @@ interface operations {
|
|
|
3731
3941
|
* @description Explain what this role does. This is just for your team, your users will not see this.
|
|
3732
3942
|
* @example dns.records.manager can read and write dns records for our domains.
|
|
3733
3943
|
*/
|
|
3734
|
-
description?: string;
|
|
3944
|
+
description?: string | "";
|
|
3735
3945
|
};
|
|
3736
3946
|
};
|
|
3737
3947
|
};
|
|
@@ -3778,6 +3988,12 @@ interface operations {
|
|
|
3778
3988
|
"application/json": components["schemas"]["ErrConflict"];
|
|
3779
3989
|
};
|
|
3780
3990
|
};
|
|
3991
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
3992
|
+
412: {
|
|
3993
|
+
content: {
|
|
3994
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
3995
|
+
};
|
|
3996
|
+
};
|
|
3781
3997
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
3782
3998
|
429: {
|
|
3783
3999
|
content: {
|
|
@@ -3841,6 +4057,12 @@ interface operations {
|
|
|
3841
4057
|
"application/json": components["schemas"]["ErrConflict"];
|
|
3842
4058
|
};
|
|
3843
4059
|
};
|
|
4060
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
4061
|
+
412: {
|
|
4062
|
+
content: {
|
|
4063
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
4064
|
+
};
|
|
4065
|
+
};
|
|
3844
4066
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
3845
4067
|
429: {
|
|
3846
4068
|
content: {
|
|
@@ -3914,6 +4136,12 @@ interface operations {
|
|
|
3914
4136
|
"application/json": components["schemas"]["ErrConflict"];
|
|
3915
4137
|
};
|
|
3916
4138
|
};
|
|
4139
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
4140
|
+
412: {
|
|
4141
|
+
content: {
|
|
4142
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
4143
|
+
};
|
|
4144
|
+
};
|
|
3917
4145
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
3918
4146
|
429: {
|
|
3919
4147
|
content: {
|
|
@@ -3982,6 +4210,12 @@ interface operations {
|
|
|
3982
4210
|
"application/json": components["schemas"]["ErrConflict"];
|
|
3983
4211
|
};
|
|
3984
4212
|
};
|
|
4213
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
4214
|
+
412: {
|
|
4215
|
+
content: {
|
|
4216
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
4217
|
+
};
|
|
4218
|
+
};
|
|
3985
4219
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
3986
4220
|
429: {
|
|
3987
4221
|
content: {
|
|
@@ -4006,7 +4240,7 @@ interface operations {
|
|
|
4006
4240
|
* This usually comes from your authentication provider and could be a userId, organisationId or even an email.
|
|
4007
4241
|
* It does not matter what you use, as long as it uniquely identifies something in your application.
|
|
4008
4242
|
*
|
|
4009
|
-
* `externalId`s are unique across your workspace and therefore a `
|
|
4243
|
+
* `externalId`s are unique across your workspace and therefore a `CONFLICT` error is returned when you try to create duplicates.
|
|
4010
4244
|
*
|
|
4011
4245
|
* @example user_123
|
|
4012
4246
|
*/
|
|
@@ -4087,6 +4321,12 @@ interface operations {
|
|
|
4087
4321
|
"application/json": components["schemas"]["ErrConflict"];
|
|
4088
4322
|
};
|
|
4089
4323
|
};
|
|
4324
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
4325
|
+
412: {
|
|
4326
|
+
content: {
|
|
4327
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
4328
|
+
};
|
|
4329
|
+
};
|
|
4090
4330
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
4091
4331
|
429: {
|
|
4092
4332
|
content: {
|
|
@@ -4172,6 +4412,12 @@ interface operations {
|
|
|
4172
4412
|
"application/json": components["schemas"]["ErrConflict"];
|
|
4173
4413
|
};
|
|
4174
4414
|
};
|
|
4415
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
4416
|
+
412: {
|
|
4417
|
+
content: {
|
|
4418
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
4419
|
+
};
|
|
4420
|
+
};
|
|
4175
4421
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
4176
4422
|
429: {
|
|
4177
4423
|
content: {
|
|
@@ -4264,6 +4510,12 @@ interface operations {
|
|
|
4264
4510
|
"application/json": components["schemas"]["ErrConflict"];
|
|
4265
4511
|
};
|
|
4266
4512
|
};
|
|
4513
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
4514
|
+
412: {
|
|
4515
|
+
content: {
|
|
4516
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
4517
|
+
};
|
|
4518
|
+
};
|
|
4267
4519
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
4268
4520
|
429: {
|
|
4269
4521
|
content: {
|
|
@@ -4409,6 +4661,12 @@ interface operations {
|
|
|
4409
4661
|
"application/json": components["schemas"]["ErrConflict"];
|
|
4410
4662
|
};
|
|
4411
4663
|
};
|
|
4664
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
4665
|
+
412: {
|
|
4666
|
+
content: {
|
|
4667
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
4668
|
+
};
|
|
4669
|
+
};
|
|
4412
4670
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
4413
4671
|
429: {
|
|
4414
4672
|
content: {
|
|
@@ -4472,6 +4730,12 @@ interface operations {
|
|
|
4472
4730
|
"application/json": components["schemas"]["ErrConflict"];
|
|
4473
4731
|
};
|
|
4474
4732
|
};
|
|
4733
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
4734
|
+
412: {
|
|
4735
|
+
content: {
|
|
4736
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
4737
|
+
};
|
|
4738
|
+
};
|
|
4475
4739
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
4476
4740
|
429: {
|
|
4477
4741
|
content: {
|
|
@@ -4569,6 +4833,12 @@ interface operations {
|
|
|
4569
4833
|
"application/json": components["schemas"]["ErrConflict"];
|
|
4570
4834
|
};
|
|
4571
4835
|
};
|
|
4836
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
4837
|
+
412: {
|
|
4838
|
+
content: {
|
|
4839
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
4840
|
+
};
|
|
4841
|
+
};
|
|
4572
4842
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
4573
4843
|
429: {
|
|
4574
4844
|
content: {
|
|
@@ -4710,6 +4980,12 @@ interface operations {
|
|
|
4710
4980
|
"application/json": components["schemas"]["ErrConflict"];
|
|
4711
4981
|
};
|
|
4712
4982
|
};
|
|
4983
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
4984
|
+
412: {
|
|
4985
|
+
content: {
|
|
4986
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
4987
|
+
};
|
|
4988
|
+
};
|
|
4713
4989
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
4714
4990
|
429: {
|
|
4715
4991
|
content: {
|
|
@@ -4868,6 +5144,12 @@ interface operations {
|
|
|
4868
5144
|
"application/json": components["schemas"]["ErrConflict"];
|
|
4869
5145
|
};
|
|
4870
5146
|
};
|
|
5147
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
5148
|
+
412: {
|
|
5149
|
+
content: {
|
|
5150
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
5151
|
+
};
|
|
5152
|
+
};
|
|
4871
5153
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
4872
5154
|
429: {
|
|
4873
5155
|
content: {
|
|
@@ -4934,6 +5216,12 @@ interface operations {
|
|
|
4934
5216
|
"application/json": components["schemas"]["ErrConflict"];
|
|
4935
5217
|
};
|
|
4936
5218
|
};
|
|
5219
|
+
/** @description The requested operation cannot be completed because certain conditions were not met. This typically occurs when a required resource state or version check fails. */
|
|
5220
|
+
412: {
|
|
5221
|
+
content: {
|
|
5222
|
+
"application/json": components["schemas"]["ErrPreconditionFailed"];
|
|
5223
|
+
};
|
|
5224
|
+
};
|
|
4937
5225
|
/** @description The user has sent too many requests in a given amount of time ("rate limiting") */
|
|
4938
5226
|
429: {
|
|
4939
5227
|
content: {
|
|
@@ -5140,6 +5428,7 @@ declare function verifyKey<TPermission extends string = string>(req: string | (O
|
|
|
5140
5428
|
[key: string]: unknown;
|
|
5141
5429
|
};
|
|
5142
5430
|
};
|
|
5431
|
+
requestId: string;
|
|
5143
5432
|
};
|
|
5144
5433
|
error?: never;
|
|
5145
5434
|
}>;
|