@s-corp-biz/biz-entity-api 1.12.0 → 1.13.0

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.
@@ -13,6 +13,7 @@ import type { Configuration } from '../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import { type RequestArgs, BaseAPI } from '../base';
15
15
  import type { CompanyResponse } from '../models';
16
+ import type { CompanySummaryResponse } from '../models';
16
17
  import type { CompanyUpdateRequest } from '../models';
17
18
  import type { TaxReportResponse } from '../models';
18
19
  /**
@@ -63,6 +64,12 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
63
64
  * @throws {RequiredError}
64
65
  */
65
66
  apiCompanyPost: (companyUpdateRequest?: CompanyUpdateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
67
+ /**
68
+ *
69
+ * @param {*} [options] Override http request option.
70
+ * @throws {RequiredError}
71
+ */
72
+ apiCompanySummaryGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
66
73
  /**
67
74
  *
68
75
  * @param {string} companyId
@@ -122,6 +129,12 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
122
129
  * @throws {RequiredError}
123
130
  */
124
131
  apiCompanyPost(companyUpdateRequest?: CompanyUpdateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompanyResponse>>;
132
+ /**
133
+ *
134
+ * @param {*} [options] Override http request option.
135
+ * @throws {RequiredError}
136
+ */
137
+ apiCompanySummaryGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CompanySummaryResponse>>>;
125
138
  /**
126
139
  *
127
140
  * @param {string} companyId
@@ -181,6 +194,12 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
181
194
  * @throws {RequiredError}
182
195
  */
183
196
  apiCompanyPost(companyUpdateRequest?: CompanyUpdateRequest, options?: RawAxiosRequestConfig): AxiosPromise<CompanyResponse>;
197
+ /**
198
+ *
199
+ * @param {*} [options] Override http request option.
200
+ * @throws {RequiredError}
201
+ */
202
+ apiCompanySummaryGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<CompanySummaryResponse>>;
184
203
  /**
185
204
  *
186
205
  * @param {string} companyId
@@ -248,6 +267,13 @@ export declare class CompanyApi extends BaseAPI {
248
267
  * @memberof CompanyApi
249
268
  */
250
269
  apiCompanyPost(companyUpdateRequest?: CompanyUpdateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompanyResponse, any, {}>>;
270
+ /**
271
+ *
272
+ * @param {*} [options] Override http request option.
273
+ * @throws {RequiredError}
274
+ * @memberof CompanyApi
275
+ */
276
+ apiCompanySummaryGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompanySummaryResponse[], any, {}>>;
251
277
  /**
252
278
  *
253
279
  * @param {string} companyId
@@ -348,6 +348,44 @@ var CompanyApiAxiosParamCreator = function (configuration) {
348
348
  });
349
349
  });
350
350
  },
351
+ /**
352
+ *
353
+ * @param {*} [options] Override http request option.
354
+ * @throws {RequiredError}
355
+ */
356
+ apiCompanySummaryGet: function (options) {
357
+ if (options === void 0) { options = {}; }
358
+ return __awaiter(_this, void 0, void 0, function () {
359
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
360
+ return __generator(this, function (_a) {
361
+ switch (_a.label) {
362
+ case 0:
363
+ localVarPath = "/api/Company/summary";
364
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
365
+ if (configuration) {
366
+ baseOptions = configuration.baseOptions;
367
+ }
368
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
369
+ localVarHeaderParameter = {};
370
+ localVarQueryParameter = {};
371
+ // authentication Bearer required
372
+ // http bearer authentication required
373
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
374
+ case 1:
375
+ // authentication Bearer required
376
+ // http bearer authentication required
377
+ _a.sent();
378
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
379
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
380
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
381
+ return [2 /*return*/, {
382
+ url: (0, common_1.toPathString)(localVarUrlObj),
383
+ options: localVarRequestOptions,
384
+ }];
385
+ }
386
+ });
387
+ });
388
+ },
351
389
  /**
352
390
  *
353
391
  * @param {string} companyId
@@ -551,6 +589,27 @@ var CompanyApiFp = function (configuration) {
551
589
  });
552
590
  });
553
591
  },
592
+ /**
593
+ *
594
+ * @param {*} [options] Override http request option.
595
+ * @throws {RequiredError}
596
+ */
597
+ apiCompanySummaryGet: function (options) {
598
+ var _a, _b, _c;
599
+ return __awaiter(this, void 0, void 0, function () {
600
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
601
+ return __generator(this, function (_d) {
602
+ switch (_d.label) {
603
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiCompanySummaryGet(options)];
604
+ case 1:
605
+ localVarAxiosArgs = _d.sent();
606
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
607
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['CompanyApi.apiCompanySummaryGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
608
+ return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
609
+ }
610
+ });
611
+ });
612
+ },
554
613
  /**
555
614
  *
556
615
  * @param {string} companyId
@@ -641,6 +700,14 @@ var CompanyApiFactory = function (configuration, basePath, axios) {
641
700
  apiCompanyPost: function (companyUpdateRequest, options) {
642
701
  return localVarFp.apiCompanyPost(companyUpdateRequest, options).then(function (request) { return request(axios, basePath); });
643
702
  },
703
+ /**
704
+ *
705
+ * @param {*} [options] Override http request option.
706
+ * @throws {RequiredError}
707
+ */
708
+ apiCompanySummaryGet: function (options) {
709
+ return localVarFp.apiCompanySummaryGet(options).then(function (request) { return request(axios, basePath); });
710
+ },
644
711
  /**
645
712
  *
646
713
  * @param {string} companyId
@@ -734,6 +801,16 @@ var CompanyApi = /** @class */ (function (_super) {
734
801
  var _this = this;
735
802
  return (0, exports.CompanyApiFp)(this.configuration).apiCompanyPost(companyUpdateRequest, options).then(function (request) { return request(_this.axios, _this.basePath); });
736
803
  };
804
+ /**
805
+ *
806
+ * @param {*} [options] Override http request option.
807
+ * @throws {RequiredError}
808
+ * @memberof CompanyApi
809
+ */
810
+ CompanyApi.prototype.apiCompanySummaryGet = function (options) {
811
+ var _this = this;
812
+ return (0, exports.CompanyApiFp)(this.configuration).apiCompanySummaryGet(options).then(function (request) { return request(_this.axios, _this.basePath); });
813
+ };
737
814
  /**
738
815
  *
739
816
  * @param {string} companyId
@@ -17,6 +17,7 @@ import type { AddFamilyMembersBatchRequest } from '../models';
17
17
  import type { FamilyMemberResponse } from '../models';
18
18
  import type { JoinFamilyByCompanyRequest } from '../models';
19
19
  import type { SharedFamilyInfoResponse } from '../models';
20
+ import type { SharedFamilySummaryResponse } from '../models';
20
21
  import type { SuggestedFamilyMemberDto } from '../models';
21
22
  /**
22
23
  * FamilyApi - axios parameter creator
@@ -103,6 +104,12 @@ export declare const FamilyApiAxiosParamCreator: (configuration?: Configuration)
103
104
  * @throws {RequiredError}
104
105
  */
105
106
  apiFamilySharedWithMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
107
+ /**
108
+ *
109
+ * @param {*} [options] Override http request option.
110
+ * @throws {RequiredError}
111
+ */
112
+ apiFamilySharedWithMeSummaryGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
106
113
  };
107
114
  /**
108
115
  * FamilyApi - functional programming interface
@@ -189,6 +196,12 @@ export declare const FamilyApiFp: (configuration?: Configuration) => {
189
196
  * @throws {RequiredError}
190
197
  */
191
198
  apiFamilySharedWithMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SharedFamilyInfoResponse>>>;
199
+ /**
200
+ *
201
+ * @param {*} [options] Override http request option.
202
+ * @throws {RequiredError}
203
+ */
204
+ apiFamilySharedWithMeSummaryGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SharedFamilySummaryResponse>>>;
192
205
  };
193
206
  /**
194
207
  * FamilyApi - factory interface
@@ -275,6 +288,12 @@ export declare const FamilyApiFactory: (configuration?: Configuration, basePath?
275
288
  * @throws {RequiredError}
276
289
  */
277
290
  apiFamilySharedWithMeGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<SharedFamilyInfoResponse>>;
291
+ /**
292
+ *
293
+ * @param {*} [options] Override http request option.
294
+ * @throws {RequiredError}
295
+ */
296
+ apiFamilySharedWithMeSummaryGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<SharedFamilySummaryResponse>>;
278
297
  };
279
298
  /**
280
299
  * FamilyApi - object-oriented interface
@@ -374,4 +393,11 @@ export declare class FamilyApi extends BaseAPI {
374
393
  * @memberof FamilyApi
375
394
  */
376
395
  apiFamilySharedWithMeGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SharedFamilyInfoResponse[], any, {}>>;
396
+ /**
397
+ *
398
+ * @param {*} [options] Override http request option.
399
+ * @throws {RequiredError}
400
+ * @memberof FamilyApi
401
+ */
402
+ apiFamilySharedWithMeSummaryGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SharedFamilySummaryResponse[], any, {}>>;
377
403
  }
