-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbenefits.ts
More file actions
490 lines (415 loc) · 12.3 KB
/
benefits.ts
File metadata and controls
490 lines (415 loc) · 12.3 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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../core/resource';
import * as Shared from '../../shared';
import * as IndividualsAPI from './individuals';
import {
EnrolledIndividualBenefitResponse,
IndividualBenefit,
IndividualBenefitsSinglePage,
IndividualEnrollManyParams,
IndividualEnrolledIDsParams,
IndividualEnrolledIDsResponse,
IndividualRetrieveManyBenefitsParams,
IndividualUnenrollManyParams,
Individuals,
UnenrolledIndividualBenefitResponse,
} from './individuals';
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 Benefits extends APIResource {
individuals: IndividualsAPI.Individuals = new IndividualsAPI.Individuals(this._client);
/**
* Creates a new company-wide deduction or contribution. Please use the
* `/providers` endpoint to view available types for each provider.
*
* @example
* ```ts
* const createCompanyBenefitsResponse =
* await client.hris.benefits.create();
* ```
*/
create(
params: BenefitCreateParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<CreateCompanyBenefitsResponse> {
const { entity_ids, ...body } = params ?? {};
return this._client.post('/employer/benefits', {
query: { entity_ids },
body,
...options,
__security: { bearerAuth: true },
});
}
/**
* Lists deductions and contributions information for a given item
*
* @example
* ```ts
* const companyBenefit = await client.hris.benefits.retrieve(
* 'benefit_id',
* );
* ```
*/
retrieve(
benefitID: string,
query: BenefitRetrieveParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<CompanyBenefit> {
return this._client.get(path`/employer/benefits/${benefitID}`, {
query,
...options,
__security: { bearerAuth: true },
});
}
/**
* Updates an existing company-wide deduction or contribution
*
* @example
* ```ts
* const updateCompanyBenefitResponse =
* await client.hris.benefits.update('benefit_id');
* ```
*/
update(
benefitID: string,
params: BenefitUpdateParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<UpdateCompanyBenefitResponse> {
const { entity_ids, ...body } = params ?? {};
return this._client.post(path`/employer/benefits/${benefitID}`, {
query: { entity_ids },
body,
...options,
__security: { bearerAuth: true },
});
}
/**
* List all company-wide deductions and contributions.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const companyBenefit of client.hris.benefits.list()) {
* // ...
* }
* ```
*/
list(
query: BenefitListParams | null | undefined = {},
options?: RequestOptions,
): PagePromise<CompanyBenefitsSinglePage, CompanyBenefit> {
return this._client.getAPIList('/employer/benefits', SinglePage<CompanyBenefit>, {
query,
...options,
__security: { bearerAuth: true },
});
}
/**
* Get deductions metadata
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const supportedBenefit of client.hris.benefits.listSupportedBenefits()) {
* // ...
* }
* ```
*/
listSupportedBenefits(
query: BenefitListSupportedBenefitsParams | null | undefined = {},
options?: RequestOptions,
): PagePromise<SupportedBenefitsSinglePage, SupportedBenefit> {
return this._client.getAPIList('/employer/benefits/meta', SinglePage<SupportedBenefit>, {
query,
...options,
__security: { bearerAuth: true },
});
}
}
export type CompanyBenefitsSinglePage = SinglePage<CompanyBenefit>;
export type SupportedBenefitsSinglePage = SinglePage<SupportedBenefit>;
export type BenefitContribution =
| BenefitContribution.UnionMember0
| BenefitContribution.UnionMember1
| BenefitContribution.UnionMember2;
export namespace BenefitContribution {
export interface UnionMember0 {
/**
* Contribution amount in cents.
*/
amount: number;
/**
* Fixed contribution type.
*/
type: 'fixed';
}
export interface UnionMember1 {
/**
* Contribution amount in basis points (1/100th of a percent).
*/
amount: number;
/**
* Percentage contribution type.
*/
type: 'percent';
}
export interface UnionMember2 {
/**
* Array of tier objects defining employer match tiers based on employee
* contribution thresholds.
*/
tiers: Array<UnionMember2.Tier>;
/**
* Tiered contribution type (only valid for company_contribution).
*/
type: 'tiered';
}
export namespace UnionMember2 {
export interface Tier {
match: number;
threshold: number;
}
}
}
export interface BenefitFeaturesAndOperations {
supported_features?: SupportedBenefit;
supported_operations?: SupportPerBenefitType;
}
/**
* The frequency of the benefit deduction/contribution.
*/
export type BenefitFrequency = 'every_paycheck' | 'monthly' | 'one_time' | null;
/**
* Type of benefit.
*/
export type BenefitType =
| '457'
| '401k'
| '401k_roth'
| '401k_loan'
| '403b'
| '403b_roth'
| '457_roth'
| 'commuter'
| 'custom_post_tax'
| 'custom_pre_tax'
| 'fsa_dependent_care'
| 'fsa_medical'
| 'hsa_post'
| 'hsa_pre'
| 's125_dental'
| 's125_medical'
| 's125_vision'
| 'simple'
| 'simple_ira'
| null;
/**
* Each benefit type and their supported features. If the benefit type is not
* supported, the property will be null
*/
export interface BenefitsSupport {
commuter?: BenefitFeaturesAndOperations | null;
custom_post_tax?: BenefitFeaturesAndOperations | null;
custom_pre_tax?: BenefitFeaturesAndOperations | null;
fsa_dependent_care?: BenefitFeaturesAndOperations | null;
fsa_medical?: BenefitFeaturesAndOperations | null;
hsa_post?: BenefitFeaturesAndOperations | null;
hsa_pre?: BenefitFeaturesAndOperations | null;
s125_dental?: BenefitFeaturesAndOperations | null;
s125_medical?: BenefitFeaturesAndOperations | null;
s125_vision?: BenefitFeaturesAndOperations | null;
simple?: BenefitFeaturesAndOperations | null;
simple_ira?: BenefitFeaturesAndOperations | null;
[k: string]: BenefitFeaturesAndOperations | null | undefined;
}
export interface CompanyBenefit {
/**
* The id of the benefit.
*/
benefit_id: string;
description: string | null;
/**
* The frequency of the benefit deduction/contribution.
*/
frequency: BenefitFrequency | null;
/**
* Type of benefit.
*/
type: BenefitType | null;
/**
* The company match for this benefit.
*/
company_contribution?: CompanyBenefit.CompanyContribution | null;
}
export namespace CompanyBenefit {
/**
* The company match for this benefit.
*/
export interface CompanyContribution {
tiers: Array<CompanyContribution.Tier>;
type: 'match';
}
export namespace CompanyContribution {
export interface Tier {
match: number;
threshold: number;
}
}
}
export interface CreateCompanyBenefitsResponse {
/**
* The id of the benefit.
*/
benefit_id: string;
job_id: string;
}
export interface SupportPerBenefitType {
company_benefits?: Shared.OperationSupportMatrix;
individual_benefits?: Shared.OperationSupportMatrix;
}
export interface SupportedBenefit {
/**
* Whether the provider supports an annual maximum for this benefit.
*/
annual_maximum: boolean | null;
/**
* Supported contribution types. An empty array indicates contributions are not
* supported.
*/
company_contribution: Array<'fixed' | 'percent' | 'tiered' | null> | null;
description: string | null;
/**
* Supported deduction types. An empty array indicates deductions are not
* supported.
*/
employee_deduction: Array<'fixed' | 'percent' | null> | null;
/**
* The list of frequencies supported by the provider for this benefit
*/
frequencies: Array<BenefitFrequency | null>;
/**
* Whether the provider supports catch up for this benefit. This field will only be
* true for retirement benefits.
*/
catch_up?: boolean | null;
/**
* Whether the provider supports HSA contribution limits. Empty if this feature is
* not supported for the benefit. This array only has values for HSA benefits.
*/
hsa_contribution_limit?: Array<'family' | 'individual' | null> | null;
}
export interface UpdateCompanyBenefitResponse {
/**
* The id of the benefit.
*/
benefit_id: string;
job_id: string;
}
/**
* @deprecated use `BenefitContribution` instead
*/
export type BenfitContribution = BenefitContribution | null;
export interface BenefitCreateParams {
/**
* Query param: The entity IDs to specify which entities' data to access.
*/
entity_ids?: Array<string>;
/**
* Body param: The company match for this benefit.
*/
company_contribution?: BenefitCreateParams.CompanyContribution | null;
/**
* Body param: Name of the benefit as it appears in the provider and pay
* statements. Recommend limiting this to <30 characters due to limitations in
* specific providers (e.g. Justworks).
*/
description?: string;
/**
* Body param: The frequency of the benefit deduction/contribution.
*/
frequency?: BenefitFrequency | null;
/**
* Body param: Type of benefit.
*/
type?: BenefitType | null;
}
export namespace BenefitCreateParams {
/**
* The company match for this benefit.
*/
export interface CompanyContribution {
tiers: Array<CompanyContribution.Tier>;
type: 'match';
}
export namespace CompanyContribution {
export interface Tier {
match: number;
threshold: number;
}
}
}
export interface BenefitRetrieveParams {
/**
* The entity IDs to specify which entities' data to access.
*/
entity_ids?: Array<string>;
}
export interface BenefitUpdateParams {
/**
* Query param: The entity IDs to specify which entities' data to access.
*/
entity_ids?: Array<string>;
/**
* Body param: Updated name or description.
*/
description?: string;
}
export interface BenefitListParams {
/**
* The entity IDs to specify which entities' data to access.
*/
entity_ids?: Array<string>;
}
export interface BenefitListSupportedBenefitsParams {
/**
* The entity IDs to specify which entities' data to access.
*/
entity_ids?: Array<string>;
}
Benefits.Individuals = Individuals;
export declare namespace Benefits {
export {
type BenefitContribution as BenefitContribution,
type BenefitFeaturesAndOperations as BenefitFeaturesAndOperations,
type BenefitFrequency as BenefitFrequency,
type BenefitType as BenefitType,
type BenefitsSupport as BenefitsSupport,
type CompanyBenefit as CompanyBenefit,
type CreateCompanyBenefitsResponse as CreateCompanyBenefitsResponse,
type SupportPerBenefitType as SupportPerBenefitType,
type SupportedBenefit as SupportedBenefit,
type UpdateCompanyBenefitResponse as UpdateCompanyBenefitResponse,
type BenfitContribution as BenfitContribution,
type CompanyBenefitsSinglePage as CompanyBenefitsSinglePage,
type SupportedBenefitsSinglePage as SupportedBenefitsSinglePage,
type BenefitCreateParams as BenefitCreateParams,
type BenefitRetrieveParams as BenefitRetrieveParams,
type BenefitUpdateParams as BenefitUpdateParams,
type BenefitListParams as BenefitListParams,
type BenefitListSupportedBenefitsParams as BenefitListSupportedBenefitsParams,
};
export {
Individuals as Individuals,
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,
};
}