@openbox/shared-types 0.4.60 → 0.4.62

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.
@@ -0,0 +1,2 @@
1
+ import { ManagementBranch } from '../management.branch.type';
2
+ export type ManagementBranchGetCurrent = ManagementBranch;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/management/Branch/GetCurrent/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export * from './GetCurrent';
2
+ export * from './management.branch.type';
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./GetCurrent"), exports);
18
+ __exportStar(require("./management.branch.type"), exports);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/management/Branch/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA4B;AAC5B,2DAAwC"}
@@ -0,0 +1,6 @@
1
+ import { SystemDirectoryResponse } from '../../system/Directory/system.directory.types';
2
+ export type ManagementBranch = {
3
+ id: string;
4
+ name: string;
5
+ contacts: Array<SystemDirectoryResponse>;
6
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=management.branch.type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"management.branch.type.js","sourceRoot":"","sources":["../../../src/management/Branch/management.branch.type.ts"],"names":[],"mappings":""}
@@ -1,7 +1,7 @@
1
1
  import { SystemSvFields } from '../../system';
2
- import { SystemDirectoryResponse } from '../../system/Directory/system.directory.types';
3
2
  import { SystemNaturalTypes } from '../../system/NaturalTypes/system.natural-types.types';
4
3
  import { SystemPersonTypes } from '../../system/PersonTypes/system.person-types.types';
4
+ import { ManagementBranch } from '../Branch/management.branch.type';
5
5
  export type ManagementCompany = {
6
6
  id: string;
7
7
  name: string;
@@ -9,5 +9,5 @@ export type ManagementCompany = {
9
9
  companyType: SystemPersonTypes;
10
10
  naturalType: SystemNaturalTypes;
11
11
  svFields: SystemSvFields;
12
- contacts: Array<SystemDirectoryResponse>;
12
+ branch: ManagementBranch;
13
13
  };
@@ -1,3 +1,4 @@
1
+ export * from './Branch';
1
2
  export * from './Company';
2
3
  export * from './Profiles';
3
4
  export * from './Users';
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./Branch"), exports);
17
18
  __exportStar(require("./Company"), exports);
18
19
  __exportStar(require("./Profiles"), exports);
19
20
  __exportStar(require("./Users"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/management/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,6CAA0B;AAC1B,0CAAuB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/management/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AACxB,4CAAyB;AACzB,6CAA0B;AAC1B,0CAAuB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.4.60",
3
+ "version": "0.4.62",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -0,0 +1,3 @@
1
+ import { ManagementBranch } from '../management.branch.type'
2
+
3
+ export type ManagementBranchGetCurrent = ManagementBranch
@@ -0,0 +1,2 @@
1
+ export * from './GetCurrent'
2
+ export * from './management.branch.type'
@@ -0,0 +1,7 @@
1
+ import { SystemDirectoryResponse } from '../../system/Directory/system.directory.types'
2
+
3
+ export type ManagementBranch = {
4
+ id: string
5
+ name: string
6
+ contacts: Array<SystemDirectoryResponse>
7
+ }
@@ -1,7 +1,7 @@
1
1
  import { SystemSvFields } from '../../system'
2
- import { SystemDirectoryResponse } from '../../system/Directory/system.directory.types'
3
2
  import { SystemNaturalTypes } from '../../system/NaturalTypes/system.natural-types.types'
4
3
  import { SystemPersonTypes } from '../../system/PersonTypes/system.person-types.types'
4
+ import { ManagementBranch } from '../Branch/management.branch.type'
5
5
 
6
6
  export type ManagementCompany = {
7
7
  id: string
@@ -10,5 +10,5 @@ export type ManagementCompany = {
10
10
  companyType: SystemPersonTypes
11
11
  naturalType: SystemNaturalTypes
12
12
  svFields: SystemSvFields
13
- contacts: Array<SystemDirectoryResponse>
13
+ branch: ManagementBranch
14
14
  }
@@ -1,3 +1,4 @@
1
+ export * from './Branch'
1
2
  export * from './Company'
2
3
  export * from './Profiles'
3
4
  export * from './Users'