@or-sdk/library-types-v2 6.0.17 → 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 +6 -0
- package/dist/cjs/index.js +29 -16
- package/dist/cjs/index.js.map +2 -2
- package/dist/esm/index.js +29 -16
- package/dist/esm/index.js.map +2 -2
- package/dist/types/Packages/response.d.ts +63 -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?: {
|
|
@@ -829,6 +809,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
829
809
|
}>, "many">>;
|
|
830
810
|
schemaServingType: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaServingType>>;
|
|
831
811
|
schemaVersion: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaVersion>>;
|
|
812
|
+
isPlayground: z.ZodOptional<z.ZodBoolean>;
|
|
813
|
+
baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
832
814
|
}, "strip", z.ZodTypeAny, {
|
|
833
815
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
834
816
|
description?: string;
|
|
@@ -866,6 +848,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
866
848
|
}[];
|
|
867
849
|
schemaServingType?: PackageSchemaServingType;
|
|
868
850
|
schemaVersion?: PackageSchemaVersion;
|
|
851
|
+
isPlayground?: boolean;
|
|
852
|
+
baseUrl?: string;
|
|
869
853
|
}, {
|
|
870
854
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
871
855
|
description?: string;
|
|
@@ -903,6 +887,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
903
887
|
}[];
|
|
904
888
|
schemaServingType?: PackageSchemaServingType;
|
|
905
889
|
schemaVersion?: PackageSchemaVersion;
|
|
890
|
+
isPlayground?: boolean;
|
|
891
|
+
baseUrl?: string;
|
|
906
892
|
}>, {
|
|
907
893
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
908
894
|
description?: string;
|
|
@@ -940,6 +926,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
940
926
|
}[];
|
|
941
927
|
schemaServingType?: PackageSchemaServingType;
|
|
942
928
|
schemaVersion?: PackageSchemaVersion;
|
|
929
|
+
isPlayground?: boolean;
|
|
930
|
+
baseUrl?: string;
|
|
943
931
|
}, {
|
|
944
932
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
945
933
|
description?: string;
|
|
@@ -977,6 +965,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
977
965
|
}[];
|
|
978
966
|
schemaServingType?: PackageSchemaServingType;
|
|
979
967
|
schemaVersion?: PackageSchemaVersion;
|
|
968
|
+
isPlayground?: boolean;
|
|
969
|
+
baseUrl?: string;
|
|
980
970
|
}>, "many">;
|
|
981
971
|
}, "strip", z.ZodTypeAny, {
|
|
982
972
|
cursor?: z.objectOutputType<{
|
|
@@ -1029,6 +1019,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
1029
1019
|
}[];
|
|
1030
1020
|
schemaServingType?: PackageSchemaServingType;
|
|
1031
1021
|
schemaVersion?: PackageSchemaVersion;
|
|
1022
|
+
isPlayground?: boolean;
|
|
1023
|
+
baseUrl?: string;
|
|
1032
1024
|
}[];
|
|
1033
1025
|
}, {
|
|
1034
1026
|
cursor?: z.objectInputType<{
|
|
@@ -1081,6 +1073,8 @@ export declare const GetPackagesListResponse: z.ZodObject<{
|
|
|
1081
1073
|
}[];
|
|
1082
1074
|
schemaServingType?: PackageSchemaServingType;
|
|
1083
1075
|
schemaVersion?: PackageSchemaVersion;
|
|
1076
|
+
isPlayground?: boolean;
|
|
1077
|
+
baseUrl?: string;
|
|
1084
1078
|
}[];
|
|
1085
1079
|
}>;
|
|
1086
1080
|
export declare const GetPackageResponse: z.ZodObject<{
|
|
@@ -1204,6 +1198,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1204
1198
|
}>, "many">>;
|
|
1205
1199
|
schemaServingType: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaServingType>>;
|
|
1206
1200
|
schemaVersion: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaVersion>>;
|
|
1201
|
+
isPlayground: z.ZodOptional<z.ZodBoolean>;
|
|
1202
|
+
baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1207
1203
|
}, "strip", z.ZodTypeAny, {
|
|
1208
1204
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1209
1205
|
description?: string;
|
|
@@ -1241,6 +1237,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1241
1237
|
}[];
|
|
1242
1238
|
schemaServingType?: PackageSchemaServingType;
|
|
1243
1239
|
schemaVersion?: PackageSchemaVersion;
|
|
1240
|
+
isPlayground?: boolean;
|
|
1241
|
+
baseUrl?: string;
|
|
1244
1242
|
}, {
|
|
1245
1243
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1246
1244
|
description?: string;
|
|
@@ -1278,6 +1276,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1278
1276
|
}[];
|
|
1279
1277
|
schemaServingType?: PackageSchemaServingType;
|
|
1280
1278
|
schemaVersion?: PackageSchemaVersion;
|
|
1279
|
+
isPlayground?: boolean;
|
|
1280
|
+
baseUrl?: string;
|
|
1281
1281
|
}>, {
|
|
1282
1282
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1283
1283
|
description?: string;
|
|
@@ -1315,6 +1315,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1315
1315
|
}[];
|
|
1316
1316
|
schemaServingType?: PackageSchemaServingType;
|
|
1317
1317
|
schemaVersion?: PackageSchemaVersion;
|
|
1318
|
+
isPlayground?: boolean;
|
|
1319
|
+
baseUrl?: string;
|
|
1318
1320
|
}, {
|
|
1319
1321
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1320
1322
|
description?: string;
|
|
@@ -1352,6 +1354,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1352
1354
|
}[];
|
|
1353
1355
|
schemaServingType?: PackageSchemaServingType;
|
|
1354
1356
|
schemaVersion?: PackageSchemaVersion;
|
|
1357
|
+
isPlayground?: boolean;
|
|
1358
|
+
baseUrl?: string;
|
|
1355
1359
|
}>, "many">;
|
|
1356
1360
|
}, "strip", z.ZodTypeAny, {
|
|
1357
1361
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
@@ -1396,6 +1400,8 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1396
1400
|
}[];
|
|
1397
1401
|
schemaServingType?: PackageSchemaServingType;
|
|
1398
1402
|
schemaVersion?: PackageSchemaVersion;
|
|
1403
|
+
isPlayground?: boolean;
|
|
1404
|
+
baseUrl?: string;
|
|
1399
1405
|
}[];
|
|
1400
1406
|
}, {
|
|
1401
1407
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
@@ -1440,9 +1446,11 @@ export declare const GetPackageResponse: z.ZodObject<{
|
|
|
1440
1446
|
}[];
|
|
1441
1447
|
schemaServingType?: PackageSchemaServingType;
|
|
1442
1448
|
schemaVersion?: PackageSchemaVersion;
|
|
1449
|
+
isPlayground?: boolean;
|
|
1450
|
+
baseUrl?: string;
|
|
1443
1451
|
}[];
|
|
1444
1452
|
}>;
|
|
1445
|
-
export declare const GetPackageReleaseResponse: z.
|
|
1453
|
+
export declare const GetPackageReleaseResponse: z.ZodEffects<z.ZodObject<{
|
|
1446
1454
|
type: z.ZodNativeEnum<typeof import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum>;
|
|
1447
1455
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1448
1456
|
version: z.ZodString;
|
|
@@ -1546,6 +1554,8 @@ export declare const GetPackageReleaseResponse: z.ZodIntersection<z.ZodEffects<z
|
|
|
1546
1554
|
}>, "many">>;
|
|
1547
1555
|
schemaServingType: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaServingType>>;
|
|
1548
1556
|
schemaVersion: z.ZodOptional<z.ZodNativeEnum<typeof PackageSchemaVersion>>;
|
|
1557
|
+
isPlayground: z.ZodOptional<z.ZodBoolean>;
|
|
1558
|
+
baseUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1549
1559
|
}, "strip", z.ZodTypeAny, {
|
|
1550
1560
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1551
1561
|
description?: string;
|
|
@@ -1583,6 +1593,8 @@ export declare const GetPackageReleaseResponse: z.ZodIntersection<z.ZodEffects<z
|
|
|
1583
1593
|
}[];
|
|
1584
1594
|
schemaServingType?: PackageSchemaServingType;
|
|
1585
1595
|
schemaVersion?: PackageSchemaVersion;
|
|
1596
|
+
isPlayground?: boolean;
|
|
1597
|
+
baseUrl?: string;
|
|
1586
1598
|
}, {
|
|
1587
1599
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1588
1600
|
description?: string;
|
|
@@ -1620,6 +1632,8 @@ export declare const GetPackageReleaseResponse: z.ZodIntersection<z.ZodEffects<z
|
|
|
1620
1632
|
}[];
|
|
1621
1633
|
schemaServingType?: PackageSchemaServingType;
|
|
1622
1634
|
schemaVersion?: PackageSchemaVersion;
|
|
1635
|
+
isPlayground?: boolean;
|
|
1636
|
+
baseUrl?: string;
|
|
1623
1637
|
}>, {
|
|
1624
1638
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1625
1639
|
description?: string;
|
|
@@ -1657,6 +1671,8 @@ export declare const GetPackageReleaseResponse: z.ZodIntersection<z.ZodEffects<z
|
|
|
1657
1671
|
}[];
|
|
1658
1672
|
schemaServingType?: PackageSchemaServingType;
|
|
1659
1673
|
schemaVersion?: PackageSchemaVersion;
|
|
1674
|
+
isPlayground?: boolean;
|
|
1675
|
+
baseUrl?: string;
|
|
1660
1676
|
}, {
|
|
1661
1677
|
type?: import("@or-sdk/library-prisma/dist/generated/zod/enums").PackageTypeEnum;
|
|
1662
1678
|
description?: string;
|
|
@@ -1694,13 +1710,9 @@ export declare const GetPackageReleaseResponse: z.ZodIntersection<z.ZodEffects<z
|
|
|
1694
1710
|
}[];
|
|
1695
1711
|
schemaServingType?: PackageSchemaServingType;
|
|
1696
1712
|
schemaVersion?: PackageSchemaVersion;
|
|
1697
|
-
|
|
1698
|
-
baseUrl: z.ZodString;
|
|
1699
|
-
}, "strip", z.ZodTypeAny, {
|
|
1713
|
+
isPlayground?: boolean;
|
|
1700
1714
|
baseUrl?: string;
|
|
1701
|
-
}
|
|
1702
|
-
baseUrl?: string;
|
|
1703
|
-
}>>;
|
|
1715
|
+
}>;
|
|
1704
1716
|
export declare const GetPackageArchiveSignedUrl: z.ZodObject<{
|
|
1705
1717
|
key: z.ZodString;
|
|
1706
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",
|