@cellaware/utils 4.3.0 → 4.4.0
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.
|
@@ -6,7 +6,11 @@ export interface ChatWMSInstance {
|
|
|
6
6
|
url: string;
|
|
7
7
|
key: string;
|
|
8
8
|
}
|
|
9
|
+
export declare function initChatWMSInstance(): ChatWMSInstance;
|
|
9
10
|
export interface ChatWMSInstanceWarehouse {
|
|
10
11
|
clientId: string;
|
|
12
|
+
customer: string;
|
|
11
13
|
warehouse: string;
|
|
14
|
+
instanceId: string;
|
|
12
15
|
}
|
|
16
|
+
export declare function initChatWMSInstanceWarehouse(): ChatWMSInstanceWarehouse;
|
package/dist/chatwms/instance.js
CHANGED
|
@@ -1 +1,18 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export function initChatWMSInstance() {
|
|
2
|
+
return {
|
|
3
|
+
id: '',
|
|
4
|
+
clientId: '',
|
|
5
|
+
customer: '',
|
|
6
|
+
description: '',
|
|
7
|
+
url: '',
|
|
8
|
+
key: ''
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export function initChatWMSInstanceWarehouse() {
|
|
12
|
+
return {
|
|
13
|
+
clientId: '',
|
|
14
|
+
customer: '',
|
|
15
|
+
warehouse: '',
|
|
16
|
+
instanceId: ''
|
|
17
|
+
};
|
|
18
|
+
}
|