@tryfinch/finch-api 4.2.1 → 5.0.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.
- package/CHANGELOG.md +28 -0
- package/core.d.ts +1 -1
- package/core.d.ts.map +1 -1
- package/index.d.mts +2 -2
- package/index.d.ts +2 -2
- package/index.d.ts.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/index.mjs +2 -2
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/hris/benefits/benefits.d.ts +1 -1
- package/resources/hris/benefits/benefits.d.ts.map +1 -1
- package/resources/hris/benefits/index.d.ts +1 -1
- package/resources/hris/benefits/index.d.ts.map +1 -1
- package/resources/hris/benefits/individuals.d.ts +5 -5
- package/resources/hris/benefits/individuals.d.ts.map +1 -1
- package/resources/hris/benefits/individuals.js +2 -2
- package/resources/hris/benefits/individuals.js.map +1 -1
- package/resources/hris/benefits/individuals.mjs +2 -2
- package/resources/hris/benefits/individuals.mjs.map +1 -1
- package/resources/hris/{individuals/employment-data.d.ts → employments.d.ts} +12 -12
- package/resources/hris/employments.d.ts.map +1 -0
- package/resources/hris/employments.js +27 -0
- package/resources/hris/employments.js.map +1 -0
- package/resources/hris/{individuals/employment-data.mjs → employments.mjs} +5 -8
- package/resources/hris/employments.mjs.map +1 -0
- package/resources/hris/hris.d.ts +20 -13
- package/resources/hris/hris.d.ts.map +1 -1
- package/resources/hris/hris.js +12 -8
- package/resources/hris/hris.js.map +1 -1
- package/resources/hris/hris.mjs +12 -8
- package/resources/hris/hris.mjs.map +1 -1
- package/resources/hris/index.d.ts +10 -3
- package/resources/hris/index.d.ts.map +1 -1
- package/resources/hris/index.js +23 -8
- package/resources/hris/index.js.map +1 -1
- package/resources/hris/index.mjs +3 -2
- package/resources/hris/index.mjs.map +1 -1
- package/resources/hris/{individuals/individuals.d.ts → individuals.d.ts} +5 -13
- package/resources/hris/individuals.d.ts.map +1 -0
- package/resources/hris/individuals.js +24 -0
- package/resources/hris/individuals.js.map +1 -0
- package/resources/hris/{individuals/individuals.mjs → individuals.mjs} +3 -12
- package/resources/hris/individuals.mjs.map +1 -0
- package/resources/hris/pay-statements.d.ts +4 -4
- package/resources/hris/pay-statements.d.ts.map +1 -1
- package/resources/hris/pay-statements.js +4 -4
- package/resources/hris/pay-statements.js.map +1 -1
- package/resources/hris/pay-statements.mjs +2 -2
- package/resources/hris/pay-statements.mjs.map +1 -1
- package/src/core.ts +1 -1
- package/src/index.ts +3 -3
- package/src/resources/hris/benefits/benefits.ts +1 -1
- package/src/resources/hris/benefits/index.ts +1 -1
- package/src/resources/hris/benefits/individuals.ts +8 -8
- package/src/resources/hris/{individuals/employment-data.ts → employments.ts} +16 -16
- package/src/resources/hris/hris.ts +23 -15
- package/src/resources/hris/index.ts +10 -3
- package/src/resources/hris/{individuals/individuals.ts → individuals.ts} +12 -22
- package/src/resources/hris/pay-statements.ts +5 -5
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
- package/resources/hris/individuals/employment-data.d.ts.map +0 -1
- package/resources/hris/individuals/employment-data.js +0 -70
- package/resources/hris/individuals/employment-data.js.map +0 -1
- package/resources/hris/individuals/employment-data.mjs.map +0 -1
- package/resources/hris/individuals/index.d.ts +0 -14
- package/resources/hris/individuals/index.d.ts.map +0 -1
- package/resources/hris/individuals/index.js +0 -35
- package/resources/hris/individuals/index.js.map +0 -1
- package/resources/hris/individuals/index.mjs +0 -4
- package/resources/hris/individuals/index.mjs.map +0 -1
- package/resources/hris/individuals/individuals.d.ts.map +0 -1
- package/resources/hris/individuals/individuals.js +0 -73
- package/resources/hris/individuals/individuals.js.map +0 -1
- package/resources/hris/individuals/individuals.mjs.map +0 -1
- package/src/resources/hris/individuals/index.ts +0 -15
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from '
|
|
4
|
-
import { APIResource } from '
|
|
5
|
-
import * as HRIS from '
|
|
3
|
+
import * as Core from '../../core';
|
|
4
|
+
import { APIResource } from '../../resource';
|
|
5
|
+
import * as HRIS from './index';
|
|
6
6
|
import * as API from './index';
|
|
7
|
-
import { ResponsesPage } from '
|
|
7
|
+
import { ResponsesPage } from '../../pagination';
|
|
8
8
|
|
|
9
|
-
export class
|
|
9
|
+
export class Employments extends APIResource {
|
|
10
10
|
/**
|
|
11
11
|
* Read individual employment and income data
|
|
12
12
|
*
|
|
@@ -15,10 +15,10 @@ export class EmploymentData extends APIResource {
|
|
|
15
15
|
* daily, etc, depending on what information the provider returns.
|
|
16
16
|
*/
|
|
17
17
|
retrieveMany(
|
|
18
|
-
body:
|
|
18
|
+
body: EmploymentRetrieveManyParams,
|
|
19
19
|
options?: Core.RequestOptions,
|
|
20
|
-
): Core.PagePromise<
|
|
21
|
-
return this.getAPIList('/employer/employment',
|
|
20
|
+
): Core.PagePromise<EmploymentDataResponsesPage, EmploymentDataResponse> {
|
|
21
|
+
return this.getAPIList('/employer/employment', EmploymentDataResponsesPage, {
|
|
22
22
|
body,
|
|
23
23
|
method: 'post',
|
|
24
24
|
...options,
|
|
@@ -26,9 +26,9 @@ export class EmploymentData extends APIResource {
|
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
export class
|
|
29
|
+
export class EmploymentDataResponsesPage extends ResponsesPage<EmploymentDataResponse> {}
|
|
30
30
|
// alias so we can export it in the namespace
|
|
31
|
-
type
|
|
31
|
+
type _EmploymentDataResponsesPage = EmploymentDataResponsesPage;
|
|
32
32
|
|
|
33
33
|
export interface EmploymentData {
|
|
34
34
|
/**
|
|
@@ -163,14 +163,14 @@ export interface EmploymentDataResponse {
|
|
|
163
163
|
individual_id?: string;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
export interface
|
|
166
|
+
export interface EmploymentRetrieveManyParams {
|
|
167
167
|
/**
|
|
168
168
|
* The array of batch requests.
|
|
169
169
|
*/
|
|
170
|
-
requests: Array<
|
|
170
|
+
requests: Array<EmploymentRetrieveManyParams.Request>;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
-
export namespace
|
|
173
|
+
export namespace EmploymentRetrieveManyParams {
|
|
174
174
|
export interface Request {
|
|
175
175
|
/**
|
|
176
176
|
* A stable Finch `id` (UUID v4) for an individual in the company. There is no
|
|
@@ -181,9 +181,9 @@ export namespace EmploymentDataRetrieveManyParams {
|
|
|
181
181
|
}
|
|
182
182
|
}
|
|
183
183
|
|
|
184
|
-
export namespace
|
|
184
|
+
export namespace Employments {
|
|
185
185
|
export import EmploymentData = API.EmploymentData;
|
|
186
186
|
export import EmploymentDataResponse = API.EmploymentDataResponse;
|
|
187
|
-
export type
|
|
188
|
-
export import
|
|
187
|
+
export type EmploymentDataResponsesPage = _EmploymentDataResponsesPage;
|
|
188
|
+
export import EmploymentRetrieveManyParams = API.EmploymentRetrieveManyParams;
|
|
189
189
|
}
|
|
@@ -2,19 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
import { APIResource } from '../../resource';
|
|
4
4
|
import { CompanyResource } from './company';
|
|
5
|
+
import { Directory } from './directory';
|
|
6
|
+
import { Individuals } from './individuals';
|
|
7
|
+
import { Employments } from './employments';
|
|
5
8
|
import { Payments } from './payments';
|
|
6
9
|
import { PayStatements } from './pay-statements';
|
|
7
|
-
import { Directory } from './directory';
|
|
8
|
-
import { Individuals } from './individuals/individuals';
|
|
9
10
|
import { Benefits } from './benefits/benefits';
|
|
10
11
|
import * as API from './index';
|
|
11
12
|
|
|
12
13
|
export class HRIS extends APIResource {
|
|
13
14
|
company: CompanyResource = new CompanyResource(this.client);
|
|
14
|
-
payments: Payments = new Payments(this.client);
|
|
15
|
-
payStatements: PayStatements = new PayStatements(this.client);
|
|
16
15
|
directory: Directory = new Directory(this.client);
|
|
17
16
|
individuals: Individuals = new Individuals(this.client);
|
|
17
|
+
employments: Employments = new Employments(this.client);
|
|
18
|
+
payments: Payments = new Payments(this.client);
|
|
19
|
+
payStatements: PayStatements = new PayStatements(this.client);
|
|
18
20
|
benefits: Benefits = new Benefits(this.client);
|
|
19
21
|
}
|
|
20
22
|
|
|
@@ -122,6 +124,22 @@ export namespace HRIS {
|
|
|
122
124
|
export import CompanyResource = API.CompanyResource;
|
|
123
125
|
export import Company = API.Company;
|
|
124
126
|
|
|
127
|
+
export import Directory = API.Directory;
|
|
128
|
+
export import IndividualInDirectory = API.IndividualInDirectory;
|
|
129
|
+
export import DirectoryListIndividualsParams = API.DirectoryListIndividualsParams;
|
|
130
|
+
|
|
131
|
+
export import Individuals = API.Individuals;
|
|
132
|
+
export import Individual = API.Individual;
|
|
133
|
+
export import IndividualResponse = API.IndividualResponse;
|
|
134
|
+
export import IndividualResponsesPage = API.IndividualResponsesPage;
|
|
135
|
+
export import IndividualRetrieveManyParams = API.IndividualRetrieveManyParams;
|
|
136
|
+
|
|
137
|
+
export import Employments = API.Employments;
|
|
138
|
+
export import EmploymentData = API.EmploymentData;
|
|
139
|
+
export import EmploymentDataResponse = API.EmploymentDataResponse;
|
|
140
|
+
export import EmploymentDataResponsesPage = API.EmploymentDataResponsesPage;
|
|
141
|
+
export import EmploymentRetrieveManyParams = API.EmploymentRetrieveManyParams;
|
|
142
|
+
|
|
125
143
|
export import Payments = API.Payments;
|
|
126
144
|
export import Payment = API.Payment;
|
|
127
145
|
export import PaymentsSinglePage = API.PaymentsSinglePage;
|
|
@@ -131,19 +149,9 @@ export namespace HRIS {
|
|
|
131
149
|
export import PayStatement = API.PayStatement;
|
|
132
150
|
export import PayStatementResponse = API.PayStatementResponse;
|
|
133
151
|
export import PayStatementResponseBody = API.PayStatementResponseBody;
|
|
134
|
-
export import
|
|
152
|
+
export import PayStatementResponsesPage = API.PayStatementResponsesPage;
|
|
135
153
|
export import PayStatementRetrieveManyParams = API.PayStatementRetrieveManyParams;
|
|
136
154
|
|
|
137
|
-
export import Directory = API.Directory;
|
|
138
|
-
export import IndividualInDirectory = API.IndividualInDirectory;
|
|
139
|
-
export import DirectoryListIndividualsParams = API.DirectoryListIndividualsParams;
|
|
140
|
-
|
|
141
|
-
export import Individuals = API.Individuals;
|
|
142
|
-
export import Individual = API.Individual;
|
|
143
|
-
export import IndividualResponse = API.IndividualResponse;
|
|
144
|
-
export import IndividualResponsesResponsesPage = API.IndividualResponsesResponsesPage;
|
|
145
|
-
export import IndividualRetrieveManyParams = API.IndividualRetrieveManyParams;
|
|
146
|
-
|
|
147
155
|
export import Benefits = API.Benefits;
|
|
148
156
|
export import BenefitFrequency = API.BenefitFrequency;
|
|
149
157
|
export import BenefitType = API.BenefitType;
|
|
@@ -15,21 +15,28 @@ export {
|
|
|
15
15
|
Benefits,
|
|
16
16
|
} from './benefits/index';
|
|
17
17
|
export { Company, CompanyResource } from './company';
|
|
18
|
+
export {
|
|
19
|
+
EmploymentData,
|
|
20
|
+
EmploymentDataResponse,
|
|
21
|
+
EmploymentRetrieveManyParams,
|
|
22
|
+
EmploymentDataResponsesPage,
|
|
23
|
+
Employments,
|
|
24
|
+
} from './employments';
|
|
18
25
|
export { Income, Location, Money, Paging, HRIS } from './hris';
|
|
19
26
|
export {
|
|
20
27
|
Individual,
|
|
21
28
|
IndividualResponse,
|
|
22
29
|
IndividualRetrieveManyParams,
|
|
23
|
-
|
|
30
|
+
IndividualResponsesPage,
|
|
24
31
|
Individuals,
|
|
25
|
-
} from './individuals
|
|
32
|
+
} from './individuals';
|
|
26
33
|
export { IndividualInDirectory, DirectoryListIndividualsParams, Directory } from './directory';
|
|
27
34
|
export {
|
|
28
35
|
PayStatement,
|
|
29
36
|
PayStatementResponse,
|
|
30
37
|
PayStatementResponseBody,
|
|
31
38
|
PayStatementRetrieveManyParams,
|
|
32
|
-
|
|
39
|
+
PayStatementResponsesPage,
|
|
33
40
|
PayStatements,
|
|
34
41
|
} from './pay-statements';
|
|
35
42
|
export { Payment, PaymentListParams, PaymentsSinglePage, Payments } from './payments';
|
|
@@ -1,34 +1,29 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from '
|
|
4
|
-
import { APIResource } from '
|
|
5
|
-
import { isRequestOptions } from '
|
|
6
|
-
import * as HRIS from '
|
|
7
|
-
import { EmploymentData } from './employment-data';
|
|
3
|
+
import * as Core from '../../core';
|
|
4
|
+
import { APIResource } from '../../resource';
|
|
5
|
+
import { isRequestOptions } from '../../core';
|
|
6
|
+
import * as HRIS from './index';
|
|
8
7
|
import * as API from './index';
|
|
9
|
-
import { ResponsesPage } from '
|
|
8
|
+
import { ResponsesPage } from '../../pagination';
|
|
10
9
|
|
|
11
10
|
export class Individuals extends APIResource {
|
|
12
|
-
employmentData: EmploymentData = new EmploymentData(this.client);
|
|
13
|
-
|
|
14
11
|
/**
|
|
15
12
|
* Read individual data, excluding income and employment data
|
|
16
13
|
*/
|
|
17
14
|
retrieveMany(
|
|
18
15
|
body?: IndividualRetrieveManyParams,
|
|
19
16
|
options?: Core.RequestOptions,
|
|
20
|
-
): Core.PagePromise<
|
|
21
|
-
retrieveMany(
|
|
22
|
-
options?: Core.RequestOptions,
|
|
23
|
-
): Core.PagePromise<IndividualResponsesResponsesPage, IndividualResponse>;
|
|
17
|
+
): Core.PagePromise<IndividualResponsesPage, IndividualResponse>;
|
|
18
|
+
retrieveMany(options?: Core.RequestOptions): Core.PagePromise<IndividualResponsesPage, IndividualResponse>;
|
|
24
19
|
retrieveMany(
|
|
25
20
|
body: IndividualRetrieveManyParams | Core.RequestOptions = {},
|
|
26
21
|
options?: Core.RequestOptions,
|
|
27
|
-
): Core.PagePromise<
|
|
22
|
+
): Core.PagePromise<IndividualResponsesPage, IndividualResponse> {
|
|
28
23
|
if (isRequestOptions(body)) {
|
|
29
24
|
return this.retrieveMany({}, body);
|
|
30
25
|
}
|
|
31
|
-
return this.getAPIList('/employer/individual',
|
|
26
|
+
return this.getAPIList('/employer/individual', IndividualResponsesPage, {
|
|
32
27
|
body,
|
|
33
28
|
method: 'post',
|
|
34
29
|
...options,
|
|
@@ -36,9 +31,9 @@ export class Individuals extends APIResource {
|
|
|
36
31
|
}
|
|
37
32
|
}
|
|
38
33
|
|
|
39
|
-
export class
|
|
34
|
+
export class IndividualResponsesPage extends ResponsesPage<IndividualResponse> {}
|
|
40
35
|
// alias so we can export it in the namespace
|
|
41
|
-
type
|
|
36
|
+
type _IndividualResponsesPage = IndividualResponsesPage;
|
|
42
37
|
|
|
43
38
|
export interface Individual {
|
|
44
39
|
/**
|
|
@@ -127,11 +122,6 @@ export namespace IndividualRetrieveManyParams {
|
|
|
127
122
|
export namespace Individuals {
|
|
128
123
|
export import Individual = API.Individual;
|
|
129
124
|
export import IndividualResponse = API.IndividualResponse;
|
|
130
|
-
export type
|
|
125
|
+
export type IndividualResponsesPage = _IndividualResponsesPage;
|
|
131
126
|
export import IndividualRetrieveManyParams = API.IndividualRetrieveManyParams;
|
|
132
|
-
|
|
133
|
-
export import EmploymentData = API.EmploymentData;
|
|
134
|
-
export import EmploymentDataResponse = API.EmploymentDataResponse;
|
|
135
|
-
export import EmploymentDataResponsesResponsesPage = API.EmploymentDataResponsesResponsesPage;
|
|
136
|
-
export import EmploymentDataRetrieveManyParams = API.EmploymentDataRetrieveManyParams;
|
|
137
127
|
}
|
|
@@ -17,8 +17,8 @@ export class PayStatements extends APIResource {
|
|
|
17
17
|
retrieveMany(
|
|
18
18
|
body: PayStatementRetrieveManyParams,
|
|
19
19
|
options?: Core.RequestOptions,
|
|
20
|
-
): Core.PagePromise<
|
|
21
|
-
return this.getAPIList('/employer/pay-statement',
|
|
20
|
+
): Core.PagePromise<PayStatementResponsesPage, PayStatementResponse> {
|
|
21
|
+
return this.getAPIList('/employer/pay-statement', PayStatementResponsesPage, {
|
|
22
22
|
body,
|
|
23
23
|
method: 'post',
|
|
24
24
|
...options,
|
|
@@ -26,9 +26,9 @@ export class PayStatements extends APIResource {
|
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
export class
|
|
29
|
+
export class PayStatementResponsesPage extends ResponsesPage<PayStatementResponse> {}
|
|
30
30
|
// alias so we can export it in the namespace
|
|
31
|
-
type
|
|
31
|
+
type _PayStatementResponsesPage = PayStatementResponsesPage;
|
|
32
32
|
|
|
33
33
|
export interface PayStatement {
|
|
34
34
|
/**
|
|
@@ -240,6 +240,6 @@ export namespace PayStatements {
|
|
|
240
240
|
export import PayStatement = API.PayStatement;
|
|
241
241
|
export import PayStatementResponse = API.PayStatementResponse;
|
|
242
242
|
export import PayStatementResponseBody = API.PayStatementResponseBody;
|
|
243
|
-
export type
|
|
243
|
+
export type PayStatementResponsesPage = _PayStatementResponsesPage;
|
|
244
244
|
export import PayStatementRetrieveManyParams = API.PayStatementRetrieveManyParams;
|
|
245
245
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '
|
|
1
|
+
export const VERSION = '5.0.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = '
|
|
1
|
+
export declare const VERSION = '5.0.0';
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '
|
|
1
|
+
export const VERSION = '5.0.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"employment-data.d.ts","sourceRoot":"","sources":["../../../src/resources/hris/individuals/employment-data.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
// File generated from our OpenAPI spec by Stainless.
|
|
3
|
-
var __createBinding =
|
|
4
|
-
(this && this.__createBinding) ||
|
|
5
|
-
(Object.create ?
|
|
6
|
-
function (o, m, k, k2) {
|
|
7
|
-
if (k2 === undefined) k2 = k;
|
|
8
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
9
|
-
if (!desc || ('get' in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
10
|
-
desc = {
|
|
11
|
-
enumerable: true,
|
|
12
|
-
get: function () {
|
|
13
|
-
return m[k];
|
|
14
|
-
},
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
Object.defineProperty(o, k2, desc);
|
|
18
|
-
}
|
|
19
|
-
: function (o, m, k, k2) {
|
|
20
|
-
if (k2 === undefined) k2 = k;
|
|
21
|
-
o[k2] = m[k];
|
|
22
|
-
});
|
|
23
|
-
var __setModuleDefault =
|
|
24
|
-
(this && this.__setModuleDefault) ||
|
|
25
|
-
(Object.create ?
|
|
26
|
-
function (o, v) {
|
|
27
|
-
Object.defineProperty(o, 'default', { enumerable: true, value: v });
|
|
28
|
-
}
|
|
29
|
-
: function (o, v) {
|
|
30
|
-
o['default'] = v;
|
|
31
|
-
});
|
|
32
|
-
var __importStar =
|
|
33
|
-
(this && this.__importStar) ||
|
|
34
|
-
function (mod) {
|
|
35
|
-
if (mod && mod.__esModule) return mod;
|
|
36
|
-
var result = {};
|
|
37
|
-
if (mod != null)
|
|
38
|
-
for (var k in mod)
|
|
39
|
-
if (k !== 'default' && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
40
|
-
__setModuleDefault(result, mod);
|
|
41
|
-
return result;
|
|
42
|
-
};
|
|
43
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
44
|
-
exports.EmploymentDataResponsesResponsesPage = exports.EmploymentData = void 0;
|
|
45
|
-
const resource_1 = require('@tryfinch/finch-api/resource');
|
|
46
|
-
const API = __importStar(require('./index.js'));
|
|
47
|
-
const pagination_1 = require('@tryfinch/finch-api/pagination');
|
|
48
|
-
class EmploymentData extends resource_1.APIResource {
|
|
49
|
-
/**
|
|
50
|
-
* Read individual employment and income data
|
|
51
|
-
*
|
|
52
|
-
* Note: Income information is returned as reported by the provider. This may not
|
|
53
|
-
* always be annualized income, but may be in units of bi-weekly, semi-monthly,
|
|
54
|
-
* daily, etc, depending on what information the provider returns.
|
|
55
|
-
*/
|
|
56
|
-
retrieveMany(body, options) {
|
|
57
|
-
return this.getAPIList('/employer/employment', EmploymentDataResponsesResponsesPage, {
|
|
58
|
-
body,
|
|
59
|
-
method: 'post',
|
|
60
|
-
...options,
|
|
61
|
-
});
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
exports.EmploymentData = EmploymentData;
|
|
65
|
-
class EmploymentDataResponsesResponsesPage extends pagination_1.ResponsesPage {}
|
|
66
|
-
exports.EmploymentDataResponsesResponsesPage = EmploymentDataResponsesResponsesPage;
|
|
67
|
-
(function (EmploymentData) {
|
|
68
|
-
EmploymentData.EmploymentData = API.EmploymentData;
|
|
69
|
-
})((EmploymentData = exports.EmploymentData || (exports.EmploymentData = {})));
|
|
70
|
-
//# sourceMappingURL=employment-data.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"employment-data.js","sourceRoot":"","sources":["../../../src/resources/hris/individuals/employment-data.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;;;;;;;;;;;;;;;;;;;;;;;;AAGrD,2DAA2D;AAE3D,gDAA+B;AAC/B,+DAA+D;AAE/D,MAAa,cAAe,SAAQ,sBAAW;IAC7C;;;;;;OAMG;IACH,YAAY,CACV,IAAsC,EACtC,OAA6B;QAE7B,OAAO,IAAI,CAAC,UAAU,CAAC,sBAAsB,EAAE,oCAAoC,EAAE;YACnF,IAAI;YACJ,MAAM,EAAE,MAAM;YACd,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;CACF;AAlBD,wCAkBC;AAED,MAAa,oCAAqC,SAAQ,0BAAqC;CAAG;AAAlG,oFAAkG;AA2JlG,WAAiB,cAAc;IACf,6BAAc,GAAG,GAAG,CAAC,cAAc,CAAC;AAIpD,CAAC,EALgB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAK9B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"employment-data.mjs","sourceRoot":"","sources":["../../../src/resources/hris/individuals/employment-data.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAG9C,EAAE,WAAW,EAAE,MAAM,8BAA8B;OAEnD,KAAK,GAAG;OACR,EAAE,aAAa,EAAE,MAAM,gCAAgC;AAE9D,MAAM,OAAO,cAAe,SAAQ,WAAW;IAC7C;;;;;;OAMG;IACH,YAAY,CACV,IAAsC,EACtC,OAA6B;QAE7B,OAAO,IAAI,CAAC,UAAU,CAAC,sBAAsB,EAAE,oCAAoC,EAAE;YACnF,IAAI;YACJ,MAAM,EAAE,MAAM;YACd,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;CACF;AAED,MAAM,OAAO,oCAAqC,SAAQ,aAAqC;CAAG;AA2JlG,WAAiB,cAAc;IACf,6BAAc,GAAG,GAAG,CAAC,cAAc,CAAC;AAIpD,CAAC,EALgB,cAAc,KAAd,cAAc,QAK9B"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export {
|
|
2
|
-
EmploymentData,
|
|
3
|
-
EmploymentDataResponse,
|
|
4
|
-
EmploymentDataRetrieveManyParams,
|
|
5
|
-
EmploymentDataResponsesResponsesPage,
|
|
6
|
-
} from './employment-data.js';
|
|
7
|
-
export {
|
|
8
|
-
Individual,
|
|
9
|
-
IndividualResponse,
|
|
10
|
-
IndividualRetrieveManyParams,
|
|
11
|
-
IndividualResponsesResponsesPage,
|
|
12
|
-
Individuals,
|
|
13
|
-
} from './individuals.js';
|
|
14
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/resources/hris/individuals/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,cAAc,EACd,sBAAsB,EACtB,gCAAgC,EAChC,oCAAoC,GACrC,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,UAAU,EACV,kBAAkB,EAClB,4BAA4B,EAC5B,gCAAgC,EAChC,WAAW,GACZ,MAAM,eAAe,CAAC"}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
// File generated from our OpenAPI spec by Stainless.
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
exports.Individuals =
|
|
5
|
-
exports.IndividualResponsesResponsesPage =
|
|
6
|
-
exports.EmploymentDataResponsesResponsesPage =
|
|
7
|
-
exports.EmploymentData =
|
|
8
|
-
void 0;
|
|
9
|
-
var employment_data_1 = require('./employment-data.js');
|
|
10
|
-
Object.defineProperty(exports, 'EmploymentData', {
|
|
11
|
-
enumerable: true,
|
|
12
|
-
get: function () {
|
|
13
|
-
return employment_data_1.EmploymentData;
|
|
14
|
-
},
|
|
15
|
-
});
|
|
16
|
-
Object.defineProperty(exports, 'EmploymentDataResponsesResponsesPage', {
|
|
17
|
-
enumerable: true,
|
|
18
|
-
get: function () {
|
|
19
|
-
return employment_data_1.EmploymentDataResponsesResponsesPage;
|
|
20
|
-
},
|
|
21
|
-
});
|
|
22
|
-
var individuals_1 = require('./individuals.js');
|
|
23
|
-
Object.defineProperty(exports, 'IndividualResponsesResponsesPage', {
|
|
24
|
-
enumerable: true,
|
|
25
|
-
get: function () {
|
|
26
|
-
return individuals_1.IndividualResponsesResponsesPage;
|
|
27
|
-
},
|
|
28
|
-
});
|
|
29
|
-
Object.defineProperty(exports, 'Individuals', {
|
|
30
|
-
enumerable: true,
|
|
31
|
-
get: function () {
|
|
32
|
-
return individuals_1.Individuals;
|
|
33
|
-
},
|
|
34
|
-
});
|
|
35
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/resources/hris/individuals/index.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAErD,wDAK2B;AAJzB,iHAAA,cAAc,OAAA;AAGd,uIAAA,oCAAoC,OAAA;AAEtC,gDAMuB;AAFrB,+HAAA,gCAAgC,OAAA;AAChC,0GAAA,WAAW,OAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/resources/hris/individuals/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAE9C,EACL,cAAc,EAGd,oCAAoC,GACrC;OACM,EAIL,gCAAgC,EAChC,WAAW,GACZ"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"individuals.d.ts","sourceRoot":"","sources":["../../../src/resources/hris/individuals/individuals.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
// File generated from our OpenAPI spec by Stainless.
|
|
3
|
-
var __createBinding =
|
|
4
|
-
(this && this.__createBinding) ||
|
|
5
|
-
(Object.create ?
|
|
6
|
-
function (o, m, k, k2) {
|
|
7
|
-
if (k2 === undefined) k2 = k;
|
|
8
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
9
|
-
if (!desc || ('get' in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
10
|
-
desc = {
|
|
11
|
-
enumerable: true,
|
|
12
|
-
get: function () {
|
|
13
|
-
return m[k];
|
|
14
|
-
},
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
Object.defineProperty(o, k2, desc);
|
|
18
|
-
}
|
|
19
|
-
: function (o, m, k, k2) {
|
|
20
|
-
if (k2 === undefined) k2 = k;
|
|
21
|
-
o[k2] = m[k];
|
|
22
|
-
});
|
|
23
|
-
var __setModuleDefault =
|
|
24
|
-
(this && this.__setModuleDefault) ||
|
|
25
|
-
(Object.create ?
|
|
26
|
-
function (o, v) {
|
|
27
|
-
Object.defineProperty(o, 'default', { enumerable: true, value: v });
|
|
28
|
-
}
|
|
29
|
-
: function (o, v) {
|
|
30
|
-
o['default'] = v;
|
|
31
|
-
});
|
|
32
|
-
var __importStar =
|
|
33
|
-
(this && this.__importStar) ||
|
|
34
|
-
function (mod) {
|
|
35
|
-
if (mod && mod.__esModule) return mod;
|
|
36
|
-
var result = {};
|
|
37
|
-
if (mod != null)
|
|
38
|
-
for (var k in mod)
|
|
39
|
-
if (k !== 'default' && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
40
|
-
__setModuleDefault(result, mod);
|
|
41
|
-
return result;
|
|
42
|
-
};
|
|
43
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
44
|
-
exports.IndividualResponsesResponsesPage = exports.Individuals = void 0;
|
|
45
|
-
const resource_1 = require('@tryfinch/finch-api/resource');
|
|
46
|
-
const core_1 = require('@tryfinch/finch-api/core');
|
|
47
|
-
const employment_data_1 = require('./employment-data.js');
|
|
48
|
-
const API = __importStar(require('./index.js'));
|
|
49
|
-
const pagination_1 = require('@tryfinch/finch-api/pagination');
|
|
50
|
-
class Individuals extends resource_1.APIResource {
|
|
51
|
-
constructor() {
|
|
52
|
-
super(...arguments);
|
|
53
|
-
this.employmentData = new employment_data_1.EmploymentData(this.client);
|
|
54
|
-
}
|
|
55
|
-
retrieveMany(body = {}, options) {
|
|
56
|
-
if ((0, core_1.isRequestOptions)(body)) {
|
|
57
|
-
return this.retrieveMany({}, body);
|
|
58
|
-
}
|
|
59
|
-
return this.getAPIList('/employer/individual', IndividualResponsesResponsesPage, {
|
|
60
|
-
body,
|
|
61
|
-
method: 'post',
|
|
62
|
-
...options,
|
|
63
|
-
});
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
exports.Individuals = Individuals;
|
|
67
|
-
class IndividualResponsesResponsesPage extends pagination_1.ResponsesPage {}
|
|
68
|
-
exports.IndividualResponsesResponsesPage = IndividualResponsesResponsesPage;
|
|
69
|
-
(function (Individuals) {
|
|
70
|
-
Individuals.EmploymentData = API.EmploymentData;
|
|
71
|
-
Individuals.EmploymentDataResponsesResponsesPage = API.EmploymentDataResponsesResponsesPage;
|
|
72
|
-
})((Individuals = exports.Individuals || (exports.Individuals = {})));
|
|
73
|
-
//# sourceMappingURL=individuals.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"individuals.js","sourceRoot":"","sources":["../../../src/resources/hris/individuals/individuals.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;;;;;;;;;;;;;;;;;;;;;;;;AAGrD,2DAA2D;AAC3D,mDAA4D;AAE5D,0DAAmD;AACnD,gDAA+B;AAC/B,+DAA+D;AAE/D,MAAa,WAAY,SAAQ,sBAAW;IAA5C;;QACE,mBAAc,GAAmB,IAAI,gCAAc,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IAyBnE,CAAC;IAbC,YAAY,CACV,OAA2D,EAAE,EAC7D,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,IAAI,CAAC,EAAE;YAC1B,OAAO,IAAI,CAAC,YAAY,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;SACpC;QACD,OAAO,IAAI,CAAC,UAAU,CAAC,sBAAsB,EAAE,gCAAgC,EAAE;YAC/E,IAAI;YACJ,MAAM,EAAE,MAAM;YACd,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;CACF;AA1BD,kCA0BC;AAED,MAAa,gCAAiC,SAAQ,0BAAiC;CAAG;AAA1F,4EAA0F;AAwF1F,WAAiB,WAAW;IAMZ,0BAAc,GAAG,GAAG,CAAC,cAAc,CAAC;IAEpC,gDAAoC,GAAG,GAAG,CAAC,oCAAoC,CAAC;AAEhG,CAAC,EAVgB,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAU3B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"individuals.mjs","sourceRoot":"","sources":["../../../src/resources/hris/individuals/individuals.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAG9C,EAAE,WAAW,EAAE,MAAM,8BAA8B;OACnD,EAAE,gBAAgB,EAAE,MAAM,0BAA0B;OAEpD,EAAE,cAAc,EAAE;OAClB,KAAK,GAAG;OACR,EAAE,aAAa,EAAE,MAAM,gCAAgC;AAE9D,MAAM,OAAO,WAAY,SAAQ,WAAW;IAA5C;;QACE,mBAAc,GAAmB,IAAI,cAAc,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IAyBnE,CAAC;IAbC,YAAY,CACV,OAA2D,EAAE,EAC7D,OAA6B;QAE7B,IAAI,gBAAgB,CAAC,IAAI,CAAC,EAAE;YAC1B,OAAO,IAAI,CAAC,YAAY,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;SACpC;QACD,OAAO,IAAI,CAAC,UAAU,CAAC,sBAAsB,EAAE,gCAAgC,EAAE;YAC/E,IAAI;YACJ,MAAM,EAAE,MAAM;YACd,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;CACF;AAED,MAAM,OAAO,gCAAiC,SAAQ,aAAiC;CAAG;AAwF1F,WAAiB,WAAW;IAMZ,0BAAc,GAAG,GAAG,CAAC,cAAc,CAAC;IAEpC,gDAAoC,GAAG,GAAG,CAAC,oCAAoC,CAAC;AAEhG,CAAC,EAVgB,WAAW,KAAX,WAAW,QAU3B"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// File generated from our OpenAPI spec by Stainless.
|
|
2
|
-
|
|
3
|
-
export {
|
|
4
|
-
EmploymentData,
|
|
5
|
-
EmploymentDataResponse,
|
|
6
|
-
EmploymentDataRetrieveManyParams,
|
|
7
|
-
EmploymentDataResponsesResponsesPage,
|
|
8
|
-
} from './employment-data';
|
|
9
|
-
export {
|
|
10
|
-
Individual,
|
|
11
|
-
IndividualResponse,
|
|
12
|
-
IndividualRetrieveManyParams,
|
|
13
|
-
IndividualResponsesResponsesPage,
|
|
14
|
-
Individuals,
|
|
15
|
-
} from './individuals';
|