@@ -557,6 +557,44 @@ var FamilyApiAxiosParamCreator = function (configuration) {
557
557
  });
558
558
  });
559
559
  },
560
+ /**
561
+ *
562
+ * @param {*} [options] Override http request option.
563
+ * @throws {RequiredError}
564
+ */
565
+ apiFamilySharedWithMeSummaryGet: function (options) {
566
+ if (options === void 0) { options = {}; }
567
+ return __awaiter(_this, void 0, void 0, function () {
568
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
569
+ return __generator(this, function (_a) {
570
+ switch (_a.label) {
571
+ case 0:
572
+ localVarPath = "/api/family/shared-with-me/summary";
573
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
574
+ if (configuration) {
575
+ baseOptions = configuration.baseOptions;
576
+ }
577
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
578
+ localVarHeaderParameter = {};
579
+ localVarQueryParameter = {};
580
+ // authentication Bearer required
581
+ // http bearer authentication required
582
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
583
+ case 1:
584
+ // authentication Bearer required
585
+ // http bearer authentication required
586
+ _a.sent();
587
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
588
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
589
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
590
+ return [2 /*return*/, {
591
+ url: (0, common_1.toPathString)(localVarUrlObj),
592
+ options: localVarRequestOptions,
593
+ }];
594
+ }
595
+ });
596
+ });
597
+ },
560
598
  };
