repzo 1.0.83 → 1.0.84

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.
@@ -8499,6 +8499,7 @@ export declare namespace Service {
8499
8499
  asset_part_units: {
8500
8500
  asset_part_unit: StringId;
8501
8501
  qty: number;
8502
+ asset_part?: StringId;
8502
8503
  asset_part_name?: string;
8503
8504
  note?: string;
8504
8505
  splitted_from?: StringId;
@@ -8545,6 +8546,7 @@ export declare namespace Service {
8545
8546
  asset_part_units: {
8546
8547
  asset_part_unit: StringId | AssetPartUnit.Data;
8547
8548
  qty: number;
8549
+ asset_part?: StringId | AssetPart.Data;
8548
8550
  asset_part_name?: string;
8549
8551
  note?: string;
8550
8552
  splitted_from?: StringId | AssetPartUnit.Data;
@@ -8581,6 +8583,7 @@ export declare namespace Service {
8581
8583
  asset_part_units: {
8582
8584
  asset_part_unit: StringId;
8583
8585
  qty: number;
8586
+ asset_part?: StringId;
8584
8587
  asset_part_name?: string;
8585
8588
  note?: string;
8586
8589
  }[];
@@ -8637,6 +8640,9 @@ export declare namespace Service {
8637
8640
  company_namespace?: string[];
8638
8641
  createdAt?: Date;
8639
8642
  updatedAt?: Date;
8643
+ isResubmitted?: boolean;
8644
+ note?: string;
8645
+ stage?: number;
8640
8646
  }
8641
8647
  namespace Find {
8642
8648
  type Params = DefaultPaginationQueryParams & {
@@ -8725,7 +8731,7 @@ export declare namespace Service {
8725
8731
  signature?: StringId;
8726
8732
  media?: StringId[];
8727
8733
  asset_part_units: {
8728
- _id: StringId;
8734
+ _id?: StringId;
8729
8735
  asset_part_unit: StringId;
8730
8736
  qty: number;
8731
8737
  asset_part?: StringId;
@@ -8775,6 +8781,7 @@ export declare namespace Service {
8775
8781
  asset_part?: StringId | AssetPart.Data;
8776
8782
  asset_part_name?: string;
8777
8783
  comment?: string;
8784
+ splitted_from?: StringId | AssetPartUnit.Data;
8778
8785
  }[];
8779
8786
  asset_part_units_count?: number;
8780
8787
  total_asset_part_units_qty?: number;
@@ -8790,12 +8797,12 @@ export declare namespace Service {
8790
8797
  editor?: AdminOrRep;
8791
8798
  type: "returned" | "stored";
8792
8799
  sync_id: string;
8793
- transaction_processed: false;
8800
+ transaction_processed: boolean;
8794
8801
  serial_number?: SerialNumber;
8795
8802
  client: StringId;
8796
- client_name: string;
8803
+ client_name?: string;
8797
8804
  warehouse: StringId;
8798
- warehouse_name: string;
8805
+ warehouse_name?: string;
8799
8806
  teams?: StringId[];
8800
8807
  time: number;
8801
8808
  business_day?: string;
@@ -8805,6 +8812,7 @@ export declare namespace Service {
8805
8812
  signature?: StringId;
8806
8813
  media?: StringId[];
8807
8814
  asset_part_units: {
8815
+ _id?: StringId;
8808
8816
  asset_part_unit: StringId;
8809
8817
  qty: number;
8810
8818
  asset_part?: StringId;
@@ -8819,6 +8827,7 @@ export declare namespace Service {
8819
8827
  company_namespace: string[];
8820
8828
  }
8821
8829
  interface UpdateBody {
8830
+ editor?: AdminOrRep;
8822
8831
  description?: string;
8823
8832
  custom_status?: StringId;
8824
8833
  media?: StringId[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.83",
3
+ "version": "1.0.84",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -8414,6 +8414,7 @@ export namespace Service {
8414
8414
  asset_part_units: {
8415
8415
  asset_part_unit: StringId;
8416
8416
  qty: number;
8417
+ asset_part?: StringId;
8417
8418
  asset_part_name?: string;
8418
8419
  note?: string;
8419
8420
  splitted_from?: StringId;
@@ -8458,6 +8459,7 @@ export namespace Service {
8458
8459
  asset_part_units: {
8459
8460
  asset_part_unit: StringId | AssetPartUnit.Data;
8460
8461
  qty: number;
8462
+ asset_part?: StringId | AssetPart.Data;
8461
8463
  asset_part_name?: string;
8462
8464
  note?: string;
8463
8465
  splitted_from?: StringId | AssetPartUnit.Data;
@@ -8492,6 +8494,7 @@ export namespace Service {
8492
8494
  asset_part_units: {
8493
8495
  asset_part_unit: StringId;
8494
8496
  qty: number;
8497
+ asset_part?: StringId;
8495
8498
  asset_part_name?: string;
8496
8499
  note?: string;
8497
8500
  }[];
@@ -8544,6 +8547,9 @@ export namespace Service {
8544
8547
  company_namespace?: string[];
8545
8548
  createdAt?: Date;
8546
8549
  updatedAt?: Date;
8550
+ isResubmitted?: boolean;
8551
+ note?: string;
8552
+ stage?: number;
8547
8553
  }
8548
8554
 
8549
8555
  export namespace Find {
@@ -8619,7 +8625,7 @@ export namespace Service {
8619
8625
  signature?: StringId;
8620
8626
  media?: StringId[];
8621
8627
  asset_part_units: {
8622
- _id: StringId;
8628
+ _id?: StringId;
8623
8629
  asset_part_unit: StringId;
8624
8630
  qty: number;
8625
8631
  asset_part?: StringId;
@@ -8667,6 +8673,7 @@ export namespace Service {
8667
8673
  asset_part?: StringId | AssetPart.Data;
8668
8674
  asset_part_name?: string;
8669
8675
  comment?: string;
8676
+ splitted_from?: StringId | AssetPartUnit.Data;
8670
8677
  }[];
8671
8678
  asset_part_units_count?: number;
8672
8679
  total_asset_part_units_qty?: number;
@@ -8680,12 +8687,12 @@ export namespace Service {
8680
8687
  editor?: AdminOrRep;
8681
8688
  type: "returned" | "stored";
8682
8689
  sync_id: string;
8683
- transaction_processed: false;
8690
+ transaction_processed: boolean;
8684
8691
  serial_number?: SerialNumber;
8685
8692
  client: StringId;
8686
- client_name: string;
8693
+ client_name?: string;
8687
8694
  warehouse: StringId;
8688
- warehouse_name: string;
8695
+ warehouse_name?: string;
8689
8696
  teams?: StringId[];
8690
8697
  time: number;
8691
8698
  business_day?: string;
@@ -8695,6 +8702,7 @@ export namespace Service {
8695
8702
  signature?: StringId;
8696
8703
  media?: StringId[];
8697
8704
  asset_part_units: {
8705
+ _id?: StringId;
8698
8706
  asset_part_unit: StringId;
8699
8707
  qty: number;
8700
8708
  asset_part?: StringId;
@@ -8707,6 +8715,7 @@ export namespace Service {
8707
8715
  company_namespace: string[];
8708
8716
  }
8709
8717
  export interface UpdateBody {
8718
+ editor?: AdminOrRep;
8710
8719
  description?: string;
8711
8720
  custom_status?: StringId;
8712
8721
  media?: StringId[];