@orbe-agro/client-core 5.6.164 → 5.6.165
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/@ecme/components/template/Footer.js +1 -1
- package/dist/@types/base/configs/endpoints.config/endpoints.navigation.d.ts +196 -0
- package/dist/@types/base/configs/endpoints.config/endpoints.navigation.d.ts.map +1 -1
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/agenda.d.ts +36 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/agenda.d.ts.map +1 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/contratos.d.ts +44 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/contratos.d.ts.map +1 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/dashboard.d.ts +40 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/dashboard.d.ts.map +1 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/notasFiscais.d.ts +28 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/notasFiscais.d.ts.map +1 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/pagamentos.d.ts +36 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/pagamentos.d.ts.map +1 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/planoPagamento.d.ts +24 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/planoPagamento.d.ts.map +1 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/gestaoServicos.d.ts +196 -0
- package/dist/@types/base/configs/endpoints.config/gestaoServicos/gestaoServicos.d.ts.map +1 -1
- package/dist/@types/base/services/modules/gestaoServicos/GestaoServicosService.d.ts +35 -0
- package/dist/@types/base/services/modules/gestaoServicos/GestaoServicosService.d.ts.map +1 -0
- package/dist/@types/base/services/modules/gestaoServicos/index.d.ts +1 -0
- package/dist/@types/base/services/modules/gestaoServicos/index.d.ts.map +1 -1
- package/dist/base/configs/endpoints.config/gestaoServicos/config/agenda.js +15 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/config/agenda.js.map +1 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/config/contratos.js +17 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/config/contratos.js.map +1 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/config/dashboard.js +16 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/config/dashboard.js.map +1 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/config/notasFiscais.js +13 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/config/notasFiscais.js.map +1 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/config/pagamentos.js +15 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/config/pagamentos.js.map +1 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/config/planoPagamento.js +12 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/config/planoPagamento.js.map +1 -0
- package/dist/base/configs/endpoints.config/gestaoServicos/gestaoServicos.js +13 -1
- package/dist/base/configs/endpoints.config/gestaoServicos/gestaoServicos.js.map +1 -1
- package/dist/base/services/modules/gestaoServicos/GestaoServicosService.js +259 -0
- package/dist/base/services/modules/gestaoServicos/GestaoServicosService.js.map +1 -0
- package/dist/base/services/modules/gestaoServicos/index.js +35 -1
- package/dist/base/services/modules/gestaoServicos/index.js.map +1 -1
- package/lib/base/configs/endpoints.config/gestaoServicos/config/agenda.ts +14 -0
- package/lib/base/configs/endpoints.config/gestaoServicos/config/contratos.ts +16 -0
- package/lib/base/configs/endpoints.config/gestaoServicos/config/dashboard.ts +15 -0
- package/lib/base/configs/endpoints.config/gestaoServicos/config/notasFiscais.ts +12 -0
- package/lib/base/configs/endpoints.config/gestaoServicos/config/pagamentos.ts +14 -0
- package/lib/base/configs/endpoints.config/gestaoServicos/config/planoPagamento.ts +11 -0
- package/lib/base/configs/endpoints.config/gestaoServicos/gestaoServicos.ts +13 -1
- package/lib/base/services/modules/gestaoServicos/GestaoServicosService.ts +268 -0
- package/lib/base/services/modules/gestaoServicos/index.ts +1 -0
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import Container from "../shared/Container.js";
|
|
|
3
3
|
import classNames from "../../utils/classNames.js";
|
|
4
4
|
import { APP_NAME } from "../../constants/app.constant.js";
|
|
5
5
|
import { PAGE_CONTAINER_GUTTER_X } from "../../constants/theme.constant.js";
|
|
6
|
-
const version = true ? "5.6.
|
|
6
|
+
const version = true ? "5.6.165" : "0.0.0";
|
|
7
7
|
const FooterContent = () => {
|
|
8
8
|
return /* @__PURE__ */ jsxs("div", { className: "flex w-full flex-auto items-center justify-between", children: [
|
|
9
9
|
/* @__PURE__ */ jsxs("span", { children: [
|
|
@@ -3880,6 +3880,202 @@ declare const endpointNavigationConfig: {
|
|
|
3880
3880
|
httpMethod: string;
|
|
3881
3881
|
};
|
|
3882
3882
|
};
|
|
3883
|
+
contratos: {
|
|
3884
|
+
findMonitor: {
|
|
3885
|
+
endpoint: string;
|
|
3886
|
+
httpMethod: string;
|
|
3887
|
+
};
|
|
3888
|
+
findOne: {
|
|
3889
|
+
endpoint: string;
|
|
3890
|
+
httpMethod: string;
|
|
3891
|
+
};
|
|
3892
|
+
create: {
|
|
3893
|
+
endpoint: string;
|
|
3894
|
+
httpMethod: string;
|
|
3895
|
+
};
|
|
3896
|
+
update: {
|
|
3897
|
+
endpoint: string;
|
|
3898
|
+
httpMethod: string;
|
|
3899
|
+
};
|
|
3900
|
+
submeter: {
|
|
3901
|
+
endpoint: string;
|
|
3902
|
+
httpMethod: string;
|
|
3903
|
+
};
|
|
3904
|
+
aprovar: {
|
|
3905
|
+
endpoint: string;
|
|
3906
|
+
httpMethod: string;
|
|
3907
|
+
};
|
|
3908
|
+
reprovar: {
|
|
3909
|
+
endpoint: string;
|
|
3910
|
+
httpMethod: string;
|
|
3911
|
+
};
|
|
3912
|
+
encerrar: {
|
|
3913
|
+
endpoint: string;
|
|
3914
|
+
httpMethod: string;
|
|
3915
|
+
};
|
|
3916
|
+
vencendo: {
|
|
3917
|
+
endpoint: string;
|
|
3918
|
+
httpMethod: string;
|
|
3919
|
+
};
|
|
3920
|
+
executarReajuste: {
|
|
3921
|
+
endpoint: string;
|
|
3922
|
+
httpMethod: string;
|
|
3923
|
+
};
|
|
3924
|
+
};
|
|
3925
|
+
agenda: {
|
|
3926
|
+
findMonitor: {
|
|
3927
|
+
endpoint: string;
|
|
3928
|
+
httpMethod: string;
|
|
3929
|
+
};
|
|
3930
|
+
findOne: {
|
|
3931
|
+
endpoint: string;
|
|
3932
|
+
httpMethod: string;
|
|
3933
|
+
};
|
|
3934
|
+
gerar: {
|
|
3935
|
+
endpoint: string;
|
|
3936
|
+
httpMethod: string;
|
|
3937
|
+
};
|
|
3938
|
+
marcarRealizada: {
|
|
3939
|
+
endpoint: string;
|
|
3940
|
+
httpMethod: string;
|
|
3941
|
+
};
|
|
3942
|
+
aprovar: {
|
|
3943
|
+
endpoint: string;
|
|
3944
|
+
httpMethod: string;
|
|
3945
|
+
};
|
|
3946
|
+
reprovar: {
|
|
3947
|
+
endpoint: string;
|
|
3948
|
+
httpMethod: string;
|
|
3949
|
+
};
|
|
3950
|
+
limparPrevistas: {
|
|
3951
|
+
endpoint: string;
|
|
3952
|
+
httpMethod: string;
|
|
3953
|
+
};
|
|
3954
|
+
executarSemNf: {
|
|
3955
|
+
endpoint: string;
|
|
3956
|
+
httpMethod: string;
|
|
3957
|
+
};
|
|
3958
|
+
};
|
|
3959
|
+
notasFiscais: {
|
|
3960
|
+
findMonitor: {
|
|
3961
|
+
endpoint: string;
|
|
3962
|
+
httpMethod: string;
|
|
3963
|
+
};
|
|
3964
|
+
findOne: {
|
|
3965
|
+
endpoint: string;
|
|
3966
|
+
httpMethod: string;
|
|
3967
|
+
};
|
|
3968
|
+
create: {
|
|
3969
|
+
endpoint: string;
|
|
3970
|
+
httpMethod: string;
|
|
3971
|
+
};
|
|
3972
|
+
validar: {
|
|
3973
|
+
endpoint: string;
|
|
3974
|
+
httpMethod: string;
|
|
3975
|
+
};
|
|
3976
|
+
reprovar: {
|
|
3977
|
+
endpoint: string;
|
|
3978
|
+
httpMethod: string;
|
|
3979
|
+
};
|
|
3980
|
+
vincularExecucoes: {
|
|
3981
|
+
endpoint: string;
|
|
3982
|
+
httpMethod: string;
|
|
3983
|
+
};
|
|
3984
|
+
};
|
|
3985
|
+
pagamentos: {
|
|
3986
|
+
findMonitor: {
|
|
3987
|
+
endpoint: string;
|
|
3988
|
+
httpMethod: string;
|
|
3989
|
+
};
|
|
3990
|
+
findOne: {
|
|
3991
|
+
endpoint: string;
|
|
3992
|
+
httpMethod: string;
|
|
3993
|
+
};
|
|
3994
|
+
create: {
|
|
3995
|
+
endpoint: string;
|
|
3996
|
+
httpMethod: string;
|
|
3997
|
+
};
|
|
3998
|
+
aprovar: {
|
|
3999
|
+
endpoint: string;
|
|
4000
|
+
httpMethod: string;
|
|
4001
|
+
};
|
|
4002
|
+
reprovar: {
|
|
4003
|
+
endpoint: string;
|
|
4004
|
+
httpMethod: string;
|
|
4005
|
+
};
|
|
4006
|
+
marcarPago: {
|
|
4007
|
+
endpoint: string;
|
|
4008
|
+
httpMethod: string;
|
|
4009
|
+
};
|
|
4010
|
+
delete: {
|
|
4011
|
+
endpoint: string;
|
|
4012
|
+
httpMethod: string;
|
|
4013
|
+
};
|
|
4014
|
+
totais: {
|
|
4015
|
+
endpoint: string;
|
|
4016
|
+
httpMethod: string;
|
|
4017
|
+
};
|
|
4018
|
+
};
|
|
4019
|
+
planoPagamento: {
|
|
4020
|
+
listar: {
|
|
4021
|
+
endpoint: string;
|
|
4022
|
+
httpMethod: string;
|
|
4023
|
+
};
|
|
4024
|
+
adicionar: {
|
|
4025
|
+
endpoint: string;
|
|
4026
|
+
httpMethod: string;
|
|
4027
|
+
};
|
|
4028
|
+
excluir: {
|
|
4029
|
+
endpoint: string;
|
|
4030
|
+
httpMethod: string;
|
|
4031
|
+
};
|
|
4032
|
+
limpar: {
|
|
4033
|
+
endpoint: string;
|
|
4034
|
+
httpMethod: string;
|
|
4035
|
+
};
|
|
4036
|
+
atualizarCondicao: {
|
|
4037
|
+
endpoint: string;
|
|
4038
|
+
httpMethod: string;
|
|
4039
|
+
};
|
|
4040
|
+
};
|
|
4041
|
+
dashboard: {
|
|
4042
|
+
kpis: {
|
|
4043
|
+
endpoint: string;
|
|
4044
|
+
httpMethod: string;
|
|
4045
|
+
};
|
|
4046
|
+
kpisFinanceiro: {
|
|
4047
|
+
endpoint: string;
|
|
4048
|
+
httpMethod: string;
|
|
4049
|
+
};
|
|
4050
|
+
contratosPorStatus: {
|
|
4051
|
+
endpoint: string;
|
|
4052
|
+
httpMethod: string;
|
|
4053
|
+
};
|
|
4054
|
+
valorPorFornecedor: {
|
|
4055
|
+
endpoint: string;
|
|
4056
|
+
httpMethod: string;
|
|
4057
|
+
};
|
|
4058
|
+
execucoesPorStatus: {
|
|
4059
|
+
endpoint: string;
|
|
4060
|
+
httpMethod: string;
|
|
4061
|
+
};
|
|
4062
|
+
vencimentosPorMes: {
|
|
4063
|
+
endpoint: string;
|
|
4064
|
+
httpMethod: string;
|
|
4065
|
+
};
|
|
4066
|
+
pipelineOperacional: {
|
|
4067
|
+
endpoint: string;
|
|
4068
|
+
httpMethod: string;
|
|
4069
|
+
};
|
|
4070
|
+
pagamentosPorMes: {
|
|
4071
|
+
endpoint: string;
|
|
4072
|
+
httpMethod: string;
|
|
4073
|
+
};
|
|
4074
|
+
valorPorCentroCusto: {
|
|
4075
|
+
endpoint: string;
|
|
4076
|
+
httpMethod: string;
|
|
4077
|
+
};
|
|
4078
|
+
};
|
|
3883
4079
|
};
|
|
3884
4080
|
};
|
|
3885
4081
|
export default endpointNavigationConfig;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endpoints.navigation.d.ts","sourceRoot":"","sources":["../../../../../lib/base/configs/endpoints.config/endpoints.navigation.ts"],"names":[],"mappings":"AAyDA,eAAO,MAAM,SAAS,SAAS,CAAA;AAE/B,QAAA,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"endpoints.navigation.d.ts","sourceRoot":"","sources":["../../../../../lib/base/configs/endpoints.config/endpoints.navigation.ts"],"names":[],"mappings":"AAyDA,eAAO,MAAM,SAAS,SAAS,CAAA;AAE/B,QAAA,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyD7B,CAAA;AAED,eAAe,wBAAwB,CAAA"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
declare const agenda: {
|
|
2
|
+
findMonitor: {
|
|
3
|
+
endpoint: string;
|
|
4
|
+
httpMethod: string;
|
|
5
|
+
};
|
|
6
|
+
findOne: {
|
|
7
|
+
endpoint: string;
|
|
8
|
+
httpMethod: string;
|
|
9
|
+
};
|
|
10
|
+
gerar: {
|
|
11
|
+
endpoint: string;
|
|
12
|
+
httpMethod: string;
|
|
13
|
+
};
|
|
14
|
+
marcarRealizada: {
|
|
15
|
+
endpoint: string;
|
|
16
|
+
httpMethod: string;
|
|
17
|
+
};
|
|
18
|
+
aprovar: {
|
|
19
|
+
endpoint: string;
|
|
20
|
+
httpMethod: string;
|
|
21
|
+
};
|
|
22
|
+
reprovar: {
|
|
23
|
+
endpoint: string;
|
|
24
|
+
httpMethod: string;
|
|
25
|
+
};
|
|
26
|
+
limparPrevistas: {
|
|
27
|
+
endpoint: string;
|
|
28
|
+
httpMethod: string;
|
|
29
|
+
};
|
|
30
|
+
executarSemNf: {
|
|
31
|
+
endpoint: string;
|
|
32
|
+
httpMethod: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
export default agenda;
|
|
36
|
+
//# sourceMappingURL=agenda.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agenda.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/configs/endpoints.config/gestaoServicos/config/agenda.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASX,CAAA;AAED,eAAe,MAAM,CAAA"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const contratos: {
|
|
2
|
+
findMonitor: {
|
|
3
|
+
endpoint: string;
|
|
4
|
+
httpMethod: string;
|
|
5
|
+
};
|
|
6
|
+
findOne: {
|
|
7
|
+
endpoint: string;
|
|
8
|
+
httpMethod: string;
|
|
9
|
+
};
|
|
10
|
+
create: {
|
|
11
|
+
endpoint: string;
|
|
12
|
+
httpMethod: string;
|
|
13
|
+
};
|
|
14
|
+
update: {
|
|
15
|
+
endpoint: string;
|
|
16
|
+
httpMethod: string;
|
|
17
|
+
};
|
|
18
|
+
submeter: {
|
|
19
|
+
endpoint: string;
|
|
20
|
+
httpMethod: string;
|
|
21
|
+
};
|
|
22
|
+
aprovar: {
|
|
23
|
+
endpoint: string;
|
|
24
|
+
httpMethod: string;
|
|
25
|
+
};
|
|
26
|
+
reprovar: {
|
|
27
|
+
endpoint: string;
|
|
28
|
+
httpMethod: string;
|
|
29
|
+
};
|
|
30
|
+
encerrar: {
|
|
31
|
+
endpoint: string;
|
|
32
|
+
httpMethod: string;
|
|
33
|
+
};
|
|
34
|
+
vencendo: {
|
|
35
|
+
endpoint: string;
|
|
36
|
+
httpMethod: string;
|
|
37
|
+
};
|
|
38
|
+
executarReajuste: {
|
|
39
|
+
endpoint: string;
|
|
40
|
+
httpMethod: string;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
export default contratos;
|
|
44
|
+
//# sourceMappingURL=contratos.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contratos.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/configs/endpoints.config/gestaoServicos/config/contratos.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAWd,CAAA;AAED,eAAe,SAAS,CAAA"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
declare const dashboard: {
|
|
2
|
+
kpis: {
|
|
3
|
+
endpoint: string;
|
|
4
|
+
httpMethod: string;
|
|
5
|
+
};
|
|
6
|
+
kpisFinanceiro: {
|
|
7
|
+
endpoint: string;
|
|
8
|
+
httpMethod: string;
|
|
9
|
+
};
|
|
10
|
+
contratosPorStatus: {
|
|
11
|
+
endpoint: string;
|
|
12
|
+
httpMethod: string;
|
|
13
|
+
};
|
|
14
|
+
valorPorFornecedor: {
|
|
15
|
+
endpoint: string;
|
|
16
|
+
httpMethod: string;
|
|
17
|
+
};
|
|
18
|
+
execucoesPorStatus: {
|
|
19
|
+
endpoint: string;
|
|
20
|
+
httpMethod: string;
|
|
21
|
+
};
|
|
22
|
+
vencimentosPorMes: {
|
|
23
|
+
endpoint: string;
|
|
24
|
+
httpMethod: string;
|
|
25
|
+
};
|
|
26
|
+
pipelineOperacional: {
|
|
27
|
+
endpoint: string;
|
|
28
|
+
httpMethod: string;
|
|
29
|
+
};
|
|
30
|
+
pagamentosPorMes: {
|
|
31
|
+
endpoint: string;
|
|
32
|
+
httpMethod: string;
|
|
33
|
+
};
|
|
34
|
+
valorPorCentroCusto: {
|
|
35
|
+
endpoint: string;
|
|
36
|
+
httpMethod: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
export default dashboard;
|
|
40
|
+
//# sourceMappingURL=dashboard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/configs/endpoints.config/gestaoServicos/config/dashboard.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAUd,CAAA;AAED,eAAe,SAAS,CAAA"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare const notasFiscais: {
|
|
2
|
+
findMonitor: {
|
|
3
|
+
endpoint: string;
|
|
4
|
+
httpMethod: string;
|
|
5
|
+
};
|
|
6
|
+
findOne: {
|
|
7
|
+
endpoint: string;
|
|
8
|
+
httpMethod: string;
|
|
9
|
+
};
|
|
10
|
+
create: {
|
|
11
|
+
endpoint: string;
|
|
12
|
+
httpMethod: string;
|
|
13
|
+
};
|
|
14
|
+
validar: {
|
|
15
|
+
endpoint: string;
|
|
16
|
+
httpMethod: string;
|
|
17
|
+
};
|
|
18
|
+
reprovar: {
|
|
19
|
+
endpoint: string;
|
|
20
|
+
httpMethod: string;
|
|
21
|
+
};
|
|
22
|
+
vincularExecucoes: {
|
|
23
|
+
endpoint: string;
|
|
24
|
+
httpMethod: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
export default notasFiscais;
|
|
28
|
+
//# sourceMappingURL=notasFiscais.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notasFiscais.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/configs/endpoints.config/gestaoServicos/config/notasFiscais.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;CAOjB,CAAA;AAED,eAAe,YAAY,CAAA"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
declare const pagamentos: {
|
|
2
|
+
findMonitor: {
|
|
3
|
+
endpoint: string;
|
|
4
|
+
httpMethod: string;
|
|
5
|
+
};
|
|
6
|
+
findOne: {
|
|
7
|
+
endpoint: string;
|
|
8
|
+
httpMethod: string;
|
|
9
|
+
};
|
|
10
|
+
create: {
|
|
11
|
+
endpoint: string;
|
|
12
|
+
httpMethod: string;
|
|
13
|
+
};
|
|
14
|
+
aprovar: {
|
|
15
|
+
endpoint: string;
|
|
16
|
+
httpMethod: string;
|
|
17
|
+
};
|
|
18
|
+
reprovar: {
|
|
19
|
+
endpoint: string;
|
|
20
|
+
httpMethod: string;
|
|
21
|
+
};
|
|
22
|
+
marcarPago: {
|
|
23
|
+
endpoint: string;
|
|
24
|
+
httpMethod: string;
|
|
25
|
+
};
|
|
26
|
+
delete: {
|
|
27
|
+
endpoint: string;
|
|
28
|
+
httpMethod: string;
|
|
29
|
+
};
|
|
30
|
+
totais: {
|
|
31
|
+
endpoint: string;
|
|
32
|
+
httpMethod: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
export default pagamentos;
|
|
36
|
+
//# sourceMappingURL=pagamentos.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pagamentos.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/configs/endpoints.config/gestaoServicos/config/pagamentos.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASf,CAAA;AAED,eAAe,UAAU,CAAA"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const planoPagamento: {
|
|
2
|
+
listar: {
|
|
3
|
+
endpoint: string;
|
|
4
|
+
httpMethod: string;
|
|
5
|
+
};
|
|
6
|
+
adicionar: {
|
|
7
|
+
endpoint: string;
|
|
8
|
+
httpMethod: string;
|
|
9
|
+
};
|
|
10
|
+
excluir: {
|
|
11
|
+
endpoint: string;
|
|
12
|
+
httpMethod: string;
|
|
13
|
+
};
|
|
14
|
+
limpar: {
|
|
15
|
+
endpoint: string;
|
|
16
|
+
httpMethod: string;
|
|
17
|
+
};
|
|
18
|
+
atualizarCondicao: {
|
|
19
|
+
endpoint: string;
|
|
20
|
+
httpMethod: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
export default planoPagamento;
|
|
24
|
+
//# sourceMappingURL=planoPagamento.d.ts.map
|
package/dist/@types/base/configs/endpoints.config/gestaoServicos/config/planoPagamento.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"planoPagamento.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/configs/endpoints.config/gestaoServicos/config/planoPagamento.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;CAMnB,CAAA;AAED,eAAe,cAAc,CAAA"}
|
|
@@ -17,6 +17,202 @@ declare const gestaoServicos: {
|
|
|
17
17
|
httpMethod: string;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
+
contratos: {
|
|
21
|
+
findMonitor: {
|
|
22
|
+
endpoint: string;
|
|
23
|
+
httpMethod: string;
|
|
24
|
+
};
|
|
25
|
+
findOne: {
|
|
26
|
+
endpoint: string;
|
|
27
|
+
httpMethod: string;
|
|
28
|
+
};
|
|
29
|
+
create: {
|
|
30
|
+
endpoint: string;
|
|
31
|
+
httpMethod: string;
|
|
32
|
+
};
|
|
33
|
+
update: {
|
|
34
|
+
endpoint: string;
|
|
35
|
+
httpMethod: string;
|
|
36
|
+
};
|
|
37
|
+
submeter: {
|
|
38
|
+
endpoint: string;
|
|
39
|
+
httpMethod: string;
|
|
40
|
+
};
|
|
41
|
+
aprovar: {
|
|
42
|
+
endpoint: string;
|
|
43
|
+
httpMethod: string;
|
|
44
|
+
};
|
|
45
|
+
reprovar: {
|
|
46
|
+
endpoint: string;
|
|
47
|
+
httpMethod: string;
|
|
48
|
+
};
|
|
49
|
+
encerrar: {
|
|
50
|
+
endpoint: string;
|
|
51
|
+
httpMethod: string;
|
|
52
|
+
};
|
|
53
|
+
vencendo: {
|
|
54
|
+
endpoint: string;
|
|
55
|
+
httpMethod: string;
|
|
56
|
+
};
|
|
57
|
+
executarReajuste: {
|
|
58
|
+
endpoint: string;
|
|
59
|
+
httpMethod: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
agenda: {
|
|
63
|
+
findMonitor: {
|
|
64
|
+
endpoint: string;
|
|
65
|
+
httpMethod: string;
|
|
66
|
+
};
|
|
67
|
+
findOne: {
|
|
68
|
+
endpoint: string;
|
|
69
|
+
httpMethod: string;
|
|
70
|
+
};
|
|
71
|
+
gerar: {
|
|
72
|
+
endpoint: string;
|
|
73
|
+
httpMethod: string;
|
|
74
|
+
};
|
|
75
|
+
marcarRealizada: {
|
|
76
|
+
endpoint: string;
|
|
77
|
+
httpMethod: string;
|
|
78
|
+
};
|
|
79
|
+
aprovar: {
|
|
80
|
+
endpoint: string;
|
|
81
|
+
httpMethod: string;
|
|
82
|
+
};
|
|
83
|
+
reprovar: {
|
|
84
|
+
endpoint: string;
|
|
85
|
+
httpMethod: string;
|
|
86
|
+
};
|
|
87
|
+
limparPrevistas: {
|
|
88
|
+
endpoint: string;
|
|
89
|
+
httpMethod: string;
|
|
90
|
+
};
|
|
91
|
+
executarSemNf: {
|
|
92
|
+
endpoint: string;
|
|
93
|
+
httpMethod: string;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
notasFiscais: {
|
|
97
|
+
findMonitor: {
|
|
98
|
+
endpoint: string;
|
|
99
|
+
httpMethod: string;
|
|
100
|
+
};
|
|
101
|
+
findOne: {
|
|
102
|
+
endpoint: string;
|
|
103
|
+
httpMethod: string;
|
|
104
|
+
};
|
|
105
|
+
create: {
|
|
106
|
+
endpoint: string;
|
|
107
|
+
httpMethod: string;
|
|
108
|
+
};
|
|
109
|
+
validar: {
|
|
110
|
+
endpoint: string;
|
|
111
|
+
httpMethod: string;
|
|
112
|
+
};
|
|
113
|
+
reprovar: {
|
|
114
|
+
endpoint: string;
|
|
115
|
+
httpMethod: string;
|
|
116
|
+
};
|
|
117
|
+
vincularExecucoes: {
|
|
118
|
+
endpoint: string;
|
|
119
|
+
httpMethod: string;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
pagamentos: {
|
|
123
|
+
findMonitor: {
|
|
124
|
+
endpoint: string;
|
|
125
|
+
httpMethod: string;
|
|
126
|
+
};
|
|
127
|
+
findOne: {
|
|
128
|
+
endpoint: string;
|
|
129
|
+
httpMethod: string;
|
|
130
|
+
};
|
|
131
|
+
create: {
|
|
132
|
+
endpoint: string;
|
|
133
|
+
httpMethod: string;
|
|
134
|
+
};
|
|
135
|
+
aprovar: {
|
|
136
|
+
endpoint: string;
|
|
137
|
+
httpMethod: string;
|
|
138
|
+
};
|
|
139
|
+
reprovar: {
|
|
140
|
+
endpoint: string;
|
|
141
|
+
httpMethod: string;
|
|
142
|
+
};
|
|
143
|
+
marcarPago: {
|
|
144
|
+
endpoint: string;
|
|
145
|
+
httpMethod: string;
|
|
146
|
+
};
|
|
147
|
+
delete: {
|
|
148
|
+
endpoint: string;
|
|
149
|
+
httpMethod: string;
|
|
150
|
+
};
|
|
151
|
+
totais: {
|
|
152
|
+
endpoint: string;
|
|
153
|
+
httpMethod: string;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
planoPagamento: {
|
|
157
|
+
listar: {
|
|
158
|
+
endpoint: string;
|
|
159
|
+
httpMethod: string;
|
|
160
|
+
};
|
|
161
|
+
adicionar: {
|
|
162
|
+
endpoint: string;
|
|
163
|
+
httpMethod: string;
|
|
164
|
+
};
|
|
165
|
+
excluir: {
|
|
166
|
+
endpoint: string;
|
|
167
|
+
httpMethod: string;
|
|
168
|
+
};
|
|
169
|
+
limpar: {
|
|
170
|
+
endpoint: string;
|
|
171
|
+
httpMethod: string;
|
|
172
|
+
};
|
|
173
|
+
atualizarCondicao: {
|
|
174
|
+
endpoint: string;
|
|
175
|
+
httpMethod: string;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
dashboard: {
|
|
179
|
+
kpis: {
|
|
180
|
+
endpoint: string;
|
|
181
|
+
httpMethod: string;
|
|
182
|
+
};
|
|
183
|
+
kpisFinanceiro: {
|
|
184
|
+
endpoint: string;
|
|
185
|
+
httpMethod: string;
|
|
186
|
+
};
|
|
187
|
+
contratosPorStatus: {
|
|
188
|
+
endpoint: string;
|
|
189
|
+
httpMethod: string;
|
|
190
|
+
};
|
|
191
|
+
valorPorFornecedor: {
|
|
192
|
+
endpoint: string;
|
|
193
|
+
httpMethod: string;
|
|
194
|
+
};
|
|
195
|
+
execucoesPorStatus: {
|
|
196
|
+
endpoint: string;
|
|
197
|
+
httpMethod: string;
|
|
198
|
+
};
|
|
199
|
+
vencimentosPorMes: {
|
|
200
|
+
endpoint: string;
|
|
201
|
+
httpMethod: string;
|
|
202
|
+
};
|
|
203
|
+
pipelineOperacional: {
|
|
204
|
+
endpoint: string;
|
|
205
|
+
httpMethod: string;
|
|
206
|
+
};
|
|
207
|
+
pagamentosPorMes: {
|
|
208
|
+
endpoint: string;
|
|
209
|
+
httpMethod: string;
|
|
210
|
+
};
|
|
211
|
+
valorPorCentroCusto: {
|
|
212
|
+
endpoint: string;
|
|
213
|
+
httpMethod: string;
|
|
214
|
+
};
|
|
215
|
+
};
|
|
20
216
|
};
|
|
21
217
|
export default gestaoServicos;
|
|
22
218
|
//# sourceMappingURL=gestaoServicos.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gestaoServicos.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/configs/endpoints.config/gestaoServicos/gestaoServicos.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"gestaoServicos.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/configs/endpoints.config/gestaoServicos/gestaoServicos.ts"],"names":[],"mappings":"AAQA,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQnB,CAAA;AAED,eAAe,cAAc,CAAA"}
|