@dsptch-work/api-client 0.11.0 → 0.13.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;
@@ -1042,7 +1057,6 @@ export declare const zTimeCardPerDiemParameters: z.ZodObject<{
1042
1057
  date: z.ZodISODate;
1043
1058
  approver_user_id: z.ZodString;
1044
1059
  per_diem_id: z.ZodString;
1045
- taxable: z.ZodOptional<z.ZodBoolean>;
1046
1060
  }, z.core.$strip>;
1047
1061
  /**
1048
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.
@@ -2935,6 +2949,66 @@ export declare const zComplianceCheckParameters: z.ZodObject<{
2935
2949
  }>>;
2936
2950
  time_due: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
2937
2951
  }, z.core.$strip>;
2952
+ /**
2953
+ * One compliance requirement from the catalog. Requirements ship with the application, so the catalog reads the same for every company.
2954
+ */
2955
+ export declare const zComplianceRequirementResponseObject: z.ZodObject<{
2956
+ id: z.ZodString;
2957
+ type: z.ZodString;
2958
+ title: z.ZodString;
2959
+ description: z.ZodString;
2960
+ target: z.ZodEnum<{
2961
+ Company: "Company";
2962
+ Job: "Job";
2963
+ Project: "Project";
2964
+ "Timekeeping::TimeCard": "Timekeeping::TimeCard";
2965
+ "Timekeeping::PayPeriod": "Timekeeping::PayPeriod";
2966
+ User: "User";
2967
+ UserCompany: "UserCompany";
2968
+ }>;
2969
+ category: z.ZodEnum<{
2970
+ regional: "regional";
2971
+ job: "job";
2972
+ project: "project";
2973
+ company: "company";
2974
+ apprenticeship: "apprenticeship";
2975
+ certified_payroll: "certified_payroll";
2976
+ payroll: "payroll";
2977
+ tax_credit: "tax_credit";
2978
+ timekeeping: "timekeeping";
2979
+ worker: "worker";
2980
+ }>;
2981
+ phase: z.ZodEnum<{
2982
+ after_pay_date: "after_pay_date";
2983
+ before_approval_deadline: "before_approval_deadline";
2984
+ close_out: "close_out";
2985
+ maintenance: "maintenance";
2986
+ onboarding: "onboarding";
2987
+ setup: "setup";
2988
+ }>;
2989
+ priority: z.ZodNullable<z.ZodEnum<{
2990
+ high: "high";
2991
+ low: "low";
2992
+ critical: "critical";
2993
+ medium: "medium";
2994
+ }>>;
2995
+ requisite: z.ZodNullable<z.ZodEnum<{
2996
+ apprenticeship: "apprenticeship";
2997
+ payroll: "payroll";
2998
+ timekeeping: "timekeeping";
2999
+ best_practice: "best_practice";
3000
+ dsptch: "dsptch";
3001
+ federal_pwa: "federal_pwa";
3002
+ ira: "ira";
3003
+ ira_tax_credit: "ira_tax_credit";
3004
+ pwa: "pwa";
3005
+ regional_pwa: "regional_pwa";
3006
+ wh347: "wh347";
3007
+ }>>;
3008
+ sort_order: z.ZodInt;
3009
+ created_at: z.ZodISODateTime;
3010
+ updated_at: z.ZodISODateTime;
3011
+ }, z.core.$strip>;
2938
3012
  /**
2939
3013
  * A worker's individual payment record within a payroll run — a recorded or imported actual payment. Its money detail lives in the paystub's line items; this record carries only identifiers.
2940
3014
  */
@@ -2959,7 +3033,7 @@ export declare const zPaystubParameters: z.ZodObject<{
2959
3033
  check_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2960
3034
  }, z.core.$strip>;
2961
3035
  /**
2962
- * An adjustment applied in the current pay period to correct a prior one, tied to the paystub line item it corrects. Read-only.
3036
+ * An adjustment applied in the current pay period to correct a prior one, tied to the paystub line item it corrects.
2963
3037
  */
2964
3038
  export declare const zPriorPeriodAdjustmentResponseObject: z.ZodObject<{
2965
3039
  id: z.ZodString;
@@ -2984,6 +3058,59 @@ export declare const zPriorPeriodAdjustmentResponseObject: z.ZodObject<{
2984
3058
  created_at: z.ZodISODateTime;
2985
3059
  updated_at: z.ZodISODateTime;
2986
3060
  }, z.core.$strip>;
3061
+ /**
3062
+ * Request body for allocating part of a retroactive-pay line item to an earlier time card. The time card comes from the path; the adjustment is always a retroactive increase.
3063
+ */
3064
+ export declare const zPriorPeriodAdjustmentParameters: z.ZodObject<{
3065
+ payrolls_paystub_line_item_id: z.ZodString;
3066
+ created_by_user_id: z.ZodString;
3067
+ amount_cents: z.ZodString;
3068
+ rationale: z.ZodEnum<{
3069
+ other: "other";
3070
+ hours_correction: "hours_correction";
3071
+ pwa_compliance: "pwa_compliance";
3072
+ rate_correction: "rate_correction";
3073
+ }>;
3074
+ job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3075
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3076
+ pwa_compliance_eligible: z.ZodOptional<z.ZodBoolean>;
3077
+ }, z.core.$strip>;
3078
+ /**
3079
+ * What one PWA-tracked job on a time card still owes the worker, from the materialized prevailing-wage compliance view. Read-only.
3080
+ */
3081
+ export declare const zPwaComplianceResponseObject: z.ZodObject<{
3082
+ timekeeping_time_card_id: z.ZodString;
3083
+ timekeeping_pay_period_id: z.ZodString;
3084
+ job_id: z.ZodString;
3085
+ user_id: z.ZodString;
3086
+ pwa_minutes_worked: z.ZodInt;
3087
+ federal_post_interest_outstanding_cents: z.ZodString;
3088
+ regional_post_interest_outstanding_cents: z.ZodString;
3089
+ pwa_adjustments_cents: z.ZodString;
3090
+ federal_balance_due_cents: z.ZodString;
3091
+ regional_balance_due_cents: z.ZodString;
3092
+ balance_due_cents: z.ZodString;
3093
+ all_actuals_exist: z.ZodBoolean;
3094
+ compliant: z.ZodBoolean;
3095
+ }, z.core.$strip>;
3096
+ /**
3097
+ * A retroactive-pay line item that can fund a prior period adjustment on the time card it was requested for. Read-only.
3098
+ */
3099
+ export declare const zAdjustableLineItemResponseObject: z.ZodObject<{
3100
+ id: z.ZodString;
3101
+ payrolls_paystub_id: z.ZodNullable<z.ZodString>;
3102
+ payrolls_payroll_run_id: z.ZodNullable<z.ZodString>;
3103
+ payrolls_external_map_id: z.ZodString;
3104
+ user_id: z.ZodNullable<z.ZodString>;
3105
+ amount_cents: z.ZodString;
3106
+ contributor: z.ZodEnum<{
3107
+ employee: "employee";
3108
+ employer: "employer";
3109
+ }>;
3110
+ adjustable_amount_cents: z.ZodString;
3111
+ created_at: z.ZodISODateTime;
3112
+ updated_at: z.ZodISODateTime;
3113
+ }, z.core.$strip>;
2987
3114
  /**
2988
3115
  * What a worker was actually paid for a pay period, derived from imported paystub line items — gross and net pay, employee deductions (taxes, insurance, savings, garnishments), and employer contributions. Read-only. Every amount is a decimal string of cents.
2989
3116
  */
@@ -4516,6 +4643,7 @@ export declare const zFederalJobWageDeterminationResponseObject: z.ZodObject<{
4516
4643
  id: z.ZodString;
4517
4644
  job_id: z.ZodString;
4518
4645
  pwa_trade_id: z.ZodString;
4646
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4519
4647
  type: z.ZodEnum<{
4520
4648
  "Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
4521
4649
  }>;
@@ -4539,6 +4667,7 @@ export declare const zFederalJobWageDeterminationHistoryCorrectionObject: z.ZodO
4539
4667
  job_wage_determination_id: z.ZodString;
4540
4668
  job_id: z.ZodString;
4541
4669
  pwa_trade_id: z.ZodString;
4670
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4542
4671
  type: z.ZodEnum<{
4543
4672
  "Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
4544
4673
  }>;
@@ -4611,6 +4740,7 @@ export declare const zRegionalJobWageDeterminationResponseObject: z.ZodObject<{
4611
4740
  id: z.ZodString;
4612
4741
  job_id: z.ZodString;
4613
4742
  pwa_trade_id: z.ZodString;
4743
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4614
4744
  type: z.ZodEnum<{
4615
4745
  "Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
4616
4746
  }>;
@@ -4631,6 +4761,7 @@ export declare const zJobWageDeterminationResponseObject: z.ZodDiscriminatedUnio
4631
4761
  id: z.ZodString;
4632
4762
  job_id: z.ZodString;
4633
4763
  pwa_trade_id: z.ZodString;
4764
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4634
4765
  labor_classification: z.ZodString;
4635
4766
  hourly_rate_cents: z.ZodString;
4636
4767
  fringe_rate_cents: z.ZodString;
@@ -4651,6 +4782,7 @@ export declare const zJobWageDeterminationResponseObject: z.ZodDiscriminatedUnio
4651
4782
  id: z.ZodString;
4652
4783
  job_id: z.ZodString;
4653
4784
  pwa_trade_id: z.ZodString;
4785
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4654
4786
  labor_classification: z.ZodString;
4655
4787
  hourly_rate_cents: z.ZodString;
4656
4788
  fringe_rate_cents: z.ZodString;
@@ -4666,6 +4798,7 @@ export declare const zRegionalJobWageDeterminationHistoryCorrectionObject: z.Zod
4666
4798
  job_wage_determination_id: z.ZodString;
4667
4799
  job_id: z.ZodString;
4668
4800
  pwa_trade_id: z.ZodString;
4801
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4669
4802
  type: z.ZodEnum<{
4670
4803
  "Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
4671
4804
  }>;
@@ -4683,6 +4816,7 @@ export declare const zJobWageDeterminationHistoryCorrectionObject: z.ZodDiscrimi
4683
4816
  job_wage_determination_id: z.ZodString;
4684
4817
  job_id: z.ZodString;
4685
4818
  pwa_trade_id: z.ZodString;
4819
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4686
4820
  labor_classification: z.ZodString;
4687
4821
  hourly_rate_cents: z.ZodString;
4688
4822
  fringe_rate_cents: z.ZodString;
@@ -4703,6 +4837,7 @@ export declare const zJobWageDeterminationHistoryCorrectionObject: z.ZodDiscrimi
4703
4837
  job_wage_determination_id: z.ZodString;
4704
4838
  job_id: z.ZodString;
4705
4839
  pwa_trade_id: z.ZodString;
4840
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4706
4841
  labor_classification: z.ZodString;
4707
4842
  hourly_rate_cents: z.ZodString;
4708
4843
  fringe_rate_cents: z.ZodString;
@@ -4718,6 +4853,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
4718
4853
  job_wage_determination_id: z.ZodString;
4719
4854
  job_id: z.ZodString;
4720
4855
  pwa_trade_id: z.ZodString;
4856
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4721
4857
  type: z.ZodEnum<{
4722
4858
  "Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
4723
4859
  }>;
@@ -4745,6 +4881,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
4745
4881
  job_wage_determination_id: z.ZodString;
4746
4882
  job_id: z.ZodString;
4747
4883
  pwa_trade_id: z.ZodString;
4884
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4748
4885
  labor_classification: z.ZodString;
4749
4886
  hourly_rate_cents: z.ZodString;
4750
4887
  fringe_rate_cents: z.ZodString;
@@ -4765,6 +4902,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
4765
4902
  job_wage_determination_id: z.ZodString;
4766
4903
  job_id: z.ZodString;
4767
4904
  pwa_trade_id: z.ZodString;
4905
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4768
4906
  labor_classification: z.ZodString;
4769
4907
  hourly_rate_cents: z.ZodString;
4770
4908
  fringe_rate_cents: z.ZodString;
@@ -4781,6 +4919,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
4781
4919
  job_wage_determination_id: z.ZodString;
4782
4920
  job_id: z.ZodString;
4783
4921
  pwa_trade_id: z.ZodString;
4922
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4784
4923
  type: z.ZodEnum<{
4785
4924
  "Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
4786
4925
  }>;
@@ -4802,6 +4941,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
4802
4941
  job_wage_determination_id: z.ZodString;
4803
4942
  job_id: z.ZodString;
4804
4943
  pwa_trade_id: z.ZodString;
4944
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4805
4945
  labor_classification: z.ZodString;
4806
4946
  hourly_rate_cents: z.ZodString;
4807
4947
  fringe_rate_cents: z.ZodString;
@@ -4822,6 +4962,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
4822
4962
  job_wage_determination_id: z.ZodString;
4823
4963
  job_id: z.ZodString;
4824
4964
  pwa_trade_id: z.ZodString;
4965
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4825
4966
  labor_classification: z.ZodString;
4826
4967
  hourly_rate_cents: z.ZodString;
4827
4968
  fringe_rate_cents: z.ZodString;
@@ -4838,6 +4979,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4838
4979
  job_wage_determination_id: z.ZodString;
4839
4980
  job_id: z.ZodString;
4840
4981
  pwa_trade_id: z.ZodString;
4982
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4841
4983
  labor_classification: z.ZodString;
4842
4984
  hourly_rate_cents: z.ZodString;
4843
4985
  fringe_rate_cents: z.ZodString;
@@ -4862,6 +5004,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4862
5004
  job_wage_determination_id: z.ZodString;
4863
5005
  job_id: z.ZodString;
4864
5006
  pwa_trade_id: z.ZodString;
5007
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4865
5008
  labor_classification: z.ZodString;
4866
5009
  hourly_rate_cents: z.ZodString;
4867
5010
  fringe_rate_cents: z.ZodString;
@@ -4882,6 +5025,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4882
5025
  job_wage_determination_id: z.ZodString;
4883
5026
  job_id: z.ZodString;
4884
5027
  pwa_trade_id: z.ZodString;
5028
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4885
5029
  labor_classification: z.ZodString;
4886
5030
  hourly_rate_cents: z.ZodString;
4887
5031
  fringe_rate_cents: z.ZodString;
@@ -4898,6 +5042,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4898
5042
  job_wage_determination_id: z.ZodString;
4899
5043
  job_id: z.ZodString;
4900
5044
  pwa_trade_id: z.ZodString;
5045
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4901
5046
  labor_classification: z.ZodString;
4902
5047
  hourly_rate_cents: z.ZodString;
4903
5048
  fringe_rate_cents: z.ZodString;
@@ -4916,6 +5061,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4916
5061
  job_wage_determination_id: z.ZodString;
4917
5062
  job_id: z.ZodString;
4918
5063
  pwa_trade_id: z.ZodString;
5064
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4919
5065
  labor_classification: z.ZodString;
4920
5066
  hourly_rate_cents: z.ZodString;
4921
5067
  fringe_rate_cents: z.ZodString;
@@ -4936,6 +5082,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
4936
5082
  job_wage_determination_id: z.ZodString;
4937
5083
  job_id: z.ZodString;
4938
5084
  pwa_trade_id: z.ZodString;
5085
+ overtime_package_id: z.ZodNullable<z.ZodString>;
4939
5086
  labor_classification: z.ZodString;
4940
5087
  hourly_rate_cents: z.ZodString;
4941
5088
  fringe_rate_cents: z.ZodString;
@@ -4994,7 +5141,7 @@ export declare const zRegionalJobWageDeterminationParameters: z.ZodObject<{
4994
5141
  }, z.core.$strip>>;
4995
5142
  }, z.core.$strip>;
4996
5143
  /**
4997
- * Parameters for creating a job wage determination. Provide the Federal or Regional shape; the type discriminator selects which. There is no update endpoint.
5144
+ * 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.
4998
5145
  */
4999
5146
  export declare const zJobWageDeterminationParameters: z.ZodDiscriminatedUnion<[z.ZodObject<{
5000
5147
  labor_classification: z.ZodString;
@@ -5029,6 +5176,76 @@ export declare const zJobWageDeterminationParameters: z.ZodDiscriminatedUnion<[z
5029
5176
  }, z.core.$strip>>;
5030
5177
  type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
5031
5178
  }, z.core.$strip>], "type">;
5179
+ /**
5180
+ * 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.
5181
+ */
5182
+ export declare const zJobWageDeterminationUpdateParameters: z.ZodObject<{
5183
+ effective_from: z.ZodOptional<z.ZodISODate>;
5184
+ labor_classification: z.ZodOptional<z.ZodString>;
5185
+ pwa_trade_id: z.ZodOptional<z.ZodString>;
5186
+ hourly_rate_cents: z.ZodOptional<z.ZodString>;
5187
+ fringe_rate_cents: z.ZodOptional<z.ZodString>;
5188
+ class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5189
+ construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5190
+ building: "building";
5191
+ heavy: "heavy";
5192
+ highway: "highway";
5193
+ residential: "residential";
5194
+ }>>>;
5195
+ general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5196
+ regional_fields: z.ZodOptional<z.ZodObject<{
5197
+ combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5198
+ combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5199
+ combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5200
+ training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5201
+ other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5202
+ one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5203
+ two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5204
+ one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5205
+ two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5206
+ }, z.core.$strip>>;
5207
+ }, z.core.$strip>;
5208
+ /**
5209
+ * 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.
5210
+ */
5211
+ export declare const zJobWageDeterminationScheduledChangeParameters: z.ZodObject<{
5212
+ effective_date: z.ZodISODate;
5213
+ labor_classification: z.ZodOptional<z.ZodString>;
5214
+ pwa_trade_id: z.ZodOptional<z.ZodString>;
5215
+ hourly_rate_cents: z.ZodOptional<z.ZodString>;
5216
+ fringe_rate_cents: z.ZodOptional<z.ZodString>;
5217
+ class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5218
+ construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5219
+ building: "building";
5220
+ heavy: "heavy";
5221
+ highway: "highway";
5222
+ residential: "residential";
5223
+ }>>>;
5224
+ general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5225
+ regional_fields: z.ZodOptional<z.ZodObject<{
5226
+ combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5227
+ combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5228
+ combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5229
+ training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5230
+ other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5231
+ one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5232
+ two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5233
+ one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5234
+ two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5235
+ }, z.core.$strip>>;
5236
+ }, z.core.$strip>;
5237
+ /**
5238
+ * Parameters for moving where a job wage determination's timeline begins.
5239
+ */
5240
+ export declare const zJobWageDeterminationGenesisParameters: z.ZodObject<{
5241
+ effective_date: z.ZodISODate;
5242
+ }, z.core.$strip>;
5243
+ /**
5244
+ * Parameters for scheduling when a job wage determination stops being valid.
5245
+ */
5246
+ export declare const zJobWageDeterminationScheduledTerminationParameters: z.ZodObject<{
5247
+ effective_date: z.ZodISODate;
5248
+ }, z.core.$strip>;
5032
5249
  /**
5033
5250
  * The adjustment applied when a rule matches — an addition to the wage or fringe rate.
5034
5251
  */
