@or-sdk/library-types-v2 6.0.12 → 6.0.13
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/CHANGELOG.md +6 -0
- package/dist/cjs/index.js +12 -2
- package/dist/cjs/index.js.map +3 -3
- package/dist/esm/index.js +12 -2
- package/dist/esm/index.js.map +3 -3
- package/dist/types/Packages/params.d.ts +11 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1091,3 +1091,14 @@ export declare const PackageDependencyDeleteParams: z.ZodIntersection<z.ZodObjec
|
|
|
1091
1091
|
}, {
|
|
1092
1092
|
dependencyId?: string;
|
|
1093
1093
|
}>>;
|
|
1094
|
+
export declare enum PackageUpdateReleaseEnum {
|
|
1095
|
+
major = "major",
|
|
1096
|
+
minor = "minor"
|
|
1097
|
+
}
|
|
1098
|
+
export declare const PackageUpdatesParams: z.ZodObject<{
|
|
1099
|
+
releaseType: z.ZodDefault<z.ZodNativeEnum<typeof PackageUpdateReleaseEnum>>;
|
|
1100
|
+
}, "strip", z.ZodTypeAny, {
|
|
1101
|
+
releaseType?: PackageUpdateReleaseEnum;
|
|
1102
|
+
}, {
|
|
1103
|
+
releaseType?: PackageUpdateReleaseEnum;
|
|
1104
|
+
}>;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export type GetPackagesParamsDTO = z.infer<typeof allZodSchemas.GetPackagesParam
|
|
|
18
18
|
export type GetPackageParamsDTO = z.infer<typeof allZodSchemas.GetPackageParams>;
|
|
19
19
|
export type DeletePackageParamsDTO = z.infer<typeof allZodSchemas.DeletePackageParams>;
|
|
20
20
|
export type PackageDependencyDeleteParamsDTO = z.infer<typeof allZodSchemas.PackageDependencyDeleteParams>;
|
|
21
|
+
export type PackageUpdatesParamsDTO = z.infer<typeof allZodSchemas.PackageUpdatesParams>;
|
|
21
22
|
export type CreatedByDTO = z.infer<typeof allZodSchemas.CreatedBy>;
|
|
22
23
|
export type ListViewDTO = z.infer<typeof allZodSchemas.ListView>;
|
|
23
24
|
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.
|
|
3
|
+
"version": "6.0.13",
|
|
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.
|
|
23
|
+
"@or-sdk/library-prisma": "6.0.10"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build:nest": "npx ts-node ./esbuild.nest.ts",
|