@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.
@@ -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.1",
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.1"
38
+ "@or-sdk/library-prisma": "7.0.5"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "pnpm run build:nest && pnpm run build:browser",