@or-sdk/library-types-v2 6.0.11 → 6.0.12

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.
@@ -411,17 +411,22 @@ export declare const AddPackageResponse: z.ZodObject<{
411
411
  }[];
412
412
  }>;
413
413
  export declare const GetPackagesListResponse: z.ZodObject<{
414
- filter: z.ZodOptional<z.ZodAny>;
415
- take: z.ZodNumber;
416
- skip: z.ZodNumber;
417
414
  cursor: z.ZodObject<{
418
415
  skip: z.ZodNumber;
419
- }, "strip", z.ZodTypeAny, {
420
- skip?: number;
421
- }, {
422
- skip?: number;
423
- }>;
424
- scope: z.ZodOptional<z.ZodAny>;
416
+ filter: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
417
+ scope: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
418
+ take: z.ZodNumber;
419
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
420
+ skip: z.ZodNumber;
421
+ filter: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
422
+ scope: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
423
+ take: z.ZodNumber;
424
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
425
+ skip: z.ZodNumber;
426
+ filter: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
427
+ scope: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
428
+ take: z.ZodNumber;
429
+ }, z.ZodTypeAny, "passthrough">>;
425
430
  categories: z.ZodArray<z.ZodObject<{
426
431
  name: z.ZodString;
427
432
  total: z.ZodNumber;
@@ -687,13 +692,12 @@ export declare const GetPackagesListResponse: z.ZodObject<{
687
692
  schemaVersion?: PackageSchemaVersion;
688
693
  }>, "many">;
689
694
  }, "strip", z.ZodTypeAny, {
690
- filter?: any;
691
- take?: number;
692
- skip?: number;
693
- cursor?: {
694
- skip?: number;
695
- };
696
- scope?: any;
695
+ cursor?: z.objectOutputType<{
696
+ skip: z.ZodNumber;
697
+ filter: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
698
+ scope: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
699
+ take: z.ZodNumber;
700
+ }, z.ZodTypeAny, "passthrough">;
697
701
  categories?: {
698
702
  name?: string;
699
703
  total?: number;
@@ -738,13 +742,12 @@ export declare const GetPackagesListResponse: z.ZodObject<{
738
742
  schemaVersion?: PackageSchemaVersion;
739
743
  }[];
740
744
  }, {
741
- filter?: any;
742
- take?: number;
743
- skip?: number;
744
- cursor?: {
745
- skip?: number;
746
- };
747
- scope?: any;
745
+ cursor?: z.objectInputType<{
746
+ skip: z.ZodNumber;
747
+ filter: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
748
+ scope: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
749
+ take: z.ZodNumber;
750
+ }, z.ZodTypeAny, "passthrough">;
748
751
  categories?: {
749
752
  name?: string;
750
753
  total?: number;
@@ -7,13 +7,13 @@ export declare const InAndNotInFunc: ({ defaultValue, inProp, notInProp, type, }
7
7
  inProp?: boolean;
8
8
  notInProp?: boolean;
9
9
  type: z.ZodTypeAny;
10
- }) => z.ZodDefault<z.ZodOptional<z.ZodObject<Pick<{
11
- in: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
12
- notIn: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>;
10
+ }) => z.ZodDefault<z.ZodObject<Pick<{
11
+ in: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
12
+ notIn: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodTypeAny, any[], any>, z.ZodArray<z.ZodTypeAny, "many">]>>>;
13
13
  }, "in" | "notIn">, "strip", z.ZodTypeAny, {
14
14
  in?: any[];
15
15
  notIn?: any[];
16
16
  }, {
17
17
  in?: any;
18
18
  notIn?: any;
19
- }>>>;
19
+ }>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/library-types-v2",
3
- "version": "6.0.11",
3
+ "version": "6.0.12",
4
4
  "description": "Request/response v2 types for the OR SDK",
5
5
  "files": [
6
6
  "./dist",