@@ -5656,6 +5873,7 @@ export declare const zAssetsItemParameters: z.ZodObject<{
5656
5873
  assets_site_id: z.ZodOptional<z.ZodString>;
5657
5874
  user_id: z.ZodOptional<z.ZodString>;
5658
5875
  container_item_id: z.ZodOptional<z.ZodString>;
5876
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
5659
5877
  performed_by_user_id: z.ZodString;
5660
5878
  }, z.core.$strip>;
5661
5879
  /**
@@ -5794,12 +6012,13 @@ export declare const zAssetsItemFormAssignmentParameters: z.ZodObject<{
5794
6012
  }, z.core.$strip>;
5795
6013
  }, z.core.$strip>;
5796
6014
  /**
5797
- * 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.
6015
+ * 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.
5798
6016
  */
5799
6017
  export declare const zAssetsInventoryResponseObject: z.ZodObject<{
5800
6018
  id: z.ZodString;
5801
6019
  assets_item_id: z.ZodString;
5802
6020
  assets_site_id: z.ZodString;
6021
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
5803
6022
  company_id: z.ZodString;
5804
6023
  quantity_on_hand: z.ZodInt;
5805
6024
  created_at: z.ZodISODateTime;
@@ -5833,6 +6052,7 @@ export declare const zAssetsTransactionEventResponseObject: z.ZodObject<{
5833
6052
  assets_site_id: z.ZodNullable<z.ZodString>;
5834
6053
  assignee_id: z.ZodNullable<z.ZodString>;
5835
6054
  container_item_id: z.ZodNullable<z.ZodString>;
6055
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
5836
6056
  assets_transfer_id: z.ZodNullable<z.ZodString>;
5837
6057
  performed_by_user_id: z.ZodString;
5838
6058
  direction: z.ZodEnum<{
@@ -5887,6 +6107,7 @@ export declare const zAssetsItemEventResponseObject: z.ZodDiscriminatedUnion<[z.
5887
6107
  assets_site_id: z.ZodNullable<z.ZodString>;
5888
6108
  assignee_id: z.ZodNullable<z.ZodString>;
5889
6109
  container_item_id: z.ZodNullable<z.ZodString>;
6110
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
5890
6111
  assets_transfer_id: z.ZodNullable<z.ZodString>;
5891
6112
  performed_by_user_id: z.ZodString;
5892
6113
  direction: z.ZodEnum<{
@@ -6056,6 +6277,65 @@ export declare const zAssetsServiceScheduleTemplateParameters: z.ZodObject<{
6056
6277
  interval_count: z.ZodInt;
6057
6278
  performed_by_user_id: z.ZodString;
6058
6279
  }, z.core.$strip>;
6280
+ /**
6281
+ * 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.
6282
+ */
6283
+ export declare const zAssetsSubLocationResponseObject: z.ZodObject<{
6284
+ id: z.ZodString;
6285
+ company_id: z.ZodString;
6286
+ assets_site_id: z.ZodNullable<z.ZodString>;
6287
+ container_item_id: z.ZodNullable<z.ZodString>;
6288
+ parent_id: z.ZodNullable<z.ZodString>;
6289
+ kind: z.ZodNullable<z.ZodEnum<{
6290
+ zone: "zone";
6291
+ aisle: "aisle";
6292
+ rack: "rack";
6293
+ shelf: "shelf";
6294
+ bin: "bin";
6295
+ drawer: "drawer";
6296
+ }>>;
6297
+ name: z.ZodString;
6298
+ code: z.ZodString;
6299
+ path_code: z.ZodString;
6300
+ created_at: z.ZodISODateTime;
6301
+ updated_at: z.ZodISODateTime;
6302
+ }, z.core.$strip>;
6303
+ /**
6304
+ * 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.
6305
+ */
6306
+ export declare const zAssetsSubLocationParameters: z.ZodObject<{
6307
+ assets_site_id: z.ZodOptional<z.ZodString>;
6308
+ container_item_id: z.ZodOptional<z.ZodString>;
6309
+ parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6310
+ kind: z.ZodOptional<z.ZodEnum<{
6311
+ zone: "zone";
6312
+ aisle: "aisle";
6313
+ rack: "rack";
6314
+ shelf: "shelf";
6315
+ bin: "bin";
6316
+ drawer: "drawer";
6317
+ }>>;
6318
+ name: z.ZodString;
6319
+ code: z.ZodString;
6320
+ }, z.core.$strip>;
6321
+ /**
6322
+ * 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.
6323
+ */
6324
+ export declare const zAssetsSubLocationUpdateParameters: z.ZodObject<{
6325
+ assets_site_id: z.ZodOptional<z.ZodString>;
6326
+ container_item_id: z.ZodOptional<z.ZodString>;
6327
+ parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6328
+ kind: z.ZodOptional<z.ZodEnum<{
6329
+ zone: "zone";
6330
+ aisle: "aisle";
6331
+ rack: "rack";
6332
+ shelf: "shelf";
6333
+ bin: "bin";
6334
+ drawer: "drawer";
6335
+ }>>;
6336
+ name: z.ZodOptional<z.ZodString>;
6337
+ code: z.ZodOptional<z.ZodString>;
6338
+ }, z.core.$strip>;
6059
6339
  /**
6060
6340
  * 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.
6061
6341
  */
@@ -6074,6 +6354,8 @@ export declare const zAssetsTransferResponseObject: z.ZodObject<{
6074
6354
  to_assets_site_id: z.ZodNullable<z.ZodString>;
6075
6355
  to_user_id: z.ZodNullable<z.ZodString>;
6076
6356
  to_container_item_id: z.ZodNullable<z.ZodString>;
6357
+ from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
6358
+ to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
6077
6359
  initiated_by_user_id: z.ZodString;
6078
6360
  completed_at: z.ZodNullable<z.ZodISODateTime>;
6079
6361
  transfer_lines: z.ZodArray<z.ZodObject<{
@@ -6094,6 +6376,8 @@ export declare const zAssetsTransferParameters: z.ZodObject<{
6094
6376
  to_assets_site_id: z.ZodOptional<z.ZodString>;
6095
6377
  to_user_id: z.ZodOptional<z.ZodString>;
6096
6378
  to_container_item_id: z.ZodOptional<z.ZodString>;
6379
+ from_assets_sub_location_id: z.ZodOptional<z.ZodString>;
6380
+ to_assets_sub_location_id: z.ZodOptional<z.ZodString>;
6097
6381
  performed_by_user_id: z.ZodString;
6098
6382
  line_items: z.ZodArray<z.ZodObject<{
6099
6383
  assets_item_id: z.ZodString;
@@ -6105,6 +6389,7 @@ export declare const zAssetsTransferParameters: z.ZodObject<{
6105
6389
  */
6106
6390
  export declare const zAssetsRestockParameters: z.ZodObject<{
6107
6391
  assets_site_id: z.ZodString;
6392
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
6108
6393
  quantity: z.ZodInt;
6109
6394
  performed_by_user_id: z.ZodString;
6110
6395
  }, z.core.$strip>;
@@ -6113,9 +6398,16 @@ export declare const zAssetsRestockParameters: z.ZodObject<{
6113
6398
  */
6114
6399
  export declare const zAssetsAdjustmentParameters: z.ZodObject<{
6115
6400
  assets_site_id: z.ZodString;
6401
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
6116
6402
  new_quantity: z.ZodInt;
6117
6403
  performed_by_user_id: z.ZodString;
6118
6404
  }, z.core.$strip>;
6405
+ /**
6406
+ * 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.
6407
+ */
6408
+ export declare const zAssetsArchiveParameters: z.ZodObject<{
6409
+ performed_by_user_id: z.ZodString;
6410
+ }, z.core.$strip>;
6119
6411
  /**
6120
6412
  * Success
6121
6413
  */
@@ -7330,6 +7622,7 @@ export declare const zListEventsResponse: z.ZodObject<{
7330
7622
  assets_site_id: z.ZodNullable<z.ZodString>;
7331
7623
  assignee_id: z.ZodNullable<z.ZodString>;
7332
7624
  container_item_id: z.ZodNullable<z.ZodString>;
7625
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
7333
7626
  assets_transfer_id: z.ZodNullable<z.ZodString>;
7334
7627
  performed_by_user_id: z.ZodString;
7335
7628
  direction: z.ZodEnum<{
@@ -7383,6 +7676,7 @@ export declare const zGetEventResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
7383
7676
  assets_site_id: z.ZodNullable<z.ZodString>;
7384
7677
  assignee_id: z.ZodNullable<z.ZodString>;
7385
7678
  container_item_id: z.ZodNullable<z.ZodString>;
7679
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
7386
7680
  assets_transfer_id: z.ZodNullable<z.ZodString>;
7387
7681
  performed_by_user_id: z.ZodString;
7388
7682
  direction: z.ZodEnum<{
@@ -7740,6 +8034,7 @@ export declare const zListInventoriesResponse: z.ZodObject<{
7740
8034
  id: z.ZodString;
7741
8035
  assets_item_id: z.ZodString;
7742
8036
  assets_site_id: z.ZodString;
8037
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
7743
8038
  company_id: z.ZodString;
7744
8039
  quantity_on_hand: z.ZodInt;
7745
8040
  created_at: z.ZodISODateTime;
@@ -7756,6 +8051,7 @@ export declare const zGetInventoryResponse: z.ZodObject<{
7756
8051
  id: z.ZodString;
7757
8052
  assets_item_id: z.ZodString;
7758
8053
  assets_site_id: z.ZodString;
8054
+ assets_sub_location_id: z.ZodNullable<z.ZodString>;
7759
8055
  company_id: z.ZodString;
7760
8056
  quantity_on_hand: z.ZodInt;
7761
8057
  created_at: z.ZodISODateTime;
@@ -7855,6 +8151,7 @@ export declare const zCreateItemBody: z.ZodObject<{
7855
8151
  assets_site_id: z.ZodOptional<z.ZodString>;
7856
8152
  user_id: z.ZodOptional<z.ZodString>;
7857
8153
  container_item_id: z.ZodOptional<z.ZodString>;
8154
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
7858
8155
  performed_by_user_id: z.ZodString;
7859
8156
  }, z.core.$strip>;
7860
8157
  /**
@@ -8025,6 +8322,7 @@ export declare const zUpdateItemBody: z.ZodObject<{
8025
8322
  assets_site_id: z.ZodOptional<z.ZodString>;
8026
8323
  user_id: z.ZodOptional<z.ZodString>;
8027
8324
  container_item_id: z.ZodOptional<z.ZodString>;
8325
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
8028
8326
  performed_by_user_id: z.ZodString;
8029
8327
  }, z.core.$strip>;
8030
8328
  export declare const zUpdateItemPath: z.ZodObject<{
@@ -8077,68 +8375,174 @@ export declare const zUpdateItemResponse: z.ZodObject<{
8077
8375
  created_at: z.ZodISODateTime;
8078
8376
  updated_at: z.ZodISODateTime;
8079
8377
  }, z.core.$strip>;
8080
- export declare const zListServiceSchedulesPath: z.ZodObject<{
8081
- item_id: z.ZodString;
8378
+ export declare const zUnarchiveItemBody: z.ZodObject<{
8379
+ performed_by_user_id: z.ZodString;
8082
8380
  }, z.core.$strip>;
8083
- export declare const zListServiceSchedulesQuery: z.ZodObject<{
8084
- 'filter[kind]': z.ZodOptional<z.ZodString>;
8085
- 'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
8086
- 'filter[created_at][lte]': z.ZodOptional<z.ZodISODateTime>;
8087
- 'filter[updated_at][gte]': z.ZodOptional<z.ZodISODateTime>;
8088
- 'filter[updated_at][lte]': z.ZodOptional<z.ZodISODateTime>;
8089
- filter: z.ZodOptional<z.ZodString>;
8090
- 'filter[unexpected]': z.ZodOptional<z.ZodString>;
8091
- 'page[cursor]': z.ZodOptional<z.ZodString>;
8092
- 'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
8093
- page: z.ZodOptional<z.ZodString>;
8381
+ export declare const zUnarchiveItemPath: z.ZodObject<{
8382
+ item_id: z.ZodString;
8094
8383
  }, z.core.$strip>;
8095
8384
  /**
8096
8385
  * Success
8097
8386
  */
8098
- export declare const zListServiceSchedulesResponse: z.ZodObject<{
8099
- meta: z.ZodObject<{
8100
- page: z.ZodObject<{
8101
- next_cursor: z.ZodNullable<z.ZodString>;
8102
- current_cursor: z.ZodNullable<z.ZodString>;
8103
- }, z.core.$strip>;
8104
- }, z.core.$strip>;
8105
- links: z.ZodObject<{
8106
- self: z.ZodString;
8107
- first: z.ZodNullable<z.ZodString>;
8108
- next: z.ZodNullable<z.ZodString>;
8109
- }, z.core.$strip>;
8110
- data: z.ZodArray<z.ZodObject<{
8387
+ export declare const zUnarchiveItemResponse: z.ZodObject<{
8388
+ id: z.ZodString;
8389
+ name: z.ZodString;
8390
+ description: z.ZodNullable<z.ZodString>;
8391
+ assets_product_id: z.ZodString;
8392
+ company_id: z.ZodString;
8393
+ type: z.ZodEnum<{
8394
+ serial: "serial";
8395
+ bulk: "bulk";
8396
+ }>;
8397
+ serial_number: z.ZodNullable<z.ZodString>;
8398
+ status: z.ZodNullable<z.ZodEnum<{
8399
+ available: "available";
8400
+ assigned: "assigned";
8401
+ }>>;
8402
+ purchase_date: z.ZodNullable<z.ZodISODateTime>;
8403
+ purchase_price_cents: z.ZodNullable<z.ZodString>;
8404
+ currency: z.ZodNullable<z.ZodString>;
8405
+ external_id: z.ZodNullable<z.ZodString>;
8406
+ external_system_url: z.ZodNullable<z.ZodString>;
8407
+ container: z.ZodBoolean;
8408
+ contents: z.ZodArray<z.ZodObject<{
8409
+ item_id: z.ZodString;
8410
+ quantity: z.ZodInt;
8411
+ }, z.core.$strip>>;
8412
+ containers: z.ZodArray<z.ZodObject<{
8413
+ container_item_id: z.ZodString;
8414
+ quantity: z.ZodInt;
8415
+ }, z.core.$strip>>;
8416
+ images: z.ZodArray<z.ZodObject<{
8111
8417
  id: z.ZodString;
8112
- assets_item_id: z.ZodString;
8113
- company_id: z.ZodString;
8114
- assets_service_schedule_template_id: z.ZodNullable<z.ZodString>;
8115
- kind: z.ZodEnum<{
8116
- maintenance: "maintenance";
8117
- calibration: "calibration";
8118
- }>;
8119
- name: z.ZodNullable<z.ZodString>;
8120
- interval_unit: z.ZodEnum<{
8121
- year: "year";
8122
- month: "month";
8123
- week: "week";
8124
- day: "day";
8125
- }>;
8126
- interval_count: z.ZodInt;
8127
- last_serviced_on: z.ZodNullable<z.ZodISODate>;
8128
- next_due_date: z.ZodISODate;
8418
+ file: z.ZodNullable<z.ZodObject<{
8419
+ filename: z.ZodString;
8420
+ content_type: z.ZodNullable<z.ZodString>;
8421
+ byte_size: z.ZodInt;
8422
+ url: z.ZodString;
8423
+ }, z.core.$strip>>;
8129
8424
  created_at: z.ZodISODateTime;
8130
8425
  updated_at: z.ZodISODateTime;
8131
8426
  }, z.core.$strip>>;
8427
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
8428
+ created_at: z.ZodISODateTime;
8429
+ updated_at: z.ZodISODateTime;
8132
8430
  }, z.core.$strip>;
8133
- export declare const zCreateServiceScheduleBody: z.ZodObject<{
8134
- kind: z.ZodEnum<{
8135
- maintenance: "maintenance";
8136
- calibration: "calibration";
8137
- }>;
8138
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8139
- interval_unit: z.ZodEnum<{
8140
- year: "year";
8141
- month: "month";
8431
+ export declare const zArchiveItemBody: z.ZodObject<{
8432
+ performed_by_user_id: z.ZodString;
8433
+ }, z.core.$strip>;
8434
+ export declare const zArchiveItemPath: z.ZodObject<{
8435
+ item_id: z.ZodString;
8436
+ }, z.core.$strip>;
8437
+ /**
8438
+ * Created
8439
+ */
8440
+ export declare const zArchiveItemResponse: z.ZodObject<{
8441
+ id: z.ZodString;
8442
+ name: z.ZodString;
8443
+ description: z.ZodNullable<z.ZodString>;
8444
+ assets_product_id: z.ZodString;
8445
+ company_id: z.ZodString;
8446
+ type: z.ZodEnum<{
8447
+ serial: "serial";
8448
+ bulk: "bulk";
8449
+ }>;
8450
+ serial_number: z.ZodNullable<z.ZodString>;
8451
+ status: z.ZodNullable<z.ZodEnum<{
8452
+ available: "available";
8453
+ assigned: "assigned";
8454
+ }>>;
8455
+ purchase_date: z.ZodNullable<z.ZodISODateTime>;
8456
+ purchase_price_cents: z.ZodNullable<z.ZodString>;
8457
+ currency: z.ZodNullable<z.ZodString>;
8458
+ external_id: z.ZodNullable<z.ZodString>;
8459
+ external_system_url: z.ZodNullable<z.ZodString>;
8460
+ container: z.ZodBoolean;
8461
+ contents: z.ZodArray<z.ZodObject<{
8462
+ item_id: z.ZodString;
8463
+ quantity: z.ZodInt;
8464
+ }, z.core.$strip>>;
8465
+ containers: z.ZodArray<z.ZodObject<{
8466
+ container_item_id: z.ZodString;
8467
+ quantity: z.ZodInt;
8468
+ }, z.core.$strip>>;
8469
+ images: z.ZodArray<z.ZodObject<{
8470
+ id: z.ZodString;
8471
+ file: z.ZodNullable<z.ZodObject<{
8472
+ filename: z.ZodString;
8473
+ content_type: z.ZodNullable<z.ZodString>;
8474
+ byte_size: z.ZodInt;
8475
+ url: z.ZodString;
8476
+ }, z.core.$strip>>;
8477
+ created_at: z.ZodISODateTime;
8478
+ updated_at: z.ZodISODateTime;
8479
+ }, z.core.$strip>>;
8480
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
8481
+ created_at: z.ZodISODateTime;
8482
+ updated_at: z.ZodISODateTime;
8483
+ }, z.core.$strip>;
8484
+ export declare const zListServiceSchedulesPath: z.ZodObject<{
8485
+ item_id: z.ZodString;
8486
+ }, z.core.$strip>;
8487
+ export declare const zListServiceSchedulesQuery: z.ZodObject<{
8488
+ 'filter[kind]': z.ZodOptional<z.ZodString>;
8489
+ 'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
8490
+ 'filter[created_at][lte]': z.ZodOptional<z.ZodISODateTime>;
8491
+ 'filter[updated_at][gte]': z.ZodOptional<z.ZodISODateTime>;
8492
+ 'filter[updated_at][lte]': z.ZodOptional<z.ZodISODateTime>;
8493
+ filter: z.ZodOptional<z.ZodString>;
8494
+ 'filter[unexpected]': z.ZodOptional<z.ZodString>;
8495
+ 'page[cursor]': z.ZodOptional<z.ZodString>;
8496
+ 'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
8497
+ page: z.ZodOptional<z.ZodString>;
8498
+ }, z.core.$strip>;
8499
+ /**
8500
+ * Success
8501
+ */
8502
+ export declare const zListServiceSchedulesResponse: z.ZodObject<{
8503
+ meta: z.ZodObject<{
8504
+ page: z.ZodObject<{
8505
+ next_cursor: z.ZodNullable<z.ZodString>;
8506
+ current_cursor: z.ZodNullable<z.ZodString>;
8507
+ }, z.core.$strip>;
8508
+ }, z.core.$strip>;
8509
+ links: z.ZodObject<{
8510
+ self: z.ZodString;
8511
+ first: z.ZodNullable<z.ZodString>;
8512
+ next: z.ZodNullable<z.ZodString>;
8513
+ }, z.core.$strip>;
8514
+ data: z.ZodArray<z.ZodObject<{
8515
+ id: z.ZodString;
8516
+ assets_item_id: z.ZodString;
8517
+ company_id: z.ZodString;
8518
+ assets_service_schedule_template_id: z.ZodNullable<z.ZodString>;
8519
+ kind: z.ZodEnum<{
8520
+ maintenance: "maintenance";
8521
+ calibration: "calibration";
8522
+ }>;
8523
+ name: z.ZodNullable<z.ZodString>;
8524
+ interval_unit: z.ZodEnum<{
8525
+ year: "year";
8526
+ month: "month";
8527
+ week: "week";
8528
+ day: "day";
8529
+ }>;
8530
+ interval_count: z.ZodInt;
8531
+ last_serviced_on: z.ZodNullable<z.ZodISODate>;
8532
+ next_due_date: z.ZodISODate;
8533
+ created_at: z.ZodISODateTime;
8534
+ updated_at: z.ZodISODateTime;
8535
+ }, z.core.$strip>>;
8536
+ }, z.core.$strip>;
8537
+ export declare const zCreateServiceScheduleBody: z.ZodObject<{
8538
+ kind: z.ZodEnum<{
8539
+ maintenance: "maintenance";
8540
+ calibration: "calibration";
8541
+ }>;
8542
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8543
+ interval_unit: z.ZodEnum<{
8544
+ year: "year";
8545
+ month: "month";
8142
8546
  week: "week";
8143
8547
  day: "day";
8144
8548
  }>;
@@ -9239,8 +9643,101 @@ export declare const zUpdateProductResponse: z.ZodObject<{
9239
9643
  created_at: z.ZodISODateTime;
9240
9644
  updated_at: z.ZodISODateTime;
9241
9645
  }, z.core.$strip>;
9646
+ export declare const zUnarchiveProductBody: z.ZodObject<{
9647
+ performed_by_user_id: z.ZodString;
9648
+ }, z.core.$strip>;
9649
+ export declare const zUnarchiveProductPath: z.ZodObject<{
9650
+ product_id: z.ZodString;
9651
+ }, z.core.$strip>;
9652
+ /**
9653
+ * Success
9654
+ */
9655
+ export declare const zUnarchiveProductResponse: z.ZodObject<{
9656
+ id: z.ZodString;
9657
+ company_id: z.ZodString;
9658
+ name: z.ZodString;
9659
+ upc: z.ZodNullable<z.ZodString>;
9660
+ internal_sku: z.ZodNullable<z.ZodString>;
9661
+ default_minimum_quantity: z.ZodNullable<z.ZodInt>;
9662
+ make: z.ZodNullable<z.ZodString>;
9663
+ model: z.ZodNullable<z.ZodString>;
9664
+ counted_by: z.ZodEnum<{
9665
+ each: "each";
9666
+ pair: "pair";
9667
+ pack: "pack";
9668
+ }>;
9669
+ container: z.ZodBoolean;
9670
+ serialized: z.ZodBoolean;
9671
+ assets_category_id: z.ZodNullable<z.ZodString>;
9672
+ attributes: z.ZodArray<z.ZodObject<{
9673
+ assets_attribute_id: z.ZodString;
9674
+ value: z.ZodNullable<z.ZodString>;
9675
+ assets_attribute_option_id: z.ZodNullable<z.ZodString>;
9676
+ }, z.core.$strip>>;
9677
+ images: z.ZodArray<z.ZodObject<{
9678
+ id: z.ZodString;
9679
+ file: z.ZodNullable<z.ZodObject<{
9680
+ filename: z.ZodString;
9681
+ content_type: z.ZodNullable<z.ZodString>;
9682
+ byte_size: z.ZodInt;
9683
+ url: z.ZodString;
9684
+ }, z.core.$strip>>;
9685
+ created_at: z.ZodISODateTime;
9686
+ updated_at: z.ZodISODateTime;
9687
+ }, z.core.$strip>>;
9688
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
9689
+ created_at: z.ZodISODateTime;
9690
+ updated_at: z.ZodISODateTime;
9691
+ }, z.core.$strip>;
9692
+ export declare const zArchiveProductBody: z.ZodObject<{
9693
+ performed_by_user_id: z.ZodString;
9694
+ }, z.core.$strip>;
9695
+ export declare const zArchiveProductPath: z.ZodObject<{
9696
+ product_id: z.ZodString;
9697
+ }, z.core.$strip>;
9698
+ /**
9699
+ * Created
9700
+ */
9701
+ export declare const zArchiveProductResponse: z.ZodObject<{
9702
+ id: z.ZodString;
9703
+ company_id: z.ZodString;
9704
+ name: z.ZodString;
9705
+ upc: z.ZodNullable<z.ZodString>;
9706
+ internal_sku: z.ZodNullable<z.ZodString>;
9707
+ default_minimum_quantity: z.ZodNullable<z.ZodInt>;
9708
+ make: z.ZodNullable<z.ZodString>;
9709
+ model: z.ZodNullable<z.ZodString>;
9710
+ counted_by: z.ZodEnum<{
9711
+ each: "each";
9712
+ pair: "pair";
9713
+ pack: "pack";
9714
+ }>;
9715
+ container: z.ZodBoolean;
9716
+ serialized: z.ZodBoolean;
9717
+ assets_category_id: z.ZodNullable<z.ZodString>;
9718
+ attributes: z.ZodArray<z.ZodObject<{
9719
+ assets_attribute_id: z.ZodString;
9720
+ value: z.ZodNullable<z.ZodString>;
9721
+ assets_attribute_option_id: z.ZodNullable<z.ZodString>;
9722
+ }, z.core.$strip>>;
9723
+ images: z.ZodArray<z.ZodObject<{
9724
+ id: z.ZodString;
9725
+ file: z.ZodNullable<z.ZodObject<{
9726
+ filename: z.ZodString;
9727
+ content_type: z.ZodNullable<z.ZodString>;
9728
+ byte_size: z.ZodInt;
9729
+ url: z.ZodString;
9730
+ }, z.core.$strip>>;
9731
+ created_at: z.ZodISODateTime;
9732
+ updated_at: z.ZodISODateTime;
9733
+ }, z.core.$strip>>;
9734
+ archived_at: z.ZodNullable<z.ZodISODateTime>;
9735
+ created_at: z.ZodISODateTime;
9736
+ updated_at: z.ZodISODateTime;
9737
+ }, z.core.$strip>;
9242
9738
  export declare const zAdjustProductInventoryBody: z.ZodObject<{
9243
9739
  assets_site_id: z.ZodString;
9740
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
9244
9741
  new_quantity: z.ZodInt;
9245
9742
  performed_by_user_id: z.ZodString;
9246
9743
  }, z.core.$strip>;
@@ -9289,6 +9786,7 @@ export declare const zAdjustProductInventoryResponse: z.ZodObject<{
9289
9786
  }, z.core.$strip>;
9290
9787
  export declare const zRestockProductBody: z.ZodObject<{
9291
9788
  assets_site_id: z.ZodString;
9789
+ assets_sub_location_id: z.ZodOptional<z.ZodString>;
9292
9790
  quantity: z.ZodInt;
9293
9791
  performed_by_user_id: z.ZodString;
9294
9792
  }, z.core.$strip>;
@@ -9719,15 +10217,24 @@ export declare const zUpdateSiteResponse: z.ZodObject<{
9719
10217
  created_at: z.ZodISODateTime;
9720
10218
  updated_at: z.ZodISODateTime;
9721
10219
  }, z.core.$strip>;
9722
- export declare const zListTransfersQuery: z.ZodObject<{
9723
- 'filter[status]': z.ZodOptional<z.ZodString>;
10220
+ export declare const zListSubLocationsQuery: z.ZodObject<{
10221
+ 'filter[assets_site_id]': z.ZodOptional<z.ZodString>;
10222
+ 'filter[container_item_id]': z.ZodOptional<z.ZodString>;
10223
+ 'filter[kind]': z.ZodOptional<z.ZodString>;
10224
+ 'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
10225
+ 'filter[created_at][lte]': z.ZodOptional<z.ZodISODateTime>;
10226
+ 'filter[updated_at][gte]': z.ZodOptional<z.ZodISODateTime>;
10227
+ 'filter[updated_at][lte]': z.ZodOptional<z.ZodISODateTime>;
9724
10228
  filter: z.ZodOptional<z.ZodString>;
9725
10229
  'filter[unexpected]': z.ZodOptional<z.ZodString>;
10230
+ 'page[cursor]': z.ZodOptional<z.ZodString>;
10231
+ 'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
10232
+ page: z.ZodOptional<z.ZodString>;
9726
10233
  }, z.core.$strip>;
9727
10234
  /**
9728
10235
  * Success
9729
10236
  */
9730
- export declare const zListTransfersResponse: z.ZodObject<{
10237
+ export declare const zListSubLocationsResponse: z.ZodObject<{
9731
10238
  meta: z.ZodObject<{
9732
10239
  page: z.ZodObject<{
9733
10240
  next_cursor: z.ZodNullable<z.ZodString>;
@@ -9742,45 +10249,221 @@ export declare const zListTransfersResponse: z.ZodObject<{
9742
10249
  data: z.ZodArray<z.ZodObject<{
9743
10250
  id: z.ZodString;
9744
10251
  company_id: z.ZodString;
9745
- status: z.ZodEnum<{
9746
- pending: "pending";
9747
- cancelled: "cancelled";
9748
- completed: "completed";
9749
- in_transit: "in_transit";
9750
- }>;
9751
- from_assets_site_id: z.ZodNullable<z.ZodString>;
9752
- from_user_id: z.ZodNullable<z.ZodString>;
9753
- from_container_item_id: z.ZodNullable<z.ZodString>;
9754
- to_assets_site_id: z.ZodNullable<z.ZodString>;
9755
- to_user_id: z.ZodNullable<z.ZodString>;
9756
- to_container_item_id: z.ZodNullable<z.ZodString>;
9757
- initiated_by_user_id: z.ZodString;
9758
- completed_at: z.ZodNullable<z.ZodISODateTime>;
9759
- transfer_lines: z.ZodArray<z.ZodObject<{
9760
- id: z.ZodString;
9761
- assets_item_id: z.ZodString;
9762
- quantity: z.ZodInt;
9763
- }, z.core.$strip>>;
10252
+ assets_site_id: z.ZodNullable<z.ZodString>;
10253
+ container_item_id: z.ZodNullable<z.ZodString>;
10254
+ parent_id: z.ZodNullable<z.ZodString>;
10255
+ kind: z.ZodNullable<z.ZodEnum<{
10256
+ zone: "zone";
10257
+ aisle: "aisle";
10258
+ rack: "rack";
10259
+ shelf: "shelf";
10260
+ bin: "bin";
10261
+ drawer: "drawer";
10262
+ }>>;
10263
+ name: z.ZodString;
10264
+ code: z.ZodString;
10265
+ path_code: z.ZodString;
9764
10266
  created_at: z.ZodISODateTime;
9765
10267
  updated_at: z.ZodISODateTime;
9766
10268
  }, z.core.$strip>>;
9767
10269
  }, z.core.$strip>;
9768
- export declare const zCreateTransferBody: z.ZodObject<{
9769
- from_assets_site_id: z.ZodOptional<z.ZodString>;
9770
- from_user_id: z.ZodOptional<z.ZodString>;
9771
- from_container_item_id: z.ZodOptional<z.ZodString>;
9772
- to_assets_site_id: z.ZodOptional<z.ZodString>;
9773
- to_user_id: z.ZodOptional<z.ZodString>;
9774
- to_container_item_id: z.ZodOptional<z.ZodString>;
9775
- performed_by_user_id: z.ZodString;
9776
- line_items: z.ZodArray<z.ZodObject<{
9777
- assets_item_id: z.ZodString;
9778
- quantity: z.ZodInt;
9779
- }, z.core.$strip>>;
10270
+ export declare const zCreateSubLocationBody: z.ZodObject<{
10271
+ assets_site_id: z.ZodOptional<z.ZodString>;
10272
+ container_item_id: z.ZodOptional<z.ZodString>;
10273
+ parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10274
+ kind: z.ZodOptional<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;
9780
10284
  }, z.core.$strip>;
9781
- export declare const zCreateTransferResponse: z.ZodUnion<readonly [z.ZodObject<{
9782
- id: z.ZodString;
9783
- company_id: z.ZodString;
10285
+ /**
10286
+ * Created
10287
+ */
10288
+ export declare const zCreateSubLocationResponse: z.ZodObject<{
10289
+ id: z.ZodString;
10290
+ company_id: z.ZodString;
10291
+ assets_site_id: z.ZodNullable<z.ZodString>;
10292
+ container_item_id: z.ZodNullable<z.ZodString>;
10293
+ parent_id: z.ZodNullable<z.ZodString>;
10294
+ kind: z.ZodNullable<z.ZodEnum<{
10295
+ zone: "zone";
10296
+ aisle: "aisle";
10297
+ rack: "rack";
10298
+ shelf: "shelf";
10299
+ bin: "bin";
10300
+ drawer: "drawer";
10301
+ }>>;
10302
+ name: z.ZodString;
10303
+ code: z.ZodString;
10304
+ path_code: z.ZodString;
10305
+ created_at: z.ZodISODateTime;
10306
+ updated_at: z.ZodISODateTime;
10307
+ }, z.core.$strip>;
10308
+ export declare const zDeleteSubLocationPath: z.ZodObject<{
10309
+ id: z.ZodString;
10310
+ }, z.core.$strip>;
10311
+ /**
10312
+ * Success
10313
+ */
10314
+ export declare const zDeleteSubLocationResponse: z.ZodObject<{
10315
+ id: z.ZodString;
10316
+ company_id: z.ZodString;
10317
+ assets_site_id: z.ZodNullable<z.ZodString>;
10318
+ container_item_id: z.ZodNullable<z.ZodString>;
10319
+ parent_id: z.ZodNullable<z.ZodString>;
10320
+ kind: z.ZodNullable<z.ZodEnum<{
10321
+ zone: "zone";
10322
+ aisle: "aisle";
10323
+ rack: "rack";
10324
+ shelf: "shelf";
10325
+ bin: "bin";
10326
+ drawer: "drawer";
10327
+ }>>;
10328
+ name: z.ZodString;
10329
+ code: z.ZodString;
10330
+ path_code: z.ZodString;
10331
+ created_at: z.ZodISODateTime;
10332
+ updated_at: z.ZodISODateTime;
10333
+ }, z.core.$strip>;
10334
+ export declare const zGetSubLocationPath: z.ZodObject<{
10335
+ id: z.ZodString;
10336
+ }, z.core.$strip>;
10337
+ /**
10338
+ * Success
10339
+ */
10340
+ export declare const zGetSubLocationResponse: z.ZodObject<{
10341
+ id: z.ZodString;
10342
+ company_id: z.ZodString;
10343
+ assets_site_id: z.ZodNullable<z.ZodString>;
10344
+ container_item_id: z.ZodNullable<z.ZodString>;
10345
+ parent_id: z.ZodNullable<z.ZodString>;
10346
+ kind: z.ZodNullable<z.ZodEnum<{
10347
+ zone: "zone";
10348
+ aisle: "aisle";
10349
+ rack: "rack";
10350
+ shelf: "shelf";
10351
+ bin: "bin";
10352
+ drawer: "drawer";
10353
+ }>>;
10354
+ name: z.ZodString;
10355
+ code: z.ZodString;
10356
+ path_code: z.ZodString;
10357
+ created_at: z.ZodISODateTime;
10358
+ updated_at: z.ZodISODateTime;
10359
+ }, z.core.$strip>;
10360
+ export declare const zUpdateSubLocationBody: z.ZodObject<{
10361
+ assets_site_id: z.ZodOptional<z.ZodString>;
10362
+ container_item_id: z.ZodOptional<z.ZodString>;
10363
+ parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10364
+ kind: z.ZodOptional<z.ZodEnum<{
10365
+ zone: "zone";
10366
+ aisle: "aisle";
10367
+ rack: "rack";
10368
+ shelf: "shelf";
10369
+ bin: "bin";
10370
+ drawer: "drawer";
10371
+ }>>;
10372
+ name: z.ZodOptional<z.ZodString>;
10373
+ code: z.ZodOptional<z.ZodString>;
10374
+ }, z.core.$strip>;
10375
+ export declare const zUpdateSubLocationPath: z.ZodObject<{
10376
+ id: z.ZodString;
10377
+ }, z.core.$strip>;
10378
+ /**
10379
+ * Success
10380
+ */
10381
+ export declare const zUpdateSubLocationResponse: z.ZodObject<{
10382
+ id: z.ZodString;
10383
+ company_id: z.ZodString;
10384
+ assets_site_id: z.ZodNullable<z.ZodString>;
10385
+ container_item_id: z.ZodNullable<z.ZodString>;
10386
+ parent_id: z.ZodNullable<z.ZodString>;
10387
+ kind: z.ZodNullable<z.ZodEnum<{
10388
+ zone: "zone";
10389
+ aisle: "aisle";
10390
+ rack: "rack";
10391
+ shelf: "shelf";
10392
+ bin: "bin";
10393
+ drawer: "drawer";
10394
+ }>>;
10395
+ name: z.ZodString;
10396
+ code: z.ZodString;
10397
+ path_code: z.ZodString;
10398
+ created_at: z.ZodISODateTime;
10399
+ updated_at: z.ZodISODateTime;
10400
+ }, z.core.$strip>;
10401
+ export declare const zListTransfersQuery: z.ZodObject<{
10402
+ 'filter[status]': z.ZodOptional<z.ZodString>;
10403
+ filter: z.ZodOptional<z.ZodString>;
10404
+ 'filter[unexpected]': z.ZodOptional<z.ZodString>;
10405
+ }, z.core.$strip>;
10406
+ /**
10407
+ * Success
10408
+ */
10409
+ export declare const zListTransfersResponse: z.ZodObject<{
10410
+ meta: z.ZodObject<{
10411
+ page: z.ZodObject<{
10412
+ next_cursor: z.ZodNullable<z.ZodString>;
10413
+ current_cursor: z.ZodNullable<z.ZodString>;
10414
+ }, z.core.$strip>;
10415
+ }, z.core.$strip>;
10416
+ links: z.ZodObject<{
10417
+ self: z.ZodString;
10418
+ first: z.ZodNullable<z.ZodString>;
10419
+ next: z.ZodNullable<z.ZodString>;
10420
+ }, z.core.$strip>;
10421
+ data: z.ZodArray<z.ZodObject<{
10422
+ id: z.ZodString;
10423
+ company_id: z.ZodString;
10424
+ status: z.ZodEnum<{
10425
+ pending: "pending";
10426
+ cancelled: "cancelled";
10427
+ completed: "completed";
10428
+ in_transit: "in_transit";
10429
+ }>;
10430
+ from_assets_site_id: z.ZodNullable<z.ZodString>;
10431
+ from_user_id: z.ZodNullable<z.ZodString>;
10432
+ from_container_item_id: z.ZodNullable<z.ZodString>;
10433
+ to_assets_site_id: z.ZodNullable<z.ZodString>;
10434
+ to_user_id: z.ZodNullable<z.ZodString>;
10435
+ to_container_item_id: z.ZodNullable<z.ZodString>;
10436
+ from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
10437
+ to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
10438
+ initiated_by_user_id: z.ZodString;
10439
+ completed_at: z.ZodNullable<z.ZodISODateTime>;
10440
+ transfer_lines: z.ZodArray<z.ZodObject<{
10441
+ id: z.ZodString;
10442
+ assets_item_id: z.ZodString;
10443
+ quantity: z.ZodInt;
10444
+ }, z.core.$strip>>;
10445
+ created_at: z.ZodISODateTime;
10446
+ updated_at: z.ZodISODateTime;
10447
+ }, z.core.$strip>>;
10448
+ }, z.core.$strip>;
10449
+ export declare const zCreateTransferBody: z.ZodObject<{
10450
+ from_assets_site_id: z.ZodOptional<z.ZodString>;
10451
+ from_user_id: z.ZodOptional<z.ZodString>;
10452
+ from_container_item_id: z.ZodOptional<z.ZodString>;
10453
+ to_assets_site_id: z.ZodOptional<z.ZodString>;
10454
+ to_user_id: z.ZodOptional<z.ZodString>;
10455
+ to_container_item_id: z.ZodOptional<z.ZodString>;
10456
+ from_assets_sub_location_id: z.ZodOptional<z.ZodString>;
10457
+ to_assets_sub_location_id: z.ZodOptional<z.ZodString>;
10458
+ performed_by_user_id: z.ZodString;
10459
+ line_items: z.ZodArray<z.ZodObject<{
10460
+ assets_item_id: z.ZodString;
10461
+ quantity: z.ZodInt;
10462
+ }, z.core.$strip>>;
10463
+ }, z.core.$strip>;
10464
+ export declare const zCreateTransferResponse: z.ZodUnion<readonly [z.ZodObject<{
10465
+ id: z.ZodString;
10466
+ company_id: z.ZodString;
9784
10467
  status: z.ZodEnum<{
9785
10468
  pending: "pending";
9786
10469
  cancelled: "cancelled";
@@ -9793,6 +10476,8 @@ export declare const zCreateTransferResponse: z.ZodUnion<readonly [z.ZodObject<{
9793
10476
  to_assets_site_id: z.ZodNullable<z.ZodString>;
9794
10477
  to_user_id: z.ZodNullable<z.ZodString>;
9795
10478
  to_container_item_id: z.ZodNullable<z.ZodString>;
10479
+ from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
10480
+ to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
9796
10481
  initiated_by_user_id: z.ZodString;
9797
10482
  completed_at: z.ZodNullable<z.ZodISODateTime>;
9798
10483
  transfer_lines: z.ZodArray<z.ZodObject<{
@@ -9824,6 +10509,8 @@ export declare const zGetTransferResponse: z.ZodObject<{
9824
10509
  to_assets_site_id: z.ZodNullable<z.ZodString>;
9825
10510
  to_user_id: z.ZodNullable<z.ZodString>;
9826
10511
  to_container_item_id: z.ZodNullable<z.ZodString>;
10512
+ from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
10513
+ to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
9827
10514
  initiated_by_user_id: z.ZodString;
9828
10515
  completed_at: z.ZodNullable<z.ZodISODateTime>;
9829
10516
  transfer_lines: z.ZodArray<z.ZodObject<{
@@ -11293,6 +11980,93 @@ export declare const zUpdateCheckResponse: z.ZodObject<{
11293
11980
  created_at: z.ZodISODateTime;
11294
11981
  updated_at: z.ZodISODateTime;
11295
11982
  }, z.core.$strip>;
11983
+ export declare const zListRequirementsQuery: z.ZodObject<{
11984
+ 'filter[search]': z.ZodOptional<z.ZodString>;
11985
+ 'filter[type]': z.ZodOptional<z.ZodString>;
11986
+ 'filter[category]': z.ZodOptional<z.ZodString>;
11987
+ 'filter[phase]': z.ZodOptional<z.ZodString>;
11988
+ 'filter[priority]': z.ZodOptional<z.ZodString>;
11989
+ 'filter[requisite]': z.ZodOptional<z.ZodString>;
11990
+ 'filter[target]': z.ZodOptional<z.ZodString>;
11991
+ filter: z.ZodOptional<z.ZodString>;
11992
+ 'filter[unexpected]': z.ZodOptional<z.ZodString>;
11993
+ 'page[cursor]': z.ZodOptional<z.ZodString>;
11994
+ 'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
11995
+ page: z.ZodOptional<z.ZodString>;
11996
+ }, z.core.$strip>;
11997
+ /**
11998
+ * Success
11999
+ */
12000
+ export declare const zListRequirementsResponse: z.ZodObject<{
12001
+ meta: z.ZodObject<{
12002
+ page: z.ZodObject<{
12003
+ next_cursor: z.ZodNullable<z.ZodString>;
12004
+ current_cursor: z.ZodNullable<z.ZodString>;
12005
+ }, z.core.$strip>;
12006
+ }, z.core.$strip>;
12007
+ links: z.ZodObject<{
12008
+ self: z.ZodString;
12009
+ first: z.ZodNullable<z.ZodString>;
12010
+ next: z.ZodNullable<z.ZodString>;
12011
+ }, z.core.$strip>;
12012
+ data: z.ZodArray<z.ZodObject<{
12013
+ id: z.ZodString;
12014
+ type: z.ZodString;
12015
+ title: z.ZodString;
12016
+ description: z.ZodString;
12017
+ target: z.ZodEnum<{
12018
+ Company: "Company";
12019
+ Job: "Job";
12020
+ Project: "Project";
12021
+ "Timekeeping::TimeCard": "Timekeeping::TimeCard";
12022
+ "Timekeeping::PayPeriod": "Timekeeping::PayPeriod";
12023
+ User: "User";
12024
+ UserCompany: "UserCompany";
12025
+ }>;
12026
+ category: z.ZodEnum<{
12027
+ regional: "regional";
12028
+ job: "job";
12029
+ project: "project";
12030
+ company: "company";
12031
+ apprenticeship: "apprenticeship";
12032
+ certified_payroll: "certified_payroll";
12033
+ payroll: "payroll";
12034
+ tax_credit: "tax_credit";
12035
+ timekeeping: "timekeeping";
12036
+ worker: "worker";
12037
+ }>;
12038
+ phase: z.ZodEnum<{
12039
+ after_pay_date: "after_pay_date";
12040
+ before_approval_deadline: "before_approval_deadline";
12041
+ close_out: "close_out";
12042
+ maintenance: "maintenance";
12043
+ onboarding: "onboarding";
12044
+ setup: "setup";
12045
+ }>;
12046
+ priority: z.ZodNullable<z.ZodEnum<{
12047
+ high: "high";
12048
+ low: "low";
12049
+ critical: "critical";
12050
+ medium: "medium";
12051
+ }>>;
12052
+ requisite: z.ZodNullable<z.ZodEnum<{
12053
+ apprenticeship: "apprenticeship";
12054
+ payroll: "payroll";
12055
+ timekeeping: "timekeeping";
12056
+ best_practice: "best_practice";
12057
+ dsptch: "dsptch";
12058
+ federal_pwa: "federal_pwa";
12059
+ ira: "ira";
12060
+ ira_tax_credit: "ira_tax_credit";
12061
+ pwa: "pwa";
12062
+ regional_pwa: "regional_pwa";
12063
+ wh347: "wh347";
12064
+ }>>;
12065
+ sort_order: z.ZodInt;
12066
+ created_at: z.ZodISODateTime;
12067
+ updated_at: z.ZodISODateTime;
12068
+ }, z.core.$strip>>;
12069
+ }, z.core.$strip>;
11296
12070
  export declare const zListCustomFieldConfigsQuery: z.ZodObject<{
11297
12071
  'page[cursor]': z.ZodOptional<z.ZodString>;
11298
12072
  'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
@@ -11408,6 +12182,14 @@ export declare const zUpdateCustomFieldConfigResponse: z.ZodObject<{
11408
12182
  updated_at: z.ZodISODateTime;
11409
12183
  }, z.core.$strip>;
11410
12184
  export declare const zCreateDirectUploadBody: z.ZodObject<{
12185
+ resource: z.ZodEnum<{
12186
+ "assets.items": "assets.items";
12187
+ "assets.items.documents": "assets.items.documents";
12188
+ "assets.items.service_events": "assets.items.service_events";
12189
+ "assets.products": "assets.products";
12190
+ "assets.vendors": "assets.vendors";
12191
+ users: "users";
12192
+ }>;
11411
12193
  blob: z.ZodObject<{
11412
12194
  filename: z.ZodString;
11413
12195
  byte_size: z.ZodInt;
@@ -12153,6 +12935,56 @@ export declare const zGetRateRuleResponse: z.ZodObject<{
12153
12935
  created_at: z.ZodISODateTime;
12154
12936
  updated_at: z.ZodISODateTime;
12155
12937
  }, z.core.$strip>;
12938
+ export declare const zShiftJobWageDeterminationGenesisBody: z.ZodObject<{
12939
+ effective_date: z.ZodISODate;
12940
+ }, z.core.$strip>;
12941
+ export declare const zShiftJobWageDeterminationGenesisHeaders: z.ZodObject<{
12942
+ 'If-Match': z.ZodString;
12943
+ }, z.core.$strip>;
12944
+ export declare const zShiftJobWageDeterminationGenesisPath: z.ZodObject<{
12945
+ job_id: z.ZodString;
12946
+ wage_determination_id: z.ZodString;
12947
+ }, z.core.$strip>;
12948
+ /**
12949
+ * Success
12950
+ */
12951
+ export declare const zShiftJobWageDeterminationGenesisResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
12952
+ id: z.ZodString;
12953
+ job_id: z.ZodString;
12954
+ pwa_trade_id: z.ZodString;
12955
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12956
+ labor_classification: z.ZodString;
12957
+ hourly_rate_cents: z.ZodString;
12958
+ fringe_rate_cents: z.ZodString;
12959
+ class_code: z.ZodNullable<z.ZodString>;
12960
+ construction_category: z.ZodNullable<z.ZodEnum<{
12961
+ building: "building";
12962
+ heavy: "heavy";
12963
+ highway: "highway";
12964
+ residential: "residential";
12965
+ }>>;
12966
+ general_wage_determination: z.ZodNullable<z.ZodString>;
12967
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
12968
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
12969
+ created_at: z.ZodISODateTime;
12970
+ updated_at: z.ZodISODateTime;
12971
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
12972
+ }, z.core.$strip>, z.ZodObject<{
12973
+ id: z.ZodString;
12974
+ job_id: z.ZodString;
12975
+ pwa_trade_id: z.ZodString;
12976
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12977
+ labor_classification: z.ZodString;
12978
+ hourly_rate_cents: z.ZodString;
12979
+ fringe_rate_cents: z.ZodString;
12980
+ general_wage_determination: z.ZodNullable<z.ZodString>;
12981
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
12982
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
12983
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
12984
+ created_at: z.ZodISODateTime;
12985
+ updated_at: z.ZodISODateTime;
12986
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
12987
+ }, z.core.$strip>], "type">;
12156
12988
  export declare const zListJobWageDeterminationHistoryPath: z.ZodObject<{
12157
12989
  job_id: z.ZodString;
12158
12990
  wage_determination_id: z.ZodString;
@@ -12179,6 +13011,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12179
13011
  job_wage_determination_id: z.ZodString;
12180
13012
  job_id: z.ZodString;
12181
13013
  pwa_trade_id: z.ZodString;
13014
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12182
13015
  labor_classification: z.ZodString;
12183
13016
  hourly_rate_cents: z.ZodString;
12184
13017
  fringe_rate_cents: z.ZodString;
@@ -12203,6 +13036,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12203
13036
  job_wage_determination_id: z.ZodString;
12204
13037
  job_id: z.ZodString;
12205
13038
  pwa_trade_id: z.ZodString;
13039
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12206
13040
  labor_classification: z.ZodString;
12207
13041
  hourly_rate_cents: z.ZodString;
12208
13042
  fringe_rate_cents: z.ZodString;
@@ -12223,6 +13057,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12223
13057
  job_wage_determination_id: z.ZodString;
12224
13058
  job_id: z.ZodString;
12225
13059
  pwa_trade_id: z.ZodString;
13060
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12226
13061
  labor_classification: z.ZodString;
12227
13062
  hourly_rate_cents: z.ZodString;
12228
13063
  fringe_rate_cents: z.ZodString;
@@ -12239,6 +13074,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12239
13074
  job_wage_determination_id: z.ZodString;
12240
13075
  job_id: z.ZodString;
12241
13076
  pwa_trade_id: z.ZodString;
13077
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12242
13078
  labor_classification: z.ZodString;
12243
13079
  hourly_rate_cents: z.ZodString;
12244
13080
  fringe_rate_cents: z.ZodString;
@@ -12257,6 +13093,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12257
13093
  job_wage_determination_id: z.ZodString;
12258
13094
  job_id: z.ZodString;
12259
13095
  pwa_trade_id: z.ZodString;
13096
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12260
13097
  labor_classification: z.ZodString;
12261
13098
  hourly_rate_cents: z.ZodString;
12262
13099
  fringe_rate_cents: z.ZodString;
@@ -12277,6 +13114,7 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12277
13114
  job_wage_determination_id: z.ZodString;
12278
13115
  job_id: z.ZodString;
12279
13116
  pwa_trade_id: z.ZodString;
13117
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12280
13118
  labor_classification: z.ZodString;
12281
13119
  hourly_rate_cents: z.ZodString;
12282
13120
  fringe_rate_cents: z.ZodString;
@@ -12291,6 +13129,267 @@ export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
12291
13129
  type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
12292
13130
  }, z.core.$strip>], "type">>;
12293
13131
  }, z.core.$strip>;
13132
+ export declare const zCancelJobWageDeterminationScheduledChangesHeaders: z.ZodObject<{
13133
+ 'If-Match': z.ZodString;
13134
+ }, z.core.$strip>;
13135
+ export declare const zCancelJobWageDeterminationScheduledChangesPath: z.ZodObject<{
13136
+ job_id: z.ZodString;
13137
+ wage_determination_id: z.ZodString;
13138
+ }, z.core.$strip>;
13139
+ /**
13140
+ * Success
13141
+ */
13142
+ export declare const zCancelJobWageDeterminationScheduledChangesResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
13143
+ id: z.ZodString;
13144
+ job_id: z.ZodString;
13145
+ pwa_trade_id: z.ZodString;
13146
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13147
+ labor_classification: z.ZodString;
13148
+ hourly_rate_cents: z.ZodString;
13149
+ fringe_rate_cents: z.ZodString;
13150
+ class_code: z.ZodNullable<z.ZodString>;
13151
+ construction_category: z.ZodNullable<z.ZodEnum<{
13152
+ building: "building";
13153
+ heavy: "heavy";
13154
+ highway: "highway";
13155
+ residential: "residential";
13156
+ }>>;
13157
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13158
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13159
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13160
+ created_at: z.ZodISODateTime;
13161
+ updated_at: z.ZodISODateTime;
13162
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
13163
+ }, z.core.$strip>, z.ZodObject<{
13164
+ id: z.ZodString;
13165
+ job_id: z.ZodString;
13166
+ pwa_trade_id: z.ZodString;
13167
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13168
+ labor_classification: z.ZodString;
13169
+ hourly_rate_cents: z.ZodString;
13170
+ fringe_rate_cents: z.ZodString;
13171
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13172
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
13173
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13174
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13175
+ created_at: z.ZodISODateTime;
13176
+ updated_at: z.ZodISODateTime;
13177
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
13178
+ }, z.core.$strip>], "type">;
13179
+ export declare const zListJobWageDeterminationScheduledChangesPath: z.ZodObject<{
13180
+ job_id: z.ZodString;
13181
+ wage_determination_id: z.ZodString;
13182
+ }, z.core.$strip>;
13183
+ /**
13184
+ * Success with scheduled changes
13185
+ */
13186
+ export declare const zListJobWageDeterminationScheduledChangesResponse: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
13187
+ id: z.ZodString;
13188
+ job_id: z.ZodString;
13189
+ pwa_trade_id: z.ZodString;
13190
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13191
+ labor_classification: z.ZodString;
13192
+ hourly_rate_cents: z.ZodString;
13193
+ fringe_rate_cents: z.ZodString;
13194
+ class_code: z.ZodNullable<z.ZodString>;
13195
+ construction_category: z.ZodNullable<z.ZodEnum<{
13196
+ building: "building";
13197
+ heavy: "heavy";
13198
+ highway: "highway";
13199
+ residential: "residential";
13200
+ }>>;
13201
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13202
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13203
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13204
+ created_at: z.ZodISODateTime;
13205
+ updated_at: z.ZodISODateTime;
13206
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
13207
+ }, z.core.$strip>, z.ZodObject<{
13208
+ id: z.ZodString;
13209
+ job_id: z.ZodString;
13210
+ pwa_trade_id: z.ZodString;
13211
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13212
+ labor_classification: z.ZodString;
13213
+ hourly_rate_cents: z.ZodString;
13214
+ fringe_rate_cents: z.ZodString;
13215
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13216
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
13217
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13218
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13219
+ created_at: z.ZodISODateTime;
13220
+ updated_at: z.ZodISODateTime;
13221
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
13222
+ }, z.core.$strip>], "type">>;
13223
+ export declare const zScheduleJobWageDeterminationChangeBody: z.ZodObject<{
13224
+ effective_date: z.ZodISODate;
13225
+ labor_classification: z.ZodOptional<z.ZodString>;
13226
+ pwa_trade_id: z.ZodOptional<z.ZodString>;
13227
+ hourly_rate_cents: z.ZodOptional<z.ZodString>;
13228
+ fringe_rate_cents: z.ZodOptional<z.ZodString>;
13229
+ class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13230
+ construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
13231
+ building: "building";
13232
+ heavy: "heavy";
13233
+ highway: "highway";
13234
+ residential: "residential";
13235
+ }>>>;
13236
+ general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13237
+ regional_fields: z.ZodOptional<z.ZodObject<{
13238
+ combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13239
+ combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13240
+ combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13241
+ training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13242
+ other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13243
+ one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13244
+ two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13245
+ one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13246
+ two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13247
+ }, z.core.$strip>>;
13248
+ }, z.core.$strip>;
13249
+ export declare const zScheduleJobWageDeterminationChangeHeaders: z.ZodObject<{
13250
+ 'If-Match': z.ZodString;
13251
+ }, z.core.$strip>;
13252
+ export declare const zScheduleJobWageDeterminationChangePath: z.ZodObject<{
13253
+ job_id: z.ZodString;
13254
+ wage_determination_id: z.ZodString;
13255
+ }, z.core.$strip>;
13256
+ /**
13257
+ * Created
13258
+ */
13259
+ export declare const zScheduleJobWageDeterminationChangeResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
13260
+ id: z.ZodString;
13261
+ job_id: z.ZodString;
13262
+ pwa_trade_id: z.ZodString;
13263
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13264
+ labor_classification: z.ZodString;
13265
+ hourly_rate_cents: z.ZodString;
13266
+ fringe_rate_cents: z.ZodString;
13267
+ class_code: z.ZodNullable<z.ZodString>;
13268
+ construction_category: z.ZodNullable<z.ZodEnum<{
13269
+ building: "building";
13270
+ heavy: "heavy";
13271
+ highway: "highway";
13272
+ residential: "residential";
13273
+ }>>;
13274
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13275
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13276
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13277
+ created_at: z.ZodISODateTime;
13278
+ updated_at: z.ZodISODateTime;
13279
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
13280
+ }, z.core.$strip>, z.ZodObject<{
13281
+ id: z.ZodString;
13282
+ job_id: z.ZodString;
13283
+ pwa_trade_id: z.ZodString;
13284
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13285
+ labor_classification: z.ZodString;
13286
+ hourly_rate_cents: z.ZodString;
13287
+ fringe_rate_cents: z.ZodString;
13288
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13289
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
13290
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13291
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13292
+ created_at: z.ZodISODateTime;
13293
+ updated_at: z.ZodISODateTime;
13294
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
13295
+ }, z.core.$strip>], "type">;
13296
+ export declare const zCancelJobWageDeterminationScheduledTerminationHeaders: z.ZodObject<{
13297
+ 'If-Match': z.ZodString;
13298
+ }, z.core.$strip>;
13299
+ export declare const zCancelJobWageDeterminationScheduledTerminationPath: z.ZodObject<{
13300
+ job_id: z.ZodString;
13301
+ wage_determination_id: z.ZodString;
13302
+ }, z.core.$strip>;
13303
+ /**
13304
+ * Success
13305
+ */
13306
+ export declare const zCancelJobWageDeterminationScheduledTerminationResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
13307
+ id: z.ZodString;
13308
+ job_id: z.ZodString;
13309
+ pwa_trade_id: z.ZodString;
13310
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13311
+ labor_classification: z.ZodString;
13312
+ hourly_rate_cents: z.ZodString;
13313
+ fringe_rate_cents: z.ZodString;
13314
+ class_code: z.ZodNullable<z.ZodString>;
13315
+ construction_category: z.ZodNullable<z.ZodEnum<{
13316
+ building: "building";
13317
+ heavy: "heavy";
13318
+ highway: "highway";
13319
+ residential: "residential";
13320
+ }>>;
13321
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13322
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13323
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13324
+ created_at: z.ZodISODateTime;
13325
+ updated_at: z.ZodISODateTime;
13326
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
13327
+ }, z.core.$strip>, z.ZodObject<{
13328
+ id: z.ZodString;
13329
+ job_id: z.ZodString;
13330
+ pwa_trade_id: z.ZodString;
13331
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13332
+ labor_classification: z.ZodString;
13333
+ hourly_rate_cents: z.ZodString;
13334
+ fringe_rate_cents: z.ZodString;
13335
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13336
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
13337
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13338
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13339
+ created_at: z.ZodISODateTime;
13340
+ updated_at: z.ZodISODateTime;
13341
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
13342
+ }, z.core.$strip>], "type">;
13343
+ export declare const zScheduleJobWageDeterminationTerminationBody: z.ZodObject<{
13344
+ effective_date: z.ZodISODate;
13345
+ }, z.core.$strip>;
13346
+ export declare const zScheduleJobWageDeterminationTerminationHeaders: z.ZodObject<{
13347
+ 'If-Match': z.ZodString;
13348
+ }, z.core.$strip>;
13349
+ export declare const zScheduleJobWageDeterminationTerminationPath: z.ZodObject<{
13350
+ job_id: z.ZodString;
13351
+ wage_determination_id: z.ZodString;
13352
+ }, z.core.$strip>;
13353
+ /**
13354
+ * Created
13355
+ */
13356
+ export declare const zScheduleJobWageDeterminationTerminationResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
13357
+ id: z.ZodString;
13358
+ job_id: z.ZodString;
13359
+ pwa_trade_id: z.ZodString;
13360
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13361
+ labor_classification: z.ZodString;
13362
+ hourly_rate_cents: z.ZodString;
13363
+ fringe_rate_cents: z.ZodString;
13364
+ class_code: z.ZodNullable<z.ZodString>;
13365
+ construction_category: z.ZodNullable<z.ZodEnum<{
13366
+ building: "building";
13367
+ heavy: "heavy";
13368
+ highway: "highway";
13369
+ residential: "residential";
13370
+ }>>;
13371
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13372
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13373
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13374
+ created_at: z.ZodISODateTime;
13375
+ updated_at: z.ZodISODateTime;
13376
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
13377
+ }, z.core.$strip>, z.ZodObject<{
13378
+ id: z.ZodString;
13379
+ job_id: z.ZodString;
13380
+ pwa_trade_id: z.ZodString;
13381
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13382
+ labor_classification: z.ZodString;
13383
+ hourly_rate_cents: z.ZodString;
13384
+ fringe_rate_cents: z.ZodString;
13385
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13386
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
13387
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13388
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13389
+ created_at: z.ZodISODateTime;
13390
+ updated_at: z.ZodISODateTime;
13391
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
13392
+ }, z.core.$strip>], "type">;
12294
13393
  export declare const zListJobWageDeterminationsPath: z.ZodObject<{
12295
13394
  job_id: z.ZodString;
12296
13395
  }, z.core.$strip>;
@@ -12320,6 +13419,7 @@ export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
12320
13419
  id: z.ZodString;
12321
13420
  job_id: z.ZodString;
12322
13421
  pwa_trade_id: z.ZodString;
13422
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12323
13423
  labor_classification: z.ZodString;
12324
13424
  hourly_rate_cents: z.ZodString;
12325
13425
  fringe_rate_cents: z.ZodString;
@@ -12340,6 +13440,7 @@ export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
12340
13440
  id: z.ZodString;
12341
13441
  job_id: z.ZodString;
12342
13442
  pwa_trade_id: z.ZodString;
13443
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12343
13444
  labor_classification: z.ZodString;
12344
13445
  hourly_rate_cents: z.ZodString;
12345
13446
  fringe_rate_cents: z.ZodString;
@@ -12395,6 +13496,7 @@ export declare const zCreateWageDeterminationResponse: z.ZodDiscriminatedUnion<[
12395
13496
  id: z.ZodString;
12396
13497
  job_id: z.ZodString;
12397
13498
  pwa_trade_id: z.ZodString;
13499
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12398
13500
  labor_classification: z.ZodString;
12399
13501
  hourly_rate_cents: z.ZodString;
12400
13502
  fringe_rate_cents: z.ZodString;
@@ -12415,6 +13517,7 @@ export declare const zCreateWageDeterminationResponse: z.ZodDiscriminatedUnion<[
12415
13517
  id: z.ZodString;
12416
13518
  job_id: z.ZodString;
12417
13519
  pwa_trade_id: z.ZodString;
13520
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12418
13521
  labor_classification: z.ZodString;
12419
13522
  hourly_rate_cents: z.ZodString;
12420
13523
  fringe_rate_cents: z.ZodString;
@@ -12440,6 +13543,7 @@ export declare const zDeleteWageDeterminationResponse: z.ZodDiscriminatedUnion<[
12440
13543
  id: z.ZodString;
12441
13544
  job_id: z.ZodString;
12442
13545
  pwa_trade_id: z.ZodString;
13546
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12443
13547
  labor_classification: z.ZodString;
12444
13548
  hourly_rate_cents: z.ZodString;
12445
13549
  fringe_rate_cents: z.ZodString;
@@ -12460,6 +13564,7 @@ export declare const zDeleteWageDeterminationResponse: z.ZodDiscriminatedUnion<[
12460
13564
  id: z.ZodString;
12461
13565
  job_id: z.ZodString;
12462
13566
  pwa_trade_id: z.ZodString;
13567
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12463
13568
  labor_classification: z.ZodString;
12464
13569
  hourly_rate_cents: z.ZodString;
12465
13570
  fringe_rate_cents: z.ZodString;
@@ -12485,6 +13590,80 @@ export declare const zGetJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[
12485
13590
  id: z.ZodString;
12486
13591
  job_id: z.ZodString;
12487
13592
  pwa_trade_id: z.ZodString;
13593
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13594
+ labor_classification: z.ZodString;
13595
+ hourly_rate_cents: z.ZodString;
13596
+ fringe_rate_cents: z.ZodString;
13597
+ class_code: z.ZodNullable<z.ZodString>;
13598
+ construction_category: z.ZodNullable<z.ZodEnum<{
13599
+ building: "building";
13600
+ heavy: "heavy";
13601
+ highway: "highway";
13602
+ residential: "residential";
13603
+ }>>;
13604
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13605
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13606
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13607
+ created_at: z.ZodISODateTime;
13608
+ updated_at: z.ZodISODateTime;
13609
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
13610
+ }, z.core.$strip>, z.ZodObject<{
13611
+ id: z.ZodString;
13612
+ job_id: z.ZodString;
13613
+ pwa_trade_id: z.ZodString;
13614
+ overtime_package_id: z.ZodNullable<z.ZodString>;
13615
+ labor_classification: z.ZodString;
13616
+ hourly_rate_cents: z.ZodString;
13617
+ fringe_rate_cents: z.ZodString;
13618
+ general_wage_determination: z.ZodNullable<z.ZodString>;
13619
+ regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
13620
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
13621
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
13622
+ created_at: z.ZodISODateTime;
13623
+ updated_at: z.ZodISODateTime;
13624
+ type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
13625
+ }, z.core.$strip>], "type">;
13626
+ export declare const zUpdateJobWageDeterminationBody: z.ZodObject<{
13627
+ effective_from: z.ZodOptional<z.ZodISODate>;
13628
+ labor_classification: z.ZodOptional<z.ZodString>;
13629
+ pwa_trade_id: z.ZodOptional<z.ZodString>;
13630
+ hourly_rate_cents: z.ZodOptional<z.ZodString>;
13631
+ fringe_rate_cents: z.ZodOptional<z.ZodString>;
13632
+ class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13633
+ construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
13634
+ building: "building";
13635
+ heavy: "heavy";
13636
+ highway: "highway";
13637
+ residential: "residential";
13638
+ }>>>;
13639
+ general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13640
+ regional_fields: z.ZodOptional<z.ZodObject<{
13641
+ combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13642
+ combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13643
+ combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13644
+ training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13645
+ other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13646
+ one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13647
+ two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13648
+ one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13649
+ two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13650
+ }, z.core.$strip>>;
13651
+ }, z.core.$strip>;
13652
+ export declare const zUpdateJobWageDeterminationHeaders: z.ZodObject<{
13653
+ 'If-Match': z.ZodString;
13654
+ }, z.core.$strip>;
13655
+ export declare const zUpdateJobWageDeterminationPath: z.ZodObject<{
13656
+ job_id: z.ZodString;
13657
+ id: z.ZodString;
13658
+ }, z.core.$strip>;
13659
+ /**
13660
+ * Success
13661
+ */
13662
+ export declare const zUpdateJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
13663
+ id: z.ZodString;
13664
+ job_id: z.ZodString;
13665
+ pwa_trade_id: z.ZodString;
13666
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12488
13667
  labor_classification: z.ZodString;
12489
13668
  hourly_rate_cents: z.ZodString;
12490
13669
  fringe_rate_cents: z.ZodString;
@@ -12505,6 +13684,7 @@ export declare const zGetJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[
12505
13684
  id: z.ZodString;
12506
13685
  job_id: z.ZodString;
12507
13686
  pwa_trade_id: z.ZodString;
13687
+ overtime_package_id: z.ZodNullable<z.ZodString>;
12508
13688
  labor_classification: z.ZodString;
12509
13689
  hourly_rate_cents: z.ZodString;
12510
13690
  fringe_rate_cents: z.ZodString;
@@ -15738,6 +16918,48 @@ export declare const zListTemplatesResponse: z.ZodObject<{
15738
16918
  description: z.ZodNullable<z.ZodString>;
15739
16919
  }, z.core.$strip>>;
15740
16920
  }, z.core.$strip>;
16921
+ export declare const zListAdjustableLineItemsPath: z.ZodObject<{
16922
+ time_card_id: z.ZodString;
16923
+ }, z.core.$strip>;
16924
+ export declare const zListAdjustableLineItemsQuery: z.ZodObject<{
16925
+ 'filter[payrolls_paystub_id]': z.ZodOptional<z.ZodString>;
16926
+ 'page[cursor]': z.ZodOptional<z.ZodString>;
16927
+ 'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
16928
+ page: z.ZodOptional<z.ZodString>;
16929
+ filter: z.ZodOptional<z.ZodString>;
16930
+ 'filter[unexpected]': z.ZodOptional<z.ZodString>;
16931
+ }, z.core.$strip>;
16932
+ /**
16933
+ * Success
16934
+ */
16935
+ export declare const zListAdjustableLineItemsResponse: z.ZodObject<{
16936
+ meta: z.ZodObject<{
16937
+ page: z.ZodObject<{
16938
+ next_cursor: z.ZodNullable<z.ZodString>;
16939
+ current_cursor: z.ZodNullable<z.ZodString>;
16940
+ }, z.core.$strip>;
16941
+ }, z.core.$strip>;
16942
+ links: z.ZodObject<{
16943
+ self: z.ZodString;
16944
+ first: z.ZodNullable<z.ZodString>;
16945
+ next: z.ZodNullable<z.ZodString>;
16946
+ }, z.core.$strip>;
16947
+ data: z.ZodArray<z.ZodObject<{
16948
+ id: z.ZodString;
16949
+ payrolls_paystub_id: z.ZodNullable<z.ZodString>;
16950
+ payrolls_payroll_run_id: z.ZodNullable<z.ZodString>;
16951
+ payrolls_external_map_id: z.ZodString;
16952
+ user_id: z.ZodNullable<z.ZodString>;
16953
+ amount_cents: z.ZodString;
16954
+ contributor: z.ZodEnum<{
16955
+ employee: "employee";
16956
+ employer: "employer";
16957
+ }>;
16958
+ adjustable_amount_cents: z.ZodString;
16959
+ created_at: z.ZodISODateTime;
16960
+ updated_at: z.ZodISODateTime;
16961
+ }, z.core.$strip>>;
16962
+ }, z.core.$strip>;
15741
16963
  export declare const zSetTimeCardLockBody: z.ZodObject<{
15742
16964
  locked: z.ZodBoolean;
15743
16965
  }, z.core.$strip>;
@@ -15856,7 +17078,6 @@ export declare const zCreateTimeCardPerDiemBody: z.ZodObject<{
15856
17078
  date: z.ZodISODate;
15857
17079
  approver_user_id: z.ZodString;
15858
17080
  per_diem_id: z.ZodString;
15859
- taxable: z.ZodOptional<z.ZodBoolean>;
15860
17081
  }, z.core.$strip>;
15861
17082
  export declare const zCreateTimeCardPerDiemPath: z.ZodObject<{
15862
17083
  time_card_id: z.ZodString;
@@ -15899,7 +17120,6 @@ export declare const zUpdateTimeCardPerDiemBody: z.ZodObject<{
15899
17120
  date: z.ZodISODate;
15900
17121
  approver_user_id: z.ZodString;
15901
17122
  per_diem_id: z.ZodString;
15902
- taxable: z.ZodOptional<z.ZodBoolean>;
15903
17123
  }, z.core.$strip>;
15904
17124
  export declare const zUpdateTimeCardPerDiemPath: z.ZodObject<{
15905
17125
  time_card_id: z.ZodString;
@@ -15968,6 +17188,79 @@ export declare const zListPriorPeriodAdjustmentsResponse: z.ZodObject<{
15968
17188
  updated_at: z.ZodISODateTime;
15969
17189
  }, z.core.$strip>>;
15970
17190
  }, z.core.$strip>;
17191
+ export declare const zCreatePriorPeriodAdjustmentBody: z.ZodObject<{
17192
+ payrolls_paystub_line_item_id: z.ZodString;
17193
+ created_by_user_id: z.ZodString;
17194
+ amount_cents: z.ZodString;
17195
+ rationale: z.ZodEnum<{
17196
+ other: "other";
17197
+ hours_correction: "hours_correction";
17198
+ pwa_compliance: "pwa_compliance";
17199
+ rate_correction: "rate_correction";
17200
+ }>;
17201
+ job_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17202
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17203
+ pwa_compliance_eligible: z.ZodOptional<z.ZodBoolean>;
17204
+ }, z.core.$strip>;
17205
+ export declare const zCreatePriorPeriodAdjustmentPath: z.ZodObject<{
17206
+ time_card_id: z.ZodString;
17207
+ }, z.core.$strip>;
17208
+ /**
17209
+ * Created
17210
+ */
17211
+ export declare const zCreatePriorPeriodAdjustmentResponse: z.ZodObject<{
17212
+ id: z.ZodString;
17213
+ timekeeping_time_card_id: z.ZodString;
17214
+ payrolls_paystub_line_item_id: z.ZodString;
17215
+ job_id: z.ZodNullable<z.ZodString>;
17216
+ created_by_user_id: z.ZodString;
17217
+ adjustment_type: z.ZodEnum<{
17218
+ overpayment_recovery: "overpayment_recovery";
17219
+ retroactive_increase: "retroactive_increase";
17220
+ }>;
17221
+ rationale: z.ZodEnum<{
17222
+ other: "other";
17223
+ hours_correction: "hours_correction";
17224
+ pwa_compliance: "pwa_compliance";
17225
+ rate_correction: "rate_correction";
17226
+ }>;
17227
+ notes: z.ZodNullable<z.ZodString>;
17228
+ pwa_compliance_eligible: z.ZodBoolean;
17229
+ amount_cents: z.ZodString;
17230
+ currency: z.ZodString;
17231
+ created_at: z.ZodISODateTime;
17232
+ updated_at: z.ZodISODateTime;
17233
+ }, z.core.$strip>;
17234
+ export declare const zDeletePriorPeriodAdjustmentPath: z.ZodObject<{
17235
+ time_card_id: z.ZodString;
17236
+ id: z.ZodString;
17237
+ }, z.core.$strip>;
17238
+ /**
17239
+ * Success
17240
+ */
17241
+ export declare const zDeletePriorPeriodAdjustmentResponse: z.ZodObject<{
17242
+ id: z.ZodString;
17243
+ timekeeping_time_card_id: z.ZodString;
17244
+ payrolls_paystub_line_item_id: z.ZodString;
17245
+ job_id: z.ZodNullable<z.ZodString>;
17246
+ created_by_user_id: z.ZodString;
17247
+ adjustment_type: z.ZodEnum<{
17248
+ overpayment_recovery: "overpayment_recovery";
17249
+ retroactive_increase: "retroactive_increase";
17250
+ }>;
17251
+ rationale: z.ZodEnum<{
17252
+ other: "other";
17253
+ hours_correction: "hours_correction";
17254
+ pwa_compliance: "pwa_compliance";
17255
+ rate_correction: "rate_correction";
17256
+ }>;
17257
+ notes: z.ZodNullable<z.ZodString>;
17258
+ pwa_compliance_eligible: z.ZodBoolean;
17259
+ amount_cents: z.ZodString;
17260
+ currency: z.ZodString;
17261
+ created_at: z.ZodISODateTime;
17262
+ updated_at: z.ZodISODateTime;
17263
+ }, z.core.$strip>;
15971
17264
  export declare const zGetPriorPeriodAdjustmentPath: z.ZodObject<{
15972
17265
  time_card_id: z.ZodString;
15973
17266
  id: z.ZodString;
@@ -15998,6 +17291,48 @@ export declare const zGetPriorPeriodAdjustmentResponse: z.ZodObject<{
15998
17291
  created_at: z.ZodISODateTime;
15999
17292
  updated_at: z.ZodISODateTime;
16000
17293
  }, z.core.$strip>;
17294
+ export declare const zListPwaCompliancesPath: z.ZodObject<{
17295
+ time_card_id: z.ZodString;
17296
+ }, z.core.$strip>;
17297
+ export declare const zListPwaCompliancesQuery: z.ZodObject<{
17298
+ 'filter[job_id]': z.ZodOptional<z.ZodString>;
17299
+ 'page[cursor]': z.ZodOptional<z.ZodString>;
17300
+ 'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
17301
+ page: z.ZodOptional<z.ZodString>;
17302
+ filter: z.ZodOptional<z.ZodString>;
17303
+ 'filter[unexpected]': z.ZodOptional<z.ZodString>;
17304
+ }, z.core.$strip>;
17305
+ /**
17306
+ * Success
17307
+ */
17308
+ export declare const zListPwaCompliancesResponse: z.ZodObject<{
17309
+ meta: z.ZodObject<{
17310
+ page: z.ZodObject<{
17311
+ next_cursor: z.ZodNullable<z.ZodString>;
17312
+ current_cursor: z.ZodNullable<z.ZodString>;
17313
+ }, z.core.$strip>;
17314
+ }, z.core.$strip>;
17315
+ links: z.ZodObject<{
17316
+ self: z.ZodString;
17317
+ first: z.ZodNullable<z.ZodString>;
17318
+ next: z.ZodNullable<z.ZodString>;
17319
+ }, z.core.$strip>;
17320
+ data: z.ZodArray<z.ZodObject<{
17321
+ timekeeping_time_card_id: z.ZodString;
17322
+ timekeeping_pay_period_id: z.ZodString;
17323
+ job_id: z.ZodString;
17324
+ user_id: z.ZodString;
17325
+ pwa_minutes_worked: z.ZodInt;
17326
+ federal_post_interest_outstanding_cents: z.ZodString;
17327
+ regional_post_interest_outstanding_cents: z.ZodString;
17328
+ pwa_adjustments_cents: z.ZodString;
17329
+ federal_balance_due_cents: z.ZodString;
17330
+ regional_balance_due_cents: z.ZodString;
17331
+ balance_due_cents: z.ZodString;
17332
+ all_actuals_exist: z.ZodBoolean;
17333
+ compliant: z.ZodBoolean;
17334
+ }, z.core.$strip>>;
17335
+ }, z.core.$strip>;
16001
17336
  export declare const zCreateWorkerTimeCardApprovalBody: z.ZodObject<{
16002
17337
  status: z.ZodEnum<{
16003
17338
  pending: "pending";