@dsptch-work/api-client 0.10.0 → 0.12.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.
@@ -153,6 +153,12 @@ export declare const zProblem: z.ZodObject<{
153
153
  *
154
154
  * The resource's timeline already ends at a scheduled termination, and scheduling a second one would silently move it. Moving an end is two steps on purpose: cancel the standing termination, then schedule the one you want.
155
155
  *
156
+ * ### product_archived
157
+ *
158
+ * **Product Archived**
159
+ *
160
+ * The item cannot be unarchived while its product is still archived — an item never lives active inside an archived product. Unarchive the product instead, which restores the item along with the rest of the product's holdings.
161
+ *
156
162
  * ### recorded_since_termination
157
163
  *
158
164
  * **Timecode Changed Since Termination**
@@ -237,9 +243,9 @@ export declare const zProblem: z.ZodObject<{
237
243
  *
238
244
  * ### invalid_signed_id
239
245
  *
240
- * **Invalid Attachment Signed Id**
246
+ * **Attachment Upload Not Found**
241
247
  *
242
- * An attachment signed id an avatar's, a logo's is not a string or fails signature verification. Obtain a fresh signed id from the direct-uploads endpoint and retry.
248
+ * An attachment signed id names no upload this endpoint can read. A signed id is issued for one `resource` and verifies only there, so an id for a different resource is indistinguishable from one that is malformed, expired, or tampered with, and all of them answer alike. The message names the resource the upload needed; upload the file again to the direct-uploads endpoint naming it, and pass the signed id that call returns.
243
249
  *
244
250
  * ### non_numeric_cents
245
251
  *
@@ -344,6 +350,7 @@ export declare const zProblemTypeCatalog: z.ZodEnum<{
344
350
  insufficient_api_key_scope: "insufficient_api_key_scope";
345
351
  not_found: "not_found";
346
352
  already_terminated: "already_terminated";
353
+ product_archived: "product_archived";
347
354
  recorded_since_termination: "recorded_since_termination";
348
355
  span_beyond_timeline_end: "span_beyond_timeline_end";
349
356
  version_overlap: "version_overlap";
@@ -385,6 +392,14 @@ export declare const zApiKeyScopeResponseObject: z.ZodObject<{
385
392
  * Register a file for direct upload — send its metadata to receive a blob plus a one-time URL for uploading the file's bytes to storage.
386
393
  */
387
394
  export declare const zDirectUploadParameters: z.ZodObject<{
395
+ resource: z.ZodEnum<{
396
+ "assets.items": "assets.items";
397
+ "assets.items.documents": "assets.items.documents";
398
+ "assets.items.service_events": "assets.items.service_events";
399
+ "assets.products": "assets.products";
400
+ "assets.vendors": "assets.vendors";
401
+ users: "users";
402
+ }>;
388
403
  blob: z.ZodObject<{
389
404
  filename: z.ZodString;
390
405
  byte_size: z.ZodInt;
@@ -850,6 +865,9 @@ export declare const zTimecodeCorrectionParameters: z.ZodObject<{
850
865
  export declare const zTimecodeGenesisParameters: z.ZodObject<{
851
866
  effective_date: z.ZodISODateTime;
852
867
  }, z.core.$strip>;
868
+ /**
869
+ * 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`.
870
+ */
853
871
  export declare const zTimecodeScheduledTerminationParameters: z.ZodObject<{
854
872
  effective_date: z.ZodISODateTime;
855
873
  }, z.core.$strip>;
@@ -902,7 +920,7 @@ export declare const zPerDiemResponseObject: z.ZodObject<{
902
920
  export declare const zPerDiemParameters: z.ZodObject<{
903
921
  name: z.ZodString;
904
922
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
905
- rate_cents: z.ZodNullable<z.ZodString>;
923
+ rate_cents: z.ZodString;
906
924
  currency: z.ZodString;
907
925
  taxable: z.ZodOptional<z.ZodBoolean>;
908
926
  default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -1039,7 +1057,6 @@ export declare const zTimeCardPerDiemParameters: z.ZodObject<{
1039
1057
  date: z.ZodISODate;
1040
1058
  approver_user_id: z.ZodString;
1041
1059
  per_diem_id: z.ZodString;
1042
- taxable: z.ZodOptional<z.ZodBoolean>;
1043
1060
  }, z.core.$strip>;
1044
1061
  /**
1045
1062
  * A holiday on a pay schedule's holiday calendar — a fixed (month + day) or floating (nth weekday of a month) date that gets holiday-pay treatment when a time entry's timecode opts into holiday handling.
@@ -1613,20 +1630,51 @@ export declare const zManagerTimeEntryApprovalParameters: z.ZodObject<{
1613
1630
  approver_user_id: z.ZodString;
1614
1631
  }, z.core.$strip>;
1615
1632
  /**
1616
- * Request body for creating or updating a time entry; on create, timekeeping_time_card_id, start_time, and end_time are required.
1633
+ * The time-entry body fields shared by the create and update bodies; each of those declares its own requiredness.
1617
1634
  */
1618
1635
  export declare const zTimeEntryParameters: z.ZodObject<{
1619
- timekeeping_time_card_id: z.ZodString;
1620
- start_time: z.ZodISODateTime;
1621
- end_time: z.ZodISODateTime;
1636
+ timekeeping_time_card_id: z.ZodOptional<z.ZodString>;
1637
+ start_time: z.ZodOptional<z.ZodISODateTime>;
1638
+ end_time: z.ZodOptional<z.ZodISODateTime>;
1622
1639
  job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1623
1640
  timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1624
1641
  state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1625
1642
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1626
1643
  hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1627
1644
  feature_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1628
- feature_allocation_acknowledged: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1629
1645
  }, z.core.$strip>;
1646
+ /**
1647
+ * 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.
1648
+ */
1649
+ export declare const zTimeEntryCreateParameters: z.ZodIntersection<z.ZodObject<{
1650
+ timekeeping_time_card_id: z.ZodOptional<z.ZodString>;
1651
+ start_time: z.ZodOptional<z.ZodISODateTime>;
1652
+ end_time: z.ZodOptional<z.ZodISODateTime>;
1653
+ job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1654
+ timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1655
+ state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1656
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1657
+ hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1658
+ feature_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1659
+ }, z.core.$strip>, z.ZodObject<{
1660
+ feature_allocation_acknowledged: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1661
+ }, z.core.$strip>>;
1662
+ /**
1663
+ * Request body for updating a time entry — the time_entry_parameters fields, every one optional, plus the acknowledgement that clears an apprenticeship allocation conflict.
1664
+ */
1665
+ export declare const zTimeEntryUpdateParameters: z.ZodIntersection<z.ZodObject<{
1666
+ timekeeping_time_card_id: z.ZodOptional<z.ZodString>;
1667
+ start_time: z.ZodOptional<z.ZodISODateTime>;
1668
+ end_time: z.ZodOptional<z.ZodISODateTime>;
1669
+ job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1670
+ timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1671
+ state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1672
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1673
+ hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1674
+ feature_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1675
+ }, z.core.$strip>, z.ZodObject<{
1676
+ confirm_allocation_conflict: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1677
+ }, z.core.$strip>>;
1630
1678
  /**
1631
1679
  * 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
1680
  */
@@ -1650,7 +1698,10 @@ export declare const zFormSubmissionResponseObject: z.ZodObject<{
1650
1698
  export declare const zUserCompanyScheduledChangesParameters: z.ZodObject<{
1651
1699
  effective_date: z.ZodString;
1652
1700
  hourly_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1653
- compensation_type: z.ZodOptional<z.ZodString>;
1701
+ compensation_type: z.ZodOptional<z.ZodEnum<{
1702
+ hourly: "hourly";
1703
+ salary: "salary";
1704
+ }>>;
1654
1705
  overtime_eligible: z.ZodOptional<z.ZodBoolean>;
1655
1706
  training_annual_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1656
1707
  employer_combined_health_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1942,6 +1993,10 @@ export declare const zJobParameters: z.ZodObject<{
1942
1993
  verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1943
1994
  label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1944
1995
  }, z.core.$strip>>>;
1996
+ custom_fields_attributes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1997
+ custom_field_config_id: z.ZodString;
1998
+ value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1999
+ }, z.core.$strip>>>>;
1945
2000
  pwa_details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1946
2001
  contractor_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1947
2002
  pay_full_cash_fringe_by_default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -2019,6 +2074,10 @@ export declare const zJobUpdateParameters: z.ZodIntersection<z.ZodObject<{
2019
2074
  verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2020
2075
  label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2021
2076
  }, z.core.$strip>>>;
2077
+ custom_fields_attributes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2078
+ custom_field_config_id: z.ZodString;
2079
+ value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2080
+ }, z.core.$strip>>>>;
2022
2081
  pwa_details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2023
2082
  contractor_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2024
2083
  pay_full_cash_fringe_by_default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -3256,7 +3315,7 @@ export declare const zCertificationParameters: z.ZodObject<{
3256
3315
  company_id: z.ZodString;
3257
3316
  name: z.ZodString;
3258
3317
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3259
- verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3318
+ verified: z.ZodOptional<z.ZodBoolean>;
3260
3319
  duration: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3261
3320
  }, z.core.$strip>;
3262
3321
  /**
@@ -3306,7 +3365,7 @@ export declare const zUserCertificationParameters: z.ZodObject<{
3306
3365
  name: z.ZodString;
3307
3366
  content: z.ZodString;
3308
3367
  }, z.core.$strip>>>;
3309
- verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3368
+ verified: z.ZodOptional<z.ZodBoolean>;
3310
3369
  expiration_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
3311
3370
  credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3312
3371
  approved_by_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3764,7 +3823,10 @@ export declare const zUserCompanyCreateParameters: z.ZodObject<{
3764
3823
  }>>>;
3765
3824
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3766
3825
  manager_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3767
- compensation_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3826
+ compensation_type: z.ZodOptional<z.ZodEnum<{
3827
+ hourly: "hourly";
3828
+ salary: "salary";
3829
+ }>>;
3768
3830
  enrolled_in_t_and_a: z.ZodOptional<z.ZodBoolean>;
3769
3831
  payroll_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3770
3832
  hourly_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4468,6 +4530,7 @@ export declare const zFederalJobWageDeterminationResponseObject: z.ZodObject<{
4468
4530
  id: z.ZodString;
4469
4531
  job_id: z.ZodString;
4470
4532
  pwa_trade_id: z.ZodString;
4533
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4471
4534
  type: z.ZodEnum<{
4472
4535
  "Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
4473
4536
  }>;
@@ -4491,6 +4554,7 @@ export declare const zFederalJobWageDeterminationHistoryCorrectionObject: z.ZodO
4491
4554
  job_wage_determination_id: z.ZodString;
4492
4555
  job_id: z.ZodString;
4493
4556
  pwa_trade_id: z.ZodString;
4557
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4494
4558
  type: z.ZodEnum<{
4495
4559
  "Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
4496
4560
  }>;
@@ -4563,6 +4627,7 @@ export declare const zRegionalJobWageDeterminationResponseObject: z.ZodObject<{
4563
4627
  id: z.ZodString;
4564
4628
  job_id: z.ZodString;
4565
4629
  pwa_trade_id: z.ZodString;
4630
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4566
4631
  type: z.ZodEnum<{
4567
4632
  "Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
4568
4633
  }>;
@@ -4583,6 +4648,7 @@ export declare const zJobWageDeterminationResponseObject: z.ZodDiscriminatedUnio
4583
4648
  id: z.ZodString;
4584
4649
  job_id: z.ZodString;
4585
4650
  pwa_trade_id: z.ZodString;
4651
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4586
4652
  labor_classification: z.ZodString;
4587
4653
  hourly_rate_cents: z.ZodString;
4588
4654
  fringe_rate_cents: z.ZodString;
@@ -4603,6 +4669,7 @@ export declare const zJobWageDeterminationResponseObject: z.ZodDiscriminatedUnio
4603
4669
  id: z.ZodString;
4604
4670
  job_id: z.ZodString;
4605
4671
  pwa_trade_id: z.ZodString;
4672
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4606
4673
  labor_classification: z.ZodString;
4607
4674
  hourly_rate_cents: z.ZodString;
4608
4675
  fringe_rate_cents: z.ZodString;
@@ -4618,6 +4685,7 @@ export declare const zRegionalJobWageDeterminationHistoryCorrectionObject: z.Zod
4618
4685
  job_wage_determination_id: z.ZodString;
4619
4686
  job_id: z.ZodString;
4620
4687
  pwa_trade_id: z.ZodString;
4688
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4621
4689
  type: z.ZodEnum<{
4622
4690
  "Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
4623
4691
  }>;
@@ -4635,6 +4703,7 @@ export declare const zJobWageDeterminationHistoryCorrectionObject: z.ZodDiscrimi
4635
4703
  job_wage_determination_id: z.ZodString;
4636
4704
  job_id: z.ZodString;
4637
4705
  pwa_trade_id: z.ZodString;
4706
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4638
4707
  labor_classification: z.ZodString;
4639
4708
  hourly_rate_cents: z.ZodString;
4640
4709
  fringe_rate_cents: z.ZodString;
@@ -4655,6 +4724,7 @@ export declare const zJobWageDeterminationHistoryCorrectionObject: z.ZodDiscrimi
4655
4724
  job_wage_determination_id: z.ZodString;
4656
4725
  job_id: z.ZodString;
4657
4726
  pwa_trade_id: z.ZodString;
4727
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4658
4728
  labor_classification: z.ZodString;
4659
4729
  hourly_rate_cents: z.ZodString;
4660
4730
  fringe_rate_cents: z.ZodString;
@@ -4670,6 +4740,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
4670
4740
  job_wage_determination_id: z.ZodString;
4671
4741
  job_id: z.ZodString;
4672
4742
  pwa_trade_id: z.ZodString;
4743
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4673
4744
  type: z.ZodEnum<{
4674
4745
  "Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
4675
4746
  }>;
@@ -4697,6 +4768,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
4697
4768
  job_wage_determination_id: z.ZodString;
4698
4769
  job_id: z.ZodString;
4699
4770
  pwa_trade_id: z.ZodString;
4771
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4700
4772
  labor_classification: z.ZodString;
4701
4773
  hourly_rate_cents: z.ZodString;
4702
4774
  fringe_rate_cents: z.ZodString;
@@ -4717,6 +4789,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
4717
4789
  job_wage_determination_id: z.ZodString;
4718
4790
  job_id: z.ZodString;
4719
4791
  pwa_trade_id: z.ZodString;
4792
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4720
4793
  labor_classification: z.ZodString;
4721
4794
  hourly_rate_cents: z.ZodString;
4722
4795
  fringe_rate_cents: z.ZodString;
@@ -4733,6 +4806,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
4733
4806
  job_wage_determination_id: z.ZodString;
4734
4807
  job_id: z.ZodString;
4735
4808
  pwa_trade_id: z.ZodString;
4809
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4736
4810
  type: z.ZodEnum<{
4737
4811
  "Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
4738
4812
  }>;
@@ -4754,6 +4828,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
4754
4828
  job_wage_determination_id: z.ZodString;
4755
4829
  job_id: z.ZodString;
4756
4830
  pwa_trade_id: z.ZodString;
4831
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4757
4832
  labor_classification: z.ZodString;
4758
4833
  hourly_rate_cents: z.ZodString;
4759
4834
  fringe_rate_cents: z.ZodString;
@@ -4774,6 +4849,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
4774
4849
  job_wage_determination_id: z.ZodString;
4775
4850
  job_id: z.ZodString;
4776
4851
  pwa_trade_id: z.ZodString;
4852
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4777
4853
  labor_classification: z.ZodString;
4778
4854
  hourly_rate_cents: z.ZodString;
4779
4855
  fringe_rate_cents: z.ZodString;
@@ -4790,6 +4866,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4790
4866
  job_wage_determination_id: z.ZodString;
4791
4867
  job_id: z.ZodString;
4792
4868
  pwa_trade_id: z.ZodString;
4869
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4793
4870
  labor_classification: z.ZodString;
4794
4871
  hourly_rate_cents: z.ZodString;
4795
4872
  fringe_rate_cents: z.ZodString;
@@ -4814,6 +4891,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4814
4891
  job_wage_determination_id: z.ZodString;
4815
4892
  job_id: z.ZodString;
4816
4893
  pwa_trade_id: z.ZodString;
4894
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4817
4895
  labor_classification: z.ZodString;
4818
4896
  hourly_rate_cents: z.ZodString;
4819
4897
  fringe_rate_cents: z.ZodString;
@@ -4834,6 +4912,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4834
4912
  job_wage_determination_id: z.ZodString;
4835
4913
  job_id: z.ZodString;
4836
4914
  pwa_trade_id: z.ZodString;
4915
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4837
4916
  labor_classification: z.ZodString;
4838
4917
  hourly_rate_cents: z.ZodString;
4839
4918
  fringe_rate_cents: z.ZodString;
@@ -4850,6 +4929,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4850
4929
  job_wage_determination_id: z.ZodString;
4851
4930
  job_id: z.ZodString;
4852
4931
  pwa_trade_id: z.ZodString;
4932
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4853
4933
  labor_classification: z.ZodString;
4854
4934
  hourly_rate_cents: z.ZodString;
4855
4935
  fringe_rate_cents: z.ZodString;
@@ -4868,6 +4948,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4868
4948
  job_wage_determination_id: z.ZodString;
4869
4949
  job_id: z.ZodString;
4870
4950
  pwa_trade_id: z.ZodString;
4951
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4871
4952
  labor_classification: z.ZodString;
4872
4953
  hourly_rate_cents: z.ZodString;
4873
4954
  fringe_rate_cents: z.ZodString;
@@ -4888,6 +4969,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4888
4969
  job_wage_determination_id: z.ZodString;
4889
4970
  job_id: z.ZodString;
4890
4971
  pwa_trade_id: z.ZodString;
4972
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4891
4973
  labor_classification: z.ZodString;
4892
4974
  hourly_rate_cents: z.ZodString;
4893
4975
  fringe_rate_cents: z.ZodString;
@@ -4946,7 +5028,7 @@ export declare const zRegionalJobWageDeterminationParameters: z.ZodObject<{
4946
5028
  }, z.core.$strip>>;
4947
5029
  }, z.core.$strip>;
4948
5030
  /**
4949
- * Parameters for creating a job wage determination. Provide the Federal or Regional shape; the type discriminator selects which. There is no update endpoint.
5031
+ * Parameters for creating a job wage determination. Provide the Federal or Regional shape; the type discriminator selects which. Editing an existing determination uses the update parameters, which take an `effective_from` instead of a type.
4950
5032
  */
4951
5033
  export declare const zJobWageDeterminationParameters: z.ZodDiscriminatedUnion<[z.ZodObject<{
4952
5034
  labor_classification: z.ZodString;
@@ -4981,6 +5063,76 @@ export declare const zJobWageDeterminationParameters: z.ZodDiscriminatedUnion<[z
4981
5063
  }, z.core.$strip>>;
4982
5064
  type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
4983
5065
  }, z.core.$strip>], "type">;
5066
+ /**
5067
+ * Parameters for editing a job wage determination from a point in valid time forward. The type is fixed by the determination the id names and is not sent.
5068
+ */
5069
+ export declare const zJobWageDeterminationUpdateParameters: z.ZodObject<{
5070
+ effective_from: z.ZodOptional<z.ZodISODate>;
5071
+ labor_classification: z.ZodOptional<z.ZodString>;
5072
+ pwa_trade_id: z.ZodOptional<z.ZodString>;
5073
+ hourly_rate_cents: z.ZodOptional<z.ZodString>;
5074
+ fringe_rate_cents: z.ZodOptional<z.ZodString>;
5075
+ class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5076
+ construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5077
+ building: "building";
5078
+ heavy: "heavy";
5079
+ highway: "highway";
5080
+ residential: "residential";
5081
+ }>>>;
5082
+ general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5083
+ regional_fields: z.ZodOptional<z.ZodObject<{
5084
+ combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5085
+ combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5086
+ combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5087
+ training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5088
+ other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5089
+ one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5090
+ two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5091
+ one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5092
+ two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5093
+ }, z.core.$strip>>;
5094
+ }, z.core.$strip>;
5095
+ /**
5096
+ * Parameters for an effective-dated change to a job wage determination, applying from a calendar date forward. The type is fixed by the determination the id names and is not sent.
5097
+ */
5098
+ export declare const zJobWageDeterminationScheduledChangeParameters: z.ZodObject<{
5099
+ effective_date: z.ZodISODate;
5100
+ labor_classification: z.ZodOptional<z.ZodString>;
5101
+ pwa_trade_id: z.ZodOptional<z.ZodString>;
5102
+ hourly_rate_cents: z.ZodOptional<z.ZodString>;
5103
+ fringe_rate_cents: z.ZodOptional<z.ZodString>;
5104
+ class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5105
+ construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5106
+ building: "building";
5107
+ heavy: "heavy";
5108
+ highway: "highway";
5109
+ residential: "residential";
5110
+ }>>>;
5111
+ general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5112
+ regional_fields: z.ZodOptional<z.ZodObject<{
5113
+ combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5114
+ combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5115
+ combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5116
+ training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5117
+ other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5118
+ one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5119
+ two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5120
+ one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5121
+ two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5122
+ }, z.core.$strip>>;
5123
+ }, z.core.$strip>;
5124
+ /**
5125
+ * Parameters for moving where a job wage determination's timeline begins.
5126
+ */
5127
+ export declare const zJobWageDeterminationGenesisParameters: z.ZodObject<{
5128
+ effective_date: z.ZodISODate;
5129
+ }, z.core.$strip>;
5130
+ /**
5131
+ * Parameters for scheduling when a job wage determination stops being valid.
5132
+ */
5133
+ export declare const zJobWageDeterminationScheduledTerminationParameters: z.ZodObject<{
5134
+ effective_date: z.ZodISODate;
5135
+ }, z.core.$strip>;
4984
5136
  /**
4985
5137
  * The adjustment applied when a rule matches — an addition to the wage or fringe rate.
4986
5138
  */
@@ -5462,6 +5614,7 @@ export declare const zAssetsProductResponseObject: z.ZodObject<{
5462
5614
  created_at: z.ZodISODateTime;
5463
5615
  updated_at: z.ZodISODateTime;
5464
5616
  }, z.core.$strip>>;
5617
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
5465
5618
  created_at: z.ZodISODateTime;
5466
5619
  updated_at: z.ZodISODateTime;
5467
5620
  }, z.core.$strip>;
@@ -5482,7 +5635,6 @@ export declare const zAssetsItemResponseObject: z.ZodObject<{
5482
5635
  status: z.ZodNullable<z.ZodEnum<{
5483
5636
  available: "available";
5484
5637
  assigned: "assigned";
5485
- retired: "retired";
5486
5638
  }>>;
5487
5639
  purchase_date: z.ZodNullable<z.ZodISODateTime>;
5488
5640
  purchase_price_cents: z.ZodNullable<z.ZodString>;
@@ -5509,6 +5661,7 @@ export declare const zAssetsItemResponseObject: z.ZodObject<{
5509
5661
  created_at: z.ZodISODateTime;
5510
5662
  updated_at: z.ZodISODateTime;
5511
5663
  }, z.core.$strip>>;
5664
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
5512
5665
  created_at: z.ZodISODateTime;
5513
5666
  updated_at: z.ZodISODateTime;
5514
5667
  }, z.core.$strip>;
@@ -5594,7 +5747,6 @@ export declare const zAssetsItemParameters: z.ZodObject<{
5594
5747
  status: z.ZodOptional<z.ZodEnum<{
5595
5748
  available: "available";
5596
5749
  assigned: "assigned";
5597
- retired: "retired";
5598
5750
  }>>;
5599
5751
  purchase_date: z.ZodOptional<z.ZodISODateTime>;
5600
5752
  purchase_price_cents: z.ZodOptional<z.ZodInt>;
@@ -5608,6 +5760,7 @@ export declare const zAssetsItemParameters: z.ZodObject<{
5608
5760
  assets_site_id: z.ZodOptional<z.ZodString>;
5609
5761
  user_id: z.ZodOptional<z.ZodString>;
5610
5762
  container_item_id: z.ZodOptional<z.ZodString>;
5763
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
5611
5764
  performed_by_user_id: z.ZodString;
5612
5765
  }, z.core.$strip>;
5613
5766
  /**
@@ -5746,12 +5899,13 @@ export declare const zAssetsItemFormAssignmentParameters: z.ZodObject<{
5746
5899
  }, z.core.$strip>;
5747
5900
  }, z.core.$strip>;
5748
5901
  /**
5749
- * On-hand stock of an item at a site — one row per item and site. Read-only. A site with none of the item has no row at all, since a row is removed once its count reaches zero.
5902
+ * On-hand stock of an item at a site — one row per item, site, and storage location. Read-only. A site with none of the item has no row at all, since a row is removed once its count reaches zero.
5750
5903
  */
5751
5904
  export declare const zAssetsInventoryResponseObject: z.ZodObject<{
5752
5905
  id: z.ZodString;
5753
5906
  assets_item_id: z.ZodString;
5754
5907
  assets_site_id: z.ZodString;
5908
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
5755
5909
  company_id: z.ZodString;
5756
5910
  quantity_on_hand: z.ZodInt;
5757
5911
  created_at: z.ZodISODateTime;
@@ -5785,6 +5939,7 @@ export declare const zAssetsTransactionEventResponseObject: z.ZodObject<{
5785
5939
  assets_site_id: z.ZodNullable<z.ZodString>;
5786
5940
  assignee_id: z.ZodNullable<z.ZodString>;
5787
5941
  container_item_id: z.ZodNullable<z.ZodString>;
5942
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
5788
5943
  assets_transfer_id: z.ZodNullable<z.ZodString>;
5789
5944
  performed_by_user_id: z.ZodString;
5790
5945
  direction: z.ZodEnum<{
@@ -5839,6 +5994,7 @@ export declare const zAssetsItemEventResponseObject: z.ZodDiscriminatedUnion<[z.
5839
5994
  assets_site_id: z.ZodNullable<z.ZodString>;
5840
5995
  assignee_id: z.ZodNullable<z.ZodString>;
5841
5996
  container_item_id: z.ZodNullable<z.ZodString>;
5997
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
5842
5998
  assets_transfer_id: z.ZodNullable<z.ZodString>;
5843
5999
  performed_by_user_id: z.ZodString;
5844
6000
  direction: z.ZodEnum<{
@@ -6008,6 +6164,65 @@ export declare const zAssetsServiceScheduleTemplateParameters: z.ZodObject<{
6008
6164
  interval_count: z.ZodInt;
6009
6165
  performed_by_user_id: z.ZodString;
6010
6166
  }, z.core.$strip>;
6167
+ /**
6168
+ * A node of fixed storage structure inside a site or a container item — a zone, aisle, rack, shelf, bin, or drawer. Nodes form a tree per holder, and each carries a scannable path_code composed from its ancestors' codes.
6169
+ */
6170
+ export declare const zAssetsSubLocationResponseObject: z.ZodObject<{
6171
+ id: z.ZodString;
6172
+ company_id: z.ZodString;
6173
+ assets_site_id: z.ZodNullable<z.ZodString>;
6174
+ container_item_id: z.ZodNullable<z.ZodString>;
6175
+ parent_id: z.ZodNullable<z.ZodString>;
6176
+ kind: z.ZodNullable<z.ZodEnum<{
6177
+ zone: "zone";
6178
+ aisle: "aisle";
6179
+ rack: "rack";
6180
+ shelf: "shelf";
6181
+ bin: "bin";
6182
+ drawer: "drawer";
6183
+ }>>;
6184
+ name: z.ZodString;
6185
+ code: z.ZodString;
6186
+ path_code: z.ZodString;
6187
+ created_at: z.ZodISODateTime;
6188
+ updated_at: z.ZodISODateTime;
6189
+ }, z.core.$strip>;
6190
+ /**
6191
+ * Create a storage location. name and code are required. A top-level node names its holder (assets_site_id or container_item_id, exactly one); a nested node names parent_id and inherits the parent's holder. The holder cannot change after creation.
6192
+ */
6193
+ export declare const zAssetsSubLocationParameters: z.ZodObject<{
6194
+ assets_site_id: z.ZodOptional<z.ZodString>;
6195
+ container_item_id: z.ZodOptional<z.ZodString>;
6196
+ parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6197
+ kind: z.ZodOptional<z.ZodEnum<{
6198
+ zone: "zone";
6199
+ aisle: "aisle";
6200
+ rack: "rack";
6201
+ shelf: "shelf";
6202
+ bin: "bin";
6203
+ drawer: "drawer";
6204
+ }>>;
6205
+ name: z.ZodString;
6206
+ code: z.ZodString;
6207
+ }, z.core.$strip>;
6208
+ /**
6209
+ * Update a storage location. All fields are optional — send only what changes. The holder fields cannot change after creation; renaming code cascades new path codes through the node's subtree.
6210
+ */
6211
+ export declare const zAssetsSubLocationUpdateParameters: z.ZodObject<{
6212
+ assets_site_id: z.ZodOptional<z.ZodString>;
6213
+ container_item_id: z.ZodOptional<z.ZodString>;
6214
+ parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6215
+ kind: z.ZodOptional<z.ZodEnum<{
6216
+ zone: "zone";
6217
+ aisle: "aisle";
6218
+ rack: "rack";
6219
+ shelf: "shelf";
6220
+ bin: "bin";
6221
+ drawer: "drawer";
6222
+ }>>;
6223
+ name: z.ZodOptional<z.ZodString>;
6224
+ code: z.ZodOptional<z.ZodString>;
6225
+ }, z.core.$strip>;
6011
6226
  /**
6012
6227
  * A completed movement of item stock between two holders, each a site, a user, or a container. Each line moves one item; applying the transfer records paired outbound and inbound transactions and updates the on-hand, custody, and containment counts. Transfers created through this API are always completed. One-sided moves (placing or removing an item with only one endpoint) record transactions but no transfer, and so are not represented by this resource.
6013
6228
  */
@@ -6026,6 +6241,8 @@ export declare const zAssetsTransferResponseObject: z.ZodObject<{
6026
6241
  to_assets_site_id: z.ZodNullable<z.ZodString>;
6027
6242
  to_user_id: z.ZodNullable<z.ZodString>;
6028
6243
  to_container_item_id: z.ZodNullable<z.ZodString>;
6244
+ from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
6245
+ to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
6029
6246
  initiated_by_user_id: z.ZodString;
6030
6247
  completed_at: z.ZodNullable<z.ZodISODateTime>;
6031
6248
  transfer_lines: z.ZodArray<z.ZodObject<{
@@ -6046,6 +6263,8 @@ export declare const zAssetsTransferParameters: z.ZodObject<{
6046
6263
  to_assets_site_id: z.ZodOptional<z.ZodString>;
6047
6264
  to_user_id: z.ZodOptional<z.ZodString>;
6048
6265
  to_container_item_id: z.ZodOptional<z.ZodString>;
6266
+ from_assets_sub_location_id: z.ZodOptional<z.ZodString>;
6267
+ to_assets_sub_location_id: z.ZodOptional<z.ZodString>;
6049
6268
  performed_by_user_id: z.ZodString;
6050
6269
  line_items: z.ZodArray<z.ZodObject<{
6051
6270
  assets_item_id: z.ZodString;
@@ -6057,6 +6276,7 @@ export declare const zAssetsTransferParameters: z.ZodObject<{
6057
6276
  */
6058
6277
  export declare const zAssetsRestockParameters: z.ZodObject<{
6059
6278
  assets_site_id: z.ZodString;
6279
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
6060
6280
  quantity: z.ZodInt;
6061
6281
  performed_by_user_id: z.ZodString;
6062
6282
  }, z.core.$strip>;
@@ -6065,20 +6285,21 @@ export declare const zAssetsRestockParameters: z.ZodObject<{
6065
6285
  */
6066
6286
  export declare const zAssetsAdjustmentParameters: z.ZodObject<{
6067
6287
  assets_site_id: z.ZodString;
6288
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
6068
6289
  new_quantity: z.ZodInt;
6069
6290
  performed_by_user_id: z.ZodString;
6070
6291
  }, z.core.$strip>;
6071
6292
  /**
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.
6293
+ * Archive or unarchive a product or item. Archiving takes it out of circulation without deleting it — history is preserved and it is hidden from listings unless requested with filter[state]. Archiving a product cascades to its items; item operations apply to serial items only.
6073
6294
  */
6074
- export declare const zAssetsRetirementParameters: z.ZodObject<{
6295
+ export declare const zAssetsArchiveParameters: z.ZodObject<{
6075
6296
  performed_by_user_id: z.ZodString;
6076
6297
  }, z.core.$strip>;
6077
6298
  /**
6078
6299
  * Success
6079
6300
  */
6080
6301
  export declare const zListApiKeyScopesResponse: z.ZodObject<{
6081
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
6302
+ data: z.ZodArray<z.ZodObject<{
6082
6303
  resource: z.ZodString;
6083
6304
  action: z.ZodEnum<{
6084
6305
  delete: "delete";
@@ -6087,7 +6308,7 @@ export declare const zListApiKeyScopesResponse: z.ZodObject<{
6087
6308
  update: "update";
6088
6309
  }>;
6089
6310
  name: z.ZodString;
6090
- }, z.core.$strip>>>;
6311
+ }, z.core.$strip>>;
6091
6312
  }, z.core.$strip>;
6092
6313
  export declare const zListApprenticesPath: z.ZodObject<{
6093
6314
  program_id: z.ZodString;
@@ -6109,18 +6330,18 @@ export declare const zListApprenticesQuery: z.ZodObject<{
6109
6330
  * Success
6110
6331
  */
6111
6332
  export declare const zListApprenticesResponse: z.ZodObject<{
6112
- meta: z.ZodOptional<z.ZodObject<{
6333
+ meta: z.ZodObject<{
6113
6334
  page: z.ZodObject<{
6114
6335
  next_cursor: z.ZodNullable<z.ZodString>;
6115
6336
  current_cursor: z.ZodNullable<z.ZodString>;
6116
6337
  }, z.core.$strip>;
6117
- }, z.core.$strip>>;
6118
- links: z.ZodOptional<z.ZodObject<{
6338
+ }, z.core.$strip>;
6339
+ links: z.ZodObject<{
6119
6340
  self: z.ZodString;
6120
6341
  first: z.ZodNullable<z.ZodString>;
6121
6342
  next: z.ZodNullable<z.ZodString>;
6122
- }, z.core.$strip>>;
6123
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
6343
+ }, z.core.$strip>;
6344
+ data: z.ZodArray<z.ZodObject<{
6124
6345
  id: z.ZodString;
6125
6346
  user_id: z.ZodString;
6126
6347
  status: z.ZodEnum<{
@@ -6150,7 +6371,7 @@ export declare const zListApprenticesResponse: z.ZodObject<{
6150
6371
  status_verified_at: z.ZodNullable<z.ZodISODateTime>;
6151
6372
  created_at: z.ZodISODateTime;
6152
6373
  updated_at: z.ZodISODateTime;
6153
- }, z.core.$strip>>>;
6374
+ }, z.core.$strip>>;
6154
6375
  }, z.core.$strip>;
6155
6376
  export declare const zCreateApprenticeBody: z.ZodObject<{
6156
6377
  apprenticeship_wage_schedule_id: z.ZodString;
@@ -6226,18 +6447,18 @@ export declare const zListOccupationsQuery: z.ZodObject<{
6226
6447
  * Success
6227
6448
  */
6228
6449
  export declare const zListOccupationsResponse: z.ZodObject<{
6229
- meta: z.ZodOptional<z.ZodObject<{
6450
+ meta: z.ZodObject<{
6230
6451
  page: z.ZodObject<{
6231
6452
  next_cursor: z.ZodNullable<z.ZodString>;
6232
6453
  current_cursor: z.ZodNullable<z.ZodString>;
6233
6454
  }, z.core.$strip>;
6234
- }, z.core.$strip>>;
6235
- links: z.ZodOptional<z.ZodObject<{
6455
+ }, z.core.$strip>;
6456
+ links: z.ZodObject<{
6236
6457
  self: z.ZodString;
6237
6458
  first: z.ZodNullable<z.ZodString>;
6238
6459
  next: z.ZodNullable<z.ZodString>;
6239
- }, z.core.$strip>>;
6240
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
6460
+ }, z.core.$strip>;
6461
+ data: z.ZodArray<z.ZodObject<{
6241
6462
  id: z.ZodString;
6242
6463
  apprenticeship_program_id: z.ZodString;
6243
6464
  rapids_code: z.ZodString;
@@ -6255,7 +6476,7 @@ export declare const zListOccupationsResponse: z.ZodObject<{
6255
6476
  num_journeyworkers: z.ZodInt;
6256
6477
  created_at: z.ZodISODateTime;
6257
6478
  updated_at: z.ZodISODateTime;
6258
- }, z.core.$strip>>>;
6479
+ }, z.core.$strip>>;
6259
6480
  }, z.core.$strip>;
6260
6481
  export declare const zCreateOccupationBody: z.ZodObject<{
6261
6482
  rapids_code: z.ZodString;
@@ -6356,25 +6577,25 @@ export declare const zListEmployersQuery: z.ZodObject<{
6356
6577
  * Success
6357
6578
  */
6358
6579
  export declare const zListEmployersResponse: z.ZodObject<{
6359
- meta: z.ZodOptional<z.ZodObject<{
6580
+ meta: z.ZodObject<{
6360
6581
  page: z.ZodObject<{
6361
6582
  next_cursor: z.ZodNullable<z.ZodString>;
6362
6583
  current_cursor: z.ZodNullable<z.ZodString>;
6363
6584
  }, z.core.$strip>;
6364
- }, z.core.$strip>>;
6365
- links: z.ZodOptional<z.ZodObject<{
6585
+ }, z.core.$strip>;
6586
+ links: z.ZodObject<{
6366
6587
  self: z.ZodString;
6367
6588
  first: z.ZodNullable<z.ZodString>;
6368
6589
  next: z.ZodNullable<z.ZodString>;
6369
- }, z.core.$strip>>;
6370
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
6590
+ }, z.core.$strip>;
6591
+ data: z.ZodArray<z.ZodObject<{
6371
6592
  id: z.ZodString;
6372
6593
  apprenticeship_program_id: z.ZodString;
6373
6594
  company_id: z.ZodString;
6374
6595
  require_timecard_allocation: z.ZodBoolean;
6375
6596
  created_at: z.ZodISODateTime;
6376
6597
  updated_at: z.ZodISODateTime;
6377
- }, z.core.$strip>>>;
6598
+ }, z.core.$strip>>;
6378
6599
  }, z.core.$strip>;
6379
6600
  export declare const zCreateEmployerBody: z.ZodObject<{
6380
6601
  company_id: z.ZodString;
@@ -6443,18 +6664,18 @@ export declare const zListProgramsQuery: z.ZodObject<{
6443
6664
  * Success
6444
6665
  */
6445
6666
  export declare const zListProgramsResponse: z.ZodObject<{
6446
- meta: z.ZodOptional<z.ZodObject<{
6667
+ meta: z.ZodObject<{
6447
6668
  page: z.ZodObject<{
6448
6669
  next_cursor: z.ZodNullable<z.ZodString>;
6449
6670
  current_cursor: z.ZodNullable<z.ZodString>;
6450
6671
  }, z.core.$strip>;
6451
- }, z.core.$strip>>;
6452
- links: z.ZodOptional<z.ZodObject<{
6672
+ }, z.core.$strip>;
6673
+ links: z.ZodObject<{
6453
6674
  self: z.ZodString;
6454
6675
  first: z.ZodNullable<z.ZodString>;
6455
6676
  next: z.ZodNullable<z.ZodString>;
6456
- }, z.core.$strip>>;
6457
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
6677
+ }, z.core.$strip>;
6678
+ data: z.ZodArray<z.ZodObject<{
6458
6679
  id: z.ZodString;
6459
6680
  sponsor_company_id: z.ZodString;
6460
6681
  program_number: z.ZodString;
@@ -6467,7 +6688,7 @@ export declare const zListProgramsResponse: z.ZodObject<{
6467
6688
  }>>;
6468
6689
  created_at: z.ZodISODateTime;
6469
6690
  updated_at: z.ZodISODateTime;
6470
- }, z.core.$strip>>>;
6691
+ }, z.core.$strip>>;
6471
6692
  }, z.core.$strip>;
6472
6693
  export declare const zCreateProgramBody: z.ZodObject<{
6473
6694
  program_number: z.ZodString;
@@ -6544,18 +6765,18 @@ export declare const zListPeriodsQuery: z.ZodObject<{
6544
6765
  * Success
6545
6766
  */
6546
6767
  export declare const zListPeriodsResponse: z.ZodObject<{
6547
- meta: z.ZodOptional<z.ZodObject<{
6768
+ meta: z.ZodObject<{
6548
6769
  page: z.ZodObject<{
6549
6770
  next_cursor: z.ZodNullable<z.ZodString>;
6550
6771
  current_cursor: z.ZodNullable<z.ZodString>;
6551
6772
  }, z.core.$strip>;
6552
- }, z.core.$strip>>;
6553
- links: z.ZodOptional<z.ZodObject<{
6773
+ }, z.core.$strip>;
6774
+ links: z.ZodObject<{
6554
6775
  self: z.ZodString;
6555
6776
  first: z.ZodNullable<z.ZodString>;
6556
6777
  next: z.ZodNullable<z.ZodString>;
6557
- }, z.core.$strip>>;
6558
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
6778
+ }, z.core.$strip>;
6779
+ data: z.ZodArray<z.ZodObject<{
6559
6780
  id: z.ZodString;
6560
6781
  apprenticeship_wage_schedule_id: z.ZodString;
6561
6782
  period_number: z.ZodInt;
@@ -6568,7 +6789,7 @@ export declare const zListPeriodsResponse: z.ZodObject<{
6568
6789
  wage_currency: z.ZodString;
6569
6790
  created_at: z.ZodISODateTime;
6570
6791
  updated_at: z.ZodISODateTime;
6571
- }, z.core.$strip>>>;
6792
+ }, z.core.$strip>>;
6572
6793
  }, z.core.$strip>;
6573
6794
  export declare const zCreatePeriodBody: z.ZodObject<{
6574
6795
  period_number: z.ZodInt;
@@ -6647,18 +6868,18 @@ export declare const zListWageSchedulesQuery: z.ZodObject<{
6647
6868
  * Success
6648
6869
  */
6649
6870
  export declare const zListWageSchedulesResponse: z.ZodObject<{
6650
- meta: z.ZodOptional<z.ZodObject<{
6871
+ meta: z.ZodObject<{
6651
6872
  page: z.ZodObject<{
6652
6873
  next_cursor: z.ZodNullable<z.ZodString>;
6653
6874
  current_cursor: z.ZodNullable<z.ZodString>;
6654
6875
  }, z.core.$strip>;
6655
- }, z.core.$strip>>;
6656
- links: z.ZodOptional<z.ZodObject<{
6876
+ }, z.core.$strip>;
6877
+ links: z.ZodObject<{
6657
6878
  self: z.ZodString;
6658
6879
  first: z.ZodNullable<z.ZodString>;
6659
6880
  next: z.ZodNullable<z.ZodString>;
6660
- }, z.core.$strip>>;
6661
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
6881
+ }, z.core.$strip>;
6882
+ data: z.ZodArray<z.ZodObject<{
6662
6883
  id: z.ZodString;
6663
6884
  apprenticeship_occupation_id: z.ZodString;
6664
6885
  name: z.ZodString;
@@ -6693,7 +6914,7 @@ export declare const zListWageSchedulesResponse: z.ZodObject<{
6693
6914
  journeyworker_wage_currency: z.ZodString;
6694
6915
  created_at: z.ZodISODateTime;
6695
6916
  updated_at: z.ZodISODateTime;
6696
- }, z.core.$strip>>>;
6917
+ }, z.core.$strip>>;
6697
6918
  }, z.core.$strip>;
6698
6919
  export declare const zCreateWageScheduleBody: z.ZodObject<{
6699
6920
  name: z.ZodString;
@@ -6878,18 +7099,18 @@ export declare const zListAttributesQuery: z.ZodObject<{
6878
7099
  * Success
6879
7100
  */
6880
7101
  export declare const zListAttributesResponse: z.ZodObject<{
6881
- meta: z.ZodOptional<z.ZodObject<{
7102
+ meta: z.ZodObject<{
6882
7103
  page: z.ZodObject<{
6883
7104
  next_cursor: z.ZodNullable<z.ZodString>;
6884
7105
  current_cursor: z.ZodNullable<z.ZodString>;
6885
7106
  }, z.core.$strip>;
6886
- }, z.core.$strip>>;
6887
- links: z.ZodOptional<z.ZodObject<{
7107
+ }, z.core.$strip>;
7108
+ links: z.ZodObject<{
6888
7109
  self: z.ZodString;
6889
7110
  first: z.ZodNullable<z.ZodString>;
6890
7111
  next: z.ZodNullable<z.ZodString>;
6891
- }, z.core.$strip>>;
6892
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
7112
+ }, z.core.$strip>;
7113
+ data: z.ZodArray<z.ZodObject<{
6893
7114
  id: z.ZodString;
6894
7115
  company_id: z.ZodString;
6895
7116
  name: z.ZodString;
@@ -6907,7 +7128,7 @@ export declare const zListAttributesResponse: z.ZodObject<{
6907
7128
  }, z.core.$strip>>;
6908
7129
  created_at: z.ZodISODateTime;
6909
7130
  updated_at: z.ZodISODateTime;
6910
- }, z.core.$strip>>>;
7131
+ }, z.core.$strip>>;
6911
7132
  }, z.core.$strip>;
6912
7133
  export declare const zCreateAttributeBody: z.ZodObject<{
6913
7134
  name: z.ZodString;
@@ -7053,18 +7274,18 @@ export declare const zListCategoriesQuery: z.ZodObject<{
7053
7274
  * Success
7054
7275
  */
7055
7276
  export declare const zListCategoriesResponse: z.ZodObject<{
7056
- meta: z.ZodOptional<z.ZodObject<{
7277
+ meta: z.ZodObject<{
7057
7278
  page: z.ZodObject<{
7058
7279
  next_cursor: z.ZodNullable<z.ZodString>;
7059
7280
  current_cursor: z.ZodNullable<z.ZodString>;
7060
7281
  }, z.core.$strip>;
7061
- }, z.core.$strip>>;
7062
- links: z.ZodOptional<z.ZodObject<{
7282
+ }, z.core.$strip>;
7283
+ links: z.ZodObject<{
7063
7284
  self: z.ZodString;
7064
7285
  first: z.ZodNullable<z.ZodString>;
7065
7286
  next: z.ZodNullable<z.ZodString>;
7066
- }, z.core.$strip>>;
7067
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
7287
+ }, z.core.$strip>;
7288
+ data: z.ZodArray<z.ZodObject<{
7068
7289
  id: z.ZodString;
7069
7290
  company_id: z.ZodString;
7070
7291
  name: z.ZodString;
@@ -7082,7 +7303,7 @@ export declare const zListCategoriesResponse: z.ZodObject<{
7082
7303
  }, z.core.$strip>>;
7083
7304
  created_at: z.ZodISODateTime;
7084
7305
  updated_at: z.ZodISODateTime;
7085
- }, z.core.$strip>>>;
7306
+ }, z.core.$strip>>;
7086
7307
  }, z.core.$strip>;
7087
7308
  export declare const zCreateCategoryBody: z.ZodObject<{
7088
7309
  name: z.ZodString;
@@ -7221,18 +7442,18 @@ export declare const zListCustodiesQuery: z.ZodObject<{
7221
7442
  * Success
7222
7443
  */
7223
7444
  export declare const zListCustodiesResponse: z.ZodObject<{
7224
- meta: z.ZodOptional<z.ZodObject<{
7445
+ meta: z.ZodObject<{
7225
7446
  page: z.ZodObject<{
7226
7447
  next_cursor: z.ZodNullable<z.ZodString>;
7227
7448
  current_cursor: z.ZodNullable<z.ZodString>;
7228
7449
  }, z.core.$strip>;
7229
- }, z.core.$strip>>;
7230
- links: z.ZodOptional<z.ZodObject<{
7450
+ }, z.core.$strip>;
7451
+ links: z.ZodObject<{
7231
7452
  self: z.ZodString;
7232
7453
  first: z.ZodNullable<z.ZodString>;
7233
7454
  next: z.ZodNullable<z.ZodString>;
7234
- }, z.core.$strip>>;
7235
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
7455
+ }, z.core.$strip>;
7456
+ data: z.ZodArray<z.ZodObject<{
7236
7457
  id: z.ZodString;
7237
7458
  assets_item_id: z.ZodString;
7238
7459
  user_id: z.ZodString;
@@ -7240,7 +7461,7 @@ export declare const zListCustodiesResponse: z.ZodObject<{
7240
7461
  quantity: z.ZodInt;
7241
7462
  created_at: z.ZodISODateTime;
7242
7463
  updated_at: z.ZodISODateTime;
7243
- }, z.core.$strip>>>;
7464
+ }, z.core.$strip>>;
7244
7465
  }, z.core.$strip>;
7245
7466
  export declare const zGetCustodyPath: z.ZodObject<{
7246
7467
  id: z.ZodString;
@@ -7267,18 +7488,18 @@ export declare const zListEventsQuery: z.ZodObject<{
7267
7488
  * Success
7268
7489
  */
7269
7490
  export declare const zListEventsResponse: z.ZodObject<{
7270
- meta: z.ZodOptional<z.ZodObject<{
7491
+ meta: z.ZodObject<{
7271
7492
  page: z.ZodObject<{
7272
7493
  next_cursor: z.ZodNullable<z.ZodString>;
7273
7494
  current_cursor: z.ZodNullable<z.ZodString>;
7274
7495
  }, z.core.$strip>;
7275
- }, z.core.$strip>>;
7276
- links: z.ZodOptional<z.ZodObject<{
7496
+ }, z.core.$strip>;
7497
+ links: z.ZodObject<{
7277
7498
  self: z.ZodString;
7278
7499
  first: z.ZodNullable<z.ZodString>;
7279
7500
  next: z.ZodNullable<z.ZodString>;
7280
- }, z.core.$strip>>;
7281
- data: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
7501
+ }, z.core.$strip>;
7502
+ data: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
7282
7503
  id: z.ZodString;
7283
7504
  assets_item_id: z.ZodString;
7284
7505
  company_id: z.ZodString;
@@ -7288,6 +7509,7 @@ export declare const zListEventsResponse: z.ZodObject<{
7288
7509
  assets_site_id: z.ZodNullable<z.ZodString>;
7289
7510
  assignee_id: z.ZodNullable<z.ZodString>;
7290
7511
  container_item_id: z.ZodNullable<z.ZodString>;
7512
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
7291
7513
  assets_transfer_id: z.ZodNullable<z.ZodString>;
7292
7514
  performed_by_user_id: z.ZodString;
7293
7515
  direction: z.ZodEnum<{
@@ -7323,7 +7545,7 @@ export declare const zListEventsResponse: z.ZodObject<{
7323
7545
  created_at: z.ZodISODateTime;
7324
7546
  updated_at: z.ZodISODateTime;
7325
7547
  event_type: z.ZodLiteral<"Assets::ServiceEvent">;
7326
- }, z.core.$strip>], "event_type">>>;
7548
+ }, z.core.$strip>], "event_type">>;
7327
7549
  }, z.core.$strip>;
7328
7550
  export declare const zGetEventPath: z.ZodObject<{
7329
7551
  id: z.ZodString;
@@ -7341,6 +7563,7 @@ export declare const zGetEventResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
7341
7563
  assets_site_id: z.ZodNullable<z.ZodString>;
7342
7564
  assignee_id: z.ZodNullable<z.ZodString>;
7343
7565
  container_item_id: z.ZodNullable<z.ZodString>;
7566
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
7344
7567
  assets_transfer_id: z.ZodNullable<z.ZodString>;
7345
7568
  performed_by_user_id: z.ZodString;
7346
7569
  direction: z.ZodEnum<{
@@ -7389,18 +7612,18 @@ export declare const zListFormAssignmentTriggersQuery: z.ZodObject<{
7389
7612
  * Success
7390
7613
  */
7391
7614
  export declare const zListFormAssignmentTriggersResponse: z.ZodObject<{
7392
- meta: z.ZodOptional<z.ZodObject<{
7615
+ meta: z.ZodObject<{
7393
7616
  page: z.ZodObject<{
7394
7617
  next_cursor: z.ZodNullable<z.ZodString>;
7395
7618
  current_cursor: z.ZodNullable<z.ZodString>;
7396
7619
  }, z.core.$strip>;
7397
- }, z.core.$strip>>;
7398
- links: z.ZodOptional<z.ZodObject<{
7620
+ }, z.core.$strip>;
7621
+ links: z.ZodObject<{
7399
7622
  self: z.ZodString;
7400
7623
  first: z.ZodNullable<z.ZodString>;
7401
7624
  next: z.ZodNullable<z.ZodString>;
7402
- }, z.core.$strip>>;
7403
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
7625
+ }, z.core.$strip>;
7626
+ data: z.ZodArray<z.ZodObject<{
7404
7627
  id: z.ZodString;
7405
7628
  company_id: z.ZodString;
7406
7629
  form_definition_id: z.ZodString;
@@ -7436,7 +7659,7 @@ export declare const zListFormAssignmentTriggersResponse: z.ZodObject<{
7436
7659
  assets_product_ids: z.ZodArray<z.ZodString>;
7437
7660
  created_at: z.ZodISODateTime;
7438
7661
  updated_at: z.ZodISODateTime;
7439
- }, z.core.$strip>>>;
7662
+ }, z.core.$strip>>;
7440
7663
  }, z.core.$strip>;
7441
7664
  export declare const zCreateFormAssignmentTriggerBody: z.ZodObject<{
7442
7665
  form_definition_id: z.ZodString;
@@ -7683,26 +7906,27 @@ export declare const zListInventoriesQuery: z.ZodObject<{
7683
7906
  * Success
7684
7907
  */
7685
7908
  export declare const zListInventoriesResponse: z.ZodObject<{
7686
- meta: z.ZodOptional<z.ZodObject<{
7909
+ meta: z.ZodObject<{
7687
7910
  page: z.ZodObject<{
7688
7911
  next_cursor: z.ZodNullable<z.ZodString>;
7689
7912
  current_cursor: z.ZodNullable<z.ZodString>;
7690
7913
  }, z.core.$strip>;
7691
- }, z.core.$strip>>;
7692
- links: z.ZodOptional<z.ZodObject<{
7914
+ }, z.core.$strip>;
7915
+ links: z.ZodObject<{
7693
7916
  self: z.ZodString;
7694
7917
  first: z.ZodNullable<z.ZodString>;
7695
7918
  next: z.ZodNullable<z.ZodString>;
7696
- }, z.core.$strip>>;
7697
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
7919
+ }, z.core.$strip>;
7920
+ data: z.ZodArray<z.ZodObject<{
7698
7921
  id: z.ZodString;
7699
7922
  assets_item_id: z.ZodString;
7700
7923
  assets_site_id: z.ZodString;
7924
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
7701
7925
  company_id: z.ZodString;
7702
7926
  quantity_on_hand: z.ZodInt;
7703
7927
  created_at: z.ZodISODateTime;
7704
7928
  updated_at: z.ZodISODateTime;
7705
- }, z.core.$strip>>>;
7929
+ }, z.core.$strip>>;
7706
7930
  }, z.core.$strip>;
7707
7931
  export declare const zGetInventoryPath: z.ZodObject<{
7708
7932
  id: z.ZodString;
@@ -7714,6 +7938,7 @@ export declare const zGetInventoryResponse: z.ZodObject<{
7714
7938
  id: z.ZodString;
7715
7939
  assets_item_id: z.ZodString;
7716
7940
  assets_site_id: z.ZodString;
7941
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
7717
7942
  company_id: z.ZodString;
7718
7943
  quantity_on_hand: z.ZodInt;
7719
7944
  created_at: z.ZodISODateTime;
@@ -7728,6 +7953,7 @@ export declare const zListItemsQuery: z.ZodObject<{
7728
7953
  'filter[container_item_id]': z.ZodOptional<z.ZodString>;
7729
7954
  'filter[status]': z.ZodOptional<z.ZodString>;
7730
7955
  'filter[service]': z.ZodOptional<z.ZodString>;
7956
+ 'filter[state]': z.ZodOptional<z.ZodString>;
7731
7957
  filter: z.ZodOptional<z.ZodString>;
7732
7958
  'filter[unexpected]': z.ZodOptional<z.ZodString>;
7733
7959
  }, z.core.$strip>;
@@ -7735,18 +7961,18 @@ export declare const zListItemsQuery: z.ZodObject<{
7735
7961
  * Success
7736
7962
  */
7737
7963
  export declare const zListItemsResponse: z.ZodObject<{
7738
- meta: z.ZodOptional<z.ZodObject<{
7964
+ meta: z.ZodObject<{
7739
7965
  page: z.ZodObject<{
7740
7966
  next_cursor: z.ZodNullable<z.ZodString>;
7741
7967
  current_cursor: z.ZodNullable<z.ZodString>;
7742
7968
  }, z.core.$strip>;
7743
- }, z.core.$strip>>;
7744
- links: z.ZodOptional<z.ZodObject<{
7969
+ }, z.core.$strip>;
7970
+ links: z.ZodObject<{
7745
7971
  self: z.ZodString;
7746
7972
  first: z.ZodNullable<z.ZodString>;
7747
7973
  next: z.ZodNullable<z.ZodString>;
7748
- }, z.core.$strip>>;
7749
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
7974
+ }, z.core.$strip>;
7975
+ data: z.ZodArray<z.ZodObject<{
7750
7976
  id: z.ZodString;
7751
7977
  name: z.ZodString;
7752
7978
  description: z.ZodNullable<z.ZodString>;
@@ -7760,7 +7986,6 @@ export declare const zListItemsResponse: z.ZodObject<{
7760
7986
  status: z.ZodNullable<z.ZodEnum<{
7761
7987
  available: "available";
7762
7988
  assigned: "assigned";
7763
- retired: "retired";
7764
7989
  }>>;
7765
7990
  purchase_date: z.ZodNullable<z.ZodISODateTime>;
7766
7991
  purchase_price_cents: z.ZodNullable<z.ZodString>;
@@ -7787,9 +8012,10 @@ export declare const zListItemsResponse: z.ZodObject<{
7787
8012
  created_at: z.ZodISODateTime;
7788
8013
  updated_at: z.ZodISODateTime;
7789
8014
  }, z.core.$strip>>;
8015
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
7790
8016
  created_at: z.ZodISODateTime;
7791
8017
  updated_at: z.ZodISODateTime;
7792
- }, z.core.$strip>>>;
8018
+ }, z.core.$strip>>;
7793
8019
  }, z.core.$strip>;
7794
8020
  export declare const zCreateItemBody: z.ZodObject<{
7795
8021
  name: z.ZodString;
@@ -7799,7 +8025,6 @@ export declare const zCreateItemBody: z.ZodObject<{
7799
8025
  status: z.ZodOptional<z.ZodEnum<{
7800
8026
  available: "available";
7801
8027
  assigned: "assigned";
7802
- retired: "retired";
7803
8028
  }>>;
7804
8029
  purchase_date: z.ZodOptional<z.ZodISODateTime>;
7805
8030
  purchase_price_cents: z.ZodOptional<z.ZodInt>;
@@ -7813,6 +8038,7 @@ export declare const zCreateItemBody: z.ZodObject<{
7813
8038
  assets_site_id: z.ZodOptional<z.ZodString>;
7814
8039
  user_id: z.ZodOptional<z.ZodString>;
7815
8040
  container_item_id: z.ZodOptional<z.ZodString>;
8041
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
7816
8042
  performed_by_user_id: z.ZodString;
7817
8043
  }, z.core.$strip>;
7818
8044
  /**
@@ -7832,7 +8058,6 @@ export declare const zCreateItemResponse: z.ZodObject<{
7832
8058
  status: z.ZodNullable<z.ZodEnum<{
7833
8059
  available: "available";
7834
8060
  assigned: "assigned";
7835
- retired: "retired";
7836
8061
  }>>;
7837
8062
  purchase_date: z.ZodNullable<z.ZodISODateTime>;
7838
8063
  purchase_price_cents: z.ZodNullable<z.ZodString>;
@@ -7859,6 +8084,7 @@ export declare const zCreateItemResponse: z.ZodObject<{
7859
8084
  created_at: z.ZodISODateTime;
7860
8085
  updated_at: z.ZodISODateTime;
7861
8086
  }, z.core.$strip>>;
8087
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
7862
8088
  created_at: z.ZodISODateTime;
7863
8089
  updated_at: z.ZodISODateTime;
7864
8090
  }, z.core.$strip>;
@@ -7882,7 +8108,6 @@ export declare const zDeleteItemResponse: z.ZodObject<{
7882
8108
  status: z.ZodNullable<z.ZodEnum<{
7883
8109
  available: "available";
7884
8110
  assigned: "assigned";
7885
- retired: "retired";
7886
8111
  }>>;
7887
8112
  purchase_date: z.ZodNullable<z.ZodISODateTime>;
7888
8113
  purchase_price_cents: z.ZodNullable<z.ZodString>;
@@ -7909,6 +8134,7 @@ export declare const zDeleteItemResponse: z.ZodObject<{
7909
8134
  created_at: z.ZodISODateTime;
7910
8135
  updated_at: z.ZodISODateTime;
7911
8136
  }, z.core.$strip>>;
8137
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
7912
8138
  created_at: z.ZodISODateTime;
7913
8139
  updated_at: z.ZodISODateTime;
7914
8140
  }, z.core.$strip>;
@@ -7932,7 +8158,6 @@ export declare const zGetItemResponse: z.ZodObject<{
7932
8158
  status: z.ZodNullable<z.ZodEnum<{
7933
8159
  available: "available";
7934
8160
  assigned: "assigned";
7935
- retired: "retired";
7936
8161
  }>>;
7937
8162
  purchase_date: z.ZodNullable<z.ZodISODateTime>;
7938
8163
  purchase_price_cents: z.ZodNullable<z.ZodString>;
@@ -7959,6 +8184,7 @@ export declare const zGetItemResponse: z.ZodObject<{
7959
8184
  created_at: z.ZodISODateTime;
7960
8185
  updated_at: z.ZodISODateTime;
7961
8186
  }, z.core.$strip>>;
8187
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
7962
8188
  created_at: z.ZodISODateTime;
7963
8189
  updated_at: z.ZodISODateTime;
7964
8190
  }, z.core.$strip>;
@@ -7970,7 +8196,6 @@ export declare const zUpdateItemBody: z.ZodObject<{
7970
8196
  status: z.ZodOptional<z.ZodEnum<{
7971
8197
  available: "available";
7972
8198
  assigned: "assigned";
7973
- retired: "retired";
7974
8199
  }>>;
7975
8200
  purchase_date: z.ZodOptional<z.ZodISODateTime>;
7976
8201
  purchase_price_cents: z.ZodOptional<z.ZodInt>;
@@ -7984,6 +8209,7 @@ export declare const zUpdateItemBody: z.ZodObject<{
7984
8209
  assets_site_id: z.ZodOptional<z.ZodString>;
7985
8210
  user_id: z.ZodOptional<z.ZodString>;
7986
8211
  container_item_id: z.ZodOptional<z.ZodString>;
8212
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
7987
8213
  performed_by_user_id: z.ZodString;
7988
8214
  }, z.core.$strip>;
7989
8215
  export declare const zUpdateItemPath: z.ZodObject<{
@@ -8006,7 +8232,6 @@ export declare const zUpdateItemResponse: z.ZodObject<{
8006
8232
  status: z.ZodNullable<z.ZodEnum<{
8007
8233
  available: "available";
8008
8234
  assigned: "assigned";
8009
- retired: "retired";
8010
8235
  }>>;
8011
8236
  purchase_date: z.ZodNullable<z.ZodISODateTime>;
8012
8237
  purchase_price_cents: z.ZodNullable<z.ZodString>;
@@ -8033,16 +8258,20 @@ export declare const zUpdateItemResponse: z.ZodObject<{
8033
8258
  created_at: z.ZodISODateTime;
8034
8259
  updated_at: z.ZodISODateTime;
8035
8260
  }, z.core.$strip>>;
8261
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
8036
8262
  created_at: z.ZodISODateTime;
8037
8263
  updated_at: z.ZodISODateTime;
8038
8264
  }, z.core.$strip>;
8039
- export declare const zUnretireItemPath: z.ZodObject<{
8265
+ export declare const zUnarchiveItemBody: z.ZodObject<{
8266
+ performed_by_user_id: z.ZodString;
8267
+ }, z.core.$strip>;
8268
+ export declare const zUnarchiveItemPath: z.ZodObject<{
8040
8269
  item_id: z.ZodString;
8041
8270
  }, z.core.$strip>;
8042
8271
  /**
8043
8272
  * Success
8044
8273
  */
8045
- export declare const zUnretireItemResponse: z.ZodObject<{
8274
+ export declare const zUnarchiveItemResponse: z.ZodObject<{
8046
8275
  id: z.ZodString;
8047
8276
  name: z.ZodString;
8048
8277
  description: z.ZodNullable<z.ZodString>;
@@ -8056,7 +8285,6 @@ export declare const zUnretireItemResponse: z.ZodObject<{
8056
8285
  status: z.ZodNullable<z.ZodEnum<{
8057
8286
  available: "available";
8058
8287
  assigned: "assigned";
8059
- retired: "retired";
8060
8288
  }>>;
8061
8289
  purchase_date: z.ZodNullable<z.ZodISODateTime>;
8062
8290
  purchase_price_cents: z.ZodNullable<z.ZodString>;
@@ -8083,19 +8311,20 @@ export declare const zUnretireItemResponse: z.ZodObject<{
8083
8311
  created_at: z.ZodISODateTime;
8084
8312
  updated_at: z.ZodISODateTime;
8085
8313
  }, z.core.$strip>>;
8314
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
8086
8315
  created_at: z.ZodISODateTime;
8087
8316
  updated_at: z.ZodISODateTime;
8088
8317
  }, z.core.$strip>;
8089
- export declare const zRetireItemBody: z.ZodObject<{
8318
+ export declare const zArchiveItemBody: z.ZodObject<{
8090
8319
  performed_by_user_id: z.ZodString;
8091
8320
  }, z.core.$strip>;
8092
- export declare const zRetireItemPath: z.ZodObject<{
8321
+ export declare const zArchiveItemPath: z.ZodObject<{
8093
8322
  item_id: z.ZodString;
8094
8323
  }, z.core.$strip>;
8095
8324
  /**
8096
8325
  * Created
8097
8326
  */
8098
- export declare const zRetireItemResponse: z.ZodObject<{
8327
+ export declare const zArchiveItemResponse: z.ZodObject<{
8099
8328
  id: z.ZodString;
8100
8329
  name: z.ZodString;
8101
8330
  description: z.ZodNullable<z.ZodString>;
@@ -8109,7 +8338,6 @@ export declare const zRetireItemResponse: z.ZodObject<{
8109
8338
  status: z.ZodNullable<z.ZodEnum<{
8110
8339
  available: "available";
8111
8340
  assigned: "assigned";
8112
- retired: "retired";
8113
8341
  }>>;
8114
8342
  purchase_date: z.ZodNullable<z.ZodISODateTime>;
8115
8343
  purchase_price_cents: z.ZodNullable<z.ZodString>;
@@ -8136,6 +8364,7 @@ export declare const zRetireItemResponse: z.ZodObject<{
8136
8364
  created_at: z.ZodISODateTime;
8137
8365
  updated_at: z.ZodISODateTime;
8138
8366
  }, z.core.$strip>>;
8367
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
8139
8368
  created_at: z.ZodISODateTime;
8140
8369
  updated_at: z.ZodISODateTime;
8141
8370
  }, z.core.$strip>;
@@ -8158,18 +8387,18 @@ export declare const zListServiceSchedulesQuery: z.ZodObject<{
8158
8387
  * Success
8159
8388
  */
8160
8389
  export declare const zListServiceSchedulesResponse: z.ZodObject<{
8161
- meta: z.ZodOptional<z.ZodObject<{
8390
+ meta: z.ZodObject<{
8162
8391
  page: z.ZodObject<{
8163
8392
  next_cursor: z.ZodNullable<z.ZodString>;
8164
8393
  current_cursor: z.ZodNullable<z.ZodString>;
8165
8394
  }, z.core.$strip>;
8166
- }, z.core.$strip>>;
8167
- links: z.ZodOptional<z.ZodObject<{
8395
+ }, z.core.$strip>;
8396
+ links: z.ZodObject<{
8168
8397
  self: z.ZodString;
8169
8398
  first: z.ZodNullable<z.ZodString>;
8170
8399
  next: z.ZodNullable<z.ZodString>;
8171
- }, z.core.$strip>>;
8172
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
8400
+ }, z.core.$strip>;
8401
+ data: z.ZodArray<z.ZodObject<{
8173
8402
  id: z.ZodString;
8174
8403
  assets_item_id: z.ZodString;
8175
8404
  company_id: z.ZodString;
@@ -8190,7 +8419,7 @@ export declare const zListServiceSchedulesResponse: z.ZodObject<{
8190
8419
  next_due_date: z.ZodISODate;
8191
8420
  created_at: z.ZodISODateTime;
8192
8421
  updated_at: z.ZodISODateTime;
8193
- }, z.core.$strip>>>;
8422
+ }, z.core.$strip>>;
8194
8423
  }, z.core.$strip>;
8195
8424
  export declare const zCreateServiceScheduleBody: z.ZodObject<{
8196
8425
  kind: z.ZodEnum<{
@@ -8358,18 +8587,18 @@ export declare const zListServiceEventsQuery: z.ZodObject<{
8358
8587
  * Success
8359
8588
  */
8360
8589
  export declare const zListServiceEventsResponse: z.ZodObject<{
8361
- meta: z.ZodOptional<z.ZodObject<{
8590
+ meta: z.ZodObject<{
8362
8591
  page: z.ZodObject<{
8363
8592
  next_cursor: z.ZodNullable<z.ZodString>;
8364
8593
  current_cursor: z.ZodNullable<z.ZodString>;
8365
8594
  }, z.core.$strip>;
8366
- }, z.core.$strip>>;
8367
- links: z.ZodOptional<z.ZodObject<{
8595
+ }, z.core.$strip>;
8596
+ links: z.ZodObject<{
8368
8597
  self: z.ZodString;
8369
8598
  first: z.ZodNullable<z.ZodString>;
8370
8599
  next: z.ZodNullable<z.ZodString>;
8371
- }, z.core.$strip>>;
8372
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
8600
+ }, z.core.$strip>;
8601
+ data: z.ZodArray<z.ZodObject<{
8373
8602
  id: z.ZodString;
8374
8603
  assets_item_id: z.ZodString;
8375
8604
  company_id: z.ZodString;
@@ -8395,7 +8624,7 @@ export declare const zListServiceEventsResponse: z.ZodObject<{
8395
8624
  }, z.core.$strip>>;
8396
8625
  created_at: z.ZodISODateTime;
8397
8626
  updated_at: z.ZodISODateTime;
8398
- }, z.core.$strip>>>;
8627
+ }, z.core.$strip>>;
8399
8628
  }, z.core.$strip>;
8400
8629
  export declare const zCreateServiceEventBody: z.ZodObject<{
8401
8630
  kind: z.ZodOptional<z.ZodEnum<{
@@ -8576,18 +8805,18 @@ export declare const zListFormAssignmentTasksQuery: z.ZodObject<{
8576
8805
  * Success
8577
8806
  */
8578
8807
  export declare const zListFormAssignmentTasksResponse: z.ZodObject<{
8579
- meta: z.ZodOptional<z.ZodObject<{
8808
+ meta: z.ZodObject<{
8580
8809
  page: z.ZodObject<{
8581
8810
  next_cursor: z.ZodNullable<z.ZodString>;
8582
8811
  current_cursor: z.ZodNullable<z.ZodString>;
8583
8812
  }, z.core.$strip>;
8584
- }, z.core.$strip>>;
8585
- links: z.ZodOptional<z.ZodObject<{
8813
+ }, z.core.$strip>;
8814
+ links: z.ZodObject<{
8586
8815
  self: z.ZodString;
8587
8816
  first: z.ZodNullable<z.ZodString>;
8588
8817
  next: z.ZodNullable<z.ZodString>;
8589
- }, z.core.$strip>>;
8590
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
8818
+ }, z.core.$strip>;
8819
+ data: z.ZodArray<z.ZodObject<{
8591
8820
  id: z.ZodString;
8592
8821
  assets_item_id: z.ZodString;
8593
8822
  form_definition_id: z.ZodString;
@@ -8610,7 +8839,7 @@ export declare const zListFormAssignmentTasksResponse: z.ZodObject<{
8610
8839
  offset: z.ZodString;
8611
8840
  remind_at: z.ZodISODateTime;
8612
8841
  }, z.core.$strip>>;
8613
- }, z.core.$strip>>>;
8842
+ }, z.core.$strip>>;
8614
8843
  }, z.core.$strip>;
8615
8844
  export declare const zCreateItemFormAssignmentTaskBody: z.ZodObject<{
8616
8845
  form_definition_id: z.ZodString;
@@ -8844,18 +9073,18 @@ export declare const zListDocumentsQuery: z.ZodObject<{
8844
9073
  * Success
8845
9074
  */
8846
9075
  export declare const zListDocumentsResponse: z.ZodObject<{
8847
- meta: z.ZodOptional<z.ZodObject<{
9076
+ meta: z.ZodObject<{
8848
9077
  page: z.ZodObject<{
8849
9078
  next_cursor: z.ZodNullable<z.ZodString>;
8850
9079
  current_cursor: z.ZodNullable<z.ZodString>;
8851
9080
  }, z.core.$strip>;
8852
- }, z.core.$strip>>;
8853
- links: z.ZodOptional<z.ZodObject<{
9081
+ }, z.core.$strip>;
9082
+ links: z.ZodObject<{
8854
9083
  self: z.ZodString;
8855
9084
  first: z.ZodNullable<z.ZodString>;
8856
9085
  next: z.ZodNullable<z.ZodString>;
8857
- }, z.core.$strip>>;
8858
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
9086
+ }, z.core.$strip>;
9087
+ data: z.ZodArray<z.ZodObject<{
8859
9088
  id: z.ZodString;
8860
9089
  assets_item_id: z.ZodString;
8861
9090
  name: z.ZodString;
@@ -8871,7 +9100,7 @@ export declare const zListDocumentsResponse: z.ZodObject<{
8871
9100
  }, z.core.$strip>>;
8872
9101
  created_at: z.ZodISODateTime;
8873
9102
  updated_at: z.ZodISODateTime;
8874
- }, z.core.$strip>>>;
9103
+ }, z.core.$strip>>;
8875
9104
  }, z.core.$strip>;
8876
9105
  export declare const zCreateDocumentBody: z.ZodObject<{
8877
9106
  file: z.ZodString;
@@ -8986,18 +9215,18 @@ export declare const zListVersionsPath: z.ZodObject<{
8986
9215
  * Success
8987
9216
  */
8988
9217
  export declare const zListVersionsResponse: z.ZodObject<{
8989
- meta: z.ZodOptional<z.ZodObject<{
9218
+ meta: z.ZodObject<{
8990
9219
  page: z.ZodObject<{
8991
9220
  next_cursor: z.ZodNullable<z.ZodString>;
8992
9221
  current_cursor: z.ZodNullable<z.ZodString>;
8993
9222
  }, z.core.$strip>;
8994
- }, z.core.$strip>>;
8995
- links: z.ZodOptional<z.ZodObject<{
9223
+ }, z.core.$strip>;
9224
+ links: z.ZodObject<{
8996
9225
  self: z.ZodString;
8997
9226
  first: z.ZodNullable<z.ZodString>;
8998
9227
  next: z.ZodNullable<z.ZodString>;
8999
- }, z.core.$strip>>;
9000
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
9228
+ }, z.core.$strip>;
9229
+ data: z.ZodArray<z.ZodObject<{
9001
9230
  id: z.ZodInt;
9002
9231
  document_id: z.ZodString;
9003
9232
  event: z.ZodEnum<{
@@ -9007,10 +9236,11 @@ export declare const zListVersionsResponse: z.ZodObject<{
9007
9236
  }>;
9008
9237
  whodunnit: z.ZodNullable<z.ZodString>;
9009
9238
  created_at: z.ZodISODateTime;
9010
- }, z.core.$strip>>>;
9239
+ }, z.core.$strip>>;
9011
9240
  }, z.core.$strip>;
9012
9241
  export declare const zListProductsQuery: z.ZodObject<{
9013
9242
  'filter[assets_category_id]': z.ZodOptional<z.ZodString>;
9243
+ 'filter[state]': z.ZodOptional<z.ZodString>;
9014
9244
  'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
9015
9245
  'filter[created_at][lte]': z.ZodOptional<z.ZodISODateTime>;
9016
9246
  'filter[updated_at][gte]': z.ZodOptional<z.ZodISODateTime>;
@@ -9025,18 +9255,18 @@ export declare const zListProductsQuery: z.ZodObject<{
9025
9255
  * Success
9026
9256
  */
9027
9257
  export declare const zListProductsResponse: z.ZodObject<{
9028
- meta: z.ZodOptional<z.ZodObject<{
9258
+ meta: z.ZodObject<{
9029
9259
  page: z.ZodObject<{
9030
9260
  next_cursor: z.ZodNullable<z.ZodString>;
9031
9261
  current_cursor: z.ZodNullable<z.ZodString>;
9032
9262
  }, z.core.$strip>;
9033
- }, z.core.$strip>>;
9034
- links: z.ZodOptional<z.ZodObject<{
9263
+ }, z.core.$strip>;
9264
+ links: z.ZodObject<{
9035
9265
  self: z.ZodString;
9036
9266
  first: z.ZodNullable<z.ZodString>;
9037
9267
  next: z.ZodNullable<z.ZodString>;
9038
- }, z.core.$strip>>;
9039
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
9268
+ }, z.core.$strip>;
9269
+ data: z.ZodArray<z.ZodObject<{
9040
9270
  id: z.ZodString;
9041
9271
  company_id: z.ZodString;
9042
9272
  name: z.ZodString;
@@ -9069,9 +9299,10 @@ export declare const zListProductsResponse: z.ZodObject<{
9069
9299
  created_at: z.ZodISODateTime;
9070
9300
  updated_at: z.ZodISODateTime;
9071
9301
  }, z.core.$strip>>;
9302
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
9072
9303
  created_at: z.ZodISODateTime;
9073
9304
  updated_at: z.ZodISODateTime;
9074
- }, z.core.$strip>>>;
9305
+ }, z.core.$strip>>;
9075
9306
  }, z.core.$strip>;
9076
9307
  export declare const zCreateProductBody: z.ZodObject<{
9077
9308
  type: z.ZodEnum<{
@@ -9140,6 +9371,7 @@ export declare const zCreateProductResponse: z.ZodObject<{
9140
9371
  created_at: z.ZodISODateTime;
9141
9372
  updated_at: z.ZodISODateTime;
9142
9373
  }, z.core.$strip>>;
9374
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
9143
9375
  created_at: z.ZodISODateTime;
9144
9376
  updated_at: z.ZodISODateTime;
9145
9377
  }, z.core.$strip>;
@@ -9182,6 +9414,7 @@ export declare const zDeleteProductResponse: z.ZodObject<{
9182
9414
  created_at: z.ZodISODateTime;
9183
9415
  updated_at: z.ZodISODateTime;
9184
9416
  }, z.core.$strip>>;
9417
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
9185
9418
  created_at: z.ZodISODateTime;
9186
9419
  updated_at: z.ZodISODateTime;
9187
9420
  }, z.core.$strip>;
@@ -9224,6 +9457,7 @@ export declare const zGetProductResponse: z.ZodObject<{
9224
9457
  created_at: z.ZodISODateTime;
9225
9458
  updated_at: z.ZodISODateTime;
9226
9459
  }, z.core.$strip>>;
9460
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
9227
9461
  created_at: z.ZodISODateTime;
9228
9462
  updated_at: z.ZodISODateTime;
9229
9463
  }, z.core.$strip>;
@@ -9292,11 +9526,105 @@ export declare const zUpdateProductResponse: z.ZodObject<{
9292
9526
  created_at: z.ZodISODateTime;
9293
9527
  updated_at: z.ZodISODateTime;
9294
9528
  }, z.core.$strip>>;
9529
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
9530
+ created_at: z.ZodISODateTime;
9531
+ updated_at: z.ZodISODateTime;
9532
+ }, z.core.$strip>;
9533
+ export declare const zUnarchiveProductBody: z.ZodObject<{
9534
+ performed_by_user_id: z.ZodString;
9535
+ }, z.core.$strip>;
9536
+ export declare const zUnarchiveProductPath: z.ZodObject<{
9537
+ product_id: z.ZodString;
9538
+ }, z.core.$strip>;
9539
+ /**
9540
+ * Success
9541
+ */
9542
+ export declare const zUnarchiveProductResponse: z.ZodObject<{
9543
+ id: z.ZodString;
9544
+ company_id: z.ZodString;
9545
+ name: z.ZodString;
9546
+ upc: z.ZodNullable<z.ZodString>;
9547
+ internal_sku: z.ZodNullable<z.ZodString>;
9548
+ default_minimum_quantity: z.ZodNullable<z.ZodInt>;
9549
+ make: z.ZodNullable<z.ZodString>;
9550
+ model: z.ZodNullable<z.ZodString>;
9551
+ counted_by: z.ZodEnum<{
9552
+ each: "each";
9553
+ pair: "pair";
9554
+ pack: "pack";
9555
+ }>;
9556
+ container: z.ZodBoolean;
9557
+ serialized: z.ZodBoolean;
9558
+ assets_category_id: z.ZodNullable<z.ZodString>;
9559
+ attributes: z.ZodArray<z.ZodObject<{
9560
+ assets_attribute_id: z.ZodString;
9561
+ value: z.ZodNullable<z.ZodString>;
9562
+ assets_attribute_option_id: z.ZodNullable<z.ZodString>;
9563
+ }, z.core.$strip>>;
9564
+ images: z.ZodArray<z.ZodObject<{
9565
+ id: z.ZodString;
9566
+ file: z.ZodNullable<z.ZodObject<{
9567
+ filename: z.ZodString;
9568
+ content_type: z.ZodNullable<z.ZodString>;
9569
+ byte_size: z.ZodInt;
9570
+ url: z.ZodString;
9571
+ }, z.core.$strip>>;
9572
+ created_at: z.ZodISODateTime;
9573
+ updated_at: z.ZodISODateTime;
9574
+ }, z.core.$strip>>;
9575
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
9576
+ created_at: z.ZodISODateTime;
9577
+ updated_at: z.ZodISODateTime;
9578
+ }, z.core.$strip>;
9579
+ export declare const zArchiveProductBody: z.ZodObject<{
9580
+ performed_by_user_id: z.ZodString;
9581
+ }, z.core.$strip>;
9582
+ export declare const zArchiveProductPath: z.ZodObject<{
9583
+ product_id: z.ZodString;
9584
+ }, z.core.$strip>;
9585
+ /**
9586
+ * Created
9587
+ */
9588
+ export declare const zArchiveProductResponse: z.ZodObject<{
9589
+ id: z.ZodString;
9590
+ company_id: z.ZodString;
9591
+ name: z.ZodString;
9592
+ upc: z.ZodNullable<z.ZodString>;
9593
+ internal_sku: z.ZodNullable<z.ZodString>;
9594
+ default_minimum_quantity: z.ZodNullable<z.ZodInt>;
9595
+ make: z.ZodNullable<z.ZodString>;
9596
+ model: z.ZodNullable<z.ZodString>;
9597
+ counted_by: z.ZodEnum<{
9598
+ each: "each";
9599
+ pair: "pair";
9600
+ pack: "pack";
9601
+ }>;
9602
+ container: z.ZodBoolean;
9603
+ serialized: z.ZodBoolean;
9604
+ assets_category_id: z.ZodNullable<z.ZodString>;
9605
+ attributes: z.ZodArray<z.ZodObject<{
9606
+ assets_attribute_id: z.ZodString;
9607
+ value: z.ZodNullable<z.ZodString>;
9608
+ assets_attribute_option_id: z.ZodNullable<z.ZodString>;
9609
+ }, z.core.$strip>>;
9610
+ images: z.ZodArray<z.ZodObject<{
9611
+ id: z.ZodString;
9612
+ file: z.ZodNullable<z.ZodObject<{
9613
+ filename: z.ZodString;
9614
+ content_type: z.ZodNullable<z.ZodString>;
9615
+ byte_size: z.ZodInt;
9616
+ url: z.ZodString;
9617
+ }, z.core.$strip>>;
9618
+ created_at: z.ZodISODateTime;
9619
+ updated_at: z.ZodISODateTime;
9620
+ }, z.core.$strip>>;
9621
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
9295
9622
  created_at: z.ZodISODateTime;
9296
9623
  updated_at: z.ZodISODateTime;
9297
9624
  }, z.core.$strip>;
9298
9625
  export declare const zAdjustProductInventoryBody: z.ZodObject<{
9299
9626
  assets_site_id: z.ZodString;
9627
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
9300
9628
  new_quantity: z.ZodInt;
9301
9629
  performed_by_user_id: z.ZodString;
9302
9630
  }, z.core.$strip>;
@@ -9339,11 +9667,13 @@ export declare const zAdjustProductInventoryResponse: z.ZodObject<{
9339
9667
  created_at: z.ZodISODateTime;
9340
9668
  updated_at: z.ZodISODateTime;
9341
9669
  }, z.core.$strip>>;
9670
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
9342
9671
  created_at: z.ZodISODateTime;
9343
9672
  updated_at: z.ZodISODateTime;
9344
9673
  }, z.core.$strip>;
9345
9674
  export declare const zRestockProductBody: z.ZodObject<{
9346
9675
  assets_site_id: z.ZodString;
9676
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
9347
9677
  quantity: z.ZodInt;
9348
9678
  performed_by_user_id: z.ZodString;
9349
9679
  }, z.core.$strip>;
@@ -9386,6 +9716,7 @@ export declare const zRestockProductResponse: z.ZodObject<{
9386
9716
  created_at: z.ZodISODateTime;
9387
9717
  updated_at: z.ZodISODateTime;
9388
9718
  }, z.core.$strip>>;
9719
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
9389
9720
  created_at: z.ZodISODateTime;
9390
9721
  updated_at: z.ZodISODateTime;
9391
9722
  }, z.core.$strip>;
@@ -9404,18 +9735,18 @@ export declare const zListServiceScheduleTemplatesQuery: z.ZodObject<{
9404
9735
  * Success
9405
9736
  */
9406
9737
  export declare const zListServiceScheduleTemplatesResponse: z.ZodObject<{
9407
- meta: z.ZodOptional<z.ZodObject<{
9738
+ meta: z.ZodObject<{
9408
9739
  page: z.ZodObject<{
9409
9740
  next_cursor: z.ZodNullable<z.ZodString>;
9410
9741
  current_cursor: z.ZodNullable<z.ZodString>;
9411
9742
  }, z.core.$strip>;
9412
- }, z.core.$strip>>;
9413
- links: z.ZodOptional<z.ZodObject<{
9743
+ }, z.core.$strip>;
9744
+ links: z.ZodObject<{
9414
9745
  self: z.ZodString;
9415
9746
  first: z.ZodNullable<z.ZodString>;
9416
9747
  next: z.ZodNullable<z.ZodString>;
9417
- }, z.core.$strip>>;
9418
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
9748
+ }, z.core.$strip>;
9749
+ data: z.ZodArray<z.ZodObject<{
9419
9750
  id: z.ZodString;
9420
9751
  company_id: z.ZodString;
9421
9752
  assets_product_id: z.ZodString;
@@ -9433,7 +9764,7 @@ export declare const zListServiceScheduleTemplatesResponse: z.ZodObject<{
9433
9764
  interval_count: z.ZodInt;
9434
9765
  created_at: z.ZodISODateTime;
9435
9766
  updated_at: z.ZodISODateTime;
9436
- }, z.core.$strip>>>;
9767
+ }, z.core.$strip>>;
9437
9768
  }, z.core.$strip>;
9438
9769
  export declare const zCreateServiceScheduleTemplateBody: z.ZodObject<{
9439
9770
  kind: z.ZodEnum<{
@@ -9655,18 +9986,18 @@ export declare const zListAssetsSitesQuery: z.ZodObject<{
9655
9986
  * Success
9656
9987
  */
9657
9988
  export declare const zListAssetsSitesResponse: z.ZodObject<{
9658
- meta: z.ZodOptional<z.ZodObject<{
9989
+ meta: z.ZodObject<{
9659
9990
  page: z.ZodObject<{
9660
9991
  next_cursor: z.ZodNullable<z.ZodString>;
9661
9992
  current_cursor: z.ZodNullable<z.ZodString>;
9662
9993
  }, z.core.$strip>;
9663
- }, z.core.$strip>>;
9664
- links: z.ZodOptional<z.ZodObject<{
9994
+ }, z.core.$strip>;
9995
+ links: z.ZodObject<{
9665
9996
  self: z.ZodString;
9666
9997
  first: z.ZodNullable<z.ZodString>;
9667
9998
  next: z.ZodNullable<z.ZodString>;
9668
- }, z.core.$strip>>;
9669
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
9999
+ }, z.core.$strip>;
10000
+ data: z.ZodArray<z.ZodObject<{
9670
10001
  id: z.ZodString;
9671
10002
  company_id: z.ZodString;
9672
10003
  site_id: z.ZodNullable<z.ZodString>;
@@ -9678,7 +10009,7 @@ export declare const zListAssetsSitesResponse: z.ZodObject<{
9678
10009
  site_type: z.ZodNullable<z.ZodString>;
9679
10010
  created_at: z.ZodISODateTime;
9680
10011
  updated_at: z.ZodISODateTime;
9681
- }, z.core.$strip>>>;
10012
+ }, z.core.$strip>>;
9682
10013
  }, z.core.$strip>;
9683
10014
  export declare const zCreateSiteBody: z.ZodIntersection<z.ZodUnion<readonly [z.ZodObject<{
9684
10015
  site_id: z.ZodString;
@@ -9773,103 +10104,290 @@ export declare const zUpdateSiteResponse: z.ZodObject<{
9773
10104
  created_at: z.ZodISODateTime;
9774
10105
  updated_at: z.ZodISODateTime;
9775
10106
  }, z.core.$strip>;
9776
- export declare const zListTransfersQuery: z.ZodObject<{
9777
- 'filter[status]': z.ZodOptional<z.ZodString>;
10107
+ export declare const zListSubLocationsQuery: z.ZodObject<{
10108
+ 'filter[assets_site_id]': z.ZodOptional<z.ZodString>;
10109
+ 'filter[container_item_id]': z.ZodOptional<z.ZodString>;
10110
+ 'filter[kind]': z.ZodOptional<z.ZodString>;
10111
+ 'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
10112
+ 'filter[created_at][lte]': z.ZodOptional<z.ZodISODateTime>;
10113
+ 'filter[updated_at][gte]': z.ZodOptional<z.ZodISODateTime>;
10114
+ 'filter[updated_at][lte]': z.ZodOptional<z.ZodISODateTime>;
9778
10115
  filter: z.ZodOptional<z.ZodString>;
9779
10116
  'filter[unexpected]': z.ZodOptional<z.ZodString>;
10117
+ 'page[cursor]': z.ZodOptional<z.ZodString>;
10118
+ 'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
10119
+ page: z.ZodOptional<z.ZodString>;
9780
10120
  }, z.core.$strip>;
9781
10121
  /**
9782
10122
  * Success
9783
10123
  */
9784
- export declare const zListTransfersResponse: z.ZodObject<{
9785
- meta: z.ZodOptional<z.ZodObject<{
10124
+ export declare const zListSubLocationsResponse: z.ZodObject<{
10125
+ meta: z.ZodObject<{
9786
10126
  page: z.ZodObject<{
9787
10127
  next_cursor: z.ZodNullable<z.ZodString>;
9788
10128
  current_cursor: z.ZodNullable<z.ZodString>;
9789
10129
  }, z.core.$strip>;
9790
- }, z.core.$strip>>;
9791
- links: z.ZodOptional<z.ZodObject<{
10130
+ }, z.core.$strip>;
10131
+ links: z.ZodObject<{
9792
10132
  self: z.ZodString;
9793
10133
  first: z.ZodNullable<z.ZodString>;
9794
10134
  next: z.ZodNullable<z.ZodString>;
9795
- }, z.core.$strip>>;
9796
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
10135
+ }, z.core.$strip>;
10136
+ data: z.ZodArray<z.ZodObject<{
9797
10137
  id: z.ZodString;
9798
10138
  company_id: z.ZodString;
9799
- status: z.ZodEnum<{
9800
- pending: "pending";
9801
- cancelled: "cancelled";
9802
- completed: "completed";
9803
- in_transit: "in_transit";
9804
- }>;
9805
- from_assets_site_id: z.ZodNullable<z.ZodString>;
9806
- from_user_id: z.ZodNullable<z.ZodString>;
9807
- from_container_item_id: z.ZodNullable<z.ZodString>;
9808
- to_assets_site_id: z.ZodNullable<z.ZodString>;
9809
- to_user_id: z.ZodNullable<z.ZodString>;
9810
- to_container_item_id: z.ZodNullable<z.ZodString>;
9811
- initiated_by_user_id: z.ZodString;
9812
- completed_at: z.ZodNullable<z.ZodISODateTime>;
9813
- transfer_lines: z.ZodArray<z.ZodObject<{
9814
- id: z.ZodString;
9815
- assets_item_id: z.ZodString;
9816
- quantity: z.ZodInt;
9817
- }, z.core.$strip>>;
10139
+ assets_site_id: z.ZodNullable<z.ZodString>;
10140
+ container_item_id: z.ZodNullable<z.ZodString>;
10141
+ parent_id: z.ZodNullable<z.ZodString>;
10142
+ kind: z.ZodNullable<z.ZodEnum<{
10143
+ zone: "zone";
10144
+ aisle: "aisle";
10145
+ rack: "rack";
10146
+ shelf: "shelf";
10147
+ bin: "bin";
10148
+ drawer: "drawer";
10149
+ }>>;
10150
+ name: z.ZodString;
10151
+ code: z.ZodString;
10152
+ path_code: z.ZodString;
9818
10153
  created_at: z.ZodISODateTime;
9819
10154
  updated_at: z.ZodISODateTime;
9820
- }, z.core.$strip>>>;
9821
- }, z.core.$strip>;
9822
- export declare const zCreateTransferBody: z.ZodObject<{
9823
- from_assets_site_id: z.ZodOptional<z.ZodString>;
9824
- from_user_id: z.ZodOptional<z.ZodString>;
9825
- from_container_item_id: z.ZodOptional<z.ZodString>;
9826
- to_assets_site_id: z.ZodOptional<z.ZodString>;
9827
- to_user_id: z.ZodOptional<z.ZodString>;
9828
- to_container_item_id: z.ZodOptional<z.ZodString>;
9829
- performed_by_user_id: z.ZodString;
9830
- line_items: z.ZodArray<z.ZodObject<{
9831
- assets_item_id: z.ZodString;
9832
- quantity: z.ZodInt;
9833
10155
  }, z.core.$strip>>;
9834
10156
  }, z.core.$strip>;
9835
- export declare const zCreateTransferResponse: z.ZodUnion<readonly [z.ZodObject<{
10157
+ export declare const zCreateSubLocationBody: z.ZodObject<{
10158
+ assets_site_id: z.ZodOptional<z.ZodString>;
10159
+ container_item_id: z.ZodOptional<z.ZodString>;
10160
+ parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10161
+ kind: z.ZodOptional<z.ZodEnum<{
10162
+ zone: "zone";
10163
+ aisle: "aisle";
10164
+ rack: "rack";
10165
+ shelf: "shelf";
10166
+ bin: "bin";
10167
+ drawer: "drawer";
10168
+ }>>;
10169
+ name: z.ZodString;
10170
+ code: z.ZodString;
10171
+ }, z.core.$strip>;
10172
+ /**
10173
+ * Created
10174
+ */
10175
+ export declare const zCreateSubLocationResponse: z.ZodObject<{
9836
10176
  id: z.ZodString;
9837
10177
  company_id: z.ZodString;
9838
- status: z.ZodEnum<{
9839
- pending: "pending";
9840
- cancelled: "cancelled";
9841
- completed: "completed";
9842
- in_transit: "in_transit";
9843
- }>;
9844
- from_assets_site_id: z.ZodNullable<z.ZodString>;
9845
- from_user_id: z.ZodNullable<z.ZodString>;
9846
- from_container_item_id: z.ZodNullable<z.ZodString>;
9847
- to_assets_site_id: z.ZodNullable<z.ZodString>;
9848
- to_user_id: z.ZodNullable<z.ZodString>;
9849
- to_container_item_id: z.ZodNullable<z.ZodString>;
9850
- initiated_by_user_id: z.ZodString;
9851
- completed_at: z.ZodNullable<z.ZodISODateTime>;
9852
- transfer_lines: z.ZodArray<z.ZodObject<{
9853
- id: z.ZodString;
9854
- assets_item_id: z.ZodString;
9855
- quantity: z.ZodInt;
9856
- }, z.core.$strip>>;
10178
+ assets_site_id: z.ZodNullable<z.ZodString>;
10179
+ container_item_id: z.ZodNullable<z.ZodString>;
10180
+ parent_id: z.ZodNullable<z.ZodString>;
10181
+ kind: z.ZodNullable<z.ZodEnum<{
10182
+ zone: "zone";
10183
+ aisle: "aisle";
10184
+ rack: "rack";
10185
+ shelf: "shelf";
10186
+ bin: "bin";
10187
+ drawer: "drawer";
10188
+ }>>;
10189
+ name: z.ZodString;
10190
+ code: z.ZodString;
10191
+ path_code: z.ZodString;
9857
10192
  created_at: z.ZodISODateTime;
9858
10193
  updated_at: z.ZodISODateTime;
9859
- }, z.core.$strip>, z.ZodVoid]>;
9860
- export declare const zGetTransferPath: z.ZodObject<{
10194
+ }, z.core.$strip>;
10195
+ export declare const zDeleteSubLocationPath: z.ZodObject<{
9861
10196
  id: z.ZodString;
9862
10197
  }, z.core.$strip>;
9863
10198
  /**
9864
10199
  * Success
9865
10200
  */
9866
- export declare const zGetTransferResponse: z.ZodObject<{
10201
+ export declare const zDeleteSubLocationResponse: z.ZodObject<{
9867
10202
  id: z.ZodString;
9868
10203
  company_id: z.ZodString;
9869
- status: z.ZodEnum<{
9870
- pending: "pending";
9871
- cancelled: "cancelled";
9872
- completed: "completed";
10204
+ assets_site_id: z.ZodNullable<z.ZodString>;
10205
+ container_item_id: z.ZodNullable<z.ZodString>;
10206
+ parent_id: z.ZodNullable<z.ZodString>;
10207
+ kind: z.ZodNullable<z.ZodEnum<{
10208
+ zone: "zone";
10209
+ aisle: "aisle";
10210
+ rack: "rack";
10211
+ shelf: "shelf";
10212
+ bin: "bin";
10213
+ drawer: "drawer";
10214
+ }>>;
10215
+ name: z.ZodString;
10216
+ code: z.ZodString;
10217
+ path_code: z.ZodString;
10218
+ created_at: z.ZodISODateTime;
10219
+ updated_at: z.ZodISODateTime;
10220
+ }, z.core.$strip>;
10221
+ export declare const zGetSubLocationPath: z.ZodObject<{
10222
+ id: z.ZodString;
10223
+ }, z.core.$strip>;
10224
+ /**
10225
+ * Success
10226
+ */
10227
+ export declare const zGetSubLocationResponse: z.ZodObject<{
10228
+ id: z.ZodString;
10229
+ company_id: z.ZodString;
10230
+ assets_site_id: z.ZodNullable<z.ZodString>;
10231
+ container_item_id: z.ZodNullable<z.ZodString>;
10232
+ parent_id: z.ZodNullable<z.ZodString>;
10233
+ kind: z.ZodNullable<z.ZodEnum<{
10234
+ zone: "zone";
10235
+ aisle: "aisle";
10236
+ rack: "rack";
10237
+ shelf: "shelf";
10238
+ bin: "bin";
10239
+ drawer: "drawer";
10240
+ }>>;
10241
+ name: z.ZodString;
10242
+ code: z.ZodString;
10243
+ path_code: z.ZodString;
10244
+ created_at: z.ZodISODateTime;
10245
+ updated_at: z.ZodISODateTime;
10246
+ }, z.core.$strip>;
10247
+ export declare const zUpdateSubLocationBody: z.ZodObject<{
10248
+ assets_site_id: z.ZodOptional<z.ZodString>;
10249
+ container_item_id: z.ZodOptional<z.ZodString>;
10250
+ parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10251
+ kind: z.ZodOptional<z.ZodEnum<{
10252
+ zone: "zone";
10253
+ aisle: "aisle";
10254
+ rack: "rack";
10255
+ shelf: "shelf";
10256
+ bin: "bin";
10257
+ drawer: "drawer";
10258
+ }>>;
10259
+ name: z.ZodOptional<z.ZodString>;
10260
+ code: z.ZodOptional<z.ZodString>;
10261
+ }, z.core.$strip>;
10262
+ export declare const zUpdateSubLocationPath: z.ZodObject<{
10263
+ id: z.ZodString;
10264
+ }, z.core.$strip>;
10265
+ /**
10266
+ * Success
10267
+ */
10268
+ export declare const zUpdateSubLocationResponse: z.ZodObject<{
10269
+ id: z.ZodString;
10270
+ company_id: z.ZodString;
10271
+ assets_site_id: z.ZodNullable<z.ZodString>;
10272
+ container_item_id: z.ZodNullable<z.ZodString>;
10273
+ parent_id: z.ZodNullable<z.ZodString>;
10274
+ kind: z.ZodNullable<z.ZodEnum<{
10275
+ zone: "zone";
10276
+ aisle: "aisle";
10277
+ rack: "rack";
10278
+ shelf: "shelf";
10279
+ bin: "bin";
10280
+ drawer: "drawer";
10281
+ }>>;
10282
+ name: z.ZodString;
10283
+ code: z.ZodString;
10284
+ path_code: z.ZodString;
10285
+ created_at: z.ZodISODateTime;
10286
+ updated_at: z.ZodISODateTime;
10287
+ }, z.core.$strip>;
10288
+ export declare const zListTransfersQuery: z.ZodObject<{
10289
+ 'filter[status]': z.ZodOptional<z.ZodString>;
10290
+ filter: z.ZodOptional<z.ZodString>;
10291
+ 'filter[unexpected]': z.ZodOptional<z.ZodString>;
10292
+ }, z.core.$strip>;
10293
+ /**
10294
+ * Success
10295
+ */
10296
+ export declare const zListTransfersResponse: z.ZodObject<{
10297
+ meta: z.ZodObject<{
10298
+ page: z.ZodObject<{
10299
+ next_cursor: z.ZodNullable<z.ZodString>;
10300
+ current_cursor: z.ZodNullable<z.ZodString>;
10301
+ }, z.core.$strip>;
10302
+ }, z.core.$strip>;
10303
+ links: z.ZodObject<{
10304
+ self: z.ZodString;
10305
+ first: z.ZodNullable<z.ZodString>;
10306
+ next: z.ZodNullable<z.ZodString>;
10307
+ }, z.core.$strip>;
10308
+ data: z.ZodArray<z.ZodObject<{
10309
+ id: z.ZodString;
10310
+ company_id: z.ZodString;
10311
+ status: z.ZodEnum<{
10312
+ pending: "pending";
10313
+ cancelled: "cancelled";
10314
+ completed: "completed";
10315
+ in_transit: "in_transit";
10316
+ }>;
10317
+ from_assets_site_id: z.ZodNullable<z.ZodString>;
10318
+ from_user_id: z.ZodNullable<z.ZodString>;
10319
+ from_container_item_id: z.ZodNullable<z.ZodString>;
10320
+ to_assets_site_id: z.ZodNullable<z.ZodString>;
10321
+ to_user_id: z.ZodNullable<z.ZodString>;
10322
+ to_container_item_id: z.ZodNullable<z.ZodString>;
10323
+ from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
10324
+ to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
10325
+ initiated_by_user_id: z.ZodString;
10326
+ completed_at: z.ZodNullable<z.ZodISODateTime>;
10327
+ transfer_lines: z.ZodArray<z.ZodObject<{
10328
+ id: z.ZodString;
10329
+ assets_item_id: z.ZodString;
10330
+ quantity: z.ZodInt;
10331
+ }, z.core.$strip>>;
10332
+ created_at: z.ZodISODateTime;
10333
+ updated_at: z.ZodISODateTime;
10334
+ }, z.core.$strip>>;
10335
+ }, z.core.$strip>;
10336
+ export declare const zCreateTransferBody: z.ZodObject<{
10337
+ from_assets_site_id: z.ZodOptional<z.ZodString>;
10338
+ from_user_id: z.ZodOptional<z.ZodString>;
10339
+ from_container_item_id: z.ZodOptional<z.ZodString>;
10340
+ to_assets_site_id: z.ZodOptional<z.ZodString>;
10341
+ to_user_id: z.ZodOptional<z.ZodString>;
10342
+ to_container_item_id: z.ZodOptional<z.ZodString>;
10343
+ from_assets_sub_location_id: z.ZodOptional<z.ZodString>;
10344
+ to_assets_sub_location_id: z.ZodOptional<z.ZodString>;
10345
+ performed_by_user_id: z.ZodString;
10346
+ line_items: z.ZodArray<z.ZodObject<{
10347
+ assets_item_id: z.ZodString;
10348
+ quantity: z.ZodInt;
10349
+ }, z.core.$strip>>;
10350
+ }, z.core.$strip>;
10351
+ export declare const zCreateTransferResponse: z.ZodUnion<readonly [z.ZodObject<{
10352
+ id: z.ZodString;
10353
+ company_id: z.ZodString;
10354
+ status: z.ZodEnum<{
10355
+ pending: "pending";
10356
+ cancelled: "cancelled";
10357
+ completed: "completed";
10358
+ in_transit: "in_transit";
10359
+ }>;
10360
+ from_assets_site_id: z.ZodNullable<z.ZodString>;
10361
+ from_user_id: z.ZodNullable<z.ZodString>;
10362
+ from_container_item_id: z.ZodNullable<z.ZodString>;
10363
+ to_assets_site_id: z.ZodNullable<z.ZodString>;
10364
+ to_user_id: z.ZodNullable<z.ZodString>;
10365
+ to_container_item_id: z.ZodNullable<z.ZodString>;
10366
+ from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
10367
+ to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
10368
+ initiated_by_user_id: z.ZodString;
10369
+ completed_at: z.ZodNullable<z.ZodISODateTime>;
10370
+ transfer_lines: z.ZodArray<z.ZodObject<{
10371
+ id: z.ZodString;
10372
+ assets_item_id: z.ZodString;
10373
+ quantity: z.ZodInt;
10374
+ }, z.core.$strip>>;
10375
+ created_at: z.ZodISODateTime;
10376
+ updated_at: z.ZodISODateTime;
10377
+ }, z.core.$strip>, z.ZodVoid]>;
10378
+ export declare const zGetTransferPath: z.ZodObject<{
10379
+ id: z.ZodString;
10380
+ }, z.core.$strip>;
10381
+ /**
10382
+ * Success
10383
+ */
10384
+ export declare const zGetTransferResponse: z.ZodObject<{
10385
+ id: z.ZodString;
10386
+ company_id: z.ZodString;
10387
+ status: z.ZodEnum<{
10388
+ pending: "pending";
10389
+ cancelled: "cancelled";
10390
+ completed: "completed";
9873
10391
  in_transit: "in_transit";
9874
10392
  }>;
9875
10393
  from_assets_site_id: z.ZodNullable<z.ZodString>;
@@ -9878,6 +10396,8 @@ export declare const zGetTransferResponse: z.ZodObject<{
9878
10396
  to_assets_site_id: z.ZodNullable<z.ZodString>;
9879
10397
  to_user_id: z.ZodNullable<z.ZodString>;
9880
10398
  to_container_item_id: z.ZodNullable<z.ZodString>;
10399
+ from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
10400
+ to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
9881
10401
  initiated_by_user_id: z.ZodString;
9882
10402
  completed_at: z.ZodNullable<z.ZodISODateTime>;
9883
10403
  transfer_lines: z.ZodArray<z.ZodObject<{
@@ -9899,25 +10419,25 @@ export declare const zListVendorsQuery: z.ZodObject<{
9899
10419
  * Success
9900
10420
  */
9901
10421
  export declare const zListVendorsResponse: z.ZodObject<{
9902
- meta: z.ZodOptional<z.ZodObject<{
10422
+ meta: z.ZodObject<{
9903
10423
  page: z.ZodObject<{
9904
10424
  next_cursor: z.ZodNullable<z.ZodString>;
9905
10425
  current_cursor: z.ZodNullable<z.ZodString>;
9906
10426
  }, z.core.$strip>;
9907
- }, z.core.$strip>>;
9908
- links: z.ZodOptional<z.ZodObject<{
10427
+ }, z.core.$strip>;
10428
+ links: z.ZodObject<{
9909
10429
  self: z.ZodString;
9910
10430
  first: z.ZodNullable<z.ZodString>;
9911
10431
  next: z.ZodNullable<z.ZodString>;
9912
- }, z.core.$strip>>;
9913
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
10432
+ }, z.core.$strip>;
10433
+ data: z.ZodArray<z.ZodObject<{
9914
10434
  id: z.ZodString;
9915
10435
  name: z.ZodString;
9916
10436
  company_id: z.ZodString;
9917
10437
  logo_url: z.ZodNullable<z.ZodString>;
9918
10438
  created_at: z.ZodISODateTime;
9919
10439
  updated_at: z.ZodISODateTime;
9920
- }, z.core.$strip>>>;
10440
+ }, z.core.$strip>>;
9921
10441
  }, z.core.$strip>;
9922
10442
  export declare const zCreateVendorBody: z.ZodObject<{
9923
10443
  name: z.ZodString;
@@ -10002,18 +10522,18 @@ export declare const zListFeaturesQuery: z.ZodObject<{
10002
10522
  * Success
10003
10523
  */
10004
10524
  export declare const zListFeaturesResponse: z.ZodObject<{
10005
- meta: z.ZodOptional<z.ZodObject<{
10525
+ meta: z.ZodObject<{
10006
10526
  page: z.ZodObject<{
10007
10527
  next_cursor: z.ZodNullable<z.ZodString>;
10008
10528
  current_cursor: z.ZodNullable<z.ZodString>;
10009
10529
  }, z.core.$strip>;
10010
- }, z.core.$strip>>;
10011
- links: z.ZodOptional<z.ZodObject<{
10530
+ }, z.core.$strip>;
10531
+ links: z.ZodObject<{
10012
10532
  self: z.ZodString;
10013
10533
  first: z.ZodNullable<z.ZodString>;
10014
10534
  next: z.ZodNullable<z.ZodString>;
10015
- }, z.core.$strip>>;
10016
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
10535
+ }, z.core.$strip>;
10536
+ data: z.ZodArray<z.ZodObject<{
10017
10537
  id: z.ZodString;
10018
10538
  name: z.ZodString;
10019
10539
  type: z.ZodEnum<{
@@ -10130,7 +10650,7 @@ export declare const zListFeaturesResponse: z.ZodObject<{
10130
10650
  active_time_end: z.ZodNullable<z.ZodISODateTime>;
10131
10651
  created_at: z.ZodISODateTime;
10132
10652
  updated_at: z.ZodISODateTime;
10133
- }, z.core.$strip>>>;
10653
+ }, z.core.$strip>>;
10134
10654
  }, z.core.$strip>;
10135
10655
  export declare const zGetFeaturePath: z.ZodObject<{
10136
10656
  id: z.ZodString;
@@ -10277,18 +10797,18 @@ export declare const zListAtlasSitesQuery: z.ZodObject<{
10277
10797
  * Success
10278
10798
  */
10279
10799
  export declare const zListAtlasSitesResponse: z.ZodObject<{
10280
- meta: z.ZodOptional<z.ZodObject<{
10800
+ meta: z.ZodObject<{
10281
10801
  page: z.ZodObject<{
10282
10802
  next_cursor: z.ZodNullable<z.ZodString>;
10283
10803
  current_cursor: z.ZodNullable<z.ZodString>;
10284
10804
  }, z.core.$strip>;
10285
- }, z.core.$strip>>;
10286
- links: z.ZodOptional<z.ZodObject<{
10805
+ }, z.core.$strip>;
10806
+ links: z.ZodObject<{
10287
10807
  self: z.ZodString;
10288
10808
  first: z.ZodNullable<z.ZodString>;
10289
10809
  next: z.ZodNullable<z.ZodString>;
10290
- }, z.core.$strip>>;
10291
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
10810
+ }, z.core.$strip>;
10811
+ data: z.ZodArray<z.ZodObject<{
10292
10812
  id: z.ZodString;
10293
10813
  name: z.ZodString;
10294
10814
  type: z.ZodEnum<{
@@ -10317,7 +10837,7 @@ export declare const zListAtlasSitesResponse: z.ZodObject<{
10317
10837
  active_time_end: z.ZodNullable<z.ZodISODateTime>;
10318
10838
  created_at: z.ZodISODateTime;
10319
10839
  updated_at: z.ZodISODateTime;
10320
- }, z.core.$strip>>>;
10840
+ }, z.core.$strip>>;
10321
10841
  }, z.core.$strip>;
10322
10842
  export declare const zGetAtlasSitePath: z.ZodObject<{
10323
10843
  id: z.ZodString;
@@ -10388,18 +10908,18 @@ export declare const zListPackagesQuery: z.ZodObject<{
10388
10908
  * Success
10389
10909
  */
10390
10910
  export declare const zListPackagesResponse: z.ZodObject<{
10391
- meta: z.ZodOptional<z.ZodObject<{
10911
+ meta: z.ZodObject<{
10392
10912
  page: z.ZodObject<{
10393
10913
  next_cursor: z.ZodNullable<z.ZodString>;
10394
10914
  current_cursor: z.ZodNullable<z.ZodString>;
10395
10915
  }, z.core.$strip>;
10396
- }, z.core.$strip>>;
10397
- links: z.ZodOptional<z.ZodObject<{
10916
+ }, z.core.$strip>;
10917
+ links: z.ZodObject<{
10398
10918
  self: z.ZodString;
10399
10919
  first: z.ZodNullable<z.ZodString>;
10400
10920
  next: z.ZodNullable<z.ZodString>;
10401
- }, z.core.$strip>>;
10402
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
10921
+ }, z.core.$strip>;
10922
+ data: z.ZodArray<z.ZodObject<{
10403
10923
  id: z.ZodString;
10404
10924
  name: z.ZodString;
10405
10925
  description: z.ZodNullable<z.ZodString>;
@@ -10409,7 +10929,7 @@ export declare const zListPackagesResponse: z.ZodObject<{
10409
10929
  updated_by_user_id: z.ZodString;
10410
10930
  created_at: z.ZodISODateTime;
10411
10931
  updated_at: z.ZodISODateTime;
10412
- }, z.core.$strip>>>;
10932
+ }, z.core.$strip>>;
10413
10933
  }, z.core.$strip>;
10414
10934
  export declare const zCreatePackageBody: z.ZodObject<{
10415
10935
  name: z.ZodString;
@@ -10541,7 +11061,7 @@ export declare const zCreateUserCertificationBody: z.ZodObject<{
10541
11061
  name: z.ZodString;
10542
11062
  content: z.ZodString;
10543
11063
  }, z.core.$strip>>>;
10544
- verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11064
+ verified: z.ZodOptional<z.ZodBoolean>;
10545
11065
  expiration_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
10546
11066
  credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10547
11067
  approved_by_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -10622,7 +11142,7 @@ export declare const zUpdateUserCertificationBody: z.ZodObject<{
10622
11142
  name: z.ZodString;
10623
11143
  content: z.ZodString;
10624
11144
  }, z.core.$strip>>>;
10625
- verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11145
+ verified: z.ZodOptional<z.ZodBoolean>;
10626
11146
  expiration_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
10627
11147
  credential_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10628
11148
  approved_by_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -10687,7 +11207,7 @@ export declare const zCreateCertificationBody: z.ZodObject<{
10687
11207
  company_id: z.ZodString;
10688
11208
  name: z.ZodString;
10689
11209
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10690
- verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11210
+ verified: z.ZodOptional<z.ZodBoolean>;
10691
11211
  duration: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10692
11212
  }, z.core.$strip>;
10693
11213
  /**
@@ -10739,7 +11259,7 @@ export declare const zUpdateCertificationBody: z.ZodObject<{
10739
11259
  company_id: z.ZodString;
10740
11260
  name: z.ZodString;
10741
11261
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10742
- verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11262
+ verified: z.ZodOptional<z.ZodBoolean>;
10743
11263
  duration: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10744
11264
  }, z.core.$strip>;
10745
11265
  export declare const zUpdateCertificationPath: z.ZodObject<{
@@ -10773,25 +11293,25 @@ export declare const zListDepartmentsQuery: z.ZodObject<{
10773
11293
  * Success
10774
11294
  */
10775
11295
  export declare const zListDepartmentsResponse: z.ZodObject<{
10776
- meta: z.ZodOptional<z.ZodObject<{
11296
+ meta: z.ZodObject<{
10777
11297
  page: z.ZodObject<{
10778
11298
  next_cursor: z.ZodNullable<z.ZodString>;
10779
11299
  current_cursor: z.ZodNullable<z.ZodString>;
10780
11300
  }, z.core.$strip>;
10781
- }, z.core.$strip>>;
10782
- links: z.ZodOptional<z.ZodObject<{
11301
+ }, z.core.$strip>;
11302
+ links: z.ZodObject<{
10783
11303
  self: z.ZodString;
10784
11304
  first: z.ZodNullable<z.ZodString>;
10785
11305
  next: z.ZodNullable<z.ZodString>;
10786
- }, z.core.$strip>>;
10787
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
11306
+ }, z.core.$strip>;
11307
+ data: z.ZodArray<z.ZodObject<{
10788
11308
  id: z.ZodString;
10789
11309
  name: z.ZodString;
10790
11310
  description: z.ZodNullable<z.ZodString>;
10791
11311
  company_id: z.ZodString;
10792
11312
  created_at: z.ZodISODateTime;
10793
11313
  updated_at: z.ZodISODateTime;
10794
- }, z.core.$strip>>>;
11314
+ }, z.core.$strip>>;
10795
11315
  }, z.core.$strip>;
10796
11316
  export declare const zCreateDepartmentBody: z.ZodObject<{
10797
11317
  name: z.ZodString;
@@ -10838,18 +11358,18 @@ export declare const zListCompaniesQuery: z.ZodObject<{
10838
11358
  * Success
10839
11359
  */
10840
11360
  export declare const zListCompaniesResponse: z.ZodObject<{
10841
- meta: z.ZodOptional<z.ZodObject<{
11361
+ meta: z.ZodObject<{
10842
11362
  page: z.ZodObject<{
10843
11363
  next_cursor: z.ZodNullable<z.ZodString>;
10844
11364
  current_cursor: z.ZodNullable<z.ZodString>;
10845
11365
  }, z.core.$strip>;
10846
- }, z.core.$strip>>;
10847
- links: z.ZodOptional<z.ZodObject<{
11366
+ }, z.core.$strip>;
11367
+ links: z.ZodObject<{
10848
11368
  self: z.ZodString;
10849
11369
  first: z.ZodNullable<z.ZodString>;
10850
11370
  next: z.ZodNullable<z.ZodString>;
10851
- }, z.core.$strip>>;
10852
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
11371
+ }, z.core.$strip>;
11372
+ data: z.ZodArray<z.ZodObject<{
10853
11373
  id: z.ZodString;
10854
11374
  name: z.ZodString;
10855
11375
  legal_name: z.ZodNullable<z.ZodString>;
@@ -10898,7 +11418,7 @@ export declare const zListCompaniesResponse: z.ZodObject<{
10898
11418
  logo_url: z.ZodNullable<z.ZodURL>;
10899
11419
  created_at: z.ZodISODateTime;
10900
11420
  updated_at: z.ZodISODateTime;
10901
- }, z.core.$strip>>>;
11421
+ }, z.core.$strip>>;
10902
11422
  }, z.core.$strip>;
10903
11423
  export declare const zGetCompanyPath: z.ZodObject<{
10904
11424
  id: z.ZodString;
@@ -11136,18 +11656,18 @@ export declare const zListChecksQuery: z.ZodObject<{
11136
11656
  * Success
11137
11657
  */
11138
11658
  export declare const zListChecksResponse: z.ZodObject<{
11139
- meta: z.ZodOptional<z.ZodObject<{
11659
+ meta: z.ZodObject<{
11140
11660
  page: z.ZodObject<{
11141
11661
  next_cursor: z.ZodNullable<z.ZodString>;
11142
11662
  current_cursor: z.ZodNullable<z.ZodString>;
11143
11663
  }, z.core.$strip>;
11144
- }, z.core.$strip>>;
11145
- links: z.ZodOptional<z.ZodObject<{
11664
+ }, z.core.$strip>;
11665
+ links: z.ZodObject<{
11146
11666
  self: z.ZodString;
11147
11667
  first: z.ZodNullable<z.ZodString>;
11148
11668
  next: z.ZodNullable<z.ZodString>;
11149
- }, z.core.$strip>>;
11150
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
11669
+ }, z.core.$strip>;
11670
+ data: z.ZodArray<z.ZodObject<{
11151
11671
  id: z.ZodString;
11152
11672
  type: z.ZodEnum<{
11153
11673
  "Compliances::CompanyCheck": "Compliances::CompanyCheck";
@@ -11206,7 +11726,7 @@ export declare const zListChecksResponse: z.ZodObject<{
11206
11726
  time_due: z.ZodNullable<z.ZodISODateTime>;
11207
11727
  created_at: z.ZodISODateTime;
11208
11728
  updated_at: z.ZodISODateTime;
11209
- }, z.core.$strip>>>;
11729
+ }, z.core.$strip>>;
11210
11730
  }, z.core.$strip>;
11211
11731
  export declare const zGetCheckPath: z.ZodObject<{
11212
11732
  id: z.ZodString;
@@ -11356,18 +11876,18 @@ export declare const zListCustomFieldConfigsQuery: z.ZodObject<{
11356
11876
  * Success
11357
11877
  */
11358
11878
  export declare const zListCustomFieldConfigsResponse: z.ZodObject<{
11359
- meta: z.ZodOptional<z.ZodObject<{
11879
+ meta: z.ZodObject<{
11360
11880
  page: z.ZodObject<{
11361
11881
  next_cursor: z.ZodNullable<z.ZodString>;
11362
11882
  current_cursor: z.ZodNullable<z.ZodString>;
11363
11883
  }, z.core.$strip>;
11364
- }, z.core.$strip>>;
11365
- links: z.ZodOptional<z.ZodObject<{
11884
+ }, z.core.$strip>;
11885
+ links: z.ZodObject<{
11366
11886
  self: z.ZodString;
11367
11887
  first: z.ZodNullable<z.ZodString>;
11368
11888
  next: z.ZodNullable<z.ZodString>;
11369
- }, z.core.$strip>>;
11370
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
11889
+ }, z.core.$strip>;
11890
+ data: z.ZodArray<z.ZodObject<{
11371
11891
  id: z.ZodString;
11372
11892
  name: z.ZodString;
11373
11893
  description: z.ZodNullable<z.ZodString>;
@@ -11376,7 +11896,7 @@ export declare const zListCustomFieldConfigsResponse: z.ZodObject<{
11376
11896
  company_id: z.ZodString;
11377
11897
  created_at: z.ZodISODateTime;
11378
11898
  updated_at: z.ZodISODateTime;
11379
- }, z.core.$strip>>>;
11899
+ }, z.core.$strip>>;
11380
11900
  }, z.core.$strip>;
11381
11901
  export declare const zCreateCustomFieldConfigBody: z.ZodObject<{
11382
11902
  name: z.ZodString;
@@ -11462,6 +11982,14 @@ export declare const zUpdateCustomFieldConfigResponse: z.ZodObject<{
11462
11982
  updated_at: z.ZodISODateTime;
11463
11983
  }, z.core.$strip>;
11464
11984
  export declare const zCreateDirectUploadBody: z.ZodObject<{
11985
+ resource: z.ZodEnum<{
11986
+ "assets.items": "assets.items";
11987
+ "assets.items.documents": "assets.items.documents";
11988
+ "assets.items.service_events": "assets.items.service_events";
11989
+ "assets.products": "assets.products";
11990
+ "assets.vendors": "assets.vendors";
11991
+ users: "users";
11992
+ }>;
11465
11993
  blob: z.ZodObject<{
11466
11994
  filename: z.ZodString;
11467
11995
  byte_size: z.ZodInt;
@@ -11643,21 +12171,21 @@ export declare const zListGroupUsersQuery: z.ZodObject<{
11643
12171
  * Success
11644
12172
  */
11645
12173
  export declare const zListGroupUsersResponse: z.ZodObject<{
11646
- meta: z.ZodOptional<z.ZodObject<{
12174
+ meta: z.ZodObject<{
11647
12175
  page: z.ZodObject<{
11648
12176
  next_cursor: z.ZodNullable<z.ZodString>;
11649
12177
  current_cursor: z.ZodNullable<z.ZodString>;
11650
12178
  }, z.core.$strip>;
11651
- }, z.core.$strip>>;
11652
- links: z.ZodOptional<z.ZodObject<{
12179
+ }, z.core.$strip>;
12180
+ links: z.ZodObject<{
11653
12181
  self: z.ZodString;
11654
12182
  first: z.ZodNullable<z.ZodString>;
11655
12183
  next: z.ZodNullable<z.ZodString>;
11656
- }, z.core.$strip>>;
11657
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
12184
+ }, z.core.$strip>;
12185
+ data: z.ZodArray<z.ZodObject<{
11658
12186
  id: z.ZodString;
11659
12187
  user_id: z.ZodString;
11660
- }, z.core.$strip>>>;
12188
+ }, z.core.$strip>>;
11661
12189
  }, z.core.$strip>;
11662
12190
  export declare const zAddUsersToGroupBody: z.ZodObject<{
11663
12191
  user_ids: z.ZodArray<z.ZodString>;
@@ -11692,23 +12220,23 @@ export declare const zListGroupsQuery: z.ZodObject<{
11692
12220
  * Success
11693
12221
  */
11694
12222
  export declare const zListGroupsResponse: z.ZodObject<{
11695
- meta: z.ZodOptional<z.ZodObject<{
12223
+ meta: z.ZodObject<{
11696
12224
  page: z.ZodObject<{
11697
12225
  next_cursor: z.ZodNullable<z.ZodString>;
11698
12226
  current_cursor: z.ZodNullable<z.ZodString>;
11699
12227
  }, z.core.$strip>;
11700
- }, z.core.$strip>>;
11701
- links: z.ZodOptional<z.ZodObject<{
12228
+ }, z.core.$strip>;
12229
+ links: z.ZodObject<{
11702
12230
  self: z.ZodString;
11703
12231
  first: z.ZodNullable<z.ZodString>;
11704
12232
  next: z.ZodNullable<z.ZodString>;
11705
- }, z.core.$strip>>;
11706
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
12233
+ }, z.core.$strip>;
12234
+ data: z.ZodArray<z.ZodObject<{
11707
12235
  id: z.ZodString;
11708
12236
  name: z.ZodString;
11709
12237
  created_at: z.ZodISODateTime;
11710
12238
  updated_at: z.ZodISODateTime;
11711
- }, z.core.$strip>>>;
12239
+ }, z.core.$strip>>;
11712
12240
  }, z.core.$strip>;
11713
12241
  export declare const zCreateGroupBody: z.ZodObject<{
11714
12242
  name: z.ZodString;
@@ -11780,18 +12308,18 @@ export declare const zListJobScopePricesQuery: z.ZodObject<{
11780
12308
  * Success
11781
12309
  */
11782
12310
  export declare const zListJobScopePricesResponse: z.ZodObject<{
11783
- meta: z.ZodOptional<z.ZodObject<{
12311
+ meta: z.ZodObject<{
11784
12312
  page: z.ZodObject<{
11785
12313
  next_cursor: z.ZodNullable<z.ZodString>;
11786
12314
  current_cursor: z.ZodNullable<z.ZodString>;
11787
12315
  }, z.core.$strip>;
11788
- }, z.core.$strip>>;
11789
- links: z.ZodOptional<z.ZodObject<{
12316
+ }, z.core.$strip>;
12317
+ links: z.ZodObject<{
11790
12318
  self: z.ZodString;
11791
12319
  first: z.ZodNullable<z.ZodString>;
11792
12320
  next: z.ZodNullable<z.ZodString>;
11793
- }, z.core.$strip>>;
11794
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
12321
+ }, z.core.$strip>;
12322
+ data: z.ZodArray<z.ZodObject<{
11795
12323
  id: z.ZodString;
11796
12324
  job_id: z.ZodString;
11797
12325
  scope_kind: z.ZodString;
@@ -11800,7 +12328,7 @@ export declare const zListJobScopePricesResponse: z.ZodObject<{
11800
12328
  contracted_count: z.ZodNullable<z.ZodInt>;
11801
12329
  created_at: z.ZodISODateTime;
11802
12330
  updated_at: z.ZodISODateTime;
11803
- }, z.core.$strip>>>;
12331
+ }, z.core.$strip>>;
11804
12332
  }, z.core.$strip>;
11805
12333
  export declare const zCreateJobScopePriceBody: z.ZodObject<{
11806
12334
  scope_kind: z.ZodString;
@@ -11911,18 +12439,18 @@ export declare const zListRateRuleHistoryQuery: z.ZodObject<{
11911
12439
  * Success
11912
12440
  */
11913
12441
  export declare const zListRateRuleHistoryResponse: z.ZodObject<{
11914
- meta: z.ZodOptional<z.ZodObject<{
12442
+ meta: z.ZodObject<{
11915
12443
  page: z.ZodObject<{
11916
12444
  next_cursor: z.ZodNullable<z.ZodString>;
11917
12445
  current_cursor: z.ZodNullable<z.ZodString>;
11918
12446
  }, z.core.$strip>;
11919
- }, z.core.$strip>>;
11920
- links: z.ZodOptional<z.ZodObject<{
12447
+ }, z.core.$strip>;
12448
+ links: z.ZodObject<{
11921
12449
  self: z.ZodString;
11922
12450
  first: z.ZodNullable<z.ZodString>;
11923
12451
  next: z.ZodNullable<z.ZodString>;
11924
- }, z.core.$strip>>;
11925
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
12452
+ }, z.core.$strip>;
12453
+ data: z.ZodArray<z.ZodObject<{
11926
12454
  pay_rates_rule_id: z.ZodString;
11927
12455
  job_wage_determination_id: z.ZodString;
11928
12456
  pay_rates_rule_package_id: z.ZodString;
@@ -12006,7 +12534,7 @@ export declare const zListRateRuleHistoryResponse: z.ZodObject<{
12006
12534
  created_at: z.ZodISODateTime;
12007
12535
  updated_at: z.ZodISODateTime;
12008
12536
  }, z.core.$strip>>;
12009
- }, z.core.$strip>>>;
12537
+ }, z.core.$strip>>;
12010
12538
  }, z.core.$strip>;
12011
12539
  export declare const zListRateRulesPath: z.ZodObject<{
12012
12540
  job_id: z.ZodString;
@@ -12023,18 +12551,18 @@ export declare const zListRateRulesQuery: z.ZodObject<{
12023
12551
  * Success
12024
12552
  */
12025
12553
  export declare const zListRateRulesResponse: z.ZodObject<{
12026
- meta: z.ZodOptional<z.ZodObject<{
12554
+ meta: z.ZodObject<{
12027
12555
  page: z.ZodObject<{
12028
12556
  next_cursor: z.ZodNullable<z.ZodString>;
12029
12557
  current_cursor: z.ZodNullable<z.ZodString>;
12030
12558
  }, z.core.$strip>;
12031
- }, z.core.$strip>>;
12032
- links: z.ZodOptional<z.ZodObject<{
12559
+ }, z.core.$strip>;
12560
+ links: z.ZodObject<{
12033
12561
  self: z.ZodString;
12034
12562
  first: z.ZodNullable<z.ZodString>;
12035
12563
  next: z.ZodNullable<z.ZodString>;
12036
- }, z.core.$strip>>;
12037
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
12564
+ }, z.core.$strip>;
12565
+ data: z.ZodArray<z.ZodObject<{
12038
12566
  id: z.ZodString;
12039
12567
  job_wage_determination_id: z.ZodString;
12040
12568
  pay_rates_rule_package_id: z.ZodString;
@@ -12073,7 +12601,7 @@ export declare const zListRateRulesResponse: z.ZodObject<{
12073
12601
  valid_to: z.ZodNullable<z.ZodISODateTime>;
12074
12602
  created_at: z.ZodISODateTime;
12075
12603
  updated_at: z.ZodISODateTime;
12076
- }, z.core.$strip>>>;
12604
+ }, z.core.$strip>>;
12077
12605
  }, z.core.$strip>;
12078
12606
  export declare const zCreateRateRuleBody: z.ZodObject<{
12079
12607
  effective_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
@@ -12207,8 +12735,58 @@ export declare const zGetRateRuleResponse: z.ZodObject<{
12207
12735
  created_at: z.ZodISODateTime;
12208
12736
  updated_at: z.ZodISODateTime;
12209
12737
  }, z.core.$strip>;
12210
- export declare const zListJobWageDeterminationHistoryPath: z.ZodObject<{
12211
- job_id: z.ZodString;
12738
+ export declare const zShiftJobWageDeterminationGenesisBody: z.ZodObject<{
12739
+ effective_date: z.ZodISODate;
12740
+ }, z.core.$strip>;
12741
+ export declare const zShiftJobWageDeterminationGenesisHeaders: z.ZodObject<{
12742
+ 'If-Match': z.ZodString;
12743
+ }, z.core.$strip>;
12744
+ export declare const zShiftJobWageDeterminationGenesisPath: z.ZodObject<{
12745
+ job_id: z.ZodString;
12746
+ wage_determination_id: z.ZodString;
12747
+ }, z.core.$strip>;
12748
+ /**
12749
+ * Success
12750
+ */
12751
+ export declare const zShiftJobWageDeterminationGenesisResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
12752
+ id: z.ZodString;
12753
+ job_id: z.ZodString;
12754
+ pwa_trade_id: z.ZodString;
12755
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12756
+ labor_classification: z.ZodString;
12757
+ hourly_rate_cents: z.ZodString;
12758
+ fringe_rate_cents: z.ZodString;
12759
+ class_code: z.ZodNullable<z.ZodString>;
12760
+ construction_category: z.ZodNullable<z.ZodEnum<{
12761
+ building: "building";
12762
+ heavy: "heavy";
12763
+ highway: "highway";
12764
+ residential: "residential";
12765
+ }>>;
12766
+ general_wage_determination: z.ZodNullable<z.ZodString>;
12767
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
12768
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
12769
+ created_at: z.ZodISODateTime;
12770
+ updated_at: z.ZodISODateTime;
12771
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
12772
+ }, z.core.$strip>, z.ZodObject<{
12773
+ id: z.ZodString;
12774
+ job_id: z.ZodString;
12775
+ pwa_trade_id: z.ZodString;
12776
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12777
+ labor_classification: z.ZodString;
12778
+ hourly_rate_cents: z.ZodString;
12779
+ fringe_rate_cents: z.ZodString;
12780
+ general_wage_determination: z.ZodNullable<z.ZodString>;
12781
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
12782
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
12783
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
12784
+ created_at: z.ZodISODateTime;
12785
+ updated_at: z.ZodISODateTime;
12786
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
12787
+ }, z.core.$strip>], "type">;
12788
+ export declare const zListJobWageDeterminationHistoryPath: z.ZodObject<{
12789
+ job_id: z.ZodString;
12212
12790
  wage_determination_id: z.ZodString;
12213
12791
  }, z.core.$strip>;
12214
12792
  export declare const zListJobWageDeterminationHistoryQuery: z.ZodObject<{
@@ -12218,21 +12796,22 @@ export declare const zListJobWageDeterminationHistoryQuery: z.ZodObject<{
12218
12796
  * Success
12219
12797
  */
12220
12798
  export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12221
- meta: z.ZodOptional<z.ZodObject<{
12799
+ meta: z.ZodObject<{
12222
12800
  page: z.ZodObject<{
12223
12801
  next_cursor: z.ZodNullable<z.ZodString>;
12224
12802
  current_cursor: z.ZodNullable<z.ZodString>;
12225
12803
  }, z.core.$strip>;
12226
- }, z.core.$strip>>;
12227
- links: z.ZodOptional<z.ZodObject<{
12804
+ }, z.core.$strip>;
12805
+ links: z.ZodObject<{
12228
12806
  self: z.ZodString;
12229
12807
  first: z.ZodNullable<z.ZodString>;
12230
12808
  next: z.ZodNullable<z.ZodString>;
12231
- }, z.core.$strip>>;
12232
- data: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
12809
+ }, z.core.$strip>;
12810
+ data: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
12233
12811
  job_wage_determination_id: z.ZodString;
12234
12812
  job_id: z.ZodString;
12235
12813
  pwa_trade_id: z.ZodString;
12814
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12236
12815
  labor_classification: z.ZodString;
12237
12816
  hourly_rate_cents: z.ZodString;
12238
12817
  fringe_rate_cents: z.ZodString;
@@ -12257,6 +12836,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12257
12836
  job_wage_determination_id: z.ZodString;
12258
12837
  job_id: z.ZodString;
12259
12838
  pwa_trade_id: z.ZodString;
12839
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12260
12840
  labor_classification: z.ZodString;
12261
12841
  hourly_rate_cents: z.ZodString;
12262
12842
  fringe_rate_cents: z.ZodString;
@@ -12277,6 +12857,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12277
12857
  job_wage_determination_id: z.ZodString;
12278
12858
  job_id: z.ZodString;
12279
12859
  pwa_trade_id: z.ZodString;
12860
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12280
12861
  labor_classification: z.ZodString;
12281
12862
  hourly_rate_cents: z.ZodString;
12282
12863
  fringe_rate_cents: z.ZodString;
@@ -12293,6 +12874,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12293
12874
  job_wage_determination_id: z.ZodString;
12294
12875
  job_id: z.ZodString;
12295
12876
  pwa_trade_id: z.ZodString;
12877
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12296
12878
  labor_classification: z.ZodString;
12297
12879
  hourly_rate_cents: z.ZodString;
12298
12880
  fringe_rate_cents: z.ZodString;
@@ -12311,6 +12893,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12311
12893
  job_wage_determination_id: z.ZodString;
12312
12894
  job_id: z.ZodString;
12313
12895
  pwa_trade_id: z.ZodString;
12896
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12314
12897
  labor_classification: z.ZodString;
12315
12898
  hourly_rate_cents: z.ZodString;
12316
12899
  fringe_rate_cents: z.ZodString;
@@ -12331,6 +12914,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12331
12914
  job_wage_determination_id: z.ZodString;
12332
12915
  job_id: z.ZodString;
12333
12916
  pwa_trade_id: z.ZodString;
12917
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12334
12918
  labor_classification: z.ZodString;
12335
12919
  hourly_rate_cents: z.ZodString;
12336
12920
  fringe_rate_cents: z.ZodString;
@@ -12343,8 +12927,269 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12343
12927
  type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
12344
12928
  }, z.core.$strip>], "type">>;
12345
12929
  type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
12346
- }, z.core.$strip>], "type">>>;
12930
+ }, z.core.$strip>], "type">>;
12931
+ }, z.core.$strip>;
12932
+ export declare const zCancelJobWageDeterminationScheduledChangesHeaders: z.ZodObject<{
12933
+ 'If-Match': z.ZodString;
12934
+ }, z.core.$strip>;
12935
+ export declare const zCancelJobWageDeterminationScheduledChangesPath: z.ZodObject<{
12936
+ job_id: z.ZodString;
12937
+ wage_determination_id: z.ZodString;
12938
+ }, z.core.$strip>;
12939
+ /**
12940
+ * Success
12941
+ */
12942
+ export declare const zCancelJobWageDeterminationScheduledChangesResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
12943
+ id: z.ZodString;
12944
+ job_id: z.ZodString;
12945
+ pwa_trade_id: z.ZodString;
12946
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12947
+ labor_classification: z.ZodString;
12948
+ hourly_rate_cents: z.ZodString;
12949
+ fringe_rate_cents: z.ZodString;
12950
+ class_code: z.ZodNullable<z.ZodString>;
12951
+ construction_category: z.ZodNullable<z.ZodEnum<{
12952
+ building: "building";
12953
+ heavy: "heavy";
12954
+ highway: "highway";
12955
+ residential: "residential";
12956
+ }>>;
12957
+ general_wage_determination: z.ZodNullable<z.ZodString>;
12958
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
12959
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
12960
+ created_at: z.ZodISODateTime;
12961
+ updated_at: z.ZodISODateTime;
12962
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
12963
+ }, z.core.$strip>, z.ZodObject<{
12964
+ id: z.ZodString;
12965
+ job_id: z.ZodString;
12966
+ pwa_trade_id: z.ZodString;
12967
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12968
+ labor_classification: z.ZodString;
12969
+ hourly_rate_cents: z.ZodString;
12970
+ fringe_rate_cents: z.ZodString;
12971
+ general_wage_determination: z.ZodNullable<z.ZodString>;
12972
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
12973
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
12974
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
12975
+ created_at: z.ZodISODateTime;
12976
+ updated_at: z.ZodISODateTime;
12977
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
12978
+ }, z.core.$strip>], "type">;
12979
+ export declare const zListJobWageDeterminationScheduledChangesPath: z.ZodObject<{
12980
+ job_id: z.ZodString;
12981
+ wage_determination_id: z.ZodString;
12982
+ }, z.core.$strip>;
12983
+ /**
12984
+ * Success with scheduled changes
12985
+ */
12986
+ export declare const zListJobWageDeterminationScheduledChangesResponse: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
12987
+ id: z.ZodString;
12988
+ job_id: z.ZodString;
12989
+ pwa_trade_id: z.ZodString;
12990
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12991
+ labor_classification: z.ZodString;
12992
+ hourly_rate_cents: z.ZodString;
12993
+ fringe_rate_cents: z.ZodString;
12994
+ class_code: z.ZodNullable<z.ZodString>;
12995
+ construction_category: z.ZodNullable<z.ZodEnum<{
12996
+ building: "building";
12997
+ heavy: "heavy";
12998
+ highway: "highway";
12999
+ residential: "residential";
13000
+ }>>;
13001
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13002
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13003
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13004
+ created_at: z.ZodISODateTime;
13005
+ updated_at: z.ZodISODateTime;
13006
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
13007
+ }, z.core.$strip>, z.ZodObject<{
13008
+ id: z.ZodString;
13009
+ job_id: z.ZodString;
13010
+ pwa_trade_id: z.ZodString;
13011
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13012
+ labor_classification: z.ZodString;
13013
+ hourly_rate_cents: z.ZodString;
13014
+ fringe_rate_cents: z.ZodString;
13015
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13016
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
13017
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13018
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13019
+ created_at: z.ZodISODateTime;
13020
+ updated_at: z.ZodISODateTime;
13021
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
13022
+ }, z.core.$strip>], "type">>;
13023
+ export declare const zScheduleJobWageDeterminationChangeBody: z.ZodObject<{
13024
+ effective_date: z.ZodISODate;
13025
+ labor_classification: z.ZodOptional<z.ZodString>;
13026
+ pwa_trade_id: z.ZodOptional<z.ZodString>;
13027
+ hourly_rate_cents: z.ZodOptional<z.ZodString>;
13028
+ fringe_rate_cents: z.ZodOptional<z.ZodString>;
13029
+ class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13030
+ construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
13031
+ building: "building";
13032
+ heavy: "heavy";
13033
+ highway: "highway";
13034
+ residential: "residential";
13035
+ }>>>;
13036
+ general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13037
+ regional_fields: z.ZodOptional<z.ZodObject<{
13038
+ combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13039
+ combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13040
+ combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13041
+ training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13042
+ other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13043
+ one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13044
+ two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13045
+ one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13046
+ two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13047
+ }, z.core.$strip>>;
13048
+ }, z.core.$strip>;
13049
+ export declare const zScheduleJobWageDeterminationChangeHeaders: z.ZodObject<{
13050
+ 'If-Match': z.ZodString;
13051
+ }, z.core.$strip>;
13052
+ export declare const zScheduleJobWageDeterminationChangePath: z.ZodObject<{
13053
+ job_id: z.ZodString;
13054
+ wage_determination_id: z.ZodString;
13055
+ }, z.core.$strip>;
13056
+ /**
13057
+ * Created
13058
+ */
13059
+ export declare const zScheduleJobWageDeterminationChangeResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
13060
+ id: z.ZodString;
13061
+ job_id: z.ZodString;
13062
+ pwa_trade_id: z.ZodString;
13063
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13064
+ labor_classification: z.ZodString;
13065
+ hourly_rate_cents: z.ZodString;
13066
+ fringe_rate_cents: z.ZodString;
13067
+ class_code: z.ZodNullable<z.ZodString>;
13068
+ construction_category: z.ZodNullable<z.ZodEnum<{
13069
+ building: "building";
13070
+ heavy: "heavy";
13071
+ highway: "highway";
13072
+ residential: "residential";
13073
+ }>>;
13074
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13075
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13076
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13077
+ created_at: z.ZodISODateTime;
13078
+ updated_at: z.ZodISODateTime;
13079
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
13080
+ }, z.core.$strip>, z.ZodObject<{
13081
+ id: z.ZodString;
13082
+ job_id: z.ZodString;
13083
+ pwa_trade_id: z.ZodString;
13084
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13085
+ labor_classification: z.ZodString;
13086
+ hourly_rate_cents: z.ZodString;
13087
+ fringe_rate_cents: z.ZodString;
13088
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13089
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
13090
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13091
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13092
+ created_at: z.ZodISODateTime;
13093
+ updated_at: z.ZodISODateTime;
13094
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
13095
+ }, z.core.$strip>], "type">;
13096
+ export declare const zCancelJobWageDeterminationScheduledTerminationHeaders: z.ZodObject<{
13097
+ 'If-Match': z.ZodString;
13098
+ }, z.core.$strip>;
13099
+ export declare const zCancelJobWageDeterminationScheduledTerminationPath: z.ZodObject<{
13100
+ job_id: z.ZodString;
13101
+ wage_determination_id: z.ZodString;
13102
+ }, z.core.$strip>;
13103
+ /**
13104
+ * Success
13105
+ */
13106
+ export declare const zCancelJobWageDeterminationScheduledTerminationResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
13107
+ id: z.ZodString;
13108
+ job_id: z.ZodString;
13109
+ pwa_trade_id: z.ZodString;
13110
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13111
+ labor_classification: z.ZodString;
13112
+ hourly_rate_cents: z.ZodString;
13113
+ fringe_rate_cents: z.ZodString;
13114
+ class_code: z.ZodNullable<z.ZodString>;
13115
+ construction_category: z.ZodNullable<z.ZodEnum<{
13116
+ building: "building";
13117
+ heavy: "heavy";
13118
+ highway: "highway";
13119
+ residential: "residential";
13120
+ }>>;
13121
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13122
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13123
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13124
+ created_at: z.ZodISODateTime;
13125
+ updated_at: z.ZodISODateTime;
13126
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
13127
+ }, z.core.$strip>, z.ZodObject<{
13128
+ id: z.ZodString;
13129
+ job_id: z.ZodString;
13130
+ pwa_trade_id: z.ZodString;
13131
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13132
+ labor_classification: z.ZodString;
13133
+ hourly_rate_cents: z.ZodString;
13134
+ fringe_rate_cents: z.ZodString;
13135
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13136
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
13137
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13138
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13139
+ created_at: z.ZodISODateTime;
13140
+ updated_at: z.ZodISODateTime;
13141
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
13142
+ }, z.core.$strip>], "type">;
13143
+ export declare const zScheduleJobWageDeterminationTerminationBody: z.ZodObject<{
13144
+ effective_date: z.ZodISODate;
13145
+ }, z.core.$strip>;
13146
+ export declare const zScheduleJobWageDeterminationTerminationHeaders: z.ZodObject<{
13147
+ 'If-Match': z.ZodString;
12347
13148
  }, z.core.$strip>;
13149
+ export declare const zScheduleJobWageDeterminationTerminationPath: z.ZodObject<{
13150
+ job_id: z.ZodString;
13151
+ wage_determination_id: z.ZodString;
13152
+ }, z.core.$strip>;
13153
+ /**
13154
+ * Created
13155
+ */
13156
+ export declare const zScheduleJobWageDeterminationTerminationResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
13157
+ id: z.ZodString;
13158
+ job_id: z.ZodString;
13159
+ pwa_trade_id: z.ZodString;
13160
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13161
+ labor_classification: z.ZodString;
13162
+ hourly_rate_cents: z.ZodString;
13163
+ fringe_rate_cents: z.ZodString;
13164
+ class_code: z.ZodNullable<z.ZodString>;
13165
+ construction_category: z.ZodNullable<z.ZodEnum<{
13166
+ building: "building";
13167
+ heavy: "heavy";
13168
+ highway: "highway";
13169
+ residential: "residential";
13170
+ }>>;
13171
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13172
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13173
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13174
+ created_at: z.ZodISODateTime;
13175
+ updated_at: z.ZodISODateTime;
13176
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
13177
+ }, z.core.$strip>, z.ZodObject<{
13178
+ id: z.ZodString;
13179
+ job_id: z.ZodString;
13180
+ pwa_trade_id: z.ZodString;
13181
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13182
+ labor_classification: z.ZodString;
13183
+ hourly_rate_cents: z.ZodString;
13184
+ fringe_rate_cents: z.ZodString;
13185
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13186
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
13187
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13188
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13189
+ created_at: z.ZodISODateTime;
13190
+ updated_at: z.ZodISODateTime;
13191
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
13192
+ }, z.core.$strip>], "type">;
12348
13193
  export declare const zListJobWageDeterminationsPath: z.ZodObject<{
12349
13194
  job_id: z.ZodString;
12350
13195
  }, z.core.$strip>;
@@ -12359,21 +13204,22 @@ export declare const zListJobWageDeterminationsQuery: z.ZodObject<{
12359
13204
  * Success
12360
13205
  */
12361
13206
  export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
12362
- meta: z.ZodOptional<z.ZodObject<{
13207
+ meta: z.ZodObject<{
12363
13208
  page: z.ZodObject<{
12364
13209
  next_cursor: z.ZodNullable<z.ZodString>;
12365
13210
  current_cursor: z.ZodNullable<z.ZodString>;
12366
13211
  }, z.core.$strip>;
12367
- }, z.core.$strip>>;
12368
- links: z.ZodOptional<z.ZodObject<{
13212
+ }, z.core.$strip>;
13213
+ links: z.ZodObject<{
12369
13214
  self: z.ZodString;
12370
13215
  first: z.ZodNullable<z.ZodString>;
12371
13216
  next: z.ZodNullable<z.ZodString>;
12372
- }, z.core.$strip>>;
12373
- data: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
13217
+ }, z.core.$strip>;
13218
+ data: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
12374
13219
  id: z.ZodString;
12375
13220
  job_id: z.ZodString;
12376
13221
  pwa_trade_id: z.ZodString;
13222
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12377
13223
  labor_classification: z.ZodString;
12378
13224
  hourly_rate_cents: z.ZodString;
12379
13225
  fringe_rate_cents: z.ZodString;
@@ -12394,6 +13240,7 @@ export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
12394
13240
  id: z.ZodString;
12395
13241
  job_id: z.ZodString;
12396
13242
  pwa_trade_id: z.ZodString;
13243
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12397
13244
  labor_classification: z.ZodString;
12398
13245
  hourly_rate_cents: z.ZodString;
12399
13246
  fringe_rate_cents: z.ZodString;
@@ -12404,7 +13251,7 @@ export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
12404
13251
  created_at: z.ZodISODateTime;
12405
13252
  updated_at: z.ZodISODateTime;
12406
13253
  type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
12407
- }, z.core.$strip>], "type">>>;
13254
+ }, z.core.$strip>], "type">>;
12408
13255
  }, z.core.$strip>;
12409
13256
  export declare const zCreateWageDeterminationBody: z.ZodDiscriminatedUnion<[z.ZodObject<{
12410
13257
  labor_classification: z.ZodString;
@@ -12449,6 +13296,7 @@ export declare const zCreateWageDeterminationResponse: z.ZodDiscriminatedUnion<[
12449
13296
  id: z.ZodString;
12450
13297
  job_id: z.ZodString;
12451
13298
  pwa_trade_id: z.ZodString;
13299
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12452
13300
  labor_classification: z.ZodString;
12453
13301
  hourly_rate_cents: z.ZodString;
12454
13302
  fringe_rate_cents: z.ZodString;
@@ -12469,6 +13317,7 @@ export declare const zCreateWageDeterminationResponse: z.ZodDiscriminatedUnion<[
12469
13317
  id: z.ZodString;
12470
13318
  job_id: z.ZodString;
12471
13319
  pwa_trade_id: z.ZodString;
13320
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12472
13321
  labor_classification: z.ZodString;
12473
13322
  hourly_rate_cents: z.ZodString;
12474
13323
  fringe_rate_cents: z.ZodString;
@@ -12494,6 +13343,7 @@ export declare const zDeleteWageDeterminationResponse: z.ZodDiscriminatedUnion<[
12494
13343
  id: z.ZodString;
12495
13344
  job_id: z.ZodString;
12496
13345
  pwa_trade_id: z.ZodString;
13346
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12497
13347
  labor_classification: z.ZodString;
12498
13348
  hourly_rate_cents: z.ZodString;
12499
13349
  fringe_rate_cents: z.ZodString;
@@ -12514,6 +13364,7 @@ export declare const zDeleteWageDeterminationResponse: z.ZodDiscriminatedUnion<[
12514
13364
  id: z.ZodString;
12515
13365
  job_id: z.ZodString;
12516
13366
  pwa_trade_id: z.ZodString;
13367
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12517
13368
  labor_classification: z.ZodString;
12518
13369
  hourly_rate_cents: z.ZodString;
12519
13370
  fringe_rate_cents: z.ZodString;
@@ -12529,16 +13380,90 @@ export declare const zGetJobWageDeterminationPath: z.ZodObject<{
12529
13380
  job_id: z.ZodString;
12530
13381
  id: z.ZodString;
12531
13382
  }, z.core.$strip>;
12532
- export declare const zGetJobWageDeterminationQuery: z.ZodObject<{
12533
- 'as_of[valid]': z.ZodOptional<z.ZodISODateTime>;
12534
- }, z.core.$strip>;
13383
+ export declare const zGetJobWageDeterminationQuery: z.ZodObject<{
13384
+ 'as_of[valid]': z.ZodOptional<z.ZodISODateTime>;
13385
+ }, z.core.$strip>;
13386
+ /**
13387
+ * Success
13388
+ */
13389
+ export declare const zGetJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
13390
+ id: z.ZodString;
13391
+ job_id: z.ZodString;
13392
+ pwa_trade_id: z.ZodString;
13393
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13394
+ labor_classification: z.ZodString;
13395
+ hourly_rate_cents: z.ZodString;
13396
+ fringe_rate_cents: z.ZodString;
13397
+ class_code: z.ZodNullable<z.ZodString>;
13398
+ construction_category: z.ZodNullable<z.ZodEnum<{
13399
+ building: "building";
13400
+ heavy: "heavy";
13401
+ highway: "highway";
13402
+ residential: "residential";
13403
+ }>>;
13404
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13405
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13406
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13407
+ created_at: z.ZodISODateTime;
13408
+ updated_at: z.ZodISODateTime;
13409
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
13410
+ }, z.core.$strip>, z.ZodObject<{
13411
+ id: z.ZodString;
13412
+ job_id: z.ZodString;
13413
+ pwa_trade_id: z.ZodString;
13414
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13415
+ labor_classification: z.ZodString;
13416
+ hourly_rate_cents: z.ZodString;
13417
+ fringe_rate_cents: z.ZodString;
13418
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13419
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
13420
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13421
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13422
+ created_at: z.ZodISODateTime;
13423
+ updated_at: z.ZodISODateTime;
13424
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
13425
+ }, z.core.$strip>], "type">;
13426
+ export declare const zUpdateJobWageDeterminationBody: z.ZodObject<{
13427
+ effective_from: z.ZodOptional<z.ZodISODate>;
13428
+ labor_classification: z.ZodOptional<z.ZodString>;
13429
+ pwa_trade_id: z.ZodOptional<z.ZodString>;
13430
+ hourly_rate_cents: z.ZodOptional<z.ZodString>;
13431
+ fringe_rate_cents: z.ZodOptional<z.ZodString>;
13432
+ class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13433
+ construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
13434
+ building: "building";
13435
+ heavy: "heavy";
13436
+ highway: "highway";
13437
+ residential: "residential";
13438
+ }>>>;
13439
+ general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13440
+ regional_fields: z.ZodOptional<z.ZodObject<{
13441
+ combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13442
+ combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13443
+ combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13444
+ training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13445
+ other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13446
+ one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13447
+ two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13448
+ one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13449
+ two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13450
+ }, z.core.$strip>>;
13451
+ }, z.core.$strip>;
13452
+ export declare const zUpdateJobWageDeterminationHeaders: z.ZodObject<{
13453
+ 'If-Match': z.ZodString;
13454
+ }, z.core.$strip>;
13455
+ export declare const zUpdateJobWageDeterminationPath: z.ZodObject<{
13456
+ job_id: z.ZodString;
13457
+ id: z.ZodString;
13458
+ }, z.core.$strip>;
12535
13459
  /**
12536
13460
  * Success
12537
13461
  */
12538
- export declare const zGetJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
13462
+ export declare const zUpdateJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
12539
13463
  id: z.ZodString;
12540
13464
  job_id: z.ZodString;
12541
13465
  pwa_trade_id: z.ZodString;
13466
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12542
13467
  labor_classification: z.ZodString;
12543
13468
  hourly_rate_cents: z.ZodString;
12544
13469
  fringe_rate_cents: z.ZodString;
@@ -12559,6 +13484,7 @@ export declare const zGetJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[
12559
13484
  id: z.ZodString;
12560
13485
  job_id: z.ZodString;
12561
13486
  pwa_trade_id: z.ZodString;
13487
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12562
13488
  labor_classification: z.ZodString;
12563
13489
  hourly_rate_cents: z.ZodString;
12564
13490
  fringe_rate_cents: z.ZodString;
@@ -12585,18 +13511,18 @@ export declare const zListJobsQuery: z.ZodObject<{
12585
13511
  * Success
12586
13512
  */
12587
13513
  export declare const zListJobsResponse: z.ZodObject<{
12588
- meta: z.ZodOptional<z.ZodObject<{
13514
+ meta: z.ZodObject<{
12589
13515
  page: z.ZodObject<{
12590
13516
  next_cursor: z.ZodNullable<z.ZodString>;
12591
13517
  current_cursor: z.ZodNullable<z.ZodString>;
12592
13518
  }, z.core.$strip>;
12593
- }, z.core.$strip>>;
12594
- links: z.ZodOptional<z.ZodObject<{
13519
+ }, z.core.$strip>;
13520
+ links: z.ZodObject<{
12595
13521
  self: z.ZodString;
12596
13522
  first: z.ZodNullable<z.ZodString>;
12597
13523
  next: z.ZodNullable<z.ZodString>;
12598
- }, z.core.$strip>>;
12599
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
13524
+ }, z.core.$strip>;
13525
+ data: z.ZodArray<z.ZodObject<{
12600
13526
  id: z.ZodString;
12601
13527
  display_id: z.ZodInt;
12602
13528
  description: z.ZodString;
@@ -12687,7 +13613,7 @@ export declare const zListJobsResponse: z.ZodObject<{
12687
13613
  tracks_feature_allocations: z.ZodBoolean;
12688
13614
  requires_feature_allocation: z.ZodBoolean;
12689
13615
  max_one_feature_allocation: z.ZodBoolean;
12690
- }, z.core.$strip>>>;
13616
+ }, z.core.$strip>>;
12691
13617
  }, z.core.$strip>;
12692
13618
  /**
12693
13619
  * Create a job
@@ -12747,6 +13673,10 @@ export declare const zCreateJobBody: z.ZodObject<{
12747
13673
  verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
12748
13674
  label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12749
13675
  }, z.core.$strip>>>;
13676
+ custom_fields_attributes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
13677
+ custom_field_config_id: z.ZodString;
13678
+ value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13679
+ }, z.core.$strip>>>>;
12750
13680
  pwa_details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12751
13681
  contractor_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12752
13682
  pay_full_cash_fringe_by_default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -13014,6 +13944,10 @@ export declare const zUpdateJobBody: z.ZodIntersection<z.ZodObject<{
13014
13944
  verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13015
13945
  label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13016
13946
  }, z.core.$strip>>>;
13947
+ custom_fields_attributes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
13948
+ custom_field_config_id: z.ZodString;
13949
+ value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13950
+ }, z.core.$strip>>>>;
13017
13951
  pwa_details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13018
13952
  contractor_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13019
13953
  pay_full_cash_fringe_by_default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -13271,18 +14205,18 @@ export declare const zListPayPeriodsResponse: z.ZodObject<{
13271
14205
  * Success
13272
14206
  */
13273
14207
  export declare const zListCompensationElementsResponse: z.ZodObject<{
13274
- meta: z.ZodOptional<z.ZodObject<{
14208
+ meta: z.ZodObject<{
13275
14209
  page: z.ZodObject<{
13276
14210
  next_cursor: z.ZodNullable<z.ZodString>;
13277
14211
  current_cursor: z.ZodNullable<z.ZodString>;
13278
14212
  }, z.core.$strip>;
13279
- }, z.core.$strip>>;
13280
- links: z.ZodOptional<z.ZodObject<{
14213
+ }, z.core.$strip>;
14214
+ links: z.ZodObject<{
13281
14215
  self: z.ZodString;
13282
14216
  first: z.ZodNullable<z.ZodString>;
13283
14217
  next: z.ZodNullable<z.ZodString>;
13284
- }, z.core.$strip>>;
13285
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
14218
+ }, z.core.$strip>;
14219
+ data: z.ZodArray<z.ZodObject<{
13286
14220
  id: z.ZodString;
13287
14221
  name: z.ZodString;
13288
14222
  description: z.ZodNullable<z.ZodString>;
@@ -13326,7 +14260,7 @@ export declare const zListCompensationElementsResponse: z.ZodObject<{
13326
14260
  }>;
13327
14261
  created_at: z.ZodISODateTime;
13328
14262
  updated_at: z.ZodISODateTime;
13329
- }, z.core.$strip>>>;
14263
+ }, z.core.$strip>>;
13330
14264
  }, z.core.$strip>;
13331
14265
  export declare const zGetCompensationElementPath: z.ZodObject<{
13332
14266
  id: z.ZodString;
@@ -13390,18 +14324,18 @@ export declare const zListExternalMapHistoryQuery: z.ZodObject<{
13390
14324
  * Success
13391
14325
  */
13392
14326
  export declare const zListExternalMapHistoryResponse: z.ZodObject<{
13393
- meta: z.ZodOptional<z.ZodObject<{
14327
+ meta: z.ZodObject<{
13394
14328
  page: z.ZodObject<{
13395
14329
  next_cursor: z.ZodNullable<z.ZodString>;
13396
14330
  current_cursor: z.ZodNullable<z.ZodString>;
13397
14331
  }, z.core.$strip>;
13398
- }, z.core.$strip>>;
13399
- links: z.ZodOptional<z.ZodObject<{
14332
+ }, z.core.$strip>;
14333
+ links: z.ZodObject<{
13400
14334
  self: z.ZodString;
13401
14335
  first: z.ZodNullable<z.ZodString>;
13402
14336
  next: z.ZodNullable<z.ZodString>;
13403
- }, z.core.$strip>>;
13404
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
14337
+ }, z.core.$strip>;
14338
+ data: z.ZodArray<z.ZodObject<{
13405
14339
  payrolls_external_map_id: z.ZodString;
13406
14340
  name: z.ZodString;
13407
14341
  payrolls_compensation_element_id: z.ZodString;
@@ -13467,7 +14401,7 @@ export declare const zListExternalMapHistoryResponse: z.ZodObject<{
13467
14401
  created_at: z.ZodISODateTime;
13468
14402
  updated_at: z.ZodISODateTime;
13469
14403
  }, z.core.$strip>>;
13470
- }, z.core.$strip>>>;
14404
+ }, z.core.$strip>>;
13471
14405
  }, z.core.$strip>;
13472
14406
  export declare const zListExternalMapsQuery: z.ZodObject<{
13473
14407
  'filter[name]': z.ZodOptional<z.ZodString>;
@@ -13488,18 +14422,18 @@ export declare const zListExternalMapsQuery: z.ZodObject<{
13488
14422
  * Success
13489
14423
  */
13490
14424
  export declare const zListExternalMapsResponse: z.ZodObject<{
13491
- meta: z.ZodOptional<z.ZodObject<{
14425
+ meta: z.ZodObject<{
13492
14426
  page: z.ZodObject<{
13493
14427
  next_cursor: z.ZodNullable<z.ZodString>;
13494
14428
  current_cursor: z.ZodNullable<z.ZodString>;
13495
14429
  }, z.core.$strip>;
13496
- }, z.core.$strip>>;
13497
- links: z.ZodOptional<z.ZodObject<{
14430
+ }, z.core.$strip>;
14431
+ links: z.ZodObject<{
13498
14432
  self: z.ZodString;
13499
14433
  first: z.ZodNullable<z.ZodString>;
13500
14434
  next: z.ZodNullable<z.ZodString>;
13501
- }, z.core.$strip>>;
13502
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
14435
+ }, z.core.$strip>;
14436
+ data: z.ZodArray<z.ZodObject<{
13503
14437
  id: z.ZodString;
13504
14438
  name: z.ZodString;
13505
14439
  payrolls_compensation_element_id: z.ZodString;
@@ -13529,7 +14463,7 @@ export declare const zListExternalMapsResponse: z.ZodObject<{
13529
14463
  transaction_to: z.ZodNullable<z.ZodISODateTime>;
13530
14464
  created_at: z.ZodISODateTime;
13531
14465
  updated_at: z.ZodISODateTime;
13532
- }, z.core.$strip>>>;
14466
+ }, z.core.$strip>>;
13533
14467
  }, z.core.$strip>;
13534
14468
  export declare const zGetExternalMapPath: z.ZodObject<{
13535
14469
  id: z.ZodString;
@@ -13585,18 +14519,18 @@ export declare const zListFringeBenefitPlansQuery: z.ZodObject<{
13585
14519
  * Success
13586
14520
  */
13587
14521
  export declare const zListFringeBenefitPlansResponse: z.ZodObject<{
13588
- meta: z.ZodOptional<z.ZodObject<{
14522
+ meta: z.ZodObject<{
13589
14523
  page: z.ZodObject<{
13590
14524
  next_cursor: z.ZodNullable<z.ZodString>;
13591
14525
  current_cursor: z.ZodNullable<z.ZodString>;
13592
14526
  }, z.core.$strip>;
13593
- }, z.core.$strip>>;
13594
- links: z.ZodOptional<z.ZodObject<{
14527
+ }, z.core.$strip>;
14528
+ links: z.ZodObject<{
13595
14529
  self: z.ZodString;
13596
14530
  first: z.ZodNullable<z.ZodString>;
13597
14531
  next: z.ZodNullable<z.ZodString>;
13598
- }, z.core.$strip>>;
13599
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
14532
+ }, z.core.$strip>;
14533
+ data: z.ZodArray<z.ZodObject<{
13600
14534
  id: z.ZodString;
13601
14535
  timekeeping_pay_period_config_id: z.ZodString;
13602
14536
  name: z.ZodString;
@@ -13620,7 +14554,7 @@ export declare const zListFringeBenefitPlansResponse: z.ZodObject<{
13620
14554
  il_admin_name: z.ZodNullable<z.ZodString>;
13621
14555
  created_at: z.ZodISODateTime;
13622
14556
  updated_at: z.ZodISODateTime;
13623
- }, z.core.$strip>>>;
14557
+ }, z.core.$strip>>;
13624
14558
  }, z.core.$strip>;
13625
14559
  export declare const zCreateFringeBenefitPlanBody: z.ZodObject<{
13626
14560
  timekeeping_pay_period_config_id: z.ZodString;
@@ -14305,18 +15239,18 @@ export declare const zListPerDiemsQuery: z.ZodObject<{
14305
15239
  * Success
14306
15240
  */
14307
15241
  export declare const zListPerDiemsResponse: z.ZodObject<{
14308
- meta: z.ZodOptional<z.ZodObject<{
15242
+ meta: z.ZodObject<{
14309
15243
  page: z.ZodObject<{
14310
15244
  next_cursor: z.ZodNullable<z.ZodString>;
14311
15245
  current_cursor: z.ZodNullable<z.ZodString>;
14312
15246
  }, z.core.$strip>;
14313
- }, z.core.$strip>>;
14314
- links: z.ZodOptional<z.ZodObject<{
15247
+ }, z.core.$strip>;
15248
+ links: z.ZodObject<{
14315
15249
  self: z.ZodString;
14316
15250
  first: z.ZodNullable<z.ZodString>;
14317
15251
  next: z.ZodNullable<z.ZodString>;
14318
- }, z.core.$strip>>;
14319
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
15252
+ }, z.core.$strip>;
15253
+ data: z.ZodArray<z.ZodObject<{
14320
15254
  id: z.ZodString;
14321
15255
  name: z.ZodNullable<z.ZodString>;
14322
15256
  description: z.ZodNullable<z.ZodString>;
@@ -14329,12 +15263,12 @@ export declare const zListPerDiemsResponse: z.ZodObject<{
14329
15263
  timekeeping_timecode_ids: z.ZodArray<z.ZodString>;
14330
15264
  created_at: z.ZodISODateTime;
14331
15265
  updated_at: z.ZodISODateTime;
14332
- }, z.core.$strip>>>;
15266
+ }, z.core.$strip>>;
14333
15267
  }, z.core.$strip>;
14334
15268
  export declare const zCreatePerDiemBody: z.ZodObject<{
14335
15269
  name: z.ZodString;
14336
15270
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14337
- rate_cents: z.ZodNullable<z.ZodString>;
15271
+ rate_cents: z.ZodString;
14338
15272
  currency: z.ZodString;
14339
15273
  taxable: z.ZodOptional<z.ZodBoolean>;
14340
15274
  default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -14402,7 +15336,7 @@ export declare const zGetPerDiemResponse: z.ZodObject<{
14402
15336
  export declare const zUpdatePerDiemBody: z.ZodObject<{
14403
15337
  name: z.ZodString;
14404
15338
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14405
- rate_cents: z.ZodNullable<z.ZodString>;
15339
+ rate_cents: z.ZodString;
14406
15340
  currency: z.ZodString;
14407
15341
  taxable: z.ZodOptional<z.ZodBoolean>;
14408
15342
  default: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -14439,25 +15373,25 @@ export declare const zListPositionFunctionsQuery: z.ZodObject<{
14439
15373
  * Success
14440
15374
  */
14441
15375
  export declare const zListPositionFunctionsResponse: z.ZodObject<{
14442
- meta: z.ZodOptional<z.ZodObject<{
15376
+ meta: z.ZodObject<{
14443
15377
  page: z.ZodObject<{
14444
15378
  next_cursor: z.ZodNullable<z.ZodString>;
14445
15379
  current_cursor: z.ZodNullable<z.ZodString>;
14446
15380
  }, z.core.$strip>;
14447
- }, z.core.$strip>>;
14448
- links: z.ZodOptional<z.ZodObject<{
15381
+ }, z.core.$strip>;
15382
+ links: z.ZodObject<{
14449
15383
  self: z.ZodString;
14450
15384
  first: z.ZodNullable<z.ZodString>;
14451
15385
  next: z.ZodNullable<z.ZodString>;
14452
- }, z.core.$strip>>;
14453
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
15386
+ }, z.core.$strip>;
15387
+ data: z.ZodArray<z.ZodObject<{
14454
15388
  id: z.ZodString;
14455
15389
  value: z.ZodString;
14456
15390
  description: z.ZodNullable<z.ZodString>;
14457
15391
  scoped_to_company_id: z.ZodNullable<z.ZodString>;
14458
15392
  created_at: z.ZodISODateTime;
14459
15393
  updated_at: z.ZodISODateTime;
14460
- }, z.core.$strip>>>;
15394
+ }, z.core.$strip>>;
14461
15395
  }, z.core.$strip>;
14462
15396
  export declare const zCreatePositionFunctionBody: z.ZodObject<{
14463
15397
  value: z.ZodString;
@@ -14541,18 +15475,18 @@ export declare const zListCompletionsQuery: z.ZodObject<{
14541
15475
  * Success
14542
15476
  */
14543
15477
  export declare const zListCompletionsResponse: z.ZodObject<{
14544
- meta: z.ZodOptional<z.ZodObject<{
15478
+ meta: z.ZodObject<{
14545
15479
  page: z.ZodObject<{
14546
15480
  next_cursor: z.ZodNullable<z.ZodString>;
14547
15481
  current_cursor: z.ZodNullable<z.ZodString>;
14548
15482
  }, z.core.$strip>;
14549
- }, z.core.$strip>>;
14550
- links: z.ZodOptional<z.ZodObject<{
15483
+ }, z.core.$strip>;
15484
+ links: z.ZodObject<{
14551
15485
  self: z.ZodString;
14552
15486
  first: z.ZodNullable<z.ZodString>;
14553
15487
  next: z.ZodNullable<z.ZodString>;
14554
- }, z.core.$strip>>;
14555
- data: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
15488
+ }, z.core.$strip>;
15489
+ data: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
14556
15490
  id: z.ZodString;
14557
15491
  notes: z.ZodNullable<z.ZodString>;
14558
15492
  completable_id: z.ZodString;
@@ -14582,7 +15516,7 @@ export declare const zListCompletionsResponse: z.ZodObject<{
14582
15516
  updated_at: z.ZodISODateTime;
14583
15517
  work_date: z.ZodISODate;
14584
15518
  completable_type: z.ZodLiteral<"Production::QuantityCompletion">;
14585
- }, z.core.$strip>], "completable_type">>>;
15519
+ }, z.core.$strip>], "completable_type">>;
14586
15520
  }, z.core.$strip>;
14587
15521
  export declare const zCreateCompletionBody: z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
14588
15522
  production_job_scope_price_id: z.ZodOptional<z.ZodString>;
@@ -14817,18 +15751,18 @@ export declare const zListProjectsQuery: z.ZodObject<{
14817
15751
  * Success
14818
15752
  */
14819
15753
  export declare const zListProjectsResponse: z.ZodObject<{
14820
- meta: z.ZodOptional<z.ZodObject<{
15754
+ meta: z.ZodObject<{
14821
15755
  page: z.ZodObject<{
14822
15756
  next_cursor: z.ZodNullable<z.ZodString>;
14823
15757
  current_cursor: z.ZodNullable<z.ZodString>;
14824
15758
  }, z.core.$strip>;
14825
- }, z.core.$strip>>;
14826
- links: z.ZodOptional<z.ZodObject<{
15759
+ }, z.core.$strip>;
15760
+ links: z.ZodObject<{
14827
15761
  self: z.ZodString;
14828
15762
  first: z.ZodNullable<z.ZodString>;
14829
15763
  next: z.ZodNullable<z.ZodString>;
14830
- }, z.core.$strip>>;
14831
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
15764
+ }, z.core.$strip>;
15765
+ data: z.ZodArray<z.ZodObject<{
14832
15766
  id: z.ZodString;
14833
15767
  external_id: z.ZodNullable<z.ZodString>;
14834
15768
  name: z.ZodString;
@@ -14864,7 +15798,7 @@ export declare const zListProjectsResponse: z.ZodObject<{
14864
15798
  placed_in_service_date: z.ZodNullable<z.ZodISODate>;
14865
15799
  created_at: z.ZodISODateTime;
14866
15800
  updated_at: z.ZodISODateTime;
14867
- }, z.core.$strip>>>;
15801
+ }, z.core.$strip>>;
14868
15802
  }, z.core.$strip>;
14869
15803
  export declare const zCreateProjectBody: z.ZodObject<{
14870
15804
  external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -15458,18 +16392,18 @@ export declare const zListTradesQuery: z.ZodObject<{
15458
16392
  * Success
15459
16393
  */
15460
16394
  export declare const zListTradesResponse: z.ZodObject<{
15461
- meta: z.ZodOptional<z.ZodObject<{
16395
+ meta: z.ZodObject<{
15462
16396
  page: z.ZodObject<{
15463
16397
  next_cursor: z.ZodNullable<z.ZodString>;
15464
16398
  current_cursor: z.ZodNullable<z.ZodString>;
15465
16399
  }, z.core.$strip>;
15466
- }, z.core.$strip>>;
15467
- links: z.ZodOptional<z.ZodObject<{
16400
+ }, z.core.$strip>;
16401
+ links: z.ZodObject<{
15468
16402
  self: z.ZodString;
15469
16403
  first: z.ZodNullable<z.ZodString>;
15470
16404
  next: z.ZodNullable<z.ZodString>;
15471
- }, z.core.$strip>>;
15472
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
16405
+ }, z.core.$strip>;
16406
+ data: z.ZodArray<z.ZodObject<{
15473
16407
  id: z.ZodString;
15474
16408
  project_id: z.ZodNullable<z.ZodString>;
15475
16409
  job_id: z.ZodNullable<z.ZodString>;
@@ -15477,7 +16411,7 @@ export declare const zListTradesResponse: z.ZodObject<{
15477
16411
  normalized_key: z.ZodString;
15478
16412
  created_at: z.ZodISODateTime;
15479
16413
  updated_at: z.ZodISODateTime;
15480
- }, z.core.$strip>>>;
16414
+ }, z.core.$strip>>;
15481
16415
  }, z.core.$strip>;
15482
16416
  export declare const zGetTradePath: z.ZodObject<{
15483
16417
  id: z.ZodString;
@@ -15767,22 +16701,22 @@ export declare const zListTemplatesQuery: z.ZodObject<{
15767
16701
  * Success
15768
16702
  */
15769
16703
  export declare const zListTemplatesResponse: z.ZodObject<{
15770
- meta: z.ZodOptional<z.ZodObject<{
16704
+ meta: z.ZodObject<{
15771
16705
  page: z.ZodObject<{
15772
16706
  next_cursor: z.ZodNullable<z.ZodString>;
15773
16707
  current_cursor: z.ZodNullable<z.ZodString>;
15774
16708
  }, z.core.$strip>;
15775
- }, z.core.$strip>>;
15776
- links: z.ZodOptional<z.ZodObject<{
16709
+ }, z.core.$strip>;
16710
+ links: z.ZodObject<{
15777
16711
  self: z.ZodString;
15778
16712
  first: z.ZodNullable<z.ZodString>;
15779
16713
  next: z.ZodNullable<z.ZodString>;
15780
- }, z.core.$strip>>;
15781
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
16714
+ }, z.core.$strip>;
16715
+ data: z.ZodArray<z.ZodObject<{
15782
16716
  id: z.ZodString;
15783
16717
  name: z.ZodString;
15784
16718
  description: z.ZodNullable<z.ZodString>;
15785
- }, z.core.$strip>>>;
16719
+ }, z.core.$strip>>;
15786
16720
  }, z.core.$strip>;
15787
16721
  export declare const zSetTimeCardLockBody: z.ZodObject<{
15788
16722
  locked: z.ZodBoolean;
@@ -15874,18 +16808,18 @@ export declare const zListTimeCardPerDiemsQuery: z.ZodObject<{
15874
16808
  * Success
15875
16809
  */
15876
16810
  export declare const zListTimeCardPerDiemsResponse: z.ZodObject<{
15877
- meta: z.ZodOptional<z.ZodObject<{
16811
+ meta: z.ZodObject<{
15878
16812
  page: z.ZodObject<{
15879
16813
  next_cursor: z.ZodNullable<z.ZodString>;
15880
16814
  current_cursor: z.ZodNullable<z.ZodString>;
15881
16815
  }, z.core.$strip>;
15882
- }, z.core.$strip>>;
15883
- links: z.ZodOptional<z.ZodObject<{
16816
+ }, z.core.$strip>;
16817
+ links: z.ZodObject<{
15884
16818
  self: z.ZodString;
15885
16819
  first: z.ZodNullable<z.ZodString>;
15886
16820
  next: z.ZodNullable<z.ZodString>;
15887
- }, z.core.$strip>>;
15888
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
16821
+ }, z.core.$strip>;
16822
+ data: z.ZodArray<z.ZodObject<{
15889
16823
  id: z.ZodString;
15890
16824
  timekeeping_time_card_id: z.ZodString;
15891
16825
  date: z.ZodISODate;
@@ -15896,13 +16830,12 @@ export declare const zListTimeCardPerDiemsResponse: z.ZodObject<{
15896
16830
  taxable: z.ZodBoolean;
15897
16831
  created_at: z.ZodISODateTime;
15898
16832
  updated_at: z.ZodISODateTime;
15899
- }, z.core.$strip>>>;
16833
+ }, z.core.$strip>>;
15900
16834
  }, z.core.$strip>;
15901
16835
  export declare const zCreateTimeCardPerDiemBody: z.ZodObject<{
15902
16836
  date: z.ZodISODate;
15903
16837
  approver_user_id: z.ZodString;
15904
16838
  per_diem_id: z.ZodString;
15905
- taxable: z.ZodOptional<z.ZodBoolean>;
15906
16839
  }, z.core.$strip>;
15907
16840
  export declare const zCreateTimeCardPerDiemPath: z.ZodObject<{
15908
16841
  time_card_id: z.ZodString;
@@ -15945,7 +16878,6 @@ export declare const zUpdateTimeCardPerDiemBody: z.ZodObject<{
15945
16878
  date: z.ZodISODate;
15946
16879
  approver_user_id: z.ZodString;
15947
16880
  per_diem_id: z.ZodString;
15948
- taxable: z.ZodOptional<z.ZodBoolean>;
15949
16881
  }, z.core.$strip>;
15950
16882
  export declare const zUpdateTimeCardPerDiemPath: z.ZodObject<{
15951
16883
  time_card_id: z.ZodString;
@@ -15979,18 +16911,18 @@ export declare const zListPriorPeriodAdjustmentsQuery: z.ZodObject<{
15979
16911
  * Success
15980
16912
  */
15981
16913
  export declare const zListPriorPeriodAdjustmentsResponse: z.ZodObject<{
15982
- meta: z.ZodOptional<z.ZodObject<{
16914
+ meta: z.ZodObject<{
15983
16915
  page: z.ZodObject<{
15984
16916
  next_cursor: z.ZodNullable<z.ZodString>;
15985
16917
  current_cursor: z.ZodNullable<z.ZodString>;
15986
16918
  }, z.core.$strip>;
15987
- }, z.core.$strip>>;
15988
- links: z.ZodOptional<z.ZodObject<{
16919
+ }, z.core.$strip>;
16920
+ links: z.ZodObject<{
15989
16921
  self: z.ZodString;
15990
16922
  first: z.ZodNullable<z.ZodString>;
15991
16923
  next: z.ZodNullable<z.ZodString>;
15992
- }, z.core.$strip>>;
15993
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
16924
+ }, z.core.$strip>;
16925
+ data: z.ZodArray<z.ZodObject<{
15994
16926
  id: z.ZodString;
15995
16927
  timekeeping_time_card_id: z.ZodString;
15996
16928
  payrolls_paystub_line_item_id: z.ZodString;
@@ -16012,7 +16944,7 @@ export declare const zListPriorPeriodAdjustmentsResponse: z.ZodObject<{
16012
16944
  currency: z.ZodString;
16013
16945
  created_at: z.ZodISODateTime;
16014
16946
  updated_at: z.ZodISODateTime;
16015
- }, z.core.$strip>>>;
16947
+ }, z.core.$strip>>;
16016
16948
  }, z.core.$strip>;
16017
16949
  export declare const zGetPriorPeriodAdjustmentPath: z.ZodObject<{
16018
16950
  time_card_id: z.ZodString;
@@ -16298,18 +17230,19 @@ export declare const zListTimeEntriesResponse: z.ZodObject<{
16298
17230
  }, z.core.$strip>>;
16299
17231
  }, z.core.$strip>>;
16300
17232
  }, 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;
17233
+ export declare const zCreateTimeEntryBody: z.ZodIntersection<z.ZodObject<{
17234
+ timekeeping_time_card_id: z.ZodOptional<z.ZodString>;
17235
+ start_time: z.ZodOptional<z.ZodISODateTime>;
17236
+ end_time: z.ZodOptional<z.ZodISODateTime>;
16305
17237
  job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16306
17238
  timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16307
17239
  state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16308
17240
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16309
17241
  hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16310
17242
  feature_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
17243
+ }, z.core.$strip>, z.ZodObject<{
16311
17244
  feature_allocation_acknowledged: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
16312
- }, z.core.$strip>;
17245
+ }, z.core.$strip>>;
16313
17246
  /**
16314
17247
  * Created
16315
17248
  */
@@ -16389,18 +17322,19 @@ export declare const zDeleteTimeEntryResponse: z.ZodObject<{
16389
17322
  name: z.ZodString;
16390
17323
  }, z.core.$strip>>;
16391
17324
  }, 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;
17325
+ export declare const zUpdateTimeEntryBody: z.ZodIntersection<z.ZodObject<{
17326
+ timekeeping_time_card_id: z.ZodOptional<z.ZodString>;
17327
+ start_time: z.ZodOptional<z.ZodISODateTime>;
17328
+ end_time: z.ZodOptional<z.ZodISODateTime>;
16396
17329
  job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16397
17330
  timekeeping_timecode_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16398
17331
  state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16399
17332
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16400
17333
  hourly_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16401
17334
  feature_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
16402
- feature_allocation_acknowledged: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
16403
- }, z.core.$strip>;
17335
+ }, z.core.$strip>, z.ZodObject<{
17336
+ confirm_allocation_conflict: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
17337
+ }, z.core.$strip>>;
16404
17338
  export declare const zUpdateTimeEntryPath: z.ZodObject<{
16405
17339
  id: z.ZodString;
16406
17340
  }, z.core.$strip>;
@@ -16495,18 +17429,18 @@ export declare const zListTimecodeHistoryQuery: z.ZodObject<{
16495
17429
  * Success
16496
17430
  */
16497
17431
  export declare const zListTimecodeHistoryResponse: z.ZodObject<{
16498
- meta: z.ZodOptional<z.ZodObject<{
17432
+ meta: z.ZodObject<{
16499
17433
  page: z.ZodObject<{
16500
17434
  next_cursor: z.ZodNullable<z.ZodString>;
16501
17435
  current_cursor: z.ZodNullable<z.ZodString>;
16502
17436
  }, z.core.$strip>;
16503
- }, z.core.$strip>>;
16504
- links: z.ZodOptional<z.ZodObject<{
17437
+ }, z.core.$strip>;
17438
+ links: z.ZodObject<{
16505
17439
  self: z.ZodString;
16506
17440
  first: z.ZodNullable<z.ZodString>;
16507
17441
  next: z.ZodNullable<z.ZodString>;
16508
- }, z.core.$strip>>;
16509
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
17442
+ }, z.core.$strip>;
17443
+ data: z.ZodArray<z.ZodObject<{
16510
17444
  timekeeping_timecode_id: z.ZodString;
16511
17445
  name: z.ZodString;
16512
17446
  description: z.ZodNullable<z.ZodString>;
@@ -16570,7 +17504,7 @@ export declare const zListTimecodeHistoryResponse: z.ZodObject<{
16570
17504
  created_at: z.ZodISODateTime;
16571
17505
  updated_at: z.ZodISODateTime;
16572
17506
  }, z.core.$strip>>;
16573
- }, z.core.$strip>>>;
17507
+ }, z.core.$strip>>;
16574
17508
  }, z.core.$strip>;
16575
17509
  export declare const zCancelTimecodeScheduledChangesHeaders: z.ZodObject<{
16576
17510
  'If-Match': z.ZodString;
@@ -16810,18 +17744,18 @@ export declare const zListTimecodesQuery: z.ZodObject<{
16810
17744
  * Success
16811
17745
  */
16812
17746
  export declare const zListTimecodesResponse: z.ZodObject<{
16813
- meta: z.ZodOptional<z.ZodObject<{
17747
+ meta: z.ZodObject<{
16814
17748
  page: z.ZodObject<{
16815
17749
  next_cursor: z.ZodNullable<z.ZodString>;
16816
17750
  current_cursor: z.ZodNullable<z.ZodString>;
16817
17751
  }, z.core.$strip>;
16818
- }, z.core.$strip>>;
16819
- links: z.ZodOptional<z.ZodObject<{
17752
+ }, z.core.$strip>;
17753
+ links: z.ZodObject<{
16820
17754
  self: z.ZodString;
16821
17755
  first: z.ZodNullable<z.ZodString>;
16822
17756
  next: z.ZodNullable<z.ZodString>;
16823
- }, z.core.$strip>>;
16824
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
17757
+ }, z.core.$strip>;
17758
+ data: z.ZodArray<z.ZodObject<{
16825
17759
  id: z.ZodString;
16826
17760
  name: z.ZodString;
16827
17761
  description: z.ZodNullable<z.ZodString>;
@@ -16850,7 +17784,7 @@ export declare const zListTimecodesResponse: z.ZodObject<{
16850
17784
  transaction_to: z.ZodNullable<z.ZodISODateTime>;
16851
17785
  created_at: z.ZodISODateTime;
16852
17786
  updated_at: z.ZodISODateTime;
16853
- }, z.core.$strip>>>;
17787
+ }, z.core.$strip>>;
16854
17788
  }, z.core.$strip>;
16855
17789
  export declare const zCreateTimecodeBody: z.ZodObject<{
16856
17790
  name: z.ZodString;
@@ -17252,18 +18186,18 @@ export declare const zListAttestationConfigsPath: z.ZodObject<{
17252
18186
  * Success
17253
18187
  */
17254
18188
  export declare const zListAttestationConfigsResponse: z.ZodObject<{
17255
- meta: z.ZodOptional<z.ZodObject<{
18189
+ meta: z.ZodObject<{
17256
18190
  page: z.ZodObject<{
17257
18191
  next_cursor: z.ZodNullable<z.ZodString>;
17258
18192
  current_cursor: z.ZodNullable<z.ZodString>;
17259
18193
  }, z.core.$strip>;
17260
- }, z.core.$strip>>;
17261
- links: z.ZodOptional<z.ZodObject<{
18194
+ }, z.core.$strip>;
18195
+ links: z.ZodObject<{
17262
18196
  self: z.ZodString;
17263
18197
  first: z.ZodNullable<z.ZodString>;
17264
18198
  next: z.ZodNullable<z.ZodString>;
17265
- }, z.core.$strip>>;
17266
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
18199
+ }, z.core.$strip>;
18200
+ data: z.ZodArray<z.ZodObject<{
17267
18201
  id: z.ZodString;
17268
18202
  timekeeping_pay_period_config_id: z.ZodString;
17269
18203
  content: z.ZodString;
@@ -17272,7 +18206,7 @@ export declare const zListAttestationConfigsResponse: z.ZodObject<{
17272
18206
  deleted_at: z.ZodNullable<z.ZodISODateTime>;
17273
18207
  created_at: z.ZodISODateTime;
17274
18208
  updated_at: z.ZodISODateTime;
17275
- }, z.core.$strip>>>;
18209
+ }, z.core.$strip>>;
17276
18210
  }, z.core.$strip>;
17277
18211
  export declare const zCreateAttestationConfigBody: z.ZodObject<{
17278
18212
  content: z.ZodString;
@@ -17339,18 +18273,18 @@ export declare const zListPayPeriodConfigHistoryQuery: z.ZodObject<{
17339
18273
  * Success
17340
18274
  */
17341
18275
  export declare const zListPayPeriodConfigHistoryResponse: z.ZodObject<{
17342
- meta: z.ZodOptional<z.ZodObject<{
18276
+ meta: z.ZodObject<{
17343
18277
  page: z.ZodObject<{
17344
18278
  next_cursor: z.ZodNullable<z.ZodString>;
17345
18279
  current_cursor: z.ZodNullable<z.ZodString>;
17346
18280
  }, z.core.$strip>;
17347
- }, z.core.$strip>>;
17348
- links: z.ZodOptional<z.ZodObject<{
18281
+ }, z.core.$strip>;
18282
+ links: z.ZodObject<{
17349
18283
  self: z.ZodString;
17350
18284
  first: z.ZodNullable<z.ZodString>;
17351
18285
  next: z.ZodNullable<z.ZodString>;
17352
- }, z.core.$strip>>;
17353
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
18286
+ }, z.core.$strip>;
18287
+ data: z.ZodArray<z.ZodObject<{
17354
18288
  timekeeping_pay_period_config_id: z.ZodString;
17355
18289
  company_id: z.ZodString;
17356
18290
  name: z.ZodString;
@@ -17434,7 +18368,7 @@ export declare const zListPayPeriodConfigHistoryResponse: z.ZodObject<{
17434
18368
  valid_to: z.ZodNullable<z.ZodISODateTime>;
17435
18369
  created_at: z.ZodISODateTime;
17436
18370
  }, z.core.$strip>>;
17437
- }, z.core.$strip>>>;
18371
+ }, z.core.$strip>>;
17438
18372
  }, z.core.$strip>;
17439
18373
  export declare const zListHolidaysPath: z.ZodObject<{
17440
18374
  pay_period_config_id: z.ZodString;
@@ -17456,18 +18390,18 @@ export declare const zListHolidaysQuery: z.ZodObject<{
17456
18390
  * Success
17457
18391
  */
17458
18392
  export declare const zListHolidaysResponse: z.ZodObject<{
17459
- meta: z.ZodOptional<z.ZodObject<{
18393
+ meta: z.ZodObject<{
17460
18394
  page: z.ZodObject<{
17461
18395
  next_cursor: z.ZodNullable<z.ZodString>;
17462
18396
  current_cursor: z.ZodNullable<z.ZodString>;
17463
18397
  }, z.core.$strip>;
17464
- }, z.core.$strip>>;
17465
- links: z.ZodOptional<z.ZodObject<{
18398
+ }, z.core.$strip>;
18399
+ links: z.ZodObject<{
17466
18400
  self: z.ZodString;
17467
18401
  first: z.ZodNullable<z.ZodString>;
17468
18402
  next: z.ZodNullable<z.ZodString>;
17469
- }, z.core.$strip>>;
17470
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
18403
+ }, z.core.$strip>;
18404
+ data: z.ZodArray<z.ZodObject<{
17471
18405
  id: z.ZodString;
17472
18406
  timekeeping_pay_period_config_id: z.ZodString;
17473
18407
  date: z.ZodISODate;
@@ -17487,7 +18421,7 @@ export declare const zListHolidaysResponse: z.ZodObject<{
17487
18421
  count_hours_for_overtime: z.ZodBoolean;
17488
18422
  created_at: z.ZodISODateTime;
17489
18423
  updated_at: z.ZodISODateTime;
17490
- }, z.core.$strip>>>;
18424
+ }, z.core.$strip>>;
17491
18425
  }, z.core.$strip>;
17492
18426
  export declare const zCreateHolidayBody: z.ZodObject<{
17493
18427
  name: z.ZodString;
@@ -17620,18 +18554,18 @@ export declare const zListPayPeriodConfigsQuery: z.ZodObject<{
17620
18554
  * Success
17621
18555
  */
17622
18556
  export declare const zListPayPeriodConfigsResponse: z.ZodObject<{
17623
- meta: z.ZodOptional<z.ZodObject<{
18557
+ meta: z.ZodObject<{
17624
18558
  page: z.ZodObject<{
17625
18559
  next_cursor: z.ZodNullable<z.ZodString>;
17626
18560
  current_cursor: z.ZodNullable<z.ZodString>;
17627
18561
  }, z.core.$strip>;
17628
- }, z.core.$strip>>;
17629
- links: z.ZodOptional<z.ZodObject<{
18562
+ }, z.core.$strip>;
18563
+ links: z.ZodObject<{
17630
18564
  self: z.ZodString;
17631
18565
  first: z.ZodNullable<z.ZodString>;
17632
18566
  next: z.ZodNullable<z.ZodString>;
17633
- }, z.core.$strip>>;
17634
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
18567
+ }, z.core.$strip>;
18568
+ data: z.ZodArray<z.ZodObject<{
17635
18569
  id: z.ZodString;
17636
18570
  company_id: z.ZodString;
17637
18571
  name: z.ZodString;
@@ -17670,7 +18604,7 @@ export declare const zListPayPeriodConfigsResponse: z.ZodObject<{
17670
18604
  valid_from: z.ZodNullable<z.ZodISODateTime>;
17671
18605
  valid_to: z.ZodNullable<z.ZodISODateTime>;
17672
18606
  created_at: z.ZodISODateTime;
17673
- }, z.core.$strip>>>;
18607
+ }, z.core.$strip>>;
17674
18608
  }, z.core.$strip>;
17675
18609
  export declare const zGetPayPeriodConfigPath: z.ZodObject<{
17676
18610
  id: z.ZodString;
@@ -17737,18 +18671,18 @@ export declare const zListTimeCardActualsQuery: z.ZodObject<{
17737
18671
  * Success
17738
18672
  */
17739
18673
  export declare const zListTimeCardActualsResponse: z.ZodObject<{
17740
- meta: z.ZodOptional<z.ZodObject<{
18674
+ meta: z.ZodObject<{
17741
18675
  page: z.ZodObject<{
17742
18676
  next_cursor: z.ZodNullable<z.ZodString>;
17743
18677
  current_cursor: z.ZodNullable<z.ZodString>;
17744
18678
  }, z.core.$strip>;
17745
- }, z.core.$strip>>;
17746
- links: z.ZodOptional<z.ZodObject<{
18679
+ }, z.core.$strip>;
18680
+ links: z.ZodObject<{
17747
18681
  self: z.ZodString;
17748
18682
  first: z.ZodNullable<z.ZodString>;
17749
18683
  next: z.ZodNullable<z.ZodString>;
17750
- }, z.core.$strip>>;
17751
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
18684
+ }, z.core.$strip>;
18685
+ data: z.ZodArray<z.ZodObject<{
17752
18686
  id: z.ZodString;
17753
18687
  timekeeping_time_card_id: z.ZodString;
17754
18688
  gross_pay_cents: z.ZodNullable<z.ZodString>;
@@ -17799,7 +18733,7 @@ export declare const zListTimeCardActualsResponse: z.ZodObject<{
17799
18733
  employer_total_contributions_cents: z.ZodNullable<z.ZodString>;
17800
18734
  created_at: z.ZodISODateTime;
17801
18735
  updated_at: z.ZodISODateTime;
17802
- }, z.core.$strip>>>;
18736
+ }, z.core.$strip>>;
17803
18737
  }, z.core.$strip>;
17804
18738
  export declare const zGetTimeCardActualPath: z.ZodObject<{
17805
18739
  id: z.ZodString;
@@ -17872,18 +18806,18 @@ export declare const zListUserRolesQuery: z.ZodObject<{
17872
18806
  * Success
17873
18807
  */
17874
18808
  export declare const zListUserRolesResponse: z.ZodObject<{
17875
- meta: z.ZodOptional<z.ZodObject<{
18809
+ meta: z.ZodObject<{
17876
18810
  page: z.ZodObject<{
17877
18811
  next_cursor: z.ZodNullable<z.ZodString>;
17878
18812
  current_cursor: z.ZodNullable<z.ZodString>;
17879
18813
  }, z.core.$strip>;
17880
- }, z.core.$strip>>;
17881
- links: z.ZodOptional<z.ZodObject<{
18814
+ }, z.core.$strip>;
18815
+ links: z.ZodObject<{
17882
18816
  self: z.ZodString;
17883
18817
  first: z.ZodNullable<z.ZodString>;
17884
18818
  next: z.ZodNullable<z.ZodString>;
17885
- }, z.core.$strip>>;
17886
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
18819
+ }, z.core.$strip>;
18820
+ data: z.ZodArray<z.ZodObject<{
17887
18821
  id: z.ZodString;
17888
18822
  user_id: z.ZodString;
17889
18823
  company_id: z.ZodString;
@@ -17894,7 +18828,7 @@ export declare const zListUserRolesResponse: z.ZodObject<{
17894
18828
  SAFETY_MANAGER: "SAFETY_MANAGER";
17895
18829
  ADMIN: "ADMIN";
17896
18830
  }>;
17897
- }, z.core.$strip>>>;
18831
+ }, z.core.$strip>>;
17898
18832
  }, z.core.$strip>;
17899
18833
  export declare const zAddUserRolesBody: z.ZodObject<{
17900
18834
  user_id: z.ZodOptional<z.ZodString>;
@@ -17983,7 +18917,10 @@ export declare const zListUserCompanyScheduledChangesResponse: z.ZodObject<{
17983
18917
  export declare const zCreateUserCompanyScheduledChangeBody: z.ZodObject<{
17984
18918
  effective_date: z.ZodString;
17985
18919
  hourly_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17986
- compensation_type: z.ZodOptional<z.ZodString>;
18920
+ compensation_type: z.ZodOptional<z.ZodEnum<{
18921
+ hourly: "hourly";
18922
+ salary: "salary";
18923
+ }>>;
17987
18924
  overtime_eligible: z.ZodOptional<z.ZodBoolean>;
17988
18925
  training_annual_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17989
18926
  employer_combined_health_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -18078,7 +19015,10 @@ export declare const zCancelUserCompanyScheduledChangeResponse: z.ZodObject<{
18078
19015
  export declare const zUpdateScheduledChangeBody: z.ZodObject<{
18079
19016
  effective_date: z.ZodString;
18080
19017
  hourly_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18081
- compensation_type: z.ZodOptional<z.ZodString>;
19018
+ compensation_type: z.ZodOptional<z.ZodEnum<{
19019
+ hourly: "hourly";
19020
+ salary: "salary";
19021
+ }>>;
18082
19022
  overtime_eligible: z.ZodOptional<z.ZodBoolean>;
18083
19023
  training_annual_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18084
19024
  employer_combined_health_amount: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -18390,7 +19330,10 @@ export declare const zCreateCompanyBody: z.ZodObject<{
18390
19330
  }>>>;
18391
19331
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18392
19332
  manager_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18393
- compensation_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19333
+ compensation_type: z.ZodOptional<z.ZodEnum<{
19334
+ hourly: "hourly";
19335
+ salary: "salary";
19336
+ }>>;
18394
19337
  enrolled_in_t_and_a: z.ZodOptional<z.ZodBoolean>;
18395
19338
  payroll_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18396
19339
  hourly_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -18808,18 +19751,18 @@ export declare const zListUsersQuery: z.ZodObject<{
18808
19751
  * Success
18809
19752
  */
18810
19753
  export declare const zListUsersResponse: z.ZodObject<{
18811
- meta: z.ZodOptional<z.ZodObject<{
19754
+ meta: z.ZodObject<{
18812
19755
  page: z.ZodObject<{
18813
19756
  next_cursor: z.ZodNullable<z.ZodString>;
18814
19757
  current_cursor: z.ZodNullable<z.ZodString>;
18815
19758
  }, z.core.$strip>;
18816
- }, z.core.$strip>>;
18817
- links: z.ZodOptional<z.ZodObject<{
19759
+ }, z.core.$strip>;
19760
+ links: z.ZodObject<{
18818
19761
  self: z.ZodString;
18819
19762
  first: z.ZodNullable<z.ZodString>;
18820
19763
  next: z.ZodNullable<z.ZodString>;
18821
- }, z.core.$strip>>;
18822
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
19764
+ }, z.core.$strip>;
19765
+ data: z.ZodArray<z.ZodObject<{
18823
19766
  id: z.ZodString;
18824
19767
  name: z.ZodString;
18825
19768
  first_name: z.ZodNullable<z.ZodString>;
@@ -18935,7 +19878,7 @@ export declare const zListUsersResponse: z.ZodObject<{
18935
19878
  portuguese_or_brazilian: "portuguese_or_brazilian";
18936
19879
  }>>>;
18937
19880
  }, z.core.$strip>>;
18938
- }, z.core.$strip>>>;
19881
+ }, z.core.$strip>>;
18939
19882
  }, z.core.$strip>;
18940
19883
  /**
18941
19884
  * Create a user
@@ -19537,18 +20480,18 @@ export declare const zListWorkTypesQuery: z.ZodObject<{
19537
20480
  * Success
19538
20481
  */
19539
20482
  export declare const zListWorkTypesResponse: z.ZodObject<{
19540
- meta: z.ZodOptional<z.ZodObject<{
20483
+ meta: z.ZodObject<{
19541
20484
  page: z.ZodObject<{
19542
20485
  next_cursor: z.ZodNullable<z.ZodString>;
19543
20486
  current_cursor: z.ZodNullable<z.ZodString>;
19544
20487
  }, z.core.$strip>;
19545
- }, z.core.$strip>>;
19546
- links: z.ZodOptional<z.ZodObject<{
20488
+ }, z.core.$strip>;
20489
+ links: z.ZodObject<{
19547
20490
  self: z.ZodString;
19548
20491
  first: z.ZodNullable<z.ZodString>;
19549
20492
  next: z.ZodNullable<z.ZodString>;
19550
- }, z.core.$strip>>;
19551
- data: z.ZodOptional<z.ZodArray<z.ZodObject<{
20493
+ }, z.core.$strip>;
20494
+ data: z.ZodArray<z.ZodObject<{
19552
20495
  id: z.ZodString;
19553
20496
  value: z.ZodString;
19554
20497
  verified: z.ZodBoolean;
@@ -19556,5 +20499,5 @@ export declare const zListWorkTypesResponse: z.ZodObject<{
19556
20499
  specific_to_site_type: z.ZodNullable<z.ZodString>;
19557
20500
  created_at: z.ZodISODateTime;
19558
20501
  updated_at: z.ZodISODateTime;
19559
- }, z.core.$strip>>>;
20502
+ }, z.core.$strip>>;
19560
20503
  }, z.core.$strip>;