spartaxx.businessmodels 1.0.303 → 1.0.304
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
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?: number;
|
58
59
|
}
|
59
60
|
|
60
61
|
export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
@@ -112,7 +113,8 @@ export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
|
112
113
|
Title: "",
|
113
114
|
ClientSignature: "",
|
114
115
|
SigneeName: "",
|
115
|
-
AccountInfo: []
|
116
|
+
AccountInfo: [],
|
117
|
+
IPAddress: 0,
|
116
118
|
}
|
117
119
|
};
|
118
120
|
|