@or-sdk/library-types-v1 6.0.14 → 6.0.15

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.
@@ -256,16 +256,19 @@ export declare const PackageIncludesParams: z.ZodObject<{
256
256
  includeMember: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodString, boolean, string>, z.ZodBoolean]>>;
257
257
  includeReleaseNotes: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodString, boolean, string>, z.ZodBoolean]>>;
258
258
  includeData: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodString, boolean, string>, z.ZodBoolean]>>;
259
+ includePrerelease: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodString, boolean, string>, z.ZodBoolean]>>;
259
260
  }, "strip", z.ZodTypeAny, {
260
261
  includeDeprecated?: boolean;
261
262
  includeMember?: boolean;
262
263
  includeReleaseNotes?: boolean;
263
264
  includeData?: boolean;
265
+ includePrerelease?: boolean;
264
266
  }, {
265
267
  includeDeprecated?: string | boolean;
266
268
  includeMember?: string | boolean;
267
269
  includeReleaseNotes?: string | boolean;
268
270
  includeData?: string | boolean;
271
+ includePrerelease?: string | boolean;
269
272
  }>;
270
273
  export declare const PackageSetSystemStatusParams: z.ZodObject<{
271
274
  type: z.ZodNativeEnum<{
@@ -544,14 +544,17 @@ export declare const GetPackageByIdQueryUnion: z.ZodIntersection<z.ZodObject<{
544
544
  includeMember: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodString, boolean, string>, z.ZodBoolean]>>;
545
545
  includeReleaseNotes: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodString, boolean, string>, z.ZodBoolean]>>;
546
546
  includeData: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodString, boolean, string>, z.ZodBoolean]>>;
547
+ includePrerelease: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodString, boolean, string>, z.ZodBoolean]>>;
547
548
  }, "strip", z.ZodTypeAny, {
548
549
  includeDeprecated?: boolean;
549
550
  includeMember?: boolean;
550
551
  includeReleaseNotes?: boolean;
551
552
  includeData?: boolean;
553
+ includePrerelease?: boolean;
552
554
  }, {
553
555
  includeDeprecated?: string | boolean;
554
556
  includeMember?: string | boolean;
555
557
  includeReleaseNotes?: string | boolean;
556
558
  includeData?: string | boolean;
559
+ includePrerelease?: string | boolean;
557
560
  }>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/library-types-v1",
3
- "version": "6.0.14",
3
+ "version": "6.0.15",
4
4
  "description": "Request/response v1 legacy 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.16"
23
+ "@or-sdk/library-prisma": "6.0.17"
24
24
  },
25
25
  "scripts": {
26
26
  "build:nest": "npx ts-node ./esbuild.nest.ts",