evo360-types 1.3.355 → 1.3.357

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
@@ -3,6 +3,7 @@ export * from "./types/firebase/pubsub-sync";
3
3
  export * from "./types/evo-core";
4
4
  export * from "./types/evo-tenant";
5
5
  export * from "./types/evo-activity";
6
+ export * from "./types/evo-billing";
6
7
  export * from "./types/evo-log";
7
8
  export * from "./types/evo-people";
8
9
  export * from "./types/evo-crm/dic";
package/dist/index.js CHANGED
@@ -20,6 +20,7 @@ __exportStar(require("./types/firebase/pubsub-sync"), exports);
20
20
  __exportStar(require("./types/evo-core"), exports);
21
21
  __exportStar(require("./types/evo-tenant"), exports);
22
22
  __exportStar(require("./types/evo-activity"), exports);
23
+ __exportStar(require("./types/evo-billing"), exports);
23
24
  __exportStar(require("./types/evo-log"), exports);
24
25
  __exportStar(require("./types/evo-people"), exports);
25
26
  __exportStar(require("./types/evo-crm/dic"), exports);
package/dist/index.ts CHANGED
@@ -4,6 +4,7 @@ export * from "./types/firebase/pubsub-sync";
4
4
  export * from "./types/evo-core";
5
5
  export * from "./types/evo-tenant";
6
6
  export * from "./types/evo-activity";
7
+ export * from "./types/evo-billing";
7
8
  export * from "./types/evo-log";
8
9
  export * from "./types/evo-people";
9
10
  export * from "./types/evo-crm/dic";
@@ -0,0 +1,7 @@
1
+ export declare const EvoBillingPermissions: {
2
+ readonly List: "evo_billing_admin";
3
+ readonly Get: "evo_billing_admin";
4
+ readonly Update: "evo_billing_admin";
5
+ readonly Admin: "evo_billing_admin";
6
+ };
7
+ export type EvoBillingPermissions = (typeof EvoBillingPermissions)[keyof typeof EvoBillingPermissions];
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EvoBillingPermissions = void 0;
4
+ // Permissões para o portal financeiro tenant-side (irmão tenant-side de nex-finops).
5
+ exports.EvoBillingPermissions = {
6
+ List: "evo_billing_admin",
7
+ Get: "evo_billing_admin",
8
+ Update: "evo_billing_admin",
9
+ Admin: "evo_billing_admin",
10
+ };
@@ -0,0 +1,10 @@
1
+ // Permissões para o portal financeiro tenant-side (irmão tenant-side de nex-finops).
2
+ export const EvoBillingPermissions = {
3
+ List: "evo_billing_admin",
4
+ Get: "evo_billing_admin",
5
+ Update: "evo_billing_admin",
6
+ Admin: "evo_billing_admin",
7
+ } as const;
8
+
9
+ export type EvoBillingPermissions =
10
+ (typeof EvoBillingPermissions)[keyof typeof EvoBillingPermissions];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.355",
3
+ "version": "1.3.357",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",