@cbm-common/cbm-types 0.0.256 → 0.0.257
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.
|
@@ -41,12 +41,16 @@ export declare namespace CbmPrintSettingsModel {
|
|
|
41
41
|
code: string;
|
|
42
42
|
description: string;
|
|
43
43
|
enabled: boolean;
|
|
44
|
+
beneficiary_type?: string;
|
|
45
|
+
description_dynamic?: string;
|
|
44
46
|
}
|
|
45
47
|
interface SignatureRide {
|
|
46
48
|
_id: string;
|
|
47
49
|
code: string;
|
|
48
50
|
description: string;
|
|
49
51
|
enabled: boolean;
|
|
52
|
+
beneficiary_type?: string;
|
|
53
|
+
description_dynamic?: string;
|
|
50
54
|
}
|
|
51
55
|
}
|
|
52
56
|
interface SaveBody {
|
|
@@ -102,11 +106,15 @@ export declare namespace CbmPrintSettingsModel {
|
|
|
102
106
|
code: string;
|
|
103
107
|
description: string;
|
|
104
108
|
enabled: boolean;
|
|
109
|
+
beneficiary_type?: string;
|
|
110
|
+
description_dynamic?: string;
|
|
105
111
|
}
|
|
106
112
|
interface SignatureRide {
|
|
107
113
|
code: string;
|
|
108
114
|
description: string;
|
|
109
115
|
enabled: boolean;
|
|
116
|
+
beneficiary_type?: string;
|
|
117
|
+
description_dynamic?: string;
|
|
110
118
|
}
|
|
111
119
|
}
|
|
112
120
|
interface GetOneResponse {
|
|
@@ -133,14 +141,27 @@ export declare namespace CbmPrintSettingsModel {
|
|
|
133
141
|
enabled: boolean;
|
|
134
142
|
order?: number;
|
|
135
143
|
deleted: boolean;
|
|
136
|
-
signature_data:
|
|
137
|
-
signature_data_ride:
|
|
144
|
+
signature_data: Signature[];
|
|
145
|
+
signature_data_ride: SignatureDataRide[];
|
|
138
146
|
created_at: number;
|
|
139
147
|
created_user?: string;
|
|
140
148
|
updated_at?: number;
|
|
141
149
|
updated_user?: string;
|
|
142
150
|
print_code?: string;
|
|
143
151
|
}
|
|
152
|
+
interface Signature {
|
|
153
|
+
code: string;
|
|
154
|
+
description: string;
|
|
155
|
+
enabled: boolean;
|
|
156
|
+
beneficiary_type?: string;
|
|
157
|
+
description_dynamic?: string;
|
|
158
|
+
}
|
|
159
|
+
interface SignatureDataRide {
|
|
160
|
+
code: string;
|
|
161
|
+
description: string;
|
|
162
|
+
enabled: boolean;
|
|
163
|
+
_id: string;
|
|
164
|
+
}
|
|
144
165
|
}
|
|
145
166
|
interface ConfirmResponse {
|
|
146
167
|
success: boolean;
|