@orbe-agro/client-core 5.6.142 → 5.6.144
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/HubFiscal/nfe.endpoint.config.d.ts +1 -0
- package/dist/@types/base/configs/endpoints.config/HubFiscal/nfe.endpoint.config.d.ts.map +1 -1
- package/dist/@types/base/services/modules/HubFiscal/NfeService.d.ts +1 -0
- package/dist/@types/base/services/modules/HubFiscal/NfeService.d.ts.map +1 -1
- package/dist/@types/base/services/modules/insumos/comissaoVenda/ComissaoVendaService.d.ts +1 -1
- package/dist/@types/base/services/modules/insumos/comissaoVenda/ComissaoVendaService.d.ts.map +1 -1
- package/dist/base/configs/endpoints.config/HubFiscal/nfe.endpoint.config.js +2 -1
- package/dist/base/configs/endpoints.config/HubFiscal/nfe.endpoint.config.js.map +1 -1
- package/dist/base/services/modules/HubFiscal/NfeService.js +7 -0
- package/dist/base/services/modules/HubFiscal/NfeService.js.map +1 -1
- package/dist/base/services/modules/insumos/comissaoVenda/ComissaoVendaService.js +2 -2
- package/dist/base/services/modules/insumos/comissaoVenda/ComissaoVendaService.js.map +1 -1
- package/lib/base/configs/endpoints.config/HubFiscal/nfe.endpoint.config.ts +2 -1
- package/lib/base/services/modules/HubFiscal/NfeService.ts +7 -0
- package/lib/base/services/modules/insumos/comissaoVenda/ComissaoVendaService.ts +2 -2
- 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.144" : "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: [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nfe.endpoint.config.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/configs/endpoints.config/HubFiscal/nfe.endpoint.config.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"nfe.endpoint.config.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/configs/endpoints.config/HubFiscal/nfe.endpoint.config.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,iBAAiB;;;;;CAKtB,CAAA;AAED,eAAe,iBAAiB,CAAA"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare function apiGetNfes(body: any): Promise<unknown>;
|
|
2
2
|
export declare function apiGetPdf(id: any): Promise<unknown>;
|
|
3
3
|
export declare function apiAddObservacao(body: any): Promise<unknown>;
|
|
4
|
+
export declare function apiGetEventosNfe(chaveAcesso: any): Promise<unknown>;
|
|
4
5
|
//# sourceMappingURL=NfeService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NfeService.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/services/modules/HubFiscal/NfeService.ts"],"names":[],"mappings":"AAGA,wBAAsB,UAAU,CAAC,IAAI,KAAA,oBAMpC;AAED,wBAAsB,SAAS,CAAC,EAAE,KAAA,oBAKjC;AAED,wBAAsB,gBAAgB,CAAC,IAAI,KAAA,oBAM1C"}
|
|
1
|
+
{"version":3,"file":"NfeService.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/services/modules/HubFiscal/NfeService.ts"],"names":[],"mappings":"AAGA,wBAAsB,UAAU,CAAC,IAAI,KAAA,oBAMpC;AAED,wBAAsB,SAAS,CAAC,EAAE,KAAA,oBAKjC;AAED,wBAAsB,gBAAgB,CAAC,IAAI,KAAA,oBAM1C;AAED,wBAAsB,gBAAgB,CAAC,WAAW,KAAA,oBAKjD"}
|
|
@@ -2,7 +2,7 @@ import { IFilterParams, TQueryResponse } from "@base/@types/api";
|
|
|
2
2
|
import { TComissaoVenda } from "@base/@types/models/insumos/comissaoVenda";
|
|
3
3
|
export declare function apiGetInsumosComissaoVenda(id: number): Promise<TComissaoVenda>;
|
|
4
4
|
export declare function apiAddInsumosComissaoVenda(body: TComissaoVenda): Promise<TQueryResponse<TComissaoVenda>>;
|
|
5
|
-
export declare function apiUpdateInsumosComissaoVenda(body: TComissaoVenda): Promise<TQueryResponse<TComissaoVenda>>;
|
|
5
|
+
export declare function apiUpdateInsumosComissaoVenda(id: number, body: Partial<TComissaoVenda>): Promise<TQueryResponse<TComissaoVenda>>;
|
|
6
6
|
export declare function apiDeleteInsumosComissaoVenda(id: number): Promise<TQueryResponse<TComissaoVenda>>;
|
|
7
7
|
export declare function apiGetAllInsumosComissaoVenda(): Promise<TComissaoVenda[]>;
|
|
8
8
|
export declare function apiFindMonitorInsumosComissaoVenda(body?: IFilterParams): Promise<TQueryResponse<TComissaoVenda>>;
|
package/dist/@types/base/services/modules/insumos/comissaoVenda/ComissaoVendaService.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComissaoVendaService.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/services/modules/insumos/comissaoVenda/ComissaoVendaService.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAC;AAK3E,wBAAsB,0BAA0B,CAAC,EAAE,EAAE,MAAM,2BAK1D;AAED,wBAAsB,0BAA0B,CAAC,IAAI,EAAE,cAAc,2CAMpE;AAED,wBAAsB,6BAA6B,CAAC,IAAI,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"ComissaoVendaService.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/services/modules/insumos/comissaoVenda/ComissaoVendaService.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAC;AAK3E,wBAAsB,0BAA0B,CAAC,EAAE,EAAE,MAAM,2BAK1D;AAED,wBAAsB,0BAA0B,CAAC,IAAI,EAAE,cAAc,2CAMpE;AAED,wBAAsB,6BAA6B,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,CAAC,cAAc,CAAC,2CAM5F;AAED,wBAAsB,6BAA6B,CAAC,EAAE,EAAE,MAAM,2CAK7D;AAED,wBAAsB,6BAA6B,8BAKlD;AAED,wBAAsB,kCAAkC,CAAC,IAAI,CAAC,EAAE,aAAa,2CAM5E"}
|
|
@@ -2,7 +2,8 @@ const NFE_API_PATH = "/hub-fiscal/api/nfe";
|
|
|
2
2
|
const nfeEndpointConfig = {
|
|
3
3
|
findAll: `${NFE_API_PATH}/find`,
|
|
4
4
|
getPdf: `${NFE_API_PATH}/pdf/`,
|
|
5
|
-
addObservacao: `${NFE_API_PATH}/observacao
|
|
5
|
+
addObservacao: `${NFE_API_PATH}/observacao`,
|
|
6
|
+
findEventos: `${NFE_API_PATH}/eventos/`
|
|
6
7
|
};
|
|
7
8
|
export {
|
|
8
9
|
nfeEndpointConfig as default
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nfe.endpoint.config.js","sources":["../../../../../lib/base/configs/endpoints.config/HubFiscal/nfe.endpoint.config.ts"],"sourcesContent":["const NFE_API_PATH = '/hub-fiscal/api/nfe'\n\nconst nfeEndpointConfig = {\n findAll: `${NFE_API_PATH}/find`,\n getPdf: `${NFE_API_PATH}/pdf/`,\n addObservacao: `${NFE_API_PATH}/observacao
|
|
1
|
+
{"version":3,"file":"nfe.endpoint.config.js","sources":["../../../../../lib/base/configs/endpoints.config/HubFiscal/nfe.endpoint.config.ts"],"sourcesContent":["const NFE_API_PATH = '/hub-fiscal/api/nfe'\n\nconst nfeEndpointConfig = {\n findAll: `${NFE_API_PATH}/find`,\n getPdf: `${NFE_API_PATH}/pdf/`,\n addObservacao: `${NFE_API_PATH}/observacao`,\n findEventos: `${NFE_API_PATH}/eventos/`, \n}\n\nexport default nfeEndpointConfig\n"],"names":[],"mappings":"AAAA,MAAM,eAAe;AAErB,MAAM,oBAAoB;AAAA,EACtB,SAAS,GAAG,YAAY;AAAA,EACxB,QAAQ,GAAG,YAAY;AAAA,EACvB,eAAe,GAAG,YAAY;AAAA,EAC9B,aAAa,GAAG,YAAY;AAChC;"}
|
|
@@ -20,8 +20,15 @@ async function apiAddObservacao(body) {
|
|
|
20
20
|
data: body
|
|
21
21
|
});
|
|
22
22
|
}
|
|
23
|
+
async function apiGetEventosNfe(chaveAcesso) {
|
|
24
|
+
return ApiService.fetchDataWithAxios({
|
|
25
|
+
url: nfeEndpointConfig.findEventos + chaveAcesso,
|
|
26
|
+
method: "get"
|
|
27
|
+
});
|
|
28
|
+
}
|
|
23
29
|
export {
|
|
24
30
|
apiAddObservacao,
|
|
31
|
+
apiGetEventosNfe,
|
|
25
32
|
apiGetNfes,
|
|
26
33
|
apiGetPdf
|
|
27
34
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NfeService.js","sources":["../../../../../lib/base/services/modules/HubFiscal/NfeService.ts"],"sourcesContent":["import nfeEndpointConfig from '@base/configs/endpoints.config/HubFiscal/nfe.endpoint.config'\nimport ApiService from '@/services/ApiService'\n\nexport async function apiGetNfes(body) {\n return ApiService.fetchDataWithAxios({\n url: nfeEndpointConfig.findAll,\n method: 'post',\n data: body,\n })\n}\n\nexport async function apiGetPdf(id) {\n return ApiService.fetchDataWithAxios({\n url: nfeEndpointConfig.getPdf + id,\n method: 'get',\n })\n}\n\nexport async function apiAddObservacao(body) {\n return ApiService.fetchDataWithAxios({\n url: nfeEndpointConfig.addObservacao,\n method: 'post',\n data: body,\n })\n}"],"names":[],"mappings":";;AAGA,eAAsB,WAAW,MAAM;AACnC,SAAO,WAAW,mBAAmB;AAAA,IACjC,KAAK,kBAAkB;AAAA,IACvB,QAAQ;AAAA,IACR,MAAM;AAAA,EAAA,CACT;AACL;AAEA,eAAsB,UAAU,IAAI;AAChC,SAAO,WAAW,mBAAmB;AAAA,IACjC,KAAK,kBAAkB,SAAS;AAAA,IAChC,QAAQ;AAAA,EAAA,CACX;AACL;AAEA,eAAsB,iBAAiB,MAAM;AACzC,SAAO,WAAW,mBAAmB;AAAA,IACjC,KAAK,kBAAkB;AAAA,IACvB,QAAQ;AAAA,IACR,MAAM;AAAA,EAAA,CACT;AACL;"}
|
|
1
|
+
{"version":3,"file":"NfeService.js","sources":["../../../../../lib/base/services/modules/HubFiscal/NfeService.ts"],"sourcesContent":["import nfeEndpointConfig from '@base/configs/endpoints.config/HubFiscal/nfe.endpoint.config'\nimport ApiService from '@/services/ApiService'\n\nexport async function apiGetNfes(body) {\n return ApiService.fetchDataWithAxios({\n url: nfeEndpointConfig.findAll,\n method: 'post',\n data: body,\n })\n}\n\nexport async function apiGetPdf(id) {\n return ApiService.fetchDataWithAxios({\n url: nfeEndpointConfig.getPdf + id,\n method: 'get',\n })\n}\n\nexport async function apiAddObservacao(body) {\n return ApiService.fetchDataWithAxios({\n url: nfeEndpointConfig.addObservacao,\n method: 'post',\n data: body,\n })\n}\n\nexport async function apiGetEventosNfe(chaveAcesso) {\n return ApiService.fetchDataWithAxios({\n url: nfeEndpointConfig.findEventos + chaveAcesso,\n method: 'get',\n })\n}"],"names":[],"mappings":";;AAGA,eAAsB,WAAW,MAAM;AACnC,SAAO,WAAW,mBAAmB;AAAA,IACjC,KAAK,kBAAkB;AAAA,IACvB,QAAQ;AAAA,IACR,MAAM;AAAA,EAAA,CACT;AACL;AAEA,eAAsB,UAAU,IAAI;AAChC,SAAO,WAAW,mBAAmB;AAAA,IACjC,KAAK,kBAAkB,SAAS;AAAA,IAChC,QAAQ;AAAA,EAAA,CACX;AACL;AAEA,eAAsB,iBAAiB,MAAM;AACzC,SAAO,WAAW,mBAAmB;AAAA,IACjC,KAAK,kBAAkB;AAAA,IACvB,QAAQ;AAAA,IACR,MAAM;AAAA,EAAA,CACT;AACL;AAEA,eAAsB,iBAAiB,aAAa;AAChD,SAAO,WAAW,mBAAmB;AAAA,IACjC,KAAK,kBAAkB,cAAc;AAAA,IACrC,QAAQ;AAAA,EAAA,CACX;AACL;"}
|
|
@@ -14,9 +14,9 @@ async function apiAddInsumosComissaoVenda(body) {
|
|
|
14
14
|
data: body
|
|
15
15
|
});
|
|
16
16
|
}
|
|
17
|
-
async function apiUpdateInsumosComissaoVenda(body) {
|
|
17
|
+
async function apiUpdateInsumosComissaoVenda(id, body) {
|
|
18
18
|
return ApiService.fetchDataWithAxios({
|
|
19
|
-
url: COMISSAO_VENDA_ENDPOINT.update.endpoint
|
|
19
|
+
url: COMISSAO_VENDA_ENDPOINT.update.endpoint + `${id}`,
|
|
20
20
|
method: COMISSAO_VENDA_ENDPOINT.update.method,
|
|
21
21
|
data: body
|
|
22
22
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComissaoVendaService.js","sources":["../../../../../../lib/base/services/modules/insumos/comissaoVenda/ComissaoVendaService.ts"],"sourcesContent":["import ApiService from \"@/services/ApiService\";\nimport { IFilterParams, TQueryResponse } from \"@base/@types/api\";\nimport { TComissaoVenda } from \"@base/@types/models/insumos/comissaoVenda\";\nimport endpointConfig from \"@base/configs/endpoints.config/endpoints.navigation\";\n\nconst COMISSAO_VENDA_ENDPOINT = endpointConfig.insumos.comissaoVenda;\n\nexport async function apiGetInsumosComissaoVenda(id: number) {\n return ApiService.fetchDataWithAxios<TComissaoVenda>({\n url: COMISSAO_VENDA_ENDPOINT.findOne.endpoint + `${id}`,\n method: COMISSAO_VENDA_ENDPOINT.findOne.method,\n })\n}\n\nexport async function apiAddInsumosComissaoVenda(body: TComissaoVenda) {\n return ApiService.fetchDataWithAxios<TQueryResponse<TComissaoVenda>>({\n url: COMISSAO_VENDA_ENDPOINT.add.endpoint,\n method: COMISSAO_VENDA_ENDPOINT.add.method,\n data: body,\n })\n}\n\nexport async function apiUpdateInsumosComissaoVenda(body: TComissaoVenda) {\n return ApiService.fetchDataWithAxios<TQueryResponse<TComissaoVenda>>({\n url: COMISSAO_VENDA_ENDPOINT.update.endpoint
|
|
1
|
+
{"version":3,"file":"ComissaoVendaService.js","sources":["../../../../../../lib/base/services/modules/insumos/comissaoVenda/ComissaoVendaService.ts"],"sourcesContent":["import ApiService from \"@/services/ApiService\";\nimport { IFilterParams, TQueryResponse } from \"@base/@types/api\";\nimport { TComissaoVenda } from \"@base/@types/models/insumos/comissaoVenda\";\nimport endpointConfig from \"@base/configs/endpoints.config/endpoints.navigation\";\n\nconst COMISSAO_VENDA_ENDPOINT = endpointConfig.insumos.comissaoVenda;\n\nexport async function apiGetInsumosComissaoVenda(id: number) {\n return ApiService.fetchDataWithAxios<TComissaoVenda>({\n url: COMISSAO_VENDA_ENDPOINT.findOne.endpoint + `${id}`,\n method: COMISSAO_VENDA_ENDPOINT.findOne.method,\n })\n}\n\nexport async function apiAddInsumosComissaoVenda(body: TComissaoVenda) {\n return ApiService.fetchDataWithAxios<TQueryResponse<TComissaoVenda>>({\n url: COMISSAO_VENDA_ENDPOINT.add.endpoint,\n method: COMISSAO_VENDA_ENDPOINT.add.method,\n data: body,\n })\n}\n\nexport async function apiUpdateInsumosComissaoVenda(id: number, body: Partial<TComissaoVenda>) {\n return ApiService.fetchDataWithAxios<TQueryResponse<TComissaoVenda>>({\n url: COMISSAO_VENDA_ENDPOINT.update.endpoint + `${id}`,\n method: COMISSAO_VENDA_ENDPOINT.update.method,\n data: body,\n })\n}\n\nexport async function apiDeleteInsumosComissaoVenda(id: number) {\n return ApiService.fetchDataWithAxios<TQueryResponse<TComissaoVenda>>({\n url: COMISSAO_VENDA_ENDPOINT.delete.endpoint + `${id}`,\n method: COMISSAO_VENDA_ENDPOINT.delete.method,\n })\n}\n\nexport async function apiGetAllInsumosComissaoVenda() {\n return ApiService.fetchDataWithAxios<TComissaoVenda[]>({\n url: COMISSAO_VENDA_ENDPOINT.findAll.endpoint,\n method: COMISSAO_VENDA_ENDPOINT.findAll.method,\n })\n}\n\nexport async function apiFindMonitorInsumosComissaoVenda(body?: IFilterParams) {\n return ApiService.fetchDataWithAxios<TQueryResponse<TComissaoVenda>>({\n url: COMISSAO_VENDA_ENDPOINT.findMonitor.endpoint,\n method: COMISSAO_VENDA_ENDPOINT.findMonitor.method,\n data: body,\n })\n}"],"names":["endpointConfig"],"mappings":";;AAKA,MAAM,0BAA0BA,yBAAe,QAAQ;AAEvD,eAAsB,2BAA2B,IAAY;AACzD,SAAO,WAAW,mBAAmC;AAAA,IACjD,KAAK,wBAAwB,QAAQ,WAAW,GAAG,EAAE;AAAA,IACrD,QAAQ,wBAAwB,QAAQ;AAAA,EAAA,CAC3C;AACL;AAEA,eAAsB,2BAA2B,MAAsB;AACnE,SAAO,WAAW,mBAAmD;AAAA,IACjE,KAAK,wBAAwB,IAAI;AAAA,IACjC,QAAQ,wBAAwB,IAAI;AAAA,IACpC,MAAM;AAAA,EAAA,CACT;AACL;AAEA,eAAsB,8BAA8B,IAAY,MAA+B;AAC3F,SAAO,WAAW,mBAAmD;AAAA,IACjE,KAAK,wBAAwB,OAAO,WAAW,GAAG,EAAE;AAAA,IACpD,QAAQ,wBAAwB,OAAO;AAAA,IACvC,MAAM;AAAA,EAAA,CACT;AACL;AAEA,eAAsB,8BAA8B,IAAY;AAC5D,SAAO,WAAW,mBAAmD;AAAA,IACjE,KAAK,wBAAwB,OAAO,WAAW,GAAG,EAAE;AAAA,IACpD,QAAQ,wBAAwB,OAAO;AAAA,EAAA,CAC1C;AACL;AAEA,eAAsB,gCAAgC;AAClD,SAAO,WAAW,mBAAqC;AAAA,IACnD,KAAK,wBAAwB,QAAQ;AAAA,IACrC,QAAQ,wBAAwB,QAAQ;AAAA,EAAA,CAC3C;AACL;AAEA,eAAsB,mCAAmC,MAAsB;AAC3E,SAAO,WAAW,mBAAmD;AAAA,IACjE,KAAK,wBAAwB,YAAY;AAAA,IACzC,QAAQ,wBAAwB,YAAY;AAAA,IAC5C,MAAM;AAAA,EAAA,CACT;AACL;"}
|
|
@@ -3,7 +3,8 @@ const NFE_API_PATH = '/hub-fiscal/api/nfe'
|
|
|
3
3
|
const nfeEndpointConfig = {
|
|
4
4
|
findAll: `${NFE_API_PATH}/find`,
|
|
5
5
|
getPdf: `${NFE_API_PATH}/pdf/`,
|
|
6
|
-
addObservacao: `${NFE_API_PATH}/observacao`,
|
|
6
|
+
addObservacao: `${NFE_API_PATH}/observacao`,
|
|
7
|
+
findEventos: `${NFE_API_PATH}/eventos/`,
|
|
7
8
|
}
|
|
8
9
|
|
|
9
10
|
export default nfeEndpointConfig
|
|
@@ -22,4 +22,11 @@ export async function apiAddObservacao(body) {
|
|
|
22
22
|
method: 'post',
|
|
23
23
|
data: body,
|
|
24
24
|
})
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export async function apiGetEventosNfe(chaveAcesso) {
|
|
28
|
+
return ApiService.fetchDataWithAxios({
|
|
29
|
+
url: nfeEndpointConfig.findEventos + chaveAcesso,
|
|
30
|
+
method: 'get',
|
|
31
|
+
})
|
|
25
32
|
}
|
|
@@ -20,9 +20,9 @@ export async function apiAddInsumosComissaoVenda(body: TComissaoVenda) {
|
|
|
20
20
|
})
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
export async function apiUpdateInsumosComissaoVenda(body: TComissaoVenda) {
|
|
23
|
+
export async function apiUpdateInsumosComissaoVenda(id: number, body: Partial<TComissaoVenda>) {
|
|
24
24
|
return ApiService.fetchDataWithAxios<TQueryResponse<TComissaoVenda>>({
|
|
25
|
-
url: COMISSAO_VENDA_ENDPOINT.update.endpoint
|
|
25
|
+
url: COMISSAO_VENDA_ENDPOINT.update.endpoint + `${id}`,
|
|
26
26
|
method: COMISSAO_VENDA_ENDPOINT.update.method,
|
|
27
27
|
data: body,
|
|
28
28
|
})
|
package/package.json
CHANGED