expo-backend-types 0.49.0-EXPO-355-ExpoBackend-Rutas-de-produccion.7 → 0.49.0-EXPO-355-ExpoBackend-Rutas-de-produccion.9

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.
@@ -4,17 +4,22 @@ export declare const createProductionSchema: import("zod").ZodObject<Pick<{
4
4
  administratorId: import("zod").ZodNullable<import("zod").ZodString>;
5
5
  created_at: import("zod").ZodDate;
6
6
  updated_at: import("zod").ZodDate;
7
- }, "name">, "strip", import("zod").ZodTypeAny, {
7
+ }, "name" | "administratorId">, "strip", import("zod").ZodTypeAny, {
8
8
  name: string;
9
+ administratorId: string | null;
9
10
  }, {
10
11
  name: string;
12
+ administratorId: string | null;
11
13
  }>;
12
14
  declare const CreateProductionDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
13
15
  name: import("zod").ZodString;
16
+ administratorId: import("zod").ZodNullable<import("zod").ZodString>;
14
17
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
15
18
  name: string;
19
+ administratorId: string | null;
16
20
  }, {
17
21
  name: string;
22
+ administratorId: string | null;
18
23
  }>>;
19
24
  export declare class CreateProductionDto extends CreateProductionDto_base {
20
25
  }
@@ -5,6 +5,7 @@ const production_dto_1 = require("./production.dto");
5
5
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
6
6
  exports.createProductionSchema = production_dto_1.productionSchema.pick({
7
7
  name: true,
8
+ administratorId: true,
8
9
  });
9
10
  class CreateProductionDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createProductionSchema) {
10
11
  }
@@ -1,5 +1,6 @@
1
1
  export * from './dto/create-production.dto';
2
2
  export * from './dto/create-role.dto';
3
3
  export * from './dto/delete-production.dto';
4
+ export * from './dto/get-all-production.dto';
4
5
  export * from './dto/production.dto';
5
6
  export * from './dto/update-production.dto';
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./dto/create-production.dto"), exports);
18
18
  __exportStar(require("./dto/create-role.dto"), exports);
19
19
  __exportStar(require("./dto/delete-production.dto"), exports);
20
+ __exportStar(require("./dto/get-all-production.dto"), exports);
20
21
  __exportStar(require("./dto/production.dto"), exports);
21
22
  __exportStar(require("./dto/update-production.dto"), exports);
22
23
  //# sourceMappingURL=exports.js.map
@@ -3738,6 +3738,7 @@ export interface components {
3738
3738
  };
3739
3739
  CreateProductionDto: {
3740
3740
  name: string;
3741
+ administratorId: string | null;
3741
3742
  };
3742
3743
  CreateProductionRoleDto: {
3743
3744
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.49.0-EXPO-355-ExpoBackend-Rutas-de-produccion.7",
3
+ "version": "0.49.0-EXPO-355-ExpoBackend-Rutas-de-produccion.9",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,