minerva-plexus-csd 1.1.5 → 1.1.7
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 +10 -0
- package/dist/minerva-plexus-csd.es.js +4546 -4420
- package/dist/minerva-plexus-csd.umd.js +232 -182
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -147,6 +147,8 @@ export declare const minervaLocales: {
|
|
|
147
147
|
customticketmessage1: string;
|
|
148
148
|
customticketmessage2: string;
|
|
149
149
|
customticketbuttontext: string;
|
|
150
|
+
caduca_text: string;
|
|
151
|
+
reiniciasessio: string;
|
|
150
152
|
};
|
|
151
153
|
formLabels: {
|
|
152
154
|
loginEmail: string;
|
|
@@ -192,6 +194,7 @@ export declare const minervaLocales: {
|
|
|
192
194
|
errorCreateFailure: string;
|
|
193
195
|
errorUnexpected: string;
|
|
194
196
|
errorTokenEmail: string;
|
|
197
|
+
aceptar: string;
|
|
195
198
|
};
|
|
196
199
|
};
|
|
197
200
|
en: {
|
|
@@ -231,6 +234,8 @@ export declare const minervaLocales: {
|
|
|
231
234
|
customticketmessage1: string;
|
|
232
235
|
customticketmessage2: string;
|
|
233
236
|
customticketbuttontext: string;
|
|
237
|
+
caduca_text: string;
|
|
238
|
+
reiniciasessio: string;
|
|
234
239
|
};
|
|
235
240
|
formLabels: {
|
|
236
241
|
loginEmail: string;
|
|
@@ -276,6 +281,7 @@ export declare const minervaLocales: {
|
|
|
276
281
|
errorCreateFailure: string;
|
|
277
282
|
errorUnexpected: string;
|
|
278
283
|
errorTokenEmail: string;
|
|
284
|
+
aceptar: string;
|
|
279
285
|
};
|
|
280
286
|
};
|
|
281
287
|
};
|
|
@@ -305,6 +311,10 @@ export declare const TicketingComponent: default_2.FC<TicketingComponentProps>;
|
|
|
305
311
|
declare interface TicketingComponentProps {
|
|
306
312
|
selectedConversationId: string | undefined;
|
|
307
313
|
serviceTicketingNoUSer: boolean;
|
|
314
|
+
onTicketResult: (result: {
|
|
315
|
+
success: boolean;
|
|
316
|
+
message: string;
|
|
317
|
+
}) => void;
|
|
308
318
|
}
|
|
309
319
|
|
|
310
320
|
export declare const useApiConfig: () => ApiConfigType;
|