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

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.
@@ -5,6 +5,8 @@ export type AddPackageBodyDTO = z.infer<typeof allZodSchemas.AddPackageBody>;
5
5
  export type UpdatePackageByRevisionBodyDTO = z.infer<typeof allZodSchemas.UpdatePackageByRevisionBody>;
6
6
  export type AddPackageDependenciesBodyDTO = z.infer<typeof allZodSchemas.AddPackageDependenciesBody>;
7
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>;
8
10
  export type AddPackageResponseDTO = z.infer<typeof allZodSchemas.AddPackageResponse>;
9
11
  export type GetPackagesListResponseDTO = z.infer<typeof allZodSchemas.GetPackagesListResponse>;
10
12
  export type GetPackageResponseDTO = z.infer<typeof allZodSchemas.GetPackageResponse>;
@@ -18,6 +20,7 @@ export type GetPackagesParamsDTO = z.infer<typeof allZodSchemas.GetPackagesParam
18
20
  export type GetPackageParamsDTO = z.infer<typeof allZodSchemas.GetPackageParams>;
19
21
  export type DeletePackageParamsDTO = z.infer<typeof allZodSchemas.DeletePackageParams>;
20
22
  export type PackageDependencyDeleteParamsDTO = z.infer<typeof allZodSchemas.PackageDependencyDeleteParams>;
23
+ export type PackageUpdatesParamsDTO = z.infer<typeof allZodSchemas.PackageUpdatesParams>;
21
24
  export type CreatedByDTO = z.infer<typeof allZodSchemas.CreatedBy>;
22
25
  export type ListViewDTO = z.infer<typeof allZodSchemas.ListView>;
23
26
  export * from './index.public';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/library-types-v2",
3
- "version": "6.0.12",
3
+ "version": "6.0.14",
4
4
  "description": "Request/response v2 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.9"
23
+ "@or-sdk/library-prisma": "6.0.10"
24
24
  },
25
25
  "scripts": {
26
26
  "build:nest": "npx ts-node ./esbuild.nest.ts",