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