repzo 1.0.95 → 1.0.96
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/lib/types/index.d.ts +16 -1
- package/package.json +1 -1
- package/src/types/index.ts +16 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -8358,7 +8358,22 @@ export declare namespace Service {
|
|
|
8358
8358
|
receival_warehouse:
|
|
8359
8359
|
| string
|
|
8360
8360
|
| Pick<Warehouse.WarehouseSchema, "_id" | "code" | "type" | "name">;
|
|
8361
|
-
asset_part:
|
|
8361
|
+
asset_part:
|
|
8362
|
+
| StringId
|
|
8363
|
+
| (Pick<
|
|
8364
|
+
AssetPart.Data,
|
|
8365
|
+
| "name"
|
|
8366
|
+
| "local_name"
|
|
8367
|
+
| "barcode"
|
|
8368
|
+
| "model"
|
|
8369
|
+
| "asset_part_types"
|
|
8370
|
+
| "media"
|
|
8371
|
+
| "cover_photo"
|
|
8372
|
+
> & {
|
|
8373
|
+
asset_part_types?: AssetPartType.Data[];
|
|
8374
|
+
media?: MediaDoc[];
|
|
8375
|
+
cover_photo?: MediaDoc;
|
|
8376
|
+
});
|
|
8362
8377
|
asset_part_name: string;
|
|
8363
8378
|
qty: number;
|
|
8364
8379
|
custom_status?:
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -8289,7 +8289,22 @@ export namespace Service {
|
|
|
8289
8289
|
receival_warehouse:
|
|
8290
8290
|
| string
|
|
8291
8291
|
| Pick<Warehouse.WarehouseSchema, "_id" | "code" | "type" | "name">;
|
|
8292
|
-
asset_part:
|
|
8292
|
+
asset_part:
|
|
8293
|
+
| StringId
|
|
8294
|
+
| (Pick<
|
|
8295
|
+
AssetPart.Data,
|
|
8296
|
+
| "name"
|
|
8297
|
+
| "local_name"
|
|
8298
|
+
| "barcode"
|
|
8299
|
+
| "model"
|
|
8300
|
+
| "asset_part_types"
|
|
8301
|
+
| "media"
|
|
8302
|
+
| "cover_photo"
|
|
8303
|
+
> & {
|
|
8304
|
+
asset_part_types?: AssetPartType.Data[];
|
|
8305
|
+
media?: MediaDoc[];
|
|
8306
|
+
cover_photo?: MediaDoc;
|
|
8307
|
+
});
|
|
8293
8308
|
asset_part_name: string;
|
|
8294
8309
|
qty: number;
|
|
8295
8310
|
custom_status?:
|