@orbe-agro/client-core 5.3.187 → 5.3.189
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/@types/base/@types/models/racao/autorizacaoAtendimentoCliente.d.ts +4 -36
- package/dist/@types/base/@types/models/racao/autorizacaoAtendimentoCliente.d.ts.map +1 -1
- package/dist/@types/base/configs/endpoints.config/dm/config/user.d.ts +4 -0
- package/dist/@types/base/configs/endpoints.config/dm/config/user.d.ts.map +1 -1
- package/dist/@types/base/configs/endpoints.config/dm/dm.d.ts +4 -0
- package/dist/@types/base/configs/endpoints.config/dm/dm.d.ts.map +1 -1
- package/dist/@types/base/configs/endpoints.config/endpoints.navigation.d.ts +8 -0
- package/dist/@types/base/configs/endpoints.config/endpoints.navigation.d.ts.map +1 -1
- package/dist/@types/base/configs/endpoints.config/racao/config/autorizacaoAtendimentoCliente.d.ts +4 -0
- package/dist/@types/base/configs/endpoints.config/racao/config/autorizacaoAtendimentoCliente.d.ts.map +1 -1
- package/dist/@types/base/configs/endpoints.config/racao/racao.d.ts +4 -0
- package/dist/@types/base/configs/endpoints.config/racao/racao.d.ts.map +1 -1
- package/dist/@types/base/services/modules/dm/user/UserService.d.ts +1 -0
- package/dist/@types/base/services/modules/dm/user/UserService.d.ts.map +1 -1
- package/dist/@types/base/services/modules/racao/autorizacaoAtendimentoCliente/AutorizacaoAtendimentoClienteService.d.ts +1 -0
- package/dist/@types/base/services/modules/racao/autorizacaoAtendimentoCliente/AutorizacaoAtendimentoClienteService.d.ts.map +1 -1
- package/dist/@types/base/utils/colorClassName/badge.d.ts.map +1 -1
- package/dist/@types/base/utils/functions/stringUtils.d.ts.map +1 -1
- package/dist/base/components/shared/AceitarProcessoDialog.js +11 -11
- package/dist/base/components/shared/AceitarProcessoDialog.js.map +1 -1
- package/dist/base/configs/endpoints.config/dm/config/user.js +4 -3
- package/dist/base/configs/endpoints.config/dm/config/user.js.map +1 -1
- package/dist/base/configs/endpoints.config/racao/config/autorizacaoAtendimentoCliente.js +4 -3
- package/dist/base/configs/endpoints.config/racao/config/autorizacaoAtendimentoCliente.js.map +1 -1
- package/dist/base/index.js +323 -321
- package/dist/base/services/index.js +328 -326
- package/dist/base/services/modules/dm/index.js +26 -25
- package/dist/base/services/modules/dm/user/UserService.js +14 -6
- package/dist/base/services/modules/dm/user/UserService.js.map +1 -1
- package/dist/base/services/modules/index.js +322 -320
- package/dist/base/services/modules/racao/autorizacaoAtendimentoCliente/AutorizacaoAtendimentoClienteService.js +21 -10
- package/dist/base/services/modules/racao/autorizacaoAtendimentoCliente/AutorizacaoAtendimentoClienteService.js.map +1 -1
- package/dist/base/services/modules/racao/index.js +54 -53
- package/dist/base/utils/colorClassName/badge.js +1 -0
- package/dist/base/utils/colorClassName/badge.js.map +1 -1
- package/dist/base/utils/functions/stringUtils.js +1 -0
- package/dist/base/utils/functions/stringUtils.js.map +1 -1
- package/lib/base/@types/models/racao/autorizacaoAtendimentoCliente.ts +4 -40
- package/lib/base/components/shared/AceitarProcessoDialog.tsx +1 -1
- package/lib/base/configs/endpoints.config/dm/config/user.ts +2 -1
- package/lib/base/configs/endpoints.config/racao/config/autorizacaoAtendimentoCliente.ts +1 -0
- package/lib/base/services/modules/dm/user/UserService.tsx +8 -0
- package/lib/base/services/modules/racao/autorizacaoAtendimentoCliente/AutorizacaoAtendimentoClienteService.ts +12 -0
- package/lib/base/utils/colorClassName/badge.ts +1 -0
- package/lib/base/utils/functions/stringUtils.ts +1 -0
- package/package.json +1 -1
|
@@ -3,46 +3,14 @@ export type TAutorizacaoAtendimentoClienteColumnDef = {
|
|
|
3
3
|
dataCriacao: string;
|
|
4
4
|
usuarioCriacaoId: number;
|
|
5
5
|
usuarioCriacaoNome: string;
|
|
6
|
-
dataEmissao: string;
|
|
7
|
-
empresaCedente: TBusinessPartner;
|
|
8
|
-
empresaCessionaria: TBusinessPartner;
|
|
9
|
-
arquivoContrato?: Blob | ArrayBuffer | string;
|
|
10
|
-
arquivoContratoAssinado?: Blob | ArrayBuffer | string;
|
|
11
6
|
};
|
|
12
7
|
export type TAutorizacaoAtendimentoCliente = {
|
|
13
8
|
id?: number;
|
|
14
|
-
|
|
9
|
+
dataCriacao?: string;
|
|
15
10
|
empresaCedenteId: number;
|
|
11
|
+
representanteCedente: string;
|
|
16
12
|
empresaCessionariaId: number;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
arquivoContratoAssinado?: Blob | ArrayBuffer | string;
|
|
20
|
-
};
|
|
21
|
-
export type TBusinessPartner = {
|
|
22
|
-
id?: number;
|
|
23
|
-
ativo?: boolean;
|
|
24
|
-
isFornecedor?: boolean;
|
|
25
|
-
isCliente?: boolean;
|
|
26
|
-
businessPartner: string;
|
|
27
|
-
nomeCompletoBusinessPartner: string;
|
|
28
|
-
cnpj?: string;
|
|
29
|
-
cpf?: string;
|
|
30
|
-
cliente?: TCliente;
|
|
31
|
-
fornecedor?: TFornecedor;
|
|
32
|
-
};
|
|
33
|
-
export type TFornecedor = {
|
|
34
|
-
id?: number;
|
|
35
|
-
ativo?: boolean;
|
|
36
|
-
empresasFornecedor?: TEmpresa[];
|
|
37
|
-
};
|
|
38
|
-
export type TCliente = {
|
|
39
|
-
id: number;
|
|
40
|
-
ativo: boolean;
|
|
41
|
-
empresasCliente: TEmpresa[];
|
|
42
|
-
};
|
|
43
|
-
export type TEmpresa = {
|
|
44
|
-
id: number;
|
|
45
|
-
ativo: boolean;
|
|
46
|
-
codigoEmpresa: string;
|
|
13
|
+
clienteNome: string;
|
|
14
|
+
clienteCpfCnpj: string;
|
|
47
15
|
};
|
|
48
16
|
//# sourceMappingURL=autorizacaoAtendimentoCliente.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autorizacaoAtendimentoCliente.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/@types/models/racao/autorizacaoAtendimentoCliente.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uCAAuC,GAAG;IAClD,EAAE,EAAE,MAAM,CAAA;IACV,WAAW,EAAE,MAAM,CAAA;IACnB,gBAAgB,EAAE,MAAM,CAAA;IACxB,kBAAkB,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"autorizacaoAtendimentoCliente.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/@types/models/racao/autorizacaoAtendimentoCliente.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uCAAuC,GAAG;IAClD,EAAE,EAAE,MAAM,CAAA;IACV,WAAW,EAAE,MAAM,CAAA;IACnB,gBAAgB,EAAE,MAAM,CAAA;IACxB,kBAAkB,EAAE,MAAM,CAAA;CAC7B,CAAA;AAED,MAAM,MAAM,8BAA8B,GAAG;IACzC,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,gBAAgB,EAAE,MAAM,CAAA;IACxB,oBAAoB,EAAE,MAAM,CAAA;IAC5B,oBAAoB,EAAE,MAAM,CAAA;IAC5B,WAAW,EAAE,MAAM,CAAA;IACnB,cAAc,EAAE,MAAM,CAAA;CACzB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/configs/endpoints.config/dm/config/user.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/configs/endpoints.config/dm/config/user.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,IAAI;;;;;;;;;CAGT,CAAA;AAED,eAAe,IAAI,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dm.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/configs/endpoints.config/dm/dm.ts"],"names":[],"mappings":"AAyBA,QAAA,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"dm.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/configs/endpoints.config/dm/dm.ts"],"names":[],"mappings":"AAyBA,QAAA,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyBP,CAAA;AAED,eAAe,EAAE,CAAC"}
|
|
@@ -132,6 +132,10 @@ declare const endpointNavigationConfig: {
|
|
|
132
132
|
endpoint: string;
|
|
133
133
|
method: string;
|
|
134
134
|
};
|
|
135
|
+
upload: {
|
|
136
|
+
endpoint: string;
|
|
137
|
+
method: string;
|
|
138
|
+
};
|
|
135
139
|
};
|
|
136
140
|
listaTecnica: {
|
|
137
141
|
findOne: {
|
|
@@ -548,6 +552,10 @@ declare const endpointNavigationConfig: {
|
|
|
548
552
|
endpoint: string;
|
|
549
553
|
httpMethod: string;
|
|
550
554
|
};
|
|
555
|
+
findByIds: {
|
|
556
|
+
endpoint: string;
|
|
557
|
+
httpMethod: string;
|
|
558
|
+
};
|
|
551
559
|
};
|
|
552
560
|
departamento: {
|
|
553
561
|
findMonitor: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endpoints.navigation.d.ts","sourceRoot":"","sources":["../../../../../lib/base/configs/endpoints.config/endpoints.navigation.ts"],"names":[],"mappings":"AAgDA,eAAO,MAAM,SAAS,SAAS,CAAC;AAEhC,QAAA,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"endpoints.navigation.d.ts","sourceRoot":"","sources":["../../../../../lib/base/configs/endpoints.config/endpoints.navigation.ts"],"names":[],"mappings":"AAgDA,eAAO,MAAM,SAAS,SAAS,CAAC;AAEhC,QAAA,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgD7B,CAAC;AAEF,eAAe,wBAAwB,CAAC"}
|
package/dist/@types/base/configs/endpoints.config/racao/config/autorizacaoAtendimentoCliente.d.ts
CHANGED
|
@@ -19,6 +19,10 @@ declare const autorizacaoAtendimentoCliente: {
|
|
|
19
19
|
endpoint: string;
|
|
20
20
|
method: string;
|
|
21
21
|
};
|
|
22
|
+
upload: {
|
|
23
|
+
endpoint: string;
|
|
24
|
+
method: string;
|
|
25
|
+
};
|
|
22
26
|
};
|
|
23
27
|
export default autorizacaoAtendimentoCliente;
|
|
24
28
|
//# sourceMappingURL=autorizacaoAtendimentoCliente.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autorizacaoAtendimentoCliente.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/configs/endpoints.config/racao/config/autorizacaoAtendimentoCliente.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"autorizacaoAtendimentoCliente.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/configs/endpoints.config/racao/config/autorizacaoAtendimentoCliente.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;CAOlC,CAAA;AAED,eAAe,6BAA6B,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"racao.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/configs/endpoints.config/racao/racao.ts"],"names":[],"mappings":"AAaA,QAAA,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"racao.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/configs/endpoints.config/racao/racao.ts"],"names":[],"mappings":"AAaA,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAaV,CAAA;AAED,eAAe,KAAK,CAAA"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { IFilterParams, TQueryResponse } from "@base/@types/api";
|
|
2
2
|
export declare function apiFindUser(body?: IFilterParams): Promise<TQueryResponse<any>>;
|
|
3
|
+
export declare function apiFindByIds(filters?: IFilterParams): Promise<TQueryResponse<any>>;
|
|
3
4
|
//# sourceMappingURL=UserService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserService.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/services/modules/dm/user/UserService.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAKjE,wBAAsB,WAAW,CAAC,IAAI,CAAC,EAAE,aAAa,gCAMrD"}
|
|
1
|
+
{"version":3,"file":"UserService.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/services/modules/dm/user/UserService.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAKjE,wBAAsB,WAAW,CAAC,IAAI,CAAC,EAAE,aAAa,gCAMrD;AAED,wBAAsB,YAAY,CAAC,OAAO,CAAC,EAAE,aAAa,gCAMzD"}
|
|
@@ -5,4 +5,5 @@ export declare function apiAddRacaoAutorizacaoAtendimentoCliente(body: TAutoriza
|
|
|
5
5
|
export declare function apiUpdateRacaoAutorizacaoAtendimentoCliente(body: TAutorizacaoAtendimentoCliente): Promise<TQueryResponse<TAutorizacaoAtendimentoCliente>>;
|
|
6
6
|
export declare function apiDeleteRacaoAutorizacaoAtendimentoCliente(id: number): Promise<TQueryResponse<TAutorizacaoAtendimentoCliente>>;
|
|
7
7
|
export declare function apiFindMonitorRacaoAutorizacaoAtendimentoCliente(body?: IFilterParams): Promise<TQueryResponse<TAutorizacaoAtendimentoCliente>>;
|
|
8
|
+
export declare function apiUploadRacaoAutorizacaoAtendimentoCliente(formData: FormData, id: number): Promise<any>;
|
|
8
9
|
//# sourceMappingURL=AutorizacaoAtendimentoClienteService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AutorizacaoAtendimentoClienteService.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/services/modules/racao/autorizacaoAtendimentoCliente/AutorizacaoAtendimentoClienteService.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AutorizacaoAtendimentoClienteService.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/services/modules/racao/autorizacaoAtendimentoCliente/AutorizacaoAtendimentoClienteService.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,8BAA8B,EAAE,MAAM,yDAAyD,CAAC;AAKzG,wBAAsB,wCAAwC,CAAC,EAAE,EAAE,MAAM,2CAKxE;AAED,wBAAsB,wCAAwC,CAAC,IAAI,EAAE,8BAA8B,2DAMlG;AAED,wBAAsB,2CAA2C,CAAC,IAAI,EAAE,8BAA8B,2DAMrG;AAED,wBAAsB,2CAA2C,CAAC,EAAE,EAAE,MAAM,2DAK3E;AAED,wBAAsB,gDAAgD,CAAC,IAAI,CAAC,EAAE,aAAa,2DAM1F;AAED,wBAAsB,2CAA2C,CAAC,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAM,gBAS/F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"badge.d.ts","sourceRoot":"","sources":["../../../../../lib/base/utils/colorClassName/badge.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"badge.d.ts","sourceRoot":"","sources":["../../../../../lib/base/utils/colorClassName/badge.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CA6CrD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stringUtils.d.ts","sourceRoot":"","sources":["../../../../../lib/base/utils/functions/stringUtils.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,KAAK,YAAY,GAAG;IAChB,QAAQ,CAAC,EAAE;QACP,IAAI,CAAC,EAAE;YACH,MAAM,CAAC,EAAE,MAAM,CAAC;YAChB,OAAO,CAAC,EAAE,MAAM,CAAC;SACpB,CAAC;KACL,CAAC;IACF,QAAQ,CAAC,EAAE,MAAM,GAAG;QAAE,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACxC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE;QACH,OAAO,CAAC,EAAE,MAAM,CAAC;KACpB,GAAG,MAAM,CAAC;CACd,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,YAAY,GAAG,MAAM,GAAG,MAAM,CAqBxE;
|
|
1
|
+
{"version":3,"file":"stringUtils.d.ts","sourceRoot":"","sources":["../../../../../lib/base/utils/functions/stringUtils.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,KAAK,YAAY,GAAG;IAChB,QAAQ,CAAC,EAAE;QACP,IAAI,CAAC,EAAE;YACH,MAAM,CAAC,EAAE,MAAM,CAAC;YAChB,OAAO,CAAC,EAAE,MAAM,CAAC;SACpB,CAAC;KACL,CAAC;IACF,QAAQ,CAAC,EAAE,MAAM,GAAG;QAAE,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACxC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE;QACH,OAAO,CAAC,EAAE,MAAM,CAAC;KACpB,GAAG,MAAM,CAAC;CACd,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,YAAY,GAAG,MAAM,GAAG,MAAM,CAqBxE;AA2DD;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAGpD"}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as e, Fragment as m, jsxs as c } from "react/jsx-runtime";
|
|
2
2
|
import "../../../@ecme/components/index.js";
|
|
3
3
|
import n from "../../hooks/flux/useAceitarProcesso.js";
|
|
4
4
|
import d from "../../../@ecme/components/ui/Dialog/Dialog.js";
|
|
5
|
-
import
|
|
5
|
+
import o from "../../../@ecme/components/ui/Button/Button.js";
|
|
6
6
|
const P = ({
|
|
7
|
-
isOpen:
|
|
8
|
-
onClose:
|
|
7
|
+
isOpen: s,
|
|
8
|
+
onClose: r,
|
|
9
9
|
idProcesso: t
|
|
10
10
|
}) => {
|
|
11
|
-
const { mutate: a } = n(), i = (l) => {
|
|
11
|
+
const { mutate: a } = n(r), i = (l) => {
|
|
12
12
|
a(l);
|
|
13
13
|
};
|
|
14
|
-
return /* @__PURE__ */
|
|
15
|
-
/* @__PURE__ */
|
|
16
|
-
/* @__PURE__ */
|
|
17
|
-
/* @__PURE__ */
|
|
18
|
-
/* @__PURE__ */
|
|
19
|
-
|
|
14
|
+
return /* @__PURE__ */ e(m, { children: /* @__PURE__ */ c(d, { isOpen: s, onClose: r, onRequestClose: r, children: [
|
|
15
|
+
/* @__PURE__ */ e("h5", { className: "mb-4", children: "Aceitar Processo" }),
|
|
16
|
+
/* @__PURE__ */ c("div", { className: "flex w-full items-start", children: [
|
|
17
|
+
/* @__PURE__ */ e(o, { block: !0, className: "mx-2", onClick: () => r(), children: "Cancelar" }),
|
|
18
|
+
/* @__PURE__ */ e(
|
|
19
|
+
o,
|
|
20
20
|
{
|
|
21
21
|
block: !0,
|
|
22
22
|
className: "mx-2",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AceitarProcessoDialog.js","sources":["../../../../lib/base/components/shared/AceitarProcessoDialog.tsx"],"sourcesContent":["import { Button, Dialog } from '@/components'\nimport useAceitarProcesso from '@base/hooks/flux/useAceitarProcesso'\n\ninterface AceitarProcessoDialogProps {\n isOpen: boolean\n onClose: () => void\n idProcesso: number\n}\n\nconst AceitarProcessoDialog = ({\n isOpen,\n onClose,\n idProcesso,\n}: AceitarProcessoDialogProps) => {\n const { mutate: aceitarProcesso } = useAceitarProcesso()\n\n const handleAceitarProcesso = (id: number) => {\n aceitarProcesso(id)\n }\n\n return (\n <>\n <Dialog isOpen={isOpen} onClose={onClose} onRequestClose={onClose}>\n <h5 className=\"mb-4\">Aceitar Processo</h5>\n <div className=\"flex w-full items-start\">\n <Button block className=\"mx-2\" onClick={() => onClose()}>\n Cancelar\n </Button>\n <Button\n block\n className=\"mx-2\"\n variant=\"solid\"\n onClick={() => handleAceitarProcesso(idProcesso)}\n >\n Confirmar\n </Button>\n </div>\n </Dialog>\n </>\n )\n}\n\nexport default AceitarProcessoDialog\n"],"names":["AceitarProcessoDialog","isOpen","onClose","idProcesso","aceitarProcesso","useAceitarProcesso","handleAceitarProcesso","id","jsxs","Dialog","jsx","Button"],"mappings":";;;;;AASA,MAAMA,IAAwB,CAAC;AAAA,EAC3B,QAAAC;AAAA,EACA,SAAAC;AAAA,EACA,YAAAC;AACJ,MAAkC;AAC9B,QAAM,EAAE,QAAQC,
|
|
1
|
+
{"version":3,"file":"AceitarProcessoDialog.js","sources":["../../../../lib/base/components/shared/AceitarProcessoDialog.tsx"],"sourcesContent":["import { Button, Dialog } from '@/components'\nimport useAceitarProcesso from '@base/hooks/flux/useAceitarProcesso'\n\ninterface AceitarProcessoDialogProps {\n isOpen: boolean\n onClose: () => void\n idProcesso: number\n}\n\nconst AceitarProcessoDialog = ({\n isOpen,\n onClose,\n idProcesso,\n}: AceitarProcessoDialogProps) => {\n const { mutate: aceitarProcesso } = useAceitarProcesso(onClose)\n\n const handleAceitarProcesso = (id: number) => {\n aceitarProcesso(id)\n }\n\n return (\n <>\n <Dialog isOpen={isOpen} onClose={onClose} onRequestClose={onClose}>\n <h5 className=\"mb-4\">Aceitar Processo</h5>\n <div className=\"flex w-full items-start\">\n <Button block className=\"mx-2\" onClick={() => onClose()}>\n Cancelar\n </Button>\n <Button\n block\n className=\"mx-2\"\n variant=\"solid\"\n onClick={() => handleAceitarProcesso(idProcesso)}\n >\n Confirmar\n </Button>\n </div>\n </Dialog>\n </>\n )\n}\n\nexport default AceitarProcessoDialog\n"],"names":["AceitarProcessoDialog","isOpen","onClose","idProcesso","aceitarProcesso","useAceitarProcesso","handleAceitarProcesso","id","jsxs","Dialog","jsx","Button"],"mappings":";;;;;AASA,MAAMA,IAAwB,CAAC;AAAA,EAC3B,QAAAC;AAAA,EACA,SAAAC;AAAA,EACA,YAAAC;AACJ,MAAkC;AAC9B,QAAM,EAAE,QAAQC,MAAoBC,EAAmBH,CAAO,GAExDI,IAAwB,CAACC,MAAe;AAC1C,IAAAH,EAAgBG,CAAE;AAAA,EACtB;AAEA,gCAEQ,UAAC,gBAAAC,EAAAC,GAAA,EAAO,QAAAR,GAAgB,SAAAC,GAAkB,gBAAgBA,GACtD,UAAA;AAAA,IAAC,gBAAAQ,EAAA,MAAA,EAAG,WAAU,QAAO,UAAgB,oBAAA;AAAA,IACrC,gBAAAF,EAAC,OAAI,EAAA,WAAU,2BACX,UAAA;AAAA,MAAC,gBAAAE,EAAAC,GAAA,EAAO,OAAK,IAAC,WAAU,QAAO,SAAS,MAAMT,EAAQ,GAAG,UAEzD,WAAA,CAAA;AAAA,MACA,gBAAAQ;AAAA,QAACC;AAAA,QAAA;AAAA,UACG,OAAK;AAAA,UACL,WAAU;AAAA,UACV,SAAQ;AAAA,UACR,SAAS,MAAML,EAAsBH,CAAU;AAAA,UAClD,UAAA;AAAA,QAAA;AAAA,MAAA;AAAA,IAED,EACJ,CAAA;AAAA,EAAA,EAAA,CACJ,EACJ,CAAA;AAER;"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
const t = "/dados-mestres/api/user",
|
|
2
|
-
find: { endpoint: `${t}/find`, httpMethod: "post" }
|
|
1
|
+
const t = "/dados-mestres/api/user", d = {
|
|
2
|
+
find: { endpoint: `${t}/find`, httpMethod: "post" },
|
|
3
|
+
findByIds: { endpoint: `${t}/find-by-ids`, httpMethod: "post" }
|
|
3
4
|
};
|
|
4
5
|
export {
|
|
5
|
-
|
|
6
|
+
d as default
|
|
6
7
|
};
|
|
7
8
|
//# sourceMappingURL=user.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sources":["../../../../../../lib/base/configs/endpoints.config/dm/config/user.ts"],"sourcesContent":["const USER_BASE_URL = '/dados-mestres/api/user'\n\nconst user = {\n find: { endpoint: `${USER_BASE_URL}/find`, httpMethod: 'post' }\n}\n\nexport default user"],"names":["USER_BASE_URL","user"],"mappings":"AAAA,MAAMA,IAAgB,2BAEhBC,IAAO;AAAA,EACT,MAAM,EAAE,UAAU,GAAGD,CAAa,SAAS,YAAY,OAAO;
|
|
1
|
+
{"version":3,"file":"user.js","sources":["../../../../../../lib/base/configs/endpoints.config/dm/config/user.ts"],"sourcesContent":["const USER_BASE_URL = '/dados-mestres/api/user'\n\nconst user = {\n find: { endpoint: `${USER_BASE_URL}/find`, httpMethod: 'post' },\n findByIds: { endpoint: `${USER_BASE_URL}/find-by-ids`, httpMethod: 'post' }\n}\n\nexport default user"],"names":["USER_BASE_URL","user"],"mappings":"AAAA,MAAMA,IAAgB,2BAEhBC,IAAO;AAAA,EACT,MAAM,EAAE,UAAU,GAAGD,CAAa,SAAS,YAAY,OAAO;AAAA,EAC9D,WAAW,EAAE,UAAU,GAAGA,CAAa,gBAAgB,YAAY,OAAO;AAC9E;"}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
const t = "/racao/api/racao/autorizacao-atendimento-cliente",
|
|
1
|
+
const t = "/racao/api/racao/autorizacao-atendimento-cliente", o = {
|
|
2
2
|
findOne: { endpoint: `${t}/`, method: "get" },
|
|
3
3
|
add: { endpoint: `${t}`, method: "post" },
|
|
4
4
|
update: { endpoint: `${t}`, method: "put" },
|
|
5
5
|
delete: { endpoint: `${t}/`, method: "delete" },
|
|
6
|
-
findMonitor: { endpoint: `${t}/find-monitor`, method: "post" }
|
|
6
|
+
findMonitor: { endpoint: `${t}/find-monitor`, method: "post" },
|
|
7
|
+
upload: { endpoint: `${t}/upload-arquivo/`, method: "post" }
|
|
7
8
|
};
|
|
8
9
|
export {
|
|
9
|
-
|
|
10
|
+
o as default
|
|
10
11
|
};
|
|
11
12
|
//# sourceMappingURL=autorizacaoAtendimentoCliente.js.map
|
package/dist/base/configs/endpoints.config/racao/config/autorizacaoAtendimentoCliente.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autorizacaoAtendimentoCliente.js","sources":["../../../../../../lib/base/configs/endpoints.config/racao/config/autorizacaoAtendimentoCliente.ts"],"sourcesContent":["const AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL = '/racao/api/racao/autorizacao-atendimento-cliente'\n\nconst autorizacaoAtendimentoCliente = {\n findOne: { endpoint: `${AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL}/`, method: 'get' },\n add: { endpoint: `${AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL}`, method: 'post' },\n update: { endpoint: `${AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL}`, method: 'put' },\n delete: { endpoint: `${AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL}/`, method: 'delete' },\n findMonitor: { endpoint: `${AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL}/find-monitor`, method: 'post' },\n}\n\nexport default autorizacaoAtendimentoCliente"],"names":["AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL","autorizacaoAtendimentoCliente"],"mappings":"AAAA,MAAMA,IAA2C,oDAE3CC,IAAgC;AAAA,EAClC,SAAS,EAAE,UAAU,GAAGD,CAAwC,KAAK,QAAQ,MAAM;AAAA,EACnF,KAAK,EAAE,UAAU,GAAGA,CAAwC,IAAI,QAAQ,OAAO;AAAA,EAC/E,QAAQ,EAAE,UAAU,GAAGA,CAAwC,IAAI,QAAQ,MAAM;AAAA,EACjF,QAAQ,EAAE,UAAU,GAAGA,CAAwC,KAAK,QAAQ,SAAS;AAAA,EACrF,aAAa,EAAE,UAAU,GAAGA,CAAwC,iBAAiB,QAAQ,OAAO;
|
|
1
|
+
{"version":3,"file":"autorizacaoAtendimentoCliente.js","sources":["../../../../../../lib/base/configs/endpoints.config/racao/config/autorizacaoAtendimentoCliente.ts"],"sourcesContent":["const AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL = '/racao/api/racao/autorizacao-atendimento-cliente'\n\nconst autorizacaoAtendimentoCliente = {\n findOne: { endpoint: `${AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL}/`, method: 'get' },\n add: { endpoint: `${AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL}`, method: 'post' },\n update: { endpoint: `${AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL}`, method: 'put' },\n delete: { endpoint: `${AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL}/`, method: 'delete' },\n findMonitor: { endpoint: `${AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL}/find-monitor`, method: 'post' },\n upload: { endpoint: `${AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL}/upload-arquivo/`, method: 'post' },\n}\n\nexport default autorizacaoAtendimentoCliente"],"names":["AUTORIZACAO_ATENDIMENTO_CLIENTE_BASE_URL","autorizacaoAtendimentoCliente"],"mappings":"AAAA,MAAMA,IAA2C,oDAE3CC,IAAgC;AAAA,EAClC,SAAS,EAAE,UAAU,GAAGD,CAAwC,KAAK,QAAQ,MAAM;AAAA,EACnF,KAAK,EAAE,UAAU,GAAGA,CAAwC,IAAI,QAAQ,OAAO;AAAA,EAC/E,QAAQ,EAAE,UAAU,GAAGA,CAAwC,IAAI,QAAQ,MAAM;AAAA,EACjF,QAAQ,EAAE,UAAU,GAAGA,CAAwC,KAAK,QAAQ,SAAS;AAAA,EACrF,aAAa,EAAE,UAAU,GAAGA,CAAwC,iBAAiB,QAAQ,OAAO;AAAA,EACpG,QAAQ,EAAE,UAAU,GAAGA,CAAwC,oBAAoB,QAAQ,OAAO;AACtG;"}
|