561
599
  };
562
600
  exports.FamilyApiAxiosParamCreator = FamilyApiAxiosParamCreator;
@@ -812,6 +850,27 @@ var FamilyApiFp = function (configuration) {
812
850
  });
813
851
  });
814
852
  },
853
+ /**
854
+ *
855
+ * @param {*} [options] Override http request option.
856
+ * @throws {RequiredError}
857
+ */
858
+ apiFamilySharedWithMeSummaryGet: function (options) {
859
+ var _a, _b, _c;
860
+ return __awaiter(this, void 0, void 0, function () {
861
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
862
+ return __generator(this, function (_d) {
863
+ switch (_d.label) {
864
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiFamilySharedWithMeSummaryGet(options)];
865
+ case 1:
866
+ localVarAxiosArgs = _d.sent();
867
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
868
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['FamilyApi.apiFamilySharedWithMeSummaryGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
869
+ return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
870
+ }
871
+ });
872
+ });
873
+ },
815
874
  };
816
875
  };
817
876
  exports.FamilyApiFp = FamilyApiFp;
@@ -924,6 +983,14 @@ var FamilyApiFactory = function (configuration, basePath, axios) {
924
983
  apiFamilySharedWithMeGet: function (options) {
925
984
  return localVarFp.apiFamilySharedWithMeGet(options).then(function (request) { return request(axios, basePath); });
926
985
  },
986
+ /**
987
+ *
988
+ * @param {*} [options] Override http request option.
989
+ * @throws {RequiredError}
990
+ */
991
+ apiFamilySharedWithMeSummaryGet: function (options) {
992
+ return localVarFp.apiFamilySharedWithMeSummaryGet(options).then(function (request) { return request(axios, basePath); });
993
+ },
927
994
  };
928
995
  };
