spartaxx.businessmodels 1.0.271 → 1.0.272

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/CCCModel.ts CHANGED
@@ -26,6 +26,8 @@ import { NoticeOfProtestClientInfo } from "./NoticeOfProtestClientInfo";
26
26
  import { ClientPhoneInfo, createDefaultClientPhoneInfo } from "./ClientPhoneInfo";
27
27
  import { ClientInputForm } from "./ClientInputForm";
28
28
  import { ValidateClientSignWithDocuFirstAPIParam } from "./ValidateClientSignWithDocuFirstAPIParam";
29
+ import {DynamicDMFormParams} from "CCC/DynamicDMFormParams";
30
+ import {DynamicDMFormClientInputData} from "CCC/DynamicDMFormClientInputData";
29
31
 
30
32
  export {
31
33
  ScoreCardDetails,
@@ -59,5 +61,7 @@ export {
59
61
  ClientPhoneInfo,
60
62
  createDefaultClientPhoneInfo,
61
63
  ClientInputForm,
62
- ValidateClientSignWithDocuFirstAPIParam
64
+ ValidateClientSignWithDocuFirstAPIParam,
65
+ DynamicDMFormParams,
66
+ DynamicDMFormClientInputData
63
67
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+
2
+ export interface DynamicDMFormClientInputData {
3
+ name: string;
4
+ value: string | boolean;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ import {AccountInfo} from "CCC/AccountInfo";
2
+ import {DynamicDMFormClientInputData} from "CCC/DynamicDMFormClientInputData";
3
+
4
+ export interface DynamicDMFormParams {
5
+ element?: DynamicDMFormClientInputData[];
6
+ accoundDetails: AccountInfo;
7
+ }
8
+
9
+
10
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.271",
3
+ "version": "1.0.272",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {