monkey-front-core 21.2.2 → 21.2.4
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -368,6 +368,7 @@ interface MonkeyEcxAccessHandleTokenCredentials {
|
|
|
368
368
|
groupName: string;
|
|
369
369
|
type: string;
|
|
370
370
|
programUrl: string;
|
|
371
|
+
programToken: string;
|
|
371
372
|
}
|
|
372
373
|
interface MonkeyEcxTokenCredentials {
|
|
373
374
|
username: string;
|
|
@@ -649,6 +650,7 @@ interface MonkeyEcxWhiteLabel {
|
|
|
649
650
|
};
|
|
650
651
|
};
|
|
651
652
|
support?: {
|
|
653
|
+
disable: boolean;
|
|
652
654
|
phones?: {
|
|
653
655
|
attendant?: string;
|
|
654
656
|
endHour: number;
|
|
@@ -1774,7 +1776,7 @@ type LogParams = {
|
|
|
1774
1776
|
};
|
|
1775
1777
|
declare class MonkeyEcxUtils {
|
|
1776
1778
|
static persistNullEmptyUndefined(tp: any): boolean;
|
|
1777
|
-
static getDocumentType(doc: string, country?: string): "" | "
|
|
1779
|
+
static getDocumentType(doc: string, country?: string): "" | "CPF" | "CNPJ" | "RUT" | "RFC" | "EIN";
|
|
1778
1780
|
static getDocumentMask(type: DocumentType, country?: string): CountryMasks;
|
|
1779
1781
|
static getDocumentPlaceholder(type: DocumentType, country?: string): string;
|
|
1780
1782
|
static formatDocumentWithMask(doc: string, withType?: boolean, country?: string): string;
|
|
Binary file
|