repzo 1.0.86 → 1.0.87
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 +13 -0
- package/package.json +1 -1
- package/src/types/index.ts +15 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -4636,6 +4636,7 @@ export declare namespace Service {
|
|
|
4636
4636
|
status: WorkorderStatus;
|
|
4637
4637
|
assets?: string[];
|
|
4638
4638
|
asset_units?: string[];
|
|
4639
|
+
asset_part_units?: StringId[];
|
|
4639
4640
|
workorder_categories: string[];
|
|
4640
4641
|
due_date?: number;
|
|
4641
4642
|
start_date?: number;
|
|
@@ -4675,6 +4676,14 @@ export declare namespace Service {
|
|
|
4675
4676
|
client_populated?: Pick<Client.ClientSchema, "client_code" | "name">;
|
|
4676
4677
|
asset_units_populated?: AssetUnitsPopulated[];
|
|
4677
4678
|
assets_populated?: AssetsPopulated[];
|
|
4679
|
+
asset_part_units_populated?: (Pick<
|
|
4680
|
+
AssetPartUnit.Data,
|
|
4681
|
+
"_id" | "asset_part"
|
|
4682
|
+
> & {
|
|
4683
|
+
asset_part: Pick<AssetPart.Data, "_id" | "name" | "local_name"> & {
|
|
4684
|
+
cover_photo?: PopulatedMediaStorage[];
|
|
4685
|
+
};
|
|
4686
|
+
})[];
|
|
4678
4687
|
assigned_to_populated?: RepresentativesPopulated;
|
|
4679
4688
|
client_location_populated?: ClientLocationPopulated;
|
|
4680
4689
|
workorder_categories_populated?: WorkorderCategoryPopulated[];
|
|
@@ -4693,6 +4702,7 @@ export declare namespace Service {
|
|
|
4693
4702
|
type PopulatedKeys =
|
|
4694
4703
|
| "client"
|
|
4695
4704
|
| "asset_units"
|
|
4705
|
+
| "asset_part_units"
|
|
4696
4706
|
| "assets"
|
|
4697
4707
|
| "assigned_to"
|
|
4698
4708
|
| "client_location"
|
|
@@ -4714,6 +4724,7 @@ export declare namespace Service {
|
|
|
4714
4724
|
client?: string;
|
|
4715
4725
|
assets?: string[];
|
|
4716
4726
|
asset_units?: string[];
|
|
4727
|
+
asset_part_units?: StringId[];
|
|
4717
4728
|
due_date?: number;
|
|
4718
4729
|
start_date?: number;
|
|
4719
4730
|
forms?: string[];
|
|
@@ -8297,7 +8308,9 @@ export declare namespace Service {
|
|
|
8297
8308
|
client: StringId;
|
|
8298
8309
|
client_name: string;
|
|
8299
8310
|
warehouse: StringId;
|
|
8311
|
+
warehouse_name?: string;
|
|
8300
8312
|
receival_warehouse: string;
|
|
8313
|
+
receival_warehouse_name?: string;
|
|
8301
8314
|
asset_part: StringId;
|
|
8302
8315
|
asset_part_name: string;
|
|
8303
8316
|
qty: number;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -4667,6 +4667,7 @@ export namespace Service {
|
|
|
4667
4667
|
status: WorkorderStatus;
|
|
4668
4668
|
assets?: string[];
|
|
4669
4669
|
asset_units?: string[];
|
|
4670
|
+
asset_part_units?: StringId[];
|
|
4670
4671
|
workorder_categories: string[];
|
|
4671
4672
|
due_date?: number;
|
|
4672
4673
|
start_date?: number;
|
|
@@ -4706,6 +4707,14 @@ export namespace Service {
|
|
|
4706
4707
|
client_populated?: Pick<Client.ClientSchema, "client_code" | "name">;
|
|
4707
4708
|
asset_units_populated?: AssetUnitsPopulated[];
|
|
4708
4709
|
assets_populated?: AssetsPopulated[];
|
|
4710
|
+
asset_part_units_populated?: (Pick<
|
|
4711
|
+
AssetPartUnit.Data,
|
|
4712
|
+
"_id" | "asset_part"
|
|
4713
|
+
> & {
|
|
4714
|
+
asset_part: Pick<AssetPart.Data, "_id" | "name" | "local_name"> & {
|
|
4715
|
+
cover_photo?: PopulatedMediaStorage[];
|
|
4716
|
+
};
|
|
4717
|
+
})[];
|
|
4709
4718
|
assigned_to_populated?: RepresentativesPopulated;
|
|
4710
4719
|
client_location_populated?: ClientLocationPopulated;
|
|
4711
4720
|
workorder_categories_populated?: WorkorderCategoryPopulated[];
|
|
@@ -4724,6 +4733,7 @@ export namespace Service {
|
|
|
4724
4733
|
status: WorkorderStatus;
|
|
4725
4734
|
assets?: string[];
|
|
4726
4735
|
asset_units?: string[];
|
|
4736
|
+
asset_part_units?: StringId[];
|
|
4727
4737
|
workorder_categories: string[];
|
|
4728
4738
|
due_date?: number;
|
|
4729
4739
|
start_date?: number;
|
|
@@ -4760,6 +4770,7 @@ export namespace Service {
|
|
|
4760
4770
|
status: WorkorderStatus;
|
|
4761
4771
|
assets?: string[];
|
|
4762
4772
|
asset_units?: string[];
|
|
4773
|
+
asset_part_units?: StringId[];
|
|
4763
4774
|
workorder_categories: string[];
|
|
4764
4775
|
due_date?: number;
|
|
4765
4776
|
start_date?: number;
|
|
@@ -4803,6 +4814,7 @@ export namespace Service {
|
|
|
4803
4814
|
type PopulatedKeys =
|
|
4804
4815
|
| "client"
|
|
4805
4816
|
| "asset_units"
|
|
4817
|
+
| "asset_part_units"
|
|
4806
4818
|
| "assets"
|
|
4807
4819
|
| "assigned_to"
|
|
4808
4820
|
| "client_location"
|
|
@@ -4824,6 +4836,7 @@ export namespace Service {
|
|
|
4824
4836
|
client?: string;
|
|
4825
4837
|
assets?: string[];
|
|
4826
4838
|
asset_units?: string[];
|
|
4839
|
+
asset_part_units?: StringId[];
|
|
4827
4840
|
due_date?: number;
|
|
4828
4841
|
start_date?: number;
|
|
4829
4842
|
forms?: string[];
|
|
@@ -8231,7 +8244,9 @@ export namespace Service {
|
|
|
8231
8244
|
client: StringId;
|
|
8232
8245
|
client_name: string;
|
|
8233
8246
|
warehouse: StringId;
|
|
8247
|
+
warehouse_name?: string;
|
|
8234
8248
|
receival_warehouse: string;
|
|
8249
|
+
receival_warehouse_name?: string;
|
|
8235
8250
|
asset_part: StringId;
|
|
8236
8251
|
asset_part_name: string;
|
|
8237
8252
|
qty: number;
|