-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindividuals.ts
More file actions
404 lines (347 loc) · 10.9 KB
/
individuals.ts
File metadata and controls
404 lines (347 loc) · 10.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../core/resource';
import { APIPromise } from '../../../core/api-promise';
import { PagePromise, SinglePage } from '../../../core/pagination';
import { RequestOptions } from '../../../internal/request-options';
import { path } from '../../../internal/utils/path';
export class Individuals extends APIResource {
/**
* Enroll an individual into a deduction or contribution. This is an overwrite
* operation. If the employee is already enrolled, the enrollment amounts will be
* adjusted. Making the same request multiple times will not create new
* enrollments, but will continue to set the state of the existing enrollment.
*
* @example
* ```ts
* const enrolledIndividualBenefitResponse =
* await client.hris.benefits.individuals.enrollMany(
* 'benefit_id',
* );
* ```
*/
enrollMany(
benefitID: string,
params: IndividualEnrollManyParams | null | undefined = undefined,
options?: RequestOptions,
): APIPromise<EnrolledIndividualBenefitResponse> {
const { entity_ids, individuals } = params ?? {};
return this._client.post(path`/employer/benefits/${benefitID}/individuals`, {
query: { entity_ids },
body: individuals,
...options,
__security: { bearerAuth: true },
});
}
/**
* Lists individuals currently enrolled in a given deduction.
*
* @example
* ```ts
* const response =
* await client.hris.benefits.individuals.enrolledIDs(
* 'benefit_id',
* );
* ```
*/
enrolledIDs(
benefitID: string,
query: IndividualEnrolledIDsParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<IndividualEnrolledIDsResponse> {
return this._client.get(path`/employer/benefits/${benefitID}/enrolled`, {
query,
...options,
__security: { bearerAuth: true },
});
}
/**
* Get enrollment information for the given individuals.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const individualBenefit of client.hris.benefits.individuals.retrieveManyBenefits(
* 'benefit_id',
* )) {
* // ...
* }
* ```
*/
retrieveManyBenefits(
benefitID: string,
query: IndividualRetrieveManyBenefitsParams | null | undefined = {},
options?: RequestOptions,
): PagePromise<IndividualBenefitsSinglePage, IndividualBenefit> {
return this._client.getAPIList(
path`/employer/benefits/${benefitID}/individuals`,
SinglePage<IndividualBenefit>,
{ query, ...options, __security: { bearerAuth: true } },
);
}
/**
* Unenroll individuals from a deduction or contribution
*
* @example
* ```ts
* const unenrolledIndividualBenefitResponse =
* await client.hris.benefits.individuals.unenrollMany(
* 'benefit_id',
* );
* ```
*/
unenrollMany(
benefitID: string,
params: IndividualUnenrollManyParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<UnenrolledIndividualBenefitResponse> {
const { entity_ids, ...body } = params ?? {};
return this._client.delete(path`/employer/benefits/${benefitID}/individuals`, {
query: { entity_ids },
body,
...options,
__security: { bearerAuth: true },
});
}
}
export type IndividualBenefitsSinglePage = SinglePage<IndividualBenefit>;
export interface EnrolledIndividualBenefitResponse {
job_id: string;
}
export interface IndividualBenefit {
body: IndividualBenefit.UnionMember0 | IndividualBenefit.BatchError;
code: number;
individual_id: string;
}
export namespace IndividualBenefit {
export interface UnionMember0 {
/**
* If the benefit supports annual maximum, the amount in cents for this individual.
*/
annual_maximum: number | null;
/**
* If the benefit supports catch up (401k, 403b, etc.), whether catch up is enabled
* for this individual.
*/
catch_up: boolean | null;
/**
* Company contribution configuration. Supports fixed amounts (in cents),
* percentage-based contributions (in basis points where 100 = 1%), or tiered
* matching structures.
*/
company_contribution:
| UnionMember0.UnionMember0
| UnionMember0.UnionMember1
| UnionMember0.UnionMember2
| null;
/**
* Employee deduction configuration. Supports both fixed amounts (in cents) and
* percentage-based contributions (in basis points where 100 = 1%).
*/
employee_deduction: UnionMember0.UnionMember0 | UnionMember0.UnionMember1 | null;
/**
* Type for HSA contribution limit if the benefit is a HSA.
*/
hsa_contribution_limit?: 'individual' | 'family' | null;
}
export namespace UnionMember0 {
export interface UnionMember0 {
/**
* Contribution amount in cents (for type=fixed) or basis points (for type=percent,
* where 100 = 1%). Not used for type=tiered.
*/
amount: number;
/**
* Contribution type. Supported values: "fixed" (amount in cents), "percent"
* (amount in basis points), or "tiered" (multi-tier matching).
*/
type: 'fixed';
}
export interface UnionMember1 {
/**
* Contribution amount in cents (for type=fixed) or basis points (for type=percent,
* where 100 = 1%). Not used for type=tiered.
*/
amount: number;
/**
* Contribution type. Supported values: "fixed" (amount in cents), "percent"
* (amount in basis points), or "tiered" (multi-tier matching).
*/
type: 'percent';
}
export interface UnionMember2 {
/**
* Array of tier objects defining employer match tiers based on employee
* contribution thresholds. Required when type=tiered.
*/
tiers: Array<UnionMember2.Tier>;
/**
* Contribution type. Supported values: "fixed" (amount in cents), "percent"
* (amount in basis points), or "tiered" (multi-tier matching).
*/
type: 'tiered';
}
export namespace UnionMember2 {
export interface Tier {
match: number;
threshold: number;
}
}
export interface UnionMember0 {
/**
* Contribution amount in cents (for type=fixed) or basis points (for type=percent,
* where 100 = 1%).
*/
amount: number;
/**
* Contribution type. Supported values: "fixed" (amount in cents) or "percent"
* (amount in basis points).
*/
type: 'fixed';
}
export interface UnionMember1 {
/**
* Contribution amount in cents (for type=fixed) or basis points (for type=percent,
* where 100 = 1%).
*/
amount: number;
/**
* Contribution type. Supported values: "fixed" (amount in cents) or "percent"
* (amount in basis points).
*/
type: 'percent';
}
}
export interface BatchError {
code: number;
message: string;
name: string;
finch_code?: string;
}
}
export interface UnenrolledIndividualBenefitResponse {
job_id: string;
}
export interface IndividualEnrolledIDsResponse {
/**
* The id of the benefit.
*/
benefit_id: string;
individual_ids: Array<string>;
}
export interface IndividualEnrollManyParams {
/**
* Query param: The entity IDs to specify which entities' data to access.
*/
entity_ids?: Array<string>;
/**
* Body param: Array of the individual_id to enroll and a configuration object.
*/
individuals?: Array<IndividualEnrollManyParams.Individual>;
}
export namespace IndividualEnrollManyParams {
export interface Individual {
configuration?: Individual.Configuration;
/**
* Finch id (uuidv4) for the individual to enroll
*/
individual_id?: string;
}
export namespace Individual {
export interface Configuration {
/**
* For HSA benefits only - whether the contribution limit is for an individual or
* family
*/
annual_contribution_limit?: 'individual' | 'family';
/**
* Maximum annual amount in cents
*/
annual_maximum?: number | null;
/**
* For retirement benefits only - whether catch up contributions are enabled
*/
catch_up?: boolean;
company_contribution?: Configuration.CompanyContribution;
/**
* The date the enrollment will take effect
*/
effective_date?: string;
employee_deduction?: Configuration.EmployeeDeduction;
}
export namespace Configuration {
export interface CompanyContribution {
/**
* Amount in cents for fixed type or basis points (1/100th of a percent) for
* percent type
*/
amount?: number;
/**
* Array of tier objects for tiered contribution matching (required when type is
* tiered)
*/
tiers?: Array<CompanyContribution.Tier>;
type?: 'fixed' | 'percent' | 'tiered';
}
export namespace CompanyContribution {
export interface Tier {
/**
* The employer match percentage in basis points (0-10000 = 0-100%)
*/
match: number;
/**
* The employee contribution threshold in basis points (0-10000 = 0-100%)
*/
threshold: number;
}
}
export interface EmployeeDeduction {
/**
* Amount in cents for fixed type or basis points (1/100th of a percent) for
* percent type
*/
amount?: number;
type?: 'fixed' | 'percent';
}
}
}
}
export interface IndividualEnrolledIDsParams {
/**
* The entity IDs to specify which entities' data to access.
*/
entity_ids?: Array<string>;
}
export interface IndividualRetrieveManyBenefitsParams {
/**
* The entity IDs to specify which entities' data to access.
*/
entity_ids?: Array<string>;
/**
* comma-delimited list of stable Finch uuids for each individual. If empty,
* defaults to all individuals
*/
individual_ids?: string;
}
export interface IndividualUnenrollManyParams {
/**
* Query param: The entity IDs to specify which entities' data to access.
*/
entity_ids?: Array<string>;
/**
* Body param: Array of individual_ids to unenroll.
*/
individual_ids?: Array<string>;
}
export declare namespace Individuals {
export {
type EnrolledIndividualBenefitResponse as EnrolledIndividualBenefitResponse,
type IndividualBenefit as IndividualBenefit,
type UnenrolledIndividualBenefitResponse as UnenrolledIndividualBenefitResponse,
type IndividualEnrolledIDsResponse as IndividualEnrolledIDsResponse,
type IndividualBenefitsSinglePage as IndividualBenefitsSinglePage,
type IndividualEnrollManyParams as IndividualEnrollManyParams,
type IndividualEnrolledIDsParams as IndividualEnrolledIDsParams,
type IndividualRetrieveManyBenefitsParams as IndividualRetrieveManyBenefitsParams,
type IndividualUnenrollManyParams as IndividualUnenrollManyParams,
};
}