spartaxx.businessmodels 1.0.401 → 1.0.402
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/ClientInfo.js +3 -1
- package/CCC/ClientInfo.ts +5 -1
- package/package.json +1 -1
package/CCC/ClientInfo.js
CHANGED
package/CCC/ClientInfo.ts
CHANGED
@@ -56,6 +56,8 @@ export interface ClientInfo {
|
|
56
56
|
SigneeName?: string;
|
57
57
|
AccountInfo?: AccountInfo[];
|
58
58
|
IPAddress?: string;
|
59
|
+
UserName?: string;
|
60
|
+
Password?: string;
|
59
61
|
}
|
60
62
|
|
61
63
|
export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
@@ -114,7 +116,9 @@ export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
|
114
116
|
ClientSignature: "",
|
115
117
|
SigneeName: "",
|
116
118
|
AccountInfo: [],
|
117
|
-
IPAddress: ""
|
119
|
+
IPAddress: "",
|
120
|
+
UserName: "",
|
121
|
+
Password: "",
|
118
122
|
}
|
119
123
|
};
|
120
124
|
|