minerva-plexus-csd 1.1.4 → 1.1.6
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/dist/index.d.ts +16 -0
- package/dist/minerva-plexus-csd.es.js +4282 -4091
- package/dist/minerva-plexus-csd.umd.js +253 -176
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -144,6 +144,11 @@ export declare const minervaLocales: {
|
|
|
144
144
|
copied: string;
|
|
145
145
|
copycode: string;
|
|
146
146
|
welcome_text: string;
|
|
147
|
+
customticketmessage1: string;
|
|
148
|
+
customticketmessage2: string;
|
|
149
|
+
customticketbuttontext: string;
|
|
150
|
+
caduca_text: string;
|
|
151
|
+
reiniciasessio: string;
|
|
147
152
|
};
|
|
148
153
|
formLabels: {
|
|
149
154
|
loginEmail: string;
|
|
@@ -189,6 +194,7 @@ export declare const minervaLocales: {
|
|
|
189
194
|
errorCreateFailure: string;
|
|
190
195
|
errorUnexpected: string;
|
|
191
196
|
errorTokenEmail: string;
|
|
197
|
+
aceptar: string;
|
|
192
198
|
};
|
|
193
199
|
};
|
|
194
200
|
en: {
|
|
@@ -225,6 +231,11 @@ export declare const minervaLocales: {
|
|
|
225
231
|
copied: string;
|
|
226
232
|
copycode: string;
|
|
227
233
|
welcome_text: string;
|
|
234
|
+
customticketmessage1: string;
|
|
235
|
+
customticketmessage2: string;
|
|
236
|
+
customticketbuttontext: string;
|
|
237
|
+
caduca_text: string;
|
|
238
|
+
reiniciasessio: string;
|
|
228
239
|
};
|
|
229
240
|
formLabels: {
|
|
230
241
|
loginEmail: string;
|
|
@@ -270,6 +281,7 @@ export declare const minervaLocales: {
|
|
|
270
281
|
errorCreateFailure: string;
|
|
271
282
|
errorUnexpected: string;
|
|
272
283
|
errorTokenEmail: string;
|
|
284
|
+
aceptar: string;
|
|
273
285
|
};
|
|
274
286
|
};
|
|
275
287
|
};
|
|
@@ -299,6 +311,10 @@ export declare const TicketingComponent: default_2.FC<TicketingComponentProps>;
|
|
|
299
311
|
declare interface TicketingComponentProps {
|
|
300
312
|
selectedConversationId: string | undefined;
|
|
301
313
|
serviceTicketingNoUSer: boolean;
|
|
314
|
+
onTicketResult: (result: {
|
|
315
|
+
success: boolean;
|
|
316
|
+
message: string;
|
|
317
|
+
}) => void;
|
|
302
318
|
}
|
|
303
319
|
|
|
304
320
|
export declare const useApiConfig: () => ApiConfigType;
|