929
996
  exports.FamilyApiFactory = FamilyApiFactory;
@@ -1062,6 +1129,16 @@ var FamilyApi = /** @class */ (function (_super) {
1062
1129
  var _this = this;
1063
1130
  return (0, exports.FamilyApiFp)(this.configuration).apiFamilySharedWithMeGet(options).then(function (request) { return request(_this.axios, _this.basePath); });
1064
1131
  };
1132
+ /**
1133
+ *
1134
+ * @param {*} [options] Override http request option.
1135
+ * @throws {RequiredError}
1136
+ * @memberof FamilyApi
1137
+ */
1138
+ FamilyApi.prototype.apiFamilySharedWithMeSummaryGet = function (options) {
1139
+ var _this = this;
1140
+ return (0, exports.FamilyApiFp)(this.configuration).apiFamilySharedWithMeSummaryGet(options).then(function (request) { return request(_this.axios, _this.basePath); });
1141
+ };
1065
1142
  return FamilyApi;
1066
1143
  }(base_1.BaseAPI));
1067
1144
  exports.FamilyApi = FamilyApi;
@@ -0,0 +1,73 @@
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
+ import type { CompanyUserSummary } from './company-user-summary';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CompanySummaryResponse
17
+ */
18
+ export interface CompanySummaryResponse {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof CompanySummaryResponse
23
+ */
24
+ 'id'?: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof CompanySummaryResponse
29
+ */
30
+ 'name'?: string | null;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof CompanySummaryResponse
35
+ */
36
+ 'logoUrl'?: string | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof CompanySummaryResponse
41
+ */
42
+ 'ein'?: string | null;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof CompanySummaryResponse
47
+ */
48
+ 'stateOfIncorporationName'?: string | null;
49
+ /**
50
+ *
51
+ * @type {Array<CompanyUserSummary>}
52
+ * @memberof CompanySummaryResponse
53
+ */
54
+ 'users'?: Array<CompanyUserSummary> | null;
55
+ /**
56
+ *
57
+ * @type {boolean}
58
+ * @memberof CompanySummaryResponse
59
+ */
60
+ 'isIntegratedWithQuickbooks'?: boolean;
61
+ /**
62
+ *
63
+ * @type {boolean}
64
+ * @memberof CompanySummaryResponse
65
+ */
66
+ 'isMappingCreatedForCurrentYear'?: boolean;
67
+ /**
68
+ *
69
+ * @type {boolean}
70
+ * @memberof CompanySummaryResponse
71
+ */
72
+ 'hasUnmappedTaxCategories'?: boolean;
73
+ }
@@ -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 });
@@ -0,0 +1,36 @@
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 CompanyUserSummary
16
+ */
17
+ export interface CompanyUserSummary {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof CompanyUserSummary
22
+ */
23
+ 'userId'?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof CompanyUserSummary
28
+ */
29
+ 'name'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof CompanyUserSummary
34
+ */
35
+ 'email'?: string | null;
36
+ }
@@ -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 });
@@ -0,0 +1,37 @@
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
+ import type { FilingStatusEnum } from './filing-status-enum';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface FamilyReportSummary
17
+ */
18
+ export interface FamilyReportSummary {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof FamilyReportSummary
23
+ */
24
+ 'id'?: string;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof FamilyReportSummary
29
+ */
30
+ 'taxYear'?: number;
31
+ /**
32
+ *
33
+ * @type {FilingStatusEnum}
34
+ * @memberof FamilyReportSummary
35
+ */
36
+ 'filingStatus'?: FilingStatusEnum;
37
+ }
@@ -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 });
@@ -10,9 +10,11 @@ export * from './capital-loss-limit-response';
10
10
  export * from './company-delivery-details';
11
11
  export * from './company-ownership-transfer-request';
12
12
  export * from './company-response';
13
+ export * from './company-summary-response';
13
14
  export * from './company-update-request';
14
15
  export * from './company-user-request';
15
16
  export * from './company-user-response';
17
+ export * from './company-user-summary';
16
18
  export * from './confirm-payment-request';
17
19
  export * from './create-depreciation-request';
18
20
  export * from './create-election-payment-request';
