@dsptch-work/api-client 0.3.0 → 0.4.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.
@@ -1,13 +1,313 @@
1
1
  import * as z from 'zod';
2
2
  /**
3
- * Error envelope returned on a failed request; the `errors` array holds one entry per problem.
3
+ * RFC 9457 problem-details body returned on every failed request, as `application/problem+json`.
4
4
  */
5
- export declare const zErrorsObject: z.ZodObject<{
6
- errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
7
- code: z.ZodOptional<z.ZodString>;
8
- message: z.ZodOptional<z.ZodString>;
9
- }, z.core.$strip>>>;
5
+ export declare const zProblem: z.ZodObject<{
6
+ type: z.ZodURL;
7
+ title: z.ZodString;
8
+ status: z.ZodInt;
9
+ detail: z.ZodString;
10
10
  }, z.core.$strip>;
11
+ /**
12
+ * Error types
13
+ *
14
+ * Every way a request can fail has a stable machine-readable identifier: the `type` URI of its
15
+ * `application/problem+json` response, whose fragment is the short form listed here.
16
+ * Identifiers are stable contract — messages (`detail`) may be reworded at any time. Entries
17
+ * are grouped by the HTTP status they render with.
18
+ *
19
+ * ## 400
20
+ *
21
+ * ### blank_axis
22
+ *
23
+ * **Blank Temporal Axis Value**
24
+ *
25
+ * An `as_of` coordinate is present but blank. A coordinate must name a point in time; send a parseable date-time, or omit the axis to read at now.
26
+ *
27
+ * ### invalid_cursor
28
+ *
29
+ * **Invalid Pagination Cursor**
30
+ *
31
+ * The `page` cursor is not decodable. Resend a cursor exactly as returned in a prior response's pagination links, or omit it to start from the first page.
32
+ *
33
+ * ### invalid_filter_key
34
+ *
35
+ * **Unknown Filter Key**
36
+ *
37
+ * The `filter` object names a key the endpoint does not declare — an undeclared filter, an unknown range sub-key, or an unsupported operator. Remove or correct the key per the endpoint's documented filter set.
38
+ *
39
+ * ### invalid_limit
40
+ *
41
+ * **Invalid Page Limit**
42
+ *
43
+ * The `page` limit is not a positive integer. Send a positive integer or omit it for the default; values above the cap are clamped, never rejected.
44
+ *
45
+ * ### invalid_signature
46
+ *
47
+ * **Invalid Signed Token**
48
+ *
49
+ * A signed token in the request fails signature verification. Re-obtain the token from the endpoint that issued it.
50
+ *
51
+ * ### non_range_filter_value
52
+ *
53
+ * **Range Filter Needs Bounds**
54
+ *
55
+ * A range filter key carries a bare value instead of bounds. Send the object form with `gte` and/or `lte`.
56
+ *
57
+ * ### non_scalar_axis
58
+ *
59
+ * **Temporal Axis Not Scalar**
60
+ *
61
+ * An `as_of` axis value is an object or array rather than a single date-time. Send one scalar value per axis.
62
+ *
63
+ * ### non_scalar_filter_value
64
+ *
65
+ * **Filter Value Not Scalar**
66
+ *
67
+ * An equality filter key carries an array or object outside the supported `null` operator form. Send a single scalar value.
68
+ *
69
+ * ### parameter_missing
70
+ *
71
+ * **Required Parameter Missing**
72
+ *
73
+ * A required request parameter is absent or empty. The message names it; supply the parameter and retry.
74
+ *
75
+ * ### parameter_not_object
76
+ *
77
+ * **Parameter Must Be An Object**
78
+ *
79
+ * A container query parameter — `filter`, `page`, or `as_of` — arrived as a scalar, array, or blank value instead of a nested object. Use the object syntax, for example `filter[key]=value`.
80
+ *
81
+ * ### unknown_axis
82
+ *
83
+ * **Unknown Temporal Axis Key**
84
+ *
85
+ * The `as_of` parameter carries a sub-key that is not a temporal axis. Remove the unknown key.
86
+ *
87
+ * ### unknown_key
88
+ *
89
+ * **Unknown Query Parameter**
90
+ *
91
+ * The query string carries a top-level key outside the declared containers — typically a misspelled container. Remove or correct it; unknown keys are never silently ignored.
92
+ *
93
+ * ### unsupported_axis
94
+ *
95
+ * **Axis Unsupported By Resource**
96
+ *
97
+ * The `as_of` parameter names a temporal axis this resource does not expose. Drop the axis.
98
+ *
99
+ * ### valid_axis_on_timeline
100
+ *
101
+ * **Valid-Time Pin On A Timeline**
102
+ *
103
+ * A version-timeline endpoint received a valid-time pin, but the timeline ranges over all of valid time. Read the resource itself to get one version.
104
+ *
105
+ * ## 401
106
+ *
107
+ * ### unauthorized
108
+ *
109
+ * **Invalid Or Missing Credentials**
110
+ *
111
+ * The request presents no usable credential — the API key is missing or invalid. Supply a valid key in the `x-api-key` header.
112
+ *
113
+ * ## 403
114
+ *
115
+ * ### company_scoped_key_required
116
+ *
117
+ * **Company-Scoped Key Required**
118
+ *
119
+ * The endpoint must act within a company tenant, but the presented credential carries none. Retry with a company- or user-scoped API key.
120
+ *
121
+ * ### forbidden
122
+ *
123
+ * **Action Not Authorized**
124
+ *
125
+ * The credential is valid, but this action on this record is refused by policy. The operation is not available to this principal.
126
+ *
127
+ * ### insufficient_api_key_scope
128
+ *
129
+ * **Insufficient API Key Scope**
130
+ *
131
+ * The API key lacks the scope grant for this endpoint and verb. Grant the required scope to the key and retry.
132
+ *
133
+ * ## 404
134
+ *
135
+ * ### not_found
136
+ *
137
+ * **Resource Not Found**
138
+ *
139
+ * The identified record does not exist, or is outside what this credential can see. Verify the id and the key's access.
140
+ *
141
+ * ## 409
142
+ *
143
+ * ### recorded_since_termination
144
+ *
145
+ * **Timecode Changed Since Termination**
146
+ *
147
+ * Cancelling this timecode's scheduled termination would silently discard changes recorded since it was terminated. Re-read the timecode and reconcile before retrying.
148
+ *
149
+ * ## 422
150
+ *
151
+ * ### attachment_not_image
152
+ *
153
+ * **Attachment Not An Image**
154
+ *
155
+ * The upload behind an image attachment's signed id is not an image content type. Upload an image file.
156
+ *
157
+ * ### company_not_employer
158
+ *
159
+ * **Company Not Program Employer**
160
+ *
161
+ * Creating an apprentice requires the acting company to be registered as an employer in the apprenticeship program, and it is not. Register the company as a program employer first.
162
+ *
163
+ * ### confirm_apprenticeship_conflict
164
+ *
165
+ * **Apprenticeship Allocation Conflict**
166
+ *
167
+ * A time-entry update would invalidate the time card's apprenticeship hour allocations, and the request did not confirm that. Retry with `confirm_allocation_conflict` set to accept removing those allocations.
168
+ *
169
+ * ### destroy_restricted
170
+ *
171
+ * **Deletion Blocked By Dependencies**
172
+ *
173
+ * A deletion is refused by the record's guards — dependent records restrict removal. The message carries the specifics; remove or reassign the dependents first.
174
+ *
175
+ * ### invalid_date
176
+ *
177
+ * **Unparseable Date Value**
178
+ *
179
+ * A date-time value cannot be parsed, or falls outside the storable range. Format values as ISO 8601 (for example `2026-08-05` or `2026-08-05T14:30`).
180
+ *
181
+ * ### invalid_filter_value
182
+ *
183
+ * **Invalid Filter Value**
184
+ *
185
+ * A declared filter key carries a value outside its accepted set — a non-boolean on a boolean key, or a token outside an enum key's vocabulary. Send an accepted value.
186
+ *
187
+ * ### invalid_iso8601_duration
188
+ *
189
+ * **Invalid ISO 8601 Duration**
190
+ *
191
+ * A duration value is not a parseable ISO 8601 duration. Format it like `P2Y`, `P1D`, or `-PT15M`.
192
+ *
193
+ * ### invalid_placement_move
194
+ *
195
+ * **Move Conflicts With Placement**
196
+ *
197
+ * An inventory move does not fit the item's current placement. The message carries the reason; check the item's placement and adjust the move.
198
+ *
199
+ * ### invalid_signed_id
200
+ *
201
+ * **Invalid Attachment Signed Id**
202
+ *
203
+ * An attachment signed id — an avatar's, a logo's — is not a string or fails signature verification. Obtain a fresh signed id from the direct-uploads endpoint and retry.
204
+ *
205
+ * ### non_numeric_cents
206
+ *
207
+ * **Non-Numeric Money Value**
208
+ *
209
+ * A money parameter is not a numeric value in cents. Send money as a numeric cents value.
210
+ *
211
+ * ### nothing_to_cancel
212
+ *
213
+ * **Nothing To Cancel**
214
+ *
215
+ * A cancellation found nothing pending on the addressed resource — no future scheduled changes, or no scheduled termination. Re-read the resource to see what is actually scheduled.
216
+ *
217
+ * ### pagination_failed
218
+ *
219
+ * **Pagination Failed**
220
+ *
221
+ * Pagination could not be applied to the request. Retry without the `page` parameter, or with a fresh cursor.
222
+ *
223
+ * ### subtype_foreign_keys
224
+ *
225
+ * **Foreign Subtype Attributes**
226
+ *
227
+ * A nested-attributes write carries keys the record's resolved subtype does not accept. Send only the keys valid for that subtype; the message names the offending ones.
228
+ *
229
+ * ### synced_determination
230
+ *
231
+ * **Determination Synced From Project**
232
+ *
233
+ * Rate rules cannot be written on a wage determination synced from a project. Manage the rules on the project instead.
234
+ *
235
+ * ### user_not_company_member
236
+ *
237
+ * **User Outside Company**
238
+ *
239
+ * A user reference — an approver, a performing user — does not name a member of the acting company. The message names the field; use a user id belonging to the company.
240
+ *
241
+ * ### validation_failed
242
+ *
243
+ * **Validation Failed**
244
+ *
245
+ * A well-formed value violates a declared constraint — a value outside a field's documented set, a malformed or incomplete nested payload, a record validation refusal, or a reference to a record that does not exist. The message states the violated constraint; correct the value and retry.
246
+ *
247
+ * ### wage_schedule_outside_program
248
+ *
249
+ * **Wage Schedule Outside Program**
250
+ *
251
+ * The apprentice's wage schedule does not belong to the program in the URL. Use a schedule from that program.
252
+ *
253
+ * ## 429
254
+ *
255
+ * ### too_many_requests
256
+ *
257
+ * **Rate Limit Exceeded**
258
+ *
259
+ * The API key exceeded its request budget. Wait for the `Retry-After` window before retrying.
260
+ *
261
+ * ## 500
262
+ *
263
+ * ### internal_error
264
+ *
265
+ * **Internal Server Error**
266
+ *
267
+ * Something failed on the server; nothing in the request needs fixing. Retry later, or report the problem if it persists.
268
+ *
269
+ */
270
+ export declare const zProblemTypeCatalog: z.ZodEnum<{
271
+ blank_axis: "blank_axis";
272
+ invalid_cursor: "invalid_cursor";
273
+ invalid_filter_key: "invalid_filter_key";
274
+ invalid_limit: "invalid_limit";
275
+ invalid_signature: "invalid_signature";
276
+ non_range_filter_value: "non_range_filter_value";
277
+ non_scalar_axis: "non_scalar_axis";
278
+ non_scalar_filter_value: "non_scalar_filter_value";
279
+ parameter_missing: "parameter_missing";
280
+ parameter_not_object: "parameter_not_object";
281
+ unknown_axis: "unknown_axis";
282
+ unknown_key: "unknown_key";
283
+ unsupported_axis: "unsupported_axis";
284
+ valid_axis_on_timeline: "valid_axis_on_timeline";
285
+ unauthorized: "unauthorized";
286
+ company_scoped_key_required: "company_scoped_key_required";
287
+ forbidden: "forbidden";
288
+ insufficient_api_key_scope: "insufficient_api_key_scope";
289
+ not_found: "not_found";
290
+ recorded_since_termination: "recorded_since_termination";
291
+ attachment_not_image: "attachment_not_image";
292
+ company_not_employer: "company_not_employer";
293
+ confirm_apprenticeship_conflict: "confirm_apprenticeship_conflict";
294
+ destroy_restricted: "destroy_restricted";
295
+ invalid_date: "invalid_date";
296
+ invalid_filter_value: "invalid_filter_value";
297
+ invalid_iso8601_duration: "invalid_iso8601_duration";
298
+ invalid_placement_move: "invalid_placement_move";
299
+ invalid_signed_id: "invalid_signed_id";
300
+ non_numeric_cents: "non_numeric_cents";
301
+ nothing_to_cancel: "nothing_to_cancel";
302
+ pagination_failed: "pagination_failed";
303
+ subtype_foreign_keys: "subtype_foreign_keys";
304
+ synced_determination: "synced_determination";
305
+ user_not_company_member: "user_not_company_member";
306
+ validation_failed: "validation_failed";
307
+ wage_schedule_outside_program: "wage_schedule_outside_program";
308
+ too_many_requests: "too_many_requests";
309
+ internal_error: "internal_error";
310
+ }>;
11
311
  export declare const zApiKeyScopeResponseObject: z.ZodObject<{
12
312
  resource: z.ZodString;
13
313
  action: z.ZodEnum<{
@@ -430,12 +730,6 @@ export declare const zTimecodeParameters: z.ZodObject<{
430
730
  }>>;
431
731
  effective_date: z.ZodOptional<z.ZodISODateTime>;
432
732
  }, z.core.$strip>;
433
- /**
434
- * Optional request body for terminating a timecode; the whole body may be omitted to terminate as of today.
435
- */
436
- export declare const zTimecodeTerminationParameters: z.ZodObject<{
437
- termination_date: z.ZodOptional<z.ZodISODate>;
438
- }, z.core.$strip>;
439
733
  /**
440
734
  * Request body for scheduling a future change to a timecode: an effective_date paired with the attribute values to apply from that date. `effective_date` and `name` are required; omitted attributes inherit the current version's values.
441
735
  */
@@ -475,7 +769,7 @@ export declare const zPerDiemResponseObject: z.ZodObject<{
475
769
  default: z.ZodNullable<z.ZodBoolean>;
476
770
  active: z.ZodNullable<z.ZodBoolean>;
477
771
  work_type_ids: z.ZodArray<z.ZodString>;
478
- timecode_ids: z.ZodArray<z.ZodString>;
772
+ timekeeping_timecode_ids: z.ZodArray<z.ZodString>;
479
773
  created_at: z.ZodISODateTime;
480
774
  updated_at: z.ZodISODateTime;
481
775
  }, z.core.$strip>;
@@ -491,7 +785,7 @@ export declare const zPerDiemParameters: z.ZodObject<{
491
785
  default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
492
786
  active: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
493
787
  work_type_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
494
- timecode_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
788
+ timekeeping_timecode_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
495
789
  }, z.core.$strip>;
496
790
  /**
497
791
  * The product's filled attribute values — one entry per attribute assigned to its category.
@@ -605,7 +899,7 @@ export declare const zDepartmentParameters: z.ZodObject<{
605
899
  */
606
900
  export declare const zTimeCardPerDiemResponseObject: z.ZodObject<{
607
901
  id: z.ZodString;
608
- time_card_id: z.ZodString;
902
+ timekeeping_time_card_id: z.ZodString;
609
903
  date: z.ZodISODate;
610
904
  approver_user_id: z.ZodString;
611
905
  per_diem_id: z.ZodNullable<z.ZodString>;
@@ -1097,9 +1391,9 @@ export declare const zUserUpdateParameters: z.ZodObject<{
1097
1391
  export declare const zTimeEntryResponseObject: z.ZodObject<{
1098
1392
  id: z.ZodString;
1099
1393
  user_id: z.ZodString;
1100
- time_card_id: z.ZodString;
1394
+ timekeeping_time_card_id: z.ZodString;
1101
1395
  job_id: z.ZodNullable<z.ZodString>;
1102
- timecode_id: z.ZodNullable<z.ZodString>;
1396
+ timekeeping_timecode_id: z.ZodNullable<z.ZodString>;
1103
1397
  state: z.ZodNullable<z.ZodString>;
1104
1398
  description: z.ZodNullable<z.ZodString>;
1105
1399
  clock_punched: z.ZodBoolean;
@@ -1119,7 +1413,7 @@ export declare const zTimeEntryResponseObject: z.ZodObject<{
1119
1413
  hourly_rate_cents: z.ZodNullable<z.ZodString>;
1120
1414
  currency: z.ZodNullable<z.ZodString>;
1121
1415
  hourly_rate_src_type: z.ZodNullable<z.ZodString>;
1122
- pay_period_id: z.ZodString;
1416
+ timekeeping_pay_period_id: z.ZodString;
1123
1417
  start_time: z.ZodISODateTime;
1124
1418
  end_time: z.ZodISODateTime;
1125
1419
  created_at: z.ZodISODateTime;
@@ -1143,7 +1437,7 @@ export declare const zTimeEntryResponseObject: z.ZodObject<{
1143
1437
  */
1144
1438
  export declare const zTimeEntryApprovalResponseObject: z.ZodObject<{
1145
1439
  id: z.ZodString;
1146
- time_entry_id: z.ZodString;
1440
+ timekeeping_time_entry_id: z.ZodString;
1147
1441
  time_card_approval_id: z.ZodNullable<z.ZodString>;
1148
1442
  status: z.ZodEnum<{
1149
1443
  pending: "pending";
@@ -1165,14 +1459,14 @@ export declare const zManagerTimeEntryApprovalParameters: z.ZodObject<{
1165
1459
  approver_user_id: z.ZodString;
1166
1460
  }, z.core.$strip>;
1167
1461
  /**
1168
- * Request body for creating or updating a time entry; on create, time_card_id, start_time, and end_time are required.
1462
+ * Request body for creating or updating a time entry; on create, timekeeping_time_card_id, start_time, and end_time are required.
1169
1463
  */
1170
1464
  export declare const zTimeEntryParameters: z.ZodObject<{
1171
- time_card_id: z.ZodString;
1465
+ timekeeping_time_card_id: z.ZodString;
1172
1466
  start_time: z.ZodISODateTime;
1173
1467
  end_time: z.ZodISODateTime;
1174
1468
  job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1175
- timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1469
+ timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1176
1470
  state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1177
1471
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1178
1472
  hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1211,7 +1505,7 @@ export declare const zUserCompanyScheduledChangesParameters: z.ZodObject<{
1211
1505
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1212
1506
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1213
1507
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1214
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1508
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1215
1509
  }, z.core.$strip>;
1216
1510
  /**
1217
1511
  * A work type: a named category of job activity, either a shared global default (no owning company) or an entry scoped to a specific company.
@@ -1286,6 +1580,10 @@ export declare const zCompanyResponseObject: z.ZodObject<{
1286
1580
  }>>;
1287
1581
  naics_code: z.ZodNullable<z.ZodString>;
1288
1582
  linkedin_url: z.ZodNullable<z.ZodString>;
1583
+ industry: z.ZodNullable<z.ZodString>;
1584
+ stock_ticker: z.ZodNullable<z.ZodString>;
1585
+ stock_exchange: z.ZodNullable<z.ZodString>;
1586
+ logo_url: z.ZodNullable<z.ZodURL>;
1289
1587
  created_at: z.ZodISODateTime;
1290
1588
  updated_at: z.ZodISODateTime;
1291
1589
  }, z.core.$strip>;
@@ -1464,7 +1762,7 @@ export declare const zJobParameters: z.ZodObject<{
1464
1762
  require_clock_in: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1465
1763
  send_geofence_reminders: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1466
1764
  allow_customer_access: z.ZodOptional<z.ZodBoolean>;
1467
- timecode_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1765
+ timekeeping_timecode_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1468
1766
  tracks_feature_allocations: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1469
1767
  requires_feature_allocation: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1470
1768
  max_one_feature_allocation: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -1537,7 +1835,7 @@ export declare const zJobUpdateParameters: z.ZodIntersection<z.ZodObject<{
1537
1835
  require_clock_in: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1538
1836
  send_geofence_reminders: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1539
1837
  allow_customer_access: z.ZodOptional<z.ZodBoolean>;
1540
- timecode_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1838
+ timekeeping_timecode_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1541
1839
  tracks_feature_allocations: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1542
1840
  requires_feature_allocation: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1543
1841
  max_one_feature_allocation: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -1600,7 +1898,7 @@ export declare const zUserCompanyScheduledChange: z.ZodObject<{
1600
1898
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1601
1899
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1602
1900
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1603
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1901
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1604
1902
  }, z.core.$strip>;
1605
1903
  /**
1606
1904
  * A worker's scheduled compensation timeline at your company — the version currently in effect plus any future-dated versions.
@@ -1620,7 +1918,7 @@ export declare const zUserCompanyScheduledChangesResponse: z.ZodObject<{
1620
1918
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1621
1919
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1622
1920
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1623
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1921
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1624
1922
  }, z.core.$strip>>;
1625
1923
  scheduled_changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
1626
1924
  id: z.ZodOptional<z.ZodString>;
@@ -1635,7 +1933,7 @@ export declare const zUserCompanyScheduledChangesResponse: z.ZodObject<{
1635
1933
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1636
1934
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1637
1935
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
1638
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1936
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1639
1937
  }, z.core.$strip>>>;
1640
1938
  }, z.core.$strip>;
1641
1939
  /**
@@ -1650,7 +1948,7 @@ export declare const zUserCompanyScheduledTerminationParameters: z.ZodObject<{
1650
1948
  export declare const zTimeCardResponseObject: z.ZodObject<{
1651
1949
  id: z.ZodString;
1652
1950
  user_id: z.ZodString;
1653
- pay_period_id: z.ZodString;
1951
+ timekeeping_pay_period_id: z.ZodString;
1654
1952
  locked: z.ZodBoolean;
1655
1953
  manager_time_card_approval_status: z.ZodEnum<{
1656
1954
  pending: "pending";
@@ -1696,11 +1994,11 @@ export declare const zTimeCardResponseObject: z.ZodObject<{
1696
1994
  */
1697
1995
  export declare const zJobTimeCardDayResponseObject: z.ZodObject<{
1698
1996
  id: z.ZodString;
1699
- job_time_card_id: z.ZodString;
1997
+ timekeeping_job_time_card_id: z.ZodString;
1700
1998
  job_id: z.ZodString;
1701
- time_card_id: z.ZodString;
1999
+ timekeeping_time_card_id: z.ZodString;
1702
2000
  user_id: z.ZodString;
1703
- pay_period_id: z.ZodString;
2001
+ timekeeping_pay_period_id: z.ZodString;
1704
2002
  date: z.ZodISODate;
1705
2003
  minutes_worked: z.ZodInt;
1706
2004
  paid_minutes_worked: z.ZodInt;
@@ -1784,7 +2082,7 @@ export declare const zJobTimeCardDayResponseObject: z.ZodObject<{
1784
2082
  */
1785
2083
  export declare const zTimeCardApprovalResponseObject: z.ZodObject<{
1786
2084
  id: z.ZodString;
1787
- time_card_id: z.ZodString;
2085
+ timekeeping_time_card_id: z.ZodString;
1788
2086
  status: z.ZodEnum<{
1789
2087
  pending: "pending";
1790
2088
  approved: "approved";
@@ -1927,7 +2225,7 @@ export declare const zPayrollExternalMapResponseObject: z.ZodObject<{
1927
2225
  id: z.ZodString;
1928
2226
  bitemporal_id: z.ZodString;
1929
2227
  name: z.ZodString;
1930
- compensation_element_id: z.ZodString;
2228
+ payrolls_compensation_element_id: z.ZodString;
1931
2229
  compensation_element_name: z.ZodString;
1932
2230
  compensation_element_category: z.ZodEnum<{
1933
2231
  other: "other";
@@ -1939,7 +2237,7 @@ export declare const zPayrollExternalMapResponseObject: z.ZodObject<{
1939
2237
  garnishment: "garnishment";
1940
2238
  }>;
1941
2239
  pay_period_config_uid: z.ZodNullable<z.ZodString>;
1942
- fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
2240
+ payrolls_fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
1943
2241
  contributor: z.ZodEnum<{
1944
2242
  any: "any";
1945
2243
  employee: "employee";
@@ -1959,7 +2257,7 @@ export declare const zPayrollExternalMapHistoryVersionObject: z.ZodObject<{
1959
2257
  id: z.ZodString;
1960
2258
  bitemporal_id: z.ZodString;
1961
2259
  name: z.ZodString;
1962
- compensation_element_id: z.ZodString;
2260
+ payrolls_compensation_element_id: z.ZodString;
1963
2261
  compensation_element_name: z.ZodString;
1964
2262
  compensation_element_category: z.ZodEnum<{
1965
2263
  other: "other";
@@ -1971,7 +2269,7 @@ export declare const zPayrollExternalMapHistoryVersionObject: z.ZodObject<{
1971
2269
  garnishment: "garnishment";
1972
2270
  }>;
1973
2271
  pay_period_config_uid: z.ZodNullable<z.ZodString>;
1974
- fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
2272
+ payrolls_fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
1975
2273
  contributor: z.ZodEnum<{
1976
2274
  any: "any";
1977
2275
  employee: "employee";
@@ -1995,7 +2293,7 @@ export declare const zPayrollExternalMapHistoryVersionObject: z.ZodObject<{
1995
2293
  id: z.ZodString;
1996
2294
  bitemporal_id: z.ZodString;
1997
2295
  name: z.ZodString;
1998
- compensation_element_id: z.ZodString;
2296
+ payrolls_compensation_element_id: z.ZodString;
1999
2297
  compensation_element_name: z.ZodString;
2000
2298
  compensation_element_category: z.ZodEnum<{
2001
2299
  other: "other";
@@ -2007,7 +2305,7 @@ export declare const zPayrollExternalMapHistoryVersionObject: z.ZodObject<{
2007
2305
  garnishment: "garnishment";
2008
2306
  }>;
2009
2307
  pay_period_config_uid: z.ZodNullable<z.ZodString>;
2010
- fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
2308
+ payrolls_fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
2011
2309
  contributor: z.ZodEnum<{
2012
2310
  any: "any";
2013
2311
  employee: "employee";
@@ -2030,8 +2328,8 @@ export declare const zPayrollExternalMapHistoryVersionObject: z.ZodObject<{
2030
2328
  export declare const zPayrollRunResponseObject: z.ZodObject<{
2031
2329
  id: z.ZodString;
2032
2330
  company_id: z.ZodString;
2033
- pay_period_id: z.ZodNullable<z.ZodString>;
2034
- credential_id: z.ZodNullable<z.ZodString>;
2331
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
2332
+ payrolls_credential_id: z.ZodNullable<z.ZodString>;
2035
2333
  run_type: z.ZodEnum<{
2036
2334
  CORRECTION: "CORRECTION";
2037
2335
  ON_CYCLE: "ON_CYCLE";
@@ -2046,12 +2344,12 @@ export declare const zPayrollRunResponseObject: z.ZodObject<{
2046
2344
  updated_at: z.ZodISODateTime;
2047
2345
  }, z.core.$strip>;
2048
2346
  /**
2049
- * Request body for creating or updating a payroll run. company_id, run_type, and run_date are required; an on-cycle run additionally requires pay_period_id.
2347
+ * Request body for creating or updating a payroll run. company_id, run_type, and run_date are required; an on-cycle run additionally requires timekeeping_pay_period_id.
2050
2348
  */
2051
2349
  export declare const zPayrollRunParameters: z.ZodObject<{
2052
2350
  company_id: z.ZodString;
2053
- pay_period_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2054
- credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2351
+ timekeeping_pay_period_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2352
+ payrolls_credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2055
2353
  run_type: z.ZodEnum<{
2056
2354
  CORRECTION: "CORRECTION";
2057
2355
  ON_CYCLE: "ON_CYCLE";
@@ -2350,12 +2648,12 @@ export declare const zComplianceCheckResponseObject: z.ZodObject<{
2350
2648
  not_applicable: "not_applicable";
2351
2649
  dismissed: "dismissed";
2352
2650
  }>;
2353
- requirement_id: z.ZodString;
2651
+ compliances_requirement_id: z.ZodString;
2354
2652
  company_id: z.ZodNullable<z.ZodString>;
2355
2653
  job_id: z.ZodNullable<z.ZodString>;
2356
2654
  project_id: z.ZodNullable<z.ZodString>;
2357
- time_card_id: z.ZodNullable<z.ZodString>;
2358
- pay_period_id: z.ZodNullable<z.ZodString>;
2655
+ timekeeping_time_card_id: z.ZodNullable<z.ZodString>;
2656
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
2359
2657
  user_id: z.ZodNullable<z.ZodString>;
2360
2658
  user_company_uid: z.ZodNullable<z.ZodString>;
2361
2659
  title: z.ZodString;
@@ -2410,18 +2708,18 @@ export declare const zPaystubResponseObject: z.ZodObject<{
2410
2708
  external_id: z.ZodNullable<z.ZodString>;
2411
2709
  check_number: z.ZodNullable<z.ZodString>;
2412
2710
  user_id: z.ZodString;
2413
- time_card_id: z.ZodNullable<z.ZodString>;
2414
- payroll_run_id: z.ZodString;
2711
+ timekeeping_time_card_id: z.ZodNullable<z.ZodString>;
2712
+ payrolls_payroll_run_id: z.ZodString;
2415
2713
  created_at: z.ZodISODateTime;
2416
2714
  updated_at: z.ZodISODateTime;
2417
2715
  }, z.core.$strip>;
2418
2716
  /**
2419
- * Request body for creating or updating a paystub. payroll_run_id and user_id are required; time_card_id is required for an on-cycle run and disallowed for an off-cycle run.
2717
+ * Request body for creating or updating a paystub. payrolls_payroll_run_id and user_id are required; timekeeping_time_card_id is required for an on-cycle run and disallowed for an off-cycle run.
2420
2718
  */
2421
2719
  export declare const zPaystubParameters: z.ZodObject<{
2422
- payroll_run_id: z.ZodString;
2720
+ payrolls_payroll_run_id: z.ZodString;
2423
2721
  user_id: z.ZodString;
2424
- time_card_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2722
+ timekeeping_time_card_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2425
2723
  external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2426
2724
  check_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2427
2725
  }, z.core.$strip>;
@@ -2430,8 +2728,8 @@ export declare const zPaystubParameters: z.ZodObject<{
2430
2728
  */
2431
2729
  export declare const zPriorPeriodAdjustmentResponseObject: z.ZodObject<{
2432
2730
  id: z.ZodString;
2433
- time_card_id: z.ZodString;
2434
- paystub_line_item_id: z.ZodString;
2731
+ timekeeping_time_card_id: z.ZodString;
2732
+ payrolls_paystub_line_item_id: z.ZodString;
2435
2733
  job_id: z.ZodNullable<z.ZodString>;
2436
2734
  created_by_user_id: z.ZodString;
2437
2735
  adjustment_type: z.ZodEnum<{
@@ -2456,7 +2754,7 @@ export declare const zPriorPeriodAdjustmentResponseObject: z.ZodObject<{
2456
2754
  */
2457
2755
  export declare const zTimeCardActualsResponseObject: z.ZodObject<{
2458
2756
  id: z.ZodString;
2459
- time_card_id: z.ZodString;
2757
+ timekeeping_time_card_id: z.ZodString;
2460
2758
  gross_pay_cents: z.ZodNullable<z.ZodString>;
2461
2759
  net_pay_cents: z.ZodNullable<z.ZodString>;
2462
2760
  reimbursements_cents: z.ZodNullable<z.ZodString>;
@@ -2511,9 +2809,9 @@ export declare const zTimeCardActualsResponseObject: z.ZodObject<{
2511
2809
  */
2512
2810
  export declare const zPaystubLineItemResponseObject: z.ZodObject<{
2513
2811
  id: z.ZodString;
2514
- external_map_id: z.ZodString;
2515
- paystub_id: z.ZodNullable<z.ZodString>;
2516
- pay_period_id: z.ZodNullable<z.ZodString>;
2812
+ payrolls_external_map_id: z.ZodString;
2813
+ payrolls_paystub_id: z.ZodNullable<z.ZodString>;
2814
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
2517
2815
  user_id: z.ZodNullable<z.ZodString>;
2518
2816
  external_map: z.ZodObject<{
2519
2817
  name: z.ZodOptional<z.ZodString>;
@@ -2543,13 +2841,13 @@ export declare const zPaystubLineItemResponseObject: z.ZodObject<{
2543
2841
  * Request body for creating or updating a paystub line item. All four fields are required.
2544
2842
  */
2545
2843
  export declare const zPaystubLineItemParameters: z.ZodObject<{
2546
- paystub_id: z.ZodString;
2844
+ payrolls_paystub_id: z.ZodString;
2547
2845
  amount_cents: z.ZodString;
2548
2846
  contributor: z.ZodEnum<{
2549
2847
  employee: "employee";
2550
2848
  employer: "employer";
2551
2849
  }>;
2552
- external_map_id: z.ZodString;
2850
+ payrolls_external_map_id: z.ZodString;
2553
2851
  }, z.core.$strip>;
2554
2852
  /**
2555
2853
  * Request body for creating or updating a position on a job. The job is taken from the URL path.
@@ -2866,7 +3164,6 @@ export declare const zJobResponseObject: z.ZodObject<{
2866
3164
  status: z.ZodString;
2867
3165
  start_time: z.ZodNullable<z.ZodString>;
2868
3166
  end_time: z.ZodNullable<z.ZodString>;
2869
- address: z.ZodNullable<z.ZodString>;
2870
3167
  purchase_order_number: z.ZodNullable<z.ZodString>;
2871
3168
  time_card_start_day: z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<6>]>;
2872
3169
  tz_name: z.ZodString;
@@ -2951,7 +3248,7 @@ export declare const zJobResponseObject: z.ZodObject<{
2951
3248
  work_types: z.ZodNullable<z.ZodArray<z.ZodObject<{
2952
3249
  value: z.ZodOptional<z.ZodString>;
2953
3250
  }, z.core.$strip>>>;
2954
- timecode_ids: z.ZodNullable<z.ZodArray<z.ZodString>>;
3251
+ timekeeping_timecode_ids: z.ZodNullable<z.ZodArray<z.ZodString>>;
2955
3252
  tracks_feature_allocations: z.ZodBoolean;
2956
3253
  requires_feature_allocation: z.ZodBoolean;
2957
3254
  max_one_feature_allocation: z.ZodBoolean;
@@ -3066,6 +3363,10 @@ export declare const zUserResponseObject: z.ZodObject<{
3066
3363
  training_annual_minutes: z.ZodNullable<z.ZodInt>;
3067
3364
  hire_date: z.ZodNullable<z.ZodString>;
3068
3365
  termination_date: z.ZodNullable<z.ZodString>;
3366
+ employment_window: z.ZodObject<{
3367
+ valid_from: z.ZodISODateTime;
3368
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
3369
+ }, z.core.$strip>;
3069
3370
  manager_user_id: z.ZodNullable<z.ZodString>;
3070
3371
  roles: z.ZodArray<z.ZodString>;
3071
3372
  company_user_pwa_info: z.ZodNullable<z.ZodObject<{
@@ -3155,7 +3456,6 @@ export declare const zUserParameters: z.ZodObject<{
3155
3456
  city: z.ZodOptional<z.ZodString>;
3156
3457
  state: z.ZodOptional<z.ZodString>;
3157
3458
  birth_date: z.ZodOptional<z.ZodString>;
3158
- external_id: z.ZodOptional<z.ZodString>;
3159
3459
  dol_apprentice_no: z.ZodOptional<z.ZodString>;
3160
3460
  winda_id: z.ZodOptional<z.ZodString>;
3161
3461
  linkedin_url: z.ZodOptional<z.ZodString>;
@@ -3293,6 +3593,13 @@ export declare const zUserCompanyCreateParameters: z.ZodObject<{
3293
3593
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
3294
3594
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
3295
3595
  }, z.core.$strip>;
3596
+ /**
3597
+ * Keyset pagination cursors for the collection.
3598
+ */
3599
+ export declare const zPage: z.ZodObject<{
3600
+ next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3601
+ current_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3602
+ }, z.core.$strip>;
3296
3603
  /**
3297
3604
  * Pagination metadata for a paged collection, holding the keyset cursors under `page`.
3298
3605
  */
@@ -3302,6 +3609,16 @@ export declare const zMeta: z.ZodObject<{
3302
3609
  current_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3303
3610
  }, z.core.$strip>>;
3304
3611
  }, z.core.$strip>;
3612
+ /**
3613
+ * Pagination metadata for a change-feed page, with the feed's safe polling watermark.
3614
+ */
3615
+ export declare const zDeltaMeta: z.ZodObject<{
3616
+ page: z.ZodObject<{
3617
+ next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3618
+ current_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3619
+ }, z.core.$strip>;
3620
+ complete_through: z.ZodISODateTime;
3621
+ }, z.core.$strip>;
3305
3622
  /**
3306
3623
  * Pagination links for navigating a paged collection.
3307
3624
  */
@@ -3328,9 +3645,9 @@ export declare const zTimeEntryIndexObject: z.ZodObject<{
3328
3645
  data: z.ZodOptional<z.ZodArray<z.ZodObject<{
3329
3646
  id: z.ZodString;
3330
3647
  user_id: z.ZodString;
3331
- time_card_id: z.ZodString;
3648
+ timekeeping_time_card_id: z.ZodString;
3332
3649
  job_id: z.ZodNullable<z.ZodString>;
3333
- timecode_id: z.ZodNullable<z.ZodString>;
3650
+ timekeeping_timecode_id: z.ZodNullable<z.ZodString>;
3334
3651
  state: z.ZodNullable<z.ZodString>;
3335
3652
  description: z.ZodNullable<z.ZodString>;
3336
3653
  clock_punched: z.ZodBoolean;
@@ -3350,7 +3667,7 @@ export declare const zTimeEntryIndexObject: z.ZodObject<{
3350
3667
  hourly_rate_cents: z.ZodNullable<z.ZodString>;
3351
3668
  currency: z.ZodNullable<z.ZodString>;
3352
3669
  hourly_rate_src_type: z.ZodNullable<z.ZodString>;
3353
- pay_period_id: z.ZodString;
3670
+ timekeeping_pay_period_id: z.ZodString;
3354
3671
  start_time: z.ZodISODateTime;
3355
3672
  end_time: z.ZodISODateTime;
3356
3673
  created_at: z.ZodISODateTime;
@@ -3430,10 +3747,11 @@ export declare const zFormSubmissionIndexObject: z.ZodObject<{
3430
3747
  */
3431
3748
  export declare const zTimeEntryDeltasResponse: z.ZodObject<{
3432
3749
  meta: z.ZodOptional<z.ZodObject<{
3433
- page: z.ZodOptional<z.ZodObject<{
3750
+ page: z.ZodObject<{
3434
3751
  next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3435
3752
  current_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3436
- }, z.core.$strip>>;
3753
+ }, z.core.$strip>;
3754
+ complete_through: z.ZodISODateTime;
3437
3755
  }, z.core.$strip>>;
3438
3756
  links: z.ZodOptional<z.ZodObject<{
3439
3757
  self: z.ZodOptional<z.ZodString>;
@@ -3467,7 +3785,7 @@ export declare const zPayPeriodsResponseObject: z.ZodObject<{
3467
3785
  }, z.core.$strip>;
3468
3786
  data: z.ZodArray<z.ZodObject<{
3469
3787
  id: z.ZodOptional<z.ZodString>;
3470
- pay_period_config_id: z.ZodOptional<z.ZodString>;
3788
+ timekeeping_pay_period_config_id: z.ZodOptional<z.ZodString>;
3471
3789
  pay_period_config_uid: z.ZodOptional<z.ZodString>;
3472
3790
  pay_date: z.ZodOptional<z.ZodISODate>;
3473
3791
  start_time: z.ZodOptional<z.ZodISODateTime>;
@@ -3495,11 +3813,11 @@ export declare const zJobTimeCardDaysResponseObject: z.ZodObject<{
3495
3813
  }, z.core.$strip>;
3496
3814
  data: z.ZodArray<z.ZodObject<{
3497
3815
  id: z.ZodString;
3498
- job_time_card_id: z.ZodString;
3816
+ timekeeping_job_time_card_id: z.ZodString;
3499
3817
  job_id: z.ZodString;
3500
- time_card_id: z.ZodString;
3818
+ timekeeping_time_card_id: z.ZodString;
3501
3819
  user_id: z.ZodString;
3502
- pay_period_id: z.ZodString;
3820
+ timekeeping_pay_period_id: z.ZodString;
3503
3821
  date: z.ZodISODate;
3504
3822
  minutes_worked: z.ZodInt;
3505
3823
  paid_minutes_worked: z.ZodInt;
@@ -3597,7 +3915,7 @@ export declare const zTimeCardsResponseObject: z.ZodObject<{
3597
3915
  data: z.ZodArray<z.ZodObject<{
3598
3916
  id: z.ZodString;
3599
3917
  user_id: z.ZodString;
3600
- pay_period_id: z.ZodString;
3918
+ timekeeping_pay_period_id: z.ZodString;
3601
3919
  locked: z.ZodBoolean;
3602
3920
  manager_time_card_approval_status: z.ZodEnum<{
3603
3921
  pending: "pending";
@@ -3657,8 +3975,8 @@ export declare const zPayrollRunsResponseObject: z.ZodObject<{
3657
3975
  data: z.ZodArray<z.ZodObject<{
3658
3976
  id: z.ZodString;
3659
3977
  company_id: z.ZodString;
3660
- pay_period_id: z.ZodNullable<z.ZodString>;
3661
- credential_id: z.ZodNullable<z.ZodString>;
3978
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
3979
+ payrolls_credential_id: z.ZodNullable<z.ZodString>;
3662
3980
  run_type: z.ZodEnum<{
3663
3981
  CORRECTION: "CORRECTION";
3664
3982
  ON_CYCLE: "ON_CYCLE";
@@ -3693,8 +4011,8 @@ export declare const zPaystubsResponseObject: z.ZodObject<{
3693
4011
  external_id: z.ZodNullable<z.ZodString>;
3694
4012
  check_number: z.ZodNullable<z.ZodString>;
3695
4013
  user_id: z.ZodString;
3696
- time_card_id: z.ZodNullable<z.ZodString>;
3697
- payroll_run_id: z.ZodString;
4014
+ timekeeping_time_card_id: z.ZodNullable<z.ZodString>;
4015
+ payrolls_payroll_run_id: z.ZodString;
3698
4016
  created_at: z.ZodISODateTime;
3699
4017
  updated_at: z.ZodISODateTime;
3700
4018
  }, z.core.$strip>>;
@@ -3716,9 +4034,9 @@ export declare const zPaystubLineItemsResponseObject: z.ZodObject<{
3716
4034
  }, z.core.$strip>;
3717
4035
  data: z.ZodArray<z.ZodObject<{
3718
4036
  id: z.ZodString;
3719
- external_map_id: z.ZodString;
3720
- paystub_id: z.ZodNullable<z.ZodString>;
3721
- pay_period_id: z.ZodNullable<z.ZodString>;
4037
+ payrolls_external_map_id: z.ZodString;
4038
+ payrolls_paystub_id: z.ZodNullable<z.ZodString>;
4039
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
3722
4040
  user_id: z.ZodNullable<z.ZodString>;
3723
4041
  external_map: z.ZodObject<{
3724
4042
  name: z.ZodOptional<z.ZodString>;
@@ -3867,7 +4185,7 @@ export declare const zWageDeterminationResponseObject: z.ZodObject<{
3867
4185
  modification_number: z.ZodInt;
3868
4186
  superseded_by_wage_determination_id: z.ZodNullable<z.ZodString>;
3869
4187
  publication_date: z.ZodISODate;
3870
- region_id: z.ZodString;
4188
+ boundaries_region_id: z.ZodString;
3871
4189
  valid_from: z.ZodISODateTime;
3872
4190
  valid_to: z.ZodNullable<z.ZodISODateTime>;
3873
4191
  created_at: z.ZodISODateTime;
@@ -3895,7 +4213,7 @@ export declare const zWageDeterminationsResponseObject: z.ZodObject<{
3895
4213
  modification_number: z.ZodInt;
3896
4214
  superseded_by_wage_determination_id: z.ZodNullable<z.ZodString>;
3897
4215
  publication_date: z.ZodISODate;
3898
- region_id: z.ZodString;
4216
+ boundaries_region_id: z.ZodString;
3899
4217
  valid_from: z.ZodISODateTime;
3900
4218
  valid_to: z.ZodNullable<z.ZodISODateTime>;
3901
4219
  created_at: z.ZodISODateTime;
@@ -3954,7 +4272,7 @@ export declare const zFederalJobWageDeterminationResponseObject: z.ZodObject<{
3954
4272
  id: z.ZodString;
3955
4273
  uid: z.ZodString;
3956
4274
  job_id: z.ZodString;
3957
- trade_id: z.ZodString;
4275
+ pwa_trade_id: z.ZodString;
3958
4276
  type: z.ZodEnum<{
3959
4277
  "Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
3960
4278
  }>;
@@ -4000,7 +4318,7 @@ export declare const zRegionalJobWageDeterminationResponseObject: z.ZodObject<{
4000
4318
  id: z.ZodString;
4001
4319
  uid: z.ZodString;
4002
4320
  job_id: z.ZodString;
4003
- trade_id: z.ZodString;
4321
+ pwa_trade_id: z.ZodString;
4004
4322
  type: z.ZodEnum<{
4005
4323
  "Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
4006
4324
  }>;
@@ -4021,7 +4339,7 @@ export declare const zJobWageDeterminationResponseObject: z.ZodDiscriminatedUnio
4021
4339
  id: z.ZodString;
4022
4340
  uid: z.ZodString;
4023
4341
  job_id: z.ZodString;
4024
- trade_id: z.ZodString;
4342
+ pwa_trade_id: z.ZodString;
4025
4343
  labor_classification: z.ZodString;
4026
4344
  hourly_rate_cents: z.ZodString;
4027
4345
  fringe_rate_cents: z.ZodString;
@@ -4042,7 +4360,7 @@ export declare const zJobWageDeterminationResponseObject: z.ZodDiscriminatedUnio
4042
4360
  id: z.ZodString;
4043
4361
  uid: z.ZodString;
4044
4362
  job_id: z.ZodString;
4045
- trade_id: z.ZodString;
4363
+ pwa_trade_id: z.ZodString;
4046
4364
  labor_classification: z.ZodString;
4047
4365
  hourly_rate_cents: z.ZodString;
4048
4366
  fringe_rate_cents: z.ZodString;
@@ -4058,7 +4376,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
4058
4376
  id: z.ZodString;
4059
4377
  uid: z.ZodString;
4060
4378
  job_id: z.ZodString;
4061
- trade_id: z.ZodString;
4379
+ pwa_trade_id: z.ZodString;
4062
4380
  type: z.ZodEnum<{
4063
4381
  "Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
4064
4382
  }>;
@@ -4086,7 +4404,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
4086
4404
  id: z.ZodString;
4087
4405
  uid: z.ZodString;
4088
4406
  job_id: z.ZodString;
4089
- trade_id: z.ZodString;
4407
+ pwa_trade_id: z.ZodString;
4090
4408
  labor_classification: z.ZodString;
4091
4409
  hourly_rate_cents: z.ZodString;
4092
4410
  fringe_rate_cents: z.ZodString;
@@ -4107,7 +4425,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
4107
4425
  id: z.ZodString;
4108
4426
  uid: z.ZodString;
4109
4427
  job_id: z.ZodString;
4110
- trade_id: z.ZodString;
4428
+ pwa_trade_id: z.ZodString;
4111
4429
  labor_classification: z.ZodString;
4112
4430
  hourly_rate_cents: z.ZodString;
4113
4431
  fringe_rate_cents: z.ZodString;
@@ -4124,7 +4442,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
4124
4442
  id: z.ZodString;
4125
4443
  uid: z.ZodString;
4126
4444
  job_id: z.ZodString;
4127
- trade_id: z.ZodString;
4445
+ pwa_trade_id: z.ZodString;
4128
4446
  type: z.ZodEnum<{
4129
4447
  "Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
4130
4448
  }>;
@@ -4146,7 +4464,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
4146
4464
  id: z.ZodString;
4147
4465
  uid: z.ZodString;
4148
4466
  job_id: z.ZodString;
4149
- trade_id: z.ZodString;
4467
+ pwa_trade_id: z.ZodString;
4150
4468
  labor_classification: z.ZodString;
4151
4469
  hourly_rate_cents: z.ZodString;
4152
4470
  fringe_rate_cents: z.ZodString;
@@ -4167,7 +4485,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
4167
4485
  id: z.ZodString;
4168
4486
  uid: z.ZodString;
4169
4487
  job_id: z.ZodString;
4170
- trade_id: z.ZodString;
4488
+ pwa_trade_id: z.ZodString;
4171
4489
  labor_classification: z.ZodString;
4172
4490
  hourly_rate_cents: z.ZodString;
4173
4491
  fringe_rate_cents: z.ZodString;
@@ -4184,7 +4502,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4184
4502
  id: z.ZodString;
4185
4503
  uid: z.ZodString;
4186
4504
  job_id: z.ZodString;
4187
- trade_id: z.ZodString;
4505
+ pwa_trade_id: z.ZodString;
4188
4506
  labor_classification: z.ZodString;
4189
4507
  hourly_rate_cents: z.ZodString;
4190
4508
  fringe_rate_cents: z.ZodString;
@@ -4209,7 +4527,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4209
4527
  id: z.ZodString;
4210
4528
  uid: z.ZodString;
4211
4529
  job_id: z.ZodString;
4212
- trade_id: z.ZodString;
4530
+ pwa_trade_id: z.ZodString;
4213
4531
  labor_classification: z.ZodString;
4214
4532
  hourly_rate_cents: z.ZodString;
4215
4533
  fringe_rate_cents: z.ZodString;
@@ -4230,7 +4548,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4230
4548
  id: z.ZodString;
4231
4549
  uid: z.ZodString;
4232
4550
  job_id: z.ZodString;
4233
- trade_id: z.ZodString;
4551
+ pwa_trade_id: z.ZodString;
4234
4552
  labor_classification: z.ZodString;
4235
4553
  hourly_rate_cents: z.ZodString;
4236
4554
  fringe_rate_cents: z.ZodString;
@@ -4247,7 +4565,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4247
4565
  id: z.ZodString;
4248
4566
  uid: z.ZodString;
4249
4567
  job_id: z.ZodString;
4250
- trade_id: z.ZodString;
4568
+ pwa_trade_id: z.ZodString;
4251
4569
  labor_classification: z.ZodString;
4252
4570
  hourly_rate_cents: z.ZodString;
4253
4571
  fringe_rate_cents: z.ZodString;
@@ -4266,7 +4584,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4266
4584
  id: z.ZodString;
4267
4585
  uid: z.ZodString;
4268
4586
  job_id: z.ZodString;
4269
- trade_id: z.ZodString;
4587
+ pwa_trade_id: z.ZodString;
4270
4588
  labor_classification: z.ZodString;
4271
4589
  hourly_rate_cents: z.ZodString;
4272
4590
  fringe_rate_cents: z.ZodString;
@@ -4287,7 +4605,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4287
4605
  id: z.ZodString;
4288
4606
  uid: z.ZodString;
4289
4607
  job_id: z.ZodString;
4290
- trade_id: z.ZodString;
4608
+ pwa_trade_id: z.ZodString;
4291
4609
  labor_classification: z.ZodString;
4292
4610
  hourly_rate_cents: z.ZodString;
4293
4611
  fringe_rate_cents: z.ZodString;
@@ -4309,7 +4627,7 @@ export declare const zFederalJobWageDeterminationParameters: z.ZodObject<{
4309
4627
  "Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
4310
4628
  }>;
4311
4629
  labor_classification: z.ZodString;
4312
- trade_id: z.ZodString;
4630
+ pwa_trade_id: z.ZodString;
4313
4631
  hourly_rate_cents: z.ZodString;
4314
4632
  fringe_rate_cents: z.ZodString;
4315
4633
  class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4329,7 +4647,7 @@ export declare const zRegionalJobWageDeterminationParameters: z.ZodObject<{
4329
4647
  "Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
4330
4648
  }>;
4331
4649
  labor_classification: z.ZodString;
4332
- trade_id: z.ZodString;
4650
+ pwa_trade_id: z.ZodString;
4333
4651
  hourly_rate_cents: z.ZodString;
4334
4652
  fringe_rate_cents: z.ZodOptional<z.ZodString>;
4335
4653
  general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4340,7 +4658,7 @@ export declare const zRegionalJobWageDeterminationParameters: z.ZodObject<{
4340
4658
  */
4341
4659
  export declare const zJobWageDeterminationParameters: z.ZodDiscriminatedUnion<[z.ZodObject<{
4342
4660
  labor_classification: z.ZodString;
4343
- trade_id: z.ZodString;
4661
+ pwa_trade_id: z.ZodString;
4344
4662
  hourly_rate_cents: z.ZodString;
4345
4663
  fringe_rate_cents: z.ZodString;
4346
4664
  class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4354,7 +4672,7 @@ export declare const zJobWageDeterminationParameters: z.ZodDiscriminatedUnion<[z
4354
4672
  type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
4355
4673
  }, z.core.$strip>, z.ZodObject<{
4356
4674
  labor_classification: z.ZodString;
4357
- trade_id: z.ZodString;
4675
+ pwa_trade_id: z.ZodString;
4358
4676
  hourly_rate_cents: z.ZodString;
4359
4677
  fringe_rate_cents: z.ZodOptional<z.ZodString>;
4360
4678
  general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4725,7 +5043,7 @@ export declare const zAssetsFormAssignmentTriggerResponseObject: z.ZodObject<{
4725
5043
  tz_name: z.ZodString;
4726
5044
  time_of_day_due: z.ZodString;
4727
5045
  assigned_user_ids: z.ZodArray<z.ZodString>;
4728
- product_ids: z.ZodArray<z.ZodString>;
5046
+ assets_product_ids: z.ZodArray<z.ZodString>;
4729
5047
  created_at: z.ZodISODateTime;
4730
5048
  updated_at: z.ZodISODateTime;
4731
5049
  }, z.core.$strip>;
@@ -4763,7 +5081,7 @@ export declare const zAssetsFormAssignmentTriggerParameters: z.ZodObject<{
4763
5081
  day_of_week_due: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
4764
5082
  day_of_month_due: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
4765
5083
  assigned_user_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
4766
- product_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
5084
+ assets_product_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
4767
5085
  }, z.core.$strip>;
4768
5086
  /**
4769
5087
  * A file attached to an asset — an item or product image, or a service-event attachment. Uploaded through the direct-upload flow; the response carries a URL to download it.
@@ -4796,6 +5114,7 @@ export declare const zAssetsProductResponseObject: z.ZodObject<{
4796
5114
  pair: "pair";
4797
5115
  pack: "pack";
4798
5116
  }>;
5117
+ container: z.ZodBoolean;
4799
5118
  serialized: z.ZodBoolean;
4800
5119
  assets_category_id: z.ZodNullable<z.ZodString>;
4801
5120
  attributes: z.ZodArray<z.ZodObject<{
@@ -4841,6 +5160,15 @@ export declare const zAssetsItemResponseObject: z.ZodObject<{
4841
5160
  currency: z.ZodNullable<z.ZodString>;
4842
5161
  external_id: z.ZodNullable<z.ZodString>;
4843
5162
  external_system_url: z.ZodNullable<z.ZodString>;
5163
+ container: z.ZodBoolean;
5164
+ contents: z.ZodArray<z.ZodObject<{
5165
+ item_id: z.ZodString;
5166
+ quantity: z.ZodInt;
5167
+ }, z.core.$strip>>;
5168
+ containers: z.ZodArray<z.ZodObject<{
5169
+ container_item_id: z.ZodString;
5170
+ quantity: z.ZodInt;
5171
+ }, z.core.$strip>>;
4844
5172
  images: z.ZodArray<z.ZodObject<{
4845
5173
  id: z.ZodString;
4846
5174
  file: z.ZodNullable<z.ZodObject<{
@@ -4884,6 +5212,7 @@ export declare const zAssetsProductParameters: z.ZodObject<{
4884
5212
  pair: "pair";
4885
5213
  pack: "pack";
4886
5214
  }>>;
5215
+ container: z.ZodOptional<z.ZodBoolean>;
4887
5216
  attribute_values: z.ZodOptional<z.ZodArray<z.ZodObject<{
4888
5217
  assets_attribute_id: z.ZodString;
4889
5218
  value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4913,6 +5242,7 @@ export declare const zAssetsProductUpdateParameters: z.ZodObject<{
4913
5242
  pair: "pair";
4914
5243
  pack: "pack";
4915
5244
  }>>;
5245
+ container: z.ZodOptional<z.ZodBoolean>;
4916
5246
  attribute_values: z.ZodOptional<z.ZodArray<z.ZodObject<{
4917
5247
  assets_attribute_id: z.ZodString;
4918
5248
  value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4948,6 +5278,7 @@ export declare const zAssetsItemParameters: z.ZodObject<{
4948
5278
  }, z.core.$strip>>>;
4949
5279
  assets_site_id: z.ZodOptional<z.ZodString>;
4950
5280
  user_id: z.ZodOptional<z.ZodString>;
5281
+ container_item_id: z.ZodOptional<z.ZodString>;
4951
5282
  performed_by_user_id: z.ZodString;
4952
5283
  }, z.core.$strip>;
4953
5284
  /**
@@ -5087,7 +5418,8 @@ export declare const zAssetsTransactionEventResponseObject: z.ZodObject<{
5087
5418
  id: z.ZodString;
5088
5419
  assets_site_id: z.ZodNullable<z.ZodString>;
5089
5420
  assignee_id: z.ZodNullable<z.ZodString>;
5090
- transfer_id: z.ZodNullable<z.ZodString>;
5421
+ container_item_id: z.ZodNullable<z.ZodString>;
5422
+ assets_transfer_id: z.ZodNullable<z.ZodString>;
5091
5423
  performed_by_user_id: z.ZodString;
5092
5424
  direction: z.ZodEnum<{
5093
5425
  inbound: "inbound";
@@ -5140,7 +5472,8 @@ export declare const zAssetsItemEventResponseObject: z.ZodDiscriminatedUnion<[z.
5140
5472
  id: z.ZodString;
5141
5473
  assets_site_id: z.ZodNullable<z.ZodString>;
5142
5474
  assignee_id: z.ZodNullable<z.ZodString>;
5143
- transfer_id: z.ZodNullable<z.ZodString>;
5475
+ container_item_id: z.ZodNullable<z.ZodString>;
5476
+ assets_transfer_id: z.ZodNullable<z.ZodString>;
5144
5477
  performed_by_user_id: z.ZodString;
5145
5478
  direction: z.ZodEnum<{
5146
5479
  inbound: "inbound";
@@ -5310,7 +5643,7 @@ export declare const zAssetsServiceScheduleTemplateParameters: z.ZodObject<{
5310
5643
  performed_by_user_id: z.ZodString;
5311
5644
  }, z.core.$strip>;
5312
5645
  /**
5313
- * A completed movement of item stock between two holders site-to-site, site-to-user, user-to-site, or user-to-user. Each line moves one item; applying the transfer records paired outbound and inbound transactions and updates the on-hand and custody counts. Transfers created through this API are always completed.
5646
+ * A completed movement of item stock between two holders, each a site, a user, or a container. Each line moves one item; applying the transfer records paired outbound and inbound transactions and updates the on-hand, custody, and containment counts. Transfers created through this API are always completed. One-sided moves (placing or removing an item with only one endpoint) record transactions but no transfer, and so are not represented by this resource.
5314
5647
  */
5315
5648
  export declare const zAssetsTransferResponseObject: z.ZodObject<{
5316
5649
  id: z.ZodString;
@@ -5323,8 +5656,10 @@ export declare const zAssetsTransferResponseObject: z.ZodObject<{
5323
5656
  }>;
5324
5657
  from_assets_site_id: z.ZodNullable<z.ZodString>;
5325
5658
  from_user_id: z.ZodNullable<z.ZodString>;
5659
+ from_container_item_id: z.ZodNullable<z.ZodString>;
5326
5660
  to_assets_site_id: z.ZodNullable<z.ZodString>;
5327
5661
  to_user_id: z.ZodNullable<z.ZodString>;
5662
+ to_container_item_id: z.ZodNullable<z.ZodString>;
5328
5663
  initiated_by_user_id: z.ZodString;
5329
5664
  completed_at: z.ZodNullable<z.ZodISODateTime>;
5330
5665
  transfer_lines: z.ZodArray<z.ZodObject<{
@@ -5336,13 +5671,15 @@ export declare const zAssetsTransferResponseObject: z.ZodObject<{
5336
5671
  updated_at: z.ZodISODateTime;
5337
5672
  }, z.core.$strip>;
5338
5673
  /**
5339
- * Create a stock transfer. Give exactly one source (from_assets_site_id or from_user_id) and one destination (to_assets_site_id or to_user_id); the two must differ. The transfer is applied immediately, so each item's available quantity at the source must cover the amount moved.
5674
+ * Move item stock. Each endpoint is a site, a user, or a container — give at most one per side. With both a source and a destination this is a two-sided transfer (returns the created transfer, 201). With a single open end it is a one-sided move — placing an unplaced item (destination only) or removing it from its holder (source only) which records transactions but no transfer and returns 204. Moves are applied immediately, so the source must hold enough of each item.
5340
5675
  */
5341
5676
  export declare const zAssetsTransferParameters: z.ZodObject<{
5342
5677
  from_assets_site_id: z.ZodOptional<z.ZodString>;
5343
5678
  from_user_id: z.ZodOptional<z.ZodString>;
5679
+ from_container_item_id: z.ZodOptional<z.ZodString>;
5344
5680
  to_assets_site_id: z.ZodOptional<z.ZodString>;
5345
5681
  to_user_id: z.ZodOptional<z.ZodString>;
5682
+ to_container_item_id: z.ZodOptional<z.ZodString>;
5346
5683
  performed_by_user_id: z.ZodString;
5347
5684
  line_items: z.ZodArray<z.ZodObject<{
5348
5685
  assets_item_id: z.ZodString;
@@ -6584,7 +6921,8 @@ export declare const zListEventsResponse: z.ZodObject<{
6584
6921
  id: z.ZodString;
6585
6922
  assets_site_id: z.ZodNullable<z.ZodString>;
6586
6923
  assignee_id: z.ZodNullable<z.ZodString>;
6587
- transfer_id: z.ZodNullable<z.ZodString>;
6924
+ container_item_id: z.ZodNullable<z.ZodString>;
6925
+ assets_transfer_id: z.ZodNullable<z.ZodString>;
6588
6926
  performed_by_user_id: z.ZodString;
6589
6927
  direction: z.ZodEnum<{
6590
6928
  inbound: "inbound";
@@ -6636,7 +6974,8 @@ export declare const zGetEventResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
6636
6974
  id: z.ZodString;
6637
6975
  assets_site_id: z.ZodNullable<z.ZodString>;
6638
6976
  assignee_id: z.ZodNullable<z.ZodString>;
6639
- transfer_id: z.ZodNullable<z.ZodString>;
6977
+ container_item_id: z.ZodNullable<z.ZodString>;
6978
+ assets_transfer_id: z.ZodNullable<z.ZodString>;
6640
6979
  performed_by_user_id: z.ZodString;
6641
6980
  direction: z.ZodEnum<{
6642
6981
  inbound: "inbound";
@@ -6728,7 +7067,7 @@ export declare const zListFormAssignmentTriggersResponse: z.ZodObject<{
6728
7067
  tz_name: z.ZodString;
6729
7068
  time_of_day_due: z.ZodString;
6730
7069
  assigned_user_ids: z.ZodArray<z.ZodString>;
6731
- product_ids: z.ZodArray<z.ZodString>;
7070
+ assets_product_ids: z.ZodArray<z.ZodString>;
6732
7071
  created_at: z.ZodISODateTime;
6733
7072
  updated_at: z.ZodISODateTime;
6734
7073
  }, z.core.$strip>>>;
@@ -6764,7 +7103,7 @@ export declare const zCreateFormAssignmentTriggerBody: z.ZodObject<{
6764
7103
  day_of_week_due: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
6765
7104
  day_of_month_due: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
6766
7105
  assigned_user_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
6767
- product_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
7106
+ assets_product_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
6768
7107
  }, z.core.$strip>;
6769
7108
  /**
6770
7109
  * Created (custom assignees, products, recurring, day-of-week)
@@ -6802,7 +7141,7 @@ export declare const zCreateFormAssignmentTriggerResponse: z.ZodObject<{
6802
7141
  tz_name: z.ZodString;
6803
7142
  time_of_day_due: z.ZodString;
6804
7143
  assigned_user_ids: z.ZodArray<z.ZodString>;
6805
- product_ids: z.ZodArray<z.ZodString>;
7144
+ assets_product_ids: z.ZodArray<z.ZodString>;
6806
7145
  created_at: z.ZodISODateTime;
6807
7146
  updated_at: z.ZodISODateTime;
6808
7147
  }, z.core.$strip>;
@@ -6845,7 +7184,7 @@ export declare const zDeleteFormAssignmentTriggerResponse: z.ZodObject<{
6845
7184
  tz_name: z.ZodString;
6846
7185
  time_of_day_due: z.ZodString;
6847
7186
  assigned_user_ids: z.ZodArray<z.ZodString>;
6848
- product_ids: z.ZodArray<z.ZodString>;
7187
+ assets_product_ids: z.ZodArray<z.ZodString>;
6849
7188
  created_at: z.ZodISODateTime;
6850
7189
  updated_at: z.ZodISODateTime;
6851
7190
  }, z.core.$strip>;
@@ -6888,7 +7227,7 @@ export declare const zGetFormAssignmentTriggerResponse: z.ZodObject<{
6888
7227
  tz_name: z.ZodString;
6889
7228
  time_of_day_due: z.ZodString;
6890
7229
  assigned_user_ids: z.ZodArray<z.ZodString>;
6891
- product_ids: z.ZodArray<z.ZodString>;
7230
+ assets_product_ids: z.ZodArray<z.ZodString>;
6892
7231
  created_at: z.ZodISODateTime;
6893
7232
  updated_at: z.ZodISODateTime;
6894
7233
  }, z.core.$strip>;
@@ -6923,7 +7262,7 @@ export declare const zUpdateFormAssignmentTriggerBody: z.ZodObject<{
6923
7262
  day_of_week_due: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
6924
7263
  day_of_month_due: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
6925
7264
  assigned_user_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
6926
- product_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
7265
+ assets_product_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
6927
7266
  }, z.core.$strip>;
6928
7267
  export declare const zUpdateFormAssignmentTriggerPath: z.ZodObject<{
6929
7268
  id: z.ZodString;
@@ -6964,7 +7303,7 @@ export declare const zUpdateFormAssignmentTriggerResponse: z.ZodObject<{
6964
7303
  tz_name: z.ZodString;
6965
7304
  time_of_day_due: z.ZodString;
6966
7305
  assigned_user_ids: z.ZodArray<z.ZodString>;
6967
- product_ids: z.ZodArray<z.ZodString>;
7306
+ assets_product_ids: z.ZodArray<z.ZodString>;
6968
7307
  created_at: z.ZodISODateTime;
6969
7308
  updated_at: z.ZodISODateTime;
6970
7309
  }, z.core.$strip>;
@@ -7017,6 +7356,12 @@ export declare const zGetInventoryResponse: z.ZodObject<{
7017
7356
  export declare const zListItemsQuery: z.ZodObject<{
7018
7357
  'filter[assets_product_id]': z.ZodOptional<z.ZodString>;
7019
7358
  'filter[type]': z.ZodOptional<z.ZodString>;
7359
+ 'filter[assets_site_id]': z.ZodOptional<z.ZodString>;
7360
+ 'filter[user_id]': z.ZodOptional<z.ZodString>;
7361
+ 'filter[assets_category_id]': z.ZodOptional<z.ZodString>;
7362
+ 'filter[container_item_id]': z.ZodOptional<z.ZodString>;
7363
+ 'filter[status]': z.ZodOptional<z.ZodString>;
7364
+ 'filter[service]': z.ZodOptional<z.ZodString>;
7020
7365
  filter: z.ZodOptional<z.ZodString>;
7021
7366
  'filter[unexpected]': z.ZodOptional<z.ZodString>;
7022
7367
  }, z.core.$strip>;
@@ -7056,6 +7401,15 @@ export declare const zListItemsResponse: z.ZodObject<{
7056
7401
  currency: z.ZodNullable<z.ZodString>;
7057
7402
  external_id: z.ZodNullable<z.ZodString>;
7058
7403
  external_system_url: z.ZodNullable<z.ZodString>;
7404
+ container: z.ZodBoolean;
7405
+ contents: z.ZodArray<z.ZodObject<{
7406
+ item_id: z.ZodString;
7407
+ quantity: z.ZodInt;
7408
+ }, z.core.$strip>>;
7409
+ containers: z.ZodArray<z.ZodObject<{
7410
+ container_item_id: z.ZodString;
7411
+ quantity: z.ZodInt;
7412
+ }, z.core.$strip>>;
7059
7413
  images: z.ZodArray<z.ZodObject<{
7060
7414
  id: z.ZodString;
7061
7415
  file: z.ZodNullable<z.ZodObject<{
@@ -7092,6 +7446,7 @@ export declare const zCreateItemBody: z.ZodObject<{
7092
7446
  }, z.core.$strip>>>;
7093
7447
  assets_site_id: z.ZodOptional<z.ZodString>;
7094
7448
  user_id: z.ZodOptional<z.ZodString>;
7449
+ container_item_id: z.ZodOptional<z.ZodString>;
7095
7450
  performed_by_user_id: z.ZodString;
7096
7451
  }, z.core.$strip>;
7097
7452
  /**
@@ -7118,6 +7473,15 @@ export declare const zCreateItemResponse: z.ZodObject<{
7118
7473
  currency: z.ZodNullable<z.ZodString>;
7119
7474
  external_id: z.ZodNullable<z.ZodString>;
7120
7475
  external_system_url: z.ZodNullable<z.ZodString>;
7476
+ container: z.ZodBoolean;
7477
+ contents: z.ZodArray<z.ZodObject<{
7478
+ item_id: z.ZodString;
7479
+ quantity: z.ZodInt;
7480
+ }, z.core.$strip>>;
7481
+ containers: z.ZodArray<z.ZodObject<{
7482
+ container_item_id: z.ZodString;
7483
+ quantity: z.ZodInt;
7484
+ }, z.core.$strip>>;
7121
7485
  images: z.ZodArray<z.ZodObject<{
7122
7486
  id: z.ZodString;
7123
7487
  file: z.ZodNullable<z.ZodObject<{
@@ -7159,6 +7523,15 @@ export declare const zDeleteItemResponse: z.ZodObject<{
7159
7523
  currency: z.ZodNullable<z.ZodString>;
7160
7524
  external_id: z.ZodNullable<z.ZodString>;
7161
7525
  external_system_url: z.ZodNullable<z.ZodString>;
7526
+ container: z.ZodBoolean;
7527
+ contents: z.ZodArray<z.ZodObject<{
7528
+ item_id: z.ZodString;
7529
+ quantity: z.ZodInt;
7530
+ }, z.core.$strip>>;
7531
+ containers: z.ZodArray<z.ZodObject<{
7532
+ container_item_id: z.ZodString;
7533
+ quantity: z.ZodInt;
7534
+ }, z.core.$strip>>;
7162
7535
  images: z.ZodArray<z.ZodObject<{
7163
7536
  id: z.ZodString;
7164
7537
  file: z.ZodNullable<z.ZodObject<{
@@ -7200,6 +7573,15 @@ export declare const zGetItemResponse: z.ZodObject<{
7200
7573
  currency: z.ZodNullable<z.ZodString>;
7201
7574
  external_id: z.ZodNullable<z.ZodString>;
7202
7575
  external_system_url: z.ZodNullable<z.ZodString>;
7576
+ container: z.ZodBoolean;
7577
+ contents: z.ZodArray<z.ZodObject<{
7578
+ item_id: z.ZodString;
7579
+ quantity: z.ZodInt;
7580
+ }, z.core.$strip>>;
7581
+ containers: z.ZodArray<z.ZodObject<{
7582
+ container_item_id: z.ZodString;
7583
+ quantity: z.ZodInt;
7584
+ }, z.core.$strip>>;
7203
7585
  images: z.ZodArray<z.ZodObject<{
7204
7586
  id: z.ZodString;
7205
7587
  file: z.ZodNullable<z.ZodObject<{
@@ -7235,6 +7617,7 @@ export declare const zUpdateItemBody: z.ZodObject<{
7235
7617
  }, z.core.$strip>>>;
7236
7618
  assets_site_id: z.ZodOptional<z.ZodString>;
7237
7619
  user_id: z.ZodOptional<z.ZodString>;
7620
+ container_item_id: z.ZodOptional<z.ZodString>;
7238
7621
  performed_by_user_id: z.ZodString;
7239
7622
  }, z.core.$strip>;
7240
7623
  export declare const zUpdateItemPath: z.ZodObject<{
@@ -7264,6 +7647,15 @@ export declare const zUpdateItemResponse: z.ZodObject<{
7264
7647
  currency: z.ZodNullable<z.ZodString>;
7265
7648
  external_id: z.ZodNullable<z.ZodString>;
7266
7649
  external_system_url: z.ZodNullable<z.ZodString>;
7650
+ container: z.ZodBoolean;
7651
+ contents: z.ZodArray<z.ZodObject<{
7652
+ item_id: z.ZodString;
7653
+ quantity: z.ZodInt;
7654
+ }, z.core.$strip>>;
7655
+ containers: z.ZodArray<z.ZodObject<{
7656
+ container_item_id: z.ZodString;
7657
+ quantity: z.ZodInt;
7658
+ }, z.core.$strip>>;
7267
7659
  images: z.ZodArray<z.ZodObject<{
7268
7660
  id: z.ZodString;
7269
7661
  file: z.ZodNullable<z.ZodObject<{
@@ -7305,6 +7697,15 @@ export declare const zUnretireItemResponse: z.ZodObject<{
7305
7697
  currency: z.ZodNullable<z.ZodString>;
7306
7698
  external_id: z.ZodNullable<z.ZodString>;
7307
7699
  external_system_url: z.ZodNullable<z.ZodString>;
7700
+ container: z.ZodBoolean;
7701
+ contents: z.ZodArray<z.ZodObject<{
7702
+ item_id: z.ZodString;
7703
+ quantity: z.ZodInt;
7704
+ }, z.core.$strip>>;
7705
+ containers: z.ZodArray<z.ZodObject<{
7706
+ container_item_id: z.ZodString;
7707
+ quantity: z.ZodInt;
7708
+ }, z.core.$strip>>;
7308
7709
  images: z.ZodArray<z.ZodObject<{
7309
7710
  id: z.ZodString;
7310
7711
  file: z.ZodNullable<z.ZodObject<{
@@ -7349,6 +7750,15 @@ export declare const zRetireItemResponse: z.ZodObject<{
7349
7750
  currency: z.ZodNullable<z.ZodString>;
7350
7751
  external_id: z.ZodNullable<z.ZodString>;
7351
7752
  external_system_url: z.ZodNullable<z.ZodString>;
7753
+ container: z.ZodBoolean;
7754
+ contents: z.ZodArray<z.ZodObject<{
7755
+ item_id: z.ZodString;
7756
+ quantity: z.ZodInt;
7757
+ }, z.core.$strip>>;
7758
+ containers: z.ZodArray<z.ZodObject<{
7759
+ container_item_id: z.ZodString;
7760
+ quantity: z.ZodInt;
7761
+ }, z.core.$strip>>;
7352
7762
  images: z.ZodArray<z.ZodObject<{
7353
7763
  id: z.ZodString;
7354
7764
  file: z.ZodNullable<z.ZodObject<{
@@ -8200,6 +8610,7 @@ export declare const zListProductsResponse: z.ZodObject<{
8200
8610
  pair: "pair";
8201
8611
  pack: "pack";
8202
8612
  }>;
8613
+ container: z.ZodBoolean;
8203
8614
  serialized: z.ZodBoolean;
8204
8615
  assets_category_id: z.ZodNullable<z.ZodString>;
8205
8616
  attributes: z.ZodArray<z.ZodObject<{
@@ -8240,6 +8651,7 @@ export declare const zCreateProductBody: z.ZodObject<{
8240
8651
  pair: "pair";
8241
8652
  pack: "pack";
8242
8653
  }>>;
8654
+ container: z.ZodOptional<z.ZodBoolean>;
8243
8655
  attribute_values: z.ZodOptional<z.ZodArray<z.ZodObject<{
8244
8656
  assets_attribute_id: z.ZodString;
8245
8657
  value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8269,6 +8681,7 @@ export declare const zCreateProductResponse: z.ZodObject<{
8269
8681
  pair: "pair";
8270
8682
  pack: "pack";
8271
8683
  }>;
8684
+ container: z.ZodBoolean;
8272
8685
  serialized: z.ZodBoolean;
8273
8686
  assets_category_id: z.ZodNullable<z.ZodString>;
8274
8687
  attributes: z.ZodArray<z.ZodObject<{
@@ -8310,6 +8723,7 @@ export declare const zDeleteProductResponse: z.ZodObject<{
8310
8723
  pair: "pair";
8311
8724
  pack: "pack";
8312
8725
  }>;
8726
+ container: z.ZodBoolean;
8313
8727
  serialized: z.ZodBoolean;
8314
8728
  assets_category_id: z.ZodNullable<z.ZodString>;
8315
8729
  attributes: z.ZodArray<z.ZodObject<{
@@ -8351,6 +8765,7 @@ export declare const zGetProductResponse: z.ZodObject<{
8351
8765
  pair: "pair";
8352
8766
  pack: "pack";
8353
8767
  }>;
8768
+ container: z.ZodBoolean;
8354
8769
  serialized: z.ZodBoolean;
8355
8770
  assets_category_id: z.ZodNullable<z.ZodString>;
8356
8771
  attributes: z.ZodArray<z.ZodObject<{
@@ -8386,6 +8801,7 @@ export declare const zUpdateProductBody: z.ZodObject<{
8386
8801
  pair: "pair";
8387
8802
  pack: "pack";
8388
8803
  }>>;
8804
+ container: z.ZodOptional<z.ZodBoolean>;
8389
8805
  attribute_values: z.ZodOptional<z.ZodArray<z.ZodObject<{
8390
8806
  assets_attribute_id: z.ZodString;
8391
8807
  value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8417,6 +8833,7 @@ export declare const zUpdateProductResponse: z.ZodObject<{
8417
8833
  pair: "pair";
8418
8834
  pack: "pack";
8419
8835
  }>;
8836
+ container: z.ZodBoolean;
8420
8837
  serialized: z.ZodBoolean;
8421
8838
  assets_category_id: z.ZodNullable<z.ZodString>;
8422
8839
  attributes: z.ZodArray<z.ZodObject<{
@@ -8463,6 +8880,7 @@ export declare const zAdjustProductInventoryResponse: z.ZodObject<{
8463
8880
  pair: "pair";
8464
8881
  pack: "pack";
8465
8882
  }>;
8883
+ container: z.ZodBoolean;
8466
8884
  serialized: z.ZodBoolean;
8467
8885
  assets_category_id: z.ZodNullable<z.ZodString>;
8468
8886
  attributes: z.ZodArray<z.ZodObject<{
@@ -8509,6 +8927,7 @@ export declare const zRestockProductResponse: z.ZodObject<{
8509
8927
  pair: "pair";
8510
8928
  pack: "pack";
8511
8929
  }>;
8930
+ container: z.ZodBoolean;
8512
8931
  serialized: z.ZodBoolean;
8513
8932
  assets_category_id: z.ZodNullable<z.ZodString>;
8514
8933
  attributes: z.ZodArray<z.ZodObject<{
@@ -8997,8 +9416,10 @@ export declare const zListTransfersResponse: z.ZodObject<{
8997
9416
  }>;
8998
9417
  from_assets_site_id: z.ZodNullable<z.ZodString>;
8999
9418
  from_user_id: z.ZodNullable<z.ZodString>;
9419
+ from_container_item_id: z.ZodNullable<z.ZodString>;
9000
9420
  to_assets_site_id: z.ZodNullable<z.ZodString>;
9001
9421
  to_user_id: z.ZodNullable<z.ZodString>;
9422
+ to_container_item_id: z.ZodNullable<z.ZodString>;
9002
9423
  initiated_by_user_id: z.ZodString;
9003
9424
  completed_at: z.ZodNullable<z.ZodISODateTime>;
9004
9425
  transfer_lines: z.ZodArray<z.ZodObject<{
@@ -9013,18 +9434,17 @@ export declare const zListTransfersResponse: z.ZodObject<{
9013
9434
  export declare const zCreateTransferBody: z.ZodObject<{
9014
9435
  from_assets_site_id: z.ZodOptional<z.ZodString>;
9015
9436
  from_user_id: z.ZodOptional<z.ZodString>;
9437
+ from_container_item_id: z.ZodOptional<z.ZodString>;
9016
9438
  to_assets_site_id: z.ZodOptional<z.ZodString>;
9017
9439
  to_user_id: z.ZodOptional<z.ZodString>;
9440
+ to_container_item_id: z.ZodOptional<z.ZodString>;
9018
9441
  performed_by_user_id: z.ZodString;
9019
9442
  line_items: z.ZodArray<z.ZodObject<{
9020
9443
  assets_item_id: z.ZodString;
9021
9444
  quantity: z.ZodInt;
9022
9445
  }, z.core.$strip>>;
9023
9446
  }, z.core.$strip>;
9024
- /**
9025
- * Created
9026
- */
9027
- export declare const zCreateTransferResponse: z.ZodObject<{
9447
+ export declare const zCreateTransferResponse: z.ZodUnion<readonly [z.ZodObject<{
9028
9448
  id: z.ZodString;
9029
9449
  company_id: z.ZodString;
9030
9450
  status: z.ZodEnum<{
@@ -9035,8 +9455,10 @@ export declare const zCreateTransferResponse: z.ZodObject<{
9035
9455
  }>;
9036
9456
  from_assets_site_id: z.ZodNullable<z.ZodString>;
9037
9457
  from_user_id: z.ZodNullable<z.ZodString>;
9458
+ from_container_item_id: z.ZodNullable<z.ZodString>;
9038
9459
  to_assets_site_id: z.ZodNullable<z.ZodString>;
9039
9460
  to_user_id: z.ZodNullable<z.ZodString>;
9461
+ to_container_item_id: z.ZodNullable<z.ZodString>;
9040
9462
  initiated_by_user_id: z.ZodString;
9041
9463
  completed_at: z.ZodNullable<z.ZodISODateTime>;
9042
9464
  transfer_lines: z.ZodArray<z.ZodObject<{
@@ -9046,7 +9468,7 @@ export declare const zCreateTransferResponse: z.ZodObject<{
9046
9468
  }, z.core.$strip>>;
9047
9469
  created_at: z.ZodISODateTime;
9048
9470
  updated_at: z.ZodISODateTime;
9049
- }, z.core.$strip>;
9471
+ }, z.core.$strip>, z.ZodVoid]>;
9050
9472
  export declare const zGetTransferPath: z.ZodObject<{
9051
9473
  id: z.ZodString;
9052
9474
  }, z.core.$strip>;
@@ -9064,8 +9486,10 @@ export declare const zGetTransferResponse: z.ZodObject<{
9064
9486
  }>;
9065
9487
  from_assets_site_id: z.ZodNullable<z.ZodString>;
9066
9488
  from_user_id: z.ZodNullable<z.ZodString>;
9489
+ from_container_item_id: z.ZodNullable<z.ZodString>;
9067
9490
  to_assets_site_id: z.ZodNullable<z.ZodString>;
9068
9491
  to_user_id: z.ZodNullable<z.ZodString>;
9492
+ to_container_item_id: z.ZodNullable<z.ZodString>;
9069
9493
  initiated_by_user_id: z.ZodString;
9070
9494
  completed_at: z.ZodNullable<z.ZodISODateTime>;
9071
9495
  transfer_lines: z.ZodArray<z.ZodObject<{
@@ -10080,6 +10504,10 @@ export declare const zListCompaniesResponse: z.ZodObject<{
10080
10504
  }>>;
10081
10505
  naics_code: z.ZodNullable<z.ZodString>;
10082
10506
  linkedin_url: z.ZodNullable<z.ZodString>;
10507
+ industry: z.ZodNullable<z.ZodString>;
10508
+ stock_ticker: z.ZodNullable<z.ZodString>;
10509
+ stock_exchange: z.ZodNullable<z.ZodString>;
10510
+ logo_url: z.ZodNullable<z.ZodURL>;
10083
10511
  created_at: z.ZodISODateTime;
10084
10512
  updated_at: z.ZodISODateTime;
10085
10513
  }, z.core.$strip>>>;
@@ -10133,6 +10561,10 @@ export declare const zGetCompanyResponse: z.ZodObject<{
10133
10561
  }>>;
10134
10562
  naics_code: z.ZodNullable<z.ZodString>;
10135
10563
  linkedin_url: z.ZodNullable<z.ZodString>;
10564
+ industry: z.ZodNullable<z.ZodString>;
10565
+ stock_ticker: z.ZodNullable<z.ZodString>;
10566
+ stock_exchange: z.ZodNullable<z.ZodString>;
10567
+ logo_url: z.ZodNullable<z.ZodURL>;
10136
10568
  created_at: z.ZodISODateTime;
10137
10569
  updated_at: z.ZodISODateTime;
10138
10570
  }, z.core.$strip>;
@@ -10284,6 +10716,10 @@ export declare const zUpdateCompanyProfileResponse: z.ZodObject<{
10284
10716
  }>>;
10285
10717
  naics_code: z.ZodNullable<z.ZodString>;
10286
10718
  linkedin_url: z.ZodNullable<z.ZodString>;
10719
+ industry: z.ZodNullable<z.ZodString>;
10720
+ stock_ticker: z.ZodNullable<z.ZodString>;
10721
+ stock_exchange: z.ZodNullable<z.ZodString>;
10722
+ logo_url: z.ZodNullable<z.ZodURL>;
10287
10723
  created_at: z.ZodISODateTime;
10288
10724
  updated_at: z.ZodISODateTime;
10289
10725
  }, z.core.$strip>;
@@ -10299,7 +10735,7 @@ export declare const zListChecksQuery: z.ZodObject<{
10299
10735
  'filter[job_id]': z.ZodOptional<z.ZodString>;
10300
10736
  'filter[job_id][null]': z.ZodOptional<z.ZodBoolean>;
10301
10737
  'filter[project_id]': z.ZodOptional<z.ZodString>;
10302
- 'filter[requirement_id]': z.ZodOptional<z.ZodString>;
10738
+ 'filter[compliances_requirement_id]': z.ZodOptional<z.ZodString>;
10303
10739
  'filter[time_due][gte]': z.ZodOptional<z.ZodISODateTime>;
10304
10740
  'filter[time_due][lte]': z.ZodOptional<z.ZodISODateTime>;
10305
10741
  filter: z.ZodOptional<z.ZodString>;
@@ -10341,12 +10777,12 @@ export declare const zListChecksResponse: z.ZodObject<{
10341
10777
  not_applicable: "not_applicable";
10342
10778
  dismissed: "dismissed";
10343
10779
  }>;
10344
- requirement_id: z.ZodString;
10780
+ compliances_requirement_id: z.ZodString;
10345
10781
  company_id: z.ZodNullable<z.ZodString>;
10346
10782
  job_id: z.ZodNullable<z.ZodString>;
10347
10783
  project_id: z.ZodNullable<z.ZodString>;
10348
- time_card_id: z.ZodNullable<z.ZodString>;
10349
- pay_period_id: z.ZodNullable<z.ZodString>;
10784
+ timekeeping_time_card_id: z.ZodNullable<z.ZodString>;
10785
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
10350
10786
  user_id: z.ZodNullable<z.ZodString>;
10351
10787
  user_company_uid: z.ZodNullable<z.ZodString>;
10352
10788
  title: z.ZodString;
@@ -10408,12 +10844,12 @@ export declare const zGetCheckResponse: z.ZodObject<{
10408
10844
  not_applicable: "not_applicable";
10409
10845
  dismissed: "dismissed";
10410
10846
  }>;
10411
- requirement_id: z.ZodString;
10847
+ compliances_requirement_id: z.ZodString;
10412
10848
  company_id: z.ZodNullable<z.ZodString>;
10413
10849
  job_id: z.ZodNullable<z.ZodString>;
10414
10850
  project_id: z.ZodNullable<z.ZodString>;
10415
- time_card_id: z.ZodNullable<z.ZodString>;
10416
- pay_period_id: z.ZodNullable<z.ZodString>;
10851
+ timekeeping_time_card_id: z.ZodNullable<z.ZodString>;
10852
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
10417
10853
  user_id: z.ZodNullable<z.ZodString>;
10418
10854
  user_company_uid: z.ZodNullable<z.ZodString>;
10419
10855
  title: z.ZodString;
@@ -10481,12 +10917,12 @@ export declare const zUpdateCheckResponse: z.ZodObject<{
10481
10917
  not_applicable: "not_applicable";
10482
10918
  dismissed: "dismissed";
10483
10919
  }>;
10484
- requirement_id: z.ZodString;
10920
+ compliances_requirement_id: z.ZodString;
10485
10921
  company_id: z.ZodNullable<z.ZodString>;
10486
10922
  job_id: z.ZodNullable<z.ZodString>;
10487
10923
  project_id: z.ZodNullable<z.ZodString>;
10488
- time_card_id: z.ZodNullable<z.ZodString>;
10489
- pay_period_id: z.ZodNullable<z.ZodString>;
10924
+ timekeeping_time_card_id: z.ZodNullable<z.ZodString>;
10925
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
10490
10926
  user_id: z.ZodNullable<z.ZodString>;
10491
10927
  user_company_uid: z.ZodNullable<z.ZodString>;
10492
10928
  title: z.ZodString;
@@ -11376,7 +11812,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
11376
11812
  id: z.ZodString;
11377
11813
  uid: z.ZodString;
11378
11814
  job_id: z.ZodString;
11379
- trade_id: z.ZodString;
11815
+ pwa_trade_id: z.ZodString;
11380
11816
  labor_classification: z.ZodString;
11381
11817
  hourly_rate_cents: z.ZodString;
11382
11818
  fringe_rate_cents: z.ZodString;
@@ -11401,7 +11837,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
11401
11837
  id: z.ZodString;
11402
11838
  uid: z.ZodString;
11403
11839
  job_id: z.ZodString;
11404
- trade_id: z.ZodString;
11840
+ pwa_trade_id: z.ZodString;
11405
11841
  labor_classification: z.ZodString;
11406
11842
  hourly_rate_cents: z.ZodString;
11407
11843
  fringe_rate_cents: z.ZodString;
@@ -11422,7 +11858,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
11422
11858
  id: z.ZodString;
11423
11859
  uid: z.ZodString;
11424
11860
  job_id: z.ZodString;
11425
- trade_id: z.ZodString;
11861
+ pwa_trade_id: z.ZodString;
11426
11862
  labor_classification: z.ZodString;
11427
11863
  hourly_rate_cents: z.ZodString;
11428
11864
  fringe_rate_cents: z.ZodString;
@@ -11439,7 +11875,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
11439
11875
  id: z.ZodString;
11440
11876
  uid: z.ZodString;
11441
11877
  job_id: z.ZodString;
11442
- trade_id: z.ZodString;
11878
+ pwa_trade_id: z.ZodString;
11443
11879
  labor_classification: z.ZodString;
11444
11880
  hourly_rate_cents: z.ZodString;
11445
11881
  fringe_rate_cents: z.ZodString;
@@ -11458,7 +11894,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
11458
11894
  id: z.ZodString;
11459
11895
  uid: z.ZodString;
11460
11896
  job_id: z.ZodString;
11461
- trade_id: z.ZodString;
11897
+ pwa_trade_id: z.ZodString;
11462
11898
  labor_classification: z.ZodString;
11463
11899
  hourly_rate_cents: z.ZodString;
11464
11900
  fringe_rate_cents: z.ZodString;
@@ -11479,7 +11915,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
11479
11915
  id: z.ZodString;
11480
11916
  uid: z.ZodString;
11481
11917
  job_id: z.ZodString;
11482
- trade_id: z.ZodString;
11918
+ pwa_trade_id: z.ZodString;
11483
11919
  labor_classification: z.ZodString;
11484
11920
  hourly_rate_cents: z.ZodString;
11485
11921
  fringe_rate_cents: z.ZodString;
@@ -11523,7 +11959,7 @@ export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
11523
11959
  id: z.ZodString;
11524
11960
  uid: z.ZodString;
11525
11961
  job_id: z.ZodString;
11526
- trade_id: z.ZodString;
11962
+ pwa_trade_id: z.ZodString;
11527
11963
  labor_classification: z.ZodString;
11528
11964
  hourly_rate_cents: z.ZodString;
11529
11965
  fringe_rate_cents: z.ZodString;
@@ -11544,7 +11980,7 @@ export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
11544
11980
  id: z.ZodString;
11545
11981
  uid: z.ZodString;
11546
11982
  job_id: z.ZodString;
11547
- trade_id: z.ZodString;
11983
+ pwa_trade_id: z.ZodString;
11548
11984
  labor_classification: z.ZodString;
11549
11985
  hourly_rate_cents: z.ZodString;
11550
11986
  fringe_rate_cents: z.ZodString;
@@ -11559,7 +11995,7 @@ export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
11559
11995
  }, z.core.$strip>;
11560
11996
  export declare const zCreateWageDeterminationBody: z.ZodDiscriminatedUnion<[z.ZodObject<{
11561
11997
  labor_classification: z.ZodString;
11562
- trade_id: z.ZodString;
11998
+ pwa_trade_id: z.ZodString;
11563
11999
  hourly_rate_cents: z.ZodString;
11564
12000
  fringe_rate_cents: z.ZodString;
11565
12001
  class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -11573,7 +12009,7 @@ export declare const zCreateWageDeterminationBody: z.ZodDiscriminatedUnion<[z.Zo
11573
12009
  type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
11574
12010
  }, z.core.$strip>, z.ZodObject<{
11575
12011
  labor_classification: z.ZodString;
11576
- trade_id: z.ZodString;
12012
+ pwa_trade_id: z.ZodString;
11577
12013
  hourly_rate_cents: z.ZodString;
11578
12014
  fringe_rate_cents: z.ZodOptional<z.ZodString>;
11579
12015
  general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -11590,7 +12026,7 @@ export declare const zCreateWageDeterminationResponse: z.ZodDiscriminatedUnion<[
11590
12026
  id: z.ZodString;
11591
12027
  uid: z.ZodString;
11592
12028
  job_id: z.ZodString;
11593
- trade_id: z.ZodString;
12029
+ pwa_trade_id: z.ZodString;
11594
12030
  labor_classification: z.ZodString;
11595
12031
  hourly_rate_cents: z.ZodString;
11596
12032
  fringe_rate_cents: z.ZodString;
@@ -11611,7 +12047,7 @@ export declare const zCreateWageDeterminationResponse: z.ZodDiscriminatedUnion<[
11611
12047
  id: z.ZodString;
11612
12048
  uid: z.ZodString;
11613
12049
  job_id: z.ZodString;
11614
- trade_id: z.ZodString;
12050
+ pwa_trade_id: z.ZodString;
11615
12051
  labor_classification: z.ZodString;
11616
12052
  hourly_rate_cents: z.ZodString;
11617
12053
  fringe_rate_cents: z.ZodString;
@@ -11634,7 +12070,7 @@ export declare const zDeleteWageDeterminationResponse: z.ZodDiscriminatedUnion<[
11634
12070
  id: z.ZodString;
11635
12071
  uid: z.ZodString;
11636
12072
  job_id: z.ZodString;
11637
- trade_id: z.ZodString;
12073
+ pwa_trade_id: z.ZodString;
11638
12074
  labor_classification: z.ZodString;
11639
12075
  hourly_rate_cents: z.ZodString;
11640
12076
  fringe_rate_cents: z.ZodString;
@@ -11655,7 +12091,7 @@ export declare const zDeleteWageDeterminationResponse: z.ZodDiscriminatedUnion<[
11655
12091
  id: z.ZodString;
11656
12092
  uid: z.ZodString;
11657
12093
  job_id: z.ZodString;
11658
- trade_id: z.ZodString;
12094
+ pwa_trade_id: z.ZodString;
11659
12095
  labor_classification: z.ZodString;
11660
12096
  hourly_rate_cents: z.ZodString;
11661
12097
  fringe_rate_cents: z.ZodString;
@@ -11681,7 +12117,7 @@ export declare const zGetJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[
11681
12117
  id: z.ZodString;
11682
12118
  uid: z.ZodString;
11683
12119
  job_id: z.ZodString;
11684
- trade_id: z.ZodString;
12120
+ pwa_trade_id: z.ZodString;
11685
12121
  labor_classification: z.ZodString;
11686
12122
  hourly_rate_cents: z.ZodString;
11687
12123
  fringe_rate_cents: z.ZodString;
@@ -11702,7 +12138,7 @@ export declare const zGetJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[
11702
12138
  id: z.ZodString;
11703
12139
  uid: z.ZodString;
11704
12140
  job_id: z.ZodString;
11705
- trade_id: z.ZodString;
12141
+ pwa_trade_id: z.ZodString;
11706
12142
  labor_classification: z.ZodString;
11707
12143
  hourly_rate_cents: z.ZodString;
11708
12144
  fringe_rate_cents: z.ZodString;
@@ -11750,7 +12186,6 @@ export declare const zListJobsResponse: z.ZodObject<{
11750
12186
  status: z.ZodString;
11751
12187
  start_time: z.ZodNullable<z.ZodString>;
11752
12188
  end_time: z.ZodNullable<z.ZodString>;
11753
- address: z.ZodNullable<z.ZodString>;
11754
12189
  purchase_order_number: z.ZodNullable<z.ZodString>;
11755
12190
  time_card_start_day: z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<6>]>;
11756
12191
  tz_name: z.ZodString;
@@ -11835,7 +12270,7 @@ export declare const zListJobsResponse: z.ZodObject<{
11835
12270
  work_types: z.ZodNullable<z.ZodArray<z.ZodObject<{
11836
12271
  value: z.ZodOptional<z.ZodString>;
11837
12272
  }, z.core.$strip>>>;
11838
- timecode_ids: z.ZodNullable<z.ZodArray<z.ZodString>>;
12273
+ timekeeping_timecode_ids: z.ZodNullable<z.ZodArray<z.ZodString>>;
11839
12274
  tracks_feature_allocations: z.ZodBoolean;
11840
12275
  requires_feature_allocation: z.ZodBoolean;
11841
12276
  max_one_feature_allocation: z.ZodBoolean;
@@ -11873,7 +12308,7 @@ export declare const zCreateJobBody: z.ZodObject<{
11873
12308
  require_clock_in: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11874
12309
  send_geofence_reminders: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11875
12310
  allow_customer_access: z.ZodOptional<z.ZodBoolean>;
11876
- timecode_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
12311
+ timekeeping_timecode_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
11877
12312
  tracks_feature_allocations: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11878
12313
  requires_feature_allocation: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11879
12314
  max_one_feature_allocation: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -11927,7 +12362,6 @@ export declare const zCreateJobResponse: z.ZodObject<{
11927
12362
  status: z.ZodString;
11928
12363
  start_time: z.ZodNullable<z.ZodString>;
11929
12364
  end_time: z.ZodNullable<z.ZodString>;
11930
- address: z.ZodNullable<z.ZodString>;
11931
12365
  purchase_order_number: z.ZodNullable<z.ZodString>;
11932
12366
  time_card_start_day: z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<6>]>;
11933
12367
  tz_name: z.ZodString;
@@ -12012,7 +12446,7 @@ export declare const zCreateJobResponse: z.ZodObject<{
12012
12446
  work_types: z.ZodNullable<z.ZodArray<z.ZodObject<{
12013
12447
  value: z.ZodOptional<z.ZodString>;
12014
12448
  }, z.core.$strip>>>;
12015
- timecode_ids: z.ZodNullable<z.ZodArray<z.ZodString>>;
12449
+ timekeeping_timecode_ids: z.ZodNullable<z.ZodArray<z.ZodString>>;
12016
12450
  tracks_feature_allocations: z.ZodBoolean;
12017
12451
  requires_feature_allocation: z.ZodBoolean;
12018
12452
  max_one_feature_allocation: z.ZodBoolean;
@@ -12033,7 +12467,6 @@ export declare const zGetJobResponse: z.ZodObject<{
12033
12467
  status: z.ZodString;
12034
12468
  start_time: z.ZodNullable<z.ZodString>;
12035
12469
  end_time: z.ZodNullable<z.ZodString>;
12036
- address: z.ZodNullable<z.ZodString>;
12037
12470
  purchase_order_number: z.ZodNullable<z.ZodString>;
12038
12471
  time_card_start_day: z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<6>]>;
12039
12472
  tz_name: z.ZodString;
@@ -12118,7 +12551,7 @@ export declare const zGetJobResponse: z.ZodObject<{
12118
12551
  work_types: z.ZodNullable<z.ZodArray<z.ZodObject<{
12119
12552
  value: z.ZodOptional<z.ZodString>;
12120
12553
  }, z.core.$strip>>>;
12121
- timecode_ids: z.ZodNullable<z.ZodArray<z.ZodString>>;
12554
+ timekeeping_timecode_ids: z.ZodNullable<z.ZodArray<z.ZodString>>;
12122
12555
  tracks_feature_allocations: z.ZodBoolean;
12123
12556
  requires_feature_allocation: z.ZodBoolean;
12124
12557
  max_one_feature_allocation: z.ZodBoolean;
@@ -12152,7 +12585,7 @@ export declare const zUpdateJobBody: z.ZodIntersection<z.ZodObject<{
12152
12585
  require_clock_in: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
12153
12586
  send_geofence_reminders: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
12154
12587
  allow_customer_access: z.ZodOptional<z.ZodBoolean>;
12155
- timecode_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
12588
+ timekeeping_timecode_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
12156
12589
  tracks_feature_allocations: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
12157
12590
  requires_feature_allocation: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
12158
12591
  max_one_feature_allocation: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -12215,7 +12648,6 @@ export declare const zUpdateJobResponse: z.ZodObject<{
12215
12648
  status: z.ZodString;
12216
12649
  start_time: z.ZodNullable<z.ZodString>;
12217
12650
  end_time: z.ZodNullable<z.ZodString>;
12218
- address: z.ZodNullable<z.ZodString>;
12219
12651
  purchase_order_number: z.ZodNullable<z.ZodString>;
12220
12652
  time_card_start_day: z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<6>]>;
12221
12653
  tz_name: z.ZodString;
@@ -12300,7 +12732,7 @@ export declare const zUpdateJobResponse: z.ZodObject<{
12300
12732
  work_types: z.ZodNullable<z.ZodArray<z.ZodObject<{
12301
12733
  value: z.ZodOptional<z.ZodString>;
12302
12734
  }, z.core.$strip>>>;
12303
- timecode_ids: z.ZodNullable<z.ZodArray<z.ZodString>>;
12735
+ timekeeping_timecode_ids: z.ZodNullable<z.ZodArray<z.ZodString>>;
12304
12736
  tracks_feature_allocations: z.ZodBoolean;
12305
12737
  requires_feature_allocation: z.ZodBoolean;
12306
12738
  max_one_feature_allocation: z.ZodBoolean;
@@ -12425,7 +12857,7 @@ export declare const zListPayPeriodsResponse: z.ZodObject<{
12425
12857
  }, z.core.$strip>;
12426
12858
  data: z.ZodArray<z.ZodObject<{
12427
12859
  id: z.ZodOptional<z.ZodString>;
12428
- pay_period_config_id: z.ZodOptional<z.ZodString>;
12860
+ timekeeping_pay_period_config_id: z.ZodOptional<z.ZodString>;
12429
12861
  pay_period_config_uid: z.ZodOptional<z.ZodString>;
12430
12862
  pay_date: z.ZodOptional<z.ZodISODate>;
12431
12863
  start_time: z.ZodOptional<z.ZodISODateTime>;
@@ -12574,7 +13006,7 @@ export declare const zListExternalMapHistoryResponse: z.ZodObject<{
12574
13006
  id: z.ZodString;
12575
13007
  bitemporal_id: z.ZodString;
12576
13008
  name: z.ZodString;
12577
- compensation_element_id: z.ZodString;
13009
+ payrolls_compensation_element_id: z.ZodString;
12578
13010
  compensation_element_name: z.ZodString;
12579
13011
  compensation_element_category: z.ZodEnum<{
12580
13012
  other: "other";
@@ -12586,7 +13018,7 @@ export declare const zListExternalMapHistoryResponse: z.ZodObject<{
12586
13018
  garnishment: "garnishment";
12587
13019
  }>;
12588
13020
  pay_period_config_uid: z.ZodNullable<z.ZodString>;
12589
- fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
13021
+ payrolls_fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
12590
13022
  contributor: z.ZodEnum<{
12591
13023
  any: "any";
12592
13024
  employee: "employee";
@@ -12610,7 +13042,7 @@ export declare const zListExternalMapHistoryResponse: z.ZodObject<{
12610
13042
  id: z.ZodString;
12611
13043
  bitemporal_id: z.ZodString;
12612
13044
  name: z.ZodString;
12613
- compensation_element_id: z.ZodString;
13045
+ payrolls_compensation_element_id: z.ZodString;
12614
13046
  compensation_element_name: z.ZodString;
12615
13047
  compensation_element_category: z.ZodEnum<{
12616
13048
  other: "other";
@@ -12622,7 +13054,7 @@ export declare const zListExternalMapHistoryResponse: z.ZodObject<{
12622
13054
  garnishment: "garnishment";
12623
13055
  }>;
12624
13056
  pay_period_config_uid: z.ZodNullable<z.ZodString>;
12625
- fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
13057
+ payrolls_fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
12626
13058
  contributor: z.ZodEnum<{
12627
13059
  any: "any";
12628
13060
  employee: "employee";
@@ -12674,7 +13106,7 @@ export declare const zListExternalMapsResponse: z.ZodObject<{
12674
13106
  id: z.ZodString;
12675
13107
  bitemporal_id: z.ZodString;
12676
13108
  name: z.ZodString;
12677
- compensation_element_id: z.ZodString;
13109
+ payrolls_compensation_element_id: z.ZodString;
12678
13110
  compensation_element_name: z.ZodString;
12679
13111
  compensation_element_category: z.ZodEnum<{
12680
13112
  other: "other";
@@ -12686,7 +13118,7 @@ export declare const zListExternalMapsResponse: z.ZodObject<{
12686
13118
  garnishment: "garnishment";
12687
13119
  }>;
12688
13120
  pay_period_config_uid: z.ZodNullable<z.ZodString>;
12689
- fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
13121
+ payrolls_fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
12690
13122
  contributor: z.ZodEnum<{
12691
13123
  any: "any";
12692
13124
  employee: "employee";
@@ -12717,7 +13149,7 @@ export declare const zGetExternalMapResponse: z.ZodObject<{
12717
13149
  id: z.ZodString;
12718
13150
  bitemporal_id: z.ZodString;
12719
13151
  name: z.ZodString;
12720
- compensation_element_id: z.ZodString;
13152
+ payrolls_compensation_element_id: z.ZodString;
12721
13153
  compensation_element_name: z.ZodString;
12722
13154
  compensation_element_category: z.ZodEnum<{
12723
13155
  other: "other";
@@ -12729,7 +13161,7 @@ export declare const zGetExternalMapResponse: z.ZodObject<{
12729
13161
  garnishment: "garnishment";
12730
13162
  }>;
12731
13163
  pay_period_config_uid: z.ZodNullable<z.ZodString>;
12732
- fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
13164
+ payrolls_fringe_benefit_plan_id: z.ZodNullable<z.ZodString>;
12733
13165
  contributor: z.ZodEnum<{
12734
13166
  any: "any";
12735
13167
  employee: "employee";
@@ -12962,7 +13394,7 @@ export declare const zUpdateFringeBenefitPlanResponse: z.ZodObject<{
12962
13394
  }, z.core.$strip>;
12963
13395
  export declare const zListPayrollRunsQuery: z.ZodObject<{
12964
13396
  'filter[run_type]': z.ZodOptional<z.ZodString>;
12965
- 'filter[pay_period_id]': z.ZodOptional<z.ZodString>;
13397
+ 'filter[timekeeping_pay_period_id]': z.ZodOptional<z.ZodString>;
12966
13398
  'filter[run_date][gte]': z.ZodOptional<z.ZodISODate>;
12967
13399
  'filter[run_date][lte]': z.ZodOptional<z.ZodISODate>;
12968
13400
  'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
@@ -12993,8 +13425,8 @@ export declare const zListPayrollRunsResponse: z.ZodObject<{
12993
13425
  data: z.ZodArray<z.ZodObject<{
12994
13426
  id: z.ZodString;
12995
13427
  company_id: z.ZodString;
12996
- pay_period_id: z.ZodNullable<z.ZodString>;
12997
- credential_id: z.ZodNullable<z.ZodString>;
13428
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
13429
+ payrolls_credential_id: z.ZodNullable<z.ZodString>;
12998
13430
  run_type: z.ZodEnum<{
12999
13431
  CORRECTION: "CORRECTION";
13000
13432
  ON_CYCLE: "ON_CYCLE";
@@ -13011,8 +13443,8 @@ export declare const zListPayrollRunsResponse: z.ZodObject<{
13011
13443
  }, z.core.$strip>;
13012
13444
  export declare const zCreatePayrollRunBody: z.ZodObject<{
13013
13445
  company_id: z.ZodString;
13014
- pay_period_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13015
- credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13446
+ timekeeping_pay_period_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13447
+ payrolls_credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13016
13448
  run_type: z.ZodEnum<{
13017
13449
  CORRECTION: "CORRECTION";
13018
13450
  ON_CYCLE: "ON_CYCLE";
@@ -13030,8 +13462,8 @@ export declare const zCreatePayrollRunBody: z.ZodObject<{
13030
13462
  export declare const zCreatePayrollRunResponse: z.ZodObject<{
13031
13463
  id: z.ZodString;
13032
13464
  company_id: z.ZodString;
13033
- pay_period_id: z.ZodNullable<z.ZodString>;
13034
- credential_id: z.ZodNullable<z.ZodString>;
13465
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
13466
+ payrolls_credential_id: z.ZodNullable<z.ZodString>;
13035
13467
  run_type: z.ZodEnum<{
13036
13468
  CORRECTION: "CORRECTION";
13037
13469
  ON_CYCLE: "ON_CYCLE";
@@ -13054,8 +13486,8 @@ export declare const zDeletePayrollRunPath: z.ZodObject<{
13054
13486
  export declare const zDeletePayrollRunResponse: z.ZodObject<{
13055
13487
  id: z.ZodString;
13056
13488
  company_id: z.ZodString;
13057
- pay_period_id: z.ZodNullable<z.ZodString>;
13058
- credential_id: z.ZodNullable<z.ZodString>;
13489
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
13490
+ payrolls_credential_id: z.ZodNullable<z.ZodString>;
13059
13491
  run_type: z.ZodEnum<{
13060
13492
  CORRECTION: "CORRECTION";
13061
13493
  ON_CYCLE: "ON_CYCLE";
@@ -13078,8 +13510,8 @@ export declare const zGetPayrollRunPath: z.ZodObject<{
13078
13510
  export declare const zGetPayrollRunResponse: z.ZodObject<{
13079
13511
  id: z.ZodString;
13080
13512
  company_id: z.ZodString;
13081
- pay_period_id: z.ZodNullable<z.ZodString>;
13082
- credential_id: z.ZodNullable<z.ZodString>;
13513
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
13514
+ payrolls_credential_id: z.ZodNullable<z.ZodString>;
13083
13515
  run_type: z.ZodEnum<{
13084
13516
  CORRECTION: "CORRECTION";
13085
13517
  ON_CYCLE: "ON_CYCLE";
@@ -13095,8 +13527,8 @@ export declare const zGetPayrollRunResponse: z.ZodObject<{
13095
13527
  }, z.core.$strip>;
13096
13528
  export declare const zUpdatePayrollRunBody: z.ZodObject<{
13097
13529
  company_id: z.ZodString;
13098
- pay_period_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13099
- credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13530
+ timekeeping_pay_period_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13531
+ payrolls_credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13100
13532
  run_type: z.ZodEnum<{
13101
13533
  CORRECTION: "CORRECTION";
13102
13534
  ON_CYCLE: "ON_CYCLE";
@@ -13117,8 +13549,8 @@ export declare const zUpdatePayrollRunPath: z.ZodObject<{
13117
13549
  export declare const zUpdatePayrollRunResponse: z.ZodObject<{
13118
13550
  id: z.ZodString;
13119
13551
  company_id: z.ZodString;
13120
- pay_period_id: z.ZodNullable<z.ZodString>;
13121
- credential_id: z.ZodNullable<z.ZodString>;
13552
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
13553
+ payrolls_credential_id: z.ZodNullable<z.ZodString>;
13122
13554
  run_type: z.ZodEnum<{
13123
13555
  CORRECTION: "CORRECTION";
13124
13556
  ON_CYCLE: "ON_CYCLE";
@@ -13133,7 +13565,7 @@ export declare const zUpdatePayrollRunResponse: z.ZodObject<{
13133
13565
  updated_at: z.ZodISODateTime;
13134
13566
  }, z.core.$strip>;
13135
13567
  export declare const zListPaystubLineItemsQuery: z.ZodObject<{
13136
- 'filter[paystub_id]': z.ZodOptional<z.ZodString>;
13568
+ 'filter[payrolls_paystub_id]': z.ZodOptional<z.ZodString>;
13137
13569
  filter: z.ZodOptional<z.ZodString>;
13138
13570
  'filter[unexpected]': z.ZodOptional<z.ZodString>;
13139
13571
  'page[cursor]': z.ZodOptional<z.ZodString>;
@@ -13157,9 +13589,9 @@ export declare const zListPaystubLineItemsResponse: z.ZodObject<{
13157
13589
  }, z.core.$strip>;
13158
13590
  data: z.ZodArray<z.ZodObject<{
13159
13591
  id: z.ZodString;
13160
- external_map_id: z.ZodString;
13161
- paystub_id: z.ZodNullable<z.ZodString>;
13162
- pay_period_id: z.ZodNullable<z.ZodString>;
13592
+ payrolls_external_map_id: z.ZodString;
13593
+ payrolls_paystub_id: z.ZodNullable<z.ZodString>;
13594
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
13163
13595
  user_id: z.ZodNullable<z.ZodString>;
13164
13596
  external_map: z.ZodObject<{
13165
13597
  name: z.ZodOptional<z.ZodString>;
@@ -13187,22 +13619,22 @@ export declare const zListPaystubLineItemsResponse: z.ZodObject<{
13187
13619
  }, z.core.$strip>>;
13188
13620
  }, z.core.$strip>;
13189
13621
  export declare const zCreatePaystubLineItemBody: z.ZodObject<{
13190
- paystub_id: z.ZodString;
13622
+ payrolls_paystub_id: z.ZodString;
13191
13623
  amount_cents: z.ZodString;
13192
13624
  contributor: z.ZodEnum<{
13193
13625
  employee: "employee";
13194
13626
  employer: "employer";
13195
13627
  }>;
13196
- external_map_id: z.ZodString;
13628
+ payrolls_external_map_id: z.ZodString;
13197
13629
  }, z.core.$strip>;
13198
13630
  /**
13199
13631
  * Success
13200
13632
  */
13201
13633
  export declare const zCreatePaystubLineItemResponse: z.ZodObject<{
13202
13634
  id: z.ZodString;
13203
- external_map_id: z.ZodString;
13204
- paystub_id: z.ZodNullable<z.ZodString>;
13205
- pay_period_id: z.ZodNullable<z.ZodString>;
13635
+ payrolls_external_map_id: z.ZodString;
13636
+ payrolls_paystub_id: z.ZodNullable<z.ZodString>;
13637
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
13206
13638
  user_id: z.ZodNullable<z.ZodString>;
13207
13639
  external_map: z.ZodObject<{
13208
13640
  name: z.ZodOptional<z.ZodString>;
@@ -13236,9 +13668,9 @@ export declare const zDeletePaystubLineItemPath: z.ZodObject<{
13236
13668
  */
13237
13669
  export declare const zDeletePaystubLineItemResponse: z.ZodObject<{
13238
13670
  id: z.ZodString;
13239
- external_map_id: z.ZodString;
13240
- paystub_id: z.ZodNullable<z.ZodString>;
13241
- pay_period_id: z.ZodNullable<z.ZodString>;
13671
+ payrolls_external_map_id: z.ZodString;
13672
+ payrolls_paystub_id: z.ZodNullable<z.ZodString>;
13673
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
13242
13674
  user_id: z.ZodNullable<z.ZodString>;
13243
13675
  external_map: z.ZodObject<{
13244
13676
  name: z.ZodOptional<z.ZodString>;
@@ -13272,9 +13704,9 @@ export declare const zGetPaystubLineItemPath: z.ZodObject<{
13272
13704
  */
13273
13705
  export declare const zGetPaystubLineItemResponse: z.ZodObject<{
13274
13706
  id: z.ZodString;
13275
- external_map_id: z.ZodString;
13276
- paystub_id: z.ZodNullable<z.ZodString>;
13277
- pay_period_id: z.ZodNullable<z.ZodString>;
13707
+ payrolls_external_map_id: z.ZodString;
13708
+ payrolls_paystub_id: z.ZodNullable<z.ZodString>;
13709
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
13278
13710
  user_id: z.ZodNullable<z.ZodString>;
13279
13711
  external_map: z.ZodObject<{
13280
13712
  name: z.ZodOptional<z.ZodString>;
@@ -13301,13 +13733,13 @@ export declare const zGetPaystubLineItemResponse: z.ZodObject<{
13301
13733
  updated_at: z.ZodISODateTime;
13302
13734
  }, z.core.$strip>;
13303
13735
  export declare const zUpdatePaystubLineItemBody: z.ZodObject<{
13304
- paystub_id: z.ZodString;
13736
+ payrolls_paystub_id: z.ZodString;
13305
13737
  amount_cents: z.ZodString;
13306
13738
  contributor: z.ZodEnum<{
13307
13739
  employee: "employee";
13308
13740
  employer: "employer";
13309
13741
  }>;
13310
- external_map_id: z.ZodString;
13742
+ payrolls_external_map_id: z.ZodString;
13311
13743
  }, z.core.$strip>;
13312
13744
  export declare const zUpdatePaystubLineItemPath: z.ZodObject<{
13313
13745
  id: z.ZodString;
@@ -13317,9 +13749,9 @@ export declare const zUpdatePaystubLineItemPath: z.ZodObject<{
13317
13749
  */
13318
13750
  export declare const zUpdatePaystubLineItemResponse: z.ZodObject<{
13319
13751
  id: z.ZodString;
13320
- external_map_id: z.ZodString;
13321
- paystub_id: z.ZodNullable<z.ZodString>;
13322
- pay_period_id: z.ZodNullable<z.ZodString>;
13752
+ payrolls_external_map_id: z.ZodString;
13753
+ payrolls_paystub_id: z.ZodNullable<z.ZodString>;
13754
+ timekeeping_pay_period_id: z.ZodNullable<z.ZodString>;
13323
13755
  user_id: z.ZodNullable<z.ZodString>;
13324
13756
  external_map: z.ZodObject<{
13325
13757
  name: z.ZodOptional<z.ZodString>;
@@ -13346,9 +13778,9 @@ export declare const zUpdatePaystubLineItemResponse: z.ZodObject<{
13346
13778
  updated_at: z.ZodISODateTime;
13347
13779
  }, z.core.$strip>;
13348
13780
  export declare const zListPaystubsQuery: z.ZodObject<{
13349
- 'filter[payroll_run_id]': z.ZodOptional<z.ZodString>;
13781
+ 'filter[payrolls_payroll_run_id]': z.ZodOptional<z.ZodString>;
13350
13782
  'filter[user_id]': z.ZodOptional<z.ZodString>;
13351
- 'filter[time_card_id]': z.ZodOptional<z.ZodString>;
13783
+ 'filter[timekeeping_time_card_id]': z.ZodOptional<z.ZodString>;
13352
13784
  filter: z.ZodOptional<z.ZodString>;
13353
13785
  'filter[unexpected]': z.ZodOptional<z.ZodString>;
13354
13786
  'page[cursor]': z.ZodOptional<z.ZodString>;
@@ -13375,16 +13807,16 @@ export declare const zListPaystubsResponse: z.ZodObject<{
13375
13807
  external_id: z.ZodNullable<z.ZodString>;
13376
13808
  check_number: z.ZodNullable<z.ZodString>;
13377
13809
  user_id: z.ZodString;
13378
- time_card_id: z.ZodNullable<z.ZodString>;
13379
- payroll_run_id: z.ZodString;
13810
+ timekeeping_time_card_id: z.ZodNullable<z.ZodString>;
13811
+ payrolls_payroll_run_id: z.ZodString;
13380
13812
  created_at: z.ZodISODateTime;
13381
13813
  updated_at: z.ZodISODateTime;
13382
13814
  }, z.core.$strip>>;
13383
13815
  }, z.core.$strip>;
13384
13816
  export declare const zCreatePaystubBody: z.ZodObject<{
13385
- payroll_run_id: z.ZodString;
13817
+ payrolls_payroll_run_id: z.ZodString;
13386
13818
  user_id: z.ZodString;
13387
- time_card_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13819
+ timekeeping_time_card_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13388
13820
  external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13389
13821
  check_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13390
13822
  }, z.core.$strip>;
@@ -13396,8 +13828,8 @@ export declare const zCreatePaystubResponse: z.ZodObject<{
13396
13828
  external_id: z.ZodNullable<z.ZodString>;
13397
13829
  check_number: z.ZodNullable<z.ZodString>;
13398
13830
  user_id: z.ZodString;
13399
- time_card_id: z.ZodNullable<z.ZodString>;
13400
- payroll_run_id: z.ZodString;
13831
+ timekeeping_time_card_id: z.ZodNullable<z.ZodString>;
13832
+ payrolls_payroll_run_id: z.ZodString;
13401
13833
  created_at: z.ZodISODateTime;
13402
13834
  updated_at: z.ZodISODateTime;
13403
13835
  }, z.core.$strip>;
@@ -13412,8 +13844,8 @@ export declare const zDeletePaystubResponse: z.ZodObject<{
13412
13844
  external_id: z.ZodNullable<z.ZodString>;
13413
13845
  check_number: z.ZodNullable<z.ZodString>;
13414
13846
  user_id: z.ZodString;
13415
- time_card_id: z.ZodNullable<z.ZodString>;
13416
- payroll_run_id: z.ZodString;
13847
+ timekeeping_time_card_id: z.ZodNullable<z.ZodString>;
13848
+ payrolls_payroll_run_id: z.ZodString;
13417
13849
  created_at: z.ZodISODateTime;
13418
13850
  updated_at: z.ZodISODateTime;
13419
13851
  }, z.core.$strip>;
@@ -13428,15 +13860,15 @@ export declare const zGetPaystubResponse: z.ZodObject<{
13428
13860
  external_id: z.ZodNullable<z.ZodString>;
13429
13861
  check_number: z.ZodNullable<z.ZodString>;
13430
13862
  user_id: z.ZodString;
13431
- time_card_id: z.ZodNullable<z.ZodString>;
13432
- payroll_run_id: z.ZodString;
13863
+ timekeeping_time_card_id: z.ZodNullable<z.ZodString>;
13864
+ payrolls_payroll_run_id: z.ZodString;
13433
13865
  created_at: z.ZodISODateTime;
13434
13866
  updated_at: z.ZodISODateTime;
13435
13867
  }, z.core.$strip>;
13436
13868
  export declare const zUpdatePaystubBody: z.ZodObject<{
13437
- payroll_run_id: z.ZodString;
13869
+ payrolls_payroll_run_id: z.ZodString;
13438
13870
  user_id: z.ZodString;
13439
- time_card_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13871
+ timekeeping_time_card_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13440
13872
  external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13441
13873
  check_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13442
13874
  }, z.core.$strip>;
@@ -13451,8 +13883,8 @@ export declare const zUpdatePaystubResponse: z.ZodObject<{
13451
13883
  external_id: z.ZodNullable<z.ZodString>;
13452
13884
  check_number: z.ZodNullable<z.ZodString>;
13453
13885
  user_id: z.ZodString;
13454
- time_card_id: z.ZodNullable<z.ZodString>;
13455
- payroll_run_id: z.ZodString;
13886
+ timekeeping_time_card_id: z.ZodNullable<z.ZodString>;
13887
+ payrolls_payroll_run_id: z.ZodString;
13456
13888
  created_at: z.ZodISODateTime;
13457
13889
  updated_at: z.ZodISODateTime;
13458
13890
  }, z.core.$strip>;
@@ -13499,7 +13931,7 @@ export declare const zListPerDiemsResponse: z.ZodObject<{
13499
13931
  default: z.ZodNullable<z.ZodBoolean>;
13500
13932
  active: z.ZodNullable<z.ZodBoolean>;
13501
13933
  work_type_ids: z.ZodArray<z.ZodString>;
13502
- timecode_ids: z.ZodArray<z.ZodString>;
13934
+ timekeeping_timecode_ids: z.ZodArray<z.ZodString>;
13503
13935
  created_at: z.ZodISODateTime;
13504
13936
  updated_at: z.ZodISODateTime;
13505
13937
  }, z.core.$strip>>>;
@@ -13513,7 +13945,7 @@ export declare const zCreatePerDiemBody: z.ZodObject<{
13513
13945
  default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13514
13946
  active: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13515
13947
  work_type_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
13516
- timecode_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
13948
+ timekeeping_timecode_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
13517
13949
  }, z.core.$strip>;
13518
13950
  /**
13519
13951
  * Created
@@ -13528,7 +13960,7 @@ export declare const zCreatePerDiemResponse: z.ZodObject<{
13528
13960
  default: z.ZodNullable<z.ZodBoolean>;
13529
13961
  active: z.ZodNullable<z.ZodBoolean>;
13530
13962
  work_type_ids: z.ZodArray<z.ZodString>;
13531
- timecode_ids: z.ZodArray<z.ZodString>;
13963
+ timekeeping_timecode_ids: z.ZodArray<z.ZodString>;
13532
13964
  created_at: z.ZodISODateTime;
13533
13965
  updated_at: z.ZodISODateTime;
13534
13966
  }, z.core.$strip>;
@@ -13548,7 +13980,7 @@ export declare const zDeletePerDiemResponse: z.ZodObject<{
13548
13980
  default: z.ZodNullable<z.ZodBoolean>;
13549
13981
  active: z.ZodNullable<z.ZodBoolean>;
13550
13982
  work_type_ids: z.ZodArray<z.ZodString>;
13551
- timecode_ids: z.ZodArray<z.ZodString>;
13983
+ timekeeping_timecode_ids: z.ZodArray<z.ZodString>;
13552
13984
  created_at: z.ZodISODateTime;
13553
13985
  updated_at: z.ZodISODateTime;
13554
13986
  }, z.core.$strip>;
@@ -13568,7 +14000,7 @@ export declare const zGetPerDiemResponse: z.ZodObject<{
13568
14000
  default: z.ZodNullable<z.ZodBoolean>;
13569
14001
  active: z.ZodNullable<z.ZodBoolean>;
13570
14002
  work_type_ids: z.ZodArray<z.ZodString>;
13571
- timecode_ids: z.ZodArray<z.ZodString>;
14003
+ timekeeping_timecode_ids: z.ZodArray<z.ZodString>;
13572
14004
  created_at: z.ZodISODateTime;
13573
14005
  updated_at: z.ZodISODateTime;
13574
14006
  }, z.core.$strip>;
@@ -13581,7 +14013,7 @@ export declare const zUpdatePerDiemBody: z.ZodObject<{
13581
14013
  default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13582
14014
  active: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13583
14015
  work_type_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
13584
- timecode_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
14016
+ timekeeping_timecode_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
13585
14017
  }, z.core.$strip>;
13586
14018
  export declare const zUpdatePerDiemPath: z.ZodObject<{
13587
14019
  id: z.ZodString;
@@ -13599,7 +14031,7 @@ export declare const zUpdatePerDiemResponse: z.ZodObject<{
13599
14031
  default: z.ZodNullable<z.ZodBoolean>;
13600
14032
  active: z.ZodNullable<z.ZodBoolean>;
13601
14033
  work_type_ids: z.ZodArray<z.ZodString>;
13602
- timecode_ids: z.ZodArray<z.ZodString>;
14034
+ timekeeping_timecode_ids: z.ZodArray<z.ZodString>;
13603
14035
  created_at: z.ZodISODateTime;
13604
14036
  updated_at: z.ZodISODateTime;
13605
14037
  }, z.core.$strip>;
@@ -14924,7 +15356,7 @@ export declare const zSetTimeCardLockPath: z.ZodObject<{
14924
15356
  export declare const zSetTimeCardLockResponse: z.ZodObject<{
14925
15357
  id: z.ZodString;
14926
15358
  user_id: z.ZodString;
14927
- pay_period_id: z.ZodString;
15359
+ timekeeping_pay_period_id: z.ZodString;
14928
15360
  locked: z.ZodBoolean;
14929
15361
  manager_time_card_approval_status: z.ZodEnum<{
14930
15362
  pending: "pending";
@@ -14981,7 +15413,7 @@ export declare const zCreateManagerTimeCardApprovalPath: z.ZodObject<{
14981
15413
  */
14982
15414
  export declare const zCreateManagerTimeCardApprovalResponse: z.ZodObject<{
14983
15415
  id: z.ZodString;
14984
- time_card_id: z.ZodString;
15416
+ timekeeping_time_card_id: z.ZodString;
14985
15417
  status: z.ZodEnum<{
14986
15418
  pending: "pending";
14987
15419
  approved: "approved";
@@ -15015,7 +15447,7 @@ export declare const zListTimeCardPerDiemsResponse: z.ZodObject<{
15015
15447
  }, z.core.$strip>>;
15016
15448
  data: z.ZodOptional<z.ZodArray<z.ZodObject<{
15017
15449
  id: z.ZodString;
15018
- time_card_id: z.ZodString;
15450
+ timekeeping_time_card_id: z.ZodString;
15019
15451
  date: z.ZodISODate;
15020
15452
  approver_user_id: z.ZodString;
15021
15453
  per_diem_id: z.ZodNullable<z.ZodString>;
@@ -15040,7 +15472,7 @@ export declare const zCreateTimeCardPerDiemPath: z.ZodObject<{
15040
15472
  */
15041
15473
  export declare const zCreateTimeCardPerDiemResponse: z.ZodObject<{
15042
15474
  id: z.ZodString;
15043
- time_card_id: z.ZodString;
15475
+ timekeeping_time_card_id: z.ZodString;
15044
15476
  date: z.ZodISODate;
15045
15477
  approver_user_id: z.ZodString;
15046
15478
  per_diem_id: z.ZodNullable<z.ZodString>;
@@ -15059,7 +15491,7 @@ export declare const zDeleteTimeCardPerDiemPath: z.ZodObject<{
15059
15491
  */
15060
15492
  export declare const zDeleteTimeCardPerDiemResponse: z.ZodObject<{
15061
15493
  id: z.ZodString;
15062
- time_card_id: z.ZodString;
15494
+ timekeeping_time_card_id: z.ZodString;
15063
15495
  date: z.ZodISODate;
15064
15496
  approver_user_id: z.ZodString;
15065
15497
  per_diem_id: z.ZodNullable<z.ZodString>;
@@ -15084,7 +15516,7 @@ export declare const zUpdateTimeCardPerDiemPath: z.ZodObject<{
15084
15516
  */
15085
15517
  export declare const zUpdateTimeCardPerDiemResponse: z.ZodObject<{
15086
15518
  id: z.ZodString;
15087
- time_card_id: z.ZodString;
15519
+ timekeeping_time_card_id: z.ZodString;
15088
15520
  date: z.ZodISODate;
15089
15521
  approver_user_id: z.ZodString;
15090
15522
  per_diem_id: z.ZodNullable<z.ZodString>;
@@ -15120,8 +15552,8 @@ export declare const zListPriorPeriodAdjustmentsResponse: z.ZodObject<{
15120
15552
  }, z.core.$strip>>;
15121
15553
  data: z.ZodOptional<z.ZodArray<z.ZodObject<{
15122
15554
  id: z.ZodString;
15123
- time_card_id: z.ZodString;
15124
- paystub_line_item_id: z.ZodString;
15555
+ timekeeping_time_card_id: z.ZodString;
15556
+ payrolls_paystub_line_item_id: z.ZodString;
15125
15557
  job_id: z.ZodNullable<z.ZodString>;
15126
15558
  created_by_user_id: z.ZodString;
15127
15559
  adjustment_type: z.ZodEnum<{
@@ -15151,8 +15583,8 @@ export declare const zGetPriorPeriodAdjustmentPath: z.ZodObject<{
15151
15583
  */
15152
15584
  export declare const zGetPriorPeriodAdjustmentResponse: z.ZodObject<{
15153
15585
  id: z.ZodString;
15154
- time_card_id: z.ZodString;
15155
- paystub_line_item_id: z.ZodString;
15586
+ timekeeping_time_card_id: z.ZodString;
15587
+ payrolls_paystub_line_item_id: z.ZodString;
15156
15588
  job_id: z.ZodNullable<z.ZodString>;
15157
15589
  created_by_user_id: z.ZodString;
15158
15590
  adjustment_type: z.ZodEnum<{
@@ -15186,7 +15618,7 @@ export declare const zCreateWorkerTimeCardApprovalPath: z.ZodObject<{
15186
15618
  */
15187
15619
  export declare const zCreateWorkerTimeCardApprovalResponse: z.ZodObject<{
15188
15620
  id: z.ZodString;
15189
- time_card_id: z.ZodString;
15621
+ timekeeping_time_card_id: z.ZodString;
15190
15622
  status: z.ZodEnum<{
15191
15623
  pending: "pending";
15192
15624
  approved: "approved";
@@ -15196,7 +15628,7 @@ export declare const zCreateWorkerTimeCardApprovalResponse: z.ZodObject<{
15196
15628
  created_at: z.ZodISODateTime;
15197
15629
  }, z.core.$strip>;
15198
15630
  export declare const zListTimeCardsQuery: z.ZodObject<{
15199
- 'filter[pay_period_id]': z.ZodOptional<z.ZodString>;
15631
+ 'filter[timekeeping_pay_period_id]': z.ZodOptional<z.ZodString>;
15200
15632
  'filter[user_id]': z.ZodOptional<z.ZodString>;
15201
15633
  'filter[start_time][gte]': z.ZodOptional<z.ZodISODateTime>;
15202
15634
  'filter[start_time][lte]': z.ZodOptional<z.ZodISODateTime>;
@@ -15224,7 +15656,7 @@ export declare const zListTimeCardsResponse: z.ZodObject<{
15224
15656
  data: z.ZodArray<z.ZodObject<{
15225
15657
  id: z.ZodString;
15226
15658
  user_id: z.ZodString;
15227
- pay_period_id: z.ZodString;
15659
+ timekeeping_pay_period_id: z.ZodString;
15228
15660
  locked: z.ZodBoolean;
15229
15661
  manager_time_card_approval_status: z.ZodEnum<{
15230
15662
  pending: "pending";
@@ -15275,7 +15707,7 @@ export declare const zGetTimeCardPath: z.ZodObject<{
15275
15707
  export declare const zGetTimeCardResponse: z.ZodObject<{
15276
15708
  id: z.ZodString;
15277
15709
  user_id: z.ZodString;
15278
- pay_period_id: z.ZodString;
15710
+ timekeeping_pay_period_id: z.ZodString;
15279
15711
  locked: z.ZodBoolean;
15280
15712
  manager_time_card_approval_status: z.ZodEnum<{
15281
15713
  pending: "pending";
@@ -15335,10 +15767,11 @@ export declare const zListDeltasQuery: z.ZodObject<{
15335
15767
  */
15336
15768
  export declare const zListDeltasResponse: z.ZodObject<{
15337
15769
  meta: z.ZodOptional<z.ZodObject<{
15338
- page: z.ZodOptional<z.ZodObject<{
15770
+ page: z.ZodObject<{
15339
15771
  next_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15340
15772
  current_cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15341
- }, z.core.$strip>>;
15773
+ }, z.core.$strip>;
15774
+ complete_through: z.ZodISODateTime;
15342
15775
  }, z.core.$strip>>;
15343
15776
  links: z.ZodOptional<z.ZodObject<{
15344
15777
  self: z.ZodOptional<z.ZodString>;
@@ -15359,7 +15792,7 @@ export declare const zListTimeEntriesQuery: z.ZodObject<{
15359
15792
  'filter[user_id]': z.ZodOptional<z.ZodString>;
15360
15793
  'filter[job_id]': z.ZodOptional<z.ZodString>;
15361
15794
  'filter[job_id][null]': z.ZodOptional<z.ZodBoolean>;
15362
- 'filter[time_card_id]': z.ZodOptional<z.ZodString>;
15795
+ 'filter[timekeeping_time_card_id]': z.ZodOptional<z.ZodString>;
15363
15796
  'filter[start_time][gte]': z.ZodOptional<z.ZodISODateTime>;
15364
15797
  'filter[start_time][lte]': z.ZodOptional<z.ZodISODateTime>;
15365
15798
  'filter[end_time][gte]': z.ZodOptional<z.ZodISODateTime>;
@@ -15392,9 +15825,9 @@ export declare const zListTimeEntriesResponse: z.ZodObject<{
15392
15825
  data: z.ZodOptional<z.ZodArray<z.ZodObject<{
15393
15826
  id: z.ZodString;
15394
15827
  user_id: z.ZodString;
15395
- time_card_id: z.ZodString;
15828
+ timekeeping_time_card_id: z.ZodString;
15396
15829
  job_id: z.ZodNullable<z.ZodString>;
15397
- timecode_id: z.ZodNullable<z.ZodString>;
15830
+ timekeeping_timecode_id: z.ZodNullable<z.ZodString>;
15398
15831
  state: z.ZodNullable<z.ZodString>;
15399
15832
  description: z.ZodNullable<z.ZodString>;
15400
15833
  clock_punched: z.ZodBoolean;
@@ -15414,7 +15847,7 @@ export declare const zListTimeEntriesResponse: z.ZodObject<{
15414
15847
  hourly_rate_cents: z.ZodNullable<z.ZodString>;
15415
15848
  currency: z.ZodNullable<z.ZodString>;
15416
15849
  hourly_rate_src_type: z.ZodNullable<z.ZodString>;
15417
- pay_period_id: z.ZodString;
15850
+ timekeeping_pay_period_id: z.ZodString;
15418
15851
  start_time: z.ZodISODateTime;
15419
15852
  end_time: z.ZodISODateTime;
15420
15853
  created_at: z.ZodISODateTime;
@@ -15435,11 +15868,11 @@ export declare const zListTimeEntriesResponse: z.ZodObject<{
15435
15868
  }, z.core.$strip>>>;
15436
15869
  }, z.core.$strip>;
15437
15870
  export declare const zCreateTimeEntryBody: z.ZodObject<{
15438
- time_card_id: z.ZodString;
15871
+ timekeeping_time_card_id: z.ZodString;
15439
15872
  start_time: z.ZodISODateTime;
15440
15873
  end_time: z.ZodISODateTime;
15441
15874
  job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15442
- timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15875
+ timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15443
15876
  state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15444
15877
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15445
15878
  hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -15452,9 +15885,9 @@ export declare const zCreateTimeEntryBody: z.ZodObject<{
15452
15885
  export declare const zCreateTimeEntryResponse: z.ZodObject<{
15453
15886
  id: z.ZodString;
15454
15887
  user_id: z.ZodString;
15455
- time_card_id: z.ZodString;
15888
+ timekeeping_time_card_id: z.ZodString;
15456
15889
  job_id: z.ZodNullable<z.ZodString>;
15457
- timecode_id: z.ZodNullable<z.ZodString>;
15890
+ timekeeping_timecode_id: z.ZodNullable<z.ZodString>;
15458
15891
  state: z.ZodNullable<z.ZodString>;
15459
15892
  description: z.ZodNullable<z.ZodString>;
15460
15893
  clock_punched: z.ZodBoolean;
@@ -15474,7 +15907,7 @@ export declare const zCreateTimeEntryResponse: z.ZodObject<{
15474
15907
  hourly_rate_cents: z.ZodNullable<z.ZodString>;
15475
15908
  currency: z.ZodNullable<z.ZodString>;
15476
15909
  hourly_rate_src_type: z.ZodNullable<z.ZodString>;
15477
- pay_period_id: z.ZodString;
15910
+ timekeeping_pay_period_id: z.ZodString;
15478
15911
  start_time: z.ZodISODateTime;
15479
15912
  end_time: z.ZodISODateTime;
15480
15913
  created_at: z.ZodISODateTime;
@@ -15502,9 +15935,9 @@ export declare const zDeleteTimeEntryPath: z.ZodObject<{
15502
15935
  export declare const zDeleteTimeEntryResponse: z.ZodObject<{
15503
15936
  id: z.ZodString;
15504
15937
  user_id: z.ZodString;
15505
- time_card_id: z.ZodString;
15938
+ timekeeping_time_card_id: z.ZodString;
15506
15939
  job_id: z.ZodNullable<z.ZodString>;
15507
- timecode_id: z.ZodNullable<z.ZodString>;
15940
+ timekeeping_timecode_id: z.ZodNullable<z.ZodString>;
15508
15941
  state: z.ZodNullable<z.ZodString>;
15509
15942
  description: z.ZodNullable<z.ZodString>;
15510
15943
  clock_punched: z.ZodBoolean;
@@ -15524,7 +15957,7 @@ export declare const zDeleteTimeEntryResponse: z.ZodObject<{
15524
15957
  hourly_rate_cents: z.ZodNullable<z.ZodString>;
15525
15958
  currency: z.ZodNullable<z.ZodString>;
15526
15959
  hourly_rate_src_type: z.ZodNullable<z.ZodString>;
15527
- pay_period_id: z.ZodString;
15960
+ timekeeping_pay_period_id: z.ZodString;
15528
15961
  start_time: z.ZodISODateTime;
15529
15962
  end_time: z.ZodISODateTime;
15530
15963
  created_at: z.ZodISODateTime;
@@ -15544,11 +15977,11 @@ export declare const zDeleteTimeEntryResponse: z.ZodObject<{
15544
15977
  total_hours: z.ZodNumber;
15545
15978
  }, z.core.$strip>;
15546
15979
  export declare const zUpdateTimeEntryBody: z.ZodObject<{
15547
- time_card_id: z.ZodString;
15980
+ timekeeping_time_card_id: z.ZodString;
15548
15981
  start_time: z.ZodISODateTime;
15549
15982
  end_time: z.ZodISODateTime;
15550
15983
  job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15551
- timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15984
+ timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15552
15985
  state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15553
15986
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15554
15987
  hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -15564,9 +15997,9 @@ export declare const zUpdateTimeEntryPath: z.ZodObject<{
15564
15997
  export declare const zUpdateTimeEntryResponse: z.ZodObject<{
15565
15998
  id: z.ZodString;
15566
15999
  user_id: z.ZodString;
15567
- time_card_id: z.ZodString;
16000
+ timekeeping_time_card_id: z.ZodString;
15568
16001
  job_id: z.ZodNullable<z.ZodString>;
15569
- timecode_id: z.ZodNullable<z.ZodString>;
16002
+ timekeeping_timecode_id: z.ZodNullable<z.ZodString>;
15570
16003
  state: z.ZodNullable<z.ZodString>;
15571
16004
  description: z.ZodNullable<z.ZodString>;
15572
16005
  clock_punched: z.ZodBoolean;
@@ -15586,7 +16019,7 @@ export declare const zUpdateTimeEntryResponse: z.ZodObject<{
15586
16019
  hourly_rate_cents: z.ZodNullable<z.ZodString>;
15587
16020
  currency: z.ZodNullable<z.ZodString>;
15588
16021
  hourly_rate_src_type: z.ZodNullable<z.ZodString>;
15589
- pay_period_id: z.ZodString;
16022
+ timekeeping_pay_period_id: z.ZodString;
15590
16023
  start_time: z.ZodISODateTime;
15591
16024
  end_time: z.ZodISODateTime;
15592
16025
  created_at: z.ZodISODateTime;
@@ -15978,45 +16411,6 @@ export declare const zCreateTimecodeResponse: z.ZodObject<{
15978
16411
  created_at: z.ZodISODateTime;
15979
16412
  updated_at: z.ZodISODateTime;
15980
16413
  }, z.core.$strip>;
15981
- export declare const zTerminateTimecodeBody: z.ZodObject<{
15982
- termination_date: z.ZodOptional<z.ZodISODate>;
15983
- }, z.core.$strip>;
15984
- export declare const zTerminateTimecodePath: z.ZodObject<{
15985
- id: z.ZodString;
15986
- }, z.core.$strip>;
15987
- /**
15988
- * Success
15989
- */
15990
- export declare const zTerminateTimecodeResponse: z.ZodObject<{
15991
- id: z.ZodString;
15992
- name: z.ZodString;
15993
- description: z.ZodNullable<z.ZodString>;
15994
- description_is_required: z.ZodBoolean;
15995
- billable: z.ZodBoolean;
15996
- overtime_eligible: z.ZodBoolean;
15997
- unpaid: z.ZodBoolean;
15998
- holiday: z.ZodBoolean;
15999
- pto: z.ZodBoolean;
16000
- safety: z.ZodBoolean;
16001
- lunch_shortcut: z.ZodBoolean;
16002
- break_shortcut: z.ZodBoolean;
16003
- pwa: z.ZodBoolean;
16004
- rest_and_recovery: z.ZodBoolean;
16005
- incentive_pay_eligible: z.ZodBoolean;
16006
- restricted_to: z.ZodEnum<{
16007
- none: "none";
16008
- job: "job";
16009
- non_job: "non_job";
16010
- job_with_timecode: "job_with_timecode";
16011
- }>;
16012
- default_for_company_id: z.ZodNullable<z.ZodString>;
16013
- valid_from: z.ZodISODateTime;
16014
- valid_to: z.ZodNullable<z.ZodISODateTime>;
16015
- transaction_from: z.ZodISODateTime;
16016
- transaction_to: z.ZodNullable<z.ZodISODateTime>;
16017
- created_at: z.ZodISODateTime;
16018
- updated_at: z.ZodISODateTime;
16019
- }, z.core.$strip>;
16020
16414
  export declare const zGetTimecodePath: z.ZodObject<{
16021
16415
  id: z.ZodString;
16022
16416
  }, z.core.$strip>;
@@ -16117,9 +16511,9 @@ export declare const zUpdateTimecodeResponse: z.ZodObject<{
16117
16511
  updated_at: z.ZodISODateTime;
16118
16512
  }, z.core.$strip>;
16119
16513
  export declare const zListJobTimeCardDaysQuery: z.ZodObject<{
16120
- 'filter[time_card_id]': z.ZodOptional<z.ZodString>;
16514
+ 'filter[timekeeping_time_card_id]': z.ZodOptional<z.ZodString>;
16121
16515
  'filter[job_id]': z.ZodOptional<z.ZodString>;
16122
- 'filter[pay_period_id]': z.ZodOptional<z.ZodString>;
16516
+ 'filter[timekeeping_pay_period_id]': z.ZodOptional<z.ZodString>;
16123
16517
  'filter[date][gte]': z.ZodOptional<z.ZodISODate>;
16124
16518
  'filter[date][lte]': z.ZodOptional<z.ZodISODate>;
16125
16519
  'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
@@ -16149,11 +16543,11 @@ export declare const zListJobTimeCardDaysResponse: z.ZodObject<{
16149
16543
  }, z.core.$strip>;
16150
16544
  data: z.ZodArray<z.ZodObject<{
16151
16545
  id: z.ZodString;
16152
- job_time_card_id: z.ZodString;
16546
+ timekeeping_job_time_card_id: z.ZodString;
16153
16547
  job_id: z.ZodString;
16154
- time_card_id: z.ZodString;
16548
+ timekeeping_time_card_id: z.ZodString;
16155
16549
  user_id: z.ZodString;
16156
- pay_period_id: z.ZodString;
16550
+ timekeeping_pay_period_id: z.ZodString;
16157
16551
  date: z.ZodISODate;
16158
16552
  minutes_worked: z.ZodInt;
16159
16553
  paid_minutes_worked: z.ZodInt;
@@ -16241,11 +16635,11 @@ export declare const zGetJobTimeCardDayPath: z.ZodObject<{
16241
16635
  */
16242
16636
  export declare const zGetJobTimeCardDayResponse: z.ZodObject<{
16243
16637
  id: z.ZodString;
16244
- job_time_card_id: z.ZodString;
16638
+ timekeeping_job_time_card_id: z.ZodString;
16245
16639
  job_id: z.ZodString;
16246
- time_card_id: z.ZodString;
16640
+ timekeeping_time_card_id: z.ZodString;
16247
16641
  user_id: z.ZodString;
16248
- pay_period_id: z.ZodString;
16642
+ timekeeping_pay_period_id: z.ZodString;
16249
16643
  date: z.ZodISODate;
16250
16644
  minutes_worked: z.ZodInt;
16251
16645
  paid_minutes_worked: z.ZodInt;
@@ -16340,7 +16734,7 @@ export declare const zCreateManagerTimeEntryApprovalPath: z.ZodObject<{
16340
16734
  */
16341
16735
  export declare const zCreateManagerTimeEntryApprovalResponse: z.ZodObject<{
16342
16736
  id: z.ZodString;
16343
- time_entry_id: z.ZodString;
16737
+ timekeeping_time_entry_id: z.ZodString;
16344
16738
  time_card_approval_id: z.ZodNullable<z.ZodString>;
16345
16739
  status: z.ZodEnum<{
16346
16740
  pending: "pending";
@@ -16827,7 +17221,7 @@ export declare const zGetPayPeriodConfigResponse: z.ZodObject<{
16827
17221
  created_at: z.ZodISODateTime;
16828
17222
  }, z.core.$strip>;
16829
17223
  export declare const zListTimeCardActualsQuery: z.ZodObject<{
16830
- 'filter[time_card_id]': z.ZodOptional<z.ZodString>;
17224
+ 'filter[timekeeping_time_card_id]': z.ZodOptional<z.ZodString>;
16831
17225
  'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
16832
17226
  'filter[created_at][lte]': z.ZodOptional<z.ZodISODateTime>;
16833
17227
  'filter[updated_at][gte]': z.ZodOptional<z.ZodISODateTime>;
@@ -16855,7 +17249,7 @@ export declare const zListTimeCardActualsResponse: z.ZodObject<{
16855
17249
  }, z.core.$strip>>;
16856
17250
  data: z.ZodOptional<z.ZodArray<z.ZodObject<{
16857
17251
  id: z.ZodString;
16858
- time_card_id: z.ZodString;
17252
+ timekeeping_time_card_id: z.ZodString;
16859
17253
  gross_pay_cents: z.ZodNullable<z.ZodString>;
16860
17254
  net_pay_cents: z.ZodNullable<z.ZodString>;
16861
17255
  reimbursements_cents: z.ZodNullable<z.ZodString>;
@@ -16914,7 +17308,7 @@ export declare const zGetTimeCardActualPath: z.ZodObject<{
16914
17308
  */
16915
17309
  export declare const zGetTimeCardActualResponse: z.ZodObject<{
16916
17310
  id: z.ZodString;
16917
- time_card_id: z.ZodString;
17311
+ timekeeping_time_card_id: z.ZodString;
16918
17312
  gross_pay_cents: z.ZodNullable<z.ZodString>;
16919
17313
  net_pay_cents: z.ZodNullable<z.ZodString>;
16920
17314
  reimbursements_cents: z.ZodNullable<z.ZodString>;
@@ -17067,7 +17461,7 @@ export declare const zListUserCompanyScheduledChangesResponse: z.ZodObject<{
17067
17461
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17068
17462
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17069
17463
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17070
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17464
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17071
17465
  }, z.core.$strip>>;
17072
17466
  scheduled_changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
17073
17467
  id: z.ZodOptional<z.ZodString>;
@@ -17082,7 +17476,7 @@ export declare const zListUserCompanyScheduledChangesResponse: z.ZodObject<{
17082
17476
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17083
17477
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17084
17478
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17085
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17479
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17086
17480
  }, z.core.$strip>>>;
17087
17481
  }, z.core.$strip>;
17088
17482
  export declare const zCreateUserCompanyScheduledChangeBody: z.ZodObject<{
@@ -17097,7 +17491,7 @@ export declare const zCreateUserCompanyScheduledChangeBody: z.ZodObject<{
17097
17491
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17098
17492
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17099
17493
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17100
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17494
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17101
17495
  }, z.core.$strip>;
17102
17496
  export declare const zCreateUserCompanyScheduledChangePath: z.ZodObject<{
17103
17497
  user_id: z.ZodString;
@@ -17121,7 +17515,7 @@ export declare const zCreateUserCompanyScheduledChangeResponse: z.ZodObject<{
17121
17515
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17122
17516
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17123
17517
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17124
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17518
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17125
17519
  }, z.core.$strip>>;
17126
17520
  scheduled_changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
17127
17521
  id: z.ZodOptional<z.ZodString>;
@@ -17136,7 +17530,7 @@ export declare const zCreateUserCompanyScheduledChangeResponse: z.ZodObject<{
17136
17530
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17137
17531
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17138
17532
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17139
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17533
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17140
17534
  }, z.core.$strip>>>;
17141
17535
  }, z.core.$strip>;
17142
17536
  export declare const zCancelUserCompanyScheduledChangePath: z.ZodObject<{
@@ -17162,7 +17556,7 @@ export declare const zCancelUserCompanyScheduledChangeResponse: z.ZodObject<{
17162
17556
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17163
17557
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17164
17558
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17165
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17559
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17166
17560
  }, z.core.$strip>>;
17167
17561
  scheduled_changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
17168
17562
  id: z.ZodOptional<z.ZodString>;
@@ -17177,7 +17571,7 @@ export declare const zCancelUserCompanyScheduledChangeResponse: z.ZodObject<{
17177
17571
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17178
17572
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17179
17573
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17180
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17574
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17181
17575
  }, z.core.$strip>>>;
17182
17576
  }, z.core.$strip>;
17183
17577
  export declare const zUpdateScheduledChangeBody: z.ZodObject<{
@@ -17192,7 +17586,7 @@ export declare const zUpdateScheduledChangeBody: z.ZodObject<{
17192
17586
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17193
17587
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17194
17588
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17195
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17589
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17196
17590
  }, z.core.$strip>;
17197
17591
  export declare const zUpdateScheduledChangePath: z.ZodObject<{
17198
17592
  user_id: z.ZodString;
@@ -17217,7 +17611,7 @@ export declare const zUpdateScheduledChangeResponse: z.ZodObject<{
17217
17611
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17218
17612
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17219
17613
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17220
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17614
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17221
17615
  }, z.core.$strip>>;
17222
17616
  scheduled_changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
17223
17617
  id: z.ZodOptional<z.ZodString>;
@@ -17232,7 +17626,7 @@ export declare const zUpdateScheduledChangeResponse: z.ZodObject<{
17232
17626
  pto_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17233
17627
  holiday_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17234
17628
  training_annual_minutes: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
17235
- department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17629
+ companies_department_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17236
17630
  }, z.core.$strip>>>;
17237
17631
  }, z.core.$strip>;
17238
17632
  export declare const zCreateScheduledTerminationBody: z.ZodObject<{
@@ -17283,6 +17677,10 @@ export declare const zCreateScheduledTerminationResponse: z.ZodObject<{
17283
17677
  training_annual_minutes: z.ZodNullable<z.ZodInt>;
17284
17678
  hire_date: z.ZodNullable<z.ZodString>;
17285
17679
  termination_date: z.ZodNullable<z.ZodString>;
17680
+ employment_window: z.ZodObject<{
17681
+ valid_from: z.ZodISODateTime;
17682
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
17683
+ }, z.core.$strip>;
17286
17684
  manager_user_id: z.ZodNullable<z.ZodString>;
17287
17685
  roles: z.ZodArray<z.ZodString>;
17288
17686
  company_user_pwa_info: z.ZodNullable<z.ZodObject<{
@@ -17403,6 +17801,10 @@ export declare const zCancelUserCompanyScheduledTerminationResponse: z.ZodObject
17403
17801
  training_annual_minutes: z.ZodNullable<z.ZodInt>;
17404
17802
  hire_date: z.ZodNullable<z.ZodString>;
17405
17803
  termination_date: z.ZodNullable<z.ZodString>;
17804
+ employment_window: z.ZodObject<{
17805
+ valid_from: z.ZodISODateTime;
17806
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
17807
+ }, z.core.$strip>;
17406
17808
  manager_user_id: z.ZodNullable<z.ZodString>;
17407
17809
  roles: z.ZodArray<z.ZodString>;
17408
17810
  company_user_pwa_info: z.ZodNullable<z.ZodObject<{
@@ -17542,6 +17944,10 @@ export declare const zCreateCompanyResponse: z.ZodObject<{
17542
17944
  training_annual_minutes: z.ZodNullable<z.ZodInt>;
17543
17945
  hire_date: z.ZodNullable<z.ZodString>;
17544
17946
  termination_date: z.ZodNullable<z.ZodString>;
17947
+ employment_window: z.ZodObject<{
17948
+ valid_from: z.ZodISODateTime;
17949
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
17950
+ }, z.core.$strip>;
17545
17951
  manager_user_id: z.ZodNullable<z.ZodString>;
17546
17952
  roles: z.ZodArray<z.ZodString>;
17547
17953
  company_user_pwa_info: z.ZodNullable<z.ZodObject<{
@@ -17661,6 +18067,10 @@ export declare const zRemoveUserFromCompanyResponse: z.ZodObject<{
17661
18067
  training_annual_minutes: z.ZodNullable<z.ZodInt>;
17662
18068
  hire_date: z.ZodNullable<z.ZodString>;
17663
18069
  termination_date: z.ZodNullable<z.ZodString>;
18070
+ employment_window: z.ZodObject<{
18071
+ valid_from: z.ZodISODateTime;
18072
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
18073
+ }, z.core.$strip>;
17664
18074
  manager_user_id: z.ZodNullable<z.ZodString>;
17665
18075
  roles: z.ZodArray<z.ZodString>;
17666
18076
  company_user_pwa_info: z.ZodNullable<z.ZodObject<{
@@ -17794,6 +18204,10 @@ export declare const zUpdateCompanyResponse: z.ZodObject<{
17794
18204
  training_annual_minutes: z.ZodNullable<z.ZodInt>;
17795
18205
  hire_date: z.ZodNullable<z.ZodString>;
17796
18206
  termination_date: z.ZodNullable<z.ZodString>;
18207
+ employment_window: z.ZodObject<{
18208
+ valid_from: z.ZodISODateTime;
18209
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
18210
+ }, z.core.$strip>;
17797
18211
  manager_user_id: z.ZodNullable<z.ZodString>;
17798
18212
  roles: z.ZodArray<z.ZodString>;
17799
18213
  company_user_pwa_info: z.ZodNullable<z.ZodObject<{
@@ -17937,6 +18351,10 @@ export declare const zListUsersResponse: z.ZodObject<{
17937
18351
  training_annual_minutes: z.ZodNullable<z.ZodInt>;
17938
18352
  hire_date: z.ZodNullable<z.ZodString>;
17939
18353
  termination_date: z.ZodNullable<z.ZodString>;
18354
+ employment_window: z.ZodObject<{
18355
+ valid_from: z.ZodISODateTime;
18356
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
18357
+ }, z.core.$strip>;
17940
18358
  manager_user_id: z.ZodNullable<z.ZodString>;
17941
18359
  roles: z.ZodArray<z.ZodString>;
17942
18360
  company_user_pwa_info: z.ZodNullable<z.ZodObject<{
@@ -18027,7 +18445,6 @@ export declare const zCreateUserBody: z.ZodObject<{
18027
18445
  city: z.ZodOptional<z.ZodString>;
18028
18446
  state: z.ZodOptional<z.ZodString>;
18029
18447
  birth_date: z.ZodOptional<z.ZodString>;
18030
- external_id: z.ZodOptional<z.ZodString>;
18031
18448
  dol_apprentice_no: z.ZodOptional<z.ZodString>;
18032
18449
  winda_id: z.ZodOptional<z.ZodString>;
18033
18450
  linkedin_url: z.ZodOptional<z.ZodString>;
@@ -18168,6 +18585,10 @@ export declare const zCreateUserResponse: z.ZodObject<{
18168
18585
  training_annual_minutes: z.ZodNullable<z.ZodInt>;
18169
18586
  hire_date: z.ZodNullable<z.ZodString>;
18170
18587
  termination_date: z.ZodNullable<z.ZodString>;
18588
+ employment_window: z.ZodObject<{
18589
+ valid_from: z.ZodISODateTime;
18590
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
18591
+ }, z.core.$strip>;
18171
18592
  manager_user_id: z.ZodNullable<z.ZodString>;
18172
18593
  roles: z.ZodArray<z.ZodString>;
18173
18594
  company_user_pwa_info: z.ZodNullable<z.ZodObject<{
@@ -18286,6 +18707,10 @@ export declare const zGetUserResponse: z.ZodObject<{
18286
18707
  training_annual_minutes: z.ZodNullable<z.ZodInt>;
18287
18708
  hire_date: z.ZodNullable<z.ZodString>;
18288
18709
  termination_date: z.ZodNullable<z.ZodString>;
18710
+ employment_window: z.ZodObject<{
18711
+ valid_from: z.ZodISODateTime;
18712
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
18713
+ }, z.core.$strip>;
18289
18714
  manager_user_id: z.ZodNullable<z.ZodString>;
18290
18715
  roles: z.ZodArray<z.ZodString>;
18291
18716
  company_user_pwa_info: z.ZodNullable<z.ZodObject<{
@@ -18418,6 +18843,10 @@ export declare const zUpdateUserResponse: z.ZodObject<{
18418
18843
  training_annual_minutes: z.ZodNullable<z.ZodInt>;
18419
18844
  hire_date: z.ZodNullable<z.ZodString>;
18420
18845
  termination_date: z.ZodNullable<z.ZodString>;
18846
+ employment_window: z.ZodObject<{
18847
+ valid_from: z.ZodISODateTime;
18848
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
18849
+ }, z.core.$strip>;
18421
18850
  manager_user_id: z.ZodNullable<z.ZodString>;
18422
18851
  roles: z.ZodArray<z.ZodString>;
18423
18852
  company_user_pwa_info: z.ZodNullable<z.ZodObject<{
@@ -18565,7 +18994,7 @@ export declare const zListWageDeterminationsResponse: z.ZodObject<{
18565
18994
  modification_number: z.ZodInt;
18566
18995
  superseded_by_wage_determination_id: z.ZodNullable<z.ZodString>;
18567
18996
  publication_date: z.ZodISODate;
18568
- region_id: z.ZodString;
18997
+ boundaries_region_id: z.ZodString;
18569
18998
  valid_from: z.ZodISODateTime;
18570
18999
  valid_to: z.ZodNullable<z.ZodISODateTime>;
18571
19000
  created_at: z.ZodISODateTime;
@@ -18585,7 +19014,7 @@ export declare const zGetWageDeterminationResponse: z.ZodObject<{
18585
19014
  modification_number: z.ZodInt;
18586
19015
  superseded_by_wage_determination_id: z.ZodNullable<z.ZodString>;
18587
19016
  publication_date: z.ZodISODate;
18588
- region_id: z.ZodString;
19017
+ boundaries_region_id: z.ZodString;
18589
19018
  valid_from: z.ZodISODateTime;
18590
19019
  valid_to: z.ZodNullable<z.ZodISODateTime>;
18591
19020
  created_at: z.ZodISODateTime;