plac-micro-common 1.3.117 → 1.3.118

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.
@@ -2,6 +2,11 @@ export declare enum AppFormType {
2
2
  Base = "base",
3
3
  Simplified = "sio"
4
4
  }
5
+ export declare enum AppVisibilityScope {
6
+ Own = "own",
7
+ Team = "team",
8
+ Org = "org"
9
+ }
5
10
  export declare enum AppSourceType {
6
11
  Banca = "banca",
7
12
  PersonalSales = "personal",
@@ -1,11 +1,17 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PaymentMode = exports.CreditCardType = exports.PaymentMethod = exports.AppPaymentStatus = exports.AppPaymentType = exports.AppDocumentType = exports.UwAnswerValueType = exports.AppCoverageType = exports.AppPhLaRelation = exports.AppPersonRole = exports.ApplicationActionType = exports.ApplicationStatus = exports.AppSourceType = exports.AppFormType = void 0;
3
+ exports.PaymentMode = exports.CreditCardType = exports.PaymentMethod = exports.AppPaymentStatus = exports.AppPaymentType = exports.AppDocumentType = exports.UwAnswerValueType = exports.AppCoverageType = exports.AppPhLaRelation = exports.AppPersonRole = exports.ApplicationActionType = exports.ApplicationStatus = exports.AppSourceType = exports.AppVisibilityScope = exports.AppFormType = void 0;
4
4
  var AppFormType;
5
5
  (function (AppFormType) {
6
6
  AppFormType["Base"] = "base";
7
7
  AppFormType["Simplified"] = "sio";
8
8
  })(AppFormType || (exports.AppFormType = AppFormType = {}));
9
+ var AppVisibilityScope;
10
+ (function (AppVisibilityScope) {
11
+ AppVisibilityScope["Own"] = "own";
12
+ AppVisibilityScope["Team"] = "team";
13
+ AppVisibilityScope["Org"] = "org";
14
+ })(AppVisibilityScope || (exports.AppVisibilityScope = AppVisibilityScope = {}));
9
15
  var AppSourceType;
10
16
  (function (AppSourceType) {
11
17
  AppSourceType["Banca"] = "banca";
@@ -21,7 +21,8 @@ export declare enum PermissionAction {
21
21
  Submit = "submit",
22
22
  Transfer = "transfer",
23
23
  Update = "update",
24
- Void = "void"
24
+ Void = "void",
25
+ ReadOrg = "readOrg"
25
26
  }
26
27
  export declare const PermissionResource: {
27
28
  readonly AuditLog: "audit_log";
@@ -27,6 +27,8 @@ var PermissionAction;
27
27
  PermissionAction["Transfer"] = "transfer";
28
28
  PermissionAction["Update"] = "update";
29
29
  PermissionAction["Void"] = "void";
30
+ // special - org level
31
+ PermissionAction["ReadOrg"] = "readOrg";
30
32
  })(PermissionAction || (exports.PermissionAction = PermissionAction = {}));
31
33
  exports.PermissionResource = {
32
34
  AuditLog: "audit_log",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plac-micro-common",
3
- "version": "1.3.117",
3
+ "version": "1.3.118",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {