@or-sdk/library-types-v2 6.0.16 → 6.0.18
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/CHANGELOG.md +12 -0
- package/dist/cjs/index.js +31 -17
- package/dist/cjs/index.js.map +2 -2
- package/dist/esm/index.js +31 -17
- package/dist/esm/index.js.map +2 -2
- package/dist/types/Packages/response.d.ts +66 -51
- package/package.json +2 -2
|
@@ -141,6 +141,8 @@ export declare const PackageReleaseModelResponse: z.ZodEffects<z.ZodObject<{
|
|
|
141
141
|
}>, "many">>;
|
|
142
142
|
schemaServingType: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaServingType>>;
|
|
143
143
|
schemaVersion: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaVersion>>;
|
|
144
|
+
isPlayground: z.ZodOptional<z.ZodBoolean>;
|
|
145
|
+
baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
144
146
|
}, "strip", z.ZodTypeAny, {
|
|
145
147
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
146
148
|
description?: string;
|
|
@@ -178,6 +180,8 @@ export declare const PackageReleaseModelResponse: z.ZodEffects<z.ZodObject<{
|
|
|
178
180
|
}[];
|
|
179
181
|
schemaServingType?: PackageSchemaServingType;
|
|
180
182
|
schemaVersion?: PackageSchemaVersion;
|
|
183
|
+
isPlayground?: boolean;
|
|
184
|
+
baseUrl?: string;
|
|
181
185
|
}, {
|
|
182
186
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
183
187
|
description?: string;
|
|
@@ -215,6 +219,8 @@ export declare const PackageReleaseModelResponse: z.ZodEffects<z.ZodObject<{
|
|
|
215
219
|
}[];
|
|
216
220
|
schemaServingType?: PackageSchemaServingType;
|
|
217
221
|
schemaVersion?: PackageSchemaVersion;
|
|
222
|
+
isPlayground?: boolean;
|
|
223
|
+
baseUrl?: string;
|
|
218
224
|
}>, {
|
|
219
225
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
220
226
|
description?: string;
|
|
@@ -252,6 +258,8 @@ export declare const PackageReleaseModelResponse: z.ZodEffects<z.ZodObject<{
|
|
|
252
258
|
}[];
|
|
253
259
|
schemaServingType?: PackageSchemaServingType;
|
|
254
260
|
schemaVersion?: PackageSchemaVersion;
|
|
261
|
+
isPlayground?: boolean;
|
|
262
|
+
baseUrl?: string;
|
|
255
263
|
}, {
|
|
256
264
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
257
265
|
description?: string;
|
|
@@ -289,6 +297,8 @@ export declare const PackageReleaseModelResponse: z.ZodEffects<z.ZodObject<{
|
|
|
289
297
|
}[];
|
|
290
298
|
schemaServingType?: PackageSchemaServingType;
|
|
291
299
|
schemaVersion?: PackageSchemaVersion;
|
|
300
|
+
isPlayground?: boolean;
|
|
301
|
+
baseUrl?: string;
|
|
292
302
|
}>;
|
|
293
303
|
export declare const AddPackageResponse: z.ZodObject<{
|
|
294
304
|
packageRelease: z.ZodEffects<z.ZodObject<{
|
|
@@ -395,6 +405,8 @@ export declare const AddPackageResponse: z.ZodObject<{
|
|
|
395
405
|
}>, "many">>;
|
|
396
406
|
schemaServingType: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaServingType>>;
|
|
397
407
|
schemaVersion: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaVersion>>;
|
|
408
|
+
isPlayground: z.ZodOptional<z.ZodBoolean>;
|
|
409
|
+
baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
398
410
|
}, "strip", z.ZodTypeAny, {
|
|
399
411
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
400
412
|
description?: string;
|
|
@@ -432,6 +444,8 @@ export declare const AddPackageResponse: z.ZodObject<{
|
|
|
432
444
|
}[];
|
|
433
445
|
schemaServingType?: PackageSchemaServingType;
|
|
434
446
|
schemaVersion?: PackageSchemaVersion;
|
|
447
|
+
isPlayground?: boolean;
|
|
448
|
+
baseUrl?: string;
|
|
435
449
|
}, {
|
|
436
450
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
437
451
|
description?: string;
|
|
@@ -469,6 +483,8 @@ export declare const AddPackageResponse: z.ZodObject<{
|
|
|
469
483
|
}[];
|
|
470
484
|
schemaServingType?: PackageSchemaServingType;
|
|
471
485
|
schemaVersion?: PackageSchemaVersion;
|
|
486
|
+
isPlayground?: boolean;
|
|
487
|
+
baseUrl?: string;
|
|
472
488
|
}>, {
|
|
473
489
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
474
490
|
description?: string;
|
|
@@ -506,6 +522,8 @@ export declare const AddPackageResponse: z.ZodObject<{
|
|
|
506
522
|
}[];
|
|
507
523
|
schemaServingType?: PackageSchemaServingType;
|
|
508
524
|
schemaVersion?: PackageSchemaVersion;
|
|
525
|
+
isPlayground?: boolean;
|
|
526
|
+
baseUrl?: string;
|
|
509
527
|
}, {
|
|
510
528
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
511
529
|
description?: string;
|
|
@@ -543,36 +561,8 @@ export declare const AddPackageResponse: z.ZodObject<{
|
|
|
543
561
|
}[];
|
|
544
562
|
schemaServingType?: PackageSchemaServingType;
|
|
545
563
|
schemaVersion?: PackageSchemaVersion;
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
type: z.ZodNativeEnum<typeof import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum>;
|
|
549
|
-
id: z.ZodString;
|
|
550
|
-
createdAt: z.ZodUnion<[z.ZodDate, z.ZodString]>;
|
|
551
|
-
updatedAt: z.ZodUnion<[z.ZodDate, z.ZodString]>;
|
|
552
|
-
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodObject<Pick<{
|
|
553
|
-
id: z.ZodNumber;
|
|
554
|
-
accountId: z.ZodString;
|
|
555
|
-
userId: z.ZodString;
|
|
556
|
-
createdAt: z.ZodUnion<[z.ZodDate, z.ZodString]>;
|
|
557
|
-
}, "accountId" | "userId">, "strip", z.ZodTypeAny, {
|
|
558
|
-
accountId?: string;
|
|
559
|
-
userId?: string;
|
|
560
|
-
}, {
|
|
561
|
-
accountId?: string;
|
|
562
|
-
userId?: string;
|
|
563
|
-
}>, z.ZodNullable<z.ZodAny>]>>;
|
|
564
|
-
}, "strip", z.ZodTypeAny, {
|
|
565
|
-
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
566
|
-
id?: string;
|
|
567
|
-
createdAt?: string | Date;
|
|
568
|
-
updatedAt?: string | Date;
|
|
569
|
-
createdBy?: any;
|
|
570
|
-
}, {
|
|
571
|
-
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
572
|
-
id?: string;
|
|
573
|
-
createdAt?: string | Date;
|
|
574
|
-
updatedAt?: string | Date;
|
|
575
|
-
createdBy?: any;
|
|
564
|
+
isPlayground?: boolean;
|
|
565
|
+
baseUrl?: string;
|
|
576
566
|
}>;
|
|
577
567
|
baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
578
568
|
uploadSignature: z.ZodArray<z.ZodObject<{
|
|
@@ -626,13 +616,8 @@ export declare const AddPackageResponse: z.ZodObject<{
|
|
|
626
616
|
}[];
|
|
627
617
|
schemaServingType?: PackageSchemaServingType;
|
|
628
618
|
schemaVersion?: PackageSchemaVersion;
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
632
|
-
id?: string;
|
|
633
|
-
createdAt?: string | Date;
|
|
634
|
-
updatedAt?: string | Date;
|
|
635
|
-
createdBy?: any;
|
|
619
|
+
isPlayground?: boolean;
|
|
620
|
+
baseUrl?: string;
|
|
636
621
|
};
|
|
637
622
|
baseUrl?: string;
|
|
638
623
|
uploadSignature?: {
|
|
@@ -678,13 +663,8 @@ export declare const AddPackageResponse: z.ZodObject<{
|
|
|
678
663
|
}[];
|
|
679
664
|
schemaServingType?: PackageSchemaServingType;
|
|
680
665
|
schemaVersion?: PackageSchemaVersion;
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
684
|
-
id?: string;
|
|
685
|
-
createdAt?: string | Date;
|
|
686
|
-
updatedAt?: string | Date;
|
|
687
|
-
createdBy?: any;
|
|
666
|
+
isPlayground?: boolean;
|
|
667
|
+
baseUrl?: string;
|
|
688
668
|
};
|
|
689
669
|
baseUrl?: string;
|
|
690
670
|
uploadSignature?: {
|
|
@@ -724,6 +704,7 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
724
704
|
total?: number;
|
|
725
705
|
}>, "many">;
|
|
726
706
|
total: z.ZodNumber;
|
|
707
|
+
itemsTotal: z.ZodNumber;
|
|
727
708
|
items: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
728
709
|
type: z.ZodNativeEnum<typeof import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum>;
|
|
729
710
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -828,6 +809,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
828
809
|
}>, "many">>;
|
|
829
810
|
schemaServingType: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaServingType>>;
|
|
830
811
|
schemaVersion: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaVersion>>;
|
|
812
|
+
isPlayground: z.ZodOptional<z.ZodBoolean>;
|
|
813
|
+
baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
831
814
|
}, "strip", z.ZodTypeAny, {
|
|
832
815
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
833
816
|
description?: string;
|
|
@@ -865,6 +848,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
865
848
|
}[];
|
|
866
849
|
schemaServingType?: PackageSchemaServingType;
|
|
867
850
|
schemaVersion?: PackageSchemaVersion;
|
|
851
|
+
isPlayground?: boolean;
|
|
852
|
+
baseUrl?: string;
|
|
868
853
|
}, {
|
|
869
854
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
870
855
|
description?: string;
|
|
@@ -902,6 +887,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
902
887
|
}[];
|
|
903
888
|
schemaServingType?: PackageSchemaServingType;
|
|
904
889
|
schemaVersion?: PackageSchemaVersion;
|
|
890
|
+
isPlayground?: boolean;
|
|
891
|
+
baseUrl?: string;
|
|
905
892
|
}>, {
|
|
906
893
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
907
894
|
description?: string;
|
|
@@ -939,6 +926,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
939
926
|
}[];
|
|
940
927
|
schemaServingType?: PackageSchemaServingType;
|
|
941
928
|
schemaVersion?: PackageSchemaVersion;
|
|
929
|
+
isPlayground?: boolean;
|
|
930
|
+
baseUrl?: string;
|
|
942
931
|
}, {
|
|
943
932
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
944
933
|
description?: string;
|
|
@@ -976,6 +965,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
976
965
|
}[];
|
|
977
966
|
schemaServingType?: PackageSchemaServingType;
|
|
978
967
|
schemaVersion?: PackageSchemaVersion;
|
|
968
|
+
isPlayground?: boolean;
|
|
969
|
+
baseUrl?: string;
|
|
979
970
|
}>, "many">;
|
|
980
971
|
}, "strip", z.ZodTypeAny, {
|
|
981
972
|
cursor?: z.objectOutputType<{
|
|
@@ -990,6 +981,7 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
990
981
|
total?: number;
|
|
991
982
|
}[];
|
|
992
983
|
total?: number;
|
|
984
|
+
itemsTotal?: number;
|
|
993
985
|
items?: {
|
|
994
986
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
995
987
|
description?: string;
|
|
@@ -1027,6 +1019,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
1027
1019
|
}[];
|
|
1028
1020
|
schemaServingType?: PackageSchemaServingType;
|
|
1029
1021
|
schemaVersion?: PackageSchemaVersion;
|
|
1022
|
+
isPlayground?: boolean;
|
|
1023
|
+
baseUrl?: string;
|
|
1030
1024
|
}[];
|
|
1031
1025
|
}, {
|
|
1032
1026
|
cursor?: z.objectInputType<{
|
|
@@ -1041,6 +1035,7 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
1041
1035
|
total?: number;
|
|
1042
1036
|
}[];
|
|
1043
1037
|
total?: number;
|
|
1038
|
+
itemsTotal?: number;
|
|
1044
1039
|
items?: {
|
|
1045
1040
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1046
1041
|
description?: string;
|
|
@@ -1078,6 +1073,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
1078
1073
|
}[];
|
|
1079
1074
|
schemaServingType?: PackageSchemaServingType;
|
|
1080
1075
|
schemaVersion?: PackageSchemaVersion;
|
|
1076
|
+
isPlayground?: boolean;
|
|
1077
|
+
baseUrl?: string;
|
|
1081
1078
|
}[];
|
|
1082
1079
|
}>;
|
|
1083
1080
|
export declare const GetPackageResponse: z.ZodObject<{
|
|
@@ -1201,6 +1198,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1201
1198
|
}>, "many">>;
|
|
1202
1199
|
schemaServingType: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaServingType>>;
|
|
1203
1200
|
schemaVersion: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaVersion>>;
|
|
1201
|
+
isPlayground: z.ZodOptional<z.ZodBoolean>;
|
|
1202
|
+
baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1204
1203
|
}, "strip", z.ZodTypeAny, {
|
|
1205
1204
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1206
1205
|
description?: string;
|
|
@@ -1238,6 +1237,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1238
1237
|
}[];
|
|
1239
1238
|
schemaServingType?: PackageSchemaServingType;
|
|
1240
1239
|
schemaVersion?: PackageSchemaVersion;
|
|
1240
|
+
isPlayground?: boolean;
|
|
1241
|
+
baseUrl?: string;
|
|
1241
1242
|
}, {
|
|
1242
1243
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1243
1244
|
description?: string;
|
|
@@ -1275,6 +1276,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1275
1276
|
}[];
|
|
1276
1277
|
schemaServingType?: PackageSchemaServingType;
|
|
1277
1278
|
schemaVersion?: PackageSchemaVersion;
|
|
1279
|
+
isPlayground?: boolean;
|
|
1280
|
+
baseUrl?: string;
|
|
1278
1281
|
}>, {
|
|
1279
1282
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1280
1283
|
description?: string;
|
|
@@ -1312,6 +1315,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1312
1315
|
}[];
|
|
1313
1316
|
schemaServingType?: PackageSchemaServingType;
|
|
1314
1317
|
schemaVersion?: PackageSchemaVersion;
|
|
1318
|
+
isPlayground?: boolean;
|
|
1319
|
+
baseUrl?: string;
|
|
1315
1320
|
}, {
|
|
1316
1321
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1317
1322
|
description?: string;
|
|
@@ -1349,6 +1354,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1349
1354
|
}[];
|
|
1350
1355
|
schemaServingType?: PackageSchemaServingType;
|
|
1351
1356
|
schemaVersion?: PackageSchemaVersion;
|
|
1357
|
+
isPlayground?: boolean;
|
|
1358
|
+
baseUrl?: string;
|
|
1352
1359
|
}>, "many">;
|
|
1353
1360
|
}, "strip", z.ZodTypeAny, {
|
|
1354
1361
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
@@ -1393,6 +1400,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1393
1400
|
}[];
|
|
1394
1401
|
schemaServingType?: PackageSchemaServingType;
|
|
1395
1402
|
schemaVersion?: PackageSchemaVersion;
|
|
1403
|
+
isPlayground?: boolean;
|
|
1404
|
+
baseUrl?: string;
|
|
1396
1405
|
}[];
|
|
1397
1406
|
}, {
|
|
1398
1407
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
@@ -1437,9 +1446,11 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1437
1446
|
}[];
|
|
1438
1447
|
schemaServingType?: PackageSchemaServingType;
|
|
1439
1448
|
schemaVersion?: PackageSchemaVersion;
|
|
1449
|
+
isPlayground?: boolean;
|
|
1450
|
+
baseUrl?: string;
|
|
1440
1451
|
}[];
|
|
1441
1452
|
}>;
|
|
1442
|
-
export declare const GetPackageReleaseResponse: z.
|
|
1453
|
+
export declare const GetPackageReleaseResponse: z.ZodEffects<z.ZodObject<{
|
|
1443
1454
|
type: z.ZodNativeEnum<typeof import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum>;
|
|
1444
1455
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1445
1456
|
version: z.ZodString;
|
|
@@ -1543,6 +1554,8 @@ export declare const GetPackageReleaseResponse: z.ZodIntersection<z.ZodEffects<z
|
|
|
1543
1554
|
}>, "many">>;
|
|
1544
1555
|
schemaServingType: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaServingType>>;
|
|
1545
1556
|
schemaVersion: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaVersion>>;
|
|
1557
|
+
isPlayground: z.ZodOptional<z.ZodBoolean>;
|
|
1558
|
+
baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1546
1559
|
}, "strip", z.ZodTypeAny, {
|
|
1547
1560
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1548
1561
|
description?: string;
|
|
@@ -1580,6 +1593,8 @@ export declare const GetPackageReleaseResponse: z.ZodIntersection<z.ZodEffects<z
|
|
|
1580
1593
|
}[];
|
|
1581
1594
|
schemaServingType?: PackageSchemaServingType;
|
|
1582
1595
|
schemaVersion?: PackageSchemaVersion;
|
|
1596
|
+
isPlayground?: boolean;
|
|
1597
|
+
baseUrl?: string;
|
|
1583
1598
|
}, {
|
|
1584
1599
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1585
1600
|
description?: string;
|
|
@@ -1617,6 +1632,8 @@ export declare const GetPackageReleaseResponse: z.ZodIntersection<z.ZodEffects<z
|
|
|
1617
1632
|
}[];
|
|
1618
1633
|
schemaServingType?: PackageSchemaServingType;
|
|
1619
1634
|
schemaVersion?: PackageSchemaVersion;
|
|
1635
|
+
isPlayground?: boolean;
|
|
1636
|
+
baseUrl?: string;
|
|
1620
1637
|
}>, {
|
|
1621
1638
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1622
1639
|
description?: string;
|
|
@@ -1654,6 +1671,8 @@ export declare const GetPackageReleaseResponse: z.ZodIntersection<z.ZodEffects<z
|
|
|
1654
1671
|
}[];
|
|
1655
1672
|
schemaServingType?: PackageSchemaServingType;
|
|
1656
1673
|
schemaVersion?: PackageSchemaVersion;
|
|
1674
|
+
isPlayground?: boolean;
|
|
1675
|
+
baseUrl?: string;
|
|
1657
1676
|
}, {
|
|
1658
1677
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1659
1678
|
description?: string;
|
|
@@ -1691,13 +1710,9 @@ export declare const GetPackageReleaseResponse: z.ZodIntersection<z.ZodEffects<z
|
|
|
1691
1710
|
}[];
|
|
1692
1711
|
schemaServingType?: PackageSchemaServingType;
|
|
1693
1712
|
schemaVersion?: PackageSchemaVersion;
|
|
1694
|
-
|
|
1695
|
-
baseUrl: z.ZodString;
|
|
1696
|
-
}, "strip", z.ZodTypeAny, {
|
|
1713
|
+
isPlayground?: boolean;
|
|
1697
1714
|
baseUrl?: string;
|
|
1698
|
-
}
|
|
1699
|
-
baseUrl?: string;
|
|
1700
|
-
}>>;
|
|
1715
|
+
}>;
|
|
1701
1716
|
export declare const GetPackageArchiveSignedUrl: z.ZodObject<{
|
|
1702
1717
|
key: z.ZodString;
|
|
1703
1718
|
url: z.ZodString;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/library-types-v2",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.18",
|
|
4
4
|
"description": "Request/response v2 types for the OR SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"./dist",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"nestjs-zod": "3.0.0",
|
|
22
22
|
"zod": "3.22.4",
|
|
23
|
-
"@or-sdk/library-prisma": "6.0.
|
|
23
|
+
"@or-sdk/library-prisma": "6.0.11"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build:nest": "npx ts-node ./esbuild.nest.ts",
|