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 CHANGED
@@ -70,6 +70,8 @@ function createDefaultClientInfo() {
70
70
  IPAddress: "",
71
71
  UserName: "",
72
72
  Password: "",
73
+ ItIsSubmitRequest: false,
74
+ GuId: ""
73
75
  };
74
76
  });
75
77
  }
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.440",
3
+ "version": "1.0.441",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {