@or-sdk/library-types-v2 7.0.3 → 7.1.0

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.
@@ -3246,7 +3246,7 @@ export declare const GetPackagesParams: z.ZodObject<{
3246
3246
  } | undefined;
3247
3247
  }>>;
3248
3248
  query: z.ZodOptional<z.ZodString>;
3249
- includeSkip: z.ZodOptional<z.ZodBoolean>;
3249
+ includeSkip: z.ZodOptional<z.ZodString>;
3250
3250
  }, "strip", z.ZodTypeAny, {
3251
3251
  skip?: number | undefined;
3252
3252
  take?: number | undefined;
@@ -3306,7 +3306,7 @@ export declare const GetPackagesParams: z.ZodObject<{
3306
3306
  } | undefined;
3307
3307
  } | undefined;
3308
3308
  query?: string | undefined;
3309
- includeSkip?: boolean | undefined;
3309
+ includeSkip?: string | undefined;
3310
3310
  }, {
3311
3311
  skip?: any;
3312
3312
  take?: any;
@@ -3366,7 +3366,7 @@ export declare const GetPackagesParams: z.ZodObject<{
3366
3366
  } | undefined;
3367
3367
  } | undefined;
3368
3368
  query?: string | undefined;
3369
- includeSkip?: boolean | undefined;
3369
+ includeSkip?: string | undefined;
3370
3370
  }>;
3371
3371
  export declare const GetPackageParams: z.ZodObject<Pick<{
3372
3372
  prerelease: z.ZodOptional<z.ZodEffects<z.ZodAny, boolean, any>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/library-types-v2",
3
- "version": "7.0.3",
3
+ "version": "7.1.0",
4
4
  "description": "Request/response v2 types for the OR SDK",
5
5
  "files": [
6
6
  "./dist/browser",
@@ -15,15 +15,15 @@
15
15
  "types": "./dist/browser/types/index.d.ts",
16
16
  "exports": {
17
17
  ".": {
18
+ "types": "./dist/browser/types/index.d.ts",
18
19
  "require": "./dist/browser/cjs/index.js",
19
20
  "import": "./dist/browser/esm/index.js",
20
- "types": "./dist/browser/types/index.d.ts",
21
21
  "default": "./dist/browser/esm/index.js"
22
22
  },
23
23
  "./nest": {
24
+ "types": "./dist/nest/types/index.d.ts",
24
25
  "require": "./dist/nest/cjs/index.js",
25
26
  "import": "./dist/nest/esm/index.js",
26
- "types": "./dist/nest/types/index.d.ts",
27
27
  "default": "./dist/nest/cjs/index.js"
28
28
  }
29
29
  },
@@ -35,7 +35,7 @@
35
35
  "zod": "3.22.4"
36
36
  },
37
37
  "devDependencies": {
38
- "@or-sdk/library-prisma": "7.0.8"
38
+ "@or-sdk/library-prisma": "7.1.0"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "pnpm run build:nest && pnpm run build:browser",