@dsptch-work/api-client 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +29 -0
- package/dist/gen/index.d.ts +1 -1
- package/dist/gen/sdk.gen.d.ts +1 -19
- package/dist/gen/sdk.gen.js +0 -34
- package/dist/gen/types.gen.d.ts +246 -249
- package/dist/gen/zod.gen.d.ts +475 -510
- package/dist/gen/zod.gen.js +218 -225
- package/package.json +1 -1
package/dist/gen/zod.gen.d.ts
CHANGED
|
@@ -850,6 +850,9 @@ export declare const zTimecodeCorrectionParameters: z.ZodObject<{
|
|
|
850
850
|
export declare const zTimecodeGenesisParameters: z.ZodObject<{
|
|
851
851
|
effective_date: z.ZodISODateTime;
|
|
852
852
|
}, z.core.$strip>;
|
|
853
|
+
/**
|
|
854
|
+
* Request body for scheduling a timecode's termination: the date from which it stops being valid. The body is required — the endpoint reads effective_date with `params.expect`, so a request omitting it is refused with `400`.
|
|
855
|
+
*/
|
|
853
856
|
export declare const zTimecodeScheduledTerminationParameters: z.ZodObject<{
|
|
854
857
|
effective_date: z.ZodISODateTime;
|
|
855
858
|
}, z.core.$strip>;
|
|
@@ -902,7 +905,7 @@ export declare const zPerDiemResponseObject: z.ZodObject<{
|
|
|
902
905
|
export declare const zPerDiemParameters: z.ZodObject<{
|
|
903
906
|
name: z.ZodString;
|
|
904
907
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
905
|
-
rate_cents: z.
|
|
908
|
+
rate_cents: z.ZodString;
|
|
906
909
|
currency: z.ZodString;
|
|
907
910
|
taxable: z.ZodOptional<z.ZodBoolean>;
|
|
908
911
|
default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -1613,20 +1616,51 @@ export declare const zManagerTimeEntryApprovalParameters: z.ZodObject<{
|
|
|
1613
1616
|
approver_user_id: z.ZodString;
|
|
1614
1617
|
}, z.core.$strip>;
|
|
1615
1618
|
/**
|
|
1616
|
-
*
|
|
1619
|
+
* The time-entry body fields shared by the create and update bodies; each of those declares its own requiredness.
|
|
1617
1620
|
*/
|
|
1618
1621
|
export declare const zTimeEntryParameters: z.ZodObject<{
|
|
1619
|
-
timekeeping_time_card_id: z.ZodString
|
|
1620
|
-
start_time: z.ZodISODateTime
|
|
1621
|
-
end_time: z.ZodISODateTime
|
|
1622
|
+
timekeeping_time_card_id: z.ZodOptional<z.ZodString>;
|
|
1623
|
+
start_time: z.ZodOptional<z.ZodISODateTime>;
|
|
1624
|
+
end_time: z.ZodOptional<z.ZodISODateTime>;
|
|
1622
1625
|
job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1623
1626
|
timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1624
1627
|
state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1625
1628
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1626
1629
|
hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1627
1630
|
feature_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
1628
|
-
feature_allocation_acknowledged: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1629
1631
|
}, z.core.$strip>;
|
|
1632
|
+
/**
|
|
1633
|
+
* Request body for creating a time entry — the time_entry_parameters fields, of which timekeeping_time_card_id, start_time, and end_time are required, plus the explicit "no feature" acknowledgement.
|
|
1634
|
+
*/
|
|
1635
|
+
export declare const zTimeEntryCreateParameters: z.ZodIntersection<z.ZodObject<{
|
|
1636
|
+
timekeeping_time_card_id: z.ZodOptional<z.ZodString>;
|
|
1637
|
+
start_time: z.ZodOptional<z.ZodISODateTime>;
|
|
1638
|
+
end_time: z.ZodOptional<z.ZodISODateTime>;
|
|
1639
|
+
job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1640
|
+
timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1641
|
+
state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1642
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1643
|
+
hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1644
|
+
feature_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
1645
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1646
|
+
feature_allocation_acknowledged: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1647
|
+
}, z.core.$strip>>;
|
|
1648
|
+
/**
|
|
1649
|
+
* Request body for updating a time entry — the time_entry_parameters fields, every one optional, plus the acknowledgement that clears an apprenticeship allocation conflict.
|
|
1650
|
+
*/
|
|
1651
|
+
export declare const zTimeEntryUpdateParameters: z.ZodIntersection<z.ZodObject<{
|
|
1652
|
+
timekeeping_time_card_id: z.ZodOptional<z.ZodString>;
|
|
1653
|
+
start_time: z.ZodOptional<z.ZodISODateTime>;
|
|
1654
|
+
end_time: z.ZodOptional<z.ZodISODateTime>;
|
|
1655
|
+
job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1656
|
+
timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1657
|
+
state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1658
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1659
|
+
hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1660
|
+
feature_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
1661
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1662
|
+
confirm_allocation_conflict: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1663
|
+
}, z.core.$strip>>;
|
|
1630
1664
|
/**
|
|
1631
1665
|
* A single form submission — a user's completed SurveyJS form with the resolved answers (the fuller show representation). Read-only; submissions are created in the app.
|
|
1632
1666
|
*/
|
|
@@ -1650,7 +1684,10 @@ export declare const zFormSubmissionResponseObject: z.ZodObject<{
|
|
|
1650
1684
|
export declare const zUserCompanyScheduledChangesParameters: z.ZodObject<{
|
|
1651
1685
|
effective_date: z.ZodString;
|
|
1652
1686
|
hourly_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1653
|
-
compensation_type: z.ZodOptional<z.
|
|
1687
|
+
compensation_type: z.ZodOptional<z.ZodEnum<{
|
|
1688
|
+
hourly: "hourly";
|
|
1689
|
+
salary: "salary";
|
|
1690
|
+
}>>;
|
|
1654
1691
|
overtime_eligible: z.ZodOptional<z.ZodBoolean>;
|
|
1655
1692
|
training_annual_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1656
1693
|
employer_combined_health_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1942,6 +1979,10 @@ export declare const zJobParameters: z.ZodObject<{
|
|
|
1942
1979
|
verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1943
1980
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1944
1981
|
}, z.core.$strip>>>;
|
|
1982
|
+
custom_fields_attributes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1983
|
+
custom_field_config_id: z.ZodString;
|
|
1984
|
+
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1985
|
+
}, z.core.$strip>>>>;
|
|
1945
1986
|
pwa_details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1946
1987
|
contractor_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1947
1988
|
pay_full_cash_fringe_by_default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -2019,6 +2060,10 @@ export declare const zJobUpdateParameters: z.ZodIntersection<z.ZodObject<{
|
|
|
2019
2060
|
verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2020
2061
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2021
2062
|
}, z.core.$strip>>>;
|
|
2063
|
+
custom_fields_attributes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2064
|
+
custom_field_config_id: z.ZodString;
|
|
2065
|
+
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2066
|
+
}, z.core.$strip>>>>;
|
|
2022
2067
|
pwa_details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2023
2068
|
contractor_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2024
2069
|
pay_full_cash_fringe_by_default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -3256,7 +3301,7 @@ export declare const zCertificationParameters: z.ZodObject<{
|
|
|
3256
3301
|
company_id: z.ZodString;
|
|
3257
3302
|
name: z.ZodString;
|
|
3258
3303
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3259
|
-
verified: z.ZodOptional<z.
|
|
3304
|
+
verified: z.ZodOptional<z.ZodBoolean>;
|
|
3260
3305
|
duration: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3261
3306
|
}, z.core.$strip>;
|
|
3262
3307
|
/**
|
|
@@ -3306,7 +3351,7 @@ export declare const zUserCertificationParameters: z.ZodObject<{
|
|
|
3306
3351
|
name: z.ZodString;
|
|
3307
3352
|
content: z.ZodString;
|
|
3308
3353
|
}, z.core.$strip>>>;
|
|
3309
|
-
verified: z.ZodOptional<z.
|
|
3354
|
+
verified: z.ZodOptional<z.ZodBoolean>;
|
|
3310
3355
|
expiration_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
|
|
3311
3356
|
credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3312
3357
|
approved_by_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3764,7 +3809,10 @@ export declare const zUserCompanyCreateParameters: z.ZodObject<{
|
|
|
3764
3809
|
}>>>;
|
|
3765
3810
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3766
3811
|
manager_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3767
|
-
compensation_type: z.ZodOptional<z.
|
|
3812
|
+
compensation_type: z.ZodOptional<z.ZodEnum<{
|
|
3813
|
+
hourly: "hourly";
|
|
3814
|
+
salary: "salary";
|
|
3815
|
+
}>>;
|
|
3768
3816
|
enrolled_in_t_and_a: z.ZodOptional<z.ZodBoolean>;
|
|
3769
3817
|
payroll_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3770
3818
|
hourly_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5462,6 +5510,7 @@ export declare const zAssetsProductResponseObject: z.ZodObject<{
|
|
|
5462
5510
|
created_at: z.ZodISODateTime;
|
|
5463
5511
|
updated_at: z.ZodISODateTime;
|
|
5464
5512
|
}, z.core.$strip>>;
|
|
5513
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
5465
5514
|
created_at: z.ZodISODateTime;
|
|
5466
5515
|
updated_at: z.ZodISODateTime;
|
|
5467
5516
|
}, z.core.$strip>;
|
|
@@ -5482,7 +5531,6 @@ export declare const zAssetsItemResponseObject: z.ZodObject<{
|
|
|
5482
5531
|
status: z.ZodNullable<z.ZodEnum<{
|
|
5483
5532
|
available: "available";
|
|
5484
5533
|
assigned: "assigned";
|
|
5485
|
-
retired: "retired";
|
|
5486
5534
|
}>>;
|
|
5487
5535
|
purchase_date: z.ZodNullable<z.ZodISODateTime>;
|
|
5488
5536
|
purchase_price_cents: z.ZodNullable<z.ZodString>;
|
|
@@ -5509,6 +5557,7 @@ export declare const zAssetsItemResponseObject: z.ZodObject<{
|
|
|
5509
5557
|
created_at: z.ZodISODateTime;
|
|
5510
5558
|
updated_at: z.ZodISODateTime;
|
|
5511
5559
|
}, z.core.$strip>>;
|
|
5560
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
5512
5561
|
created_at: z.ZodISODateTime;
|
|
5513
5562
|
updated_at: z.ZodISODateTime;
|
|
5514
5563
|
}, z.core.$strip>;
|
|
@@ -5594,7 +5643,6 @@ export declare const zAssetsItemParameters: z.ZodObject<{
|
|
|
5594
5643
|
status: z.ZodOptional<z.ZodEnum<{
|
|
5595
5644
|
available: "available";
|
|
5596
5645
|
assigned: "assigned";
|
|
5597
|
-
retired: "retired";
|
|
5598
5646
|
}>>;
|
|
5599
5647
|
purchase_date: z.ZodOptional<z.ZodISODateTime>;
|
|
5600
5648
|
purchase_price_cents: z.ZodOptional<z.ZodInt>;
|
|
@@ -6068,17 +6116,11 @@ export declare const zAssetsAdjustmentParameters: z.ZodObject<{
|
|
|
6068
6116
|
new_quantity: z.ZodInt;
|
|
6069
6117
|
performed_by_user_id: z.ZodString;
|
|
6070
6118
|
}, z.core.$strip>;
|
|
6071
|
-
/**
|
|
6072
|
-
* Retire an item, taking it out of service. A serial item is removed from its site or user (recording the removal) and marked retired; a bulk item is flagged retired without changing its stock. Delete this resource to un-retire.
|
|
6073
|
-
*/
|
|
6074
|
-
export declare const zAssetsRetirementParameters: z.ZodObject<{
|
|
6075
|
-
performed_by_user_id: z.ZodString;
|
|
6076
|
-
}, z.core.$strip>;
|
|
6077
6119
|
/**
|
|
6078
6120
|
* Success
|
|
6079
6121
|
*/
|
|
6080
6122
|
export declare const zListApiKeyScopesResponse: z.ZodObject<{
|
|
6081
|
-
data: z.
|
|
6123
|
+
data: z.ZodArray<z.ZodObject<{
|
|
6082
6124
|
resource: z.ZodString;
|
|
6083
6125
|
action: z.ZodEnum<{
|
|
6084
6126
|
delete: "delete";
|
|
@@ -6087,7 +6129,7 @@ export declare const zListApiKeyScopesResponse: z.ZodObject<{
|
|
|
6087
6129
|
update: "update";
|
|
6088
6130
|
}>;
|
|
6089
6131
|
name: z.ZodString;
|
|
6090
|
-
}, z.core.$strip
|
|
6132
|
+
}, z.core.$strip>>;
|
|
6091
6133
|
}, z.core.$strip>;
|
|
6092
6134
|
export declare const zListApprenticesPath: z.ZodObject<{
|
|
6093
6135
|
program_id: z.ZodString;
|
|
@@ -6109,18 +6151,18 @@ export declare const zListApprenticesQuery: z.ZodObject<{
|
|
|
6109
6151
|
* Success
|
|
6110
6152
|
*/
|
|
6111
6153
|
export declare const zListApprenticesResponse: z.ZodObject<{
|
|
6112
|
-
meta: z.
|
|
6154
|
+
meta: z.ZodObject<{
|
|
6113
6155
|
page: z.ZodObject<{
|
|
6114
6156
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
6115
6157
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
6116
6158
|
}, z.core.$strip>;
|
|
6117
|
-
}, z.core.$strip
|
|
6118
|
-
links: z.
|
|
6159
|
+
}, z.core.$strip>;
|
|
6160
|
+
links: z.ZodObject<{
|
|
6119
6161
|
self: z.ZodString;
|
|
6120
6162
|
first: z.ZodNullable<z.ZodString>;
|
|
6121
6163
|
next: z.ZodNullable<z.ZodString>;
|
|
6122
|
-
}, z.core.$strip
|
|
6123
|
-
data: z.
|
|
6164
|
+
}, z.core.$strip>;
|
|
6165
|
+
data: z.ZodArray<z.ZodObject<{
|
|
6124
6166
|
id: z.ZodString;
|
|
6125
6167
|
user_id: z.ZodString;
|
|
6126
6168
|
status: z.ZodEnum<{
|
|
@@ -6150,7 +6192,7 @@ export declare const zListApprenticesResponse: z.ZodObject<{
|
|
|
6150
6192
|
status_verified_at: z.ZodNullable<z.ZodISODateTime>;
|
|
6151
6193
|
created_at: z.ZodISODateTime;
|
|
6152
6194
|
updated_at: z.ZodISODateTime;
|
|
6153
|
-
}, z.core.$strip
|
|
6195
|
+
}, z.core.$strip>>;
|
|
6154
6196
|
}, z.core.$strip>;
|
|
6155
6197
|
export declare const zCreateApprenticeBody: z.ZodObject<{
|
|
6156
6198
|
apprenticeship_wage_schedule_id: z.ZodString;
|
|
@@ -6226,18 +6268,18 @@ export declare const zListOccupationsQuery: z.ZodObject<{
|
|
|
6226
6268
|
* Success
|
|
6227
6269
|
*/
|
|
6228
6270
|
export declare const zListOccupationsResponse: z.ZodObject<{
|
|
6229
|
-
meta: z.
|
|
6271
|
+
meta: z.ZodObject<{
|
|
6230
6272
|
page: z.ZodObject<{
|
|
6231
6273
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
6232
6274
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
6233
6275
|
}, z.core.$strip>;
|
|
6234
|
-
}, z.core.$strip
|
|
6235
|
-
links: z.
|
|
6276
|
+
}, z.core.$strip>;
|
|
6277
|
+
links: z.ZodObject<{
|
|
6236
6278
|
self: z.ZodString;
|
|
6237
6279
|
first: z.ZodNullable<z.ZodString>;
|
|
6238
6280
|
next: z.ZodNullable<z.ZodString>;
|
|
6239
|
-
}, z.core.$strip
|
|
6240
|
-
data: z.
|
|
6281
|
+
}, z.core.$strip>;
|
|
6282
|
+
data: z.ZodArray<z.ZodObject<{
|
|
6241
6283
|
id: z.ZodString;
|
|
6242
6284
|
apprenticeship_program_id: z.ZodString;
|
|
6243
6285
|
rapids_code: z.ZodString;
|
|
@@ -6255,7 +6297,7 @@ export declare const zListOccupationsResponse: z.ZodObject<{
|
|
|
6255
6297
|
num_journeyworkers: z.ZodInt;
|
|
6256
6298
|
created_at: z.ZodISODateTime;
|
|
6257
6299
|
updated_at: z.ZodISODateTime;
|
|
6258
|
-
}, z.core.$strip
|
|
6300
|
+
}, z.core.$strip>>;
|
|
6259
6301
|
}, z.core.$strip>;
|
|
6260
6302
|
export declare const zCreateOccupationBody: z.ZodObject<{
|
|
6261
6303
|
rapids_code: z.ZodString;
|
|
@@ -6356,25 +6398,25 @@ export declare const zListEmployersQuery: z.ZodObject<{
|
|
|
6356
6398
|
* Success
|
|
6357
6399
|
*/
|
|
6358
6400
|
export declare const zListEmployersResponse: z.ZodObject<{
|
|
6359
|
-
meta: z.
|
|
6401
|
+
meta: z.ZodObject<{
|
|
6360
6402
|
page: z.ZodObject<{
|
|
6361
6403
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
6362
6404
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
6363
6405
|
}, z.core.$strip>;
|
|
6364
|
-
}, z.core.$strip
|
|
6365
|
-
links: z.
|
|
6406
|
+
}, z.core.$strip>;
|
|
6407
|
+
links: z.ZodObject<{
|
|
6366
6408
|
self: z.ZodString;
|
|
6367
6409
|
first: z.ZodNullable<z.ZodString>;
|
|
6368
6410
|
next: z.ZodNullable<z.ZodString>;
|
|
6369
|
-
}, z.core.$strip
|
|
6370
|
-
data: z.
|
|
6411
|
+
}, z.core.$strip>;
|
|
6412
|
+
data: z.ZodArray<z.ZodObject<{
|
|
6371
6413
|
id: z.ZodString;
|
|
6372
6414
|
apprenticeship_program_id: z.ZodString;
|
|
6373
6415
|
company_id: z.ZodString;
|
|
6374
6416
|
require_timecard_allocation: z.ZodBoolean;
|
|
6375
6417
|
created_at: z.ZodISODateTime;
|
|
6376
6418
|
updated_at: z.ZodISODateTime;
|
|
6377
|
-
}, z.core.$strip
|
|
6419
|
+
}, z.core.$strip>>;
|
|
6378
6420
|
}, z.core.$strip>;
|
|
6379
6421
|
export declare const zCreateEmployerBody: z.ZodObject<{
|
|
6380
6422
|
company_id: z.ZodString;
|
|
@@ -6443,18 +6485,18 @@ export declare const zListProgramsQuery: z.ZodObject<{
|
|
|
6443
6485
|
* Success
|
|
6444
6486
|
*/
|
|
6445
6487
|
export declare const zListProgramsResponse: z.ZodObject<{
|
|
6446
|
-
meta: z.
|
|
6488
|
+
meta: z.ZodObject<{
|
|
6447
6489
|
page: z.ZodObject<{
|
|
6448
6490
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
6449
6491
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
6450
6492
|
}, z.core.$strip>;
|
|
6451
|
-
}, z.core.$strip
|
|
6452
|
-
links: z.
|
|
6493
|
+
}, z.core.$strip>;
|
|
6494
|
+
links: z.ZodObject<{
|
|
6453
6495
|
self: z.ZodString;
|
|
6454
6496
|
first: z.ZodNullable<z.ZodString>;
|
|
6455
6497
|
next: z.ZodNullable<z.ZodString>;
|
|
6456
|
-
}, z.core.$strip
|
|
6457
|
-
data: z.
|
|
6498
|
+
}, z.core.$strip>;
|
|
6499
|
+
data: z.ZodArray<z.ZodObject<{
|
|
6458
6500
|
id: z.ZodString;
|
|
6459
6501
|
sponsor_company_id: z.ZodString;
|
|
6460
6502
|
program_number: z.ZodString;
|
|
@@ -6467,7 +6509,7 @@ export declare const zListProgramsResponse: z.ZodObject<{
|
|
|
6467
6509
|
}>>;
|
|
6468
6510
|
created_at: z.ZodISODateTime;
|
|
6469
6511
|
updated_at: z.ZodISODateTime;
|
|
6470
|
-
}, z.core.$strip
|
|
6512
|
+
}, z.core.$strip>>;
|
|
6471
6513
|
}, z.core.$strip>;
|
|
6472
6514
|
export declare const zCreateProgramBody: z.ZodObject<{
|
|
6473
6515
|
program_number: z.ZodString;
|
|
@@ -6544,18 +6586,18 @@ export declare const zListPeriodsQuery: z.ZodObject<{
|
|
|
6544
6586
|
* Success
|
|
6545
6587
|
*/
|
|
6546
6588
|
export declare const zListPeriodsResponse: z.ZodObject<{
|
|
6547
|
-
meta: z.
|
|
6589
|
+
meta: z.ZodObject<{
|
|
6548
6590
|
page: z.ZodObject<{
|
|
6549
6591
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
6550
6592
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
6551
6593
|
}, z.core.$strip>;
|
|
6552
|
-
}, z.core.$strip
|
|
6553
|
-
links: z.
|
|
6594
|
+
}, z.core.$strip>;
|
|
6595
|
+
links: z.ZodObject<{
|
|
6554
6596
|
self: z.ZodString;
|
|
6555
6597
|
first: z.ZodNullable<z.ZodString>;
|
|
6556
6598
|
next: z.ZodNullable<z.ZodString>;
|
|
6557
|
-
}, z.core.$strip
|
|
6558
|
-
data: z.
|
|
6599
|
+
}, z.core.$strip>;
|
|
6600
|
+
data: z.ZodArray<z.ZodObject<{
|
|
6559
6601
|
id: z.ZodString;
|
|
6560
6602
|
apprenticeship_wage_schedule_id: z.ZodString;
|
|
6561
6603
|
period_number: z.ZodInt;
|
|
@@ -6568,7 +6610,7 @@ export declare const zListPeriodsResponse: z.ZodObject<{
|
|
|
6568
6610
|
wage_currency: z.ZodString;
|
|
6569
6611
|
created_at: z.ZodISODateTime;
|
|
6570
6612
|
updated_at: z.ZodISODateTime;
|
|
6571
|
-
}, z.core.$strip
|
|
6613
|
+
}, z.core.$strip>>;
|
|
6572
6614
|
}, z.core.$strip>;
|
|
6573
6615
|
export declare const zCreatePeriodBody: z.ZodObject<{
|
|
6574
6616
|
period_number: z.ZodInt;
|
|
@@ -6647,18 +6689,18 @@ export declare const zListWageSchedulesQuery: z.ZodObject<{
|
|
|
6647
6689
|
* Success
|
|
6648
6690
|
*/
|
|
6649
6691
|
export declare const zListWageSchedulesResponse: z.ZodObject<{
|
|
6650
|
-
meta: z.
|
|
6692
|
+
meta: z.ZodObject<{
|
|
6651
6693
|
page: z.ZodObject<{
|
|
6652
6694
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
6653
6695
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
6654
6696
|
}, z.core.$strip>;
|
|
6655
|
-
}, z.core.$strip
|
|
6656
|
-
links: z.
|
|
6697
|
+
}, z.core.$strip>;
|
|
6698
|
+
links: z.ZodObject<{
|
|
6657
6699
|
self: z.ZodString;
|
|
6658
6700
|
first: z.ZodNullable<z.ZodString>;
|
|
6659
6701
|
next: z.ZodNullable<z.ZodString>;
|
|
6660
|
-
}, z.core.$strip
|
|
6661
|
-
data: z.
|
|
6702
|
+
}, z.core.$strip>;
|
|
6703
|
+
data: z.ZodArray<z.ZodObject<{
|
|
6662
6704
|
id: z.ZodString;
|
|
6663
6705
|
apprenticeship_occupation_id: z.ZodString;
|
|
6664
6706
|
name: z.ZodString;
|
|
@@ -6693,7 +6735,7 @@ export declare const zListWageSchedulesResponse: z.ZodObject<{
|
|
|
6693
6735
|
journeyworker_wage_currency: z.ZodString;
|
|
6694
6736
|
created_at: z.ZodISODateTime;
|
|
6695
6737
|
updated_at: z.ZodISODateTime;
|
|
6696
|
-
}, z.core.$strip
|
|
6738
|
+
}, z.core.$strip>>;
|
|
6697
6739
|
}, z.core.$strip>;
|
|
6698
6740
|
export declare const zCreateWageScheduleBody: z.ZodObject<{
|
|
6699
6741
|
name: z.ZodString;
|
|
@@ -6878,18 +6920,18 @@ export declare const zListAttributesQuery: z.ZodObject<{
|
|
|
6878
6920
|
* Success
|
|
6879
6921
|
*/
|
|
6880
6922
|
export declare const zListAttributesResponse: z.ZodObject<{
|
|
6881
|
-
meta: z.
|
|
6923
|
+
meta: z.ZodObject<{
|
|
6882
6924
|
page: z.ZodObject<{
|
|
6883
6925
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
6884
6926
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
6885
6927
|
}, z.core.$strip>;
|
|
6886
|
-
}, z.core.$strip
|
|
6887
|
-
links: z.
|
|
6928
|
+
}, z.core.$strip>;
|
|
6929
|
+
links: z.ZodObject<{
|
|
6888
6930
|
self: z.ZodString;
|
|
6889
6931
|
first: z.ZodNullable<z.ZodString>;
|
|
6890
6932
|
next: z.ZodNullable<z.ZodString>;
|
|
6891
|
-
}, z.core.$strip
|
|
6892
|
-
data: z.
|
|
6933
|
+
}, z.core.$strip>;
|
|
6934
|
+
data: z.ZodArray<z.ZodObject<{
|
|
6893
6935
|
id: z.ZodString;
|
|
6894
6936
|
company_id: z.ZodString;
|
|
6895
6937
|
name: z.ZodString;
|
|
@@ -6907,7 +6949,7 @@ export declare const zListAttributesResponse: z.ZodObject<{
|
|
|
6907
6949
|
}, z.core.$strip>>;
|
|
6908
6950
|
created_at: z.ZodISODateTime;
|
|
6909
6951
|
updated_at: z.ZodISODateTime;
|
|
6910
|
-
}, z.core.$strip
|
|
6952
|
+
}, z.core.$strip>>;
|
|
6911
6953
|
}, z.core.$strip>;
|
|
6912
6954
|
export declare const zCreateAttributeBody: z.ZodObject<{
|
|
6913
6955
|
name: z.ZodString;
|
|
@@ -7053,18 +7095,18 @@ export declare const zListCategoriesQuery: z.ZodObject<{
|
|
|
7053
7095
|
* Success
|
|
7054
7096
|
*/
|
|
7055
7097
|
export declare const zListCategoriesResponse: z.ZodObject<{
|
|
7056
|
-
meta: z.
|
|
7098
|
+
meta: z.ZodObject<{
|
|
7057
7099
|
page: z.ZodObject<{
|
|
7058
7100
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
7059
7101
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
7060
7102
|
}, z.core.$strip>;
|
|
7061
|
-
}, z.core.$strip
|
|
7062
|
-
links: z.
|
|
7103
|
+
}, z.core.$strip>;
|
|
7104
|
+
links: z.ZodObject<{
|
|
7063
7105
|
self: z.ZodString;
|
|
7064
7106
|
first: z.ZodNullable<z.ZodString>;
|
|
7065
7107
|
next: z.ZodNullable<z.ZodString>;
|
|
7066
|
-
}, z.core.$strip
|
|
7067
|
-
data: z.
|
|
7108
|
+
}, z.core.$strip>;
|
|
7109
|
+
data: z.ZodArray<z.ZodObject<{
|
|
7068
7110
|
id: z.ZodString;
|
|
7069
7111
|
company_id: z.ZodString;
|
|
7070
7112
|
name: z.ZodString;
|
|
@@ -7082,7 +7124,7 @@ export declare const zListCategoriesResponse: z.ZodObject<{
|
|
|
7082
7124
|
}, z.core.$strip>>;
|
|
7083
7125
|
created_at: z.ZodISODateTime;
|
|
7084
7126
|
updated_at: z.ZodISODateTime;
|
|
7085
|
-
}, z.core.$strip
|
|
7127
|
+
}, z.core.$strip>>;
|
|
7086
7128
|
}, z.core.$strip>;
|
|
7087
7129
|
export declare const zCreateCategoryBody: z.ZodObject<{
|
|
7088
7130
|
name: z.ZodString;
|
|
@@ -7221,18 +7263,18 @@ export declare const zListCustodiesQuery: z.ZodObject<{
|
|
|
7221
7263
|
* Success
|
|
7222
7264
|
*/
|
|
7223
7265
|
export declare const zListCustodiesResponse: z.ZodObject<{
|
|
7224
|
-
meta: z.
|
|
7266
|
+
meta: z.ZodObject<{
|
|
7225
7267
|
page: z.ZodObject<{
|
|
7226
7268
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
7227
7269
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
7228
7270
|
}, z.core.$strip>;
|
|
7229
|
-
}, z.core.$strip
|
|
7230
|
-
links: z.
|
|
7271
|
+
}, z.core.$strip>;
|
|
7272
|
+
links: z.ZodObject<{
|
|
7231
7273
|
self: z.ZodString;
|
|
7232
7274
|
first: z.ZodNullable<z.ZodString>;
|
|
7233
7275
|
next: z.ZodNullable<z.ZodString>;
|
|
7234
|
-
}, z.core.$strip
|
|
7235
|
-
data: z.
|
|
7276
|
+
}, z.core.$strip>;
|
|
7277
|
+
data: z.ZodArray<z.ZodObject<{
|
|
7236
7278
|
id: z.ZodString;
|
|
7237
7279
|
assets_item_id: z.ZodString;
|
|
7238
7280
|
user_id: z.ZodString;
|
|
@@ -7240,7 +7282,7 @@ export declare const zListCustodiesResponse: z.ZodObject<{
|
|
|
7240
7282
|
quantity: z.ZodInt;
|
|
7241
7283
|
created_at: z.ZodISODateTime;
|
|
7242
7284
|
updated_at: z.ZodISODateTime;
|
|
7243
|
-
}, z.core.$strip
|
|
7285
|
+
}, z.core.$strip>>;
|
|
7244
7286
|
}, z.core.$strip>;
|
|
7245
7287
|
export declare const zGetCustodyPath: z.ZodObject<{
|
|
7246
7288
|
id: z.ZodString;
|
|
@@ -7267,18 +7309,18 @@ export declare const zListEventsQuery: z.ZodObject<{
|
|
|
7267
7309
|
* Success
|
|
7268
7310
|
*/
|
|
7269
7311
|
export declare const zListEventsResponse: z.ZodObject<{
|
|
7270
|
-
meta: z.
|
|
7312
|
+
meta: z.ZodObject<{
|
|
7271
7313
|
page: z.ZodObject<{
|
|
7272
7314
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
7273
7315
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
7274
7316
|
}, z.core.$strip>;
|
|
7275
|
-
}, z.core.$strip
|
|
7276
|
-
links: z.
|
|
7317
|
+
}, z.core.$strip>;
|
|
7318
|
+
links: z.ZodObject<{
|
|
7277
7319
|
self: z.ZodString;
|
|
7278
7320
|
first: z.ZodNullable<z.ZodString>;
|
|
7279
7321
|
next: z.ZodNullable<z.ZodString>;
|
|
7280
|
-
}, z.core.$strip
|
|
7281
|
-
data: z.
|
|
7322
|
+
}, z.core.$strip>;
|
|
7323
|
+
data: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7282
7324
|
id: z.ZodString;
|
|
7283
7325
|
assets_item_id: z.ZodString;
|
|
7284
7326
|
company_id: z.ZodString;
|
|
@@ -7323,7 +7365,7 @@ export declare const zListEventsResponse: z.ZodObject<{
|
|
|
7323
7365
|
created_at: z.ZodISODateTime;
|
|
7324
7366
|
updated_at: z.ZodISODateTime;
|
|
7325
7367
|
event_type: z.ZodLiteral<"Assets::ServiceEvent">;
|
|
7326
|
-
}, z.core.$strip>], "event_type"
|
|
7368
|
+
}, z.core.$strip>], "event_type">>;
|
|
7327
7369
|
}, z.core.$strip>;
|
|
7328
7370
|
export declare const zGetEventPath: z.ZodObject<{
|
|
7329
7371
|
id: z.ZodString;
|
|
@@ -7389,18 +7431,18 @@ export declare const zListFormAssignmentTriggersQuery: z.ZodObject<{
|
|
|
7389
7431
|
* Success
|
|
7390
7432
|
*/
|
|
7391
7433
|
export declare const zListFormAssignmentTriggersResponse: z.ZodObject<{
|
|
7392
|
-
meta: z.
|
|
7434
|
+
meta: z.ZodObject<{
|
|
7393
7435
|
page: z.ZodObject<{
|
|
7394
7436
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
7395
7437
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
7396
7438
|
}, z.core.$strip>;
|
|
7397
|
-
}, z.core.$strip
|
|
7398
|
-
links: z.
|
|
7439
|
+
}, z.core.$strip>;
|
|
7440
|
+
links: z.ZodObject<{
|
|
7399
7441
|
self: z.ZodString;
|
|
7400
7442
|
first: z.ZodNullable<z.ZodString>;
|
|
7401
7443
|
next: z.ZodNullable<z.ZodString>;
|
|
7402
|
-
}, z.core.$strip
|
|
7403
|
-
data: z.
|
|
7444
|
+
}, z.core.$strip>;
|
|
7445
|
+
data: z.ZodArray<z.ZodObject<{
|
|
7404
7446
|
id: z.ZodString;
|
|
7405
7447
|
company_id: z.ZodString;
|
|
7406
7448
|
form_definition_id: z.ZodString;
|
|
@@ -7436,7 +7478,7 @@ export declare const zListFormAssignmentTriggersResponse: z.ZodObject<{
|
|
|
7436
7478
|
assets_product_ids: z.ZodArray<z.ZodString>;
|
|
7437
7479
|
created_at: z.ZodISODateTime;
|
|
7438
7480
|
updated_at: z.ZodISODateTime;
|
|
7439
|
-
}, z.core.$strip
|
|
7481
|
+
}, z.core.$strip>>;
|
|
7440
7482
|
}, z.core.$strip>;
|
|
7441
7483
|
export declare const zCreateFormAssignmentTriggerBody: z.ZodObject<{
|
|
7442
7484
|
form_definition_id: z.ZodString;
|
|
@@ -7683,18 +7725,18 @@ export declare const zListInventoriesQuery: z.ZodObject<{
|
|
|
7683
7725
|
* Success
|
|
7684
7726
|
*/
|
|
7685
7727
|
export declare const zListInventoriesResponse: z.ZodObject<{
|
|
7686
|
-
meta: z.
|
|
7728
|
+
meta: z.ZodObject<{
|
|
7687
7729
|
page: z.ZodObject<{
|
|
7688
7730
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
7689
7731
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
7690
7732
|
}, z.core.$strip>;
|
|
7691
|
-
}, z.core.$strip
|
|
7692
|
-
links: z.
|
|
7733
|
+
}, z.core.$strip>;
|
|
7734
|
+
links: z.ZodObject<{
|
|
7693
7735
|
self: z.ZodString;
|
|
7694
7736
|
first: z.ZodNullable<z.ZodString>;
|
|
7695
7737
|
next: z.ZodNullable<z.ZodString>;
|
|
7696
|
-
}, z.core.$strip
|
|
7697
|
-
data: z.
|
|
7738
|
+
}, z.core.$strip>;
|
|
7739
|
+
data: z.ZodArray<z.ZodObject<{
|
|
7698
7740
|
id: z.ZodString;
|
|
7699
7741
|
assets_item_id: z.ZodString;
|
|
7700
7742
|
assets_site_id: z.ZodString;
|
|
@@ -7702,7 +7744,7 @@ export declare const zListInventoriesResponse: z.ZodObject<{
|
|
|
7702
7744
|
quantity_on_hand: z.ZodInt;
|
|
7703
7745
|
created_at: z.ZodISODateTime;
|
|
7704
7746
|
updated_at: z.ZodISODateTime;
|
|
7705
|
-
}, z.core.$strip
|
|
7747
|
+
}, z.core.$strip>>;
|
|
7706
7748
|
}, z.core.$strip>;
|
|
7707
7749
|
export declare const zGetInventoryPath: z.ZodObject<{
|
|
7708
7750
|
id: z.ZodString;
|
|
@@ -7728,6 +7770,7 @@ export declare const zListItemsQuery: z.ZodObject<{
|
|
|
7728
7770
|
'filter[container_item_id]': z.ZodOptional<z.ZodString>;
|
|
7729
7771
|
'filter[status]': z.ZodOptional<z.ZodString>;
|
|
7730
7772
|
'filter[service]': z.ZodOptional<z.ZodString>;
|
|
7773
|
+
'filter[state]': z.ZodOptional<z.ZodString>;
|
|
7731
7774
|
filter: z.ZodOptional<z.ZodString>;
|
|
7732
7775
|
'filter[unexpected]': z.ZodOptional<z.ZodString>;
|
|
7733
7776
|
}, z.core.$strip>;
|
|
@@ -7735,18 +7778,18 @@ export declare const zListItemsQuery: z.ZodObject<{
|
|
|
7735
7778
|
* Success
|
|
7736
7779
|
*/
|
|
7737
7780
|
export declare const zListItemsResponse: z.ZodObject<{
|
|
7738
|
-
meta: z.
|
|
7781
|
+
meta: z.ZodObject<{
|
|
7739
7782
|
page: z.ZodObject<{
|
|
7740
7783
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
7741
7784
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
7742
7785
|
}, z.core.$strip>;
|
|
7743
|
-
}, z.core.$strip
|
|
7744
|
-
links: z.
|
|
7786
|
+
}, z.core.$strip>;
|
|
7787
|
+
links: z.ZodObject<{
|
|
7745
7788
|
self: z.ZodString;
|
|
7746
7789
|
first: z.ZodNullable<z.ZodString>;
|
|
7747
7790
|
next: z.ZodNullable<z.ZodString>;
|
|
7748
|
-
}, z.core.$strip
|
|
7749
|
-
data: z.
|
|
7791
|
+
}, z.core.$strip>;
|
|
7792
|
+
data: z.ZodArray<z.ZodObject<{
|
|
7750
7793
|
id: z.ZodString;
|
|
7751
7794
|
name: z.ZodString;
|
|
7752
7795
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -7760,7 +7803,6 @@ export declare const zListItemsResponse: z.ZodObject<{
|
|
|
7760
7803
|
status: z.ZodNullable<z.ZodEnum<{
|
|
7761
7804
|
available: "available";
|
|
7762
7805
|
assigned: "assigned";
|
|
7763
|
-
retired: "retired";
|
|
7764
7806
|
}>>;
|
|
7765
7807
|
purchase_date: z.ZodNullable<z.ZodISODateTime>;
|
|
7766
7808
|
purchase_price_cents: z.ZodNullable<z.ZodString>;
|
|
@@ -7787,9 +7829,10 @@ export declare const zListItemsResponse: z.ZodObject<{
|
|
|
7787
7829
|
created_at: z.ZodISODateTime;
|
|
7788
7830
|
updated_at: z.ZodISODateTime;
|
|
7789
7831
|
}, z.core.$strip>>;
|
|
7832
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
7790
7833
|
created_at: z.ZodISODateTime;
|
|
7791
7834
|
updated_at: z.ZodISODateTime;
|
|
7792
|
-
}, z.core.$strip
|
|
7835
|
+
}, z.core.$strip>>;
|
|
7793
7836
|
}, z.core.$strip>;
|
|
7794
7837
|
export declare const zCreateItemBody: z.ZodObject<{
|
|
7795
7838
|
name: z.ZodString;
|
|
@@ -7799,7 +7842,6 @@ export declare const zCreateItemBody: z.ZodObject<{
|
|
|
7799
7842
|
status: z.ZodOptional<z.ZodEnum<{
|
|
7800
7843
|
available: "available";
|
|
7801
7844
|
assigned: "assigned";
|
|
7802
|
-
retired: "retired";
|
|
7803
7845
|
}>>;
|
|
7804
7846
|
purchase_date: z.ZodOptional<z.ZodISODateTime>;
|
|
7805
7847
|
purchase_price_cents: z.ZodOptional<z.ZodInt>;
|
|
@@ -7832,7 +7874,6 @@ export declare const zCreateItemResponse: z.ZodObject<{
|
|
|
7832
7874
|
status: z.ZodNullable<z.ZodEnum<{
|
|
7833
7875
|
available: "available";
|
|
7834
7876
|
assigned: "assigned";
|
|
7835
|
-
retired: "retired";
|
|
7836
7877
|
}>>;
|
|
7837
7878
|
purchase_date: z.ZodNullable<z.ZodISODateTime>;
|
|
7838
7879
|
purchase_price_cents: z.ZodNullable<z.ZodString>;
|
|
@@ -7859,6 +7900,7 @@ export declare const zCreateItemResponse: z.ZodObject<{
|
|
|
7859
7900
|
created_at: z.ZodISODateTime;
|
|
7860
7901
|
updated_at: z.ZodISODateTime;
|
|
7861
7902
|
}, z.core.$strip>>;
|
|
7903
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
7862
7904
|
created_at: z.ZodISODateTime;
|
|
7863
7905
|
updated_at: z.ZodISODateTime;
|
|
7864
7906
|
}, z.core.$strip>;
|
|
@@ -7882,7 +7924,6 @@ export declare const zDeleteItemResponse: z.ZodObject<{
|
|
|
7882
7924
|
status: z.ZodNullable<z.ZodEnum<{
|
|
7883
7925
|
available: "available";
|
|
7884
7926
|
assigned: "assigned";
|
|
7885
|
-
retired: "retired";
|
|
7886
7927
|
}>>;
|
|
7887
7928
|
purchase_date: z.ZodNullable<z.ZodISODateTime>;
|
|
7888
7929
|
purchase_price_cents: z.ZodNullable<z.ZodString>;
|
|
@@ -7909,6 +7950,7 @@ export declare const zDeleteItemResponse: z.ZodObject<{
|
|
|
7909
7950
|
created_at: z.ZodISODateTime;
|
|
7910
7951
|
updated_at: z.ZodISODateTime;
|
|
7911
7952
|
}, z.core.$strip>>;
|
|
7953
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
7912
7954
|
created_at: z.ZodISODateTime;
|
|
7913
7955
|
updated_at: z.ZodISODateTime;
|
|
7914
7956
|
}, z.core.$strip>;
|
|
@@ -7932,7 +7974,6 @@ export declare const zGetItemResponse: z.ZodObject<{
|
|
|
7932
7974
|
status: z.ZodNullable<z.ZodEnum<{
|
|
7933
7975
|
available: "available";
|
|
7934
7976
|
assigned: "assigned";
|
|
7935
|
-
retired: "retired";
|
|
7936
7977
|
}>>;
|
|
7937
7978
|
purchase_date: z.ZodNullable<z.ZodISODateTime>;
|
|
7938
7979
|
purchase_price_cents: z.ZodNullable<z.ZodString>;
|
|
@@ -7959,6 +8000,7 @@ export declare const zGetItemResponse: z.ZodObject<{
|
|
|
7959
8000
|
created_at: z.ZodISODateTime;
|
|
7960
8001
|
updated_at: z.ZodISODateTime;
|
|
7961
8002
|
}, z.core.$strip>>;
|
|
8003
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
7962
8004
|
created_at: z.ZodISODateTime;
|
|
7963
8005
|
updated_at: z.ZodISODateTime;
|
|
7964
8006
|
}, z.core.$strip>;
|
|
@@ -7970,7 +8012,6 @@ export declare const zUpdateItemBody: z.ZodObject<{
|
|
|
7970
8012
|
status: z.ZodOptional<z.ZodEnum<{
|
|
7971
8013
|
available: "available";
|
|
7972
8014
|
assigned: "assigned";
|
|
7973
|
-
retired: "retired";
|
|
7974
8015
|
}>>;
|
|
7975
8016
|
purchase_date: z.ZodOptional<z.ZodISODateTime>;
|
|
7976
8017
|
purchase_price_cents: z.ZodOptional<z.ZodInt>;
|
|
@@ -8006,110 +8047,6 @@ export declare const zUpdateItemResponse: z.ZodObject<{
|
|
|
8006
8047
|
status: z.ZodNullable<z.ZodEnum<{
|
|
8007
8048
|
available: "available";
|
|
8008
8049
|
assigned: "assigned";
|
|
8009
|
-
retired: "retired";
|
|
8010
|
-
}>>;
|
|
8011
|
-
purchase_date: z.ZodNullable<z.ZodISODateTime>;
|
|
8012
|
-
purchase_price_cents: z.ZodNullable<z.ZodString>;
|
|
8013
|
-
currency: z.ZodNullable<z.ZodString>;
|
|
8014
|
-
external_id: z.ZodNullable<z.ZodString>;
|
|
8015
|
-
external_system_url: z.ZodNullable<z.ZodString>;
|
|
8016
|
-
container: z.ZodBoolean;
|
|
8017
|
-
contents: z.ZodArray<z.ZodObject<{
|
|
8018
|
-
item_id: z.ZodString;
|
|
8019
|
-
quantity: z.ZodInt;
|
|
8020
|
-
}, z.core.$strip>>;
|
|
8021
|
-
containers: z.ZodArray<z.ZodObject<{
|
|
8022
|
-
container_item_id: z.ZodString;
|
|
8023
|
-
quantity: z.ZodInt;
|
|
8024
|
-
}, z.core.$strip>>;
|
|
8025
|
-
images: z.ZodArray<z.ZodObject<{
|
|
8026
|
-
id: z.ZodString;
|
|
8027
|
-
file: z.ZodNullable<z.ZodObject<{
|
|
8028
|
-
filename: z.ZodString;
|
|
8029
|
-
content_type: z.ZodNullable<z.ZodString>;
|
|
8030
|
-
byte_size: z.ZodInt;
|
|
8031
|
-
url: z.ZodString;
|
|
8032
|
-
}, z.core.$strip>>;
|
|
8033
|
-
created_at: z.ZodISODateTime;
|
|
8034
|
-
updated_at: z.ZodISODateTime;
|
|
8035
|
-
}, z.core.$strip>>;
|
|
8036
|
-
created_at: z.ZodISODateTime;
|
|
8037
|
-
updated_at: z.ZodISODateTime;
|
|
8038
|
-
}, z.core.$strip>;
|
|
8039
|
-
export declare const zUnretireItemPath: z.ZodObject<{
|
|
8040
|
-
item_id: z.ZodString;
|
|
8041
|
-
}, z.core.$strip>;
|
|
8042
|
-
/**
|
|
8043
|
-
* Success
|
|
8044
|
-
*/
|
|
8045
|
-
export declare const zUnretireItemResponse: z.ZodObject<{
|
|
8046
|
-
id: z.ZodString;
|
|
8047
|
-
name: z.ZodString;
|
|
8048
|
-
description: z.ZodNullable<z.ZodString>;
|
|
8049
|
-
assets_product_id: z.ZodString;
|
|
8050
|
-
company_id: z.ZodString;
|
|
8051
|
-
type: z.ZodEnum<{
|
|
8052
|
-
serial: "serial";
|
|
8053
|
-
bulk: "bulk";
|
|
8054
|
-
}>;
|
|
8055
|
-
serial_number: z.ZodNullable<z.ZodString>;
|
|
8056
|
-
status: z.ZodNullable<z.ZodEnum<{
|
|
8057
|
-
available: "available";
|
|
8058
|
-
assigned: "assigned";
|
|
8059
|
-
retired: "retired";
|
|
8060
|
-
}>>;
|
|
8061
|
-
purchase_date: z.ZodNullable<z.ZodISODateTime>;
|
|
8062
|
-
purchase_price_cents: z.ZodNullable<z.ZodString>;
|
|
8063
|
-
currency: z.ZodNullable<z.ZodString>;
|
|
8064
|
-
external_id: z.ZodNullable<z.ZodString>;
|
|
8065
|
-
external_system_url: z.ZodNullable<z.ZodString>;
|
|
8066
|
-
container: z.ZodBoolean;
|
|
8067
|
-
contents: z.ZodArray<z.ZodObject<{
|
|
8068
|
-
item_id: z.ZodString;
|
|
8069
|
-
quantity: z.ZodInt;
|
|
8070
|
-
}, z.core.$strip>>;
|
|
8071
|
-
containers: z.ZodArray<z.ZodObject<{
|
|
8072
|
-
container_item_id: z.ZodString;
|
|
8073
|
-
quantity: z.ZodInt;
|
|
8074
|
-
}, z.core.$strip>>;
|
|
8075
|
-
images: z.ZodArray<z.ZodObject<{
|
|
8076
|
-
id: z.ZodString;
|
|
8077
|
-
file: z.ZodNullable<z.ZodObject<{
|
|
8078
|
-
filename: z.ZodString;
|
|
8079
|
-
content_type: z.ZodNullable<z.ZodString>;
|
|
8080
|
-
byte_size: z.ZodInt;
|
|
8081
|
-
url: z.ZodString;
|
|
8082
|
-
}, z.core.$strip>>;
|
|
8083
|
-
created_at: z.ZodISODateTime;
|
|
8084
|
-
updated_at: z.ZodISODateTime;
|
|
8085
|
-
}, z.core.$strip>>;
|
|
8086
|
-
created_at: z.ZodISODateTime;
|
|
8087
|
-
updated_at: z.ZodISODateTime;
|
|
8088
|
-
}, z.core.$strip>;
|
|
8089
|
-
export declare const zRetireItemBody: z.ZodObject<{
|
|
8090
|
-
performed_by_user_id: z.ZodString;
|
|
8091
|
-
}, z.core.$strip>;
|
|
8092
|
-
export declare const zRetireItemPath: z.ZodObject<{
|
|
8093
|
-
item_id: z.ZodString;
|
|
8094
|
-
}, z.core.$strip>;
|
|
8095
|
-
/**
|
|
8096
|
-
* Created
|
|
8097
|
-
*/
|
|
8098
|
-
export declare const zRetireItemResponse: z.ZodObject<{
|
|
8099
|
-
id: z.ZodString;
|
|
8100
|
-
name: z.ZodString;
|
|
8101
|
-
description: z.ZodNullable<z.ZodString>;
|
|
8102
|
-
assets_product_id: z.ZodString;
|
|
8103
|
-
company_id: z.ZodString;
|
|
8104
|
-
type: z.ZodEnum<{
|
|
8105
|
-
serial: "serial";
|
|
8106
|
-
bulk: "bulk";
|
|
8107
|
-
}>;
|
|
8108
|
-
serial_number: z.ZodNullable<z.ZodString>;
|
|
8109
|
-
status: z.ZodNullable<z.ZodEnum<{
|
|
8110
|
-
available: "available";
|
|
8111
|
-
assigned: "assigned";
|
|
8112
|
-
retired: "retired";
|
|
8113
8050
|
}>>;
|
|
8114
8051
|
purchase_date: z.ZodNullable<z.ZodISODateTime>;
|
|
8115
8052
|
purchase_price_cents: z.ZodNullable<z.ZodString>;
|
|
@@ -8136,6 +8073,7 @@ export declare const zRetireItemResponse: z.ZodObject<{
|
|
|
8136
8073
|
created_at: z.ZodISODateTime;
|
|
8137
8074
|
updated_at: z.ZodISODateTime;
|
|
8138
8075
|
}, z.core.$strip>>;
|
|
8076
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
8139
8077
|
created_at: z.ZodISODateTime;
|
|
8140
8078
|
updated_at: z.ZodISODateTime;
|
|
8141
8079
|
}, z.core.$strip>;
|
|
@@ -8158,18 +8096,18 @@ export declare const zListServiceSchedulesQuery: z.ZodObject<{
|
|
|
8158
8096
|
* Success
|
|
8159
8097
|
*/
|
|
8160
8098
|
export declare const zListServiceSchedulesResponse: z.ZodObject<{
|
|
8161
|
-
meta: z.
|
|
8099
|
+
meta: z.ZodObject<{
|
|
8162
8100
|
page: z.ZodObject<{
|
|
8163
8101
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
8164
8102
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
8165
8103
|
}, z.core.$strip>;
|
|
8166
|
-
}, z.core.$strip
|
|
8167
|
-
links: z.
|
|
8104
|
+
}, z.core.$strip>;
|
|
8105
|
+
links: z.ZodObject<{
|
|
8168
8106
|
self: z.ZodString;
|
|
8169
8107
|
first: z.ZodNullable<z.ZodString>;
|
|
8170
8108
|
next: z.ZodNullable<z.ZodString>;
|
|
8171
|
-
}, z.core.$strip
|
|
8172
|
-
data: z.
|
|
8109
|
+
}, z.core.$strip>;
|
|
8110
|
+
data: z.ZodArray<z.ZodObject<{
|
|
8173
8111
|
id: z.ZodString;
|
|
8174
8112
|
assets_item_id: z.ZodString;
|
|
8175
8113
|
company_id: z.ZodString;
|
|
@@ -8190,7 +8128,7 @@ export declare const zListServiceSchedulesResponse: z.ZodObject<{
|
|
|
8190
8128
|
next_due_date: z.ZodISODate;
|
|
8191
8129
|
created_at: z.ZodISODateTime;
|
|
8192
8130
|
updated_at: z.ZodISODateTime;
|
|
8193
|
-
}, z.core.$strip
|
|
8131
|
+
}, z.core.$strip>>;
|
|
8194
8132
|
}, z.core.$strip>;
|
|
8195
8133
|
export declare const zCreateServiceScheduleBody: z.ZodObject<{
|
|
8196
8134
|
kind: z.ZodEnum<{
|
|
@@ -8358,18 +8296,18 @@ export declare const zListServiceEventsQuery: z.ZodObject<{
|
|
|
8358
8296
|
* Success
|
|
8359
8297
|
*/
|
|
8360
8298
|
export declare const zListServiceEventsResponse: z.ZodObject<{
|
|
8361
|
-
meta: z.
|
|
8299
|
+
meta: z.ZodObject<{
|
|
8362
8300
|
page: z.ZodObject<{
|
|
8363
8301
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
8364
8302
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
8365
8303
|
}, z.core.$strip>;
|
|
8366
|
-
}, z.core.$strip
|
|
8367
|
-
links: z.
|
|
8304
|
+
}, z.core.$strip>;
|
|
8305
|
+
links: z.ZodObject<{
|
|
8368
8306
|
self: z.ZodString;
|
|
8369
8307
|
first: z.ZodNullable<z.ZodString>;
|
|
8370
8308
|
next: z.ZodNullable<z.ZodString>;
|
|
8371
|
-
}, z.core.$strip
|
|
8372
|
-
data: z.
|
|
8309
|
+
}, z.core.$strip>;
|
|
8310
|
+
data: z.ZodArray<z.ZodObject<{
|
|
8373
8311
|
id: z.ZodString;
|
|
8374
8312
|
assets_item_id: z.ZodString;
|
|
8375
8313
|
company_id: z.ZodString;
|
|
@@ -8395,7 +8333,7 @@ export declare const zListServiceEventsResponse: z.ZodObject<{
|
|
|
8395
8333
|
}, z.core.$strip>>;
|
|
8396
8334
|
created_at: z.ZodISODateTime;
|
|
8397
8335
|
updated_at: z.ZodISODateTime;
|
|
8398
|
-
}, z.core.$strip
|
|
8336
|
+
}, z.core.$strip>>;
|
|
8399
8337
|
}, z.core.$strip>;
|
|
8400
8338
|
export declare const zCreateServiceEventBody: z.ZodObject<{
|
|
8401
8339
|
kind: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8576,18 +8514,18 @@ export declare const zListFormAssignmentTasksQuery: z.ZodObject<{
|
|
|
8576
8514
|
* Success
|
|
8577
8515
|
*/
|
|
8578
8516
|
export declare const zListFormAssignmentTasksResponse: z.ZodObject<{
|
|
8579
|
-
meta: z.
|
|
8517
|
+
meta: z.ZodObject<{
|
|
8580
8518
|
page: z.ZodObject<{
|
|
8581
8519
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
8582
8520
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
8583
8521
|
}, z.core.$strip>;
|
|
8584
|
-
}, z.core.$strip
|
|
8585
|
-
links: z.
|
|
8522
|
+
}, z.core.$strip>;
|
|
8523
|
+
links: z.ZodObject<{
|
|
8586
8524
|
self: z.ZodString;
|
|
8587
8525
|
first: z.ZodNullable<z.ZodString>;
|
|
8588
8526
|
next: z.ZodNullable<z.ZodString>;
|
|
8589
|
-
}, z.core.$strip
|
|
8590
|
-
data: z.
|
|
8527
|
+
}, z.core.$strip>;
|
|
8528
|
+
data: z.ZodArray<z.ZodObject<{
|
|
8591
8529
|
id: z.ZodString;
|
|
8592
8530
|
assets_item_id: z.ZodString;
|
|
8593
8531
|
form_definition_id: z.ZodString;
|
|
@@ -8610,7 +8548,7 @@ export declare const zListFormAssignmentTasksResponse: z.ZodObject<{
|
|
|
8610
8548
|
offset: z.ZodString;
|
|
8611
8549
|
remind_at: z.ZodISODateTime;
|
|
8612
8550
|
}, z.core.$strip>>;
|
|
8613
|
-
}, z.core.$strip
|
|
8551
|
+
}, z.core.$strip>>;
|
|
8614
8552
|
}, z.core.$strip>;
|
|
8615
8553
|
export declare const zCreateItemFormAssignmentTaskBody: z.ZodObject<{
|
|
8616
8554
|
form_definition_id: z.ZodString;
|
|
@@ -8844,18 +8782,18 @@ export declare const zListDocumentsQuery: z.ZodObject<{
|
|
|
8844
8782
|
* Success
|
|
8845
8783
|
*/
|
|
8846
8784
|
export declare const zListDocumentsResponse: z.ZodObject<{
|
|
8847
|
-
meta: z.
|
|
8785
|
+
meta: z.ZodObject<{
|
|
8848
8786
|
page: z.ZodObject<{
|
|
8849
8787
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
8850
8788
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
8851
8789
|
}, z.core.$strip>;
|
|
8852
|
-
}, z.core.$strip
|
|
8853
|
-
links: z.
|
|
8790
|
+
}, z.core.$strip>;
|
|
8791
|
+
links: z.ZodObject<{
|
|
8854
8792
|
self: z.ZodString;
|
|
8855
8793
|
first: z.ZodNullable<z.ZodString>;
|
|
8856
8794
|
next: z.ZodNullable<z.ZodString>;
|
|
8857
|
-
}, z.core.$strip
|
|
8858
|
-
data: z.
|
|
8795
|
+
}, z.core.$strip>;
|
|
8796
|
+
data: z.ZodArray<z.ZodObject<{
|
|
8859
8797
|
id: z.ZodString;
|
|
8860
8798
|
assets_item_id: z.ZodString;
|
|
8861
8799
|
name: z.ZodString;
|
|
@@ -8871,7 +8809,7 @@ export declare const zListDocumentsResponse: z.ZodObject<{
|
|
|
8871
8809
|
}, z.core.$strip>>;
|
|
8872
8810
|
created_at: z.ZodISODateTime;
|
|
8873
8811
|
updated_at: z.ZodISODateTime;
|
|
8874
|
-
}, z.core.$strip
|
|
8812
|
+
}, z.core.$strip>>;
|
|
8875
8813
|
}, z.core.$strip>;
|
|
8876
8814
|
export declare const zCreateDocumentBody: z.ZodObject<{
|
|
8877
8815
|
file: z.ZodString;
|
|
@@ -8986,18 +8924,18 @@ export declare const zListVersionsPath: z.ZodObject<{
|
|
|
8986
8924
|
* Success
|
|
8987
8925
|
*/
|
|
8988
8926
|
export declare const zListVersionsResponse: z.ZodObject<{
|
|
8989
|
-
meta: z.
|
|
8927
|
+
meta: z.ZodObject<{
|
|
8990
8928
|
page: z.ZodObject<{
|
|
8991
8929
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
8992
8930
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
8993
8931
|
}, z.core.$strip>;
|
|
8994
|
-
}, z.core.$strip
|
|
8995
|
-
links: z.
|
|
8932
|
+
}, z.core.$strip>;
|
|
8933
|
+
links: z.ZodObject<{
|
|
8996
8934
|
self: z.ZodString;
|
|
8997
8935
|
first: z.ZodNullable<z.ZodString>;
|
|
8998
8936
|
next: z.ZodNullable<z.ZodString>;
|
|
8999
|
-
}, z.core.$strip
|
|
9000
|
-
data: z.
|
|
8937
|
+
}, z.core.$strip>;
|
|
8938
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9001
8939
|
id: z.ZodInt;
|
|
9002
8940
|
document_id: z.ZodString;
|
|
9003
8941
|
event: z.ZodEnum<{
|
|
@@ -9007,10 +8945,11 @@ export declare const zListVersionsResponse: z.ZodObject<{
|
|
|
9007
8945
|
}>;
|
|
9008
8946
|
whodunnit: z.ZodNullable<z.ZodString>;
|
|
9009
8947
|
created_at: z.ZodISODateTime;
|
|
9010
|
-
}, z.core.$strip
|
|
8948
|
+
}, z.core.$strip>>;
|
|
9011
8949
|
}, z.core.$strip>;
|
|
9012
8950
|
export declare const zListProductsQuery: z.ZodObject<{
|
|
9013
8951
|
'filter[assets_category_id]': z.ZodOptional<z.ZodString>;
|
|
8952
|
+
'filter[state]': z.ZodOptional<z.ZodString>;
|
|
9014
8953
|
'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
|
|
9015
8954
|
'filter[created_at][lte]': z.ZodOptional<z.ZodISODateTime>;
|
|
9016
8955
|
'filter[updated_at][gte]': z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -9025,18 +8964,18 @@ export declare const zListProductsQuery: z.ZodObject<{
|
|
|
9025
8964
|
* Success
|
|
9026
8965
|
*/
|
|
9027
8966
|
export declare const zListProductsResponse: z.ZodObject<{
|
|
9028
|
-
meta: z.
|
|
8967
|
+
meta: z.ZodObject<{
|
|
9029
8968
|
page: z.ZodObject<{
|
|
9030
8969
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
9031
8970
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
9032
8971
|
}, z.core.$strip>;
|
|
9033
|
-
}, z.core.$strip
|
|
9034
|
-
links: z.
|
|
8972
|
+
}, z.core.$strip>;
|
|
8973
|
+
links: z.ZodObject<{
|
|
9035
8974
|
self: z.ZodString;
|
|
9036
8975
|
first: z.ZodNullable<z.ZodString>;
|
|
9037
8976
|
next: z.ZodNullable<z.ZodString>;
|
|
9038
|
-
}, z.core.$strip
|
|
9039
|
-
data: z.
|
|
8977
|
+
}, z.core.$strip>;
|
|
8978
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9040
8979
|
id: z.ZodString;
|
|
9041
8980
|
company_id: z.ZodString;
|
|
9042
8981
|
name: z.ZodString;
|
|
@@ -9069,9 +9008,10 @@ export declare const zListProductsResponse: z.ZodObject<{
|
|
|
9069
9008
|
created_at: z.ZodISODateTime;
|
|
9070
9009
|
updated_at: z.ZodISODateTime;
|
|
9071
9010
|
}, z.core.$strip>>;
|
|
9011
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9072
9012
|
created_at: z.ZodISODateTime;
|
|
9073
9013
|
updated_at: z.ZodISODateTime;
|
|
9074
|
-
}, z.core.$strip
|
|
9014
|
+
}, z.core.$strip>>;
|
|
9075
9015
|
}, z.core.$strip>;
|
|
9076
9016
|
export declare const zCreateProductBody: z.ZodObject<{
|
|
9077
9017
|
type: z.ZodEnum<{
|
|
@@ -9140,6 +9080,7 @@ export declare const zCreateProductResponse: z.ZodObject<{
|
|
|
9140
9080
|
created_at: z.ZodISODateTime;
|
|
9141
9081
|
updated_at: z.ZodISODateTime;
|
|
9142
9082
|
}, z.core.$strip>>;
|
|
9083
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9143
9084
|
created_at: z.ZodISODateTime;
|
|
9144
9085
|
updated_at: z.ZodISODateTime;
|
|
9145
9086
|
}, z.core.$strip>;
|
|
@@ -9182,6 +9123,7 @@ export declare const zDeleteProductResponse: z.ZodObject<{
|
|
|
9182
9123
|
created_at: z.ZodISODateTime;
|
|
9183
9124
|
updated_at: z.ZodISODateTime;
|
|
9184
9125
|
}, z.core.$strip>>;
|
|
9126
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9185
9127
|
created_at: z.ZodISODateTime;
|
|
9186
9128
|
updated_at: z.ZodISODateTime;
|
|
9187
9129
|
}, z.core.$strip>;
|
|
@@ -9224,6 +9166,7 @@ export declare const zGetProductResponse: z.ZodObject<{
|
|
|
9224
9166
|
created_at: z.ZodISODateTime;
|
|
9225
9167
|
updated_at: z.ZodISODateTime;
|
|
9226
9168
|
}, z.core.$strip>>;
|
|
9169
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9227
9170
|
created_at: z.ZodISODateTime;
|
|
9228
9171
|
updated_at: z.ZodISODateTime;
|
|
9229
9172
|
}, z.core.$strip>;
|
|
@@ -9292,6 +9235,7 @@ export declare const zUpdateProductResponse: z.ZodObject<{
|
|
|
9292
9235
|
created_at: z.ZodISODateTime;
|
|
9293
9236
|
updated_at: z.ZodISODateTime;
|
|
9294
9237
|
}, z.core.$strip>>;
|
|
9238
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9295
9239
|
created_at: z.ZodISODateTime;
|
|
9296
9240
|
updated_at: z.ZodISODateTime;
|
|
9297
9241
|
}, z.core.$strip>;
|
|
@@ -9339,6 +9283,7 @@ export declare const zAdjustProductInventoryResponse: z.ZodObject<{
|
|
|
9339
9283
|
created_at: z.ZodISODateTime;
|
|
9340
9284
|
updated_at: z.ZodISODateTime;
|
|
9341
9285
|
}, z.core.$strip>>;
|
|
9286
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9342
9287
|
created_at: z.ZodISODateTime;
|
|
9343
9288
|
updated_at: z.ZodISODateTime;
|
|
9344
9289
|
}, z.core.$strip>;
|
|
@@ -9386,6 +9331,7 @@ export declare const zRestockProductResponse: z.ZodObject<{
|
|
|
9386
9331
|
created_at: z.ZodISODateTime;
|
|
9387
9332
|
updated_at: z.ZodISODateTime;
|
|
9388
9333
|
}, z.core.$strip>>;
|
|
9334
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9389
9335
|
created_at: z.ZodISODateTime;
|
|
9390
9336
|
updated_at: z.ZodISODateTime;
|
|
9391
9337
|
}, z.core.$strip>;
|
|
@@ -9404,18 +9350,18 @@ export declare const zListServiceScheduleTemplatesQuery: z.ZodObject<{
|
|
|
9404
9350
|
* Success
|
|
9405
9351
|
*/
|
|
9406
9352
|
export declare const zListServiceScheduleTemplatesResponse: z.ZodObject<{
|
|
9407
|
-
meta: z.
|
|
9353
|
+
meta: z.ZodObject<{
|
|
9408
9354
|
page: z.ZodObject<{
|
|
9409
9355
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
9410
9356
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
9411
9357
|
}, z.core.$strip>;
|
|
9412
|
-
}, z.core.$strip
|
|
9413
|
-
links: z.
|
|
9358
|
+
}, z.core.$strip>;
|
|
9359
|
+
links: z.ZodObject<{
|
|
9414
9360
|
self: z.ZodString;
|
|
9415
9361
|
first: z.ZodNullable<z.ZodString>;
|
|
9416
9362
|
next: z.ZodNullable<z.ZodString>;
|
|
9417
|
-
}, z.core.$strip
|
|
9418
|
-
data: z.
|
|
9363
|
+
}, z.core.$strip>;
|
|
9364
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9419
9365
|
id: z.ZodString;
|
|
9420
9366
|
company_id: z.ZodString;
|
|
9421
9367
|
assets_product_id: z.ZodString;
|
|
@@ -9433,7 +9379,7 @@ export declare const zListServiceScheduleTemplatesResponse: z.ZodObject<{
|
|
|
9433
9379
|
interval_count: z.ZodInt;
|
|
9434
9380
|
created_at: z.ZodISODateTime;
|
|
9435
9381
|
updated_at: z.ZodISODateTime;
|
|
9436
|
-
}, z.core.$strip
|
|
9382
|
+
}, z.core.$strip>>;
|
|
9437
9383
|
}, z.core.$strip>;
|
|
9438
9384
|
export declare const zCreateServiceScheduleTemplateBody: z.ZodObject<{
|
|
9439
9385
|
kind: z.ZodEnum<{
|
|
@@ -9655,18 +9601,18 @@ export declare const zListAssetsSitesQuery: z.ZodObject<{
|
|
|
9655
9601
|
* Success
|
|
9656
9602
|
*/
|
|
9657
9603
|
export declare const zListAssetsSitesResponse: z.ZodObject<{
|
|
9658
|
-
meta: z.
|
|
9604
|
+
meta: z.ZodObject<{
|
|
9659
9605
|
page: z.ZodObject<{
|
|
9660
9606
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
9661
9607
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
9662
9608
|
}, z.core.$strip>;
|
|
9663
|
-
}, z.core.$strip
|
|
9664
|
-
links: z.
|
|
9609
|
+
}, z.core.$strip>;
|
|
9610
|
+
links: z.ZodObject<{
|
|
9665
9611
|
self: z.ZodString;
|
|
9666
9612
|
first: z.ZodNullable<z.ZodString>;
|
|
9667
9613
|
next: z.ZodNullable<z.ZodString>;
|
|
9668
|
-
}, z.core.$strip
|
|
9669
|
-
data: z.
|
|
9614
|
+
}, z.core.$strip>;
|
|
9615
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9670
9616
|
id: z.ZodString;
|
|
9671
9617
|
company_id: z.ZodString;
|
|
9672
9618
|
site_id: z.ZodNullable<z.ZodString>;
|
|
@@ -9678,7 +9624,7 @@ export declare const zListAssetsSitesResponse: z.ZodObject<{
|
|
|
9678
9624
|
site_type: z.ZodNullable<z.ZodString>;
|
|
9679
9625
|
created_at: z.ZodISODateTime;
|
|
9680
9626
|
updated_at: z.ZodISODateTime;
|
|
9681
|
-
}, z.core.$strip
|
|
9627
|
+
}, z.core.$strip>>;
|
|
9682
9628
|
}, z.core.$strip>;
|
|
9683
9629
|
export declare const zCreateSiteBody: z.ZodIntersection<z.ZodUnion<readonly [z.ZodObject<{
|
|
9684
9630
|
site_id: z.ZodString;
|
|
@@ -9782,18 +9728,18 @@ export declare const zListTransfersQuery: z.ZodObject<{
|
|
|
9782
9728
|
* Success
|
|
9783
9729
|
*/
|
|
9784
9730
|
export declare const zListTransfersResponse: z.ZodObject<{
|
|
9785
|
-
meta: z.
|
|
9731
|
+
meta: z.ZodObject<{
|
|
9786
9732
|
page: z.ZodObject<{
|
|
9787
9733
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
9788
9734
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
9789
9735
|
}, z.core.$strip>;
|
|
9790
|
-
}, z.core.$strip
|
|
9791
|
-
links: z.
|
|
9736
|
+
}, z.core.$strip>;
|
|
9737
|
+
links: z.ZodObject<{
|
|
9792
9738
|
self: z.ZodString;
|
|
9793
9739
|
first: z.ZodNullable<z.ZodString>;
|
|
9794
9740
|
next: z.ZodNullable<z.ZodString>;
|
|
9795
|
-
}, z.core.$strip
|
|
9796
|
-
data: z.
|
|
9741
|
+
}, z.core.$strip>;
|
|
9742
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9797
9743
|
id: z.ZodString;
|
|
9798
9744
|
company_id: z.ZodString;
|
|
9799
9745
|
status: z.ZodEnum<{
|
|
@@ -9817,7 +9763,7 @@ export declare const zListTransfersResponse: z.ZodObject<{
|
|
|
9817
9763
|
}, z.core.$strip>>;
|
|
9818
9764
|
created_at: z.ZodISODateTime;
|
|
9819
9765
|
updated_at: z.ZodISODateTime;
|
|
9820
|
-
}, z.core.$strip
|
|
9766
|
+
}, z.core.$strip>>;
|
|
9821
9767
|
}, z.core.$strip>;
|
|
9822
9768
|
export declare const zCreateTransferBody: z.ZodObject<{
|
|
9823
9769
|
from_assets_site_id: z.ZodOptional<z.ZodString>;
|
|
@@ -9899,25 +9845,25 @@ export declare const zListVendorsQuery: z.ZodObject<{
|
|
|
9899
9845
|
* Success
|
|
9900
9846
|
*/
|
|
9901
9847
|
export declare const zListVendorsResponse: z.ZodObject<{
|
|
9902
|
-
meta: z.
|
|
9848
|
+
meta: z.ZodObject<{
|
|
9903
9849
|
page: z.ZodObject<{
|
|
9904
9850
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
9905
9851
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
9906
9852
|
}, z.core.$strip>;
|
|
9907
|
-
}, z.core.$strip
|
|
9908
|
-
links: z.
|
|
9853
|
+
}, z.core.$strip>;
|
|
9854
|
+
links: z.ZodObject<{
|
|
9909
9855
|
self: z.ZodString;
|
|
9910
9856
|
first: z.ZodNullable<z.ZodString>;
|
|
9911
9857
|
next: z.ZodNullable<z.ZodString>;
|
|
9912
|
-
}, z.core.$strip
|
|
9913
|
-
data: z.
|
|
9858
|
+
}, z.core.$strip>;
|
|
9859
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9914
9860
|
id: z.ZodString;
|
|
9915
9861
|
name: z.ZodString;
|
|
9916
9862
|
company_id: z.ZodString;
|
|
9917
9863
|
logo_url: z.ZodNullable<z.ZodString>;
|
|
9918
9864
|
created_at: z.ZodISODateTime;
|
|
9919
9865
|
updated_at: z.ZodISODateTime;
|
|
9920
|
-
}, z.core.$strip
|
|
9866
|
+
}, z.core.$strip>>;
|
|
9921
9867
|
}, z.core.$strip>;
|
|
9922
9868
|
export declare const zCreateVendorBody: z.ZodObject<{
|
|
9923
9869
|
name: z.ZodString;
|
|
@@ -10002,18 +9948,18 @@ export declare const zListFeaturesQuery: z.ZodObject<{
|
|
|
10002
9948
|
* Success
|
|
10003
9949
|
*/
|
|
10004
9950
|
export declare const zListFeaturesResponse: z.ZodObject<{
|
|
10005
|
-
meta: z.
|
|
9951
|
+
meta: z.ZodObject<{
|
|
10006
9952
|
page: z.ZodObject<{
|
|
10007
9953
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
10008
9954
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
10009
9955
|
}, z.core.$strip>;
|
|
10010
|
-
}, z.core.$strip
|
|
10011
|
-
links: z.
|
|
9956
|
+
}, z.core.$strip>;
|
|
9957
|
+
links: z.ZodObject<{
|
|
10012
9958
|
self: z.ZodString;
|
|
10013
9959
|
first: z.ZodNullable<z.ZodString>;
|
|
10014
9960
|
next: z.ZodNullable<z.ZodString>;
|
|
10015
|
-
}, z.core.$strip
|
|
10016
|
-
data: z.
|
|
9961
|
+
}, z.core.$strip>;
|
|
9962
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10017
9963
|
id: z.ZodString;
|
|
10018
9964
|
name: z.ZodString;
|
|
10019
9965
|
type: z.ZodEnum<{
|
|
@@ -10130,7 +10076,7 @@ export declare const zListFeaturesResponse: z.ZodObject<{
|
|
|
10130
10076
|
active_time_end: z.ZodNullable<z.ZodISODateTime>;
|
|
10131
10077
|
created_at: z.ZodISODateTime;
|
|
10132
10078
|
updated_at: z.ZodISODateTime;
|
|
10133
|
-
}, z.core.$strip
|
|
10079
|
+
}, z.core.$strip>>;
|
|
10134
10080
|
}, z.core.$strip>;
|
|
10135
10081
|
export declare const zGetFeaturePath: z.ZodObject<{
|
|
10136
10082
|
id: z.ZodString;
|
|
@@ -10277,18 +10223,18 @@ export declare const zListAtlasSitesQuery: z.ZodObject<{
|
|
|
10277
10223
|
* Success
|
|
10278
10224
|
*/
|
|
10279
10225
|
export declare const zListAtlasSitesResponse: z.ZodObject<{
|
|
10280
|
-
meta: z.
|
|
10226
|
+
meta: z.ZodObject<{
|
|
10281
10227
|
page: z.ZodObject<{
|
|
10282
10228
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
10283
10229
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
10284
10230
|
}, z.core.$strip>;
|
|
10285
|
-
}, z.core.$strip
|
|
10286
|
-
links: z.
|
|
10231
|
+
}, z.core.$strip>;
|
|
10232
|
+
links: z.ZodObject<{
|
|
10287
10233
|
self: z.ZodString;
|
|
10288
10234
|
first: z.ZodNullable<z.ZodString>;
|
|
10289
10235
|
next: z.ZodNullable<z.ZodString>;
|
|
10290
|
-
}, z.core.$strip
|
|
10291
|
-
data: z.
|
|
10236
|
+
}, z.core.$strip>;
|
|
10237
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10292
10238
|
id: z.ZodString;
|
|
10293
10239
|
name: z.ZodString;
|
|
10294
10240
|
type: z.ZodEnum<{
|
|
@@ -10317,7 +10263,7 @@ export declare const zListAtlasSitesResponse: z.ZodObject<{
|
|
|
10317
10263
|
active_time_end: z.ZodNullable<z.ZodISODateTime>;
|
|
10318
10264
|
created_at: z.ZodISODateTime;
|
|
10319
10265
|
updated_at: z.ZodISODateTime;
|
|
10320
|
-
}, z.core.$strip
|
|
10266
|
+
}, z.core.$strip>>;
|
|
10321
10267
|
}, z.core.$strip>;
|
|
10322
10268
|
export declare const zGetAtlasSitePath: z.ZodObject<{
|
|
10323
10269
|
id: z.ZodString;
|
|
@@ -10388,18 +10334,18 @@ export declare const zListPackagesQuery: z.ZodObject<{
|
|
|
10388
10334
|
* Success
|
|
10389
10335
|
*/
|
|
10390
10336
|
export declare const zListPackagesResponse: z.ZodObject<{
|
|
10391
|
-
meta: z.
|
|
10337
|
+
meta: z.ZodObject<{
|
|
10392
10338
|
page: z.ZodObject<{
|
|
10393
10339
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
10394
10340
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
10395
10341
|
}, z.core.$strip>;
|
|
10396
|
-
}, z.core.$strip
|
|
10397
|
-
links: z.
|
|
10342
|
+
}, z.core.$strip>;
|
|
10343
|
+
links: z.ZodObject<{
|
|
10398
10344
|
self: z.ZodString;
|
|
10399
10345
|
first: z.ZodNullable<z.ZodString>;
|
|
10400
10346
|
next: z.ZodNullable<z.ZodString>;
|
|
10401
|
-
}, z.core.$strip
|
|
10402
|
-
data: z.
|
|
10347
|
+
}, z.core.$strip>;
|
|
10348
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10403
10349
|
id: z.ZodString;
|
|
10404
10350
|
name: z.ZodString;
|
|
10405
10351
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -10409,7 +10355,7 @@ export declare const zListPackagesResponse: z.ZodObject<{
|
|
|
10409
10355
|
updated_by_user_id: z.ZodString;
|
|
10410
10356
|
created_at: z.ZodISODateTime;
|
|
10411
10357
|
updated_at: z.ZodISODateTime;
|
|
10412
|
-
}, z.core.$strip
|
|
10358
|
+
}, z.core.$strip>>;
|
|
10413
10359
|
}, z.core.$strip>;
|
|
10414
10360
|
export declare const zCreatePackageBody: z.ZodObject<{
|
|
10415
10361
|
name: z.ZodString;
|
|
@@ -10541,7 +10487,7 @@ export declare const zCreateUserCertificationBody: z.ZodObject<{
|
|
|
10541
10487
|
name: z.ZodString;
|
|
10542
10488
|
content: z.ZodString;
|
|
10543
10489
|
}, z.core.$strip>>>;
|
|
10544
|
-
verified: z.ZodOptional<z.
|
|
10490
|
+
verified: z.ZodOptional<z.ZodBoolean>;
|
|
10545
10491
|
expiration_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
|
|
10546
10492
|
credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10547
10493
|
approved_by_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -10622,7 +10568,7 @@ export declare const zUpdateUserCertificationBody: z.ZodObject<{
|
|
|
10622
10568
|
name: z.ZodString;
|
|
10623
10569
|
content: z.ZodString;
|
|
10624
10570
|
}, z.core.$strip>>>;
|
|
10625
|
-
verified: z.ZodOptional<z.
|
|
10571
|
+
verified: z.ZodOptional<z.ZodBoolean>;
|
|
10626
10572
|
expiration_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
|
|
10627
10573
|
credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10628
10574
|
approved_by_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -10687,7 +10633,7 @@ export declare const zCreateCertificationBody: z.ZodObject<{
|
|
|
10687
10633
|
company_id: z.ZodString;
|
|
10688
10634
|
name: z.ZodString;
|
|
10689
10635
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10690
|
-
verified: z.ZodOptional<z.
|
|
10636
|
+
verified: z.ZodOptional<z.ZodBoolean>;
|
|
10691
10637
|
duration: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10692
10638
|
}, z.core.$strip>;
|
|
10693
10639
|
/**
|
|
@@ -10739,7 +10685,7 @@ export declare const zUpdateCertificationBody: z.ZodObject<{
|
|
|
10739
10685
|
company_id: z.ZodString;
|
|
10740
10686
|
name: z.ZodString;
|
|
10741
10687
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10742
|
-
verified: z.ZodOptional<z.
|
|
10688
|
+
verified: z.ZodOptional<z.ZodBoolean>;
|
|
10743
10689
|
duration: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10744
10690
|
}, z.core.$strip>;
|
|
10745
10691
|
export declare const zUpdateCertificationPath: z.ZodObject<{
|
|
@@ -10773,25 +10719,25 @@ export declare const zListDepartmentsQuery: z.ZodObject<{
|
|
|
10773
10719
|
* Success
|
|
10774
10720
|
*/
|
|
10775
10721
|
export declare const zListDepartmentsResponse: z.ZodObject<{
|
|
10776
|
-
meta: z.
|
|
10722
|
+
meta: z.ZodObject<{
|
|
10777
10723
|
page: z.ZodObject<{
|
|
10778
10724
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
10779
10725
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
10780
10726
|
}, z.core.$strip>;
|
|
10781
|
-
}, z.core.$strip
|
|
10782
|
-
links: z.
|
|
10727
|
+
}, z.core.$strip>;
|
|
10728
|
+
links: z.ZodObject<{
|
|
10783
10729
|
self: z.ZodString;
|
|
10784
10730
|
first: z.ZodNullable<z.ZodString>;
|
|
10785
10731
|
next: z.ZodNullable<z.ZodString>;
|
|
10786
|
-
}, z.core.$strip
|
|
10787
|
-
data: z.
|
|
10732
|
+
}, z.core.$strip>;
|
|
10733
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10788
10734
|
id: z.ZodString;
|
|
10789
10735
|
name: z.ZodString;
|
|
10790
10736
|
description: z.ZodNullable<z.ZodString>;
|
|
10791
10737
|
company_id: z.ZodString;
|
|
10792
10738
|
created_at: z.ZodISODateTime;
|
|
10793
10739
|
updated_at: z.ZodISODateTime;
|
|
10794
|
-
}, z.core.$strip
|
|
10740
|
+
}, z.core.$strip>>;
|
|
10795
10741
|
}, z.core.$strip>;
|
|
10796
10742
|
export declare const zCreateDepartmentBody: z.ZodObject<{
|
|
10797
10743
|
name: z.ZodString;
|
|
@@ -10838,18 +10784,18 @@ export declare const zListCompaniesQuery: z.ZodObject<{
|
|
|
10838
10784
|
* Success
|
|
10839
10785
|
*/
|
|
10840
10786
|
export declare const zListCompaniesResponse: z.ZodObject<{
|
|
10841
|
-
meta: z.
|
|
10787
|
+
meta: z.ZodObject<{
|
|
10842
10788
|
page: z.ZodObject<{
|
|
10843
10789
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
10844
10790
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
10845
10791
|
}, z.core.$strip>;
|
|
10846
|
-
}, z.core.$strip
|
|
10847
|
-
links: z.
|
|
10792
|
+
}, z.core.$strip>;
|
|
10793
|
+
links: z.ZodObject<{
|
|
10848
10794
|
self: z.ZodString;
|
|
10849
10795
|
first: z.ZodNullable<z.ZodString>;
|
|
10850
10796
|
next: z.ZodNullable<z.ZodString>;
|
|
10851
|
-
}, z.core.$strip
|
|
10852
|
-
data: z.
|
|
10797
|
+
}, z.core.$strip>;
|
|
10798
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10853
10799
|
id: z.ZodString;
|
|
10854
10800
|
name: z.ZodString;
|
|
10855
10801
|
legal_name: z.ZodNullable<z.ZodString>;
|
|
@@ -10898,7 +10844,7 @@ export declare const zListCompaniesResponse: z.ZodObject<{
|
|
|
10898
10844
|
logo_url: z.ZodNullable<z.ZodURL>;
|
|
10899
10845
|
created_at: z.ZodISODateTime;
|
|
10900
10846
|
updated_at: z.ZodISODateTime;
|
|
10901
|
-
}, z.core.$strip
|
|
10847
|
+
}, z.core.$strip>>;
|
|
10902
10848
|
}, z.core.$strip>;
|
|
10903
10849
|
export declare const zGetCompanyPath: z.ZodObject<{
|
|
10904
10850
|
id: z.ZodString;
|
|
@@ -11136,18 +11082,18 @@ export declare const zListChecksQuery: z.ZodObject<{
|
|
|
11136
11082
|
* Success
|
|
11137
11083
|
*/
|
|
11138
11084
|
export declare const zListChecksResponse: z.ZodObject<{
|
|
11139
|
-
meta: z.
|
|
11085
|
+
meta: z.ZodObject<{
|
|
11140
11086
|
page: z.ZodObject<{
|
|
11141
11087
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
11142
11088
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
11143
11089
|
}, z.core.$strip>;
|
|
11144
|
-
}, z.core.$strip
|
|
11145
|
-
links: z.
|
|
11090
|
+
}, z.core.$strip>;
|
|
11091
|
+
links: z.ZodObject<{
|
|
11146
11092
|
self: z.ZodString;
|
|
11147
11093
|
first: z.ZodNullable<z.ZodString>;
|
|
11148
11094
|
next: z.ZodNullable<z.ZodString>;
|
|
11149
|
-
}, z.core.$strip
|
|
11150
|
-
data: z.
|
|
11095
|
+
}, z.core.$strip>;
|
|
11096
|
+
data: z.ZodArray<z.ZodObject<{
|
|
11151
11097
|
id: z.ZodString;
|
|
11152
11098
|
type: z.ZodEnum<{
|
|
11153
11099
|
"Compliances::CompanyCheck": "Compliances::CompanyCheck";
|
|
@@ -11206,7 +11152,7 @@ export declare const zListChecksResponse: z.ZodObject<{
|
|
|
11206
11152
|
time_due: z.ZodNullable<z.ZodISODateTime>;
|
|
11207
11153
|
created_at: z.ZodISODateTime;
|
|
11208
11154
|
updated_at: z.ZodISODateTime;
|
|
11209
|
-
}, z.core.$strip
|
|
11155
|
+
}, z.core.$strip>>;
|
|
11210
11156
|
}, z.core.$strip>;
|
|
11211
11157
|
export declare const zGetCheckPath: z.ZodObject<{
|
|
11212
11158
|
id: z.ZodString;
|
|
@@ -11356,18 +11302,18 @@ export declare const zListCustomFieldConfigsQuery: z.ZodObject<{
|
|
|
11356
11302
|
* Success
|
|
11357
11303
|
*/
|
|
11358
11304
|
export declare const zListCustomFieldConfigsResponse: z.ZodObject<{
|
|
11359
|
-
meta: z.
|
|
11305
|
+
meta: z.ZodObject<{
|
|
11360
11306
|
page: z.ZodObject<{
|
|
11361
11307
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
11362
11308
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
11363
11309
|
}, z.core.$strip>;
|
|
11364
|
-
}, z.core.$strip
|
|
11365
|
-
links: z.
|
|
11310
|
+
}, z.core.$strip>;
|
|
11311
|
+
links: z.ZodObject<{
|
|
11366
11312
|
self: z.ZodString;
|
|
11367
11313
|
first: z.ZodNullable<z.ZodString>;
|
|
11368
11314
|
next: z.ZodNullable<z.ZodString>;
|
|
11369
|
-
}, z.core.$strip
|
|
11370
|
-
data: z.
|
|
11315
|
+
}, z.core.$strip>;
|
|
11316
|
+
data: z.ZodArray<z.ZodObject<{
|
|
11371
11317
|
id: z.ZodString;
|
|
11372
11318
|
name: z.ZodString;
|
|
11373
11319
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -11376,7 +11322,7 @@ export declare const zListCustomFieldConfigsResponse: z.ZodObject<{
|
|
|
11376
11322
|
company_id: z.ZodString;
|
|
11377
11323
|
created_at: z.ZodISODateTime;
|
|
11378
11324
|
updated_at: z.ZodISODateTime;
|
|
11379
|
-
}, z.core.$strip
|
|
11325
|
+
}, z.core.$strip>>;
|
|
11380
11326
|
}, z.core.$strip>;
|
|
11381
11327
|
export declare const zCreateCustomFieldConfigBody: z.ZodObject<{
|
|
11382
11328
|
name: z.ZodString;
|
|
@@ -11643,21 +11589,21 @@ export declare const zListGroupUsersQuery: z.ZodObject<{
|
|
|
11643
11589
|
* Success
|
|
11644
11590
|
*/
|
|
11645
11591
|
export declare const zListGroupUsersResponse: z.ZodObject<{
|
|
11646
|
-
meta: z.
|
|
11592
|
+
meta: z.ZodObject<{
|
|
11647
11593
|
page: z.ZodObject<{
|
|
11648
11594
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
11649
11595
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
11650
11596
|
}, z.core.$strip>;
|
|
11651
|
-
}, z.core.$strip
|
|
11652
|
-
links: z.
|
|
11597
|
+
}, z.core.$strip>;
|
|
11598
|
+
links: z.ZodObject<{
|
|
11653
11599
|
self: z.ZodString;
|
|
11654
11600
|
first: z.ZodNullable<z.ZodString>;
|
|
11655
11601
|
next: z.ZodNullable<z.ZodString>;
|
|
11656
|
-
}, z.core.$strip
|
|
11657
|
-
data: z.
|
|
11602
|
+
}, z.core.$strip>;
|
|
11603
|
+
data: z.ZodArray<z.ZodObject<{
|
|
11658
11604
|
id: z.ZodString;
|
|
11659
11605
|
user_id: z.ZodString;
|
|
11660
|
-
}, z.core.$strip
|
|
11606
|
+
}, z.core.$strip>>;
|
|
11661
11607
|
}, z.core.$strip>;
|
|
11662
11608
|
export declare const zAddUsersToGroupBody: z.ZodObject<{
|
|
11663
11609
|
user_ids: z.ZodArray<z.ZodString>;
|
|
@@ -11692,23 +11638,23 @@ export declare const zListGroupsQuery: z.ZodObject<{
|
|
|
11692
11638
|
* Success
|
|
11693
11639
|
*/
|
|
11694
11640
|
export declare const zListGroupsResponse: z.ZodObject<{
|
|
11695
|
-
meta: z.
|
|
11641
|
+
meta: z.ZodObject<{
|
|
11696
11642
|
page: z.ZodObject<{
|
|
11697
11643
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
11698
11644
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
11699
11645
|
}, z.core.$strip>;
|
|
11700
|
-
}, z.core.$strip
|
|
11701
|
-
links: z.
|
|
11646
|
+
}, z.core.$strip>;
|
|
11647
|
+
links: z.ZodObject<{
|
|
11702
11648
|
self: z.ZodString;
|
|
11703
11649
|
first: z.ZodNullable<z.ZodString>;
|
|
11704
11650
|
next: z.ZodNullable<z.ZodString>;
|
|
11705
|
-
}, z.core.$strip
|
|
11706
|
-
data: z.
|
|
11651
|
+
}, z.core.$strip>;
|
|
11652
|
+
data: z.ZodArray<z.ZodObject<{
|
|
11707
11653
|
id: z.ZodString;
|
|
11708
11654
|
name: z.ZodString;
|
|
11709
11655
|
created_at: z.ZodISODateTime;
|
|
11710
11656
|
updated_at: z.ZodISODateTime;
|
|
11711
|
-
}, z.core.$strip
|
|
11657
|
+
}, z.core.$strip>>;
|
|
11712
11658
|
}, z.core.$strip>;
|
|
11713
11659
|
export declare const zCreateGroupBody: z.ZodObject<{
|
|
11714
11660
|
name: z.ZodString;
|
|
@@ -11780,18 +11726,18 @@ export declare const zListJobScopePricesQuery: z.ZodObject<{
|
|
|
11780
11726
|
* Success
|
|
11781
11727
|
*/
|
|
11782
11728
|
export declare const zListJobScopePricesResponse: z.ZodObject<{
|
|
11783
|
-
meta: z.
|
|
11729
|
+
meta: z.ZodObject<{
|
|
11784
11730
|
page: z.ZodObject<{
|
|
11785
11731
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
11786
11732
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
11787
11733
|
}, z.core.$strip>;
|
|
11788
|
-
}, z.core.$strip
|
|
11789
|
-
links: z.
|
|
11734
|
+
}, z.core.$strip>;
|
|
11735
|
+
links: z.ZodObject<{
|
|
11790
11736
|
self: z.ZodString;
|
|
11791
11737
|
first: z.ZodNullable<z.ZodString>;
|
|
11792
11738
|
next: z.ZodNullable<z.ZodString>;
|
|
11793
|
-
}, z.core.$strip
|
|
11794
|
-
data: z.
|
|
11739
|
+
}, z.core.$strip>;
|
|
11740
|
+
data: z.ZodArray<z.ZodObject<{
|
|
11795
11741
|
id: z.ZodString;
|
|
11796
11742
|
job_id: z.ZodString;
|
|
11797
11743
|
scope_kind: z.ZodString;
|
|
@@ -11800,7 +11746,7 @@ export declare const zListJobScopePricesResponse: z.ZodObject<{
|
|
|
11800
11746
|
contracted_count: z.ZodNullable<z.ZodInt>;
|
|
11801
11747
|
created_at: z.ZodISODateTime;
|
|
11802
11748
|
updated_at: z.ZodISODateTime;
|
|
11803
|
-
}, z.core.$strip
|
|
11749
|
+
}, z.core.$strip>>;
|
|
11804
11750
|
}, z.core.$strip>;
|
|
11805
11751
|
export declare const zCreateJobScopePriceBody: z.ZodObject<{
|
|
11806
11752
|
scope_kind: z.ZodString;
|
|
@@ -11911,18 +11857,18 @@ export declare const zListRateRuleHistoryQuery: z.ZodObject<{
|
|
|
11911
11857
|
* Success
|
|
11912
11858
|
*/
|
|
11913
11859
|
export declare const zListRateRuleHistoryResponse: z.ZodObject<{
|
|
11914
|
-
meta: z.
|
|
11860
|
+
meta: z.ZodObject<{
|
|
11915
11861
|
page: z.ZodObject<{
|
|
11916
11862
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
11917
11863
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
11918
11864
|
}, z.core.$strip>;
|
|
11919
|
-
}, z.core.$strip
|
|
11920
|
-
links: z.
|
|
11865
|
+
}, z.core.$strip>;
|
|
11866
|
+
links: z.ZodObject<{
|
|
11921
11867
|
self: z.ZodString;
|
|
11922
11868
|
first: z.ZodNullable<z.ZodString>;
|
|
11923
11869
|
next: z.ZodNullable<z.ZodString>;
|
|
11924
|
-
}, z.core.$strip
|
|
11925
|
-
data: z.
|
|
11870
|
+
}, z.core.$strip>;
|
|
11871
|
+
data: z.ZodArray<z.ZodObject<{
|
|
11926
11872
|
pay_rates_rule_id: z.ZodString;
|
|
11927
11873
|
job_wage_determination_id: z.ZodString;
|
|
11928
11874
|
pay_rates_rule_package_id: z.ZodString;
|
|
@@ -12006,7 +11952,7 @@ export declare const zListRateRuleHistoryResponse: z.ZodObject<{
|
|
|
12006
11952
|
created_at: z.ZodISODateTime;
|
|
12007
11953
|
updated_at: z.ZodISODateTime;
|
|
12008
11954
|
}, z.core.$strip>>;
|
|
12009
|
-
}, z.core.$strip
|
|
11955
|
+
}, z.core.$strip>>;
|
|
12010
11956
|
}, z.core.$strip>;
|
|
12011
11957
|
export declare const zListRateRulesPath: z.ZodObject<{
|
|
12012
11958
|
job_id: z.ZodString;
|
|
@@ -12023,18 +11969,18 @@ export declare const zListRateRulesQuery: z.ZodObject<{
|
|
|
12023
11969
|
* Success
|
|
12024
11970
|
*/
|
|
12025
11971
|
export declare const zListRateRulesResponse: z.ZodObject<{
|
|
12026
|
-
meta: z.
|
|
11972
|
+
meta: z.ZodObject<{
|
|
12027
11973
|
page: z.ZodObject<{
|
|
12028
11974
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
12029
11975
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
12030
11976
|
}, z.core.$strip>;
|
|
12031
|
-
}, z.core.$strip
|
|
12032
|
-
links: z.
|
|
11977
|
+
}, z.core.$strip>;
|
|
11978
|
+
links: z.ZodObject<{
|
|
12033
11979
|
self: z.ZodString;
|
|
12034
11980
|
first: z.ZodNullable<z.ZodString>;
|
|
12035
11981
|
next: z.ZodNullable<z.ZodString>;
|
|
12036
|
-
}, z.core.$strip
|
|
12037
|
-
data: z.
|
|
11982
|
+
}, z.core.$strip>;
|
|
11983
|
+
data: z.ZodArray<z.ZodObject<{
|
|
12038
11984
|
id: z.ZodString;
|
|
12039
11985
|
job_wage_determination_id: z.ZodString;
|
|
12040
11986
|
pay_rates_rule_package_id: z.ZodString;
|
|
@@ -12073,7 +12019,7 @@ export declare const zListRateRulesResponse: z.ZodObject<{
|
|
|
12073
12019
|
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12074
12020
|
created_at: z.ZodISODateTime;
|
|
12075
12021
|
updated_at: z.ZodISODateTime;
|
|
12076
|
-
}, z.core.$strip
|
|
12022
|
+
}, z.core.$strip>>;
|
|
12077
12023
|
}, z.core.$strip>;
|
|
12078
12024
|
export declare const zCreateRateRuleBody: z.ZodObject<{
|
|
12079
12025
|
effective_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
|
|
@@ -12218,18 +12164,18 @@ export declare const zListJobWageDeterminationHistoryQuery: z.ZodObject<{
|
|
|
12218
12164
|
* Success
|
|
12219
12165
|
*/
|
|
12220
12166
|
export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
|
|
12221
|
-
meta: z.
|
|
12167
|
+
meta: z.ZodObject<{
|
|
12222
12168
|
page: z.ZodObject<{
|
|
12223
12169
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
12224
12170
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
12225
12171
|
}, z.core.$strip>;
|
|
12226
|
-
}, z.core.$strip
|
|
12227
|
-
links: z.
|
|
12172
|
+
}, z.core.$strip>;
|
|
12173
|
+
links: z.ZodObject<{
|
|
12228
12174
|
self: z.ZodString;
|
|
12229
12175
|
first: z.ZodNullable<z.ZodString>;
|
|
12230
12176
|
next: z.ZodNullable<z.ZodString>;
|
|
12231
|
-
}, z.core.$strip
|
|
12232
|
-
data: z.
|
|
12177
|
+
}, z.core.$strip>;
|
|
12178
|
+
data: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12233
12179
|
job_wage_determination_id: z.ZodString;
|
|
12234
12180
|
job_id: z.ZodString;
|
|
12235
12181
|
pwa_trade_id: z.ZodString;
|
|
@@ -12343,7 +12289,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
|
|
|
12343
12289
|
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
12344
12290
|
}, z.core.$strip>], "type">>;
|
|
12345
12291
|
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
12346
|
-
}, z.core.$strip>], "type"
|
|
12292
|
+
}, z.core.$strip>], "type">>;
|
|
12347
12293
|
}, z.core.$strip>;
|
|
12348
12294
|
export declare const zListJobWageDeterminationsPath: z.ZodObject<{
|
|
12349
12295
|
job_id: z.ZodString;
|
|
@@ -12359,18 +12305,18 @@ export declare const zListJobWageDeterminationsQuery: z.ZodObject<{
|
|
|
12359
12305
|
* Success
|
|
12360
12306
|
*/
|
|
12361
12307
|
export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
|
|
12362
|
-
meta: z.
|
|
12308
|
+
meta: z.ZodObject<{
|
|
12363
12309
|
page: z.ZodObject<{
|
|
12364
12310
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
12365
12311
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
12366
12312
|
}, z.core.$strip>;
|
|
12367
|
-
}, z.core.$strip
|
|
12368
|
-
links: z.
|
|
12313
|
+
}, z.core.$strip>;
|
|
12314
|
+
links: z.ZodObject<{
|
|
12369
12315
|
self: z.ZodString;
|
|
12370
12316
|
first: z.ZodNullable<z.ZodString>;
|
|
12371
12317
|
next: z.ZodNullable<z.ZodString>;
|
|
12372
|
-
}, z.core.$strip
|
|
12373
|
-
data: z.
|
|
12318
|
+
}, z.core.$strip>;
|
|
12319
|
+
data: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12374
12320
|
id: z.ZodString;
|
|
12375
12321
|
job_id: z.ZodString;
|
|
12376
12322
|
pwa_trade_id: z.ZodString;
|
|
@@ -12404,7 +12350,7 @@ export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
|
|
|
12404
12350
|
created_at: z.ZodISODateTime;
|
|
12405
12351
|
updated_at: z.ZodISODateTime;
|
|
12406
12352
|
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
12407
|
-
}, z.core.$strip>], "type"
|
|
12353
|
+
}, z.core.$strip>], "type">>;
|
|
12408
12354
|
}, z.core.$strip>;
|
|
12409
12355
|
export declare const zCreateWageDeterminationBody: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12410
12356
|
labor_classification: z.ZodString;
|
|
@@ -12585,18 +12531,18 @@ export declare const zListJobsQuery: z.ZodObject<{
|
|
|
12585
12531
|
* Success
|
|
12586
12532
|
*/
|
|
12587
12533
|
export declare const zListJobsResponse: z.ZodObject<{
|
|
12588
|
-
meta: z.
|
|
12534
|
+
meta: z.ZodObject<{
|
|
12589
12535
|
page: z.ZodObject<{
|
|
12590
12536
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
12591
12537
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
12592
12538
|
}, z.core.$strip>;
|
|
12593
|
-
}, z.core.$strip
|
|
12594
|
-
links: z.
|
|
12539
|
+
}, z.core.$strip>;
|
|
12540
|
+
links: z.ZodObject<{
|
|
12595
12541
|
self: z.ZodString;
|
|
12596
12542
|
first: z.ZodNullable<z.ZodString>;
|
|
12597
12543
|
next: z.ZodNullable<z.ZodString>;
|
|
12598
|
-
}, z.core.$strip
|
|
12599
|
-
data: z.
|
|
12544
|
+
}, z.core.$strip>;
|
|
12545
|
+
data: z.ZodArray<z.ZodObject<{
|
|
12600
12546
|
id: z.ZodString;
|
|
12601
12547
|
display_id: z.ZodInt;
|
|
12602
12548
|
description: z.ZodString;
|
|
@@ -12687,7 +12633,7 @@ export declare const zListJobsResponse: z.ZodObject<{
|
|
|
12687
12633
|
tracks_feature_allocations: z.ZodBoolean;
|
|
12688
12634
|
requires_feature_allocation: z.ZodBoolean;
|
|
12689
12635
|
max_one_feature_allocation: z.ZodBoolean;
|
|
12690
|
-
}, z.core.$strip
|
|
12636
|
+
}, z.core.$strip>>;
|
|
12691
12637
|
}, z.core.$strip>;
|
|
12692
12638
|
/**
|
|
12693
12639
|
* Create a job
|
|
@@ -12747,6 +12693,10 @@ export declare const zCreateJobBody: z.ZodObject<{
|
|
|
12747
12693
|
verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
12748
12694
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12749
12695
|
}, z.core.$strip>>>;
|
|
12696
|
+
custom_fields_attributes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
12697
|
+
custom_field_config_id: z.ZodString;
|
|
12698
|
+
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12699
|
+
}, z.core.$strip>>>>;
|
|
12750
12700
|
pwa_details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
12751
12701
|
contractor_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12752
12702
|
pay_full_cash_fringe_by_default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -13014,6 +12964,10 @@ export declare const zUpdateJobBody: z.ZodIntersection<z.ZodObject<{
|
|
|
13014
12964
|
verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
13015
12965
|
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13016
12966
|
}, z.core.$strip>>>;
|
|
12967
|
+
custom_fields_attributes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
12968
|
+
custom_field_config_id: z.ZodString;
|
|
12969
|
+
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12970
|
+
}, z.core.$strip>>>>;
|
|
13017
12971
|
pwa_details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
13018
12972
|
contractor_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13019
12973
|
pay_full_cash_fringe_by_default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -13271,18 +13225,18 @@ export declare const zListPayPeriodsResponse: z.ZodObject<{
|
|
|
13271
13225
|
* Success
|
|
13272
13226
|
*/
|
|
13273
13227
|
export declare const zListCompensationElementsResponse: z.ZodObject<{
|
|
13274
|
-
meta: z.
|
|
13228
|
+
meta: z.ZodObject<{
|
|
13275
13229
|
page: z.ZodObject<{
|
|
13276
13230
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
13277
13231
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
13278
13232
|
}, z.core.$strip>;
|
|
13279
|
-
}, z.core.$strip
|
|
13280
|
-
links: z.
|
|
13233
|
+
}, z.core.$strip>;
|
|
13234
|
+
links: z.ZodObject<{
|
|
13281
13235
|
self: z.ZodString;
|
|
13282
13236
|
first: z.ZodNullable<z.ZodString>;
|
|
13283
13237
|
next: z.ZodNullable<z.ZodString>;
|
|
13284
|
-
}, z.core.$strip
|
|
13285
|
-
data: z.
|
|
13238
|
+
}, z.core.$strip>;
|
|
13239
|
+
data: z.ZodArray<z.ZodObject<{
|
|
13286
13240
|
id: z.ZodString;
|
|
13287
13241
|
name: z.ZodString;
|
|
13288
13242
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -13326,7 +13280,7 @@ export declare const zListCompensationElementsResponse: z.ZodObject<{
|
|
|
13326
13280
|
}>;
|
|
13327
13281
|
created_at: z.ZodISODateTime;
|
|
13328
13282
|
updated_at: z.ZodISODateTime;
|
|
13329
|
-
}, z.core.$strip
|
|
13283
|
+
}, z.core.$strip>>;
|
|
13330
13284
|
}, z.core.$strip>;
|
|
13331
13285
|
export declare const zGetCompensationElementPath: z.ZodObject<{
|
|
13332
13286
|
id: z.ZodString;
|
|
@@ -13390,18 +13344,18 @@ export declare const zListExternalMapHistoryQuery: z.ZodObject<{
|
|
|
13390
13344
|
* Success
|
|
13391
13345
|
*/
|
|
13392
13346
|
export declare const zListExternalMapHistoryResponse: z.ZodObject<{
|
|
13393
|
-
meta: z.
|
|
13347
|
+
meta: z.ZodObject<{
|
|
13394
13348
|
page: z.ZodObject<{
|
|
13395
13349
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
13396
13350
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
13397
13351
|
}, z.core.$strip>;
|
|
13398
|
-
}, z.core.$strip
|
|
13399
|
-
links: z.
|
|
13352
|
+
}, z.core.$strip>;
|
|
13353
|
+
links: z.ZodObject<{
|
|
13400
13354
|
self: z.ZodString;
|
|
13401
13355
|
first: z.ZodNullable<z.ZodString>;
|
|
13402
13356
|
next: z.ZodNullable<z.ZodString>;
|
|
13403
|
-
}, z.core.$strip
|
|
13404
|
-
data: z.
|
|
13357
|
+
}, z.core.$strip>;
|
|
13358
|
+
data: z.ZodArray<z.ZodObject<{
|
|
13405
13359
|
payrolls_external_map_id: z.ZodString;
|
|
13406
13360
|
name: z.ZodString;
|
|
13407
13361
|
payrolls_compensation_element_id: z.ZodString;
|
|
@@ -13467,7 +13421,7 @@ export declare const zListExternalMapHistoryResponse: z.ZodObject<{
|
|
|
13467
13421
|
created_at: z.ZodISODateTime;
|
|
13468
13422
|
updated_at: z.ZodISODateTime;
|
|
13469
13423
|
}, z.core.$strip>>;
|
|
13470
|
-
}, z.core.$strip
|
|
13424
|
+
}, z.core.$strip>>;
|
|
13471
13425
|
}, z.core.$strip>;
|
|
13472
13426
|
export declare const zListExternalMapsQuery: z.ZodObject<{
|
|
13473
13427
|
'filter[name]': z.ZodOptional<z.ZodString>;
|
|
@@ -13488,18 +13442,18 @@ export declare const zListExternalMapsQuery: z.ZodObject<{
|
|
|
13488
13442
|
* Success
|
|
13489
13443
|
*/
|
|
13490
13444
|
export declare const zListExternalMapsResponse: z.ZodObject<{
|
|
13491
|
-
meta: z.
|
|
13445
|
+
meta: z.ZodObject<{
|
|
13492
13446
|
page: z.ZodObject<{
|
|
13493
13447
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
13494
13448
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
13495
13449
|
}, z.core.$strip>;
|
|
13496
|
-
}, z.core.$strip
|
|
13497
|
-
links: z.
|
|
13450
|
+
}, z.core.$strip>;
|
|
13451
|
+
links: z.ZodObject<{
|
|
13498
13452
|
self: z.ZodString;
|
|
13499
13453
|
first: z.ZodNullable<z.ZodString>;
|
|
13500
13454
|
next: z.ZodNullable<z.ZodString>;
|
|
13501
|
-
}, z.core.$strip
|
|
13502
|
-
data: z.
|
|
13455
|
+
}, z.core.$strip>;
|
|
13456
|
+
data: z.ZodArray<z.ZodObject<{
|
|
13503
13457
|
id: z.ZodString;
|
|
13504
13458
|
name: z.ZodString;
|
|
13505
13459
|
payrolls_compensation_element_id: z.ZodString;
|
|
@@ -13529,7 +13483,7 @@ export declare const zListExternalMapsResponse: z.ZodObject<{
|
|
|
13529
13483
|
transaction_to: z.ZodNullable<z.ZodISODateTime>;
|
|
13530
13484
|
created_at: z.ZodISODateTime;
|
|
13531
13485
|
updated_at: z.ZodISODateTime;
|
|
13532
|
-
}, z.core.$strip
|
|
13486
|
+
}, z.core.$strip>>;
|
|
13533
13487
|
}, z.core.$strip>;
|
|
13534
13488
|
export declare const zGetExternalMapPath: z.ZodObject<{
|
|
13535
13489
|
id: z.ZodString;
|
|
@@ -13585,18 +13539,18 @@ export declare const zListFringeBenefitPlansQuery: z.ZodObject<{
|
|
|
13585
13539
|
* Success
|
|
13586
13540
|
*/
|
|
13587
13541
|
export declare const zListFringeBenefitPlansResponse: z.ZodObject<{
|
|
13588
|
-
meta: z.
|
|
13542
|
+
meta: z.ZodObject<{
|
|
13589
13543
|
page: z.ZodObject<{
|
|
13590
13544
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
13591
13545
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
13592
13546
|
}, z.core.$strip>;
|
|
13593
|
-
}, z.core.$strip
|
|
13594
|
-
links: z.
|
|
13547
|
+
}, z.core.$strip>;
|
|
13548
|
+
links: z.ZodObject<{
|
|
13595
13549
|
self: z.ZodString;
|
|
13596
13550
|
first: z.ZodNullable<z.ZodString>;
|
|
13597
13551
|
next: z.ZodNullable<z.ZodString>;
|
|
13598
|
-
}, z.core.$strip
|
|
13599
|
-
data: z.
|
|
13552
|
+
}, z.core.$strip>;
|
|
13553
|
+
data: z.ZodArray<z.ZodObject<{
|
|
13600
13554
|
id: z.ZodString;
|
|
13601
13555
|
timekeeping_pay_period_config_id: z.ZodString;
|
|
13602
13556
|
name: z.ZodString;
|
|
@@ -13620,7 +13574,7 @@ export declare const zListFringeBenefitPlansResponse: z.ZodObject<{
|
|
|
13620
13574
|
il_admin_name: z.ZodNullable<z.ZodString>;
|
|
13621
13575
|
created_at: z.ZodISODateTime;
|
|
13622
13576
|
updated_at: z.ZodISODateTime;
|
|
13623
|
-
}, z.core.$strip
|
|
13577
|
+
}, z.core.$strip>>;
|
|
13624
13578
|
}, z.core.$strip>;
|
|
13625
13579
|
export declare const zCreateFringeBenefitPlanBody: z.ZodObject<{
|
|
13626
13580
|
timekeeping_pay_period_config_id: z.ZodString;
|
|
@@ -14305,18 +14259,18 @@ export declare const zListPerDiemsQuery: z.ZodObject<{
|
|
|
14305
14259
|
* Success
|
|
14306
14260
|
*/
|
|
14307
14261
|
export declare const zListPerDiemsResponse: z.ZodObject<{
|
|
14308
|
-
meta: z.
|
|
14262
|
+
meta: z.ZodObject<{
|
|
14309
14263
|
page: z.ZodObject<{
|
|
14310
14264
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
14311
14265
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
14312
14266
|
}, z.core.$strip>;
|
|
14313
|
-
}, z.core.$strip
|
|
14314
|
-
links: z.
|
|
14267
|
+
}, z.core.$strip>;
|
|
14268
|
+
links: z.ZodObject<{
|
|
14315
14269
|
self: z.ZodString;
|
|
14316
14270
|
first: z.ZodNullable<z.ZodString>;
|
|
14317
14271
|
next: z.ZodNullable<z.ZodString>;
|
|
14318
|
-
}, z.core.$strip
|
|
14319
|
-
data: z.
|
|
14272
|
+
}, z.core.$strip>;
|
|
14273
|
+
data: z.ZodArray<z.ZodObject<{
|
|
14320
14274
|
id: z.ZodString;
|
|
14321
14275
|
name: z.ZodNullable<z.ZodString>;
|
|
14322
14276
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -14329,12 +14283,12 @@ export declare const zListPerDiemsResponse: z.ZodObject<{
|
|
|
14329
14283
|
timekeeping_timecode_ids: z.ZodArray<z.ZodString>;
|
|
14330
14284
|
created_at: z.ZodISODateTime;
|
|
14331
14285
|
updated_at: z.ZodISODateTime;
|
|
14332
|
-
}, z.core.$strip
|
|
14286
|
+
}, z.core.$strip>>;
|
|
14333
14287
|
}, z.core.$strip>;
|
|
14334
14288
|
export declare const zCreatePerDiemBody: z.ZodObject<{
|
|
14335
14289
|
name: z.ZodString;
|
|
14336
14290
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14337
|
-
rate_cents: z.
|
|
14291
|
+
rate_cents: z.ZodString;
|
|
14338
14292
|
currency: z.ZodString;
|
|
14339
14293
|
taxable: z.ZodOptional<z.ZodBoolean>;
|
|
14340
14294
|
default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -14402,7 +14356,7 @@ export declare const zGetPerDiemResponse: z.ZodObject<{
|
|
|
14402
14356
|
export declare const zUpdatePerDiemBody: z.ZodObject<{
|
|
14403
14357
|
name: z.ZodString;
|
|
14404
14358
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14405
|
-
rate_cents: z.
|
|
14359
|
+
rate_cents: z.ZodString;
|
|
14406
14360
|
currency: z.ZodString;
|
|
14407
14361
|
taxable: z.ZodOptional<z.ZodBoolean>;
|
|
14408
14362
|
default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -14439,25 +14393,25 @@ export declare const zListPositionFunctionsQuery: z.ZodObject<{
|
|
|
14439
14393
|
* Success
|
|
14440
14394
|
*/
|
|
14441
14395
|
export declare const zListPositionFunctionsResponse: z.ZodObject<{
|
|
14442
|
-
meta: z.
|
|
14396
|
+
meta: z.ZodObject<{
|
|
14443
14397
|
page: z.ZodObject<{
|
|
14444
14398
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
14445
14399
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
14446
14400
|
}, z.core.$strip>;
|
|
14447
|
-
}, z.core.$strip
|
|
14448
|
-
links: z.
|
|
14401
|
+
}, z.core.$strip>;
|
|
14402
|
+
links: z.ZodObject<{
|
|
14449
14403
|
self: z.ZodString;
|
|
14450
14404
|
first: z.ZodNullable<z.ZodString>;
|
|
14451
14405
|
next: z.ZodNullable<z.ZodString>;
|
|
14452
|
-
}, z.core.$strip
|
|
14453
|
-
data: z.
|
|
14406
|
+
}, z.core.$strip>;
|
|
14407
|
+
data: z.ZodArray<z.ZodObject<{
|
|
14454
14408
|
id: z.ZodString;
|
|
14455
14409
|
value: z.ZodString;
|
|
14456
14410
|
description: z.ZodNullable<z.ZodString>;
|
|
14457
14411
|
scoped_to_company_id: z.ZodNullable<z.ZodString>;
|
|
14458
14412
|
created_at: z.ZodISODateTime;
|
|
14459
14413
|
updated_at: z.ZodISODateTime;
|
|
14460
|
-
}, z.core.$strip
|
|
14414
|
+
}, z.core.$strip>>;
|
|
14461
14415
|
}, z.core.$strip>;
|
|
14462
14416
|
export declare const zCreatePositionFunctionBody: z.ZodObject<{
|
|
14463
14417
|
value: z.ZodString;
|
|
@@ -14541,18 +14495,18 @@ export declare const zListCompletionsQuery: z.ZodObject<{
|
|
|
14541
14495
|
* Success
|
|
14542
14496
|
*/
|
|
14543
14497
|
export declare const zListCompletionsResponse: z.ZodObject<{
|
|
14544
|
-
meta: z.
|
|
14498
|
+
meta: z.ZodObject<{
|
|
14545
14499
|
page: z.ZodObject<{
|
|
14546
14500
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
14547
14501
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
14548
14502
|
}, z.core.$strip>;
|
|
14549
|
-
}, z.core.$strip
|
|
14550
|
-
links: z.
|
|
14503
|
+
}, z.core.$strip>;
|
|
14504
|
+
links: z.ZodObject<{
|
|
14551
14505
|
self: z.ZodString;
|
|
14552
14506
|
first: z.ZodNullable<z.ZodString>;
|
|
14553
14507
|
next: z.ZodNullable<z.ZodString>;
|
|
14554
|
-
}, z.core.$strip
|
|
14555
|
-
data: z.
|
|
14508
|
+
}, z.core.$strip>;
|
|
14509
|
+
data: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
14556
14510
|
id: z.ZodString;
|
|
14557
14511
|
notes: z.ZodNullable<z.ZodString>;
|
|
14558
14512
|
completable_id: z.ZodString;
|
|
@@ -14582,7 +14536,7 @@ export declare const zListCompletionsResponse: z.ZodObject<{
|
|
|
14582
14536
|
updated_at: z.ZodISODateTime;
|
|
14583
14537
|
work_date: z.ZodISODate;
|
|
14584
14538
|
completable_type: z.ZodLiteral<"Production::QuantityCompletion">;
|
|
14585
|
-
}, z.core.$strip>], "completable_type"
|
|
14539
|
+
}, z.core.$strip>], "completable_type">>;
|
|
14586
14540
|
}, z.core.$strip>;
|
|
14587
14541
|
export declare const zCreateCompletionBody: z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
|
|
14588
14542
|
production_job_scope_price_id: z.ZodOptional<z.ZodString>;
|
|
@@ -14817,18 +14771,18 @@ export declare const zListProjectsQuery: z.ZodObject<{
|
|
|
14817
14771
|
* Success
|
|
14818
14772
|
*/
|
|
14819
14773
|
export declare const zListProjectsResponse: z.ZodObject<{
|
|
14820
|
-
meta: z.
|
|
14774
|
+
meta: z.ZodObject<{
|
|
14821
14775
|
page: z.ZodObject<{
|
|
14822
14776
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
14823
14777
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
14824
14778
|
}, z.core.$strip>;
|
|
14825
|
-
}, z.core.$strip
|
|
14826
|
-
links: z.
|
|
14779
|
+
}, z.core.$strip>;
|
|
14780
|
+
links: z.ZodObject<{
|
|
14827
14781
|
self: z.ZodString;
|
|
14828
14782
|
first: z.ZodNullable<z.ZodString>;
|
|
14829
14783
|
next: z.ZodNullable<z.ZodString>;
|
|
14830
|
-
}, z.core.$strip
|
|
14831
|
-
data: z.
|
|
14784
|
+
}, z.core.$strip>;
|
|
14785
|
+
data: z.ZodArray<z.ZodObject<{
|
|
14832
14786
|
id: z.ZodString;
|
|
14833
14787
|
external_id: z.ZodNullable<z.ZodString>;
|
|
14834
14788
|
name: z.ZodString;
|
|
@@ -14864,7 +14818,7 @@ export declare const zListProjectsResponse: z.ZodObject<{
|
|
|
14864
14818
|
placed_in_service_date: z.ZodNullable<z.ZodISODate>;
|
|
14865
14819
|
created_at: z.ZodISODateTime;
|
|
14866
14820
|
updated_at: z.ZodISODateTime;
|
|
14867
|
-
}, z.core.$strip
|
|
14821
|
+
}, z.core.$strip>>;
|
|
14868
14822
|
}, z.core.$strip>;
|
|
14869
14823
|
export declare const zCreateProjectBody: z.ZodObject<{
|
|
14870
14824
|
external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -15458,18 +15412,18 @@ export declare const zListTradesQuery: z.ZodObject<{
|
|
|
15458
15412
|
* Success
|
|
15459
15413
|
*/
|
|
15460
15414
|
export declare const zListTradesResponse: z.ZodObject<{
|
|
15461
|
-
meta: z.
|
|
15415
|
+
meta: z.ZodObject<{
|
|
15462
15416
|
page: z.ZodObject<{
|
|
15463
15417
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
15464
15418
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
15465
15419
|
}, z.core.$strip>;
|
|
15466
|
-
}, z.core.$strip
|
|
15467
|
-
links: z.
|
|
15420
|
+
}, z.core.$strip>;
|
|
15421
|
+
links: z.ZodObject<{
|
|
15468
15422
|
self: z.ZodString;
|
|
15469
15423
|
first: z.ZodNullable<z.ZodString>;
|
|
15470
15424
|
next: z.ZodNullable<z.ZodString>;
|
|
15471
|
-
}, z.core.$strip
|
|
15472
|
-
data: z.
|
|
15425
|
+
}, z.core.$strip>;
|
|
15426
|
+
data: z.ZodArray<z.ZodObject<{
|
|
15473
15427
|
id: z.ZodString;
|
|
15474
15428
|
project_id: z.ZodNullable<z.ZodString>;
|
|
15475
15429
|
job_id: z.ZodNullable<z.ZodString>;
|
|
@@ -15477,7 +15431,7 @@ export declare const zListTradesResponse: z.ZodObject<{
|
|
|
15477
15431
|
normalized_key: z.ZodString;
|
|
15478
15432
|
created_at: z.ZodISODateTime;
|
|
15479
15433
|
updated_at: z.ZodISODateTime;
|
|
15480
|
-
}, z.core.$strip
|
|
15434
|
+
}, z.core.$strip>>;
|
|
15481
15435
|
}, z.core.$strip>;
|
|
15482
15436
|
export declare const zGetTradePath: z.ZodObject<{
|
|
15483
15437
|
id: z.ZodString;
|
|
@@ -15767,22 +15721,22 @@ export declare const zListTemplatesQuery: z.ZodObject<{
|
|
|
15767
15721
|
* Success
|
|
15768
15722
|
*/
|
|
15769
15723
|
export declare const zListTemplatesResponse: z.ZodObject<{
|
|
15770
|
-
meta: z.
|
|
15724
|
+
meta: z.ZodObject<{
|
|
15771
15725
|
page: z.ZodObject<{
|
|
15772
15726
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
15773
15727
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
15774
15728
|
}, z.core.$strip>;
|
|
15775
|
-
}, z.core.$strip
|
|
15776
|
-
links: z.
|
|
15729
|
+
}, z.core.$strip>;
|
|
15730
|
+
links: z.ZodObject<{
|
|
15777
15731
|
self: z.ZodString;
|
|
15778
15732
|
first: z.ZodNullable<z.ZodString>;
|
|
15779
15733
|
next: z.ZodNullable<z.ZodString>;
|
|
15780
|
-
}, z.core.$strip
|
|
15781
|
-
data: z.
|
|
15734
|
+
}, z.core.$strip>;
|
|
15735
|
+
data: z.ZodArray<z.ZodObject<{
|
|
15782
15736
|
id: z.ZodString;
|
|
15783
15737
|
name: z.ZodString;
|
|
15784
15738
|
description: z.ZodNullable<z.ZodString>;
|
|
15785
|
-
}, z.core.$strip
|
|
15739
|
+
}, z.core.$strip>>;
|
|
15786
15740
|
}, z.core.$strip>;
|
|
15787
15741
|
export declare const zSetTimeCardLockBody: z.ZodObject<{
|
|
15788
15742
|
locked: z.ZodBoolean;
|
|
@@ -15874,18 +15828,18 @@ export declare const zListTimeCardPerDiemsQuery: z.ZodObject<{
|
|
|
15874
15828
|
* Success
|
|
15875
15829
|
*/
|
|
15876
15830
|
export declare const zListTimeCardPerDiemsResponse: z.ZodObject<{
|
|
15877
|
-
meta: z.
|
|
15831
|
+
meta: z.ZodObject<{
|
|
15878
15832
|
page: z.ZodObject<{
|
|
15879
15833
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
15880
15834
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
15881
15835
|
}, z.core.$strip>;
|
|
15882
|
-
}, z.core.$strip
|
|
15883
|
-
links: z.
|
|
15836
|
+
}, z.core.$strip>;
|
|
15837
|
+
links: z.ZodObject<{
|
|
15884
15838
|
self: z.ZodString;
|
|
15885
15839
|
first: z.ZodNullable<z.ZodString>;
|
|
15886
15840
|
next: z.ZodNullable<z.ZodString>;
|
|
15887
|
-
}, z.core.$strip
|
|
15888
|
-
data: z.
|
|
15841
|
+
}, z.core.$strip>;
|
|
15842
|
+
data: z.ZodArray<z.ZodObject<{
|
|
15889
15843
|
id: z.ZodString;
|
|
15890
15844
|
timekeeping_time_card_id: z.ZodString;
|
|
15891
15845
|
date: z.ZodISODate;
|
|
@@ -15896,7 +15850,7 @@ export declare const zListTimeCardPerDiemsResponse: z.ZodObject<{
|
|
|
15896
15850
|
taxable: z.ZodBoolean;
|
|
15897
15851
|
created_at: z.ZodISODateTime;
|
|
15898
15852
|
updated_at: z.ZodISODateTime;
|
|
15899
|
-
}, z.core.$strip
|
|
15853
|
+
}, z.core.$strip>>;
|
|
15900
15854
|
}, z.core.$strip>;
|
|
15901
15855
|
export declare const zCreateTimeCardPerDiemBody: z.ZodObject<{
|
|
15902
15856
|
date: z.ZodISODate;
|
|
@@ -15979,18 +15933,18 @@ export declare const zListPriorPeriodAdjustmentsQuery: z.ZodObject<{
|
|
|
15979
15933
|
* Success
|
|
15980
15934
|
*/
|
|
15981
15935
|
export declare const zListPriorPeriodAdjustmentsResponse: z.ZodObject<{
|
|
15982
|
-
meta: z.
|
|
15936
|
+
meta: z.ZodObject<{
|
|
15983
15937
|
page: z.ZodObject<{
|
|
15984
15938
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
15985
15939
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
15986
15940
|
}, z.core.$strip>;
|
|
15987
|
-
}, z.core.$strip
|
|
15988
|
-
links: z.
|
|
15941
|
+
}, z.core.$strip>;
|
|
15942
|
+
links: z.ZodObject<{
|
|
15989
15943
|
self: z.ZodString;
|
|
15990
15944
|
first: z.ZodNullable<z.ZodString>;
|
|
15991
15945
|
next: z.ZodNullable<z.ZodString>;
|
|
15992
|
-
}, z.core.$strip
|
|
15993
|
-
data: z.
|
|
15946
|
+
}, z.core.$strip>;
|
|
15947
|
+
data: z.ZodArray<z.ZodObject<{
|
|
15994
15948
|
id: z.ZodString;
|
|
15995
15949
|
timekeeping_time_card_id: z.ZodString;
|
|
15996
15950
|
payrolls_paystub_line_item_id: z.ZodString;
|
|
@@ -16012,7 +15966,7 @@ export declare const zListPriorPeriodAdjustmentsResponse: z.ZodObject<{
|
|
|
16012
15966
|
currency: z.ZodString;
|
|
16013
15967
|
created_at: z.ZodISODateTime;
|
|
16014
15968
|
updated_at: z.ZodISODateTime;
|
|
16015
|
-
}, z.core.$strip
|
|
15969
|
+
}, z.core.$strip>>;
|
|
16016
15970
|
}, z.core.$strip>;
|
|
16017
15971
|
export declare const zGetPriorPeriodAdjustmentPath: z.ZodObject<{
|
|
16018
15972
|
time_card_id: z.ZodString;
|
|
@@ -16298,18 +16252,19 @@ export declare const zListTimeEntriesResponse: z.ZodObject<{
|
|
|
16298
16252
|
}, z.core.$strip>>;
|
|
16299
16253
|
}, z.core.$strip>>;
|
|
16300
16254
|
}, z.core.$strip>;
|
|
16301
|
-
export declare const zCreateTimeEntryBody: z.ZodObject<{
|
|
16302
|
-
timekeeping_time_card_id: z.ZodString
|
|
16303
|
-
start_time: z.ZodISODateTime
|
|
16304
|
-
end_time: z.ZodISODateTime
|
|
16255
|
+
export declare const zCreateTimeEntryBody: z.ZodIntersection<z.ZodObject<{
|
|
16256
|
+
timekeeping_time_card_id: z.ZodOptional<z.ZodString>;
|
|
16257
|
+
start_time: z.ZodOptional<z.ZodISODateTime>;
|
|
16258
|
+
end_time: z.ZodOptional<z.ZodISODateTime>;
|
|
16305
16259
|
job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16306
16260
|
timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16307
16261
|
state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16308
16262
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16309
16263
|
hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16310
16264
|
feature_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
16265
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16311
16266
|
feature_allocation_acknowledged: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
16312
|
-
}, z.core.$strip
|
|
16267
|
+
}, z.core.$strip>>;
|
|
16313
16268
|
/**
|
|
16314
16269
|
* Created
|
|
16315
16270
|
*/
|
|
@@ -16389,18 +16344,19 @@ export declare const zDeleteTimeEntryResponse: z.ZodObject<{
|
|
|
16389
16344
|
name: z.ZodString;
|
|
16390
16345
|
}, z.core.$strip>>;
|
|
16391
16346
|
}, z.core.$strip>;
|
|
16392
|
-
export declare const zUpdateTimeEntryBody: z.ZodObject<{
|
|
16393
|
-
timekeeping_time_card_id: z.ZodString
|
|
16394
|
-
start_time: z.ZodISODateTime
|
|
16395
|
-
end_time: z.ZodISODateTime
|
|
16347
|
+
export declare const zUpdateTimeEntryBody: z.ZodIntersection<z.ZodObject<{
|
|
16348
|
+
timekeeping_time_card_id: z.ZodOptional<z.ZodString>;
|
|
16349
|
+
start_time: z.ZodOptional<z.ZodISODateTime>;
|
|
16350
|
+
end_time: z.ZodOptional<z.ZodISODateTime>;
|
|
16396
16351
|
job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16397
16352
|
timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16398
16353
|
state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16399
16354
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16400
16355
|
hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16401
16356
|
feature_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
16402
|
-
|
|
16403
|
-
|
|
16357
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16358
|
+
confirm_allocation_conflict: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
16359
|
+
}, z.core.$strip>>;
|
|
16404
16360
|
export declare const zUpdateTimeEntryPath: z.ZodObject<{
|
|
16405
16361
|
id: z.ZodString;
|
|
16406
16362
|
}, z.core.$strip>;
|
|
@@ -16495,18 +16451,18 @@ export declare const zListTimecodeHistoryQuery: z.ZodObject<{
|
|
|
16495
16451
|
* Success
|
|
16496
16452
|
*/
|
|
16497
16453
|
export declare const zListTimecodeHistoryResponse: z.ZodObject<{
|
|
16498
|
-
meta: z.
|
|
16454
|
+
meta: z.ZodObject<{
|
|
16499
16455
|
page: z.ZodObject<{
|
|
16500
16456
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
16501
16457
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
16502
16458
|
}, z.core.$strip>;
|
|
16503
|
-
}, z.core.$strip
|
|
16504
|
-
links: z.
|
|
16459
|
+
}, z.core.$strip>;
|
|
16460
|
+
links: z.ZodObject<{
|
|
16505
16461
|
self: z.ZodString;
|
|
16506
16462
|
first: z.ZodNullable<z.ZodString>;
|
|
16507
16463
|
next: z.ZodNullable<z.ZodString>;
|
|
16508
|
-
}, z.core.$strip
|
|
16509
|
-
data: z.
|
|
16464
|
+
}, z.core.$strip>;
|
|
16465
|
+
data: z.ZodArray<z.ZodObject<{
|
|
16510
16466
|
timekeeping_timecode_id: z.ZodString;
|
|
16511
16467
|
name: z.ZodString;
|
|
16512
16468
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -16570,7 +16526,7 @@ export declare const zListTimecodeHistoryResponse: z.ZodObject<{
|
|
|
16570
16526
|
created_at: z.ZodISODateTime;
|
|
16571
16527
|
updated_at: z.ZodISODateTime;
|
|
16572
16528
|
}, z.core.$strip>>;
|
|
16573
|
-
}, z.core.$strip
|
|
16529
|
+
}, z.core.$strip>>;
|
|
16574
16530
|
}, z.core.$strip>;
|
|
16575
16531
|
export declare const zCancelTimecodeScheduledChangesHeaders: z.ZodObject<{
|
|
16576
16532
|
'If-Match': z.ZodString;
|
|
@@ -16810,18 +16766,18 @@ export declare const zListTimecodesQuery: z.ZodObject<{
|
|
|
16810
16766
|
* Success
|
|
16811
16767
|
*/
|
|
16812
16768
|
export declare const zListTimecodesResponse: z.ZodObject<{
|
|
16813
|
-
meta: z.
|
|
16769
|
+
meta: z.ZodObject<{
|
|
16814
16770
|
page: z.ZodObject<{
|
|
16815
16771
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
16816
16772
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
16817
16773
|
}, z.core.$strip>;
|
|
16818
|
-
}, z.core.$strip
|
|
16819
|
-
links: z.
|
|
16774
|
+
}, z.core.$strip>;
|
|
16775
|
+
links: z.ZodObject<{
|
|
16820
16776
|
self: z.ZodString;
|
|
16821
16777
|
first: z.ZodNullable<z.ZodString>;
|
|
16822
16778
|
next: z.ZodNullable<z.ZodString>;
|
|
16823
|
-
}, z.core.$strip
|
|
16824
|
-
data: z.
|
|
16779
|
+
}, z.core.$strip>;
|
|
16780
|
+
data: z.ZodArray<z.ZodObject<{
|
|
16825
16781
|
id: z.ZodString;
|
|
16826
16782
|
name: z.ZodString;
|
|
16827
16783
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -16850,7 +16806,7 @@ export declare const zListTimecodesResponse: z.ZodObject<{
|
|
|
16850
16806
|
transaction_to: z.ZodNullable<z.ZodISODateTime>;
|
|
16851
16807
|
created_at: z.ZodISODateTime;
|
|
16852
16808
|
updated_at: z.ZodISODateTime;
|
|
16853
|
-
}, z.core.$strip
|
|
16809
|
+
}, z.core.$strip>>;
|
|
16854
16810
|
}, z.core.$strip>;
|
|
16855
16811
|
export declare const zCreateTimecodeBody: z.ZodObject<{
|
|
16856
16812
|
name: z.ZodString;
|
|
@@ -17252,18 +17208,18 @@ export declare const zListAttestationConfigsPath: z.ZodObject<{
|
|
|
17252
17208
|
* Success
|
|
17253
17209
|
*/
|
|
17254
17210
|
export declare const zListAttestationConfigsResponse: z.ZodObject<{
|
|
17255
|
-
meta: z.
|
|
17211
|
+
meta: z.ZodObject<{
|
|
17256
17212
|
page: z.ZodObject<{
|
|
17257
17213
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
17258
17214
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
17259
17215
|
}, z.core.$strip>;
|
|
17260
|
-
}, z.core.$strip
|
|
17261
|
-
links: z.
|
|
17216
|
+
}, z.core.$strip>;
|
|
17217
|
+
links: z.ZodObject<{
|
|
17262
17218
|
self: z.ZodString;
|
|
17263
17219
|
first: z.ZodNullable<z.ZodString>;
|
|
17264
17220
|
next: z.ZodNullable<z.ZodString>;
|
|
17265
|
-
}, z.core.$strip
|
|
17266
|
-
data: z.
|
|
17221
|
+
}, z.core.$strip>;
|
|
17222
|
+
data: z.ZodArray<z.ZodObject<{
|
|
17267
17223
|
id: z.ZodString;
|
|
17268
17224
|
timekeeping_pay_period_config_id: z.ZodString;
|
|
17269
17225
|
content: z.ZodString;
|
|
@@ -17272,7 +17228,7 @@ export declare const zListAttestationConfigsResponse: z.ZodObject<{
|
|
|
17272
17228
|
deleted_at: z.ZodNullable<z.ZodISODateTime>;
|
|
17273
17229
|
created_at: z.ZodISODateTime;
|
|
17274
17230
|
updated_at: z.ZodISODateTime;
|
|
17275
|
-
}, z.core.$strip
|
|
17231
|
+
}, z.core.$strip>>;
|
|
17276
17232
|
}, z.core.$strip>;
|
|
17277
17233
|
export declare const zCreateAttestationConfigBody: z.ZodObject<{
|
|
17278
17234
|
content: z.ZodString;
|
|
@@ -17339,18 +17295,18 @@ export declare const zListPayPeriodConfigHistoryQuery: z.ZodObject<{
|
|
|
17339
17295
|
* Success
|
|
17340
17296
|
*/
|
|
17341
17297
|
export declare const zListPayPeriodConfigHistoryResponse: z.ZodObject<{
|
|
17342
|
-
meta: z.
|
|
17298
|
+
meta: z.ZodObject<{
|
|
17343
17299
|
page: z.ZodObject<{
|
|
17344
17300
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
17345
17301
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
17346
17302
|
}, z.core.$strip>;
|
|
17347
|
-
}, z.core.$strip
|
|
17348
|
-
links: z.
|
|
17303
|
+
}, z.core.$strip>;
|
|
17304
|
+
links: z.ZodObject<{
|
|
17349
17305
|
self: z.ZodString;
|
|
17350
17306
|
first: z.ZodNullable<z.ZodString>;
|
|
17351
17307
|
next: z.ZodNullable<z.ZodString>;
|
|
17352
|
-
}, z.core.$strip
|
|
17353
|
-
data: z.
|
|
17308
|
+
}, z.core.$strip>;
|
|
17309
|
+
data: z.ZodArray<z.ZodObject<{
|
|
17354
17310
|
timekeeping_pay_period_config_id: z.ZodString;
|
|
17355
17311
|
company_id: z.ZodString;
|
|
17356
17312
|
name: z.ZodString;
|
|
@@ -17434,7 +17390,7 @@ export declare const zListPayPeriodConfigHistoryResponse: z.ZodObject<{
|
|
|
17434
17390
|
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
17435
17391
|
created_at: z.ZodISODateTime;
|
|
17436
17392
|
}, z.core.$strip>>;
|
|
17437
|
-
}, z.core.$strip
|
|
17393
|
+
}, z.core.$strip>>;
|
|
17438
17394
|
}, z.core.$strip>;
|
|
17439
17395
|
export declare const zListHolidaysPath: z.ZodObject<{
|
|
17440
17396
|
pay_period_config_id: z.ZodString;
|
|
@@ -17456,18 +17412,18 @@ export declare const zListHolidaysQuery: z.ZodObject<{
|
|
|
17456
17412
|
* Success
|
|
17457
17413
|
*/
|
|
17458
17414
|
export declare const zListHolidaysResponse: z.ZodObject<{
|
|
17459
|
-
meta: z.
|
|
17415
|
+
meta: z.ZodObject<{
|
|
17460
17416
|
page: z.ZodObject<{
|
|
17461
17417
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
17462
17418
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
17463
17419
|
}, z.core.$strip>;
|
|
17464
|
-
}, z.core.$strip
|
|
17465
|
-
links: z.
|
|
17420
|
+
}, z.core.$strip>;
|
|
17421
|
+
links: z.ZodObject<{
|
|
17466
17422
|
self: z.ZodString;
|
|
17467
17423
|
first: z.ZodNullable<z.ZodString>;
|
|
17468
17424
|
next: z.ZodNullable<z.ZodString>;
|
|
17469
|
-
}, z.core.$strip
|
|
17470
|
-
data: z.
|
|
17425
|
+
}, z.core.$strip>;
|
|
17426
|
+
data: z.ZodArray<z.ZodObject<{
|
|
17471
17427
|
id: z.ZodString;
|
|
17472
17428
|
timekeeping_pay_period_config_id: z.ZodString;
|
|
17473
17429
|
date: z.ZodISODate;
|
|
@@ -17487,7 +17443,7 @@ export declare const zListHolidaysResponse: z.ZodObject<{
|
|
|
17487
17443
|
count_hours_for_overtime: z.ZodBoolean;
|
|
17488
17444
|
created_at: z.ZodISODateTime;
|
|
17489
17445
|
updated_at: z.ZodISODateTime;
|
|
17490
|
-
}, z.core.$strip
|
|
17446
|
+
}, z.core.$strip>>;
|
|
17491
17447
|
}, z.core.$strip>;
|
|
17492
17448
|
export declare const zCreateHolidayBody: z.ZodObject<{
|
|
17493
17449
|
name: z.ZodString;
|
|
@@ -17620,18 +17576,18 @@ export declare const zListPayPeriodConfigsQuery: z.ZodObject<{
|
|
|
17620
17576
|
* Success
|
|
17621
17577
|
*/
|
|
17622
17578
|
export declare const zListPayPeriodConfigsResponse: z.ZodObject<{
|
|
17623
|
-
meta: z.
|
|
17579
|
+
meta: z.ZodObject<{
|
|
17624
17580
|
page: z.ZodObject<{
|
|
17625
17581
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
17626
17582
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
17627
17583
|
}, z.core.$strip>;
|
|
17628
|
-
}, z.core.$strip
|
|
17629
|
-
links: z.
|
|
17584
|
+
}, z.core.$strip>;
|
|
17585
|
+
links: z.ZodObject<{
|
|
17630
17586
|
self: z.ZodString;
|
|
17631
17587
|
first: z.ZodNullable<z.ZodString>;
|
|
17632
17588
|
next: z.ZodNullable<z.ZodString>;
|
|
17633
|
-
}, z.core.$strip
|
|
17634
|
-
data: z.
|
|
17589
|
+
}, z.core.$strip>;
|
|
17590
|
+
data: z.ZodArray<z.ZodObject<{
|
|
17635
17591
|
id: z.ZodString;
|
|
17636
17592
|
company_id: z.ZodString;
|
|
17637
17593
|
name: z.ZodString;
|
|
@@ -17670,7 +17626,7 @@ export declare const zListPayPeriodConfigsResponse: z.ZodObject<{
|
|
|
17670
17626
|
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
17671
17627
|
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
17672
17628
|
created_at: z.ZodISODateTime;
|
|
17673
|
-
}, z.core.$strip
|
|
17629
|
+
}, z.core.$strip>>;
|
|
17674
17630
|
}, z.core.$strip>;
|
|
17675
17631
|
export declare const zGetPayPeriodConfigPath: z.ZodObject<{
|
|
17676
17632
|
id: z.ZodString;
|
|
@@ -17737,18 +17693,18 @@ export declare const zListTimeCardActualsQuery: z.ZodObject<{
|
|
|
17737
17693
|
* Success
|
|
17738
17694
|
*/
|
|
17739
17695
|
export declare const zListTimeCardActualsResponse: z.ZodObject<{
|
|
17740
|
-
meta: z.
|
|
17696
|
+
meta: z.ZodObject<{
|
|
17741
17697
|
page: z.ZodObject<{
|
|
17742
17698
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
17743
17699
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
17744
17700
|
}, z.core.$strip>;
|
|
17745
|
-
}, z.core.$strip
|
|
17746
|
-
links: z.
|
|
17701
|
+
}, z.core.$strip>;
|
|
17702
|
+
links: z.ZodObject<{
|
|
17747
17703
|
self: z.ZodString;
|
|
17748
17704
|
first: z.ZodNullable<z.ZodString>;
|
|
17749
17705
|
next: z.ZodNullable<z.ZodString>;
|
|
17750
|
-
}, z.core.$strip
|
|
17751
|
-
data: z.
|
|
17706
|
+
}, z.core.$strip>;
|
|
17707
|
+
data: z.ZodArray<z.ZodObject<{
|
|
17752
17708
|
id: z.ZodString;
|
|
17753
17709
|
timekeeping_time_card_id: z.ZodString;
|
|
17754
17710
|
gross_pay_cents: z.ZodNullable<z.ZodString>;
|
|
@@ -17799,7 +17755,7 @@ export declare const zListTimeCardActualsResponse: z.ZodObject<{
|
|
|
17799
17755
|
employer_total_contributions_cents: z.ZodNullable<z.ZodString>;
|
|
17800
17756
|
created_at: z.ZodISODateTime;
|
|
17801
17757
|
updated_at: z.ZodISODateTime;
|
|
17802
|
-
}, z.core.$strip
|
|
17758
|
+
}, z.core.$strip>>;
|
|
17803
17759
|
}, z.core.$strip>;
|
|
17804
17760
|
export declare const zGetTimeCardActualPath: z.ZodObject<{
|
|
17805
17761
|
id: z.ZodString;
|
|
@@ -17872,18 +17828,18 @@ export declare const zListUserRolesQuery: z.ZodObject<{
|
|
|
17872
17828
|
* Success
|
|
17873
17829
|
*/
|
|
17874
17830
|
export declare const zListUserRolesResponse: z.ZodObject<{
|
|
17875
|
-
meta: z.
|
|
17831
|
+
meta: z.ZodObject<{
|
|
17876
17832
|
page: z.ZodObject<{
|
|
17877
17833
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
17878
17834
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
17879
17835
|
}, z.core.$strip>;
|
|
17880
|
-
}, z.core.$strip
|
|
17881
|
-
links: z.
|
|
17836
|
+
}, z.core.$strip>;
|
|
17837
|
+
links: z.ZodObject<{
|
|
17882
17838
|
self: z.ZodString;
|
|
17883
17839
|
first: z.ZodNullable<z.ZodString>;
|
|
17884
17840
|
next: z.ZodNullable<z.ZodString>;
|
|
17885
|
-
}, z.core.$strip
|
|
17886
|
-
data: z.
|
|
17841
|
+
}, z.core.$strip>;
|
|
17842
|
+
data: z.ZodArray<z.ZodObject<{
|
|
17887
17843
|
id: z.ZodString;
|
|
17888
17844
|
user_id: z.ZodString;
|
|
17889
17845
|
company_id: z.ZodString;
|
|
@@ -17894,7 +17850,7 @@ export declare const zListUserRolesResponse: z.ZodObject<{
|
|
|
17894
17850
|
SAFETY_MANAGER: "SAFETY_MANAGER";
|
|
17895
17851
|
ADMIN: "ADMIN";
|
|
17896
17852
|
}>;
|
|
17897
|
-
}, z.core.$strip
|
|
17853
|
+
}, z.core.$strip>>;
|
|
17898
17854
|
}, z.core.$strip>;
|
|
17899
17855
|
export declare const zAddUserRolesBody: z.ZodObject<{
|
|
17900
17856
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -17983,7 +17939,10 @@ export declare const zListUserCompanyScheduledChangesResponse: z.ZodObject<{
|
|
|
17983
17939
|
export declare const zCreateUserCompanyScheduledChangeBody: z.ZodObject<{
|
|
17984
17940
|
effective_date: z.ZodString;
|
|
17985
17941
|
hourly_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17986
|
-
compensation_type: z.ZodOptional<z.
|
|
17942
|
+
compensation_type: z.ZodOptional<z.ZodEnum<{
|
|
17943
|
+
hourly: "hourly";
|
|
17944
|
+
salary: "salary";
|
|
17945
|
+
}>>;
|
|
17987
17946
|
overtime_eligible: z.ZodOptional<z.ZodBoolean>;
|
|
17988
17947
|
training_annual_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17989
17948
|
employer_combined_health_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -18078,7 +18037,10 @@ export declare const zCancelUserCompanyScheduledChangeResponse: z.ZodObject<{
|
|
|
18078
18037
|
export declare const zUpdateScheduledChangeBody: z.ZodObject<{
|
|
18079
18038
|
effective_date: z.ZodString;
|
|
18080
18039
|
hourly_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18081
|
-
compensation_type: z.ZodOptional<z.
|
|
18040
|
+
compensation_type: z.ZodOptional<z.ZodEnum<{
|
|
18041
|
+
hourly: "hourly";
|
|
18042
|
+
salary: "salary";
|
|
18043
|
+
}>>;
|
|
18082
18044
|
overtime_eligible: z.ZodOptional<z.ZodBoolean>;
|
|
18083
18045
|
training_annual_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18084
18046
|
employer_combined_health_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -18390,7 +18352,10 @@ export declare const zCreateCompanyBody: z.ZodObject<{
|
|
|
18390
18352
|
}>>>;
|
|
18391
18353
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18392
18354
|
manager_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18393
|
-
compensation_type: z.ZodOptional<z.
|
|
18355
|
+
compensation_type: z.ZodOptional<z.ZodEnum<{
|
|
18356
|
+
hourly: "hourly";
|
|
18357
|
+
salary: "salary";
|
|
18358
|
+
}>>;
|
|
18394
18359
|
enrolled_in_t_and_a: z.ZodOptional<z.ZodBoolean>;
|
|
18395
18360
|
payroll_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18396
18361
|
hourly_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -18808,18 +18773,18 @@ export declare const zListUsersQuery: z.ZodObject<{
|
|
|
18808
18773
|
* Success
|
|
18809
18774
|
*/
|
|
18810
18775
|
export declare const zListUsersResponse: z.ZodObject<{
|
|
18811
|
-
meta: z.
|
|
18776
|
+
meta: z.ZodObject<{
|
|
18812
18777
|
page: z.ZodObject<{
|
|
18813
18778
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
18814
18779
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
18815
18780
|
}, z.core.$strip>;
|
|
18816
|
-
}, z.core.$strip
|
|
18817
|
-
links: z.
|
|
18781
|
+
}, z.core.$strip>;
|
|
18782
|
+
links: z.ZodObject<{
|
|
18818
18783
|
self: z.ZodString;
|
|
18819
18784
|
first: z.ZodNullable<z.ZodString>;
|
|
18820
18785
|
next: z.ZodNullable<z.ZodString>;
|
|
18821
|
-
}, z.core.$strip
|
|
18822
|
-
data: z.
|
|
18786
|
+
}, z.core.$strip>;
|
|
18787
|
+
data: z.ZodArray<z.ZodObject<{
|
|
18823
18788
|
id: z.ZodString;
|
|
18824
18789
|
name: z.ZodString;
|
|
18825
18790
|
first_name: z.ZodNullable<z.ZodString>;
|
|
@@ -18935,7 +18900,7 @@ export declare const zListUsersResponse: z.ZodObject<{
|
|
|
18935
18900
|
portuguese_or_brazilian: "portuguese_or_brazilian";
|
|
18936
18901
|
}>>>;
|
|
18937
18902
|
}, z.core.$strip>>;
|
|
18938
|
-
}, z.core.$strip
|
|
18903
|
+
}, z.core.$strip>>;
|
|
18939
18904
|
}, z.core.$strip>;
|
|
18940
18905
|
/**
|
|
18941
18906
|
* Create a user
|
|
@@ -19537,18 +19502,18 @@ export declare const zListWorkTypesQuery: z.ZodObject<{
|
|
|
19537
19502
|
* Success
|
|
19538
19503
|
*/
|
|
19539
19504
|
export declare const zListWorkTypesResponse: z.ZodObject<{
|
|
19540
|
-
meta: z.
|
|
19505
|
+
meta: z.ZodObject<{
|
|
19541
19506
|
page: z.ZodObject<{
|
|
19542
19507
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
19543
19508
|
current_cursor: z.ZodNullable<z.ZodString>;
|
|
19544
19509
|
}, z.core.$strip>;
|
|
19545
|
-
}, z.core.$strip
|
|
19546
|
-
links: z.
|
|
19510
|
+
}, z.core.$strip>;
|
|
19511
|
+
links: z.ZodObject<{
|
|
19547
19512
|
self: z.ZodString;
|
|
19548
19513
|
first: z.ZodNullable<z.ZodString>;
|
|
19549
19514
|
next: z.ZodNullable<z.ZodString>;
|
|
19550
|
-
}, z.core.$strip
|
|
19551
|
-
data: z.
|
|
19515
|
+
}, z.core.$strip>;
|
|
19516
|
+
data: z.ZodArray<z.ZodObject<{
|
|
19552
19517
|
id: z.ZodString;
|
|
19553
19518
|
value: z.ZodString;
|
|
19554
19519
|
verified: z.ZodBoolean;
|
|
@@ -19556,5 +19521,5 @@ export declare const zListWorkTypesResponse: z.ZodObject<{
|
|
|
19556
19521
|
specific_to_site_type: z.ZodNullable<z.ZodString>;
|
|
19557
19522
|
created_at: z.ZodISODateTime;
|
|
19558
19523
|
updated_at: z.ZodISODateTime;
|
|
19559
|
-
}, z.core.$strip
|
|
19524
|
+
}, z.core.$strip>>;
|
|
19560
19525
|
}, z.core.$strip>;
|