@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.
- package/lib/management/Branch/GetCurrent/index.d.ts +2 -0
- package/lib/management/Branch/GetCurrent/index.js +3 -0
- package/lib/management/Branch/GetCurrent/index.js.map +1 -0
- package/lib/management/Branch/index.d.ts +2 -0
- package/lib/management/Branch/index.js +19 -0
- package/lib/management/Branch/index.js.map +1 -0
- package/lib/management/Branch/management.branch.type.d.ts +6 -0
- package/lib/management/Branch/management.branch.type.js +3 -0
- package/lib/management/Branch/management.branch.type.js.map +1 -0
- package/lib/management/Company/management.company.type.d.ts +2 -2
- package/lib/management/index.d.ts +1 -0
- package/lib/management/index.js +1 -0
- package/lib/management/index.js.map +1 -1
- package/package.json +1 -1
- package/src/management/Branch/GetCurrent/index.ts +3 -0
- package/src/management/Branch/index.ts +2 -0
- package/src/management/Branch/management.branch.type.ts +7 -0
- package/src/management/Company/management.company.type.ts +2 -2
- package/src/management/index.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/management/Branch/GetCurrent/index.ts"],"names":[],"mappings":""}
|
|
@@ -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 @@
|
|
|
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
|
-
|
|
12
|
+
branch: ManagementBranch;
|
|
13
13
|
};
|
package/lib/management/index.js
CHANGED
|
@@ -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,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
|
-
|
|
13
|
+
branch: ManagementBranch
|
|
14
14
|
}
|
package/src/management/index.ts
CHANGED