vobi_lib 1.4.13 → 1.5.1

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 CHANGED
@@ -36,6 +36,18 @@ declare const asArray: (value: unknown) => unknown[];
36
36
 
37
37
  declare const asyncForEach: <T>(array: T[], callback: (item: T, index: number, array: T[]) => Promise<void> | void) => Promise<void>;
38
38
 
39
+ interface ValidateCredentialParams {
40
+ data: {
41
+ user?: any;
42
+ isPublic?: boolean;
43
+ isAnonymous?: boolean;
44
+ source?: string;
45
+ };
46
+ allowAudience?: string[];
47
+ permissions?: string[];
48
+ }
49
+ declare const validateCredential: ({ data, allowAudience, permissions }: ValidateCredentialParams) => any;
50
+
39
51
  declare const capitalize: (value: string) => string;
40
52
 
41
53
  declare const checkCnpj: (strCnpj: string) => boolean;
@@ -119,8 +131,12 @@ declare const isNumber: (n: any) => boolean;
119
131
 
120
132
  declare const isValidUrl: (str: string) => boolean;
121
133
 
122
- declare const getToken: (req: any) => any;
123
- declare const decodeToken: (req: any, res: any, next: any) => any;
134
+ interface Headers {
135
+ authorization?: string;
136
+ [key: string]: any;
137
+ }
138
+ declare const getToken: (headers: Headers) => string | null;
139
+ declare const decodeToken: (token: string | null) => any;
124
140
 
125
141
  declare const makeRefurbishFileUrl: (refurbish: any, userType: any, file: any, isPreview: any) => string;
126
142
 
@@ -208,4 +224,12 @@ declare const getDateOpenFinance: () => {
208
224
  yesterday: string;
209
225
  };
210
226
 
