@rippling/rippling-sdk 0.2.0-alpha.97 → 0.2.0-alpha.98
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/client.d.mts +25 -4
- package/client.d.mts.map +1 -1
- package/client.d.ts +25 -4
- package/client.d.ts.map +1 -1
- package/client.js +21 -0
- package/client.js.map +1 -1
- package/client.mjs +22 -1
- package/client.mjs.map +1 -1
- package/package.json +2 -1
- package/resources/index.d.mts +5 -2
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +5 -2
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +7 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +4 -1
- package/resources/index.mjs.map +1 -1
- package/resources/metadata/index.d.mts +1 -1
- package/resources/metadata/index.d.mts.map +1 -1
- package/resources/metadata/index.d.ts +1 -1
- package/resources/metadata/index.d.ts.map +1 -1
- package/resources/metadata/index.js.map +1 -1
- package/resources/metadata/index.mjs +1 -1
- package/resources/metadata/index.mjs.map +1 -1
- package/resources/metadata/metadata.d.mts +47 -1
- package/resources/metadata/metadata.d.mts.map +1 -1
- package/resources/metadata/metadata.d.ts +47 -1
- package/resources/metadata/metadata.d.ts.map +1 -1
- package/resources/metadata/metadata.js +15 -0
- package/resources/metadata/metadata.js.map +1 -1
- package/resources/metadata/metadata.mjs +15 -0
- package/resources/metadata/metadata.mjs.map +1 -1
- package/resources/sandboxes.d.mts +224 -1
- package/resources/sandboxes.d.mts.map +1 -1
- package/resources/sandboxes.d.ts +224 -1
- package/resources/sandboxes.d.ts.map +1 -1
- package/resources/sandboxes.js +6 -0
- package/resources/sandboxes.js.map +1 -1
- package/resources/sandboxes.mjs +6 -0
- package/resources/sandboxes.mjs.map +1 -1
- package/resources/sites.d.mts +3 -0
- package/resources/sites.d.mts.map +1 -1
- package/resources/sites.d.ts +3 -0
- package/resources/sites.d.ts.map +1 -1
- package/resources/sites.js +3 -0
- package/resources/sites.js.map +1 -1
- package/resources/sites.mjs +3 -0
- package/resources/sites.mjs.map +1 -1
- package/resources/variable-compensation-payout-labels.d.mts +155 -0
- package/resources/variable-compensation-payout-labels.d.mts.map +1 -0
- package/resources/variable-compensation-payout-labels.d.ts +155 -0
- package/resources/variable-compensation-payout-labels.d.ts.map +1 -0
- package/resources/variable-compensation-payout-labels.js +41 -0
- package/resources/variable-compensation-payout-labels.js.map +1 -0
- package/resources/variable-compensation-payout-labels.mjs +37 -0
- package/resources/variable-compensation-payout-labels.mjs.map +1 -0
- package/resources/variable-compensation-payout-types.d.mts +334 -0
- package/resources/variable-compensation-payout-types.d.mts.map +1 -0
- package/resources/variable-compensation-payout-types.d.ts +334 -0
- package/resources/variable-compensation-payout-types.d.ts.map +1 -0
- package/resources/variable-compensation-payout-types.js +52 -0
- package/resources/variable-compensation-payout-types.js.map +1 -0
- package/resources/variable-compensation-payout-types.mjs +48 -0
- package/resources/variable-compensation-payout-types.mjs.map +1 -0
- package/resources/variable-compensation-payout-writes.d.mts +6 -17
- package/resources/variable-compensation-payout-writes.d.mts.map +1 -1
- package/resources/variable-compensation-payout-writes.d.ts +6 -17
- package/resources/variable-compensation-payout-writes.d.ts.map +1 -1
- package/resources/variable-compensation-payout-writes.js +2 -1
- package/resources/variable-compensation-payout-writes.js.map +1 -1
- package/resources/variable-compensation-payout-writes.mjs +2 -1
- package/resources/variable-compensation-payout-writes.mjs.map +1 -1
- package/resources/variable-compensation-payouts.d.mts +501 -0
- package/resources/variable-compensation-payouts.d.mts.map +1 -0
- package/resources/variable-compensation-payouts.d.ts +501 -0
- package/resources/variable-compensation-payouts.d.ts.map +1 -0
- package/resources/variable-compensation-payouts.js +41 -0
- package/resources/variable-compensation-payouts.js.map +1 -0
- package/resources/variable-compensation-payouts.mjs +37 -0
- package/resources/variable-compensation-payouts.mjs.map +1 -0
- package/src/client.ts +94 -1
- package/src/resources/index.ts +38 -1
- package/src/resources/metadata/index.ts +7 -1
- package/src/resources/metadata/metadata.ts +54 -0
- package/src/resources/sandboxes.ts +265 -0
- package/src/resources/sites.ts +3 -0
- package/src/resources/variable-compensation-payout-labels.ts +227 -0
- package/src/resources/variable-compensation-payout-types.ts +440 -0
- package/src/resources/variable-compensation-payout-writes.ts +6 -20
- package/src/resources/variable-compensation-payouts.ts +702 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.mjs";
|
|
2
|
+
import * as BusinessPartnersAPI from "./business-partners.mjs";
|
|
3
|
+
import { APIPromise } from "../core/api-promise.mjs";
|
|
4
|
+
import { PageCursorURL, PagePromise } from "../core/pagination.mjs";
|
|
5
|
+
import { RequestOptions } from "../internal/request-options.mjs";
|
|
6
|
+
/**
|
|
7
|
+
* Compensation associated with workers
|
|
8
|
+
*/
|
|
9
|
+
export declare class VariableCompensationPayoutTypes extends APIResource {
|
|
10
|
+
/**
|
|
11
|
+
* A list of variable compensation payout types.
|
|
12
|
+
*
|
|
13
|
+
* - Requires: `API Tier 1`
|
|
14
|
+
*/
|
|
15
|
+
list(options?: RequestOptions): PagePromise<VariableCompensationPayoutTypeListResponsesPageCursorURL, VariableCompensationPayoutTypeListResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Create a custom payout type. Omit key; the server assigns one. Use PATCH
|
|
18
|
+
* /variable-compensation-payout-types/{key}/ to update.
|
|
19
|
+
*/
|
|
20
|
+
create(body: VariableCompensationPayoutTypeCreateParams, options?: RequestOptions): APIPromise<VariableCompensationPayoutTypeCreateResponse>;
|
|
21
|
+
/**
|
|
22
|
+
* Retrieve a specific variable compensation payout type by key.
|
|
23
|
+
*/
|
|
24
|
+
retrieve(id: string, options?: RequestOptions): APIPromise<VariableCompensationPayoutTypeRetrieveResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* Update a custom payout type's display name or per-entity earning mappings.
|
|
27
|
+
*/
|
|
28
|
+
update(id: string, body: VariableCompensationPayoutTypeUpdateParams, options?: RequestOptions): APIPromise<VariableCompensationPayoutTypeUpdateResponse>;
|
|
29
|
+
/**
|
|
30
|
+
* Delete a custom payout type. Built-in payout types cannot be deleted. Returns
|
|
31
|
+
* 200 with a null body.
|
|
32
|
+
*/
|
|
33
|
+
delete(id: string, options?: RequestOptions): APIPromise<void>;
|
|
34
|
+
}
|
|
35
|
+
export type VariableCompensationPayoutTypeListResponsesPageCursorURL = PageCursorURL<VariableCompensationPayoutTypeListResponse>;
|
|
36
|
+
export interface VariableCompensationPayoutTypeListResponse {
|
|
37
|
+
/**
|
|
38
|
+
* Unique identifier of the payout type. Same as key.
|
|
39
|
+
*/
|
|
40
|
+
id: string;
|
|
41
|
+
/**
|
|
42
|
+
* Display name of the payout type.
|
|
43
|
+
*/
|
|
44
|
+
display_name: string;
|
|
45
|
+
/**
|
|
46
|
+
* Whether this is a built-in payout type.
|
|
47
|
+
*/
|
|
48
|
+
is_system: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Stable payout type key assigned by the server on create.
|
|
51
|
+
*/
|
|
52
|
+
key: string;
|
|
53
|
+
/**
|
|
54
|
+
* ID of the worker who created this custom payout type.
|
|
55
|
+
*/
|
|
56
|
+
created_by?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Per-entity earning code mappings.
|
|
59
|
+
*/
|
|
60
|
+
mappings?: Array<VariableCompensationPayoutTypeListResponse.Mapping>;
|
|
61
|
+
}
|
|
62
|
+
export declare namespace VariableCompensationPayoutTypeListResponse {
|
|
63
|
+
interface Mapping {
|
|
64
|
+
/**
|
|
65
|
+
* ID of the payroll entity this mapping applies to.
|
|
66
|
+
*/
|
|
67
|
+
entity_id: string;
|
|
68
|
+
/**
|
|
69
|
+
* Mapping health status.
|
|
70
|
+
*/
|
|
71
|
+
health: string;
|
|
72
|
+
/**
|
|
73
|
+
* Mapped earning code for the payroll entity.
|
|
74
|
+
*/
|
|
75
|
+
earning_code?: string;
|
|
76
|
+
/**
|
|
77
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
78
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
79
|
+
* this field.
|
|
80
|
+
*/
|
|
81
|
+
earning_display_name?: string;
|
|
82
|
+
/**
|
|
83
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
84
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
85
|
+
* this field.
|
|
86
|
+
*/
|
|
87
|
+
entity_name?: string;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
export interface VariableCompensationPayoutTypeCreateResponse {
|
|
91
|
+
/**
|
|
92
|
+
* Unique identifier of the payout type. Same as key.
|
|
93
|
+
*/
|
|
94
|
+
id: string;
|
|
95
|
+
/**
|
|
96
|
+
* Display name of the payout type.
|
|
97
|
+
*/
|
|
98
|
+
display_name: string;
|
|
99
|
+
/**
|
|
100
|
+
* Whether this is a built-in payout type.
|
|
101
|
+
*/
|
|
102
|
+
is_system: boolean;
|
|
103
|
+
/**
|
|
104
|
+
* Stable payout type key assigned by the server on create.
|
|
105
|
+
*/
|
|
106
|
+
key: string;
|
|
107
|
+
/**
|
|
108
|
+
* ID of the worker who created this custom payout type.
|
|
109
|
+
*/
|
|
110
|
+
created_by?: string;
|
|
111
|
+
/**
|
|
112
|
+
* Per-entity earning code mappings.
|
|
113
|
+
*/
|
|
114
|
+
mappings?: Array<VariableCompensationPayoutTypeCreateResponse.Mapping>;
|
|
115
|
+
}
|
|
116
|
+
export declare namespace VariableCompensationPayoutTypeCreateResponse {
|
|
117
|
+
interface Mapping {
|
|
118
|
+
/**
|
|
119
|
+
* ID of the payroll entity this mapping applies to.
|
|
120
|
+
*/
|
|
121
|
+
entity_id: string;
|
|
122
|
+
/**
|
|
123
|
+
* Mapping health status.
|
|
124
|
+
*/
|
|
125
|
+
health: string;
|
|
126
|
+
/**
|
|
127
|
+
* Mapped earning code for the payroll entity.
|
|
128
|
+
*/
|
|
129
|
+
earning_code?: string;
|
|
130
|
+
/**
|
|
131
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
132
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
133
|
+
* this field.
|
|
134
|
+
*/
|
|
135
|
+
earning_display_name?: string;
|
|
136
|
+
/**
|
|
137
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
138
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
139
|
+
* this field.
|
|
140
|
+
*/
|
|
141
|
+
entity_name?: string;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Meta information for the response.
|
|
146
|
+
*/
|
|
147
|
+
export interface VariableCompensationPayoutTypeRetrieveResponse extends BusinessPartnersAPI.Meta {
|
|
148
|
+
/**
|
|
149
|
+
* Unique identifier of the payout type. Same as key.
|
|
150
|
+
*/
|
|
151
|
+
id: string;
|
|
152
|
+
/**
|
|
153
|
+
* Display name of the payout type.
|
|
154
|
+
*/
|
|
155
|
+
display_name: string;
|
|
156
|
+
/**
|
|
157
|
+
* Whether this is a built-in payout type.
|
|
158
|
+
*/
|
|
159
|
+
is_system: boolean;
|
|
160
|
+
/**
|
|
161
|
+
* Stable payout type key assigned by the server on create.
|
|
162
|
+
*/
|
|
163
|
+
key: string;
|
|
164
|
+
/**
|
|
165
|
+
* ID of the worker who created this custom payout type.
|
|
166
|
+
*/
|
|
167
|
+
created_by?: string;
|
|
168
|
+
/**
|
|
169
|
+
* Per-entity earning code mappings.
|
|
170
|
+
*/
|
|
171
|
+
mappings?: Array<VariableCompensationPayoutTypeRetrieveResponse.Mapping>;
|
|
172
|
+
}
|
|
173
|
+
export declare namespace VariableCompensationPayoutTypeRetrieveResponse {
|
|
174
|
+
interface Mapping {
|
|
175
|
+
/**
|
|
176
|
+
* ID of the payroll entity this mapping applies to.
|
|
177
|
+
*/
|
|
178
|
+
entity_id: string;
|
|
179
|
+
/**
|
|
180
|
+
* Mapping health status.
|
|
181
|
+
*/
|
|
182
|
+
health: string;
|
|
183
|
+
/**
|
|
184
|
+
* Mapped earning code for the payroll entity.
|
|
185
|
+
*/
|
|
186
|
+
earning_code?: string;
|
|
187
|
+
/**
|
|
188
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
189
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
190
|
+
* this field.
|
|
191
|
+
*/
|
|
192
|
+
earning_display_name?: string;
|
|
193
|
+
/**
|
|
194
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
195
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
196
|
+
* this field.
|
|
197
|
+
*/
|
|
198
|
+
entity_name?: string;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
export interface VariableCompensationPayoutTypeUpdateResponse {
|
|
202
|
+
/**
|
|
203
|
+
* Unique identifier of the payout type. Same as key.
|
|
204
|
+
*/
|
|
205
|
+
id: string;
|
|
206
|
+
/**
|
|
207
|
+
* Display name of the payout type.
|
|
208
|
+
*/
|
|
209
|
+
display_name: string;
|
|
210
|
+
/**
|
|
211
|
+
* Whether this is a built-in payout type.
|
|
212
|
+
*/
|
|
213
|
+
is_system: boolean;
|
|
214
|
+
/**
|
|
215
|
+
* Stable payout type key assigned by the server on create.
|
|
216
|
+
*/
|
|
217
|
+
key: string;
|
|
218
|
+
/**
|
|
219
|
+
* ID of the worker who created this custom payout type.
|
|
220
|
+
*/
|
|
221
|
+
created_by?: string;
|
|
222
|
+
/**
|
|
223
|
+
* Per-entity earning code mappings.
|
|
224
|
+
*/
|
|
225
|
+
mappings?: Array<VariableCompensationPayoutTypeUpdateResponse.Mapping>;
|
|
226
|
+
}
|
|
227
|
+
export declare namespace VariableCompensationPayoutTypeUpdateResponse {
|
|
228
|
+
interface Mapping {
|
|
229
|
+
/**
|
|
230
|
+
* ID of the payroll entity this mapping applies to.
|
|
231
|
+
*/
|
|
232
|
+
entity_id: string;
|
|
233
|
+
/**
|
|
234
|
+
* Mapping health status.
|
|
235
|
+
*/
|
|
236
|
+
health: string;
|
|
237
|
+
/**
|
|
238
|
+
* Mapped earning code for the payroll entity.
|
|
239
|
+
*/
|
|
240
|
+
earning_code?: string;
|
|
241
|
+
/**
|
|
242
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
243
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
244
|
+
* this field.
|
|
245
|
+
*/
|
|
246
|
+
earning_display_name?: string;
|
|
247
|
+
/**
|
|
248
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
249
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
250
|
+
* this field.
|
|
251
|
+
*/
|
|
252
|
+
entity_name?: string;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
export interface VariableCompensationPayoutTypeCreateParams {
|
|
256
|
+
/**
|
|
257
|
+
* Display name of the payout type.
|
|
258
|
+
*/
|
|
259
|
+
display_name: string;
|
|
260
|
+
/**
|
|
261
|
+
* Per-entity earning code mappings.
|
|
262
|
+
*/
|
|
263
|
+
mappings?: Array<VariableCompensationPayoutTypeCreateParams.Mapping>;
|
|
264
|
+
}
|
|
265
|
+
export declare namespace VariableCompensationPayoutTypeCreateParams {
|
|
266
|
+
interface Mapping {
|
|
267
|
+
/**
|
|
268
|
+
* ID of the payroll entity this mapping applies to.
|
|
269
|
+
*/
|
|
270
|
+
entity_id: string;
|
|
271
|
+
/**
|
|
272
|
+
* Mapping health status.
|
|
273
|
+
*/
|
|
274
|
+
health: string;
|
|
275
|
+
/**
|
|
276
|
+
* Mapped earning code for the payroll entity.
|
|
277
|
+
*/
|
|
278
|
+
earning_code?: string;
|
|
279
|
+
/**
|
|
280
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
281
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
282
|
+
* this field.
|
|
283
|
+
*/
|
|
284
|
+
earning_display_name?: string;
|
|
285
|
+
/**
|
|
286
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
287
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
288
|
+
* this field.
|
|
289
|
+
*/
|
|
290
|
+
entity_name?: string;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
export interface VariableCompensationPayoutTypeUpdateParams {
|
|
294
|
+
/**
|
|
295
|
+
* Display name of the payout type.
|
|
296
|
+
*/
|
|
297
|
+
display_name: string;
|
|
298
|
+
/**
|
|
299
|
+
* Per-entity earning code mappings.
|
|
300
|
+
*/
|
|
301
|
+
mappings?: Array<VariableCompensationPayoutTypeUpdateParams.Mapping>;
|
|
302
|
+
}
|
|
303
|
+
export declare namespace VariableCompensationPayoutTypeUpdateParams {
|
|
304
|
+
interface Mapping {
|
|
305
|
+
/**
|
|
306
|
+
* ID of the payroll entity this mapping applies to.
|
|
307
|
+
*/
|
|
308
|
+
entity_id: string;
|
|
309
|
+
/**
|
|
310
|
+
* Mapping health status.
|
|
311
|
+
*/
|
|
312
|
+
health: string;
|
|
313
|
+
/**
|
|
314
|
+
* Mapped earning code for the payroll entity.
|
|
315
|
+
*/
|
|
316
|
+
earning_code?: string;
|
|
317
|
+
/**
|
|
318
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
319
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
320
|
+
* this field.
|
|
321
|
+
*/
|
|
322
|
+
earning_display_name?: string;
|
|
323
|
+
/**
|
|
324
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
325
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
326
|
+
* this field.
|
|
327
|
+
*/
|
|
328
|
+
entity_name?: string;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
export declare namespace VariableCompensationPayoutTypes {
|
|
332
|
+
export { type VariableCompensationPayoutTypeListResponse as VariableCompensationPayoutTypeListResponse, type VariableCompensationPayoutTypeCreateResponse as VariableCompensationPayoutTypeCreateResponse, type VariableCompensationPayoutTypeRetrieveResponse as VariableCompensationPayoutTypeRetrieveResponse, type VariableCompensationPayoutTypeUpdateResponse as VariableCompensationPayoutTypeUpdateResponse, type VariableCompensationPayoutTypeListResponsesPageCursorURL as VariableCompensationPayoutTypeListResponsesPageCursorURL, type VariableCompensationPayoutTypeCreateParams as VariableCompensationPayoutTypeCreateParams, type VariableCompensationPayoutTypeUpdateParams as VariableCompensationPayoutTypeUpdateParams, };
|
|
333
|
+
}
|
|
334
|
+
//# sourceMappingURL=variable-compensation-payout-types.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"variable-compensation-payout-types.d.mts","sourceRoot":"","sources":["../src/resources/variable-compensation-payout-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.js";
|
|
2
|
+
import * as BusinessPartnersAPI from "./business-partners.js";
|
|
3
|
+
import { APIPromise } from "../core/api-promise.js";
|
|
4
|
+
import { PageCursorURL, PagePromise } from "../core/pagination.js";
|
|
5
|
+
import { RequestOptions } from "../internal/request-options.js";
|
|
6
|
+
/**
|
|
7
|
+
* Compensation associated with workers
|
|
8
|
+
*/
|
|
9
|
+
export declare class VariableCompensationPayoutTypes extends APIResource {
|
|
10
|
+
/**
|
|
11
|
+
* A list of variable compensation payout types.
|
|
12
|
+
*
|
|
13
|
+
* - Requires: `API Tier 1`
|
|
14
|
+
*/
|
|
15
|
+
list(options?: RequestOptions): PagePromise<VariableCompensationPayoutTypeListResponsesPageCursorURL, VariableCompensationPayoutTypeListResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Create a custom payout type. Omit key; the server assigns one. Use PATCH
|
|
18
|
+
* /variable-compensation-payout-types/{key}/ to update.
|
|
19
|
+
*/
|
|
20
|
+
create(body: VariableCompensationPayoutTypeCreateParams, options?: RequestOptions): APIPromise<VariableCompensationPayoutTypeCreateResponse>;
|
|
21
|
+
/**
|
|
22
|
+
* Retrieve a specific variable compensation payout type by key.
|
|
23
|
+
*/
|
|
24
|
+
retrieve(id: string, options?: RequestOptions): APIPromise<VariableCompensationPayoutTypeRetrieveResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* Update a custom payout type's display name or per-entity earning mappings.
|
|
27
|
+
*/
|
|
28
|
+
update(id: string, body: VariableCompensationPayoutTypeUpdateParams, options?: RequestOptions): APIPromise<VariableCompensationPayoutTypeUpdateResponse>;
|
|
29
|
+
/**
|
|
30
|
+
* Delete a custom payout type. Built-in payout types cannot be deleted. Returns
|
|
31
|
+
* 200 with a null body.
|
|
32
|
+
*/
|
|
33
|
+
delete(id: string, options?: RequestOptions): APIPromise<void>;
|
|
34
|
+
}
|
|
35
|
+
export type VariableCompensationPayoutTypeListResponsesPageCursorURL = PageCursorURL<VariableCompensationPayoutTypeListResponse>;
|
|
36
|
+
export interface VariableCompensationPayoutTypeListResponse {
|
|
37
|
+
/**
|
|
38
|
+
* Unique identifier of the payout type. Same as key.
|
|
39
|
+
*/
|
|
40
|
+
id: string;
|
|
41
|
+
/**
|
|
42
|
+
* Display name of the payout type.
|
|
43
|
+
*/
|
|
44
|
+
display_name: string;
|
|
45
|
+
/**
|
|
46
|
+
* Whether this is a built-in payout type.
|
|
47
|
+
*/
|
|
48
|
+
is_system: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Stable payout type key assigned by the server on create.
|
|
51
|
+
*/
|
|
52
|
+
key: string;
|
|
53
|
+
/**
|
|
54
|
+
* ID of the worker who created this custom payout type.
|
|
55
|
+
*/
|
|
56
|
+
created_by?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Per-entity earning code mappings.
|
|
59
|
+
*/
|
|
60
|
+
mappings?: Array<VariableCompensationPayoutTypeListResponse.Mapping>;
|
|
61
|
+
}
|
|
62
|
+
export declare namespace VariableCompensationPayoutTypeListResponse {
|
|
63
|
+
interface Mapping {
|
|
64
|
+
/**
|
|
65
|
+
* ID of the payroll entity this mapping applies to.
|
|
66
|
+
*/
|
|
67
|
+
entity_id: string;
|
|
68
|
+
/**
|
|
69
|
+
* Mapping health status.
|
|
70
|
+
*/
|
|
71
|
+
health: string;
|
|
72
|
+
/**
|
|
73
|
+
* Mapped earning code for the payroll entity.
|
|
74
|
+
*/
|
|
75
|
+
earning_code?: string;
|
|
76
|
+
/**
|
|
77
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
78
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
79
|
+
* this field.
|
|
80
|
+
*/
|
|
81
|
+
earning_display_name?: string;
|
|
82
|
+
/**
|
|
83
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
84
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
85
|
+
* this field.
|
|
86
|
+
*/
|
|
87
|
+
entity_name?: string;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
export interface VariableCompensationPayoutTypeCreateResponse {
|
|
91
|
+
/**
|
|
92
|
+
* Unique identifier of the payout type. Same as key.
|
|
93
|
+
*/
|
|
94
|
+
id: string;
|
|
95
|
+
/**
|
|
96
|
+
* Display name of the payout type.
|
|
97
|
+
*/
|
|
98
|
+
display_name: string;
|
|
99
|
+
/**
|
|
100
|
+
* Whether this is a built-in payout type.
|
|
101
|
+
*/
|
|
102
|
+
is_system: boolean;
|
|
103
|
+
/**
|
|
104
|
+
* Stable payout type key assigned by the server on create.
|
|
105
|
+
*/
|
|
106
|
+
key: string;
|
|
107
|
+
/**
|
|
108
|
+
* ID of the worker who created this custom payout type.
|
|
109
|
+
*/
|
|
110
|
+
created_by?: string;
|
|
111
|
+
/**
|
|
112
|
+
* Per-entity earning code mappings.
|
|
113
|
+
*/
|
|
114
|
+
mappings?: Array<VariableCompensationPayoutTypeCreateResponse.Mapping>;
|
|
115
|
+
}
|
|
116
|
+
export declare namespace VariableCompensationPayoutTypeCreateResponse {
|
|
117
|
+
interface Mapping {
|
|
118
|
+
/**
|
|
119
|
+
* ID of the payroll entity this mapping applies to.
|
|
120
|
+
*/
|
|
121
|
+
entity_id: string;
|
|
122
|
+
/**
|
|
123
|
+
* Mapping health status.
|
|
124
|
+
*/
|
|
125
|
+
health: string;
|
|
126
|
+
/**
|
|
127
|
+
* Mapped earning code for the payroll entity.
|
|
128
|
+
*/
|
|
129
|
+
earning_code?: string;
|
|
130
|
+
/**
|
|
131
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
132
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
133
|
+
* this field.
|
|
134
|
+
*/
|
|
135
|
+
earning_display_name?: string;
|
|
136
|
+
/**
|
|
137
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
138
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
139
|
+
* this field.
|
|
140
|
+
*/
|
|
141
|
+
entity_name?: string;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Meta information for the response.
|
|
146
|
+
*/
|
|
147
|
+
export interface VariableCompensationPayoutTypeRetrieveResponse extends BusinessPartnersAPI.Meta {
|
|
148
|
+
/**
|
|
149
|
+
* Unique identifier of the payout type. Same as key.
|
|
150
|
+
*/
|
|
151
|
+
id: string;
|
|
152
|
+
/**
|
|
153
|
+
* Display name of the payout type.
|
|
154
|
+
*/
|
|
155
|
+
display_name: string;
|
|
156
|
+
/**
|
|
157
|
+
* Whether this is a built-in payout type.
|
|
158
|
+
*/
|
|
159
|
+
is_system: boolean;
|
|
160
|
+
/**
|
|
161
|
+
* Stable payout type key assigned by the server on create.
|
|
162
|
+
*/
|
|
163
|
+
key: string;
|
|
164
|
+
/**
|
|
165
|
+
* ID of the worker who created this custom payout type.
|
|
166
|
+
*/
|
|
167
|
+
created_by?: string;
|
|
168
|
+
/**
|
|
169
|
+
* Per-entity earning code mappings.
|
|
170
|
+
*/
|
|
171
|
+
mappings?: Array<VariableCompensationPayoutTypeRetrieveResponse.Mapping>;
|
|
172
|
+
}
|
|
173
|
+
export declare namespace VariableCompensationPayoutTypeRetrieveResponse {
|
|
174
|
+
interface Mapping {
|
|
175
|
+
/**
|
|
176
|
+
* ID of the payroll entity this mapping applies to.
|
|
177
|
+
*/
|
|
178
|
+
entity_id: string;
|
|
179
|
+
/**
|
|
180
|
+
* Mapping health status.
|
|
181
|
+
*/
|
|
182
|
+
health: string;
|
|
183
|
+
/**
|
|
184
|
+
* Mapped earning code for the payroll entity.
|
|
185
|
+
*/
|
|
186
|
+
earning_code?: string;
|
|
187
|
+
/**
|
|
188
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
189
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
190
|
+
* this field.
|
|
191
|
+
*/
|
|
192
|
+
earning_display_name?: string;
|
|
193
|
+
/**
|
|
194
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
195
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
196
|
+
* this field.
|
|
197
|
+
*/
|
|
198
|
+
entity_name?: string;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
export interface VariableCompensationPayoutTypeUpdateResponse {
|
|
202
|
+
/**
|
|
203
|
+
* Unique identifier of the payout type. Same as key.
|
|
204
|
+
*/
|
|
205
|
+
id: string;
|
|
206
|
+
/**
|
|
207
|
+
* Display name of the payout type.
|
|
208
|
+
*/
|
|
209
|
+
display_name: string;
|
|
210
|
+
/**
|
|
211
|
+
* Whether this is a built-in payout type.
|
|
212
|
+
*/
|
|
213
|
+
is_system: boolean;
|
|
214
|
+
/**
|
|
215
|
+
* Stable payout type key assigned by the server on create.
|
|
216
|
+
*/
|
|
217
|
+
key: string;
|
|
218
|
+
/**
|
|
219
|
+
* ID of the worker who created this custom payout type.
|
|
220
|
+
*/
|
|
221
|
+
created_by?: string;
|
|
222
|
+
/**
|
|
223
|
+
* Per-entity earning code mappings.
|
|
224
|
+
*/
|
|
225
|
+
mappings?: Array<VariableCompensationPayoutTypeUpdateResponse.Mapping>;
|
|
226
|
+
}
|
|
227
|
+
export declare namespace VariableCompensationPayoutTypeUpdateResponse {
|
|
228
|
+
interface Mapping {
|
|
229
|
+
/**
|
|
230
|
+
* ID of the payroll entity this mapping applies to.
|
|
231
|
+
*/
|
|
232
|
+
entity_id: string;
|
|
233
|
+
/**
|
|
234
|
+
* Mapping health status.
|
|
235
|
+
*/
|
|
236
|
+
health: string;
|
|
237
|
+
/**
|
|
238
|
+
* Mapped earning code for the payroll entity.
|
|
239
|
+
*/
|
|
240
|
+
earning_code?: string;
|
|
241
|
+
/**
|
|
242
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
243
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
244
|
+
* this field.
|
|
245
|
+
*/
|
|
246
|
+
earning_display_name?: string;
|
|
247
|
+
/**
|
|
248
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
249
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
250
|
+
* this field.
|
|
251
|
+
*/
|
|
252
|
+
entity_name?: string;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
export interface VariableCompensationPayoutTypeCreateParams {
|
|
256
|
+
/**
|
|
257
|
+
* Display name of the payout type.
|
|
258
|
+
*/
|
|
259
|
+
display_name: string;
|
|
260
|
+
/**
|
|
261
|
+
* Per-entity earning code mappings.
|
|
262
|
+
*/
|
|
263
|
+
mappings?: Array<VariableCompensationPayoutTypeCreateParams.Mapping>;
|
|
264
|
+
}
|
|
265
|
+
export declare namespace VariableCompensationPayoutTypeCreateParams {
|
|
266
|
+
interface Mapping {
|
|
267
|
+
/**
|
|
268
|
+
* ID of the payroll entity this mapping applies to.
|
|
269
|
+
*/
|
|
270
|
+
entity_id: string;
|
|
271
|
+
/**
|
|
272
|
+
* Mapping health status.
|
|
273
|
+
*/
|
|
274
|
+
health: string;
|
|
275
|
+
/**
|
|
276
|
+
* Mapped earning code for the payroll entity.
|
|
277
|
+
*/
|
|
278
|
+
earning_code?: string;
|
|
279
|
+
/**
|
|
280
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
281
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
282
|
+
* this field.
|
|
283
|
+
*/
|
|
284
|
+
earning_display_name?: string;
|
|
285
|
+
/**
|
|
286
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
287
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
288
|
+
* this field.
|
|
289
|
+
*/
|
|
290
|
+
entity_name?: string;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
export interface VariableCompensationPayoutTypeUpdateParams {
|
|
294
|
+
/**
|
|
295
|
+
* Display name of the payout type.
|
|
296
|
+
*/
|
|
297
|
+
display_name: string;
|
|
298
|
+
/**
|
|
299
|
+
* Per-entity earning code mappings.
|
|
300
|
+
*/
|
|
301
|
+
mappings?: Array<VariableCompensationPayoutTypeUpdateParams.Mapping>;
|
|
302
|
+
}
|
|
303
|
+
export declare namespace VariableCompensationPayoutTypeUpdateParams {
|
|
304
|
+
interface Mapping {
|
|
305
|
+
/**
|
|
306
|
+
* ID of the payroll entity this mapping applies to.
|
|
307
|
+
*/
|
|
308
|
+
entity_id: string;
|
|
309
|
+
/**
|
|
310
|
+
* Mapping health status.
|
|
311
|
+
*/
|
|
312
|
+
health: string;
|
|
313
|
+
/**
|
|
314
|
+
* Mapped earning code for the payroll entity.
|
|
315
|
+
*/
|
|
316
|
+
earning_code?: string;
|
|
317
|
+
/**
|
|
318
|
+
* Display name of the mapped earning code at response time. Convenience snapshot
|
|
319
|
+
* for the mapping matrix; authoritative earning metadata lives in payroll, not
|
|
320
|
+
* this field.
|
|
321
|
+
*/
|
|
322
|
+
earning_display_name?: string;
|
|
323
|
+
/**
|
|
324
|
+
* Display name of the payroll entity at response time. Convenience snapshot for
|
|
325
|
+
* the mapping matrix; authoritative entity data lives on payroll entities, not
|
|
326
|
+
* this field.
|
|
327
|
+
*/
|
|
328
|
+
entity_name?: string;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
export declare namespace VariableCompensationPayoutTypes {
|
|
332
|
+
export { type VariableCompensationPayoutTypeListResponse as VariableCompensationPayoutTypeListResponse, type VariableCompensationPayoutTypeCreateResponse as VariableCompensationPayoutTypeCreateResponse, type VariableCompensationPayoutTypeRetrieveResponse as VariableCompensationPayoutTypeRetrieveResponse, type VariableCompensationPayoutTypeUpdateResponse as VariableCompensationPayoutTypeUpdateResponse, type VariableCompensationPayoutTypeListResponsesPageCursorURL as VariableCompensationPayoutTypeListResponsesPageCursorURL, type VariableCompensationPayoutTypeCreateParams as VariableCompensationPayoutTypeCreateParams, type VariableCompensationPayoutTypeUpdateParams as VariableCompensationPayoutTypeUpdateParams, };
|
|
333
|
+
}
|
|
334
|
+
//# sourceMappingURL=variable-compensation-payout-types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"variable-compensation-payout-types.d.ts","sourceRoot":"","sources":["../src/resources/variable-compensation-payout-types.ts"],"names":[],"mappings":"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"}
|