@@ -28,6 +30,7 @@ export * from './entity-data';
28
30
  export * from './family-member-info';
29
31
  export * from './family-member-permission-request';
30
32
  export * from './family-member-response';
33
+ export * from './family-report-summary';
31
34
  export * from './federal-tax-estimate-response';
32
35
  export * from './filing-status-enum';
33
36
  export * from './fill2553-irs-form-request';
@@ -61,6 +64,7 @@ export * from './scorp-election-response';
61
64
  export * from './scorp-election-update-request';
62
65
  export * from './send-invitation-request';
63
66
  export * from './shared-family-info-response';
67
+ export * from './shared-family-summary-response';
64
68
  export * from './shareholder-pdf-info';
65
69
  export * from './sign-in-with-open-id-req';
66
70
  export * from './sign-up-request';
@@ -26,9 +26,11 @@ __exportStar(require("./capital-loss-limit-response"), exports);
26
26
  __exportStar(require("./company-delivery-details"), exports);
27
27
  __exportStar(require("./company-ownership-transfer-request"), exports);
28
28
  __exportStar(require("./company-response"), exports);
29
+ __exportStar(require("./company-summary-response"), exports);
29
30
  __exportStar(require("./company-update-request"), exports);
30
31
  __exportStar(require("./company-user-request"), exports);
31
32
  __exportStar(require("./company-user-response"), exports);
33
+ __exportStar(require("./company-user-summary"), exports);
32
34
  __exportStar(require("./confirm-payment-request"), exports);
33
35
  __exportStar(require("./create-depreciation-request"), exports);
34
36
  __exportStar(require("./create-election-payment-request"), exports);
@@ -44,6 +46,7 @@ __exportStar(require("./entity-data"), exports);
44
46
  __exportStar(require("./family-member-info"), exports);
45
47
  __exportStar(require("./family-member-permission-request"), exports);
46
48
  __exportStar(require("./family-member-response"), exports);
49
+ __exportStar(require("./family-report-summary"), exports);
47
50
  __exportStar(require("./federal-tax-estimate-response"), exports);
48
51
  __exportStar(require("./filing-status-enum"), exports);
49
52
  __exportStar(require("./fill2553-irs-form-request"), exports);
@@ -77,6 +80,7 @@ __exportStar(require("./scorp-election-response"), exports);
77
80
  __exportStar(require("./scorp-election-update-request"), exports);
78
81
  __exportStar(require("./send-invitation-request"), exports);
79
82
  __exportStar(require("./shared-family-info-response"), exports);
83
+ __exportStar(require("./shared-family-summary-response"), exports);
80
84
  __exportStar(require("./shareholder-pdf-info"), exports);
81
85
  __exportStar(require("./sign-in-with-open-id-req"), exports);
82
86
  __exportStar(require("./sign-up-request"), exports);
@@ -0,0 +1,44 @@
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
+ import type { FamilyReportSummary } from './family-report-summary';
13
+ import type { UserSummaryResponse } from './user-summary-response';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface SharedFamilySummaryResponse
18
+ */
19
+ export interface SharedFamilySummaryResponse {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof SharedFamilySummaryResponse
24
+ */
25
+ 'familyId'?: string;
26
+ /**
27
+ *
28
+ * @type {UserSummaryResponse}
29
+ * @memberof SharedFamilySummaryResponse
30
+ */
31
+ 'familyHead'?: UserSummaryResponse;
32
+ /**
33
+ *
34
+ * @type {Array<UserSummaryResponse>}
35
+ * @memberof SharedFamilySummaryResponse
36
+ */
37
+ 'members'?: Array<UserSummaryResponse> | null;
38
+ /**
39
+ *
40
+ * @type {Array<FamilyReportSummary>}
41
+ * @memberof SharedFamilySummaryResponse
42
+ */
43
+ 'reports'?: Array<FamilyReportSummary> | null;
44
+ }
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@s-corp-biz/biz-entity-api",
3
- "version": "1.12.0",
3
+ "version": "1.13.0",
4
4
  "description": "TypeScript API client for S-Corp Biz Entity API",
5
5
  "keywords": [
6
6
  "typescript",