@or-sdk/library-types-v2 7.0.1 → 7.0.2
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/browser/cjs/index.js +250 -148
- package/dist/browser/cjs/index.js.map +4 -4
- package/dist/browser/esm/index.js +250 -148
- package/dist/browser/esm/index.js.map +4 -4
- package/dist/browser/types/index.d.ts +28 -0
- package/package.json +2 -2
|
@@ -413,6 +413,32 @@ export declare const AddPackageDependenciesBody: z.ZodObject<{
|
|
|
413
413
|
value: string;
|
|
414
414
|
id?: string | undefined;
|
|
415
415
|
}>;
|
|
416
|
+
export declare const AddSuggestionBody: z.ZodObject<{
|
|
417
|
+
id: z.ZodString;
|
|
418
|
+
text: z.ZodString;
|
|
419
|
+
type: z.ZodString;
|
|
420
|
+
}, "strip", z.ZodTypeAny, {
|
|
421
|
+
type: string;
|
|
422
|
+
id: string;
|
|
423
|
+
text: string;
|
|
424
|
+
}, {
|
|
425
|
+
type: string;
|
|
426
|
+
id: string;
|
|
427
|
+
text: string;
|
|
428
|
+
}>;
|
|
429
|
+
export declare const SearchableEntityParam: z.ZodObject<{
|
|
430
|
+
id: z.ZodString;
|
|
431
|
+
text: z.ZodString;
|
|
432
|
+
type: z.ZodString;
|
|
433
|
+
}, "strip", z.ZodTypeAny, {
|
|
434
|
+
type: string;
|
|
435
|
+
id: string;
|
|
436
|
+
text: string;
|
|
437
|
+
}, {
|
|
438
|
+
type: string;
|
|
439
|
+
id: string;
|
|
440
|
+
text: string;
|
|
441
|
+
}>;
|
|
416
442
|
export declare enum PackageSchemaServingType {
|
|
417
443
|
JSON = "JSON",
|
|
418
444
|
STATIC = "STATIC"
|
|
@@ -3895,6 +3921,8 @@ export type PackageMetaDTO = z.infer<typeof PackageMeta>;
|
|
|
3895
3921
|
export type AddPackageBodyDTO = z.infer<typeof AddPackageBody>;
|
|
3896
3922
|
export type UpdatePackageByRevisionBodyDTO = z.infer<typeof UpdatePackageByRevisionBody>;
|
|
3897
3923
|
export type AddPackageDependenciesBodyDTO = z.infer<typeof AddPackageDependenciesBody>;
|
|
3924
|
+
export type AddSuggestionBodyDTO = z.infer<typeof AddSuggestionBody>;
|
|
3925
|
+
export type SearchableEntityParamDTO = z.infer<typeof SearchableEntityParam>;
|
|
3898
3926
|
export type PackageModelResponseDTO = z.infer<typeof PackageModelResponse>;
|
|
3899
3927
|
export type PackageReleaseModelResponseDTO = z.infer<typeof PackageReleaseModelResponse>;
|
|
3900
3928
|
export type AddPackageResponseDTO = z.infer<typeof AddPackageResponse>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/library-types-v2",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
4
4
|
"description": "Request/response v2 types for the OR SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"./dist/browser",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"zod": "3.22.4"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@or-sdk/library-prisma": "7.0.
|
|
38
|
+
"@or-sdk/library-prisma": "7.0.5"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "pnpm run build:nest && pnpm run build:browser",
|