spartaxx.businessmodels 1.0.467 → 1.0.468
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/AccountInfo.js +1 -0
- package/CCC/AccountInfo.ts +2 -1
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -112,6 +112,7 @@ export interface AccountInfo {
|
|
112
112
|
ILThirdYearTerms?: string;
|
113
113
|
BPPStandardTerms?: string;
|
114
114
|
BPPLitigationTerms?: string;
|
115
|
+
GroupId?: number;
|
115
116
|
}
|
116
117
|
|
117
118
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -227,6 +228,6 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
227
228
|
ILThirdYearTerms: "",
|
228
229
|
BPPStandardTerms: "",
|
229
230
|
BPPLitigationTerms: "",
|
230
|
-
|
231
|
+
GroupId: 0
|
231
232
|
};
|
232
233
|
}
|