spartaxx.businessmodels 1.0.307 → 1.0.309
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/ClientInfo.js +1 -0
- package/CCC/ClientInfo.ts +2 -0
- package/package.json +1 -1
package/CCC/ClientInfo.js
CHANGED
package/CCC/ClientInfo.ts
CHANGED
@@ -55,6 +55,7 @@ export interface ClientInfo {
|
|
55
55
|
ClientSignature?: string;
|
56
56
|
SigneeName?: string;
|
57
57
|
AccountInfo?: AccountInfo[];
|
58
|
+
IPAddress?: string;
|
58
59
|
}
|
59
60
|
|
60
61
|
export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
@@ -113,6 +114,7 @@ export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
|
113
114
|
ClientSignature: "",
|
114
115
|
SigneeName: "",
|
115
116
|
AccountInfo: [],
|
117
|
+
IPAddress: ""
|
116
118
|
}
|
117
119
|
};
|
118
120
|
|