spartaxx.businessmodels 1.0.304 → 1.0.305
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 +0 -1
- package/CCC/ClientInfo.ts +0 -2
- package/CCC/ClientPackageParam.ts +1 -0
- package/package.json +1 -1
package/CCC/ClientInfo.js
CHANGED
package/CCC/ClientInfo.ts
CHANGED
@@ -55,7 +55,6 @@ export interface ClientInfo {
|
|
55
55
|
ClientSignature?: string;
|
56
56
|
SigneeName?: string;
|
57
57
|
AccountInfo?: AccountInfo[];
|
58
|
-
IPAddress?: number;
|
59
58
|
}
|
60
59
|
|
61
60
|
export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
@@ -114,7 +113,6 @@ export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
|
114
113
|
ClientSignature: "",
|
115
114
|
SigneeName: "",
|
116
115
|
AccountInfo: [],
|
117
|
-
IPAddress: 0,
|
118
116
|
}
|
119
117
|
};
|
120
118
|
|