@repome/api 0.1.6 → 0.1.8
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 +976 -4
- package/dist/index.mjs +12 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -23,6 +23,13 @@ declare const commonErrors: {
|
|
|
23
23
|
readonly message: "Sign in required";
|
|
24
24
|
readonly data: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
25
25
|
};
|
|
26
|
+
readonly TOO_MANY_REQUESTS: {
|
|
27
|
+
readonly status: 429;
|
|
28
|
+
readonly message: "Too many requests";
|
|
29
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
30
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
31
|
+
}, z.core.$strip>>;
|
|
32
|
+
};
|
|
26
33
|
readonly FORBIDDEN: {
|
|
27
34
|
readonly status: 403;
|
|
28
35
|
readonly message: "You do not have access to this resource";
|
|
@@ -41,6 +48,13 @@ declare const commonErrors: {
|
|
|
41
48
|
invitationId: z.ZodString;
|
|
42
49
|
}, z.core.$strip>;
|
|
43
50
|
};
|
|
51
|
+
readonly KEY_NOT_FOUND: {
|
|
52
|
+
readonly status: 404;
|
|
53
|
+
readonly message: "API key not found";
|
|
54
|
+
readonly data: z.ZodObject<{
|
|
55
|
+
id: z.ZodString;
|
|
56
|
+
}, z.core.$strip>;
|
|
57
|
+
};
|
|
44
58
|
readonly REPO_NOT_FOUND: {
|
|
45
59
|
readonly status: 404;
|
|
46
60
|
readonly message: "Repo not found";
|
|
@@ -551,6 +565,7 @@ declare const invitationViewSchema: z.ZodObject<{
|
|
|
551
565
|
}, z.core.$strip>;
|
|
552
566
|
type MemberRole = z.output<typeof memberRoleSchema>;
|
|
553
567
|
type MemberView = z.output<typeof memberViewSchema>;
|
|
568
|
+
type InvitationView = z.output<typeof invitationViewSchema>;
|
|
554
569
|
//#endregion
|
|
555
570
|
//#region src/orgs.d.ts
|
|
556
571
|
declare const orgSlugHint = "Lowercase, alphanumeric, - only.";
|
|
@@ -843,6 +858,13 @@ declare const contract: {
|
|
|
843
858
|
readonly message: "Sign in required";
|
|
844
859
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
845
860
|
};
|
|
861
|
+
readonly TOO_MANY_REQUESTS: {
|
|
862
|
+
readonly status: 429;
|
|
863
|
+
readonly message: "Too many requests";
|
|
864
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
865
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
866
|
+
}, _$zod_v4_core0.$strip>>;
|
|
867
|
+
};
|
|
846
868
|
readonly FORBIDDEN: {
|
|
847
869
|
readonly status: 403;
|
|
848
870
|
readonly message: "You do not have access to this resource";
|
|
@@ -861,6 +883,13 @@ declare const contract: {
|
|
|
861
883
|
invitationId: z.ZodString;
|
|
862
884
|
}, _$zod_v4_core0.$strip>;
|
|
863
885
|
};
|
|
886
|
+
readonly KEY_NOT_FOUND: {
|
|
887
|
+
readonly status: 404;
|
|
888
|
+
readonly message: "API key not found";
|
|
889
|
+
readonly data: z.ZodObject<{
|
|
890
|
+
id: z.ZodString;
|
|
891
|
+
}, _$zod_v4_core0.$strip>;
|
|
892
|
+
};
|
|
864
893
|
readonly REPO_NOT_FOUND: {
|
|
865
894
|
readonly status: 404;
|
|
866
895
|
readonly message: "Repo not found";
|
|
@@ -1001,6 +1030,13 @@ declare const contract: {
|
|
|
1001
1030
|
readonly message: "Sign in required";
|
|
1002
1031
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
1003
1032
|
};
|
|
1033
|
+
readonly TOO_MANY_REQUESTS: {
|
|
1034
|
+
readonly status: 429;
|
|
1035
|
+
readonly message: "Too many requests";
|
|
1036
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
1037
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
1038
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1039
|
+
};
|
|
1004
1040
|
readonly FORBIDDEN: {
|
|
1005
1041
|
readonly status: 403;
|
|
1006
1042
|
readonly message: "You do not have access to this resource";
|
|
@@ -1019,6 +1055,13 @@ declare const contract: {
|
|
|
1019
1055
|
invitationId: z.ZodString;
|
|
1020
1056
|
}, _$zod_v4_core0.$strip>;
|
|
1021
1057
|
};
|
|
1058
|
+
readonly KEY_NOT_FOUND: {
|
|
1059
|
+
readonly status: 404;
|
|
1060
|
+
readonly message: "API key not found";
|
|
1061
|
+
readonly data: z.ZodObject<{
|
|
1062
|
+
id: z.ZodString;
|
|
1063
|
+
}, _$zod_v4_core0.$strip>;
|
|
1064
|
+
};
|
|
1022
1065
|
readonly REPO_NOT_FOUND: {
|
|
1023
1066
|
readonly status: 404;
|
|
1024
1067
|
readonly message: "Repo not found";
|
|
@@ -1163,6 +1206,13 @@ declare const contract: {
|
|
|
1163
1206
|
readonly message: "Sign in required";
|
|
1164
1207
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
1165
1208
|
};
|
|
1209
|
+
readonly TOO_MANY_REQUESTS: {
|
|
1210
|
+
readonly status: 429;
|
|
1211
|
+
readonly message: "Too many requests";
|
|
1212
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
1213
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
1214
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1215
|
+
};
|
|
1166
1216
|
readonly FORBIDDEN: {
|
|
1167
1217
|
readonly status: 403;
|
|
1168
1218
|
readonly message: "You do not have access to this resource";
|
|
@@ -1181,6 +1231,13 @@ declare const contract: {
|
|
|
1181
1231
|
invitationId: z.ZodString;
|
|
1182
1232
|
}, _$zod_v4_core0.$strip>;
|
|
1183
1233
|
};
|
|
1234
|
+
readonly KEY_NOT_FOUND: {
|
|
1235
|
+
readonly status: 404;
|
|
1236
|
+
readonly message: "API key not found";
|
|
1237
|
+
readonly data: z.ZodObject<{
|
|
1238
|
+
id: z.ZodString;
|
|
1239
|
+
}, _$zod_v4_core0.$strip>;
|
|
1240
|
+
};
|
|
1184
1241
|
readonly REPO_NOT_FOUND: {
|
|
1185
1242
|
readonly status: 404;
|
|
1186
1243
|
readonly message: "Repo not found";
|
|
@@ -1307,6 +1364,13 @@ declare const contract: {
|
|
|
1307
1364
|
readonly message: "Sign in required";
|
|
1308
1365
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
1309
1366
|
};
|
|
1367
|
+
readonly TOO_MANY_REQUESTS: {
|
|
1368
|
+
readonly status: 429;
|
|
1369
|
+
readonly message: "Too many requests";
|
|
1370
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
1371
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
1372
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1373
|
+
};
|
|
1310
1374
|
readonly FORBIDDEN: {
|
|
1311
1375
|
readonly status: 403;
|
|
1312
1376
|
readonly message: "You do not have access to this resource";
|
|
@@ -1325,6 +1389,13 @@ declare const contract: {
|
|
|
1325
1389
|
invitationId: z.ZodString;
|
|
1326
1390
|
}, _$zod_v4_core0.$strip>;
|
|
1327
1391
|
};
|
|
1392
|
+
readonly KEY_NOT_FOUND: {
|
|
1393
|
+
readonly status: 404;
|
|
1394
|
+
readonly message: "API key not found";
|
|
1395
|
+
readonly data: z.ZodObject<{
|
|
1396
|
+
id: z.ZodString;
|
|
1397
|
+
}, _$zod_v4_core0.$strip>;
|
|
1398
|
+
};
|
|
1328
1399
|
readonly REPO_NOT_FOUND: {
|
|
1329
1400
|
readonly status: 404;
|
|
1330
1401
|
readonly message: "Repo not found";
|
|
@@ -1470,6 +1541,13 @@ declare const contract: {
|
|
|
1470
1541
|
readonly message: "Sign in required";
|
|
1471
1542
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
1472
1543
|
};
|
|
1544
|
+
readonly TOO_MANY_REQUESTS: {
|
|
1545
|
+
readonly status: 429;
|
|
1546
|
+
readonly message: "Too many requests";
|
|
1547
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
1548
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
1549
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1550
|
+
};
|
|
1473
1551
|
readonly FORBIDDEN: {
|
|
1474
1552
|
readonly status: 403;
|
|
1475
1553
|
readonly message: "You do not have access to this resource";
|
|
@@ -1488,6 +1566,13 @@ declare const contract: {
|
|
|
1488
1566
|
invitationId: z.ZodString;
|
|
1489
1567
|
}, _$zod_v4_core0.$strip>;
|
|
1490
1568
|
};
|
|
1569
|
+
readonly KEY_NOT_FOUND: {
|
|
1570
|
+
readonly status: 404;
|
|
1571
|
+
readonly message: "API key not found";
|
|
1572
|
+
readonly data: z.ZodObject<{
|
|
1573
|
+
id: z.ZodString;
|
|
1574
|
+
}, _$zod_v4_core0.$strip>;
|
|
1575
|
+
};
|
|
1491
1576
|
readonly REPO_NOT_FOUND: {
|
|
1492
1577
|
readonly status: 404;
|
|
1493
1578
|
readonly message: "Repo not found";
|
|
@@ -1629,6 +1714,13 @@ declare const contract: {
|
|
|
1629
1714
|
readonly message: "Sign in required";
|
|
1630
1715
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
1631
1716
|
};
|
|
1717
|
+
readonly TOO_MANY_REQUESTS: {
|
|
1718
|
+
readonly status: 429;
|
|
1719
|
+
readonly message: "Too many requests";
|
|
1720
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
1721
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
1722
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1723
|
+
};
|
|
1632
1724
|
readonly FORBIDDEN: {
|
|
1633
1725
|
readonly status: 403;
|
|
1634
1726
|
readonly message: "You do not have access to this resource";
|
|
@@ -1647,6 +1739,13 @@ declare const contract: {
|
|
|
1647
1739
|
invitationId: z.ZodString;
|
|
1648
1740
|
}, _$zod_v4_core0.$strip>;
|
|
1649
1741
|
};
|
|
1742
|
+
readonly KEY_NOT_FOUND: {
|
|
1743
|
+
readonly status: 404;
|
|
1744
|
+
readonly message: "API key not found";
|
|
1745
|
+
readonly data: z.ZodObject<{
|
|
1746
|
+
id: z.ZodString;
|
|
1747
|
+
}, _$zod_v4_core0.$strip>;
|
|
1748
|
+
};
|
|
1650
1749
|
readonly REPO_NOT_FOUND: {
|
|
1651
1750
|
readonly status: 404;
|
|
1652
1751
|
readonly message: "Repo not found";
|
|
@@ -1780,6 +1879,13 @@ declare const contract: {
|
|
|
1780
1879
|
readonly message: "Sign in required";
|
|
1781
1880
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
1782
1881
|
};
|
|
1882
|
+
readonly TOO_MANY_REQUESTS: {
|
|
1883
|
+
readonly status: 429;
|
|
1884
|
+
readonly message: "Too many requests";
|
|
1885
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
1886
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
1887
|
+
}, _$zod_v4_core0.$strip>>;
|
|
1888
|
+
};
|
|
1783
1889
|
readonly FORBIDDEN: {
|
|
1784
1890
|
readonly status: 403;
|
|
1785
1891
|
readonly message: "You do not have access to this resource";
|
|
@@ -1798,6 +1904,13 @@ declare const contract: {
|
|
|
1798
1904
|
invitationId: z.ZodString;
|
|
1799
1905
|
}, _$zod_v4_core0.$strip>;
|
|
1800
1906
|
};
|
|
1907
|
+
readonly KEY_NOT_FOUND: {
|
|
1908
|
+
readonly status: 404;
|
|
1909
|
+
readonly message: "API key not found";
|
|
1910
|
+
readonly data: z.ZodObject<{
|
|
1911
|
+
id: z.ZodString;
|
|
1912
|
+
}, _$zod_v4_core0.$strip>;
|
|
1913
|
+
};
|
|
1801
1914
|
readonly REPO_NOT_FOUND: {
|
|
1802
1915
|
readonly status: 404;
|
|
1803
1916
|
readonly message: "Repo not found";
|
|
@@ -1937,6 +2050,13 @@ declare const contract: {
|
|
|
1937
2050
|
readonly message: "Sign in required";
|
|
1938
2051
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
1939
2052
|
};
|
|
2053
|
+
readonly TOO_MANY_REQUESTS: {
|
|
2054
|
+
readonly status: 429;
|
|
2055
|
+
readonly message: "Too many requests";
|
|
2056
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
2057
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
2058
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2059
|
+
};
|
|
1940
2060
|
readonly FORBIDDEN: {
|
|
1941
2061
|
readonly status: 403;
|
|
1942
2062
|
readonly message: "You do not have access to this resource";
|
|
@@ -1955,6 +2075,13 @@ declare const contract: {
|
|
|
1955
2075
|
invitationId: z.ZodString;
|
|
1956
2076
|
}, _$zod_v4_core0.$strip>;
|
|
1957
2077
|
};
|
|
2078
|
+
readonly KEY_NOT_FOUND: {
|
|
2079
|
+
readonly status: 404;
|
|
2080
|
+
readonly message: "API key not found";
|
|
2081
|
+
readonly data: z.ZodObject<{
|
|
2082
|
+
id: z.ZodString;
|
|
2083
|
+
}, _$zod_v4_core0.$strip>;
|
|
2084
|
+
};
|
|
1958
2085
|
readonly REPO_NOT_FOUND: {
|
|
1959
2086
|
readonly status: 404;
|
|
1960
2087
|
readonly message: "Repo not found";
|
|
@@ -2098,6 +2225,13 @@ declare const contract: {
|
|
|
2098
2225
|
readonly message: "Sign in required";
|
|
2099
2226
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
2100
2227
|
};
|
|
2228
|
+
readonly TOO_MANY_REQUESTS: {
|
|
2229
|
+
readonly status: 429;
|
|
2230
|
+
readonly message: "Too many requests";
|
|
2231
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
2232
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
2233
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2234
|
+
};
|
|
2101
2235
|
readonly FORBIDDEN: {
|
|
2102
2236
|
readonly status: 403;
|
|
2103
2237
|
readonly message: "You do not have access to this resource";
|
|
@@ -2116,6 +2250,13 @@ declare const contract: {
|
|
|
2116
2250
|
invitationId: z.ZodString;
|
|
2117
2251
|
}, _$zod_v4_core0.$strip>;
|
|
2118
2252
|
};
|
|
2253
|
+
readonly KEY_NOT_FOUND: {
|
|
2254
|
+
readonly status: 404;
|
|
2255
|
+
readonly message: "API key not found";
|
|
2256
|
+
readonly data: z.ZodObject<{
|
|
2257
|
+
id: z.ZodString;
|
|
2258
|
+
}, _$zod_v4_core0.$strip>;
|
|
2259
|
+
};
|
|
2119
2260
|
readonly REPO_NOT_FOUND: {
|
|
2120
2261
|
readonly status: 404;
|
|
2121
2262
|
readonly message: "Repo not found";
|
|
@@ -2252,6 +2393,13 @@ declare const contract: {
|
|
|
2252
2393
|
readonly message: "Sign in required";
|
|
2253
2394
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
2254
2395
|
};
|
|
2396
|
+
readonly TOO_MANY_REQUESTS: {
|
|
2397
|
+
readonly status: 429;
|
|
2398
|
+
readonly message: "Too many requests";
|
|
2399
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
2400
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
2401
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2402
|
+
};
|
|
2255
2403
|
readonly FORBIDDEN: {
|
|
2256
2404
|
readonly status: 403;
|
|
2257
2405
|
readonly message: "You do not have access to this resource";
|
|
@@ -2270,6 +2418,13 @@ declare const contract: {
|
|
|
2270
2418
|
invitationId: z.ZodString;
|
|
2271
2419
|
}, _$zod_v4_core0.$strip>;
|
|
2272
2420
|
};
|
|
2421
|
+
readonly KEY_NOT_FOUND: {
|
|
2422
|
+
readonly status: 404;
|
|
2423
|
+
readonly message: "API key not found";
|
|
2424
|
+
readonly data: z.ZodObject<{
|
|
2425
|
+
id: z.ZodString;
|
|
2426
|
+
}, _$zod_v4_core0.$strip>;
|
|
2427
|
+
};
|
|
2273
2428
|
readonly REPO_NOT_FOUND: {
|
|
2274
2429
|
readonly status: 404;
|
|
2275
2430
|
readonly message: "Repo not found";
|
|
@@ -2434,6 +2589,13 @@ declare const contract: {
|
|
|
2434
2589
|
readonly message: "Sign in required";
|
|
2435
2590
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
2436
2591
|
};
|
|
2592
|
+
readonly TOO_MANY_REQUESTS: {
|
|
2593
|
+
readonly status: 429;
|
|
2594
|
+
readonly message: "Too many requests";
|
|
2595
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
2596
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
2597
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2598
|
+
};
|
|
2437
2599
|
readonly FORBIDDEN: {
|
|
2438
2600
|
readonly status: 403;
|
|
2439
2601
|
readonly message: "You do not have access to this resource";
|
|
@@ -2452,6 +2614,13 @@ declare const contract: {
|
|
|
2452
2614
|
invitationId: z.ZodString;
|
|
2453
2615
|
}, _$zod_v4_core0.$strip>;
|
|
2454
2616
|
};
|
|
2617
|
+
readonly KEY_NOT_FOUND: {
|
|
2618
|
+
readonly status: 404;
|
|
2619
|
+
readonly message: "API key not found";
|
|
2620
|
+
readonly data: z.ZodObject<{
|
|
2621
|
+
id: z.ZodString;
|
|
2622
|
+
}, _$zod_v4_core0.$strip>;
|
|
2623
|
+
};
|
|
2455
2624
|
readonly REPO_NOT_FOUND: {
|
|
2456
2625
|
readonly status: 404;
|
|
2457
2626
|
readonly message: "Repo not found";
|
|
@@ -2581,6 +2750,13 @@ declare const contract: {
|
|
|
2581
2750
|
readonly message: "Sign in required";
|
|
2582
2751
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
2583
2752
|
};
|
|
2753
|
+
readonly TOO_MANY_REQUESTS: {
|
|
2754
|
+
readonly status: 429;
|
|
2755
|
+
readonly message: "Too many requests";
|
|
2756
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
2757
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
2758
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2759
|
+
};
|
|
2584
2760
|
readonly FORBIDDEN: {
|
|
2585
2761
|
readonly status: 403;
|
|
2586
2762
|
readonly message: "You do not have access to this resource";
|
|
@@ -2599,6 +2775,13 @@ declare const contract: {
|
|
|
2599
2775
|
invitationId: z.ZodString;
|
|
2600
2776
|
}, _$zod_v4_core0.$strip>;
|
|
2601
2777
|
};
|
|
2778
|
+
readonly KEY_NOT_FOUND: {
|
|
2779
|
+
readonly status: 404;
|
|
2780
|
+
readonly message: "API key not found";
|
|
2781
|
+
readonly data: z.ZodObject<{
|
|
2782
|
+
id: z.ZodString;
|
|
2783
|
+
}, _$zod_v4_core0.$strip>;
|
|
2784
|
+
};
|
|
2602
2785
|
readonly REPO_NOT_FOUND: {
|
|
2603
2786
|
readonly status: 404;
|
|
2604
2787
|
readonly message: "Repo not found";
|
|
@@ -2741,6 +2924,13 @@ declare const contract: {
|
|
|
2741
2924
|
readonly message: "Sign in required";
|
|
2742
2925
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
2743
2926
|
};
|
|
2927
|
+
readonly TOO_MANY_REQUESTS: {
|
|
2928
|
+
readonly status: 429;
|
|
2929
|
+
readonly message: "Too many requests";
|
|
2930
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
2931
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
2932
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2933
|
+
};
|
|
2744
2934
|
readonly FORBIDDEN: {
|
|
2745
2935
|
readonly status: 403;
|
|
2746
2936
|
readonly message: "You do not have access to this resource";
|
|
@@ -2759,6 +2949,13 @@ declare const contract: {
|
|
|
2759
2949
|
invitationId: z.ZodString;
|
|
2760
2950
|
}, _$zod_v4_core0.$strip>;
|
|
2761
2951
|
};
|
|
2952
|
+
readonly KEY_NOT_FOUND: {
|
|
2953
|
+
readonly status: 404;
|
|
2954
|
+
readonly message: "API key not found";
|
|
2955
|
+
readonly data: z.ZodObject<{
|
|
2956
|
+
id: z.ZodString;
|
|
2957
|
+
}, _$zod_v4_core0.$strip>;
|
|
2958
|
+
};
|
|
2762
2959
|
readonly REPO_NOT_FOUND: {
|
|
2763
2960
|
readonly status: 404;
|
|
2764
2961
|
readonly message: "Repo not found";
|
|
@@ -2893,6 +3090,13 @@ declare const contract: {
|
|
|
2893
3090
|
readonly message: "Sign in required";
|
|
2894
3091
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
2895
3092
|
};
|
|
3093
|
+
readonly TOO_MANY_REQUESTS: {
|
|
3094
|
+
readonly status: 429;
|
|
3095
|
+
readonly message: "Too many requests";
|
|
3096
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
3097
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
3098
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3099
|
+
};
|
|
2896
3100
|
readonly FORBIDDEN: {
|
|
2897
3101
|
readonly status: 403;
|
|
2898
3102
|
readonly message: "You do not have access to this resource";
|
|
@@ -2911,6 +3115,13 @@ declare const contract: {
|
|
|
2911
3115
|
invitationId: z.ZodString;
|
|
2912
3116
|
}, _$zod_v4_core0.$strip>;
|
|
2913
3117
|
};
|
|
3118
|
+
readonly KEY_NOT_FOUND: {
|
|
3119
|
+
readonly status: 404;
|
|
3120
|
+
readonly message: "API key not found";
|
|
3121
|
+
readonly data: z.ZodObject<{
|
|
3122
|
+
id: z.ZodString;
|
|
3123
|
+
}, _$zod_v4_core0.$strip>;
|
|
3124
|
+
};
|
|
2914
3125
|
readonly REPO_NOT_FOUND: {
|
|
2915
3126
|
readonly status: 404;
|
|
2916
3127
|
readonly message: "Repo not found";
|
|
@@ -3052,6 +3263,13 @@ declare const contract: {
|
|
|
3052
3263
|
readonly message: "Sign in required";
|
|
3053
3264
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
3054
3265
|
};
|
|
3266
|
+
readonly TOO_MANY_REQUESTS: {
|
|
3267
|
+
readonly status: 429;
|
|
3268
|
+
readonly message: "Too many requests";
|
|
3269
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
3270
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
3271
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3272
|
+
};
|
|
3055
3273
|
readonly FORBIDDEN: {
|
|
3056
3274
|
readonly status: 403;
|
|
3057
3275
|
readonly message: "You do not have access to this resource";
|
|
@@ -3070,6 +3288,13 @@ declare const contract: {
|
|
|
3070
3288
|
invitationId: z.ZodString;
|
|
3071
3289
|
}, _$zod_v4_core0.$strip>;
|
|
3072
3290
|
};
|
|
3291
|
+
readonly KEY_NOT_FOUND: {
|
|
3292
|
+
readonly status: 404;
|
|
3293
|
+
readonly message: "API key not found";
|
|
3294
|
+
readonly data: z.ZodObject<{
|
|
3295
|
+
id: z.ZodString;
|
|
3296
|
+
}, _$zod_v4_core0.$strip>;
|
|
3297
|
+
};
|
|
3073
3298
|
readonly REPO_NOT_FOUND: {
|
|
3074
3299
|
readonly status: 404;
|
|
3075
3300
|
readonly message: "Repo not found";
|
|
@@ -3204,6 +3429,13 @@ declare const contract: {
|
|
|
3204
3429
|
readonly message: "Sign in required";
|
|
3205
3430
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
3206
3431
|
};
|
|
3432
|
+
readonly TOO_MANY_REQUESTS: {
|
|
3433
|
+
readonly status: 429;
|
|
3434
|
+
readonly message: "Too many requests";
|
|
3435
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
3436
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
3437
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3438
|
+
};
|
|
3207
3439
|
readonly FORBIDDEN: {
|
|
3208
3440
|
readonly status: 403;
|
|
3209
3441
|
readonly message: "You do not have access to this resource";
|
|
@@ -3222,6 +3454,13 @@ declare const contract: {
|
|
|
3222
3454
|
invitationId: z.ZodString;
|
|
3223
3455
|
}, _$zod_v4_core0.$strip>;
|
|
3224
3456
|
};
|
|
3457
|
+
readonly KEY_NOT_FOUND: {
|
|
3458
|
+
readonly status: 404;
|
|
3459
|
+
readonly message: "API key not found";
|
|
3460
|
+
readonly data: z.ZodObject<{
|
|
3461
|
+
id: z.ZodString;
|
|
3462
|
+
}, _$zod_v4_core0.$strip>;
|
|
3463
|
+
};
|
|
3225
3464
|
readonly REPO_NOT_FOUND: {
|
|
3226
3465
|
readonly status: 404;
|
|
3227
3466
|
readonly message: "Repo not found";
|
|
@@ -3357,6 +3596,13 @@ declare const contract: {
|
|
|
3357
3596
|
readonly message: "Sign in required";
|
|
3358
3597
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
3359
3598
|
};
|
|
3599
|
+
readonly TOO_MANY_REQUESTS: {
|
|
3600
|
+
readonly status: 429;
|
|
3601
|
+
readonly message: "Too many requests";
|
|
3602
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
3603
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
3604
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3605
|
+
};
|
|
3360
3606
|
readonly FORBIDDEN: {
|
|
3361
3607
|
readonly status: 403;
|
|
3362
3608
|
readonly message: "You do not have access to this resource";
|
|
@@ -3375,6 +3621,13 @@ declare const contract: {
|
|
|
3375
3621
|
invitationId: z.ZodString;
|
|
3376
3622
|
}, _$zod_v4_core0.$strip>;
|
|
3377
3623
|
};
|
|
3624
|
+
readonly KEY_NOT_FOUND: {
|
|
3625
|
+
readonly status: 404;
|
|
3626
|
+
readonly message: "API key not found";
|
|
3627
|
+
readonly data: z.ZodObject<{
|
|
3628
|
+
id: z.ZodString;
|
|
3629
|
+
}, _$zod_v4_core0.$strip>;
|
|
3630
|
+
};
|
|
3378
3631
|
readonly REPO_NOT_FOUND: {
|
|
3379
3632
|
readonly status: 404;
|
|
3380
3633
|
readonly message: "Repo not found";
|
|
@@ -3513,6 +3766,13 @@ declare const contract: {
|
|
|
3513
3766
|
readonly message: "Sign in required";
|
|
3514
3767
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
3515
3768
|
};
|
|
3769
|
+
readonly TOO_MANY_REQUESTS: {
|
|
3770
|
+
readonly status: 429;
|
|
3771
|
+
readonly message: "Too many requests";
|
|
3772
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
3773
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
3774
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3775
|
+
};
|
|
3516
3776
|
readonly FORBIDDEN: {
|
|
3517
3777
|
readonly status: 403;
|
|
3518
3778
|
readonly message: "You do not have access to this resource";
|
|
@@ -3531,6 +3791,13 @@ declare const contract: {
|
|
|
3531
3791
|
invitationId: z.ZodString;
|
|
3532
3792
|
}, _$zod_v4_core0.$strip>;
|
|
3533
3793
|
};
|
|
3794
|
+
readonly KEY_NOT_FOUND: {
|
|
3795
|
+
readonly status: 404;
|
|
3796
|
+
readonly message: "API key not found";
|
|
3797
|
+
readonly data: z.ZodObject<{
|
|
3798
|
+
id: z.ZodString;
|
|
3799
|
+
}, _$zod_v4_core0.$strip>;
|
|
3800
|
+
};
|
|
3534
3801
|
readonly REPO_NOT_FOUND: {
|
|
3535
3802
|
readonly status: 404;
|
|
3536
3803
|
readonly message: "Repo not found";
|
|
@@ -3660,6 +3927,13 @@ declare const contract: {
|
|
|
3660
3927
|
readonly message: "Sign in required";
|
|
3661
3928
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
3662
3929
|
};
|
|
3930
|
+
readonly TOO_MANY_REQUESTS: {
|
|
3931
|
+
readonly status: 429;
|
|
3932
|
+
readonly message: "Too many requests";
|
|
3933
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
3934
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
3935
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3936
|
+
};
|
|
3663
3937
|
readonly FORBIDDEN: {
|
|
3664
3938
|
readonly status: 403;
|
|
3665
3939
|
readonly message: "You do not have access to this resource";
|
|
@@ -3678,6 +3952,13 @@ declare const contract: {
|
|
|
3678
3952
|
invitationId: z.ZodString;
|
|
3679
3953
|
}, _$zod_v4_core0.$strip>;
|
|
3680
3954
|
};
|
|
3955
|
+
readonly KEY_NOT_FOUND: {
|
|
3956
|
+
readonly status: 404;
|
|
3957
|
+
readonly message: "API key not found";
|
|
3958
|
+
readonly data: z.ZodObject<{
|
|
3959
|
+
id: z.ZodString;
|
|
3960
|
+
}, _$zod_v4_core0.$strip>;
|
|
3961
|
+
};
|
|
3681
3962
|
readonly REPO_NOT_FOUND: {
|
|
3682
3963
|
readonly status: 404;
|
|
3683
3964
|
readonly message: "Repo not found";
|
|
@@ -3819,6 +4100,13 @@ declare const contract: {
|
|
|
3819
4100
|
readonly message: "Sign in required";
|
|
3820
4101
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
3821
4102
|
};
|
|
4103
|
+
readonly TOO_MANY_REQUESTS: {
|
|
4104
|
+
readonly status: 429;
|
|
4105
|
+
readonly message: "Too many requests";
|
|
4106
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
4107
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
4108
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4109
|
+
};
|
|
3822
4110
|
readonly FORBIDDEN: {
|
|
3823
4111
|
readonly status: 403;
|
|
3824
4112
|
readonly message: "You do not have access to this resource";
|
|
@@ -3837,6 +4125,13 @@ declare const contract: {
|
|
|
3837
4125
|
invitationId: z.ZodString;
|
|
3838
4126
|
}, _$zod_v4_core0.$strip>;
|
|
3839
4127
|
};
|
|
4128
|
+
readonly KEY_NOT_FOUND: {
|
|
4129
|
+
readonly status: 404;
|
|
4130
|
+
readonly message: "API key not found";
|
|
4131
|
+
readonly data: z.ZodObject<{
|
|
4132
|
+
id: z.ZodString;
|
|
4133
|
+
}, _$zod_v4_core0.$strip>;
|
|
4134
|
+
};
|
|
3840
4135
|
readonly REPO_NOT_FOUND: {
|
|
3841
4136
|
readonly status: 404;
|
|
3842
4137
|
readonly message: "Repo not found";
|
|
@@ -3971,6 +4266,13 @@ declare const contract: {
|
|
|
3971
4266
|
readonly message: "Sign in required";
|
|
3972
4267
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
3973
4268
|
};
|
|
4269
|
+
readonly TOO_MANY_REQUESTS: {
|
|
4270
|
+
readonly status: 429;
|
|
4271
|
+
readonly message: "Too many requests";
|
|
4272
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
4273
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
4274
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4275
|
+
};
|
|
3974
4276
|
readonly FORBIDDEN: {
|
|
3975
4277
|
readonly status: 403;
|
|
3976
4278
|
readonly message: "You do not have access to this resource";
|
|
@@ -3989,6 +4291,13 @@ declare const contract: {
|
|
|
3989
4291
|
invitationId: z.ZodString;
|
|
3990
4292
|
}, _$zod_v4_core0.$strip>;
|
|
3991
4293
|
};
|
|
4294
|
+
readonly KEY_NOT_FOUND: {
|
|
4295
|
+
readonly status: 404;
|
|
4296
|
+
readonly message: "API key not found";
|
|
4297
|
+
readonly data: z.ZodObject<{
|
|
4298
|
+
id: z.ZodString;
|
|
4299
|
+
}, _$zod_v4_core0.$strip>;
|
|
4300
|
+
};
|
|
3992
4301
|
readonly REPO_NOT_FOUND: {
|
|
3993
4302
|
readonly status: 404;
|
|
3994
4303
|
readonly message: "Repo not found";
|
|
@@ -4131,6 +4440,13 @@ declare const contract: {
|
|
|
4131
4440
|
readonly message: "Sign in required";
|
|
4132
4441
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
4133
4442
|
};
|
|
4443
|
+
readonly TOO_MANY_REQUESTS: {
|
|
4444
|
+
readonly status: 429;
|
|
4445
|
+
readonly message: "Too many requests";
|
|
4446
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
4447
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
4448
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4449
|
+
};
|
|
4134
4450
|
readonly FORBIDDEN: {
|
|
4135
4451
|
readonly status: 403;
|
|
4136
4452
|
readonly message: "You do not have access to this resource";
|
|
@@ -4149,6 +4465,13 @@ declare const contract: {
|
|
|
4149
4465
|
invitationId: z.ZodString;
|
|
4150
4466
|
}, _$zod_v4_core0.$strip>;
|
|
4151
4467
|
};
|
|
4468
|
+
readonly KEY_NOT_FOUND: {
|
|
4469
|
+
readonly status: 404;
|
|
4470
|
+
readonly message: "API key not found";
|
|
4471
|
+
readonly data: z.ZodObject<{
|
|
4472
|
+
id: z.ZodString;
|
|
4473
|
+
}, _$zod_v4_core0.$strip>;
|
|
4474
|
+
};
|
|
4152
4475
|
readonly REPO_NOT_FOUND: {
|
|
4153
4476
|
readonly status: 404;
|
|
4154
4477
|
readonly message: "Repo not found";
|
|
@@ -4277,6 +4600,13 @@ declare const contract: {
|
|
|
4277
4600
|
readonly message: "Sign in required";
|
|
4278
4601
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
4279
4602
|
};
|
|
4603
|
+
readonly TOO_MANY_REQUESTS: {
|
|
4604
|
+
readonly status: 429;
|
|
4605
|
+
readonly message: "Too many requests";
|
|
4606
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
4607
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
4608
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4609
|
+
};
|
|
4280
4610
|
readonly FORBIDDEN: {
|
|
4281
4611
|
readonly status: 403;
|
|
4282
4612
|
readonly message: "You do not have access to this resource";
|
|
@@ -4295,6 +4625,13 @@ declare const contract: {
|
|
|
4295
4625
|
invitationId: z.ZodString;
|
|
4296
4626
|
}, _$zod_v4_core0.$strip>;
|
|
4297
4627
|
};
|
|
4628
|
+
readonly KEY_NOT_FOUND: {
|
|
4629
|
+
readonly status: 404;
|
|
4630
|
+
readonly message: "API key not found";
|
|
4631
|
+
readonly data: z.ZodObject<{
|
|
4632
|
+
id: z.ZodString;
|
|
4633
|
+
}, _$zod_v4_core0.$strip>;
|
|
4634
|
+
};
|
|
4298
4635
|
readonly REPO_NOT_FOUND: {
|
|
4299
4636
|
readonly status: 404;
|
|
4300
4637
|
readonly message: "Repo not found";
|
|
@@ -4435,6 +4772,13 @@ declare const contract: {
|
|
|
4435
4772
|
readonly message: "Sign in required";
|
|
4436
4773
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
4437
4774
|
};
|
|
4775
|
+
readonly TOO_MANY_REQUESTS: {
|
|
4776
|
+
readonly status: 429;
|
|
4777
|
+
readonly message: "Too many requests";
|
|
4778
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
4779
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
4780
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4781
|
+
};
|
|
4438
4782
|
readonly FORBIDDEN: {
|
|
4439
4783
|
readonly status: 403;
|
|
4440
4784
|
readonly message: "You do not have access to this resource";
|
|
@@ -4453,6 +4797,13 @@ declare const contract: {
|
|
|
4453
4797
|
invitationId: z.ZodString;
|
|
4454
4798
|
}, _$zod_v4_core0.$strip>;
|
|
4455
4799
|
};
|
|
4800
|
+
readonly KEY_NOT_FOUND: {
|
|
4801
|
+
readonly status: 404;
|
|
4802
|
+
readonly message: "API key not found";
|
|
4803
|
+
readonly data: z.ZodObject<{
|
|
4804
|
+
id: z.ZodString;
|
|
4805
|
+
}, _$zod_v4_core0.$strip>;
|
|
4806
|
+
};
|
|
4456
4807
|
readonly REPO_NOT_FOUND: {
|
|
4457
4808
|
readonly status: 404;
|
|
4458
4809
|
readonly message: "Repo not found";
|
|
@@ -4585,6 +4936,13 @@ declare const contract: {
|
|
|
4585
4936
|
readonly message: "Sign in required";
|
|
4586
4937
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
4587
4938
|
};
|
|
4939
|
+
readonly TOO_MANY_REQUESTS: {
|
|
4940
|
+
readonly status: 429;
|
|
4941
|
+
readonly message: "Too many requests";
|
|
4942
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
4943
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
4944
|
+
}, _$zod_v4_core0.$strip>>;
|
|
4945
|
+
};
|
|
4588
4946
|
readonly FORBIDDEN: {
|
|
4589
4947
|
readonly status: 403;
|
|
4590
4948
|
readonly message: "You do not have access to this resource";
|
|
@@ -4603,6 +4961,13 @@ declare const contract: {
|
|
|
4603
4961
|
invitationId: z.ZodString;
|
|
4604
4962
|
}, _$zod_v4_core0.$strip>;
|
|
4605
4963
|
};
|
|
4964
|
+
readonly KEY_NOT_FOUND: {
|
|
4965
|
+
readonly status: 404;
|
|
4966
|
+
readonly message: "API key not found";
|
|
4967
|
+
readonly data: z.ZodObject<{
|
|
4968
|
+
id: z.ZodString;
|
|
4969
|
+
}, _$zod_v4_core0.$strip>;
|
|
4970
|
+
};
|
|
4606
4971
|
readonly REPO_NOT_FOUND: {
|
|
4607
4972
|
readonly status: 404;
|
|
4608
4973
|
readonly message: "Repo not found";
|
|
@@ -4762,6 +5127,13 @@ declare const contract: {
|
|
|
4762
5127
|
readonly message: "Sign in required";
|
|
4763
5128
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
4764
5129
|
};
|
|
5130
|
+
readonly TOO_MANY_REQUESTS: {
|
|
5131
|
+
readonly status: 429;
|
|
5132
|
+
readonly message: "Too many requests";
|
|
5133
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
5134
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
5135
|
+
}, _$zod_v4_core0.$strip>>;
|
|
5136
|
+
};
|
|
4765
5137
|
readonly FORBIDDEN: {
|
|
4766
5138
|
readonly status: 403;
|
|
4767
5139
|
readonly message: "You do not have access to this resource";
|
|
@@ -4780,6 +5152,13 @@ declare const contract: {
|
|
|
4780
5152
|
invitationId: z.ZodString;
|
|
4781
5153
|
}, _$zod_v4_core0.$strip>;
|
|
4782
5154
|
};
|
|
5155
|
+
readonly KEY_NOT_FOUND: {
|
|
5156
|
+
readonly status: 404;
|
|
5157
|
+
readonly message: "API key not found";
|
|
5158
|
+
readonly data: z.ZodObject<{
|
|
5159
|
+
id: z.ZodString;
|
|
5160
|
+
}, _$zod_v4_core0.$strip>;
|
|
5161
|
+
};
|
|
4783
5162
|
readonly REPO_NOT_FOUND: {
|
|
4784
5163
|
readonly status: 404;
|
|
4785
5164
|
readonly message: "Repo not found";
|
|
@@ -4924,6 +5303,13 @@ declare const contract: {
|
|
|
4924
5303
|
readonly message: "Sign in required";
|
|
4925
5304
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
4926
5305
|
};
|
|
5306
|
+
readonly TOO_MANY_REQUESTS: {
|
|
5307
|
+
readonly status: 429;
|
|
5308
|
+
readonly message: "Too many requests";
|
|
5309
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
5310
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
5311
|
+
}, _$zod_v4_core0.$strip>>;
|
|
5312
|
+
};
|
|
4927
5313
|
readonly FORBIDDEN: {
|
|
4928
5314
|
readonly status: 403;
|
|
4929
5315
|
readonly message: "You do not have access to this resource";
|
|
@@ -4942,6 +5328,13 @@ declare const contract: {
|
|
|
4942
5328
|
invitationId: z.ZodString;
|
|
4943
5329
|
}, _$zod_v4_core0.$strip>;
|
|
4944
5330
|
};
|
|
5331
|
+
readonly KEY_NOT_FOUND: {
|
|
5332
|
+
readonly status: 404;
|
|
5333
|
+
readonly message: "API key not found";
|
|
5334
|
+
readonly data: z.ZodObject<{
|
|
5335
|
+
id: z.ZodString;
|
|
5336
|
+
}, _$zod_v4_core0.$strip>;
|
|
5337
|
+
};
|
|
4945
5338
|
readonly REPO_NOT_FOUND: {
|
|
4946
5339
|
readonly status: 404;
|
|
4947
5340
|
readonly message: "Repo not found";
|
|
@@ -5079,6 +5472,13 @@ declare const contract: {
|
|
|
5079
5472
|
readonly message: "Sign in required";
|
|
5080
5473
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
5081
5474
|
};
|
|
5475
|
+
readonly TOO_MANY_REQUESTS: {
|
|
5476
|
+
readonly status: 429;
|
|
5477
|
+
readonly message: "Too many requests";
|
|
5478
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
5479
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
5480
|
+
}, _$zod_v4_core0.$strip>>;
|
|
5481
|
+
};
|
|
5082
5482
|
readonly FORBIDDEN: {
|
|
5083
5483
|
readonly status: 403;
|
|
5084
5484
|
readonly message: "You do not have access to this resource";
|
|
@@ -5097,6 +5497,13 @@ declare const contract: {
|
|
|
5097
5497
|
invitationId: z.ZodString;
|
|
5098
5498
|
}, _$zod_v4_core0.$strip>;
|
|
5099
5499
|
};
|
|
5500
|
+
readonly KEY_NOT_FOUND: {
|
|
5501
|
+
readonly status: 404;
|
|
5502
|
+
readonly message: "API key not found";
|
|
5503
|
+
readonly data: z.ZodObject<{
|
|
5504
|
+
id: z.ZodString;
|
|
5505
|
+
}, _$zod_v4_core0.$strip>;
|
|
5506
|
+
};
|
|
5100
5507
|
readonly REPO_NOT_FOUND: {
|
|
5101
5508
|
readonly status: 404;
|
|
5102
5509
|
readonly message: "Repo not found";
|
|
@@ -5262,6 +5669,13 @@ declare const contract: {
|
|
|
5262
5669
|
readonly message: "Sign in required";
|
|
5263
5670
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
5264
5671
|
};
|
|
5672
|
+
readonly TOO_MANY_REQUESTS: {
|
|
5673
|
+
readonly status: 429;
|
|
5674
|
+
readonly message: "Too many requests";
|
|
5675
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
5676
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
5677
|
+
}, _$zod_v4_core0.$strip>>;
|
|
5678
|
+
};
|
|
5265
5679
|
readonly FORBIDDEN: {
|
|
5266
5680
|
readonly status: 403;
|
|
5267
5681
|
readonly message: "You do not have access to this resource";
|
|
@@ -5280,6 +5694,13 @@ declare const contract: {
|
|
|
5280
5694
|
invitationId: z.ZodString;
|
|
5281
5695
|
}, _$zod_v4_core0.$strip>;
|
|
5282
5696
|
};
|
|
5697
|
+
readonly KEY_NOT_FOUND: {
|
|
5698
|
+
readonly status: 404;
|
|
5699
|
+
readonly message: "API key not found";
|
|
5700
|
+
readonly data: z.ZodObject<{
|
|
5701
|
+
id: z.ZodString;
|
|
5702
|
+
}, _$zod_v4_core0.$strip>;
|
|
5703
|
+
};
|
|
5283
5704
|
readonly REPO_NOT_FOUND: {
|
|
5284
5705
|
readonly status: 404;
|
|
5285
5706
|
readonly message: "Repo not found";
|
|
@@ -5435,6 +5856,13 @@ declare const contract: {
|
|
|
5435
5856
|
readonly message: "Sign in required";
|
|
5436
5857
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
5437
5858
|
};
|
|
5859
|
+
readonly TOO_MANY_REQUESTS: {
|
|
5860
|
+
readonly status: 429;
|
|
5861
|
+
readonly message: "Too many requests";
|
|
5862
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
5863
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
5864
|
+
}, _$zod_v4_core0.$strip>>;
|
|
5865
|
+
};
|
|
5438
5866
|
readonly FORBIDDEN: {
|
|
5439
5867
|
readonly status: 403;
|
|
5440
5868
|
readonly message: "You do not have access to this resource";
|
|
@@ -5453,6 +5881,13 @@ declare const contract: {
|
|
|
5453
5881
|
invitationId: z.ZodString;
|
|
5454
5882
|
}, _$zod_v4_core0.$strip>;
|
|
5455
5883
|
};
|
|
5884
|
+
readonly KEY_NOT_FOUND: {
|
|
5885
|
+
readonly status: 404;
|
|
5886
|
+
readonly message: "API key not found";
|
|
5887
|
+
readonly data: z.ZodObject<{
|
|
5888
|
+
id: z.ZodString;
|
|
5889
|
+
}, _$zod_v4_core0.$strip>;
|
|
5890
|
+
};
|
|
5456
5891
|
readonly REPO_NOT_FOUND: {
|
|
5457
5892
|
readonly status: 404;
|
|
5458
5893
|
readonly message: "Repo not found";
|
|
@@ -5610,6 +6045,13 @@ declare const contract: {
|
|
|
5610
6045
|
readonly message: "Sign in required";
|
|
5611
6046
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
5612
6047
|
};
|
|
6048
|
+
readonly TOO_MANY_REQUESTS: {
|
|
6049
|
+
readonly status: 429;
|
|
6050
|
+
readonly message: "Too many requests";
|
|
6051
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
6052
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
6053
|
+
}, _$zod_v4_core0.$strip>>;
|
|
6054
|
+
};
|
|
5613
6055
|
readonly FORBIDDEN: {
|
|
5614
6056
|
readonly status: 403;
|
|
5615
6057
|
readonly message: "You do not have access to this resource";
|
|
@@ -5628,11 +6070,18 @@ declare const contract: {
|
|
|
5628
6070
|
invitationId: z.ZodString;
|
|
5629
6071
|
}, _$zod_v4_core0.$strip>;
|
|
5630
6072
|
};
|
|
5631
|
-
readonly
|
|
6073
|
+
readonly KEY_NOT_FOUND: {
|
|
5632
6074
|
readonly status: 404;
|
|
5633
|
-
readonly message: "
|
|
6075
|
+
readonly message: "API key not found";
|
|
5634
6076
|
readonly data: z.ZodObject<{
|
|
5635
|
-
|
|
6077
|
+
id: z.ZodString;
|
|
6078
|
+
}, _$zod_v4_core0.$strip>;
|
|
6079
|
+
};
|
|
6080
|
+
readonly REPO_NOT_FOUND: {
|
|
6081
|
+
readonly status: 404;
|
|
6082
|
+
readonly message: "Repo not found";
|
|
6083
|
+
readonly data: z.ZodObject<{
|
|
6084
|
+
name: z.ZodString;
|
|
5636
6085
|
}, _$zod_v4_core0.$strip>;
|
|
5637
6086
|
};
|
|
5638
6087
|
readonly GIT_OBJECT_NOT_FOUND: {
|
|
@@ -5794,6 +6243,13 @@ declare const contract: {
|
|
|
5794
6243
|
readonly message: "Sign in required";
|
|
5795
6244
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
5796
6245
|
};
|
|
6246
|
+
readonly TOO_MANY_REQUESTS: {
|
|
6247
|
+
readonly status: 429;
|
|
6248
|
+
readonly message: "Too many requests";
|
|
6249
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
6250
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
6251
|
+
}, _$zod_v4_core0.$strip>>;
|
|
6252
|
+
};
|
|
5797
6253
|
readonly FORBIDDEN: {
|
|
5798
6254
|
readonly status: 403;
|
|
5799
6255
|
readonly message: "You do not have access to this resource";
|
|
@@ -5812,6 +6268,13 @@ declare const contract: {
|
|
|
5812
6268
|
invitationId: z.ZodString;
|
|
5813
6269
|
}, _$zod_v4_core0.$strip>;
|
|
5814
6270
|
};
|
|
6271
|
+
readonly KEY_NOT_FOUND: {
|
|
6272
|
+
readonly status: 404;
|
|
6273
|
+
readonly message: "API key not found";
|
|
6274
|
+
readonly data: z.ZodObject<{
|
|
6275
|
+
id: z.ZodString;
|
|
6276
|
+
}, _$zod_v4_core0.$strip>;
|
|
6277
|
+
};
|
|
5815
6278
|
readonly REPO_NOT_FOUND: {
|
|
5816
6279
|
readonly status: 404;
|
|
5817
6280
|
readonly message: "Repo not found";
|
|
@@ -5958,6 +6421,13 @@ declare const contract: {
|
|
|
5958
6421
|
readonly message: "Sign in required";
|
|
5959
6422
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
5960
6423
|
};
|
|
6424
|
+
readonly TOO_MANY_REQUESTS: {
|
|
6425
|
+
readonly status: 429;
|
|
6426
|
+
readonly message: "Too many requests";
|
|
6427
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
6428
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
6429
|
+
}, _$zod_v4_core0.$strip>>;
|
|
6430
|
+
};
|
|
5961
6431
|
readonly FORBIDDEN: {
|
|
5962
6432
|
readonly status: 403;
|
|
5963
6433
|
readonly message: "You do not have access to this resource";
|
|
@@ -5976,6 +6446,13 @@ declare const contract: {
|
|
|
5976
6446
|
invitationId: z.ZodString;
|
|
5977
6447
|
}, _$zod_v4_core0.$strip>;
|
|
5978
6448
|
};
|
|
6449
|
+
readonly KEY_NOT_FOUND: {
|
|
6450
|
+
readonly status: 404;
|
|
6451
|
+
readonly message: "API key not found";
|
|
6452
|
+
readonly data: z.ZodObject<{
|
|
6453
|
+
id: z.ZodString;
|
|
6454
|
+
}, _$zod_v4_core0.$strip>;
|
|
6455
|
+
};
|
|
5979
6456
|
readonly REPO_NOT_FOUND: {
|
|
5980
6457
|
readonly status: 404;
|
|
5981
6458
|
readonly message: "Repo not found";
|
|
@@ -6102,6 +6579,13 @@ declare const contract: {
|
|
|
6102
6579
|
readonly message: "Sign in required";
|
|
6103
6580
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
6104
6581
|
};
|
|
6582
|
+
readonly TOO_MANY_REQUESTS: {
|
|
6583
|
+
readonly status: 429;
|
|
6584
|
+
readonly message: "Too many requests";
|
|
6585
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
6586
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
6587
|
+
}, _$zod_v4_core0.$strip>>;
|
|
6588
|
+
};
|
|
6105
6589
|
readonly FORBIDDEN: {
|
|
6106
6590
|
readonly status: 403;
|
|
6107
6591
|
readonly message: "You do not have access to this resource";
|
|
@@ -6120,6 +6604,13 @@ declare const contract: {
|
|
|
6120
6604
|
invitationId: z.ZodString;
|
|
6121
6605
|
}, _$zod_v4_core0.$strip>;
|
|
6122
6606
|
};
|
|
6607
|
+
readonly KEY_NOT_FOUND: {
|
|
6608
|
+
readonly status: 404;
|
|
6609
|
+
readonly message: "API key not found";
|
|
6610
|
+
readonly data: z.ZodObject<{
|
|
6611
|
+
id: z.ZodString;
|
|
6612
|
+
}, _$zod_v4_core0.$strip>;
|
|
6613
|
+
};
|
|
6123
6614
|
readonly REPO_NOT_FOUND: {
|
|
6124
6615
|
readonly status: 404;
|
|
6125
6616
|
readonly message: "Repo not found";
|
|
@@ -6278,6 +6769,13 @@ declare const contract: {
|
|
|
6278
6769
|
readonly message: "Sign in required";
|
|
6279
6770
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
6280
6771
|
};
|
|
6772
|
+
readonly TOO_MANY_REQUESTS: {
|
|
6773
|
+
readonly status: 429;
|
|
6774
|
+
readonly message: "Too many requests";
|
|
6775
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
6776
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
6777
|
+
}, _$zod_v4_core0.$strip>>;
|
|
6778
|
+
};
|
|
6281
6779
|
readonly FORBIDDEN: {
|
|
6282
6780
|
readonly status: 403;
|
|
6283
6781
|
readonly message: "You do not have access to this resource";
|
|
@@ -6296,6 +6794,13 @@ declare const contract: {
|
|
|
6296
6794
|
invitationId: z.ZodString;
|
|
6297
6795
|
}, _$zod_v4_core0.$strip>;
|
|
6298
6796
|
};
|
|
6797
|
+
readonly KEY_NOT_FOUND: {
|
|
6798
|
+
readonly status: 404;
|
|
6799
|
+
readonly message: "API key not found";
|
|
6800
|
+
readonly data: z.ZodObject<{
|
|
6801
|
+
id: z.ZodString;
|
|
6802
|
+
}, _$zod_v4_core0.$strip>;
|
|
6803
|
+
};
|
|
6299
6804
|
readonly REPO_NOT_FOUND: {
|
|
6300
6805
|
readonly status: 404;
|
|
6301
6806
|
readonly message: "Repo not found";
|
|
@@ -6430,6 +6935,13 @@ declare const contract: {
|
|
|
6430
6935
|
readonly message: "Sign in required";
|
|
6431
6936
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
6432
6937
|
};
|
|
6938
|
+
readonly TOO_MANY_REQUESTS: {
|
|
6939
|
+
readonly status: 429;
|
|
6940
|
+
readonly message: "Too many requests";
|
|
6941
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
6942
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
6943
|
+
}, _$zod_v4_core0.$strip>>;
|
|
6944
|
+
};
|
|
6433
6945
|
readonly FORBIDDEN: {
|
|
6434
6946
|
readonly status: 403;
|
|
6435
6947
|
readonly message: "You do not have access to this resource";
|
|
@@ -6448,6 +6960,13 @@ declare const contract: {
|
|
|
6448
6960
|
invitationId: z.ZodString;
|
|
6449
6961
|
}, _$zod_v4_core0.$strip>;
|
|
6450
6962
|
};
|
|
6963
|
+
readonly KEY_NOT_FOUND: {
|
|
6964
|
+
readonly status: 404;
|
|
6965
|
+
readonly message: "API key not found";
|
|
6966
|
+
readonly data: z.ZodObject<{
|
|
6967
|
+
id: z.ZodString;
|
|
6968
|
+
}, _$zod_v4_core0.$strip>;
|
|
6969
|
+
};
|
|
6451
6970
|
readonly REPO_NOT_FOUND: {
|
|
6452
6971
|
readonly status: 404;
|
|
6453
6972
|
readonly message: "Repo not found";
|
|
@@ -6579,6 +7098,13 @@ declare const contract: {
|
|
|
6579
7098
|
readonly message: "Sign in required";
|
|
6580
7099
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
6581
7100
|
};
|
|
7101
|
+
readonly TOO_MANY_REQUESTS: {
|
|
7102
|
+
readonly status: 429;
|
|
7103
|
+
readonly message: "Too many requests";
|
|
7104
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
7105
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
7106
|
+
}, _$zod_v4_core0.$strip>>;
|
|
7107
|
+
};
|
|
6582
7108
|
readonly FORBIDDEN: {
|
|
6583
7109
|
readonly status: 403;
|
|
6584
7110
|
readonly message: "You do not have access to this resource";
|
|
@@ -6597,6 +7123,13 @@ declare const contract: {
|
|
|
6597
7123
|
invitationId: z.ZodString;
|
|
6598
7124
|
}, _$zod_v4_core0.$strip>;
|
|
6599
7125
|
};
|
|
7126
|
+
readonly KEY_NOT_FOUND: {
|
|
7127
|
+
readonly status: 404;
|
|
7128
|
+
readonly message: "API key not found";
|
|
7129
|
+
readonly data: z.ZodObject<{
|
|
7130
|
+
id: z.ZodString;
|
|
7131
|
+
}, _$zod_v4_core0.$strip>;
|
|
7132
|
+
};
|
|
6600
7133
|
readonly REPO_NOT_FOUND: {
|
|
6601
7134
|
readonly status: 404;
|
|
6602
7135
|
readonly message: "Repo not found";
|
|
@@ -6728,6 +7261,13 @@ declare const contract: {
|
|
|
6728
7261
|
readonly message: "Sign in required";
|
|
6729
7262
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
6730
7263
|
};
|
|
7264
|
+
readonly TOO_MANY_REQUESTS: {
|
|
7265
|
+
readonly status: 429;
|
|
7266
|
+
readonly message: "Too many requests";
|
|
7267
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
7268
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
7269
|
+
}, _$zod_v4_core0.$strip>>;
|
|
7270
|
+
};
|
|
6731
7271
|
readonly FORBIDDEN: {
|
|
6732
7272
|
readonly status: 403;
|
|
6733
7273
|
readonly message: "You do not have access to this resource";
|
|
@@ -6746,6 +7286,13 @@ declare const contract: {
|
|
|
6746
7286
|
invitationId: z.ZodString;
|
|
6747
7287
|
}, _$zod_v4_core0.$strip>;
|
|
6748
7288
|
};
|
|
7289
|
+
readonly KEY_NOT_FOUND: {
|
|
7290
|
+
readonly status: 404;
|
|
7291
|
+
readonly message: "API key not found";
|
|
7292
|
+
readonly data: z.ZodObject<{
|
|
7293
|
+
id: z.ZodString;
|
|
7294
|
+
}, _$zod_v4_core0.$strip>;
|
|
7295
|
+
};
|
|
6749
7296
|
readonly REPO_NOT_FOUND: {
|
|
6750
7297
|
readonly status: 404;
|
|
6751
7298
|
readonly message: "Repo not found";
|
|
@@ -6872,6 +7419,13 @@ declare const contract: {
|
|
|
6872
7419
|
readonly message: "Sign in required";
|
|
6873
7420
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
6874
7421
|
};
|
|
7422
|
+
readonly TOO_MANY_REQUESTS: {
|
|
7423
|
+
readonly status: 429;
|
|
7424
|
+
readonly message: "Too many requests";
|
|
7425
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
7426
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
7427
|
+
}, _$zod_v4_core0.$strip>>;
|
|
7428
|
+
};
|
|
6875
7429
|
readonly FORBIDDEN: {
|
|
6876
7430
|
readonly status: 403;
|
|
6877
7431
|
readonly message: "You do not have access to this resource";
|
|
@@ -6890,6 +7444,13 @@ declare const contract: {
|
|
|
6890
7444
|
invitationId: z.ZodString;
|
|
6891
7445
|
}, _$zod_v4_core0.$strip>;
|
|
6892
7446
|
};
|
|
7447
|
+
readonly KEY_NOT_FOUND: {
|
|
7448
|
+
readonly status: 404;
|
|
7449
|
+
readonly message: "API key not found";
|
|
7450
|
+
readonly data: z.ZodObject<{
|
|
7451
|
+
id: z.ZodString;
|
|
7452
|
+
}, _$zod_v4_core0.$strip>;
|
|
7453
|
+
};
|
|
6893
7454
|
readonly REPO_NOT_FOUND: {
|
|
6894
7455
|
readonly status: 404;
|
|
6895
7456
|
readonly message: "Repo not found";
|
|
@@ -7030,6 +7591,13 @@ declare const contract: {
|
|
|
7030
7591
|
readonly message: "Sign in required";
|
|
7031
7592
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
7032
7593
|
};
|
|
7594
|
+
readonly TOO_MANY_REQUESTS: {
|
|
7595
|
+
readonly status: 429;
|
|
7596
|
+
readonly message: "Too many requests";
|
|
7597
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
7598
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
7599
|
+
}, _$zod_v4_core0.$strip>>;
|
|
7600
|
+
};
|
|
7033
7601
|
readonly FORBIDDEN: {
|
|
7034
7602
|
readonly status: 403;
|
|
7035
7603
|
readonly message: "You do not have access to this resource";
|
|
@@ -7048,6 +7616,13 @@ declare const contract: {
|
|
|
7048
7616
|
invitationId: z.ZodString;
|
|
7049
7617
|
}, _$zod_v4_core0.$strip>;
|
|
7050
7618
|
};
|
|
7619
|
+
readonly KEY_NOT_FOUND: {
|
|
7620
|
+
readonly status: 404;
|
|
7621
|
+
readonly message: "API key not found";
|
|
7622
|
+
readonly data: z.ZodObject<{
|
|
7623
|
+
id: z.ZodString;
|
|
7624
|
+
}, _$zod_v4_core0.$strip>;
|
|
7625
|
+
};
|
|
7051
7626
|
readonly REPO_NOT_FOUND: {
|
|
7052
7627
|
readonly status: 404;
|
|
7053
7628
|
readonly message: "Repo not found";
|
|
@@ -7188,6 +7763,13 @@ declare const contract: {
|
|
|
7188
7763
|
readonly message: "Sign in required";
|
|
7189
7764
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
7190
7765
|
};
|
|
7766
|
+
readonly TOO_MANY_REQUESTS: {
|
|
7767
|
+
readonly status: 429;
|
|
7768
|
+
readonly message: "Too many requests";
|
|
7769
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
7770
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
7771
|
+
}, _$zod_v4_core0.$strip>>;
|
|
7772
|
+
};
|
|
7191
7773
|
readonly FORBIDDEN: {
|
|
7192
7774
|
readonly status: 403;
|
|
7193
7775
|
readonly message: "You do not have access to this resource";
|
|
@@ -7206,6 +7788,13 @@ declare const contract: {
|
|
|
7206
7788
|
invitationId: z.ZodString;
|
|
7207
7789
|
}, _$zod_v4_core0.$strip>;
|
|
7208
7790
|
};
|
|
7791
|
+
readonly KEY_NOT_FOUND: {
|
|
7792
|
+
readonly status: 404;
|
|
7793
|
+
readonly message: "API key not found";
|
|
7794
|
+
readonly data: z.ZodObject<{
|
|
7795
|
+
id: z.ZodString;
|
|
7796
|
+
}, _$zod_v4_core0.$strip>;
|
|
7797
|
+
};
|
|
7209
7798
|
readonly REPO_NOT_FOUND: {
|
|
7210
7799
|
readonly status: 404;
|
|
7211
7800
|
readonly message: "Repo not found";
|
|
@@ -7333,6 +7922,13 @@ declare const contract: {
|
|
|
7333
7922
|
readonly message: "Sign in required";
|
|
7334
7923
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
7335
7924
|
};
|
|
7925
|
+
readonly TOO_MANY_REQUESTS: {
|
|
7926
|
+
readonly status: 429;
|
|
7927
|
+
readonly message: "Too many requests";
|
|
7928
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
7929
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
7930
|
+
}, _$zod_v4_core0.$strip>>;
|
|
7931
|
+
};
|
|
7336
7932
|
readonly FORBIDDEN: {
|
|
7337
7933
|
readonly status: 403;
|
|
7338
7934
|
readonly message: "You do not have access to this resource";
|
|
@@ -7351,6 +7947,13 @@ declare const contract: {
|
|
|
7351
7947
|
invitationId: z.ZodString;
|
|
7352
7948
|
}, _$zod_v4_core0.$strip>;
|
|
7353
7949
|
};
|
|
7950
|
+
readonly KEY_NOT_FOUND: {
|
|
7951
|
+
readonly status: 404;
|
|
7952
|
+
readonly message: "API key not found";
|
|
7953
|
+
readonly data: z.ZodObject<{
|
|
7954
|
+
id: z.ZodString;
|
|
7955
|
+
}, _$zod_v4_core0.$strip>;
|
|
7956
|
+
};
|
|
7354
7957
|
readonly REPO_NOT_FOUND: {
|
|
7355
7958
|
readonly status: 404;
|
|
7356
7959
|
readonly message: "Repo not found";
|
|
@@ -7492,6 +8095,13 @@ declare const contract: {
|
|
|
7492
8095
|
readonly message: "Sign in required";
|
|
7493
8096
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
7494
8097
|
};
|
|
8098
|
+
readonly TOO_MANY_REQUESTS: {
|
|
8099
|
+
readonly status: 429;
|
|
8100
|
+
readonly message: "Too many requests";
|
|
8101
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
8102
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
8103
|
+
}, _$zod_v4_core0.$strip>>;
|
|
8104
|
+
};
|
|
7495
8105
|
readonly FORBIDDEN: {
|
|
7496
8106
|
readonly status: 403;
|
|
7497
8107
|
readonly message: "You do not have access to this resource";
|
|
@@ -7510,6 +8120,13 @@ declare const contract: {
|
|
|
7510
8120
|
invitationId: z.ZodString;
|
|
7511
8121
|
}, _$zod_v4_core0.$strip>;
|
|
7512
8122
|
};
|
|
8123
|
+
readonly KEY_NOT_FOUND: {
|
|
8124
|
+
readonly status: 404;
|
|
8125
|
+
readonly message: "API key not found";
|
|
8126
|
+
readonly data: z.ZodObject<{
|
|
8127
|
+
id: z.ZodString;
|
|
8128
|
+
}, _$zod_v4_core0.$strip>;
|
|
8129
|
+
};
|
|
7513
8130
|
readonly REPO_NOT_FOUND: {
|
|
7514
8131
|
readonly status: 404;
|
|
7515
8132
|
readonly message: "Repo not found";
|
|
@@ -7636,6 +8253,172 @@ declare const contract: {
|
|
|
7636
8253
|
readonly message: "Sign in required";
|
|
7637
8254
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
7638
8255
|
};
|
|
8256
|
+
readonly TOO_MANY_REQUESTS: {
|
|
8257
|
+
readonly status: 429;
|
|
8258
|
+
readonly message: "Too many requests";
|
|
8259
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
8260
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
8261
|
+
}, _$zod_v4_core0.$strip>>;
|
|
8262
|
+
};
|
|
8263
|
+
readonly FORBIDDEN: {
|
|
8264
|
+
readonly status: 403;
|
|
8265
|
+
readonly message: "You do not have access to this resource";
|
|
8266
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
8267
|
+
reason: z.ZodOptional<z.ZodEnum<{
|
|
8268
|
+
not_a_member: "not_a_member";
|
|
8269
|
+
insufficient_role: "insufficient_role";
|
|
8270
|
+
scope_missing: "scope_missing";
|
|
8271
|
+
}>>;
|
|
8272
|
+
}, _$zod_v4_core0.$strip>>;
|
|
8273
|
+
};
|
|
8274
|
+
readonly INVITATION_NOT_FOUND: {
|
|
8275
|
+
readonly status: 404;
|
|
8276
|
+
readonly message: "Invitation not found";
|
|
8277
|
+
readonly data: z.ZodObject<{
|
|
8278
|
+
invitationId: z.ZodString;
|
|
8279
|
+
}, _$zod_v4_core0.$strip>;
|
|
8280
|
+
};
|
|
8281
|
+
readonly KEY_NOT_FOUND: {
|
|
8282
|
+
readonly status: 404;
|
|
8283
|
+
readonly message: "API key not found";
|
|
8284
|
+
readonly data: z.ZodObject<{
|
|
8285
|
+
id: z.ZodString;
|
|
8286
|
+
}, _$zod_v4_core0.$strip>;
|
|
8287
|
+
};
|
|
8288
|
+
readonly REPO_NOT_FOUND: {
|
|
8289
|
+
readonly status: 404;
|
|
8290
|
+
readonly message: "Repo not found";
|
|
8291
|
+
readonly data: z.ZodObject<{
|
|
8292
|
+
name: z.ZodString;
|
|
8293
|
+
}, _$zod_v4_core0.$strip>;
|
|
8294
|
+
};
|
|
8295
|
+
readonly GIT_OBJECT_NOT_FOUND: {
|
|
8296
|
+
readonly status: 404;
|
|
8297
|
+
readonly message: "Git object not found";
|
|
8298
|
+
readonly data: z.ZodObject<{
|
|
8299
|
+
name: z.ZodString;
|
|
8300
|
+
object: z.ZodString;
|
|
8301
|
+
}, _$zod_v4_core0.$strip>;
|
|
8302
|
+
};
|
|
8303
|
+
readonly REF_ALREADY_EXISTS: {
|
|
8304
|
+
readonly status: 409;
|
|
8305
|
+
readonly message: "Git ref already exists";
|
|
8306
|
+
readonly data: z.ZodObject<{
|
|
8307
|
+
name: z.ZodString;
|
|
8308
|
+
ref: z.ZodString;
|
|
8309
|
+
}, _$zod_v4_core0.$strip>;
|
|
8310
|
+
};
|
|
8311
|
+
readonly STALE_REF: {
|
|
8312
|
+
readonly status: 409;
|
|
8313
|
+
readonly message: "Git ref is stale";
|
|
8314
|
+
readonly data: z.ZodObject<{
|
|
8315
|
+
name: z.ZodString;
|
|
8316
|
+
ref: z.ZodString;
|
|
8317
|
+
}, _$zod_v4_core0.$strip>;
|
|
8318
|
+
};
|
|
8319
|
+
readonly NON_FAST_FORWARD: {
|
|
8320
|
+
readonly status: 422;
|
|
8321
|
+
readonly message: "Git ref update is not a fast-forward";
|
|
8322
|
+
readonly data: z.ZodObject<{
|
|
8323
|
+
name: z.ZodString;
|
|
8324
|
+
ref: z.ZodString;
|
|
8325
|
+
}, _$zod_v4_core0.$strip>;
|
|
8326
|
+
};
|
|
8327
|
+
readonly INVALID_TREE: {
|
|
8328
|
+
readonly status: 422;
|
|
8329
|
+
readonly message: "Invalid git tree";
|
|
8330
|
+
readonly data: z.ZodObject<{
|
|
8331
|
+
name: z.ZodString;
|
|
8332
|
+
object: z.ZodString;
|
|
8333
|
+
}, _$zod_v4_core0.$strip>;
|
|
8334
|
+
};
|
|
8335
|
+
readonly INVALID_PARENT: {
|
|
8336
|
+
readonly status: 422;
|
|
8337
|
+
readonly message: "Invalid git parent";
|
|
8338
|
+
readonly data: z.ZodObject<{
|
|
8339
|
+
name: z.ZodString;
|
|
8340
|
+
object: z.ZodString;
|
|
8341
|
+
}, _$zod_v4_core0.$strip>;
|
|
8342
|
+
};
|
|
8343
|
+
readonly INVARIANT_WORKSPACE_REQUIRED: {
|
|
8344
|
+
readonly status: 503;
|
|
8345
|
+
readonly message: "Repo workspace is required for this git operation";
|
|
8346
|
+
readonly data: z.ZodObject<{
|
|
8347
|
+
name: z.ZodString;
|
|
8348
|
+
}, _$zod_v4_core0.$strip>;
|
|
8349
|
+
};
|
|
8350
|
+
readonly GIT_REMOTE_WRITE_FAILED: {
|
|
8351
|
+
readonly status: 502;
|
|
8352
|
+
readonly message: "Git remote write failed";
|
|
8353
|
+
readonly data: z.ZodObject<{
|
|
8354
|
+
name: z.ZodString;
|
|
8355
|
+
ref: z.ZodString;
|
|
8356
|
+
}, _$zod_v4_core0.$strip>;
|
|
8357
|
+
};
|
|
8358
|
+
readonly REPO_ALREADY_EXISTS: {
|
|
8359
|
+
readonly status: 409;
|
|
8360
|
+
readonly message: "Repo already exists";
|
|
8361
|
+
readonly data: z.ZodObject<{
|
|
8362
|
+
name: z.ZodString;
|
|
8363
|
+
}, _$zod_v4_core0.$strip>;
|
|
8364
|
+
};
|
|
8365
|
+
readonly QUOTA_EXCEEDED: {
|
|
8366
|
+
readonly status: 429;
|
|
8367
|
+
readonly message: "Quota exceeded";
|
|
8368
|
+
readonly data: z.ZodObject<{
|
|
8369
|
+
scope: z.ZodEnum<{
|
|
8370
|
+
anon: "anon";
|
|
8371
|
+
org: "org";
|
|
8372
|
+
size: "size";
|
|
8373
|
+
}>;
|
|
8374
|
+
limit: z.ZodNumber;
|
|
8375
|
+
observed: z.ZodOptional<z.ZodNumber>;
|
|
8376
|
+
projected: z.ZodOptional<z.ZodNumber>;
|
|
8377
|
+
}, _$zod_v4_core0.$strip>;
|
|
8378
|
+
};
|
|
8379
|
+
readonly PAYLOAD_TOO_LARGE: {
|
|
8380
|
+
readonly status: 413;
|
|
8381
|
+
readonly message: "Request payload exceeds the supported limit";
|
|
8382
|
+
readonly data: z.ZodObject<{
|
|
8383
|
+
scope: z.ZodEnum<{
|
|
8384
|
+
workspace_commit: "workspace_commit";
|
|
8385
|
+
git_workspace_memory: "git_workspace_memory";
|
|
8386
|
+
}>;
|
|
8387
|
+
limit: z.ZodNumber;
|
|
8388
|
+
observed: z.ZodOptional<z.ZodNumber>;
|
|
8389
|
+
}, _$zod_v4_core0.$strip>;
|
|
8390
|
+
};
|
|
8391
|
+
readonly IMPORT_FAILED: {
|
|
8392
|
+
readonly status: 502;
|
|
8393
|
+
readonly message: "Repo import failed";
|
|
8394
|
+
readonly data: z.ZodObject<{
|
|
8395
|
+
name: z.ZodString;
|
|
8396
|
+
}, _$zod_v4_core0.$strip>;
|
|
8397
|
+
};
|
|
8398
|
+
}>, Record<never, never>>;
|
|
8399
|
+
cancelInvite: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
8400
|
+
orgSlug: z.ZodString;
|
|
8401
|
+
invitationId: z.ZodString;
|
|
8402
|
+
}, _$zod_v4_core0.$strip>, z.ZodObject<{
|
|
8403
|
+
cancelled: z.ZodBoolean;
|
|
8404
|
+
}, _$zod_v4_core0.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
8405
|
+
readonly BAD_REQUEST: {
|
|
8406
|
+
readonly status: 400;
|
|
8407
|
+
readonly message: "Bad request";
|
|
8408
|
+
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
8409
|
+
};
|
|
8410
|
+
readonly UNAUTHENTICATED: {
|
|
8411
|
+
readonly status: 401;
|
|
8412
|
+
readonly message: "Sign in required";
|
|
8413
|
+
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
8414
|
+
};
|
|
8415
|
+
readonly TOO_MANY_REQUESTS: {
|
|
8416
|
+
readonly status: 429;
|
|
8417
|
+
readonly message: "Too many requests";
|
|
8418
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
8419
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
8420
|
+
}, _$zod_v4_core0.$strip>>;
|
|
8421
|
+
};
|
|
7639
8422
|
readonly FORBIDDEN: {
|
|
7640
8423
|
readonly status: 403;
|
|
7641
8424
|
readonly message: "You do not have access to this resource";
|
|
@@ -7654,6 +8437,13 @@ declare const contract: {
|
|
|
7654
8437
|
invitationId: z.ZodString;
|
|
7655
8438
|
}, _$zod_v4_core0.$strip>;
|
|
7656
8439
|
};
|
|
8440
|
+
readonly KEY_NOT_FOUND: {
|
|
8441
|
+
readonly status: 404;
|
|
8442
|
+
readonly message: "API key not found";
|
|
8443
|
+
readonly data: z.ZodObject<{
|
|
8444
|
+
id: z.ZodString;
|
|
8445
|
+
}, _$zod_v4_core0.$strip>;
|
|
8446
|
+
};
|
|
7657
8447
|
readonly REPO_NOT_FOUND: {
|
|
7658
8448
|
readonly status: 404;
|
|
7659
8449
|
readonly message: "Repo not found";
|
|
@@ -7780,6 +8570,13 @@ declare const contract: {
|
|
|
7780
8570
|
readonly message: "Sign in required";
|
|
7781
8571
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
7782
8572
|
};
|
|
8573
|
+
readonly TOO_MANY_REQUESTS: {
|
|
8574
|
+
readonly status: 429;
|
|
8575
|
+
readonly message: "Too many requests";
|
|
8576
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
8577
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
8578
|
+
}, _$zod_v4_core0.$strip>>;
|
|
8579
|
+
};
|
|
7783
8580
|
readonly FORBIDDEN: {
|
|
7784
8581
|
readonly status: 403;
|
|
7785
8582
|
readonly message: "You do not have access to this resource";
|
|
@@ -7798,6 +8595,13 @@ declare const contract: {
|
|
|
7798
8595
|
invitationId: z.ZodString;
|
|
7799
8596
|
}, _$zod_v4_core0.$strip>;
|
|
7800
8597
|
};
|
|
8598
|
+
readonly KEY_NOT_FOUND: {
|
|
8599
|
+
readonly status: 404;
|
|
8600
|
+
readonly message: "API key not found";
|
|
8601
|
+
readonly data: z.ZodObject<{
|
|
8602
|
+
id: z.ZodString;
|
|
8603
|
+
}, _$zod_v4_core0.$strip>;
|
|
8604
|
+
};
|
|
7801
8605
|
readonly REPO_NOT_FOUND: {
|
|
7802
8606
|
readonly status: 404;
|
|
7803
8607
|
readonly message: "Repo not found";
|
|
@@ -7943,6 +8747,13 @@ declare const contract: {
|
|
|
7943
8747
|
readonly message: "Sign in required";
|
|
7944
8748
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
7945
8749
|
};
|
|
8750
|
+
readonly TOO_MANY_REQUESTS: {
|
|
8751
|
+
readonly status: 429;
|
|
8752
|
+
readonly message: "Too many requests";
|
|
8753
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
8754
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
8755
|
+
}, _$zod_v4_core0.$strip>>;
|
|
8756
|
+
};
|
|
7946
8757
|
readonly FORBIDDEN: {
|
|
7947
8758
|
readonly status: 403;
|
|
7948
8759
|
readonly message: "You do not have access to this resource";
|
|
@@ -7961,6 +8772,13 @@ declare const contract: {
|
|
|
7961
8772
|
invitationId: z.ZodString;
|
|
7962
8773
|
}, _$zod_v4_core0.$strip>;
|
|
7963
8774
|
};
|
|
8775
|
+
readonly KEY_NOT_FOUND: {
|
|
8776
|
+
readonly status: 404;
|
|
8777
|
+
readonly message: "API key not found";
|
|
8778
|
+
readonly data: z.ZodObject<{
|
|
8779
|
+
id: z.ZodString;
|
|
8780
|
+
}, _$zod_v4_core0.$strip>;
|
|
8781
|
+
};
|
|
7964
8782
|
readonly REPO_NOT_FOUND: {
|
|
7965
8783
|
readonly status: 404;
|
|
7966
8784
|
readonly message: "Repo not found";
|
|
@@ -8105,6 +8923,13 @@ declare const contract: {
|
|
|
8105
8923
|
readonly message: "Sign in required";
|
|
8106
8924
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
8107
8925
|
};
|
|
8926
|
+
readonly TOO_MANY_REQUESTS: {
|
|
8927
|
+
readonly status: 429;
|
|
8928
|
+
readonly message: "Too many requests";
|
|
8929
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
8930
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
8931
|
+
}, _$zod_v4_core0.$strip>>;
|
|
8932
|
+
};
|
|
8108
8933
|
readonly FORBIDDEN: {
|
|
8109
8934
|
readonly status: 403;
|
|
8110
8935
|
readonly message: "You do not have access to this resource";
|
|
@@ -8123,6 +8948,13 @@ declare const contract: {
|
|
|
8123
8948
|
invitationId: z.ZodString;
|
|
8124
8949
|
}, _$zod_v4_core0.$strip>;
|
|
8125
8950
|
};
|
|
8951
|
+
readonly KEY_NOT_FOUND: {
|
|
8952
|
+
readonly status: 404;
|
|
8953
|
+
readonly message: "API key not found";
|
|
8954
|
+
readonly data: z.ZodObject<{
|
|
8955
|
+
id: z.ZodString;
|
|
8956
|
+
}, _$zod_v4_core0.$strip>;
|
|
8957
|
+
};
|
|
8126
8958
|
readonly REPO_NOT_FOUND: {
|
|
8127
8959
|
readonly status: 404;
|
|
8128
8960
|
readonly message: "Repo not found";
|
|
@@ -8267,6 +9099,13 @@ declare const contract: {
|
|
|
8267
9099
|
readonly message: "Sign in required";
|
|
8268
9100
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
8269
9101
|
};
|
|
9102
|
+
readonly TOO_MANY_REQUESTS: {
|
|
9103
|
+
readonly status: 429;
|
|
9104
|
+
readonly message: "Too many requests";
|
|
9105
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
9106
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
9107
|
+
}, _$zod_v4_core0.$strip>>;
|
|
9108
|
+
};
|
|
8270
9109
|
readonly FORBIDDEN: {
|
|
8271
9110
|
readonly status: 403;
|
|
8272
9111
|
readonly message: "You do not have access to this resource";
|
|
@@ -8285,6 +9124,13 @@ declare const contract: {
|
|
|
8285
9124
|
invitationId: z.ZodString;
|
|
8286
9125
|
}, _$zod_v4_core0.$strip>;
|
|
8287
9126
|
};
|
|
9127
|
+
readonly KEY_NOT_FOUND: {
|
|
9128
|
+
readonly status: 404;
|
|
9129
|
+
readonly message: "API key not found";
|
|
9130
|
+
readonly data: z.ZodObject<{
|
|
9131
|
+
id: z.ZodString;
|
|
9132
|
+
}, _$zod_v4_core0.$strip>;
|
|
9133
|
+
};
|
|
8288
9134
|
readonly REPO_NOT_FOUND: {
|
|
8289
9135
|
readonly status: 404;
|
|
8290
9136
|
readonly message: "Repo not found";
|
|
@@ -8424,6 +9270,13 @@ declare const contract: {
|
|
|
8424
9270
|
readonly message: "Sign in required";
|
|
8425
9271
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
8426
9272
|
};
|
|
9273
|
+
readonly TOO_MANY_REQUESTS: {
|
|
9274
|
+
readonly status: 429;
|
|
9275
|
+
readonly message: "Too many requests";
|
|
9276
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
9277
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
9278
|
+
}, _$zod_v4_core0.$strip>>;
|
|
9279
|
+
};
|
|
8427
9280
|
readonly FORBIDDEN: {
|
|
8428
9281
|
readonly status: 403;
|
|
8429
9282
|
readonly message: "You do not have access to this resource";
|
|
@@ -8442,6 +9295,13 @@ declare const contract: {
|
|
|
8442
9295
|
invitationId: z.ZodString;
|
|
8443
9296
|
}, _$zod_v4_core0.$strip>;
|
|
8444
9297
|
};
|
|
9298
|
+
readonly KEY_NOT_FOUND: {
|
|
9299
|
+
readonly status: 404;
|
|
9300
|
+
readonly message: "API key not found";
|
|
9301
|
+
readonly data: z.ZodObject<{
|
|
9302
|
+
id: z.ZodString;
|
|
9303
|
+
}, _$zod_v4_core0.$strip>;
|
|
9304
|
+
};
|
|
8445
9305
|
readonly REPO_NOT_FOUND: {
|
|
8446
9306
|
readonly status: 404;
|
|
8447
9307
|
readonly message: "Repo not found";
|
|
@@ -8585,6 +9445,13 @@ declare const contract: {
|
|
|
8585
9445
|
readonly message: "Sign in required";
|
|
8586
9446
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
8587
9447
|
};
|
|
9448
|
+
readonly TOO_MANY_REQUESTS: {
|
|
9449
|
+
readonly status: 429;
|
|
9450
|
+
readonly message: "Too many requests";
|
|
9451
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
9452
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
9453
|
+
}, _$zod_v4_core0.$strip>>;
|
|
9454
|
+
};
|
|
8588
9455
|
readonly FORBIDDEN: {
|
|
8589
9456
|
readonly status: 403;
|
|
8590
9457
|
readonly message: "You do not have access to this resource";
|
|
@@ -8603,6 +9470,13 @@ declare const contract: {
|
|
|
8603
9470
|
invitationId: z.ZodString;
|
|
8604
9471
|
}, _$zod_v4_core0.$strip>;
|
|
8605
9472
|
};
|
|
9473
|
+
readonly KEY_NOT_FOUND: {
|
|
9474
|
+
readonly status: 404;
|
|
9475
|
+
readonly message: "API key not found";
|
|
9476
|
+
readonly data: z.ZodObject<{
|
|
9477
|
+
id: z.ZodString;
|
|
9478
|
+
}, _$zod_v4_core0.$strip>;
|
|
9479
|
+
};
|
|
8606
9480
|
readonly REPO_NOT_FOUND: {
|
|
8607
9481
|
readonly status: 404;
|
|
8608
9482
|
readonly message: "Repo not found";
|
|
@@ -8744,6 +9618,13 @@ declare const contract: {
|
|
|
8744
9618
|
readonly message: "Sign in required";
|
|
8745
9619
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
8746
9620
|
};
|
|
9621
|
+
readonly TOO_MANY_REQUESTS: {
|
|
9622
|
+
readonly status: 429;
|
|
9623
|
+
readonly message: "Too many requests";
|
|
9624
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
9625
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
9626
|
+
}, _$zod_v4_core0.$strip>>;
|
|
9627
|
+
};
|
|
8747
9628
|
readonly FORBIDDEN: {
|
|
8748
9629
|
readonly status: 403;
|
|
8749
9630
|
readonly message: "You do not have access to this resource";
|
|
@@ -8762,6 +9643,13 @@ declare const contract: {
|
|
|
8762
9643
|
invitationId: z.ZodString;
|
|
8763
9644
|
}, _$zod_v4_core0.$strip>;
|
|
8764
9645
|
};
|
|
9646
|
+
readonly KEY_NOT_FOUND: {
|
|
9647
|
+
readonly status: 404;
|
|
9648
|
+
readonly message: "API key not found";
|
|
9649
|
+
readonly data: z.ZodObject<{
|
|
9650
|
+
id: z.ZodString;
|
|
9651
|
+
}, _$zod_v4_core0.$strip>;
|
|
9652
|
+
};
|
|
8765
9653
|
readonly REPO_NOT_FOUND: {
|
|
8766
9654
|
readonly status: 404;
|
|
8767
9655
|
readonly message: "Repo not found";
|
|
@@ -8889,6 +9777,13 @@ declare const contract: {
|
|
|
8889
9777
|
readonly message: "Sign in required";
|
|
8890
9778
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
8891
9779
|
};
|
|
9780
|
+
readonly TOO_MANY_REQUESTS: {
|
|
9781
|
+
readonly status: 429;
|
|
9782
|
+
readonly message: "Too many requests";
|
|
9783
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
9784
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
9785
|
+
}, _$zod_v4_core0.$strip>>;
|
|
9786
|
+
};
|
|
8892
9787
|
readonly FORBIDDEN: {
|
|
8893
9788
|
readonly status: 403;
|
|
8894
9789
|
readonly message: "You do not have access to this resource";
|
|
@@ -8907,6 +9802,13 @@ declare const contract: {
|
|
|
8907
9802
|
invitationId: z.ZodString;
|
|
8908
9803
|
}, _$zod_v4_core0.$strip>;
|
|
8909
9804
|
};
|
|
9805
|
+
readonly KEY_NOT_FOUND: {
|
|
9806
|
+
readonly status: 404;
|
|
9807
|
+
readonly message: "API key not found";
|
|
9808
|
+
readonly data: z.ZodObject<{
|
|
9809
|
+
id: z.ZodString;
|
|
9810
|
+
}, _$zod_v4_core0.$strip>;
|
|
9811
|
+
};
|
|
8910
9812
|
readonly REPO_NOT_FOUND: {
|
|
8911
9813
|
readonly status: 404;
|
|
8912
9814
|
readonly message: "Repo not found";
|
|
@@ -9055,6 +9957,13 @@ declare const contract: {
|
|
|
9055
9957
|
readonly message: "Sign in required";
|
|
9056
9958
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
9057
9959
|
};
|
|
9960
|
+
readonly TOO_MANY_REQUESTS: {
|
|
9961
|
+
readonly status: 429;
|
|
9962
|
+
readonly message: "Too many requests";
|
|
9963
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
9964
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
9965
|
+
}, _$zod_v4_core0.$strip>>;
|
|
9966
|
+
};
|
|
9058
9967
|
readonly FORBIDDEN: {
|
|
9059
9968
|
readonly status: 403;
|
|
9060
9969
|
readonly message: "You do not have access to this resource";
|
|
@@ -9073,6 +9982,13 @@ declare const contract: {
|
|
|
9073
9982
|
invitationId: z.ZodString;
|
|
9074
9983
|
}, _$zod_v4_core0.$strip>;
|
|
9075
9984
|
};
|
|
9985
|
+
readonly KEY_NOT_FOUND: {
|
|
9986
|
+
readonly status: 404;
|
|
9987
|
+
readonly message: "API key not found";
|
|
9988
|
+
readonly data: z.ZodObject<{
|
|
9989
|
+
id: z.ZodString;
|
|
9990
|
+
}, _$zod_v4_core0.$strip>;
|
|
9991
|
+
};
|
|
9076
9992
|
readonly REPO_NOT_FOUND: {
|
|
9077
9993
|
readonly status: 404;
|
|
9078
9994
|
readonly message: "Repo not found";
|
|
@@ -9216,6 +10132,13 @@ declare const contract: {
|
|
|
9216
10132
|
readonly message: "Sign in required";
|
|
9217
10133
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
9218
10134
|
};
|
|
10135
|
+
readonly TOO_MANY_REQUESTS: {
|
|
10136
|
+
readonly status: 429;
|
|
10137
|
+
readonly message: "Too many requests";
|
|
10138
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
10139
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
10140
|
+
}, _$zod_v4_core0.$strip>>;
|
|
10141
|
+
};
|
|
9219
10142
|
readonly FORBIDDEN: {
|
|
9220
10143
|
readonly status: 403;
|
|
9221
10144
|
readonly message: "You do not have access to this resource";
|
|
@@ -9234,6 +10157,13 @@ declare const contract: {
|
|
|
9234
10157
|
invitationId: z.ZodString;
|
|
9235
10158
|
}, _$zod_v4_core0.$strip>;
|
|
9236
10159
|
};
|
|
10160
|
+
readonly KEY_NOT_FOUND: {
|
|
10161
|
+
readonly status: 404;
|
|
10162
|
+
readonly message: "API key not found";
|
|
10163
|
+
readonly data: z.ZodObject<{
|
|
10164
|
+
id: z.ZodString;
|
|
10165
|
+
}, _$zod_v4_core0.$strip>;
|
|
10166
|
+
};
|
|
9237
10167
|
readonly REPO_NOT_FOUND: {
|
|
9238
10168
|
readonly status: 404;
|
|
9239
10169
|
readonly message: "Repo not found";
|
|
@@ -9375,6 +10305,13 @@ declare const contract: {
|
|
|
9375
10305
|
readonly message: "Sign in required";
|
|
9376
10306
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
9377
10307
|
};
|
|
10308
|
+
readonly TOO_MANY_REQUESTS: {
|
|
10309
|
+
readonly status: 429;
|
|
10310
|
+
readonly message: "Too many requests";
|
|
10311
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
10312
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
10313
|
+
}, _$zod_v4_core0.$strip>>;
|
|
10314
|
+
};
|
|
9378
10315
|
readonly FORBIDDEN: {
|
|
9379
10316
|
readonly status: 403;
|
|
9380
10317
|
readonly message: "You do not have access to this resource";
|
|
@@ -9393,6 +10330,13 @@ declare const contract: {
|
|
|
9393
10330
|
invitationId: z.ZodString;
|
|
9394
10331
|
}, _$zod_v4_core0.$strip>;
|
|
9395
10332
|
};
|
|
10333
|
+
readonly KEY_NOT_FOUND: {
|
|
10334
|
+
readonly status: 404;
|
|
10335
|
+
readonly message: "API key not found";
|
|
10336
|
+
readonly data: z.ZodObject<{
|
|
10337
|
+
id: z.ZodString;
|
|
10338
|
+
}, _$zod_v4_core0.$strip>;
|
|
10339
|
+
};
|
|
9396
10340
|
readonly REPO_NOT_FOUND: {
|
|
9397
10341
|
readonly status: 404;
|
|
9398
10342
|
readonly message: "Repo not found";
|
|
@@ -9521,6 +10465,13 @@ declare const contract: {
|
|
|
9521
10465
|
readonly message: "Sign in required";
|
|
9522
10466
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
9523
10467
|
};
|
|
10468
|
+
readonly TOO_MANY_REQUESTS: {
|
|
10469
|
+
readonly status: 429;
|
|
10470
|
+
readonly message: "Too many requests";
|
|
10471
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
10472
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
10473
|
+
}, _$zod_v4_core0.$strip>>;
|
|
10474
|
+
};
|
|
9524
10475
|
readonly FORBIDDEN: {
|
|
9525
10476
|
readonly status: 403;
|
|
9526
10477
|
readonly message: "You do not have access to this resource";
|
|
@@ -9539,6 +10490,13 @@ declare const contract: {
|
|
|
9539
10490
|
invitationId: z.ZodString;
|
|
9540
10491
|
}, _$zod_v4_core0.$strip>;
|
|
9541
10492
|
};
|
|
10493
|
+
readonly KEY_NOT_FOUND: {
|
|
10494
|
+
readonly status: 404;
|
|
10495
|
+
readonly message: "API key not found";
|
|
10496
|
+
readonly data: z.ZodObject<{
|
|
10497
|
+
id: z.ZodString;
|
|
10498
|
+
}, _$zod_v4_core0.$strip>;
|
|
10499
|
+
};
|
|
9542
10500
|
readonly REPO_NOT_FOUND: {
|
|
9543
10501
|
readonly status: 404;
|
|
9544
10502
|
readonly message: "Repo not found";
|
|
@@ -9675,6 +10633,13 @@ declare const contract: {
|
|
|
9675
10633
|
readonly message: "Sign in required";
|
|
9676
10634
|
readonly data: z.ZodOptional<z.ZodObject<{}, _$zod_v4_core0.$strip>>;
|
|
9677
10635
|
};
|
|
10636
|
+
readonly TOO_MANY_REQUESTS: {
|
|
10637
|
+
readonly status: 429;
|
|
10638
|
+
readonly message: "Too many requests";
|
|
10639
|
+
readonly data: z.ZodOptional<z.ZodObject<{
|
|
10640
|
+
retryAfterMs: z.ZodOptional<z.ZodNumber>;
|
|
10641
|
+
}, _$zod_v4_core0.$strip>>;
|
|
10642
|
+
};
|
|
9678
10643
|
readonly FORBIDDEN: {
|
|
9679
10644
|
readonly status: 403;
|
|
9680
10645
|
readonly message: "You do not have access to this resource";
|
|
@@ -9693,6 +10658,13 @@ declare const contract: {
|
|
|
9693
10658
|
invitationId: z.ZodString;
|
|
9694
10659
|
}, _$zod_v4_core0.$strip>;
|
|
9695
10660
|
};
|
|
10661
|
+
readonly KEY_NOT_FOUND: {
|
|
10662
|
+
readonly status: 404;
|
|
10663
|
+
readonly message: "API key not found";
|
|
10664
|
+
readonly data: z.ZodObject<{
|
|
10665
|
+
id: z.ZodString;
|
|
10666
|
+
}, _$zod_v4_core0.$strip>;
|
|
10667
|
+
};
|
|
9696
10668
|
readonly REPO_NOT_FOUND: {
|
|
9697
10669
|
readonly status: 404;
|
|
9698
10670
|
readonly message: "Repo not found";
|
|
@@ -9808,4 +10780,4 @@ declare const contract: {
|
|
|
9808
10780
|
};
|
|
9809
10781
|
type Contract = typeof contract;
|
|
9810
10782
|
//#endregion
|
|
9811
|
-
export { ANON_ID_STORE_VERSION, type AnonIdRecord, type AnonRepoCreateInput, type AnonRepoCreateOutput, type AnonRepoListInput, type AnonRepoListOutput, type AnonRepoView, type AnonTokenMintForGitRemoteInput, type ApiKeyCreateInput, type ApiKeyCreateOutput, type ApiKeyDeleteInput, type ApiKeyDeleteOutput, type ApiKeyListOutput, type ApiKeyView, type CommonErrorMap, type CompareView, Contract, type DiffFile, type DiffView, type GitBlob, type GitCommit, type GitRef, type GitTreeEntry, type MeView, type MemberRole, type MemberView, type OrgCreateInput, type OrgListOutput, type OrgView, type RepoCreateInput, type RepoCreateOutput, type RepoDeleteOutput, type RepoEnsureInput, type RepoEnsureOutput, type RepoImportInput, type RepoListInput, type RepoListOutput, type RepoUpdateInput, type RepoView, type Scope, type Signature, type TokenListInput, type TokenListOutput, type TokenMintForGitRemoteInput, type TokenMintInput, type TokenMintOutput, type TokenRevokeInput, type TokenRevokeOutput, type TokenValidateInput, type TokenValidateOutput, type TokenView, anonRepoSchema, apiKeyViewSchema, commonErrors, compareViewSchema, contract, diffFileSchema, diffViewSchema, gitBlobSchema, gitCommitSchema, gitRefSchema, gitTreeEntrySchema, invitationViewSchema, meViewSchema, memberRoleSchema, memberViewSchema, mutableMemberRoleSchema, orgSlugHint, orgSlugSchema, orgViewSchema, parseAnonIdFile, parseRepoName, repoNameHint, repoNameSchema, repoSchema, scopeSchema, serializeAnonIdRecord, tokenScopeSchema, tokenViewSchema };
|
|
10783
|
+
export { ANON_ID_STORE_VERSION, type AnonIdRecord, type AnonRepoCreateInput, type AnonRepoCreateOutput, type AnonRepoListInput, type AnonRepoListOutput, type AnonRepoView, type AnonTokenMintForGitRemoteInput, type ApiKeyCreateInput, type ApiKeyCreateOutput, type ApiKeyDeleteInput, type ApiKeyDeleteOutput, type ApiKeyListOutput, type ApiKeyView, type CommonErrorMap, type CompareView, Contract, type DiffFile, type DiffView, type GitBlob, type GitCommit, type GitRef, type GitTreeEntry, type InvitationView, type MeView, type MemberRole, type MemberView, type OrgCreateInput, type OrgListOutput, type OrgView, type RepoCreateInput, type RepoCreateOutput, type RepoDeleteOutput, type RepoEnsureInput, type RepoEnsureOutput, type RepoImportInput, type RepoListInput, type RepoListOutput, type RepoUpdateInput, type RepoView, type Scope, type Signature, type TokenListInput, type TokenListOutput, type TokenMintForGitRemoteInput, type TokenMintInput, type TokenMintOutput, type TokenRevokeInput, type TokenRevokeOutput, type TokenValidateInput, type TokenValidateOutput, type TokenView, anonRepoSchema, apiKeyViewSchema, commonErrors, compareViewSchema, contract, diffFileSchema, diffViewSchema, gitBlobSchema, gitCommitSchema, gitRefSchema, gitTreeEntrySchema, invitationViewSchema, meViewSchema, memberRoleSchema, memberViewSchema, mutableMemberRoleSchema, orgSlugHint, orgSlugSchema, orgViewSchema, parseAnonIdFile, parseRepoName, repoNameHint, repoNameSchema, repoSchema, scopeSchema, serializeAnonIdRecord, tokenScopeSchema, tokenViewSchema };
|