spartaxx.businessmodels 1.0.440 → 1.0.441
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/CCC/ClientInfo.js +2 -0
- package/CCC/ClientInfo.ts +4 -1
- package/package.json +1 -1
package/CCC/ClientInfo.js
CHANGED
package/CCC/ClientInfo.ts
CHANGED
@@ -57,8 +57,9 @@ export interface ClientInfo {
|
|
57
57
|
AccountInfo?: AccountInfo[];
|
58
58
|
IPAddress?: string;
|
59
59
|
UserName?: string;
|
60
|
-
Password?: string;
|
60
|
+
Password?: string;
|
61
61
|
ItIsSubmitRequest?: boolean;
|
62
|
+
GuId?: string;
|
62
63
|
}
|
63
64
|
|
64
65
|
export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
@@ -120,6 +121,8 @@ export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
|
120
121
|
IPAddress: "",
|
121
122
|
UserName: "",
|
122
123
|
Password: "",
|
124
|
+
ItIsSubmitRequest: false,
|
125
|
+
GuId: ""
|
123
126
|
}
|
124
127
|
};
|
125
128
|
|