repzo 1.0.74 → 1.0.75
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 +12 -3
- package/package.json +1 -1
- package/src/types/index.ts +12 -3
package/lib/types/index.d.ts
CHANGED
|
@@ -6832,6 +6832,11 @@ export declare namespace Service {
|
|
|
6832
6832
|
teams?: string[];
|
|
6833
6833
|
custom_status?: string;
|
|
6834
6834
|
sync_id: string;
|
|
6835
|
+
transaction_processed: boolean;
|
|
6836
|
+
business_day?: string;
|
|
6837
|
+
comment?: string;
|
|
6838
|
+
document_type?: "transfer";
|
|
6839
|
+
process_time?: number;
|
|
6835
6840
|
integration_meta?: {
|
|
6836
6841
|
[key: string]: any;
|
|
6837
6842
|
};
|
|
@@ -6911,8 +6916,9 @@ export declare namespace Service {
|
|
|
6911
6916
|
};
|
|
6912
6917
|
type FindResult = Schema & {
|
|
6913
6918
|
custom_status?: string | CustomStatus.CustomStatusSchema;
|
|
6914
|
-
from: Warehouse.WarehouseSchema;
|
|
6915
|
-
to: Warehouse.WarehouseSchema;
|
|
6919
|
+
from: string | Warehouse.WarehouseSchema;
|
|
6920
|
+
to: string | Warehouse.WarehouseSchema;
|
|
6921
|
+
teams: string[] | Team.TeamSchema[];
|
|
6916
6922
|
variants: {
|
|
6917
6923
|
_id: string;
|
|
6918
6924
|
variant_id: string;
|
|
@@ -6949,7 +6955,7 @@ export declare namespace Service {
|
|
|
6949
6955
|
};
|
|
6950
6956
|
};
|
|
6951
6957
|
type TransferType = "load" | "unload";
|
|
6952
|
-
type PopulatedKeys = "custom_status";
|
|
6958
|
+
type PopulatedKeys = "custom_status" | "teams";
|
|
6953
6959
|
type TransferStatus =
|
|
6954
6960
|
| "pending"
|
|
6955
6961
|
| "approved"
|
|
@@ -6967,6 +6973,7 @@ export declare namespace Service {
|
|
|
6967
6973
|
from?: string[] | string;
|
|
6968
6974
|
from_createdAt?: number;
|
|
6969
6975
|
to_createdAt?: number;
|
|
6976
|
+
from_updatedAt?: number;
|
|
6970
6977
|
status?: TransferStatus | TransferStatus[];
|
|
6971
6978
|
custom_status?: string[] | string;
|
|
6972
6979
|
creator?: string[] | string;
|
|
@@ -7163,6 +7170,7 @@ export declare namespace Service {
|
|
|
7163
7170
|
teams?: string[];
|
|
7164
7171
|
sync_id: string;
|
|
7165
7172
|
reason?: string;
|
|
7173
|
+
transaction_processed: boolean;
|
|
7166
7174
|
company_namespace: string[];
|
|
7167
7175
|
createdAt: string;
|
|
7168
7176
|
updatedAt: string;
|
|
@@ -7174,6 +7182,7 @@ export declare namespace Service {
|
|
|
7174
7182
|
creator?: AdminCreator | RepCreator;
|
|
7175
7183
|
to: string;
|
|
7176
7184
|
variants: VariantOfAdjustInventory[];
|
|
7185
|
+
transaction_processed: boolean;
|
|
7177
7186
|
teams?: string[];
|
|
7178
7187
|
sync_id: string;
|
|
7179
7188
|
company_namespace?: string[];
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -6834,6 +6834,11 @@ export namespace Service {
|
|
|
6834
6834
|
teams?: string[];
|
|
6835
6835
|
custom_status?: string;
|
|
6836
6836
|
sync_id: string;
|
|
6837
|
+
transaction_processed: boolean;
|
|
6838
|
+
business_day?: string;
|
|
6839
|
+
comment?: string;
|
|
6840
|
+
document_type?: "transfer";
|
|
6841
|
+
process_time?: number;
|
|
6837
6842
|
integration_meta?: { [key: string]: any };
|
|
6838
6843
|
company_namespace: string[];
|
|
6839
6844
|
createdAt: string;
|
|
@@ -6906,8 +6911,9 @@ export namespace Service {
|
|
|
6906
6911
|
|
|
6907
6912
|
type FindResult = Schema & {
|
|
6908
6913
|
custom_status?: string | CustomStatus.CustomStatusSchema;
|
|
6909
|
-
from: Warehouse.WarehouseSchema;
|
|
6910
|
-
to: Warehouse.WarehouseSchema;
|
|
6914
|
+
from: string | Warehouse.WarehouseSchema;
|
|
6915
|
+
to: string | Warehouse.WarehouseSchema;
|
|
6916
|
+
teams: string[] | Team.TeamSchema[];
|
|
6911
6917
|
variants: {
|
|
6912
6918
|
_id: string;
|
|
6913
6919
|
variant_id: string;
|
|
@@ -6944,7 +6950,7 @@ export namespace Service {
|
|
|
6944
6950
|
};
|
|
6945
6951
|
};
|
|
6946
6952
|
type TransferType = "load" | "unload";
|
|
6947
|
-
type PopulatedKeys = "custom_status";
|
|
6953
|
+
type PopulatedKeys = "custom_status" | "teams";
|
|
6948
6954
|
type TransferStatus =
|
|
6949
6955
|
| "pending"
|
|
6950
6956
|
| "approved"
|
|
@@ -6962,6 +6968,7 @@ export namespace Service {
|
|
|
6962
6968
|
from?: string[] | string;
|
|
6963
6969
|
from_createdAt?: number;
|
|
6964
6970
|
to_createdAt?: number;
|
|
6971
|
+
from_updatedAt?: number;
|
|
6965
6972
|
status?: TransferStatus | TransferStatus[];
|
|
6966
6973
|
custom_status?: string[] | string;
|
|
6967
6974
|
creator?: string[] | string;
|
|
@@ -7163,6 +7170,7 @@ export namespace Service {
|
|
|
7163
7170
|
teams?: string[];
|
|
7164
7171
|
sync_id: string;
|
|
7165
7172
|
reason?: string;
|
|
7173
|
+
transaction_processed: boolean;
|
|
7166
7174
|
company_namespace: string[];
|
|
7167
7175
|
createdAt: string;
|
|
7168
7176
|
updatedAt: string;
|
|
@@ -7174,6 +7182,7 @@ export namespace Service {
|
|
|
7174
7182
|
creator?: AdminCreator | RepCreator;
|
|
7175
7183
|
to: string;
|
|
7176
7184
|
variants: VariantOfAdjustInventory[];
|
|
7185
|
+
transaction_processed: boolean;
|
|
7177
7186
|
teams?: string[];
|
|
7178
7187
|
sync_id: string;
|
|
7179
7188
|
company_namespace?: string[];
|