@or-sdk/library-types-v2 6.0.21 → 7.0.0-tryboundletypes-20240228130752

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.
@@ -1,19 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const InAndNotInFunc: ({ defaultValue, inProp, notInProp, type, }: {
3
- defaultValue?: {
4
- in?: any[];
5
- notIn?: any[];
6
- };
7
- inProp?: boolean;
8
- notInProp?: boolean;
9
- type: z.ZodTypeAny;
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
- }, "in" | "notIn">, "strip", z.ZodTypeAny, {
14
- in?: any[];
15
- notIn?: any[];
16
- }, {
17
- in?: any;
18
- notIn?: any;
19
- }>>;
@@ -1,26 +0,0 @@
1
- import { z } from 'zod';
2
- import * as allZodSchemas from './index.public';
3
- export type PackageMetaDTO = z.infer<typeof allZodSchemas.PackageMeta>;
4
- export type AddPackageBodyDTO = z.infer<typeof allZodSchemas.AddPackageBody>;
5
- export type UpdatePackageByRevisionBodyDTO = z.infer<typeof allZodSchemas.UpdatePackageByRevisionBody>;
6
- export type AddPackageDependenciesBodyDTO = z.infer<typeof allZodSchemas.AddPackageDependenciesBody>;
7
- export type PackageSchemaVersionDTO = z.infer<typeof allZodSchemas.PackageSchemaVersion>;
8
- export type PackageModelResponseDTO = z.infer<typeof allZodSchemas.PackageModelResponse>;
9
- export type PackageReleaseModelResponseDTO = z.infer<typeof allZodSchemas.PackageReleaseModelResponse>;
10
- export type AddPackageResponseDTO = z.infer<typeof allZodSchemas.AddPackageResponse>;
11
- export type GetPackagesListResponseDTO = z.infer<typeof allZodSchemas.GetPackagesListResponse>;
12
- export type GetPackageResponseDTO = z.infer<typeof allZodSchemas.GetPackageResponse>;
13
- export type GetPackageReleaseResponseDTO = z.infer<typeof allZodSchemas.GetPackageReleaseResponse>;
14
- export type GetPackageArchiveSignedUrlDTO = z.infer<typeof allZodSchemas.GetPackageArchiveSignedUrl>;
15
- export type UniversalPackageParamsDTO = z.infer<typeof allZodSchemas.UniversalPackageParams>;
16
- export type AddPackageReleaseSystemStatusParamsDTO = z.infer<typeof allZodSchemas.AddPackageReleaseSystemStatusParams>;
17
- export type AddPackageReleaseReleaseStatusParamsDTO = z.infer<typeof allZodSchemas.AddPackageReleaseReleaseStatusParams>;
18
- export type GetPackagesParamsFilterDTO = z.infer<typeof allZodSchemas.GetPackagesParamsFilter>;
19
- export type GetPackagesParamsDTO = z.infer<typeof allZodSchemas.GetPackagesParams>;
20
- export type GetPackageParamsDTO = z.infer<typeof allZodSchemas.GetPackageParams>;
21
- export type DeletePackageParamsDTO = z.infer<typeof allZodSchemas.DeletePackageParams>;
22
- export type PackageDependencyDeleteParamsDTO = z.infer<typeof allZodSchemas.PackageDependencyDeleteParams>;
23
- export type PackageUpdatesParamsDTO = z.infer<typeof allZodSchemas.PackageUpdatesParams>;
24
- export type CreatedByDTO = z.infer<typeof allZodSchemas.CreatedBy>;
25
- export type ListViewDTO = z.infer<typeof allZodSchemas.ListView>;
26
- export * from './index.public';
@@ -1,5 +0,0 @@
1
- export * from './Packages';
2
- export * from './CreatedBy';
3
- export * from './List';
4
- export * from './PropFilter';
5
- export { PackageTypeEnum, PackageSchemaTypeEnum, PackageStatusDetailsStatusEnum, PackageStatusDetailsLevelEnum, } from '@or-sdk/library-prisma';