211
- export { type ArrayItem, BAD_GATEWAY, BAD_REQUEST, type Encode, FORBIDDEN, type FormatCurrencyProps, type ICustomErrorParams, INTERNAL_SERVER_ERROR, IsJsonString, METHOD_NOT_ALLOWED, NOT_ALLOWED, NOT_FOUND, SERVICE_UNAVAILABLE, UNAUTHORIZED, asArray, asBrazilianDate, asDate, asyncForEach, brazilianDateTime, brazilianDateToDate, capitalize, checkApprovalAuthority, checkCnpj, checkCpf, checkEmail, containsEncodedComponents, currentDay, curry, dateIsValid, decodeToken, decrypt, diffObject, dynamici18nString, elasticTransformOr, encrypt, enumHelper, error, eventBus, extractMonthInfo, extractValueFromWhere, filterAttributes, filterEmpty, findValue, firstMonthDay, flatMapData, flattenChildren, formatCurrency, formatDate, formatDocument, formatNumber, formatNumberAnyFormat, getDateOpenFinance, getExtension, getMonthNumber, getNameWithoutExtension, getNextDay, getNextWeekday, getPreviewsWeekday, getToday, getToken, getTomorrow, getYesterday, imgSrcRegex, isAfter, isDateValid, isNumber, isOfAge, isValidUrl, lastMonthDay, makeRefurbishFileUrl, maxDateToList, minDateToList, monthsBetween, normalizeString, nullIfEmpty, padLeft, parseArrayAsObject, parseRouteToModel, prepareDoc, prepareSession, promiseAny, promiseEach, removeProperty, removeSpecialChar, replaceNumberOrPercentage, slugify, splitList, sum, sumByFunction, validateMobilePhoneNumber, valueReplacer };
227
+ interface ConfigType {
228
+ [key: string]: any;
229
+ sources: any[];
230
+ }
231
+ declare const configure: (options?: Record<string, any>) => void;
232
+ declare const getConfig: () => ConfigType;
233
+ declare const get: <T>(key: string, defaultValue?: T) => T;
234
+
235
+ export { type ArrayItem, BAD_GATEWAY, BAD_REQUEST, type Encode, FORBIDDEN, type FormatCurrencyProps, type ICustomErrorParams, INTERNAL_SERVER_ERROR, IsJsonString, METHOD_NOT_ALLOWED, NOT_ALLOWED, NOT_FOUND, SERVICE_UNAVAILABLE, UNAUTHORIZED, asArray, asBrazilianDate, asDate, asyncForEach, brazilianDateTime, brazilianDateToDate, capitalize, checkApprovalAuthority, checkCnpj, checkCpf, checkEmail, configure, containsEncodedComponents, currentDay, curry, dateIsValid, decodeToken, decrypt, diffObject, dynamici18nString, elasticTransformOr, encrypt, enumHelper, error, eventBus, extractMonthInfo, extractValueFromWhere, filterAttributes, filterEmpty, findValue, firstMonthDay, flatMapData, flattenChildren, formatCurrency, formatDate, formatDocument, formatNumber, formatNumberAnyFormat, get, getConfig, getDateOpenFinance, getExtension, getMonthNumber, getNameWithoutExtension, getNextDay, getNextWeekday, getPreviewsWeekday, getToday, getToken, getTomorrow, getYesterday, imgSrcRegex, isAfter, isDateValid, isNumber, isOfAge, isValidUrl, lastMonthDay, makeRefurbishFileUrl, maxDateToList, minDateToList, monthsBetween, normalizeString, nullIfEmpty, padLeft, parseArrayAsObject, parseRouteToModel, prepareDoc, prepareSession, promiseAny, promiseEach, removeProperty, removeSpecialChar, replaceNumberOrPercentage, slugify, splitList, sum, sumByFunction, validateCredential, validateMobilePhoneNumber, valueReplacer };
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- "use strict";var ee=Object.create;var b=Object.defineProperty;var te=Object.getOwnPropertyDescriptor;var ae=Object.getOwnPropertyNames;var oe=Object.getPrototypeOf,ne=Object.prototype.hasOwnProperty;var re=(e,t)=>{for(var a in t)b(e,a,{get:t[a],enumerable:!0})},q=(e,t,a,o)=>{if(t&&typeof t=="object"||typeof t=="function")for(let r of ae(t))!ne.call(e,r)&&r!==a&&b(e,r,{get:()=>t[r],enumerable:!(o=te(t,r))||o.enumerable});return e};var h=(e,t,a)=>(a=e!=null?ee(oe(e)):{},q(t||!e||!e.__esModule?b(a,"default",{value:e,enumerable:!0}):a,e)),se=e=>q(b({},"__esModule",{value:!0}),e);var Dt={};re(Dt,{BAD_GATEWAY:()=>ce,BAD_REQUEST:()=>l,FORBIDDEN:()=>le,INTERNAL_SERVER_ERROR:()=>I,IsJsonString:()=>pe,METHOD_NOT_ALLOWED:()=>de,NOT_ALLOWED:()=>N,NOT_FOUND:()=>R,SERVICE_UNAVAILABLE:()=>ue,UNAUTHORIZED:()=>E,asArray:()=>A,asBrazilianDate:()=>S,asDate:()=>v,asyncForEach:()=>fe,brazilianDateTime:()=>W,brazilianDateToDate:()=>Te,capitalize:()=>P,checkApprovalAuthority:()=>yt,checkCnpj:()=>ge,checkCpf:()=>ye,checkEmail:()=>he,containsEncodedComponents:()=>xe,currentDay:()=>F,curry:()=>De,dateIsValid:()=>Ve,decodeToken:()=>Ke,decrypt:()=>be,diffObject:()=>Ee,dynamici18nString:()=>Ce,elasticTransformOr:()=>ve,encrypt:()=>Be,enumHelper:()=>n,error:()=>x,eventBus:()=>Ne,extractMonthInfo:()=>gt,extractValueFromWhere:()=>Re,filterAttributes:()=>Ae,filterEmpty:()=>Pe,findValue:()=>L,firstMonthDay:()=>w,flatMapData:()=>mt,flattenChildren:()=>k,formatCurrency:()=>T,formatDate:()=>H,formatDocument:()=>ht,formatNumber:()=>qe,formatNumberAnyFormat:()=>ze,getDateOpenFinance:()=>xt,getExtension:()=>$e,getMonthNumber:()=>Ue,getNameWithoutExtension:()=>Ie,getNextDay:()=>Le,getNextWeekday:()=>J,getPreviewsWeekday:()=>K,getToday:()=>Oe,getToken:()=>X,getTomorrow:()=>ke,getYesterday:()=>Fe,imgSrcRegex:()=>Ye,isAfter:()=>we,isDateValid:()=>We,isNumber:()=>He,isOfAge:()=>_e,isValidUrl:()=>Je,lastMonthDay:()=>O,makeRefurbishFileUrl:()=>Qe,maxDateToList:()=>Me,minDateToList:()=>je,monthsBetween:()=>Se,normalizeString:()=>pt,nullIfEmpty:()=>Ze,padLeft:()=>Xe,parseArrayAsObject:()=>et,parseRouteToModel:()=>tt,prepareDoc:()=>at,prepareSession:()=>ot,promiseAny:()=>nt,promiseEach:()=>me,removeProperty:()=>rt,removeSpecialChar:()=>st,replaceNumberOrPercentage:()=>ft,slugify:()=>it,splitList:()=>lt,sum:()=>dt,sumByFunction:()=>ct,validateMobilePhoneNumber:()=>ut,valueReplacer:()=>B});module.exports=se(Dt);var z={userNotFound:"Usu\xE1rio n\xE3o foi encontrado.",pageNotFound:"Desculpe. P\xE1gina n\xE3o encontrada.",notAuthorized:"N\xE3o autorizado.",tokenExpired:"Sess\xE3o expirada.",invalidToken:"Token inv\xE1lido.",notUpdated:"Nenhum registro foi alterado.",cantDelete:"Esse registro est\xE1 sendo usado, por isso n\xE3o \xE9 poss\xEDvel apaga-lo.",general:"Ocorreu um erro.",sentError:"Erro ao enviar proposta",noUser:"Usu\xE1rio n\xE3o encontrado.",noEmail:"E-mail n\xE3o foi informado",noPassword:"Senha n\xE3o foi informada.",invalidEmail:"O e-mail informado \xE9 inv\xE1lido.",uniqueEmail:"O e-mail informado j\xE1 est\xE1 cadastrado.",invalidCPF:"O CPF informado \xE9 inv\xE1lido.",invalidCNPJ:"O CNPJ informado \xE9 inv\xE1lido.",uniqueName:"Nome informado j\xE1 cadastrado.",noName:"Nome n\xE3o foi informado.",noData:"Dados n\xE3o informados.",noDate:"Data n\xE3o informada.",noModel:"Ocorreu um erro com a entidade",invalidId:"Id inv\xE1lido",invalidCredentials:"Usu\xE1rio e/ou senha inv\xE1lidos.",noPhone:"Telefone n\xE3o foi informado.",noCPF:"CPF n\xE3o foi informado.",noRG:"RG n\xE3o foi informado.",noZipcode:"CEP n\xE3o foi informado.",noStreet:"Endere\xE7o n\xE3o foi informado.",noNumber:"N\xFAmero n\xE3o foi informado.",noState:"Estado n\xE3o foi informado.",noCity:"Cidade n\xE3o foi informada.",noNeighborhood:"Bairro n\xE3o foi informado.",noCNPJ:"CNPJ n\xE3o foi informado.",noCompanyName:"Raz\xE3o social n\xE3o foi informada.",noTrademarkName:"Nome fantasia n\xE3o foi informado.",noCompanyZipcode:"CEP da empresa n\xE3o foi informado.",noCompanyStreet:"Endere\xE7o da empresa n\xE3o foi informado.",noCompanyNumber:"N\xFAmero da empresa n\xE3o foi informado.",noCompanyState:"Estado da empresa n\xE3o foi informado.",noCompanyCity:"Cidade da empresa n\xE3o foi informado.",noCompanyNeighborhood:"Bairro da empresa n\xE3o foi informado.",noBirthdate:"Data de nascimento n\xE3o foi informada.",noCompany:"Empresa n\xE3o informada.",invalidURL:"URL inv\xE1lida.",noPermissions:"Permiss\xF5es n\xE3o encontradas.",fileLimit50:"Os arquivos n\xE3o pode ter mais de 50 MB. Para arquivos maiores voc\xEA pode informar a url de um servidor externo.",fileLimit10:"Os arquivos n\xE3o pode ter mais de 10 MB. Para arquivos maiores voc\xEA pode informar a url de um servidor externo no corpo da mensagem.",maxLength:"O nome deve ter no m\xE1ximo 255 caracteres.",invalidData:"Dados inv\xE1lidos.",invalidDate:"Data inv\xE1lida.",invalidDates:"Data de in\xEDcio n\xE3o pode ser maior que data de fim.",invalidUUID:"A URL informada n\xE3o foi encontrada, verifique se est\xE1 correto o link desejado.",invalidValue:"Valor informado inv\xE1lido.",invalidDoc:"O documento informado (CNPJ/CPF) est\xE1 incorreto.",docAlreadyExists:"Documento j\xE1 cadastrado.",tokenPasswordError:"Link de recupera\xE7\xE3o de senha inv\xE1lido.",errPassword:"Senha est\xE1 inv\xE1lida.",noParameters:"Par\xE2metros n\xE3o informado.",uniqueCode:"C\xF3digo j\xE1 cadastrado."};var x={},$={en:z,"pt-br":"PT_BR_LOCALE"},i=$.en||$.en,l=400,N=405,E=401,le=403,R=404,de=405,I=500,ce=502,ue=503;x.NOT_FOUND={userNotFound:{statusCode:R,code:"NF-00001",message:i.userNotFound},pageNotFound:{statusCode:R,code:"NF-00002",message:i.pageNotFound}};x.UNAUTHORIZED={notAuthorized:{statusCode:E,code:"UA-00001",message:i.notAuthorized},tokenExpired:{statusCode:E,code:"UA-00002",message:i.tokenExpired},invalidToken:{statusCode:E,code:"UA-00003",message:i.invalidToken}};x.NOT_ALLOWED={notUpdated:{statusCode:N,code:"NA-00001",message:i.notUpdated},cantDelete:{statusCode:N,code:"NA-00002",message:i.cantDelete}};x.INTERNAL_SERVER_ERROR={general:{statusCode:I,code:"ISE-00001",message:i.general},sentError:{statusCode:I,code:"ISE-00002",message:i.sentError}};x.BAD_REQUEST={noUser:{statusCode:l,code:"LIB-B-00001",message:i.noUser},noEmail:{statusCode:l,code:"LIB-B-00002",message:i.noEmail},noPassword:{statusCode:l,code:"LIB-B-00003",message:i.noPassword},invalidEmail:{statusCode:l,code:"LIB-B-00004",message:i.invalidEmail},uniqueEmail:{statusCode:l,code:"LIB-B-00005",message:i.uniqueEmail},invalidCPF:{statusCode:l,code:"LIB-B-00006",message:i.invalidCPF},invalidCNPJ:{statusCode:l,code:"LIB-B-00007",message:i.invalidCNPJ},uniqueName:{statusCode:l,code:"LIB-B-00008",message:i.uniqueName},noName:{statusCode:l,code:"LIB-B-00009",message:i.noName},noData:{statusCode:l,code:"LIB-B-00010",message:i.noData},invalidCredentials:{statusCode:l,code:"LIB-B-00011",message:i.invalidCredentials},tokenPasswordError:{statusCode:l,code:"LIB-B-00012",message:i.tokenPasswordError},errPassword:{statusCode:l,code:"LIB-B-00013",message:i.errPassword},noPhone:{statusCode:l,code:"LIB-B-00014",message:i.noPhone},noCPF:{statusCode:l,code:"LIB-B-00015",message:i.noCPF},noRG:{statusCode:l,code:"LIB-B-00016",message:i.noRG},noZipcode:{statusCode:l,code:"LIB-B-00017",message:i.noZipcode},noStreet:{statusCode:l,code:"LIB-B-00018",message:i.noStreet},noNumber:{statusCode:l,code:"LIB-B-00019",message:i.noNumber},noState:{statusCode:l,code:"LIB-B-00020",message:i.noState},noCity:{statusCode:l,code:"LIB-B-00021",message:i.noCity},noNeighborhood:{statusCode:l,code:"LIB-B-00022",message:i.noNeighborhood},noCNPJ:{statusCode:l,code:"LIB-B-00023",message:i.noCNPJ},noCompanyName:{statusCode:l,code:"LIB-B-00024",message:i.noCompanyName},noTrademarkName:{statusCode:l,code:"LIB-B-00025",message:i.noTrademarkName},noCompanyZipcode:{statusCode:l,code:"LIB-B-00026",message:i.noCompanyZipcode},noCompanyStreet:{statusCode:l,code:"LIB-B-00027",message:i.noCompanyStreet},noCompanyNumber:{statusCode:l,code:"LIB-B-00028",message:i.noCompanyNumber},noCompanyState:{statusCode:l,code:"LIB-B-00029",message:i.noCompanyState},noCompanyCity:{statusCode:l,code:"LIB-B-00030",message:i.noCompanyCity},noCompanyNeighborhood:{statusCode:l,code:"PRO-00031",message:i.noCompanyNeighborhood},noBirthdate:{statusCode:l,code:"LIB-B-00032",message:i.noBirthdate},noCompany:{statusCode:l,code:"LIB-B-00033",message:i.noCompany},noParameters:{statusCode:l,code:"LIB-B-00034",message:i.noParameters},invalidDoc:{statusCode:l,code:"LIB-B-00035",message:i.invalidDoc},docAlreadyExists:{statusCode:l,code:"LIB-B-00036",message:i.docAlreadyExists},invalidURL:{statusCode:l,code:"LIB-B-00037",message:i.invalidURL},noPermissions:{statusCode:l,code:"LIB-B-00038",message:i.noPermissions},fileLimit50:{statusCode:l,code:"LIB-B-00039",message:i.fileLimit50},fileLimit10:{statusCode:l,code:"LIB-B-00040",message:i.fileLimit10},invalidDates:{statusCode:l,code:"LIB-B-00041",message:i.invalidDates},maxLength:{statusCode:l,code:"LIB-B-00042",message:i.maxLength},uniqueCode:{statusCode:l,code:"LIB-B-00043",message:i.uniqueCode},invalidValue:{statusCode:l,code:"LIB-B-00044",message:i.invalidValue},invalidData:{statusCode:l,code:"LIB-B-00045",message:i.invalidData},invalidUUID:{statusCode:l,code:"LIB-B-00046",message:i.invalidUUID},noDate:{statusCode:l,code:"LIB-B-00047",message:i.noDate},invalidDate:{statusCode:l,code:"LIB-B-00048",message:i.invalidDate},invalidId:{statusCode:l,code:"LIB-B-00049",message:i.invalidId},noModel:{statusCode:l,code:"LIB-B-00050",message:i.noModel},sequelizeValidation:{statusCode:l,code:"LIB-B-00999"}};var pe=e=>{try{JSON.parse(e)}catch{return!1}return JSON.parse(e)};var me=async(e,t)=>{for(let a of e)await t(a,e.indexOf(a))};var A=e=>e==null?[]:Array.isArray(e)?e:[e];var fe=async(e,t)=>{await Promise.all(e.map((a,o)=>t(a,o,e)))};var P=e=>{if(typeof e!="string")return"";let t=e.trim();return t.charAt(0).toUpperCase()+t.slice(1)};var ge=e=>{let t,a,o,r,d,c,m=!0;if(e.length<14)return!1;for(let p=1;p<e.length;p++)if(e.charAt(p-1)!==e.charAt(p)){m=!1;break}if(!m){c=e.length-2,t=e.substring(0,c),a=e.substring(c),o=0,d=c-7;for(let p=0;p<c;p++)o+=parseInt(t.charAt(p))*d--,d<2&&(d=9);if(r=o%11<2?0:11-o%11,r!==parseInt(a.charAt(0)))return!1;c+=1,t=e.substring(0,c),o=0,d=c-7;for(let p=0;p<c;p++)o+=parseInt(t.charAt(p))*d--,d<2&&(d=9);return r=o%11<2?0:11-o%11,r===parseInt(a.charAt(1))}return!1};var ye=(e,t=!1)=>{let a,o;return a=0,e.length<11||!t&&e.split("").every(r=>r===e[0])||(Array.from({length:9}).forEach((r,d)=>{a+=parseInt(e.substring(d,d+1),10)*(11-(d+1))}),o=a*10%11,(o===10||o===11)&&(o=0),o!==parseInt(e.substring(9,10),10))?!1:(a=0,Array.from({length:10}).forEach((r,d)=>{a+=parseInt(e.substring(d,d+1),10)*(12-(d+1))}),o=a*10%11,(o===10||o===11)&&(o=0),o===parseInt(e.substring(10,11),10))};var he=e=>/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(e);var xe=e=>decodeURI(e)!==decodeURIComponent(e);var De=e=>(...t)=>e.length>t.length?e.bind(null,...t):e(...t);var C=h(require("crypto-js")),be=(e,t)=>C.AES.decrypt(e,t).toString(C.enc.Utf8);var Ee=(e,t)=>Object.keys(t).reduce((a,o)=>{if(e[o]===t[o]||o==="lastModifiedBy"||o==="createdAt")return a;let{oldData:r,newData:d}=a;return{oldData:{...r,[o]:e[o]},newData:{...d,[o]:t[o]}}},{});var Ce=(e,t)=>e&&typeof e=="string"?e.search(/[a-z]\.[a-z]/i)>=0?t.__(e):e:"";var ve=e=>{let t={};return e==null||e.forEach(a=>{Object.keys(a).forEach(r=>{typeof a[r]=="string"&&(a[r].toLowerCase()==="true"||a[r].toLowerCase()==="false")?t[r]=a[r].toLowerCase()==="true":t[r]=a[r]})}),t};var Y=h(require("crypto-js")),Be=(e,t)=>(typeof e=="object"&&(e=JSON.stringify(e)),Y.AES.encrypt(e,t).toString());var n={};n.fileType={receipt:"receipt",paymentVoucher:"paymentVoucher",quote:"quote",others:"others",project:"project",proposal:"proposal",bankBillet:"bankBillet",refund:"refund"};n.refurbishItemStatus={approved:{label:"Aprovado",value:"approved"},rejected:{label:"N\xE3o aprovado",value:"rejected"},pending:{label:"Para aprovar",value:"pending"},activeStatus:["approved","pending"]};n.companyStatus={created:{id:1,name:"Cadastro iniciado"},onBoarding:{id:2,name:"Aguardando libera\xE7\xE3o"},active:{id:3,name:"Ativo"},blocked:{id:4,name:"Bloqueado"},cancelled:{id:5,name:"Cancelada"}};n.companyType={architect:{id:1,name:"Arquitetura e design de interiores",roles:["architect"]},service:{id:2,name:"Execu\xE7\xE3o de obra"},store:{id:3,name:"Loja de produtos e materiais"},factory:{id:4,name:"Fabricante"},other:{id:10,name:"Outros"}};n.refurbishStatus={new:{id:1,name:"Novo"},contact:{id:2,name:"Em contato"},proposalSent:{id:3,name:"Proposta enviada"},archived:{id:4,name:"Arquivada"},winner:{id:5,name:"Ganha",winner:!0},execution:{id:5,name:"Em andamento"},finished:{id:6,name:"Finalizado"},cancelled:{id:7,name:"Cancelado"},activeOpportunity:[1,2,3],opportunity:[1,2,3,4],project:[5,6,7],end:[4,5,6,7]};n.refurbishStage={1:{id:1,name:"Oportunidade"},2:{id:2,name:"Projeto"}};n.roles={admin:{id:"admin",name:"Administrador"},sales:{id:"sales",name:"Venda"},arch:{id:"architect",name:"Arquitetura"},plan:{id:"plan",name:"Planejamento"},work:{id:"work",name:"Obra"},quality:{id:"quality",name:"Qualidade"},supply:{id:"supply",name:"Suprimentos"},contractor:{id:"contractor",name:"Empreiteiro"},beta:{id:"beta",name:"Beta user"}};n.userType={guest:{name:"Visitante",value:"guest",type:"visitante"},operator:{name:"Operador",value:"operator",type:"operador"},customer:{name:"Cliente",value:"customer",type:"cliente"},provider:{name:"Profissional",value:"provider",type:"profissional"},system:{name:"Sistema",value:"system",type:"sistema"},anonymous:{name:"An\xF4nimo",value:"anonymous"},realTypes:["guest","operator","customer","provider"],validatePermission:["system","provider"],all:["system","provider","customer","operator"]};n.paymentStatus={waitingOrder:1,analyzing:2,waitingRelease:3,released:4,transferred:5,markAsPaid:6,allowTransfer:[3,4],allowChange:[1,6],sendEmail:[4,5]};n.personTypes={pf:"pf",pj:"pj"};n.asaasPersonTypes={pf:"FISICA",pj:"JURIDICA"};n.stepAccount={personal:0,address:1,documents:2};n.statusVobiPay={PENDING:{color:"#FF8E1B",label:"Em an\xE1lise"}};n.refurbishItemType={product:1,labor:2,parent:3,composition:4,notParent:[1,2,4],productLabor:[1,2]};n.notificationChannel={system:"system",email:"email",whatsApp:"whatsApp"};n.planType={free:{value:"free",label:"freemium"},paid:{value:"paid",label:"Pago"}};n.installmentStatuses={pendingPayment:1,paid:2,confirm:3,paidManually:4,inAnalysis:5,refunded:6,refundRequested:7,onGoingRefund:8,chargebackRequested:9,onGoingChargeback:10,waitingChargeback:11,cancelled:12,all:[1,2,3,4,5,6,7,8,9,10],paidVobiPay:[2,3,7,8,9,10,11],bankStatement:[2,4,6,7,8,9,10,11],allPaid:[2,3,4,7,8,9,10,11],allPaidBalance:[2,4,7,8,9,10,11],allPending:[1,5]};n.paymentStatuses={draft:1,open:2,paid:3,cancelled:4,realValues:[2,3],allStatus:[1,2,3,4]};n.billType={income:"receita",expense:"despesa",transfer:"transferencia",balance:"saldo inicial"};n.paymentTypeValues={expense:{value:"expense",label:"despesa"},income:{value:"income",label:"receita"},transfer:{value:"transfer",label:"transfer\xEAncia"},payment:{value:"payment",label:"pagamento"},balance:{value:"balance",label:"saldo inicial"}};n.financialCategories={serviceSelling:1,productsSelling:2,fee:3,investimentIncome:4,others:5,advanceFutureCapital:6,capitalIncrease:7,bankLoan:8,institutionLoan:9,partnerLoan:10,paymentShareCapital:11};n.getEnumValue=(e,t,a=["id","name"])=>{let o=null;return!e||!t||Object.keys(e).some(r=>e[r][a[0]]===t?(o=e[r][a[1]],!0):!1),o};n.asaasPixType={CPF:"CPF",CNPJ:"CNPJ",EMAIL:"E-mail",PHONE:"Celular",EVP:"Aleat\xF3ria"};n.paymentTypes={pix:1,bankSlip:2,creditCard:3,debitCard:4,transfer:5,money:6,other:7};n.paymentTypesDesc={1:"Pix",2:"Boleto",3:"Cart\xE3o de cr\xE9dito",4:"Cart\xE3o de d\xE9bito",5:"Transfer\xEAncia",6:"Dinheiro",7:"Outro"};n.vobiPayPaymentType={pix:1,bankSlip:2,creditCard:3,all:[1,2,3],1:"pix",2:"bankSlip",3:"creditCard"};n.asaasPaymentStatus={PENDING:{label:"PENDING",value:n.installmentStatuses.pendingPayment},RECEIVED:{label:"RECEIVED",value:n.installmentStatuses.paid},CONFIRMED:{label:"CONFIRMED",value:n.installmentStatuses.confirm},OVERDUE:{label:"OVERDUE",value:null},REFUNDED:{label:"REFUNDED",value:n.installmentStatuses.refunded},RECEIVED_IN_CASH:{label:"RECEIVED_IN_CASH",value:n.installmentStatuses.paidManually},REFUND_REQUESTED:{label:"REFUND_REQUESTED",value:n.installmentStatuses.refundRequested},REFUND_IN_PROGRESS:{label:"REFUND_IN_PROGRESS",value:n.installmentStatuses.onGoingRefund},CHARGEBACK_REQUESTED:{label:"CHARGEBACK_REQUESTED",value:n.installmentStatuses.chargebackRequested},CHARGEBACK_DISPUTE:{label:"CHARGEBACK_DISPUTE",value:n.installmentStatuses.onGoingChargeback},AWAITING_CHARGEBACK_REVERSAL:{label:"AWAITING_CHARGEBACK_REVERSAL",value:n.installmentStatuses.waitingChargeback},DUNNING_REQUESTED:{label:"DUNNING_REQUESTED",value:null},DUNNING_RECEIVED:{label:"DUNNING_RECEIVED",value:null},AWAITING_RISK_ANALYSIS:{label:"AWAITING_RISK_ANALYSIS",value:n.installmentStatuses.inAnalysis}};n.maxLimitPayment={credit:{value:2e4,label:"20.000,00"},installment:{value:15e4,label:"150.000,00"},minimumInstallmentValue:{value:10,label:"10,00"},maximumInstallments:{value:12}};n.asaasWithdrawStatus={PENDING:"PENDING",PROCESSING:"PROCESSING",DONE:"DONE",FAILED:"FAILED",CANCELLED:"CANCELLED",BLOCKED:"BLOCKED"};n.withdrawStatuses={DONE:"Efetuada",PENDING:"Pendente",BANK_PROCESSING:"Processando",CANCELLED:"Cancelada",FAILED:"Falhou",BLOCKED:"Bloqueado",group:{done:["DONE"],open:["PENDING","BANK_PROCESSING"],error:["CANCELLED","FAILED","BLOCKED"]}};n.vobiPayBankAccountType={corrente:"CONTA_CORRENTE",poupanca:"CONTA_POUPANCA",salario:"CONTA_SALARIO",pagamento:"CONTA_DE_PAGAMENTO"};n.withdrawSteps={list:1,fillData:2,confirmData:3};n.billingManagerStatus={pending:1,send:2,error:3,discarded:4,notSent:5,sending:6};n.billingManagerStatusDesc={1:"Aguardando",2:"Enviado",3:"Erro",4:"Descartado",5:"N\xE3o enviado",6:"Enviando"};n.billingManagerChannels={allChannels:["email","sms","whatsapp"],email:{value:"email",label:"E-mail"},sms:{value:"sms",label:"SMS"},whatsapp:{value:"whatsapp",label:"WhatsApp"}};n.billingManagerType={allTypes:["DC","D-3","D0","D+1","D+3","D+6"],billingRulerType:["D-3","D0","D+1","D+3","D+6"],DC:{label:"Cria\xE7\xE3o da cobran\xE7a",value:"DC",tooltip:"Ao criar a cobran\xE7a",message:"de cobran\xE7a criada para {customerName} {value}"},"D-3":{label:"3 dias antes do vencimento",value:"D-3",tooltip:"3 dias antes do vencimento das parcelas",message:"de aviso de vencimento em 3 dias para {customerName} {value}"},D0:{label:"Dia do vencimento",value:"D0",tooltip:"No dia do vencimento da parcela",message:"de aviso de cobran\xE7a vencendo hoje para {customerName} {value}"},"D+1":{label:"1 dia ap\xF3s o vencimento",value:"D+1",tooltip:"1 dia ap\xF3s o vencimento de cada parcela",message:"de aviso de cobran\xE7a vencida h\xE1 1 dia para {customerName} {value}"},"D+3":{label:"3 dias ap\xF3s o vencimento",value:"D+3",tooltip:"3 dias ap\xF3s o vencimento de cada parcela",message:"de aviso de cobran\xE7a vencida h\xE1 3 dias para {customerName} {value}"},"D+6":{label:"6 dias ap\xF3s o vencimento",value:"D+6",tooltip:"6 dias ap\xF3s o vencimento de cada parcela",message:"de aviso de cobran\xE7a vencida h\xE1 6 dias para {customerName} {value}"}};n.paymentCreditPermission={allowed:2e4,blocked:0};n.withdrawLimit={pj:{daytime:2e4,nightly:5e3},pf:{daytime:2e4,nightly:5e3}};n.optionsRefurbishReport={financialPhysical:"financialPhysics",budgeted:"budgeted",financial:"financial",physic:"physic",financialPhysicBudgeted:{value:"financialPhysics.budgeted"},physicBudgeted:{value:"physic.budgeted"},physicAccomplished:{value:"physic.accomplished"},financialBudgeted:{value:"financial.budgeted"},financialAccomplished:{value:"financial.accomplished"},financialBudAcp:{value:"financial.budgetedAccomplished"},physicBudAcp:{value:"physic.budgetedAccomplished"}};n.refurbishReportType={budgeted:[n.optionsRefurbishReport.financialPhysicBudgeted.value,n.optionsRefurbishReport.physicBudgeted.value,n.optionsRefurbishReport.financialBudgeted.value],accomplished:[n.optionsRefurbishReport.physicAccomplished.value,n.optionsRefurbishReport.financialAccomplished.value],budgetedAccomplished:[n.optionsRefurbishReport.financialBudAcp.value,n.optionsRefurbishReport.physicBudAcp.value],common:[n.optionsRefurbishReport.financialPhysicBudgeted.value,n.optionsRefurbishReport.physicBudgeted.value,n.optionsRefurbishReport.physicBudAcp.value,n.optionsRefurbishReport.financialBudgeted.value,n.optionsRefurbishReport.financialBudAcp.value],measurement:[n.optionsRefurbishReport.physicAccomplished.value],financial:[n.optionsRefurbishReport.financialAccomplished.value],customColumns:[n.optionsRefurbishReport.physicBudAcp.value,n.optionsRefurbishReport.financialBudAcp.value],simpleExport:[n.optionsRefurbishReport.physicAccomplished.value,n.optionsRefurbishReport.financialAccomplished.value,n.optionsRefurbishReport.physicBudgeted.value,n.optionsRefurbishReport.financialBudgeted.value]};n.reportTypeActions={consolidatedByProject:{model:"refurbishes",clickRow:!1,groupBy:"refurbishes",rangeField:"paidDate",idInstallmentStatus:n.installmentStatuses.allPaid,howDoesItsWorksId:"howFinancialReportByProjectStatusPaid",tableTitle:"Resultado de projetos",tableTitleTooltip:"S\xE3o contabilizadas apenas parcelas que j\xE1 foram marcadas como pago das receitas e despesas.",withResultChart:!0,filters:{dateRangePicker:!0,selectDateFieldTofilter:!0,yearPicker:!1,columns:!0},showLegend:!0,exportCsvModel:"financial/report",exportEntity:"consolidatedByProject"},foreseenByProject:{model:"refurbishes",clickRow:!1,groupBy:"refurbishes",rangeField:"dueDate",howDoesItsWorksId:"howFinancialReportByProjectAllStatus",tableTitle:"Previs\xE3o de resultado dos projetos",tableTitleTooltip:"S\xE3o contabilizadas todas as receitas e despesas, que j\xE1 foram pagas ou ainda em aberto.",withResultChart:!0,filters:{dateRangePicker:!0,selectDateFieldTofilter:!0,yearPicker:!1,columns:!0},showLegend:!0,exportCsvModel:"financial/report",exportEntity:"foreseenByProject"},resultsByInstallment:{model:"installments",clickRow:!0,groupBy:"months",rangeField:"paidDate",idInstallmentStatus:n.installmentStatuses.allPaid,howDoesItsWorksId:"howResultsWork",tableTitle:"Transa\xE7\xF5es realizadas",tableTitleTooltip:"S\xE3o contabilizadas apenas parcelas que j\xE1 foram marcadas como pago das receitas e despesas",withResultChart:!0,filters:{dateRangePicker:!0,selectDateFieldTofilter:!0,yearPicker:!1,columns:!0},showLegend:!0,exportCsvModel:"financial",exportEntity:"resultsByInstallment"},"cashFlow-monthly":{model:"cashFlow",idInstallmentStatus:n.installmentStatuses.allPaid,howDoesItsWorksId:"howCashFlowWork",tableTitle:"Fluxo de caixa",tableTitleTooltip:"",withResultChart:!1,filters:{dateRangePicker:!1,selectDateFieldTofilter:!1,yearPicker:!0,columns:!0},showLegend:!1,exportCsvModel:"financial/cashFlow",exportEntity:"cashFlow"},dre:{model:"dre",howDoesItsWorksId:"howDREWorks",filters:{dateRangePicker:!1,selectDateFieldTofilter:!1,yearPicker:!0,columns:!1},showLegend:!1,exportCsvModel:"financial/dre",exportEntity:"dre"},"cashFlow-daily":{model:"cashFlow",howDoesItsWorksId:"howDailyCashFlowWorks",tableTitleTooltip:"",filters:{dateRangePicker:!1,selectDateFieldTofilter:!1,monthPicker:!0,columns:!1,paymentBankAccount:!0},showLegend:!1,exportCsvModel:"financial/dailyCashFlow",exportEntity:"dailyCashFlow"}};n.extraValuesPayment={taxes:"taxes",discount:"discount",shipping:"shipping",dueDateDiscount:"dueDateDiscount",dueDateDiscountType:"dueDateDiscountType",dueDateLimitDays:"dueDateLimitDays",fine:"fine",fineType:"fineType",interest:"interest"};n.extraValuesPaymentType={simple:[n.extraValuesPayment.taxes,n.extraValuesPayment.discount,n.extraValuesPayment.shipping],asaas:[n.extraValuesPayment.dueDateDiscount,n.extraValuesPayment.dueDateDiscountType,n.extraValuesPayment.dueDateLimitDays,n.extraValuesPayment.fine,n.extraValuesPayment.fineType,n.extraValuesPayment.interest]};n.fineInterestDiscountType={percentage:{value:"PERCENTAGE",label:"Percentual"},fixed:{value:"FIXED",label:"Valor fixo"}};n.paymentPermissions={financialResume:"financialResume",financialSupplier:"financialSupplier",financialOwnBusiness:"financialOwnBusiness",financialIncome:"financialIncome",financialExpense:"financialExpense",financialTransfer:"financialTransfer",financialResults:"financialResults",financialBankStatement:"financialBankStatement",financialReport:"financialReport",projectResume:"projectResume",projectSupplier:"projectSupplier",projectOwnBusiness:"projectOwnBusiness",projectIncome:"projectIncome",projectExpense:"projectExpense",projectResults:"projectResults",projectBudgetedAccomplished:"projectBudgetedAccomplished"};n.colors={primary50:"#EBF0FF",primary100:"#D6E2FF",primary400:"#4F8EFA",primary500:"#2F74DE",teal500:"#00a296",teal600:"#009389",green500:"#46a22e",green600:"#40932A",yellow400:"#e0a819",yellow500:"#BA8A12",orange500:"#de7400",orange600:"#CA6A00",red50:"#fdeceb",red100:"#fac4c0",red500:"#ef4134",red600:"#D93B2F",pink500:"#e547a6",pink600:"#D04197",violet500:"#a145de",violet600:"#933FCA",neutral500:"#6F778B",neutral600:"#565E71"};n.maxInstallmentLength=60;n.purchaseSolicitationStatus={draft:1,open:2,quote:3,buy:4,closed:5,canceled:6,approved:19,rejected:20,editable:[1,2,20],ongoing:[2,3,4,19,20]};n.purchaseOrderStatus={draft:7,open:8,sent:9,accepted:10,refused:11,closed:12,approved:21,rejected:22,requestableRefund:[10,12],chargeableAdministrationFee:[10,12],editable:[7,8,22],ongoing:[8,9],finished:[10,12],allRejected:[11,22]};n.purchaseQuoteStatus={draft:13,open:14,pendingResponse:15,quoted:16,buy:17,finished:18,editable:[13,14,15],ongoing:[14,15,16,17]};n.groupPermission={admin:1,member:2};var Ne={on(e,t){document.addEventListener(e,t)},dispatch(e,t){document.dispatchEvent(new CustomEvent(e,{detail:t}))},remove(e,t){document.removeEventListener(e,t)}};var L=(e,t)=>{if(Array.isArray(e)===!1)return null;let a=null;return e.some(o=>(a=t(o),!!a)),a};var Re=(e,t)=>e?e[t]?e[t]:L(e.or,a=>a[t]):null;var Ie=e=>{let t=e.lastIndexOf(".");return t===-1?e:e.substring(0,t)};var Ae=(e,t)=>e&&e.length&&t&&t.length?e.map(a=>Object.entries(a).filter(([o])=>t.includes(o)).reduce((o,[r,d])=>Object.assign(o,{[r]:d}),{})):[];var Pe=e=>e.filter(t=>A(t).length>0&&t);var T=(e,t={})=>{let a={decimalCount:2,decimal:",",thousands:".",...t},{decimal:o,thousands:r,currencySymbol:d}=a,{decimalCount:c}=a;try{c=Math.abs(c),c=isNaN(c)?2:c;let m=e<0?"-":"",p=parseInt(e=Math.abs(Number(e)||0).toFixed(c),10).toString(),u=p.length>3?p.length%3:0;return(d?`${m}${d}`:m)+(u?p.substr(0,u)+r:"")+p.substr(u).replace(/(\d{3})(?=\d)/g,`$1${r}`)+(c?o+Math.abs(e-parseInt(p,10)).toFixed(c).slice(2):"")}catch(m){return console.log(m),""}};var g=h(require("moment-timezone")),W=e=>{let t=e?new Date(e):new Date,a={timeZone:"America/Sao_Paulo"},o=t.toLocaleString("en-US",a);return new Date(o)},H=(e,t,a,o,r)=>{if(!e)return null;if(r)return(0,g.default)(e,t);let d=g.default.utc(e);return o||d.local(),a&&d.locale(a),d.format(t)},Le=(e,t="YYYY-MM-DD")=>{let a=(0,g.default)(e,t).add(1,"days");return typeof e=="string"?a.format(t):a.toDate()},J=(e=new Date,t=1)=>{let a=new Date(e.setDate(e.getDate()+t));return a.getDay()%6?a:J(a)},K=(e=new Date,t=1)=>{let a=new Date(e.setDate(e.getDate()-t));return a.getDay()%6?a:K(a)},v=e=>e?g.default.utc(e).local():null,S=e=>e&&g.default.tz(new Date(e),"America/Sao_Paulo"),Te=(e,t)=>{let a=S(e);return a&&a.format(t||"YYYY-MM-DDTHH:mm:ssZ")},Se=(e,t)=>{if(!e||!t)return null;let a=v(e),o=v(t);return!a||!o?null:o.diff(a,"months")},we=(e,t)=>{var a;return!e||!t?null:(a=v(e))==null?void 0:a.isAfter(t)},Oe=(e=!0)=>{let t=g.default.tz("America/Sao_Paulo");return e?t.startOf("day").toDate():t.toDate()},Fe=(e=!0)=>{let t=g.default.tz("America/Sao_Paulo").subtract(1,"day");return e?t.startOf("day").toDate():t.toDate()},ke=(e=!0)=>{let t=g.default.tz("America/Sao_Paulo").add(1,"day");return e?t.startOf("day").toDate():t.toDate()},Ue=e=>{let t=W(e);return`${t.getFullYear()}${t.getMonth().toString().padStart(2,"0")}`},_e=(e,t)=>{let a=new Date(e),o=new Date;return new Date(o.getFullYear()-t,o.getMonth(),o.getDate()).getTime()>a.getTime()},Me=e=>g.default.max(e),je=e=>g.default.min(e),Ve=e=>(0,g.default)(e).isValid(),w=(e,t)=>new Date(e,t-1,1).toISOString().split("T")[0],O=(e,t)=>new Date(e,t,0).toISOString().split("T")[0],F=()=>{let e=new Date(S(new Date));return H(e,"YYYY-MM-DD")};var Ge=h(require("dayjs"));var B=e=>e.length===2?[e[0].replace(/\./g,""),e[1].replace(/\./g,"")]:e;var Q=e=>{let t=B(e.toString().replace("%","").replace("R$","").replace(/\s/g,"").trim().split(","));if(t.length===2)return t.join(".");let a=B(t[0].split("."));return a.length===2?a.join("."):t[0].replace(/\./g,"")},qe=e=>{if(e==null)return e;if(!Q(e))return null;let t=Number(Q(e));return t>=Number.MAX_SAFE_INTEGER||Number.isNaN(t)?null:t},ze=e=>{var a,o;if(!e||e.indexOf("/")>=0)return null;let t=e.toString().replace(/[^0-9.,-]/g,"");return t.includes(",")&&t.includes(".")?(t.lastIndexOf(",")>t.lastIndexOf(".")?t=t.replace(/\./g,"").replace(",","."):t=t.replace(/,/g,""),Number(t)):t.includes(",")&&((a=t.split(",")[1])==null?void 0:a.length)>0?Number(t.replace(",",".")):t.includes(".")&&((o=t.split(".")[1])==null?void 0:o.length)>0?Number(t):Number(t.replace(/[.,]/g,""))};var $e=e=>{let t=e.indexOf("."),a=e.length;return t&&a?e.substr(t,a):""};var Ye=new RegExp('<img[^>]+src="(https://vobi-storage[^">]+)"',"gm");var We=e=>{if(!e)return!1;let t=new Date(e);return!isNaN(t.getTime())};var He=e=>!isNaN(parseFloat(e))&&!isNaN(e-0);var Je=e=>{try{return!!new URL(e)}catch{return!1}};var Z=h(require("jwt-decode")),X=e=>{var t,a;return(t=e.headers)!=null&&t.authorization&&((a=e.headers)==null?void 0:a.authorization.split(" ")[0])==="Bearer"?e.headers.authorization.split(" ")[1]:e.query&&e.query.token?e.query.token:null},Ke=(e,t,a)=>{try{let o=X(e);if(o){let{user:r,isCustomerView:d,accessedBy:c,vaultToken:m}=(0,Z.default)(o);e.user={...r,isCustomerView:d,accessedBy:c,vaultToken:m}}return a()}catch(o){console.log("err",o);let r=new Error("Invalid token");return a(r)}};var Qe=(e,t,a,o)=>{let r=e.idStatus>=5?"projetos":"oportunidades",d=t==="customer"?"cliente":"profissional",c=`/${d}/${r}/perfil/${e.id}`,m=`/${d}`;return`${{operator:c,provider:c,customer:m}}/arquivos?arquivo=${a.id}${o?"&visualizar":""}`};var Ze=e=>(e==null?void 0:e.length)===0?null:e;var Xe=(e,t="0000")=>(t+e).slice(t.length*-1);var et=(e,t=!1)=>{let a={};for(let o=0;o<e.length;o++){let r=e[o];a[r.value]=t?{...r}:r.label}return a};var tt=e=>e.replace(/ /g,"").split("-").reduce((t,a)=>t+P(a),"");var at=e=>e==null?void 0:e.replace(/[,-./]/g,"");var ot=({id:e,name:t,email:a,idCompany:o,userType:r,type:d,isOwner:c,MGMCode:m,groupPermission:p,isActive:u,limitAccess:f,company:y})=>({id:e,name:t,email:a,idCompany:o,userType:r,type:d,isOwner:c,MGMCode:m,groupPermission:p,isActive:u,limitAccess:f,idPlan:y==null?void 0:y.idPlan});var nt=e=>{let t=new Array(e.length),a=0;return new Promise((o,r)=>{e.forEach((d,c)=>{Promise.resolve(d).then(o).catch(m=>{t[c]=m,a+=1,a===e.length&&r(t)})})})};var rt=(e,t)=>Object.keys(t).filter(a=>a!==e).reduce((a,o)=>({...a,[o]:t[o]}),{});var st=(e,t,a=!0)=>{if(!e)return e;let o=e.toLowerCase();return a&&(o=o.replace(new RegExp("\\s","g"),"")),o=o.replace(new RegExp("[\xE0\xE1\xE2\xE3\xE4\xE5]","g"),"a"),o=o.replace(new RegExp("\xE6","g"),"ae"),o=o.replace(new RegExp("\xE7","g"),"c"),o=o.replace(new RegExp("[\xE8\xE9\xEA\xEB]","g"),"e"),o=o.replace(new RegExp("[\xEC\xED\xEE\xEF]","g"),"i"),o=o.replace(new RegExp("\xF1","g"),"n"),o=o.replace(new RegExp("[\xF2\xF3\xF4\xF5\xF6]","g"),"o"),o=o.replace(new RegExp("\u0153","g"),"oe"),o=o.replace(new RegExp("[\xF9\xFA\xFB\xFC]","g"),"u"),o=o.replace(new RegExp("[\xFD\xFF]","g"),"y"),o=o.replace("'",""),o=o.replace("\xB4",""),o=o.replace("`",""),t&&(o=o.replace(new RegExp("\\W","g"),"")),o};var it=e=>e==null?void 0:e.normalize("NFD").replace(/[\u0300-\u036f]/g,"").replace(/[^a-zA-Z0-9-/\s]/g,"").replace(/\//g,"").replace(/\s+/g,"-").toLowerCase();var lt=(e,t)=>e.reduce((a,o,r)=>{let d=Math.floor(r/t),c=[...a];return a[d]||(c[d]=[]),c[d].push(o),c},[]);var dt=(e,t,a)=>{let o=a||t;return(e==null?void 0:e.map(r=>o?r[a]||r[t]:r).reduce((r,d)=>r+(Number(d||0)||0),0))||0};var ct=(e,t)=>(e==null?void 0:e.map(a=>t(a)).reduce((a,o)=>a+(Number(o||0)||0),0))||0;var ut=e=>{let t=e.replace(/\D/g,"");return/^(?:\+?55 ?)?(?:0?[1-9]{2})?9\d{8}$/.test(t)};var pt=e=>typeof e!="string"||!e?"":e.normalize("NFD").replace(/[\u0300-\u036f]/g,"").toLowerCase().trim();var k=(e,t="")=>!e||e.length<=0?[]:e.flatMap((a,o)=>{let r=t?`${t}.${o+1}`:`${o+1}`,{children:d,...c}=a;return[{...c,index:r},...k(d||[],r)]}),mt=e=>k(e).reduce((a,o)=>o.id?{...a,[o.id]:o}:a,{});var ft=(e,t)=>{var o;let a=e?(o=Number(e).toFixed(2))==null?void 0:o.replace(".",","):0;return t?`${T(e*100)}%`:a};var gt=e=>{if(!e)return{};let[t,a]=e.split("-").map(Number),o=F(),r=w(t,a),d=O(t,a);return{startDate:r,endDate:d,actualDate:o}};var yt=({oldStatus:e,newStatus:t,total:a,user:o,moveStatus:r})=>{var y,_,M,j,V;let{userApprovalAuthorities:d,isOwner:c,groupPermission:m,company:p}=o||{},u=r==null?void 0:r[e];if(!((y=u==null?void 0:u[t])!=null&&y.isAllowed))return null;if(c||m===n.groupPermission.admin||!((_=u==null?void 0:u[t])!=null&&_.authorityLevel))return u==null?void 0:u[t];let f=d==null?void 0:d.find(D=>{var G;return(D==null?void 0:D.idApprovalAuthority)===((G=u==null?void 0:u[t])==null?void 0:G.authorityLevel)});return!f&&((j=p==null?void 0:p.approvalAuthority)!=null&&j[(M=u==null?void 0:u[t])==null?void 0:M.authorityLevel])?!1:(V=u==null?void 0:u[t])!=null&&V.maxAmount?!Number((f==null?void 0:f.maxAmount)||0)&&(f==null?void 0:f.maxAmount)!==0||Number(a||0)<=Number(f==null?void 0:f.maxAmount)?u==null?void 0:u[t]:!1:u==null?void 0:u[t]};var ht=e=>{if(!e)return null;let t=e==null?void 0:e.replace(/\D/g,"");return(t==null?void 0:t.length)===11?t==null?void 0:t.replace(/(\d{3})(\d{3})(\d{3})(\d{2})/,"$1.$2.$3-$4"):(t==null?void 0:t.length)===14?t==null?void 0:t.replace(/(\d{2})(\d{3})(\d{3})(\d{4})(\d{2})/,"$1.$2.$3/$4-$5"):t};var U=h(require("dayjs")),xt=()=>{let e=(0,U.default)().format("YYYY-MM-DD"),t=(0,U.default)().subtract(1,"day").format("YYYY-MM-DD");return{today:e,yesterday:t}};0&&(module.exports={BAD_GATEWAY,BAD_REQUEST,FORBIDDEN,INTERNAL_SERVER_ERROR,IsJsonString,METHOD_NOT_ALLOWED,NOT_ALLOWED,NOT_FOUND,SERVICE_UNAVAILABLE,UNAUTHORIZED,asArray,asBrazilianDate,asDate,asyncForEach,brazilianDateTime,brazilianDateToDate,capitalize,checkApprovalAuthority,checkCnpj,checkCpf,checkEmail,containsEncodedComponents,currentDay,curry,dateIsValid,decodeToken,decrypt,diffObject,dynamici18nString,elasticTransformOr,encrypt,enumHelper,error,eventBus,extractMonthInfo,extractValueFromWhere,filterAttributes,filterEmpty,findValue,firstMonthDay,flatMapData,flattenChildren,formatCurrency,formatDate,formatDocument,formatNumber,formatNumberAnyFormat,getDateOpenFinance,getExtension,getMonthNumber,getNameWithoutExtension,getNextDay,getNextWeekday,getPreviewsWeekday,getToday,getToken,getTomorrow,getYesterday,imgSrcRegex,isAfter,isDateValid,isNumber,isOfAge,isValidUrl,lastMonthDay,makeRefurbishFileUrl,maxDateToList,minDateToList,monthsBetween,normalizeString,nullIfEmpty,padLeft,parseArrayAsObject,parseRouteToModel,prepareDoc,prepareSession,promiseAny,promiseEach,removeProperty,removeSpecialChar,replaceNumberOrPercentage,slugify,splitList,sum,sumByFunction,validateMobilePhoneNumber,valueReplacer});
1
+ "use strict";var ae=Object.create;var v=Object.defineProperty;var oe=Object.getOwnPropertyDescriptor;var ne=Object.getOwnPropertyNames;var re=Object.getPrototypeOf,se=Object.prototype.hasOwnProperty;var ie=(e,t)=>{for(var a in t)v(e,a,{get:t[a],enumerable:!0})},Y=(e,t,a,o)=>{if(t&&typeof t=="object"||typeof t=="function")for(let r of ne(t))!se.call(e,r)&&r!==a&&v(e,r,{get:()=>t[r],enumerable:!(o=oe(t,r))||o.enumerable});return e};var x=(e,t,a)=>(a=e!=null?ae(re(e)):{},Y(t||!e||!e.__esModule?v(a,"default",{value:e,enumerable:!0}):a,e)),le=e=>Y(v({},"__esModule",{value:!0}),e);var At={};ie(At,{BAD_GATEWAY:()=>pe,BAD_REQUEST:()=>l,FORBIDDEN:()=>ce,INTERNAL_SERVER_ERROR:()=>T,IsJsonString:()=>fe,METHOD_NOT_ALLOWED:()=>ue,NOT_ALLOWED:()=>I,NOT_FOUND:()=>P,SERVICE_UNAVAILABLE:()=>me,UNAUTHORIZED:()=>R,asArray:()=>L,asBrazilianDate:()=>k,asDate:()=>N,asyncForEach:()=>ye,brazilianDateTime:()=>K,brazilianDateToDate:()=>ke,capitalize:()=>w,checkApprovalAuthority:()=>Ct,checkCnpj:()=>be,checkCpf:()=>Ee,checkEmail:()=>Ce,configure:()=>he,containsEncodedComponents:()=>ve,currentDay:()=>M,curry:()=>Re,dateIsValid:()=>Ye,decodeToken:()=>at,decrypt:()=>Ae,diffObject:()=>Ne,dynamici18nString:()=>Be,elasticTransformOr:()=>Ie,encrypt:()=>Pe,enumHelper:()=>n,error:()=>y,eventBus:()=>Te,extractMonthInfo:()=>Et,extractValueFromWhere:()=>Le,filterAttributes:()=>we,filterEmpty:()=>Oe,findValue:()=>O,firstMonthDay:()=>U,flatMapData:()=>Dt,flattenChildren:()=>j,formatCurrency:()=>F,formatDate:()=>Z,formatDocument:()=>vt,formatNumber:()=>He,formatNumberAnyFormat:()=>Je,get:()=>S,getConfig:()=>xe,getDateOpenFinance:()=>Rt,getExtension:()=>Ke,getMonthNumber:()=>Ge,getNameWithoutExtension:()=>Se,getNextDay:()=>Fe,getNextWeekday:()=>Q,getPreviewsWeekday:()=>X,getToday:()=>Me,getToken:()=>tt,getTomorrow:()=>Ve,getYesterday:()=>je,imgSrcRegex:()=>Ze,isAfter:()=>_e,isDateValid:()=>Qe,isNumber:()=>Xe,isOfAge:()=>qe,isValidUrl:()=>et,lastMonthDay:()=>_,makeRefurbishFileUrl:()=>ot,maxDateToList:()=>ze,minDateToList:()=>$e,monthsBetween:()=>Ue,normalizeString:()=>xt,nullIfEmpty:()=>nt,padLeft:()=>rt,parseArrayAsObject:()=>st,parseRouteToModel:()=>it,prepareDoc:()=>lt,prepareSession:()=>dt,promiseAny:()=>ct,promiseEach:()=>ge,removeProperty:()=>ut,removeSpecialChar:()=>pt,replaceNumberOrPercentage:()=>bt,slugify:()=>mt,splitList:()=>ft,sum:()=>gt,sumByFunction:()=>yt,validateCredential:()=>De,validateMobilePhoneNumber:()=>ht,valueReplacer:()=>B});module.exports=le(At);var W={userNotFound:"Usu\xE1rio n\xE3o foi encontrado.",pageNotFound:"Desculpe. P\xE1gina n\xE3o encontrada.",notAuthorized:"N\xE3o autorizado.",tokenExpired:"Sess\xE3o expirada.",invalidToken:"Token inv\xE1lido.",notUpdated:"Nenhum registro foi alterado.",cantDelete:"Esse registro est\xE1 sendo usado, por isso n\xE3o \xE9 poss\xEDvel apaga-lo.",general:"Ocorreu um erro.",sentError:"Erro ao enviar proposta",noUser:"Usu\xE1rio n\xE3o encontrado.",noEmail:"E-mail n\xE3o foi informado",noPassword:"Senha n\xE3o foi informada.",invalidEmail:"O e-mail informado \xE9 inv\xE1lido.",uniqueEmail:"O e-mail informado j\xE1 est\xE1 cadastrado.",invalidCPF:"O CPF informado \xE9 inv\xE1lido.",invalidCNPJ:"O CNPJ informado \xE9 inv\xE1lido.",uniqueName:"Nome informado j\xE1 cadastrado.",noName:"Nome n\xE3o foi informado.",noData:"Dados n\xE3o informados.",noDate:"Data n\xE3o informada.",noModel:"Ocorreu um erro com a entidade",invalidId:"Id inv\xE1lido",invalidCredentials:"Usu\xE1rio e/ou senha inv\xE1lidos.",noPhone:"Telefone n\xE3o foi informado.",noCPF:"CPF n\xE3o foi informado.",noRG:"RG n\xE3o foi informado.",noZipcode:"CEP n\xE3o foi informado.",noStreet:"Endere\xE7o n\xE3o foi informado.",noNumber:"N\xFAmero n\xE3o foi informado.",noState:"Estado n\xE3o foi informado.",noCity:"Cidade n\xE3o foi informada.",noNeighborhood:"Bairro n\xE3o foi informado.",noCNPJ:"CNPJ n\xE3o foi informado.",noCompanyName:"Raz\xE3o social n\xE3o foi informada.",noTrademarkName:"Nome fantasia n\xE3o foi informado.",noCompanyZipcode:"CEP da empresa n\xE3o foi informado.",noCompanyStreet:"Endere\xE7o da empresa n\xE3o foi informado.",noCompanyNumber:"N\xFAmero da empresa n\xE3o foi informado.",noCompanyState:"Estado da empresa n\xE3o foi informado.",noCompanyCity:"Cidade da empresa n\xE3o foi informado.",noCompanyNeighborhood:"Bairro da empresa n\xE3o foi informado.",noBirthdate:"Data de nascimento n\xE3o foi informada.",noCompany:"Empresa n\xE3o informada.",invalidURL:"URL inv\xE1lida.",noPermissions:"Permiss\xF5es n\xE3o encontradas.",fileLimit50:"Os arquivos n\xE3o pode ter mais de 50 MB. Para arquivos maiores voc\xEA pode informar a url de um servidor externo.",fileLimit10:"Os arquivos n\xE3o pode ter mais de 10 MB. Para arquivos maiores voc\xEA pode informar a url de um servidor externo no corpo da mensagem.",maxLength:"O nome deve ter no m\xE1ximo 255 caracteres.",invalidData:"Dados inv\xE1lidos.",invalidDate:"Data inv\xE1lida.",invalidDates:"Data de in\xEDcio n\xE3o pode ser maior que data de fim.",invalidUUID:"A URL informada n\xE3o foi encontrada, verifique se est\xE1 correto o link desejado.",invalidValue:"Valor informado inv\xE1lido.",invalidDoc:"O documento informado (CNPJ/CPF) est\xE1 incorreto.",docAlreadyExists:"Documento j\xE1 cadastrado.",tokenPasswordError:"Link de recupera\xE7\xE3o de senha inv\xE1lido.",errPassword:"Senha est\xE1 inv\xE1lida.",noParameters:"Par\xE2metros n\xE3o informado.",uniqueCode:"C\xF3digo j\xE1 cadastrado."};var y={},H={en:W,"pt-br":"PT_BR_LOCALE"},i=H.en||H.en,l=400,I=405,R=401,ce=403,P=404,ue=405,T=500,pe=502,me=503;y.NOT_FOUND={userNotFound:{statusCode:P,code:"NF-00001",message:i.userNotFound},pageNotFound:{statusCode:P,code:"NF-00002",message:i.pageNotFound}};y.UNAUTHORIZED={notAuthorized:{statusCode:R,code:"UA-00001",message:i.notAuthorized},tokenExpired:{statusCode:R,code:"UA-00002",message:i.tokenExpired},invalidToken:{statusCode:R,code:"UA-00003",message:i.invalidToken}};y.NOT_ALLOWED={notUpdated:{statusCode:I,code:"NA-00001",message:i.notUpdated},cantDelete:{statusCode:I,code:"NA-00002",message:i.cantDelete}};y.INTERNAL_SERVER_ERROR={general:{statusCode:T,code:"ISE-00001",message:i.general},sentError:{statusCode:T,code:"ISE-00002",message:i.sentError}};y.BAD_REQUEST={noUser:{statusCode:l,code:"LIB-B-00001",message:i.noUser},noEmail:{statusCode:l,code:"LIB-B-00002",message:i.noEmail},noPassword:{statusCode:l,code:"LIB-B-00003",message:i.noPassword},invalidEmail:{statusCode:l,code:"LIB-B-00004",message:i.invalidEmail},uniqueEmail:{statusCode:l,code:"LIB-B-00005",message:i.uniqueEmail},invalidCPF:{statusCode:l,code:"LIB-B-00006",message:i.invalidCPF},invalidCNPJ:{statusCode:l,code:"LIB-B-00007",message:i.invalidCNPJ},uniqueName:{statusCode:l,code:"LIB-B-00008",message:i.uniqueName},noName:{statusCode:l,code:"LIB-B-00009",message:i.noName},noData:{statusCode:l,code:"LIB-B-00010",message:i.noData},invalidCredentials:{statusCode:l,code:"LIB-B-00011",message:i.invalidCredentials},tokenPasswordError:{statusCode:l,code:"LIB-B-00012",message:i.tokenPasswordError},errPassword:{statusCode:l,code:"LIB-B-00013",message:i.errPassword},noPhone:{statusCode:l,code:"LIB-B-00014",message:i.noPhone},noCPF:{statusCode:l,code:"LIB-B-00015",message:i.noCPF},noRG:{statusCode:l,code:"LIB-B-00016",message:i.noRG},noZipcode:{statusCode:l,code:"LIB-B-00017",message:i.noZipcode},noStreet:{statusCode:l,code:"LIB-B-00018",message:i.noStreet},noNumber:{statusCode:l,code:"LIB-B-00019",message:i.noNumber},noState:{statusCode:l,code:"LIB-B-00020",message:i.noState},noCity:{statusCode:l,code:"LIB-B-00021",message:i.noCity},noNeighborhood:{statusCode:l,code:"LIB-B-00022",message:i.noNeighborhood},noCNPJ:{statusCode:l,code:"LIB-B-00023",message:i.noCNPJ},noCompanyName:{statusCode:l,code:"LIB-B-00024",message:i.noCompanyName},noTrademarkName:{statusCode:l,code:"LIB-B-00025",message:i.noTrademarkName},noCompanyZipcode:{statusCode:l,code:"LIB-B-00026",message:i.noCompanyZipcode},noCompanyStreet:{statusCode:l,code:"LIB-B-00027",message:i.noCompanyStreet},noCompanyNumber:{statusCode:l,code:"LIB-B-00028",message:i.noCompanyNumber},noCompanyState:{statusCode:l,code:"LIB-B-00029",message:i.noCompanyState},noCompanyCity:{statusCode:l,code:"LIB-B-00030",message:i.noCompanyCity},noCompanyNeighborhood:{statusCode:l,code:"PRO-00031",message:i.noCompanyNeighborhood},noBirthdate:{statusCode:l,code:"LIB-B-00032",message:i.noBirthdate},noCompany:{statusCode:l,code:"LIB-B-00033",message:i.noCompany},noParameters:{statusCode:l,code:"LIB-B-00034",message:i.noParameters},invalidDoc:{statusCode:l,code:"LIB-B-00035",message:i.invalidDoc},docAlreadyExists:{statusCode:l,code:"LIB-B-00036",message:i.docAlreadyExists},invalidURL:{statusCode:l,code:"LIB-B-00037",message:i.invalidURL},noPermissions:{statusCode:l,code:"LIB-B-00038",message:i.noPermissions},fileLimit50:{statusCode:l,code:"LIB-B-00039",message:i.fileLimit50},fileLimit10:{statusCode:l,code:"LIB-B-00040",message:i.fileLimit10},invalidDates:{statusCode:l,code:"LIB-B-00041",message:i.invalidDates},maxLength:{statusCode:l,code:"LIB-B-00042",message:i.maxLength},uniqueCode:{statusCode:l,code:"LIB-B-00043",message:i.uniqueCode},invalidValue:{statusCode:l,code:"LIB-B-00044",message:i.invalidValue},invalidData:{statusCode:l,code:"LIB-B-00045",message:i.invalidData},invalidUUID:{statusCode:l,code:"LIB-B-00046",message:i.invalidUUID},noDate:{statusCode:l,code:"LIB-B-00047",message:i.noDate},invalidDate:{statusCode:l,code:"LIB-B-00048",message:i.invalidDate},invalidId:{statusCode:l,code:"LIB-B-00049",message:i.invalidId},noModel:{statusCode:l,code:"LIB-B-00050",message:i.noModel},sequelizeValidation:{statusCode:l,code:"LIB-B-00999"}};var fe=e=>{try{JSON.parse(e)}catch{return!1}return JSON.parse(e)};var ge=async(e,t)=>{for(let a of e)await t(a,e.indexOf(a))};var L=e=>e==null?[]:Array.isArray(e)?e:[e];var ye=async(e,t)=>{await Promise.all(e.map((a,o)=>t(a,o,e)))};var n={};n.fileType={receipt:"receipt",paymentVoucher:"paymentVoucher",quote:"quote",others:"others",project:"project",proposal:"proposal",bankBillet:"bankBillet",refund:"refund"};n.refurbishItemStatus={approved:{label:"Aprovado",value:"approved"},rejected:{label:"N\xE3o aprovado",value:"rejected"},pending:{label:"Para aprovar",value:"pending"},activeStatus:["approved","pending"]};n.companyStatus={created:{id:1,name:"Cadastro iniciado"},onBoarding:{id:2,name:"Aguardando libera\xE7\xE3o"},active:{id:3,name:"Ativo"},blocked:{id:4,name:"Bloqueado"},cancelled:{id:5,name:"Cancelada"}};n.companyType={architect:{id:1,name:"Arquitetura e design de interiores",roles:["architect"]},service:{id:2,name:"Execu\xE7\xE3o de obra"},store:{id:3,name:"Loja de produtos e materiais"},factory:{id:4,name:"Fabricante"},other:{id:10,name:"Outros"}};n.refurbishStatus={new:{id:1,name:"Novo"},contact:{id:2,name:"Em contato"},proposalSent:{id:3,name:"Proposta enviada"},archived:{id:4,name:"Arquivada"},winner:{id:5,name:"Ganha",winner:!0},execution:{id:5,name:"Em andamento"},finished:{id:6,name:"Finalizado"},cancelled:{id:7,name:"Cancelado"},activeOpportunity:[1,2,3],opportunity:[1,2,3,4],project:[5,6,7],end:[4,5,6,7]};n.refurbishStage={1:{id:1,name:"Oportunidade"},2:{id:2,name:"Projeto"}};n.roles={admin:{id:"admin",name:"Administrador"},sales:{id:"sales",name:"Venda"},arch:{id:"architect",name:"Arquitetura"},plan:{id:"plan",name:"Planejamento"},work:{id:"work",name:"Obra"},quality:{id:"quality",name:"Qualidade"},supply:{id:"supply",name:"Suprimentos"},contractor:{id:"contractor",name:"Empreiteiro"},beta:{id:"beta",name:"Beta user"}};n.userType={guest:{name:"Visitante",value:"guest",type:"visitante"},operator:{name:"Operador",value:"operator",type:"operador"},customer:{name:"Cliente",value:"customer",type:"cliente"},provider:{name:"Profissional",value:"provider",type:"profissional"},system:{name:"Sistema",value:"system",type:"sistema"},anonymous:{name:"An\xF4nimo",value:"anonymous"},realTypes:["guest","operator","customer","provider"],skipPermission:["operator","customer"],all:["system","provider","customer","operator"]};n.paymentStatus={waitingOrder:1,analyzing:2,waitingRelease:3,released:4,transferred:5,markAsPaid:6,allowTransfer:[3,4],allowChange:[1,6],sendEmail:[4,5]};n.personTypes={pf:"pf",pj:"pj"};n.asaasPersonTypes={pf:"FISICA",pj:"JURIDICA"};n.stepAccount={personal:0,address:1,documents:2};n.statusVobiPay={PENDING:{color:"#FF8E1B",label:"Em an\xE1lise"}};n.refurbishItemType={product:1,labor:2,parent:3,composition:4,notParent:[1,2,4],productLabor:[1,2]};n.notificationChannel={system:"system",email:"email",whatsApp:"whatsApp"};n.planType={free:{value:"free",label:"freemium"},paid:{value:"paid",label:"Pago"}};n.installmentStatuses={pendingPayment:1,paid:2,confirm:3,paidManually:4,inAnalysis:5,refunded:6,refundRequested:7,onGoingRefund:8,chargebackRequested:9,onGoingChargeback:10,waitingChargeback:11,cancelled:12,all:[1,2,3,4,5,6,7,8,9,10],paidVobiPay:[2,3,7,8,9,10,11],bankStatement:[2,4,6,7,8,9,10,11],allPaid:[2,3,4,7,8,9,10,11],allPaidBalance:[2,4,7,8,9,10,11],allPending:[1,5]};n.paymentStatuses={draft:1,open:2,paid:3,cancelled:4,realValues:[2,3],allStatus:[1,2,3,4]};n.billType={income:"receita",expense:"despesa",transfer:"transferencia",balance:"saldo inicial"};n.paymentTypeValues={expense:{value:"expense",label:"despesa"},income:{value:"income",label:"receita"},transfer:{value:"transfer",label:"transfer\xEAncia"},payment:{value:"payment",label:"pagamento"},balance:{value:"balance",label:"saldo inicial"}};n.financialCategories={serviceSelling:1,productsSelling:2,fee:3,investimentIncome:4,others:5,advanceFutureCapital:6,capitalIncrease:7,bankLoan:8,institutionLoan:9,partnerLoan:10,paymentShareCapital:11};n.getEnumValue=(e,t,a=["id","name"])=>{let o=null;return!e||!t||Object.keys(e).some(r=>e[r][a[0]]===t?(o=e[r][a[1]],!0):!1),o};n.asaasPixType={CPF:"CPF",CNPJ:"CNPJ",EMAIL:"E-mail",PHONE:"Celular",EVP:"Aleat\xF3ria"};n.paymentTypes={pix:1,bankSlip:2,creditCard:3,debitCard:4,transfer:5,money:6,other:7};n.paymentTypesDesc={1:"Pix",2:"Boleto",3:"Cart\xE3o de cr\xE9dito",4:"Cart\xE3o de d\xE9bito",5:"Transfer\xEAncia",6:"Dinheiro",7:"Outro"};n.vobiPayPaymentType={pix:1,bankSlip:2,creditCard:3,all:[1,2,3],1:"pix",2:"bankSlip",3:"creditCard"};n.asaasPaymentStatus={PENDING:{label:"PENDING",value:n.installmentStatuses.pendingPayment},RECEIVED:{label:"RECEIVED",value:n.installmentStatuses.paid},CONFIRMED:{label:"CONFIRMED",value:n.installmentStatuses.confirm},OVERDUE:{label:"OVERDUE",value:null},REFUNDED:{label:"REFUNDED",value:n.installmentStatuses.refunded},RECEIVED_IN_CASH:{label:"RECEIVED_IN_CASH",value:n.installmentStatuses.paidManually},REFUND_REQUESTED:{label:"REFUND_REQUESTED",value:n.installmentStatuses.refundRequested},REFUND_IN_PROGRESS:{label:"REFUND_IN_PROGRESS",value:n.installmentStatuses.onGoingRefund},CHARGEBACK_REQUESTED:{label:"CHARGEBACK_REQUESTED",value:n.installmentStatuses.chargebackRequested},CHARGEBACK_DISPUTE:{label:"CHARGEBACK_DISPUTE",value:n.installmentStatuses.onGoingChargeback},AWAITING_CHARGEBACK_REVERSAL:{label:"AWAITING_CHARGEBACK_REVERSAL",value:n.installmentStatuses.waitingChargeback},DUNNING_REQUESTED:{label:"DUNNING_REQUESTED",value:null},DUNNING_RECEIVED:{label:"DUNNING_RECEIVED",value:null},AWAITING_RISK_ANALYSIS:{label:"AWAITING_RISK_ANALYSIS",value:n.installmentStatuses.inAnalysis}};n.maxLimitPayment={credit:{value:2e4,label:"20.000,00"},installment:{value:15e4,label:"150.000,00"},minimumInstallmentValue:{value:10,label:"10,00"},maximumInstallments:{value:12}};n.asaasWithdrawStatus={PENDING:"PENDING",PROCESSING:"PROCESSING",DONE:"DONE",FAILED:"FAILED",CANCELLED:"CANCELLED",BLOCKED:"BLOCKED"};n.withdrawStatuses={DONE:"Efetuada",PENDING:"Pendente",BANK_PROCESSING:"Processando",CANCELLED:"Cancelada",FAILED:"Falhou",BLOCKED:"Bloqueado",group:{done:["DONE"],open:["PENDING","BANK_PROCESSING"],error:["CANCELLED","FAILED","BLOCKED"]}};n.vobiPayBankAccountType={corrente:"CONTA_CORRENTE",poupanca:"CONTA_POUPANCA",salario:"CONTA_SALARIO",pagamento:"CONTA_DE_PAGAMENTO"};n.withdrawSteps={list:1,fillData:2,confirmData:3};n.billingManagerStatus={pending:1,send:2,error:3,discarded:4,notSent:5,sending:6};n.billingManagerStatusDesc={1:"Aguardando",2:"Enviado",3:"Erro",4:"Descartado",5:"N\xE3o enviado",6:"Enviando"};n.billingManagerChannels={allChannels:["email","sms","whatsapp"],email:{value:"email",label:"E-mail"},sms:{value:"sms",label:"SMS"},whatsapp:{value:"whatsapp",label:"WhatsApp"}};n.billingManagerType={allTypes:["DC","D-3","D0","D+1","D+3","D+6"],billingRulerType:["D-3","D0","D+1","D+3","D+6"],DC:{label:"Cria\xE7\xE3o da cobran\xE7a",value:"DC",tooltip:"Ao criar a cobran\xE7a",message:"de cobran\xE7a criada para {customerName} {value}"},"D-3":{label:"3 dias antes do vencimento",value:"D-3",tooltip:"3 dias antes do vencimento das parcelas",message:"de aviso de vencimento em 3 dias para {customerName} {value}"},D0:{label:"Dia do vencimento",value:"D0",tooltip:"No dia do vencimento da parcela",message:"de aviso de cobran\xE7a vencendo hoje para {customerName} {value}"},"D+1":{label:"1 dia ap\xF3s o vencimento",value:"D+1",tooltip:"1 dia ap\xF3s o vencimento de cada parcela",message:"de aviso de cobran\xE7a vencida h\xE1 1 dia para {customerName} {value}"},"D+3":{label:"3 dias ap\xF3s o vencimento",value:"D+3",tooltip:"3 dias ap\xF3s o vencimento de cada parcela",message:"de aviso de cobran\xE7a vencida h\xE1 3 dias para {customerName} {value}"},"D+6":{label:"6 dias ap\xF3s o vencimento",value:"D+6",tooltip:"6 dias ap\xF3s o vencimento de cada parcela",message:"de aviso de cobran\xE7a vencida h\xE1 6 dias para {customerName} {value}"}};n.paymentCreditPermission={allowed:2e4,blocked:0};n.withdrawLimit={pj:{daytime:2e4,nightly:5e3},pf:{daytime:2e4,nightly:5e3}};n.optionsRefurbishReport={financialPhysical:"financialPhysics",budgeted:"budgeted",financial:"financial",physic:"physic",financialPhysicBudgeted:{value:"financialPhysics.budgeted"},physicBudgeted:{value:"physic.budgeted"},physicAccomplished:{value:"physic.accomplished"},financialBudgeted:{value:"financial.budgeted"},financialAccomplished:{value:"financial.accomplished"},financialBudAcp:{value:"financial.budgetedAccomplished"},physicBudAcp:{value:"physic.budgetedAccomplished"}};n.refurbishReportType={budgeted:[n.optionsRefurbishReport.financialPhysicBudgeted.value,n.optionsRefurbishReport.physicBudgeted.value,n.optionsRefurbishReport.financialBudgeted.value],accomplished:[n.optionsRefurbishReport.physicAccomplished.value,n.optionsRefurbishReport.financialAccomplished.value],budgetedAccomplished:[n.optionsRefurbishReport.financialBudAcp.value,n.optionsRefurbishReport.physicBudAcp.value],common:[n.optionsRefurbishReport.financialPhysicBudgeted.value,n.optionsRefurbishReport.physicBudgeted.value,n.optionsRefurbishReport.physicBudAcp.value,n.optionsRefurbishReport.financialBudgeted.value,n.optionsRefurbishReport.financialBudAcp.value],measurement:[n.optionsRefurbishReport.physicAccomplished.value],financial:[n.optionsRefurbishReport.financialAccomplished.value],customColumns:[n.optionsRefurbishReport.physicBudAcp.value,n.optionsRefurbishReport.financialBudAcp.value],simpleExport:[n.optionsRefurbishReport.physicAccomplished.value,n.optionsRefurbishReport.financialAccomplished.value,n.optionsRefurbishReport.physicBudgeted.value,n.optionsRefurbishReport.financialBudgeted.value]};n.reportTypeActions={consolidatedByProject:{model:"refurbishes",clickRow:!1,groupBy:"refurbishes",rangeField:"paidDate",idInstallmentStatus:n.installmentStatuses.allPaid,howDoesItsWorksId:"howFinancialReportByProjectStatusPaid",tableTitle:"Resultado de projetos",tableTitleTooltip:"S\xE3o contabilizadas apenas parcelas que j\xE1 foram marcadas como pago das receitas e despesas.",withResultChart:!0,filters:{dateRangePicker:!0,selectDateFieldTofilter:!0,yearPicker:!1,columns:!0},showLegend:!0,exportCsvModel:"financial/report",exportEntity:"consolidatedByProject"},foreseenByProject:{model:"refurbishes",clickRow:!1,groupBy:"refurbishes",rangeField:"dueDate",howDoesItsWorksId:"howFinancialReportByProjectAllStatus",tableTitle:"Previs\xE3o de resultado dos projetos",tableTitleTooltip:"S\xE3o contabilizadas todas as receitas e despesas, que j\xE1 foram pagas ou ainda em aberto.",withResultChart:!0,filters:{dateRangePicker:!0,selectDateFieldTofilter:!0,yearPicker:!1,columns:!0},showLegend:!0,exportCsvModel:"financial/report",exportEntity:"foreseenByProject"},resultsByInstallment:{model:"installments",clickRow:!0,groupBy:"months",rangeField:"paidDate",idInstallmentStatus:n.installmentStatuses.allPaid,howDoesItsWorksId:"howResultsWork",tableTitle:"Transa\xE7\xF5es realizadas",tableTitleTooltip:"S\xE3o contabilizadas apenas parcelas que j\xE1 foram marcadas como pago das receitas e despesas",withResultChart:!0,filters:{dateRangePicker:!0,selectDateFieldTofilter:!0,yearPicker:!1,columns:!0},showLegend:!0,exportCsvModel:"financial",exportEntity:"resultsByInstallment"},"cashFlow-monthly":{model:"cashFlow",idInstallmentStatus:n.installmentStatuses.allPaid,howDoesItsWorksId:"howCashFlowWork",tableTitle:"Fluxo de caixa",tableTitleTooltip:"",withResultChart:!1,filters:{dateRangePicker:!1,selectDateFieldTofilter:!1,yearPicker:!0,columns:!0},showLegend:!1,exportCsvModel:"financial/cashFlow",exportEntity:"cashFlow"},dre:{model:"dre",howDoesItsWorksId:"howDREWorks",filters:{dateRangePicker:!1,selectDateFieldTofilter:!1,yearPicker:!0,columns:!1},showLegend:!1,exportCsvModel:"financial/dre",exportEntity:"dre"},"cashFlow-daily":{model:"cashFlow",howDoesItsWorksId:"howDailyCashFlowWorks",tableTitleTooltip:"",filters:{dateRangePicker:!1,selectDateFieldTofilter:!1,monthPicker:!0,columns:!1,paymentBankAccount:!0},showLegend:!1,exportCsvModel:"financial/dailyCashFlow",exportEntity:"dailyCashFlow"}};n.extraValuesPayment={taxes:"taxes",discount:"discount",shipping:"shipping",dueDateDiscount:"dueDateDiscount",dueDateDiscountType:"dueDateDiscountType",dueDateLimitDays:"dueDateLimitDays",fine:"fine",fineType:"fineType",interest:"interest"};n.extraValuesPaymentType={simple:[n.extraValuesPayment.taxes,n.extraValuesPayment.discount,n.extraValuesPayment.shipping],asaas:[n.extraValuesPayment.dueDateDiscount,n.extraValuesPayment.dueDateDiscountType,n.extraValuesPayment.dueDateLimitDays,n.extraValuesPayment.fine,n.extraValuesPayment.fineType,n.extraValuesPayment.interest]};n.fineInterestDiscountType={percentage:{value:"PERCENTAGE",label:"Percentual"},fixed:{value:"FIXED",label:"Valor fixo"}};n.paymentPermissions={financialResume:"financialResume",financialSupplier:"financialSupplier",financialOwnBusiness:"financialOwnBusiness",financialIncome:"financialIncome",financialExpense:"financialExpense",financialTransfer:"financialTransfer",financialResults:"financialResults",financialBankStatement:"financialBankStatement",financialReport:"financialReport",projectResume:"projectResume",projectSupplier:"projectSupplier",projectOwnBusiness:"projectOwnBusiness",projectIncome:"projectIncome",projectExpense:"projectExpense",projectResults:"projectResults",projectBudgetedAccomplished:"projectBudgetedAccomplished"};n.colors={primary50:"#EBF0FF",primary100:"#D6E2FF",primary400:"#4F8EFA",primary500:"#2F74DE",teal500:"#00a296",teal600:"#009389",green500:"#46a22e",green600:"#40932A",yellow400:"#e0a819",yellow500:"#BA8A12",orange500:"#de7400",orange600:"#CA6A00",red50:"#fdeceb",red100:"#fac4c0",red500:"#ef4134",red600:"#D93B2F",pink500:"#e547a6",pink600:"#D04197",violet500:"#a145de",violet600:"#933FCA",neutral500:"#6F778B",neutral600:"#565E71"};n.maxInstallmentLength=60;n.purchaseSolicitationStatus={draft:1,open:2,quote:3,buy:4,closed:5,canceled:6,approved:19,rejected:20,editable:[1,2,20],ongoing:[2,3,4,19,20]};n.purchaseOrderStatus={draft:7,open:8,sent:9,accepted:10,refused:11,closed:12,approved:21,rejected:22,requestableRefund:[10,12],chargeableAdministrationFee:[10,12],editable:[7,8,22],ongoing:[8,9],finished:[10,12],allRejected:[11,22]};n.purchaseQuoteStatus={draft:13,open:14,pendingResponse:15,quoted:16,buy:17,finished:18,editable:[13,14,15],ongoing:[14,15,16,17]};n.groupPermission={admin:1,member:2};var b=n;var D={sources:[]},he=(e={})=>{Object.keys(e).forEach(t=>{typeof e[t]=="object"&&e[t]!==null&&!Array.isArray(e[t])?D[t]={...D[t],...e[t]}:D[t]=e[t]})},xe=()=>D,S=(e,t=null)=>e in D?D[e]:t;var De=({data:e,allowAudience:t=[...b.userType.all],permissions:a})=>{var f,h;let o=S("source",[]),{user:r,isPublic:d,isAnonymous:c,source:m=""}=e;if(d||r!=null&&r.isCustomerView)return null;let p=[...t,b.userType.system.value];return!(r!=null&&r.id)||r.isActive===!1||c||!p.includes(r.userType||"")?y.UNAUTHORIZED.notAuthorized:(r==null?void 0:r.userType)===b.userType.system.value&&(r!=null&&r.idCompany)&&!(o!=null&&o.includes(m))?y.UNAUTHORIZED.notAuthorized:(f=b.userType.skipPermission)!=null&&f.includes((r==null?void 0:r.userType)||"")||!(a!=null&&a.length)?null:!((h=r.permissions)!=null&&h.find(E=>a==null?void 0:a.includes(E)))?y.UNAUTHORIZED.notAuthorized:null};var w=e=>{if(typeof e!="string")return"";let t=e.trim();return t.charAt(0).toUpperCase()+t.slice(1)};var be=e=>{let t,a,o,r,d,c,m=!0;if(e.length<14)return!1;for(let p=1;p<e.length;p++)if(e.charAt(p-1)!==e.charAt(p)){m=!1;break}if(!m){c=e.length-2,t=e.substring(0,c),a=e.substring(c),o=0,d=c-7;for(let p=0;p<c;p++)o+=parseInt(t.charAt(p))*d--,d<2&&(d=9);if(r=o%11<2?0:11-o%11,r!==parseInt(a.charAt(0)))return!1;c+=1,t=e.substring(0,c),o=0,d=c-7;for(let p=0;p<c;p++)o+=parseInt(t.charAt(p))*d--,d<2&&(d=9);return r=o%11<2?0:11-o%11,r===parseInt(a.charAt(1))}return!1};var Ee=(e,t=!1)=>{let a,o;return a=0,e.length<11||!t&&e.split("").every(r=>r===e[0])||(Array.from({length:9}).forEach((r,d)=>{a+=parseInt(e.substring(d,d+1),10)*(11-(d+1))}),o=a*10%11,(o===10||o===11)&&(o=0),o!==parseInt(e.substring(9,10),10))?!1:(a=0,Array.from({length:10}).forEach((r,d)=>{a+=parseInt(e.substring(d,d+1),10)*(12-(d+1))}),o=a*10%11,(o===10||o===11)&&(o=0),o===parseInt(e.substring(10,11),10))};var Ce=e=>/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(e);var ve=e=>decodeURI(e)!==decodeURIComponent(e);var Re=e=>(...t)=>e.length>t.length?e.bind(null,...t):e(...t);var A=x(require("crypto-js")),Ae=(e,t)=>A.AES.decrypt(e,t).toString(A.enc.Utf8);var Ne=(e,t)=>Object.keys(t).reduce((a,o)=>{if(e[o]===t[o]||o==="lastModifiedBy"||o==="createdAt")return a;let{oldData:r,newData:d}=a;return{oldData:{...r,[o]:e[o]},newData:{...d,[o]:t[o]}}},{});var Be=(e,t)=>e&&typeof e=="string"?e.search(/[a-z]\.[a-z]/i)>=0?t.__(e):e:"";var Ie=e=>{let t={};return e==null||e.forEach(a=>{Object.keys(a).forEach(r=>{typeof a[r]=="string"&&(a[r].toLowerCase()==="true"||a[r].toLowerCase()==="false")?t[r]=a[r].toLowerCase()==="true":t[r]=a[r]})}),t};var J=x(require("crypto-js")),Pe=(e,t)=>(typeof e=="object"&&(e=JSON.stringify(e)),J.AES.encrypt(e,t).toString());var Te={on(e,t){document.addEventListener(e,t)},dispatch(e,t){document.dispatchEvent(new CustomEvent(e,{detail:t}))},remove(e,t){document.removeEventListener(e,t)}};var O=(e,t)=>{if(Array.isArray(e)===!1)return null;let a=null;return e.some(o=>(a=t(o),!!a)),a};var Le=(e,t)=>e?e[t]?e[t]:O(e.or,a=>a[t]):null;var Se=e=>{let t=e.lastIndexOf(".");return t===-1?e:e.substring(0,t)};var we=(e,t)=>e&&e.length&&t&&t.length?e.map(a=>Object.entries(a).filter(([o])=>t.includes(o)).reduce((o,[r,d])=>Object.assign(o,{[r]:d}),{})):[];var Oe=e=>e.filter(t=>L(t).length>0&&t);var F=(e,t={})=>{let a={decimalCount:2,decimal:",",thousands:".",...t},{decimal:o,thousands:r,currencySymbol:d}=a,{decimalCount:c}=a;try{c=Math.abs(c),c=isNaN(c)?2:c;let m=e<0?"-":"",p=parseInt(e=Math.abs(Number(e)||0).toFixed(c),10).toString(),u=p.length>3?p.length%3:0;return(d?`${m}${d}`:m)+(u?p.substr(0,u)+r:"")+p.substr(u).replace(/(\d{3})(?=\d)/g,`$1${r}`)+(c?o+Math.abs(e-parseInt(p,10)).toFixed(c).slice(2):"")}catch(m){return console.log(m),""}};var g=x(require("moment-timezone")),K=e=>{let t=e?new Date(e):new Date,a={timeZone:"America/Sao_Paulo"},o=t.toLocaleString("en-US",a);return new Date(o)},Z=(e,t,a,o,r)=>{if(!e)return null;if(r)return(0,g.default)(e,t);let d=g.default.utc(e);return o||d.local(),a&&d.locale(a),d.format(t)},Fe=(e,t="YYYY-MM-DD")=>{let a=(0,g.default)(e,t).add(1,"days");return typeof e=="string"?a.format(t):a.toDate()},Q=(e=new Date,t=1)=>{let a=new Date(e.setDate(e.getDate()+t));return a.getDay()%6?a:Q(a)},X=(e=new Date,t=1)=>{let a=new Date(e.setDate(e.getDate()-t));return a.getDay()%6?a:X(a)},N=e=>e?g.default.utc(e).local():null,k=e=>e&&g.default.tz(new Date(e),"America/Sao_Paulo"),ke=(e,t)=>{let a=k(e);return a&&a.format(t||"YYYY-MM-DDTHH:mm:ssZ")},Ue=(e,t)=>{if(!e||!t)return null;let a=N(e),o=N(t);return!a||!o?null:o.diff(a,"months")},_e=(e,t)=>{var a;return!e||!t?null:(a=N(e))==null?void 0:a.isAfter(t)},Me=(e=!0)=>{let t=g.default.tz("America/Sao_Paulo");return e?t.startOf("day").toDate():t.toDate()},je=(e=!0)=>{let t=g.default.tz("America/Sao_Paulo").subtract(1,"day");return e?t.startOf("day").toDate():t.toDate()},Ve=(e=!0)=>{let t=g.default.tz("America/Sao_Paulo").add(1,"day");return e?t.startOf("day").toDate():t.toDate()},Ge=e=>{let t=K(e);return`${t.getFullYear()}${t.getMonth().toString().padStart(2,"0")}`},qe=(e,t)=>{let a=new Date(e),o=new Date;return new Date(o.getFullYear()-t,o.getMonth(),o.getDate()).getTime()>a.getTime()},ze=e=>g.default.max(e),$e=e=>g.default.min(e),Ye=e=>(0,g.default)(e).isValid(),U=(e,t)=>new Date(e,t-1,1).toISOString().split("T")[0],_=(e,t)=>new Date(e,t,0).toISOString().split("T")[0],M=()=>{let e=new Date(k(new Date));return Z(e,"YYYY-MM-DD")};var We=x(require("dayjs"));var B=e=>e.length===2?[e[0].replace(/\./g,""),e[1].replace(/\./g,"")]:e;var ee=e=>{let t=B(e.toString().replace("%","").replace("R$","").replace(/\s/g,"").trim().split(","));if(t.length===2)return t.join(".");let a=B(t[0].split("."));return a.length===2?a.join("."):t[0].replace(/\./g,"")},He=e=>{if(e==null)return e;if(!ee(e))return null;let t=Number(ee(e));return t>=Number.MAX_SAFE_INTEGER||Number.isNaN(t)?null:t},Je=e=>{var a,o;if(!e||e.indexOf("/")>=0)return null;let t=e.toString().replace(/[^0-9.,-]/g,"");return t.includes(",")&&t.includes(".")?(t.lastIndexOf(",")>t.lastIndexOf(".")?t=t.replace(/\./g,"").replace(",","."):t=t.replace(/,/g,""),Number(t)):t.includes(",")&&((a=t.split(",")[1])==null?void 0:a.length)>0?Number(t.replace(",",".")):t.includes(".")&&((o=t.split(".")[1])==null?void 0:o.length)>0?Number(t):Number(t.replace(/[.,]/g,""))};var Ke=e=>{let t=e.indexOf("."),a=e.length;return t&&a?e.substr(t,a):""};var Ze=new RegExp('<img[^>]+src="(https://vobi-storage[^">]+)"',"gm");var Qe=e=>{if(!e)return!1;let t=new Date(e);return!isNaN(t.getTime())};var Xe=e=>!isNaN(parseFloat(e))&&!isNaN(e-0);var et=e=>{try{return!!new URL(e)}catch{return!1}};var te=x(require("jwt-decode")),tt=e=>e!=null&&e.authorization&&(e==null?void 0:e.authorization.split(" ")[0])==="Bearer"?e.authorization.split(" ")[1]:null,at=e=>{let{user:t,isCustomerView:a,accessedBy:o}=e?(0,te.default)(e):{};return{...t,isCustomerView:a,accessedBy:o}};var ot=(e,t,a,o)=>{let r=e.idStatus>=5?"projetos":"oportunidades",d=t==="customer"?"cliente":"profissional",c=`/${d}/${r}/perfil/${e.id}`,m=`/${d}`;return`${{operator:c,provider:c,customer:m}}/arquivos?arquivo=${a.id}${o?"&visualizar":""}`};var nt=e=>(e==null?void 0:e.length)===0?null:e;var rt=(e,t="0000")=>(t+e).slice(t.length*-1);var st=(e,t=!1)=>{let a={};for(let o=0;o<e.length;o++){let r=e[o];a[r.value]=t?{...r}:r.label}return a};var it=e=>e.replace(/ /g,"").split("-").reduce((t,a)=>t+w(a),"");var lt=e=>e==null?void 0:e.replace(/[,-./]/g,"");var dt=({id:e,name:t,email:a,idCompany:o,userType:r,type:d,isOwner:c,MGMCode:m,groupPermission:p,isActive:u,limitAccess:f,company:h})=>({id:e,name:t,email:a,idCompany:o,userType:r,type:d,isOwner:c,MGMCode:m,groupPermission:p,isActive:u,limitAccess:f,idPlan:h==null?void 0:h.idPlan});var ct=e=>{let t=new Array(e.length),a=0;return new Promise((o,r)=>{e.forEach((d,c)=>{Promise.resolve(d).then(o).catch(m=>{t[c]=m,a+=1,a===e.length&&r(t)})})})};var ut=(e,t)=>Object.keys(t).filter(a=>a!==e).reduce((a,o)=>({...a,[o]:t[o]}),{});var pt=(e,t,a=!0)=>{if(!e)return e;let o=e.toLowerCase();return a&&(o=o.replace(new RegExp("\\s","g"),"")),o=o.replace(new RegExp("[\xE0\xE1\xE2\xE3\xE4\xE5]","g"),"a"),o=o.replace(new RegExp("\xE6","g"),"ae"),o=o.replace(new RegExp("\xE7","g"),"c"),o=o.replace(new RegExp("[\xE8\xE9\xEA\xEB]","g"),"e"),o=o.replace(new RegExp("[\xEC\xED\xEE\xEF]","g"),"i"),o=o.replace(new RegExp("\xF1","g"),"n"),o=o.replace(new RegExp("[\xF2\xF3\xF4\xF5\xF6]","g"),"o"),o=o.replace(new RegExp("\u0153","g"),"oe"),o=o.replace(new RegExp("[\xF9\xFA\xFB\xFC]","g"),"u"),o=o.replace(new RegExp("[\xFD\xFF]","g"),"y"),o=o.replace("'",""),o=o.replace("\xB4",""),o=o.replace("`",""),t&&(o=o.replace(new RegExp("\\W","g"),"")),o};var mt=e=>e==null?void 0:e.normalize("NFD").replace(/[\u0300-\u036f]/g,"").replace(/[^a-zA-Z0-9-/\s]/g,"").replace(/\//g,"").replace(/\s+/g,"-").toLowerCase();var ft=(e,t)=>e.reduce((a,o,r)=>{let d=Math.floor(r/t),c=[...a];return a[d]||(c[d]=[]),c[d].push(o),c},[]);var gt=(e,t,a)=>{let o=a||t;return(e==null?void 0:e.map(r=>o?r[a]||r[t]:r).reduce((r,d)=>r+(Number(d||0)||0),0))||0};var yt=(e,t)=>(e==null?void 0:e.map(a=>t(a)).reduce((a,o)=>a+(Number(o||0)||0),0))||0;var ht=e=>{let t=e.replace(/\D/g,"");return/^(?:\+?55 ?)?(?:0?[1-9]{2})?9\d{8}$/.test(t)};var xt=e=>typeof e!="string"||!e?"":e.normalize("NFD").replace(/[\u0300-\u036f]/g,"").toLowerCase().trim();var j=(e,t="")=>!e||e.length<=0?[]:e.flatMap((a,o)=>{let r=t?`${t}.${o+1}`:`${o+1}`,{children:d,...c}=a;return[{...c,index:r},...j(d||[],r)]}),Dt=e=>j(e).reduce((a,o)=>o.id?{...a,[o.id]:o}:a,{});var bt=(e,t)=>{var o;let a=e?(o=Number(e).toFixed(2))==null?void 0:o.replace(".",","):0;return t?`${F(e*100)}%`:a};var Et=e=>{if(!e)return{};let[t,a]=e.split("-").map(Number),o=M(),r=U(t,a),d=_(t,a);return{startDate:r,endDate:d,actualDate:o}};var Ct=({oldStatus:e,newStatus:t,total:a,user:o,moveStatus:r})=>{var h,E,G,q,z;let{userApprovalAuthorities:d,isOwner:c,groupPermission:m,company:p}=o||{},u=r==null?void 0:r[e];if(!((h=u==null?void 0:u[t])!=null&&h.isAllowed))return null;if(c||m===n.groupPermission.admin||!((E=u==null?void 0:u[t])!=null&&E.authorityLevel))return u==null?void 0:u[t];let f=d==null?void 0:d.find(C=>{var $;return(C==null?void 0:C.idApprovalAuthority)===(($=u==null?void 0:u[t])==null?void 0:$.authorityLevel)});return!f&&((q=p==null?void 0:p.approvalAuthority)!=null&&q[(G=u==null?void 0:u[t])==null?void 0:G.authorityLevel])?!1:(z=u==null?void 0:u[t])!=null&&z.maxAmount?!Number((f==null?void 0:f.maxAmount)||0)&&(f==null?void 0:f.maxAmount)!==0||Number(a||0)<=Number(f==null?void 0:f.maxAmount)?u==null?void 0:u[t]:!1:u==null?void 0:u[t]};var vt=e=>{if(!e)return null;let t=e==null?void 0:e.replace(/\D/g,"");return(t==null?void 0:t.length)===11?t==null?void 0:t.replace(/(\d{3})(\d{3})(\d{3})(\d{2})/,"$1.$2.$3-$4"):(t==null?void 0:t.length)===14?t==null?void 0:t.replace(/(\d{2})(\d{3})(\d{3})(\d{4})(\d{2})/,"$1.$2.$3/$4-$5"):t};var V=x(require("dayjs")),Rt=()=>{let e=(0,V.default)().format("YYYY-MM-DD"),t=(0,V.default)().subtract(1,"day").format("YYYY-MM-DD");return{today:e,yesterday:t}};0&&(module.exports={BAD_GATEWAY,BAD_REQUEST,FORBIDDEN,INTERNAL_SERVER_ERROR,IsJsonString,METHOD_NOT_ALLOWED,NOT_ALLOWED,NOT_FOUND,SERVICE_UNAVAILABLE,UNAUTHORIZED,asArray,asBrazilianDate,asDate,asyncForEach,brazilianDateTime,brazilianDateToDate,capitalize,checkApprovalAuthority,checkCnpj,checkCpf,checkEmail,configure,containsEncodedComponents,currentDay,curry,dateIsValid,decodeToken,decrypt,diffObject,dynamici18nString,elasticTransformOr,encrypt,enumHelper,error,eventBus,extractMonthInfo,extractValueFromWhere,filterAttributes,filterEmpty,findValue,firstMonthDay,flatMapData,flattenChildren,formatCurrency,formatDate,formatDocument,formatNumber,formatNumberAnyFormat,get,getConfig,getDateOpenFinance,getExtension,getMonthNumber,getNameWithoutExtension,getNextDay,getNextWeekday,getPreviewsWeekday,getToday,getToken,getTomorrow,getYesterday,imgSrcRegex,isAfter,isDateValid,isNumber,isOfAge,isValidUrl,lastMonthDay,makeRefurbishFileUrl,maxDateToList,minDateToList,monthsBetween,normalizeString,nullIfEmpty,padLeft,parseArrayAsObject,parseRouteToModel,prepareDoc,prepareSession,promiseAny,promiseEach,removeProperty,removeSpecialChar,replaceNumberOrPercentage,slugify,splitList,sum,sumByFunction,validateCredential,validateMobilePhoneNumber,valueReplacer});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vobi_lib",
3
- "version": "1.4.13",
3
+ "version": "1.5.1",
4
4
  "description": "Vobi Library",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",