@s-corp-biz/biz-entity-api 1.8.2-staging.1 → 1.9.0-staging.1
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.
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { CompanyUserRequest } from './company-user-request';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -87,4 +88,10 @@ export interface CompanyUpdateRequest {
|
|
|
87
88
|
* @memberof CompanyUpdateRequest
|
|
88
89
|
*/
|
|
89
90
|
'isSSBT'?: boolean | null;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {Array<CompanyUserRequest>}
|
|
94
|
+
* @memberof CompanyUpdateRequest
|
|
95
|
+
*/
|
|
96
|
+
'users'?: Array<CompanyUserRequest> | null;
|
|
90
97
|
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* biz-entity-api
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v2
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CompanyUserRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface CompanyUserRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CompanyUserRequest
|
|
22
|
+
*/
|
|
23
|
+
'id'?: string | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CompanyUserRequest
|
|
28
|
+
*/
|
|
29
|
+
'userId'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CompanyUserRequest
|
|
34
|
+
*/
|
|
35
|
+
'name'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CompanyUserRequest
|
|
40
|
+
*/
|
|
41
|
+
'email'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof CompanyUserRequest
|
|
46
|
+
*/
|
|
47
|
+
'isShareholder'?: boolean;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof CompanyUserRequest
|
|
52
|
+
*/
|
|
53
|
+
'ownershipPercent'?: number | null;
|
|
54
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* biz-entity-api
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v2
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/lib/models/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export * from './authenticated-user-in-ui';
|
|
|
9
9
|
export * from './company-ownership-transfer-request';
|
|
10
10
|
export * from './company-response';
|
|
11
11
|
export * from './company-update-request';
|
|
12
|
+
export * from './company-user-request';
|
|
12
13
|
export * from './company-user-response';
|
|
13
14
|
export * from './create-depreciation-request';
|
|
14
15
|
export * from './create-payment-intent-request';
|
package/lib/models/index.js
CHANGED
|
@@ -25,6 +25,7 @@ __exportStar(require("./authenticated-user-in-ui"), exports);
|
|
|
25
25
|
__exportStar(require("./company-ownership-transfer-request"), exports);
|
|
26
26
|
__exportStar(require("./company-response"), exports);
|
|
27
27
|
__exportStar(require("./company-update-request"), exports);
|
|
28
|
+
__exportStar(require("./company-user-request"), exports);
|
|
28
29
|
__exportStar(require("./company-user-response"), exports);
|
|
29
30
|
__exportStar(require("./create-depreciation-request"), exports);
|
|
30
31
|
__exportStar(require("./create-payment-intent-request"), exports);
|