@or-sdk/library-types-v2 7.0.0 → 7.0.1

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.
@@ -43,7 +43,7 @@ export declare enum PackageStatusDetailsLevelEnum {
43
43
  PDE = "PDE"
44
44
  }
45
45
  export declare const PackageMeta: z.ZodObject<{
46
- categories: z.ZodArray<z.ZodString, "many">;
46
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
47
47
  description: z.ZodString;
48
48
  version: z.ZodString;
49
49
  id: z.ZodString;
@@ -54,7 +54,7 @@ export declare const PackageMeta: z.ZodObject<{
54
54
  shape: z.ZodOptional<z.ZodString>;
55
55
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
56
56
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
57
- categories: z.ZodArray<z.ZodString, "many">;
57
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
58
58
  description: z.ZodString;
59
59
  version: z.ZodString;
60
60
  id: z.ZodString;
@@ -65,7 +65,7 @@ export declare const PackageMeta: z.ZodObject<{
65
65
  shape: z.ZodOptional<z.ZodString>;
66
66
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
67
67
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
68
- categories: z.ZodArray<z.ZodString, "many">;
68
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
69
69
  description: z.ZodString;
70
70
  version: z.ZodString;
71
71
  id: z.ZodString;
@@ -89,7 +89,7 @@ export declare const AddPackageBody: z.ZodEffects<z.ZodObject<{
89
89
  schemaType: z.ZodNativeEnum<typeof PackageSchemaTypeEnum>;
90
90
  data: z.ZodNullable<z.ZodOptional<z.ZodAny>>;
91
91
  meta: z.ZodObject<{
92
- categories: z.ZodArray<z.ZodString, "many">;
92
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
93
93
  description: z.ZodString;
94
94
  version: z.ZodString;
95
95
  id: z.ZodString;
@@ -100,7 +100,7 @@ export declare const AddPackageBody: z.ZodEffects<z.ZodObject<{
100
100
  shape: z.ZodOptional<z.ZodString>;
101
101
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
102
102
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
103
- categories: z.ZodArray<z.ZodString, "many">;
103
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
104
104
  description: z.ZodString;
105
105
  version: z.ZodString;
106
106
  id: z.ZodString;
@@ -111,7 +111,7 @@ export declare const AddPackageBody: z.ZodEffects<z.ZodObject<{
111
111
  shape: z.ZodOptional<z.ZodString>;
112
112
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
113
113
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
114
- categories: z.ZodArray<z.ZodString, "many">;
114
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
115
115
  description: z.ZodString;
116
116
  version: z.ZodString;
117
117
  id: z.ZodString;
@@ -123,7 +123,7 @@ export declare const AddPackageBody: z.ZodEffects<z.ZodObject<{
123
123
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
124
124
  }, z.ZodTypeAny, "passthrough">>;
125
125
  fileNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
126
- categories: z.ZodArray<z.ZodString, "many">;
126
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
127
127
  statusDetailsSystem: z.ZodOptional<z.ZodObject<Pick<{
128
128
  id: z.ZodNumber;
129
129
  status: z.ZodNativeEnum<typeof PackageStatusDetailsStatusEnum>;
@@ -166,8 +166,8 @@ export declare const AddPackageBody: z.ZodEffects<z.ZodObject<{
166
166
  level: PackageStatusDetailsLevelEnum;
167
167
  }>;
168
168
  }, "strip", z.ZodTypeAny, {
169
- categories: string[];
170
169
  type: PackageTypeEnum;
170
+ categories: string[];
171
171
  version: string;
172
172
  id: string;
173
173
  label: string;
@@ -201,18 +201,17 @@ export declare const AddPackageBody: z.ZodEffects<z.ZodObject<{
201
201
  status: PackageStatusDetailsStatusEnum;
202
202
  } | undefined;
203
203
  }, {
204
- categories: string[];
205
204
  type: PackageTypeEnum;
206
205
  version: string;
207
206
  id: string;
208
207
  label: string;
209
208
  revisionId: string;
210
209
  meta: {
211
- categories: string[];
212
210
  description: string;
213
211
  version: string;
214
212
  id: string;
215
213
  label: string;
214
+ categories?: string[] | undefined;
216
215
  icon?: string | undefined;
217
216
  iconType?: string | undefined;
218
217
  recommendedSteps?: string[] | undefined;
@@ -232,12 +231,13 @@ export declare const AddPackageBody: z.ZodEffects<z.ZodObject<{
232
231
  releaseNotesMarkdown?: string | null | undefined;
233
232
  data?: any;
234
233
  fileNames?: string[] | undefined;
234
+ categories?: string[] | undefined;
235
235
  statusDetailsSystem?: {
236
236
  status: PackageStatusDetailsStatusEnum;
237
237
  } | undefined;
238
238
  }>, {
239
- categories: string[];
240
239
  type: PackageTypeEnum;
240
+ categories: string[];
241
241
  version: string;
242
242
  id: string;
243
243
  label: string;
@@ -271,18 +271,17 @@ export declare const AddPackageBody: z.ZodEffects<z.ZodObject<{
271
271
  status: PackageStatusDetailsStatusEnum;
272
272
  } | undefined;
273
273
  }, {
274
- categories: string[];
275
274
  type: PackageTypeEnum;
276
275
  version: string;
277
276
  id: string;
278
277
  label: string;
279
278
  revisionId: string;
280
279
  meta: {
281
- categories: string[];
282
280
  description: string;
283
281
  version: string;
284
282
  id: string;
285
283
  label: string;
284
+ categories?: string[] | undefined;
286
285
  icon?: string | undefined;
287
286
  iconType?: string | undefined;
288
287
  recommendedSteps?: string[] | undefined;
@@ -302,18 +301,19 @@ export declare const AddPackageBody: z.ZodEffects<z.ZodObject<{
302
301
  releaseNotesMarkdown?: string | null | undefined;
303
302
  data?: any;
304
303
  fileNames?: string[] | undefined;
304
+ categories?: string[] | undefined;
305
305
  statusDetailsSystem?: {
306
306
  status: PackageStatusDetailsStatusEnum;
307
307
  } | undefined;
308
308
  }>;
309
309
  export declare const UpdatePackageByRevisionBody: z.ZodObject<{
310
- categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
310
+ categories: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
311
311
  description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
312
312
  label: z.ZodOptional<z.ZodString>;
313
313
  membersAccountIds: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
314
314
  membersUserIds: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
315
315
  meta: z.ZodOptional<z.ZodObject<{
316
- categories: z.ZodArray<z.ZodString, "many">;
316
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
317
317
  description: z.ZodString;
318
318
  version: z.ZodString;
319
319
  id: z.ZodString;
@@ -324,7 +324,7 @@ export declare const UpdatePackageByRevisionBody: z.ZodObject<{
324
324
  shape: z.ZodOptional<z.ZodString>;
325
325
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
326
326
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
327
- categories: z.ZodArray<z.ZodString, "many">;
327
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
328
328
  description: z.ZodString;
329
329
  version: z.ZodString;
330
330
  id: z.ZodString;
@@ -335,7 +335,7 @@ export declare const UpdatePackageByRevisionBody: z.ZodObject<{
335
335
  shape: z.ZodOptional<z.ZodString>;
336
336
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
337
337
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
338
- categories: z.ZodArray<z.ZodString, "many">;
338
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
339
339
  description: z.ZodString;
340
340
  version: z.ZodString;
341
341
  id: z.ZodString;
@@ -354,7 +354,7 @@ export declare const UpdatePackageByRevisionBody: z.ZodObject<{
354
354
  membersAccountIds?: string[] | undefined;
355
355
  membersUserIds?: string[] | undefined;
356
356
  meta?: z.objectOutputType<{
357
- categories: z.ZodArray<z.ZodString, "many">;
357
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
358
358
  description: z.ZodString;
359
359
  version: z.ZodString;
360
360
  id: z.ZodString;
@@ -373,7 +373,7 @@ export declare const UpdatePackageByRevisionBody: z.ZodObject<{
373
373
  membersAccountIds?: string[] | undefined;
374
374
  membersUserIds?: string[] | undefined;
375
375
  meta?: z.objectInputType<{
376
- categories: z.ZodArray<z.ZodString, "many">;
376
+ categories: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
377
377
  description: z.ZodString;
378
378
  version: z.ZodString;
379
379
  id: z.ZodString;
@@ -405,12 +405,12 @@ export declare const AddPackageDependenciesBody: z.ZodObject<{
405
405
  value: z.ZodString;
406
406
  id: z.ZodOptional<z.ZodString>;
407
407
  }, "strip", z.ZodTypeAny, {
408
- value: string;
409
408
  type: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
409
+ value: string;
410
410
  id?: string | undefined;
411
411
  }, {
412
- value: string;
413
412
  type: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
413
+ value: string;
414
414
  id?: string | undefined;
415
415
  }>;
416
416
  export declare enum PackageSchemaServingType {
@@ -606,11 +606,11 @@ export declare const PackageReleaseModelResponse: z.ZodEffects<z.ZodObject<{
606
606
  isPlayground: z.ZodOptional<z.ZodBoolean>;
607
607
  baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
608
608
  }, "strip", z.ZodTypeAny, {
609
+ type: PackageTypeEnum;
609
610
  categories: {
610
611
  id: string;
611
612
  name: string;
612
613
  }[];
613
- type: PackageTypeEnum;
614
614
  version: string;
615
615
  id: string;
616
616
  label: string;
@@ -645,11 +645,11 @@ export declare const PackageReleaseModelResponse: z.ZodEffects<z.ZodObject<{
645
645
  isPlayground?: boolean | undefined;
646
646
  baseUrl?: string | null | undefined;
647
647
  }, {
648
+ type: PackageTypeEnum;
648
649
  categories: {
649
650
  id: string;
650
651
  name: string;
651
652
  }[];
652
- type: PackageTypeEnum;
653
653
  version: string;
654
654
  id: string;
655
655
  label: string;
@@ -684,11 +684,11 @@ export declare const PackageReleaseModelResponse: z.ZodEffects<z.ZodObject<{
684
684
  isPlayground?: boolean | undefined;
685
685
  baseUrl?: string | null | undefined;
686
686
  }>, {
687
+ type: PackageTypeEnum;
687
688
  categories: {
688
689
  id: string;
689
690
  name: string;
690
691
  }[];
691
- type: PackageTypeEnum;
692
692
  version: string;
693
693
  id: string;
694
694
  label: string;
@@ -723,11 +723,11 @@ export declare const PackageReleaseModelResponse: z.ZodEffects<z.ZodObject<{
723
723
  isPlayground?: boolean | undefined;
724
724
  baseUrl?: string | null | undefined;
725
725
  }, {
726
+ type: PackageTypeEnum;
726
727
  categories: {
727
728
  id: string;
728
729
  name: string;
729
730
  }[];
730
- type: PackageTypeEnum;
731
731
  version: string;
732
732
  id: string;
733
733
  label: string;
@@ -906,11 +906,11 @@ export declare const AddPackageResponse: z.ZodObject<{
906
906
  isPlayground: z.ZodOptional<z.ZodBoolean>;
907
907
  baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
908
908
  }, "strip", z.ZodTypeAny, {
909
+ type: PackageTypeEnum;
909
910
  categories: {
910
911
  id: string;
911
912
  name: string;
912
913
  }[];
913
- type: PackageTypeEnum;
914
914
  version: string;
915
915
  id: string;
916
916
  label: string;
@@ -945,11 +945,11 @@ export declare const AddPackageResponse: z.ZodObject<{
945
945
  isPlayground?: boolean | undefined;
946
946
  baseUrl?: string | null | undefined;
947
947
  }, {
948
+ type: PackageTypeEnum;
948
949
  categories: {
949
950
  id: string;
950
951
  name: string;
951
952
  }[];
952
- type: PackageTypeEnum;
953
953
  version: string;
954
954
  id: string;
955
955
  label: string;
@@ -984,11 +984,11 @@ export declare const AddPackageResponse: z.ZodObject<{
984
984
  isPlayground?: boolean | undefined;
985
985
  baseUrl?: string | null | undefined;
986
986
  }>, {
987
+ type: PackageTypeEnum;
987
988
  categories: {
988
989
  id: string;
989
990
  name: string;
990
991
  }[];
991
- type: PackageTypeEnum;
992
992
  version: string;
993
993
  id: string;
994
994
  label: string;
@@ -1023,11 +1023,11 @@ export declare const AddPackageResponse: z.ZodObject<{
1023
1023
  isPlayground?: boolean | undefined;
1024
1024
  baseUrl?: string | null | undefined;
1025
1025
  }, {
1026
+ type: PackageTypeEnum;
1026
1027
  categories: {
1027
1028
  id: string;
1028
1029
  name: string;
1029
1030
  }[];
1030
- type: PackageTypeEnum;
1031
1031
  version: string;
1032
1032
  id: string;
1033
1033
  label: string;
@@ -1077,11 +1077,11 @@ export declare const AddPackageResponse: z.ZodObject<{
1077
1077
  }>, "many">;
1078
1078
  }, "strip", z.ZodTypeAny, {
1079
1079
  packageRelease: {
1080
+ type: PackageTypeEnum;
1080
1081
  categories: {
1081
1082
  id: string;
1082
1083
  name: string;
1083
1084
  }[];
1084
- type: PackageTypeEnum;
1085
1085
  version: string;
1086
1086
  id: string;
1087
1087
  label: string;
@@ -1123,11 +1123,11 @@ export declare const AddPackageResponse: z.ZodObject<{
1123
1123
  }[];
1124
1124
  }, {
1125
1125
  packageRelease: {
1126
+ type: PackageTypeEnum;
1126
1127
  categories: {
1127
1128
  id: string;
1128
1129
  name: string;
1129
1130
  }[];
1130
- type: PackageTypeEnum;
1131
1131
  version: string;
1132
1132
  id: string;
1133
1133
  label: string;
@@ -1343,11 +1343,11 @@ export declare const GetPackagesListResponse: z.ZodObject<{
1343
1343
  isPlayground: z.ZodOptional<z.ZodBoolean>;
1344
1344
  baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1345
1345
  }, "strip", z.ZodTypeAny, {
1346
+ type: PackageTypeEnum;
1346
1347
  categories: {
1347
1348
  id: string;
1348
1349
  name: string;
1349
1350
  }[];
1350
- type: PackageTypeEnum;
1351
1351
  version: string;
1352
1352
  id: string;
1353
1353
  label: string;
@@ -1382,11 +1382,11 @@ export declare const GetPackagesListResponse: z.ZodObject<{
1382
1382
  isPlayground?: boolean | undefined;
1383
1383
  baseUrl?: string | null | undefined;
1384
1384
  }, {
1385
+ type: PackageTypeEnum;
1385
1386
  categories: {
1386
1387
  id: string;
1387
1388
  name: string;
1388
1389
  }[];
1389
- type: PackageTypeEnum;
1390
1390
  version: string;
1391
1391
  id: string;
1392
1392
  label: string;
@@ -1421,11 +1421,11 @@ export declare const GetPackagesListResponse: z.ZodObject<{
1421
1421
  isPlayground?: boolean | undefined;
1422
1422
  baseUrl?: string | null | undefined;
1423
1423
  }>, {
1424
+ type: PackageTypeEnum;
1424
1425
  categories: {
1425
1426
  id: string;
1426
1427
  name: string;
1427
1428
  }[];
1428
- type: PackageTypeEnum;
1429
1429
  version: string;
1430
1430
  id: string;
1431
1431
  label: string;
@@ -1460,11 +1460,11 @@ export declare const GetPackagesListResponse: z.ZodObject<{
1460
1460
  isPlayground?: boolean | undefined;
1461
1461
  baseUrl?: string | null | undefined;
1462
1462
  }, {
1463
+ type: PackageTypeEnum;
1463
1464
  categories: {
1464
1465
  id: string;
1465
1466
  name: string;
1466
1467
  }[];
1467
- type: PackageTypeEnum;
1468
1468
  version: string;
1469
1469
  id: string;
1470
1470
  label: string;
@@ -1506,11 +1506,11 @@ export declare const GetPackagesListResponse: z.ZodObject<{
1506
1506
  name: string;
1507
1507
  }[];
1508
1508
  items: {
1509
+ type: PackageTypeEnum;
1509
1510
  categories: {
1510
1511
  id: string;
1511
1512
  name: string;
1512
1513
  }[];
1513
- type: PackageTypeEnum;
1514
1514
  version: string;
1515
1515
  id: string;
1516
1516
  label: string;
@@ -1562,11 +1562,11 @@ export declare const GetPackagesListResponse: z.ZodObject<{
1562
1562
  name: string;
1563
1563
  }[];
1564
1564
  items: {
1565
+ type: PackageTypeEnum;
1565
1566
  categories: {
1566
1567
  id: string;
1567
1568
  name: string;
1568
1569
  }[];
1569
- type: PackageTypeEnum;
1570
1570
  version: string;
1571
1571
  id: string;
1572
1572
  label: string;
@@ -1784,11 +1784,11 @@ export declare const GetPackageResponse: z.ZodObject<{
1784
1784
  isPlayground: z.ZodOptional<z.ZodBoolean>;
1785
1785
  baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1786
1786
  }, "strip", z.ZodTypeAny, {
1787
+ type: PackageTypeEnum;
1787
1788
  categories: {
1788
1789
  id: string;
1789
1790
  name: string;
1790
1791
  }[];
1791
- type: PackageTypeEnum;
1792
1792
  version: string;
1793
1793
  id: string;
1794
1794
  label: string;
@@ -1823,11 +1823,11 @@ export declare const GetPackageResponse: z.ZodObject<{
1823
1823
  isPlayground?: boolean | undefined;
1824
1824
  baseUrl?: string | null | undefined;
1825
1825
  }, {
1826
+ type: PackageTypeEnum;
1826
1827
  categories: {
1827
1828
  id: string;
1828
1829
  name: string;
1829
1830
  }[];
1830
- type: PackageTypeEnum;
1831
1831
  version: string;
1832
1832
  id: string;
1833
1833
  label: string;
@@ -1862,11 +1862,11 @@ export declare const GetPackageResponse: z.ZodObject<{
1862
1862
  isPlayground?: boolean | undefined;
1863
1863
  baseUrl?: string | null | undefined;
1864
1864
  }>, {
1865
+ type: PackageTypeEnum;
1865
1866
  categories: {
1866
1867
  id: string;
1867
1868
  name: string;
1868
1869
  }[];
1869
- type: PackageTypeEnum;
1870
1870
  version: string;
1871
1871
  id: string;
1872
1872
  label: string;
@@ -1901,11 +1901,11 @@ export declare const GetPackageResponse: z.ZodObject<{
1901
1901
  isPlayground?: boolean | undefined;
1902
1902
  baseUrl?: string | null | undefined;
1903
1903
  }, {
1904
+ type: PackageTypeEnum;
1904
1905
  categories: {
1905
1906
  id: string;
1906
1907
  name: string;
1907
1908
  }[];
1908
- type: PackageTypeEnum;
1909
1909
  version: string;
1910
1910
  id: string;
1911
1911
  label: string;
@@ -1946,11 +1946,11 @@ export declare const GetPackageResponse: z.ZodObject<{
1946
1946
  createdAt: (string | Date) & (string | Date | undefined);
1947
1947
  updatedAt: (string | Date) & (string | Date | undefined);
1948
1948
  releases: {
1949
+ type: PackageTypeEnum;
1949
1950
  categories: {
1950
1951
  id: string;
1951
1952
  name: string;
1952
1953
  }[];
1953
- type: PackageTypeEnum;
1954
1954
  version: string;
1955
1955
  id: string;
1956
1956
  label: string;
@@ -1992,11 +1992,11 @@ export declare const GetPackageResponse: z.ZodObject<{
1992
1992
  createdAt: (string | Date) & (string | Date | undefined);
1993
1993
  updatedAt: (string | Date) & (string | Date | undefined);
1994
1994
  releases: {
1995
+ type: PackageTypeEnum;
1995
1996
  categories: {
1996
1997
  id: string;
1997
1998
  name: string;
1998
1999
  }[];
1999
- type: PackageTypeEnum;
2000
2000
  version: string;
2001
2001
  id: string;
2002
2002
  label: string;
@@ -2176,11 +2176,11 @@ export declare const GetPackageReleaseResponse: z.ZodEffects<z.ZodObject<{
2176
2176
  isPlayground: z.ZodOptional<z.ZodBoolean>;
2177
2177
  baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2178
2178
  }, "strip", z.ZodTypeAny, {
2179
+ type: PackageTypeEnum;
2179
2180
  categories: {
2180
2181
  id: string;
2181
2182
  name: string;
2182
2183
  }[];
2183
- type: PackageTypeEnum;
2184
2184
  version: string;
2185
2185
  id: string;
2186
2186
  label: string;
@@ -2215,11 +2215,11 @@ export declare const GetPackageReleaseResponse: z.ZodEffects<z.ZodObject<{
2215
2215
  isPlayground?: boolean | undefined;
2216
2216
  baseUrl?: string | null | undefined;
2217
2217
  }, {
2218
+ type: PackageTypeEnum;
2218
2219
  categories: {
2219
2220
  id: string;
2220
2221
  name: string;
2221
2222
  }[];
2222
- type: PackageTypeEnum;
2223
2223
  version: string;
2224
2224
  id: string;
2225
2225
  label: string;
@@ -2254,11 +2254,11 @@ export declare const GetPackageReleaseResponse: z.ZodEffects<z.ZodObject<{
2254
2254
  isPlayground?: boolean | undefined;
2255
2255
  baseUrl?: string | null | undefined;
2256
2256
  }>, {
2257
+ type: PackageTypeEnum;
2257
2258
  categories: {
2258
2259
  id: string;
2259
2260
  name: string;
2260
2261
  }[];
2261
- type: PackageTypeEnum;
2262
2262
  version: string;
2263
2263
  id: string;
2264
2264
  label: string;
@@ -2293,11 +2293,11 @@ export declare const GetPackageReleaseResponse: z.ZodEffects<z.ZodObject<{
2293
2293
  isPlayground?: boolean | undefined;
2294
2294
  baseUrl?: string | null | undefined;
2295
2295
  }, {
2296
+ type: PackageTypeEnum;
2296
2297
  categories: {
2297
2298
  id: string;
2298
2299
  name: string;
2299
2300
  }[];
2300
- type: PackageTypeEnum;
2301
2301
  version: string;
2302
2302
  id: string;
2303
2303
  label: string;
@@ -2473,14 +2473,14 @@ export declare const AddPackageReleaseSystemStatusParams: z.ZodObject<{
2473
2473
  DEPRECATED: "DEPRECATED";
2474
2474
  }>;
2475
2475
  }, "strip", z.ZodTypeAny, {
2476
- status: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
2477
2476
  type: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
2477
+ status: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
2478
2478
  id: string;
2479
2479
  version?: string | undefined;
2480
2480
  revisionId?: string | undefined;
2481
2481
  }, {
2482
- status: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
2483
2482
  type: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
2483
+ status: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
2484
2484
  id: string;
2485
2485
  version?: string | undefined;
2486
2486
  revisionId?: string | undefined;
@@ -2520,15 +2520,15 @@ export declare const AddPackageReleaseReleaseStatusParams: z.ZodObject<{
2520
2520
  PDE: "PDE";
2521
2521
  }>;
2522
2522
  }, "strip", z.ZodTypeAny, {
2523
- status: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
2524
2523
  type: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
2524
+ status: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
2525
2525
  id: string;
2526
2526
  level: "USER" | "ACCOUNT" | "PDE";
2527
2527
  version?: string | undefined;
2528
2528
  revisionId?: string | undefined;
2529
2529
  }, {
2530
- status: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
2531
2530
  type: "BOT_TEMPLATE" | "CONTENT" | "CONTENT_INPUT" | "FLOW_TEMPLATE" | "NPM_UNPACKED" | "RWC_INPUT" | "S3_BUCKET" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "TEST_ONLY" | "TICKET_INPUT" | "UNKNOWN";
2531
+ status: "TEST_ONLY" | "PENDING" | "EXTRACTING" | "UPLOADED" | "BETA" | "RELEASED" | "ACCOUNT_BETA" | "DEPRECATED";
2532
2532
  id: string;
2533
2533
  level: "USER" | "ACCOUNT" | "PDE";
2534
2534
  version?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/library-types-v2",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "Request/response v2 types for the OR SDK",
5
5
  "files": [
6
6
  "./dist/browser",
@@ -35,7 +35,7 @@
35
35
  "zod": "3.22.4"
36
36
  },
37
37
  "devDependencies": {
38
- "@or-sdk/library-prisma": "7.0.0"
38
+ "@or-sdk/library-prisma": "7.0.1"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "pnpm run build:nest && pnpm run build:browser",