@or-sdk/library-types-v2 5.0.8 → 6.0.1

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/dist/index.d.ts CHANGED
@@ -1,3 +1,24 @@
1
- export * from './Packages';
2
- export * from './CreatedBy';
3
- export * from './List';
1
+ import { z } from 'zod';
2
+ import * as allZodSchemas from './index.zod';
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 AddPackageResponseDTO = z.infer<typeof allZodSchemas.AddPackageResponse>;
8
+ export type GetPackagesListResponseDTO = z.infer<typeof allZodSchemas.GetPackagesListResponse>;
9
+ export type GetPackageResponseDTO = z.infer<typeof allZodSchemas.GetPackageResponse>;
10
+ export type GetPackageReleaseResponseDTO = z.infer<typeof allZodSchemas.GetPackageReleaseResponse>;
11
+ export type UniversalPackageTypeParamsDTO = z.infer<typeof allZodSchemas.UniversalPackageTypeParams>;
12
+ export type UniversalPackageTypeIdParamsDTO = z.infer<typeof allZodSchemas.UniversalPackageTypeIdParams>;
13
+ export type UniversalPackageTypeIdVersionParamsDTO = z.infer<typeof allZodSchemas.UniversalPackageTypeIdVersionParams>;
14
+ export type UniversalPackageTypeIdRevisionIdParamsDTO = z.infer<typeof allZodSchemas.UniversalPackageTypeIdRevisionIdParams>;
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 GetPackageListFilterParamsDTO = z.infer<typeof allZodSchemas.GetPackageListFilterParams>;
19
+ export type GetPackageListScopeParamsDTO = z.infer<typeof allZodSchemas.GetPackageListScopeParams>;
20
+ export type GetPackageListParamsDTO = z.infer<typeof allZodSchemas.GetPackageListParams>;
21
+ export type GetPackageParamsDTO = z.infer<typeof allZodSchemas.GetPackageParams>;
22
+ export type CreatedByDTO = z.infer<typeof allZodSchemas.CreatedBy>;
23
+ export type ListViewDTO = z.infer<typeof allZodSchemas.ListView>;
24
+ export * from './index.zod';