@dsptch-work/api-client 0.13.0 → 0.14.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.
@@ -137,6 +137,12 @@ export declare const zProblem: z.ZodObject<{
137
137
  *
138
138
  * The API key lacks the scope grant for this endpoint and verb. Grant the required scope to the key and retry.
139
139
  *
140
+ * ### user_scoped_key_required
141
+ *
142
+ * **User-Scoped Key Required**
143
+ *
144
+ * The endpoint records which person performed the action, so it needs a credential that names one. The presented key is scoped to the company itself. Retry with a user-scoped API key; no additional scope grant makes a company-scoped key acceptable here.
145
+ *
140
146
  * ## 404
141
147
  *
142
148
  * ### not_found
@@ -348,6 +354,7 @@ export declare const zProblemTypeCatalog: z.ZodEnum<{
348
354
  company_scoped_key_required: "company_scoped_key_required";
349
355
  forbidden: "forbidden";
350
356
  insufficient_api_key_scope: "insufficient_api_key_scope";
357
+ user_scoped_key_required: "user_scoped_key_required";
351
358
  not_found: "not_found";
352
359
  already_terminated: "already_terminated";
353
360
  product_archived: "product_archived";
@@ -398,6 +405,7 @@ export declare const zDirectUploadParameters: z.ZodObject<{
398
405
  "assets.items.service_events": "assets.items.service_events";
399
406
  "assets.products": "assets.products";
400
407
  "assets.vendors": "assets.vendors";
408
+ "pay_periods.imports.time_entries": "pay_periods.imports.time_entries";
401
409
  users: "users";
402
410
  }>;
403
411
  blob: z.ZodObject<{
@@ -1504,6 +1512,45 @@ export declare const zPwaTradeResponseObject: z.ZodObject<{
1504
1512
  export declare const zPwaTradeParameters: z.ZodObject<{
1505
1513
  name: z.ZodString;
1506
1514
  }, z.core.$strip>;
1515
+ /**
1516
+ * Parameters for renaming a PWA trade (craft). Renaming edits the display label only — the craft's match key and every determination grouped under it are untouched.
1517
+ */
1518
+ export declare const zPwaTradeUpdateParameters: z.ZodObject<{
1519
+ name: z.ZodOptional<z.ZodString>;
1520
+ }, z.core.$strip>;
1521
+ /**
1522
+ * A reviewed apprentice-scope decision pairing a registered apprenticeship occupation with a craft (trade). The row's existence means the pair was reviewed; scope_status carries the verdict. A pair with no row is undecided and denies apprentice treatment.
1523
+ */
1524
+ export declare const zPwaTradeApprenticeshipOccupationResponseObject: z.ZodObject<{
1525
+ id: z.ZodString;
1526
+ pwa_trade_id: z.ZodString;
1527
+ apprenticeship_occupation_id: z.ZodString;
1528
+ scope_status: z.ZodEnum<{
1529
+ in_scope: "in_scope";
1530
+ out_of_scope: "out_of_scope";
1531
+ }>;
1532
+ created_at: z.ZodISODateTime;
1533
+ updated_at: z.ZodISODateTime;
1534
+ }, z.core.$strip>;
1535
+ /**
1536
+ * Parameters for recording an apprentice-scope decision on a trade.
1537
+ */
1538
+ export declare const zPwaTradeApprenticeshipOccupationCreateParameters: z.ZodObject<{
1539
+ apprenticeship_occupation_id: z.ZodString;
1540
+ scope_status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1541
+ in_scope: "in_scope";
1542
+ out_of_scope: "out_of_scope";
1543
+ }>>>;
1544
+ }, z.core.$strip>;
1545
+ /**
1546
+ * Parameters for flipping an existing apprentice-scope decision's verdict.
1547
+ */
1548
+ export declare const zPwaTradeApprenticeshipOccupationUpdateParameters: z.ZodObject<{
1549
+ scope_status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1550
+ in_scope: "in_scope";
1551
+ out_of_scope: "out_of_scope";
1552
+ }>>>;
1553
+ }, z.core.$strip>;
1507
1554
  /**
1508
1555
  * Prevailing-wage / apprenticeship (PWA) compliance details for a job, used in certified-payroll reporting. Fields for every supported state are always present; those outside the job's region come back null. Null on the job when it tracks no PWA compliance.
1509
1556
  */
@@ -2163,6 +2210,45 @@ export declare const zUserCompanyScheduledChangesResponse: z.ZodObject<{
2163
2210
  export declare const zUserCompanyScheduledTerminationParameters: z.ZodObject<{
2164
2211
  termination_date: z.ZodString;
2165
2212
  }, z.core.$strip>;
2213
+ /**
2214
+ * One problem found while processing an accepted import.
2215
+ */
2216
+ export declare const zTimeEntryImportProcessingError: z.ZodObject<{
2217
+ code: z.ZodString;
2218
+ row: z.ZodNullable<z.ZodInt>;
2219
+ column: z.ZodNullable<z.ZodString>;
2220
+ context: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2221
+ }, z.core.$strip>;
2222
+ /**
2223
+ * One bulk upload of time entries against a pay period, and how it turned out.
2224
+ */
2225
+ export declare const zTimeEntryImportResponseObject: z.ZodObject<{
2226
+ id: z.ZodString;
2227
+ pay_period_id: z.ZodString;
2228
+ status: z.ZodEnum<{
2229
+ pending: "pending";
2230
+ failed: "failed";
2231
+ success: "success";
2232
+ processing: "processing";
2233
+ processed: "processed";
2234
+ }>;
2235
+ processed_rows_count: z.ZodInt;
2236
+ processing_errors: z.ZodArray<z.ZodObject<{
2237
+ code: z.ZodString;
2238
+ row: z.ZodNullable<z.ZodInt>;
2239
+ column: z.ZodNullable<z.ZodString>;
2240
+ context: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2241
+ }, z.core.$strip>>;
2242
+ completed_at: z.ZodNullable<z.ZodISODateTime>;
2243
+ created_at: z.ZodISODateTime;
2244
+ updated_at: z.ZodISODateTime;
2245
+ }, z.core.$strip>;
2246
+ /**
2247
+ * Submit a spreadsheet of time entries for a pay period. All seven of payroll_id, start_time, end_time, timecode, job_id, state and description must be present as column headers, or the file is refused naming the ones missing. Of those, payroll_id, start_time, end_time, timecode and state must also carry a value on every row. features, federal_labor_classification and regional_labor_classification are read when present. Header matching ignores case and treats spaces as underscores, and column order does not matter. Any other column is refused: a name this import does not read would be dropped without trace, so the file is rejected naming it rather than applied in part.
2248
+ */
2249
+ export declare const zTimeEntryImportParameters: z.ZodObject<{
2250
+ file_signed_id: z.ZodString;
2251
+ }, z.core.$strip>;
2166
2252
  /**
2167
2253
  * A worker's time card for one pay period — the aggregation root for their tracked time, carrying approval and lock status alongside the period's rolled-up minutes and pay totals. One per worker per pay period.
2168
2254
  */
@@ -5128,6 +5214,7 @@ export declare const zRegionalJobWageDeterminationParameters: z.ZodObject<{
5128
5214
  hourly_rate_cents: z.ZodString;
5129
5215
  fringe_rate_cents: z.ZodOptional<z.ZodString>;
5130
5216
  general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5217
+ overtime_package_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5131
5218
  regional_fields: z.ZodOptional<z.ZodObject<{
5132
5219
  combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5133
5220
  combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
@@ -5163,6 +5250,7 @@ export declare const zJobWageDeterminationParameters: z.ZodDiscriminatedUnion<[z
5163
5250
  hourly_rate_cents: z.ZodString;
5164
5251
  fringe_rate_cents: z.ZodOptional<z.ZodString>;
5165
5252
  general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5253
+ overtime_package_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5166
5254
  regional_fields: z.ZodOptional<z.ZodObject<{
5167
5255
  combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
5168
5256
  combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
@@ -5181,6 +5269,7 @@ export declare const zJobWageDeterminationParameters: z.ZodDiscriminatedUnion<[z
5181
5269
  */
5182
5270
  export declare const zJobWageDeterminationUpdateParameters: z.ZodObject<{
5183
5271
  effective_from: z.ZodOptional<z.ZodISODate>;
5272
+ overtime_package_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5184
5273
  labor_classification: z.ZodOptional<z.ZodString>;
5185
5274
  pwa_trade_id: z.ZodOptional<z.ZodString>;
5186
5275
  hourly_rate_cents: z.ZodOptional<z.ZodString>;
@@ -5211,7 +5300,6 @@ export declare const zJobWageDeterminationUpdateParameters: z.ZodObject<{
5211
5300
  export declare const zJobWageDeterminationScheduledChangeParameters: z.ZodObject<{
5212
5301
  effective_date: z.ZodISODate;
5213
5302
  labor_classification: z.ZodOptional<z.ZodString>;
5214
- pwa_trade_id: z.ZodOptional<z.ZodString>;
5215
5303
  hourly_rate_cents: z.ZodOptional<z.ZodString>;
5216
5304
  fringe_rate_cents: z.ZodOptional<z.ZodString>;
5217
5305
  class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5510,6 +5598,223 @@ export declare const zRateRuleHistoryVersionObject: z.ZodObject<{
5510
5598
  updated_at: z.ZodISODateTime;
5511
5599
  }, z.core.$strip>>;
5512
5600
  }, z.core.$strip>;
5601
+ /**
5602
+ * An overtime rule (daily or weekly) belonging to an overtime package. It sets a pay multiplier that applies once a worked-hours threshold — and any day or date qualifier — is met. `valid_from`/`valid_to` bound the window this version is in effect.
5603
+ */
5604
+ export declare const zOvertimeRuleResponseObject: z.ZodObject<{
5605
+ id: z.ZodString;
5606
+ overtime_package_id: z.ZodString;
5607
+ type: z.ZodEnum<{
5608
+ DailyOvertimeRule: "DailyOvertimeRule";
5609
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
5610
+ }>;
5611
+ rate_multiplier: z.ZodEnum<{
5612
+ one_x: "one_x";
5613
+ one_five_x: "one_five_x";
5614
+ two_x: "two_x";
5615
+ }>;
5616
+ region_id: z.ZodNullable<z.ZodString>;
5617
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
5618
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
5619
+ sunday: "sunday";
5620
+ monday: "monday";
5621
+ tuesday: "tuesday";
5622
+ wednesday: "wednesday";
5623
+ thursday: "thursday";
5624
+ friday: "friday";
5625
+ saturday: "saturday";
5626
+ }>>;
5627
+ specific_date: z.ZodNullable<z.ZodISODate>;
5628
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
5629
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
5630
+ created_at: z.ZodNullable<z.ZodISODateTime>;
5631
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
5632
+ }, z.core.$strip>;
5633
+ export declare const zOvertimeRuleHistoryCorrectionObject: z.ZodObject<{
5634
+ overtime_rule_id: z.ZodString;
5635
+ overtime_package_id: z.ZodString;
5636
+ type: z.ZodEnum<{
5637
+ DailyOvertimeRule: "DailyOvertimeRule";
5638
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
5639
+ }>;
5640
+ rate_multiplier: z.ZodEnum<{
5641
+ one_x: "one_x";
5642
+ one_five_x: "one_five_x";
5643
+ two_x: "two_x";
5644
+ }>;
5645
+ region_id: z.ZodNullable<z.ZodString>;
5646
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
5647
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
5648
+ sunday: "sunday";
5649
+ monday: "monday";
5650
+ tuesday: "tuesday";
5651
+ wednesday: "wednesday";
5652
+ thursday: "thursday";
5653
+ friday: "friday";
5654
+ saturday: "saturday";
5655
+ }>>;
5656
+ specific_date: z.ZodNullable<z.ZodISODate>;
5657
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
5658
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
5659
+ created_at: z.ZodNullable<z.ZodISODateTime>;
5660
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
5661
+ }, z.core.$strip>;
5662
+ export declare const zOvertimeRuleHistoryVersionObject: z.ZodObject<{
5663
+ overtime_rule_id: z.ZodString;
5664
+ overtime_package_id: z.ZodString;
5665
+ type: z.ZodEnum<{
5666
+ DailyOvertimeRule: "DailyOvertimeRule";
5667
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
5668
+ }>;
5669
+ rate_multiplier: z.ZodEnum<{
5670
+ one_x: "one_x";
5671
+ one_five_x: "one_five_x";
5672
+ two_x: "two_x";
5673
+ }>;
5674
+ region_id: z.ZodNullable<z.ZodString>;
5675
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
5676
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
5677
+ sunday: "sunday";
5678
+ monday: "monday";
5679
+ tuesday: "tuesday";
5680
+ wednesday: "wednesday";
5681
+ thursday: "thursday";
5682
+ friday: "friday";
5683
+ saturday: "saturday";
5684
+ }>>;
5685
+ specific_date: z.ZodNullable<z.ZodISODate>;
5686
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
5687
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
5688
+ created_at: z.ZodNullable<z.ZodISODateTime>;
5689
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
5690
+ version_status: z.ZodEnum<{
5691
+ scheduled: "scheduled";
5692
+ current: "current";
5693
+ historical: "historical";
5694
+ }>;
5695
+ corrections: z.ZodArray<z.ZodObject<{
5696
+ overtime_rule_id: z.ZodString;
5697
+ overtime_package_id: z.ZodString;
5698
+ type: z.ZodEnum<{
5699
+ DailyOvertimeRule: "DailyOvertimeRule";
5700
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
5701
+ }>;
5702
+ rate_multiplier: z.ZodEnum<{
5703
+ one_x: "one_x";
5704
+ one_five_x: "one_five_x";
5705
+ two_x: "two_x";
5706
+ }>;
5707
+ region_id: z.ZodNullable<z.ZodString>;
5708
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
5709
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
5710
+ sunday: "sunday";
5711
+ monday: "monday";
5712
+ tuesday: "tuesday";
5713
+ wednesday: "wednesday";
5714
+ thursday: "thursday";
5715
+ friday: "friday";
5716
+ saturday: "saturday";
5717
+ }>>;
5718
+ specific_date: z.ZodNullable<z.ZodISODate>;
5719
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
5720
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
5721
+ created_at: z.ZodNullable<z.ZodISODateTime>;
5722
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
5723
+ }, z.core.$strip>>;
5724
+ }, z.core.$strip>;
5725
+ /**
5726
+ * Create an overtime rule on the package. `type` and `rate_multiplier` are required; the qualifiers below are optional and describe when the multiplier applies.
5727
+ */
5728
+ export declare const zOvertimeRuleParameters: z.ZodObject<{
5729
+ effective_date: z.ZodOptional<z.ZodISODate>;
5730
+ type: z.ZodEnum<{
5731
+ DailyOvertimeRule: "DailyOvertimeRule";
5732
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
5733
+ }>;
5734
+ rate_multiplier: z.ZodEnum<{
5735
+ one_x: "one_x";
5736
+ one_five_x: "one_five_x";
5737
+ two_x: "two_x";
5738
+ }>;
5739
+ region_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5740
+ eligible_hours_worked: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
5741
+ specific_day_of_week: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5742
+ sunday: "sunday";
5743
+ monday: "monday";
5744
+ tuesday: "tuesday";
5745
+ wednesday: "wednesday";
5746
+ thursday: "thursday";
5747
+ friday: "friday";
5748
+ saturday: "saturday";
5749
+ }>>>;
5750
+ specific_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
5751
+ }, z.core.$strip>;
5752
+ /**
5753
+ * Edit the rule from a point in valid time forward. `type` is required, since it selects how the rule is compiled, and `rate_multiplier` carries forward when omitted. Everything describing *when* the multiplier applies — `region_id`, `eligible_hours_worked`, `specific_day_of_week`, `specific_date` — is recompiled from the body on every write, so omitting one drops it rather than keeping it. State the whole set of qualifiers you want, not just the ones you are changing.
5754
+ */
5755
+ export declare const zOvertimeRuleUpdateParameters: z.ZodObject<{
5756
+ effective_from: z.ZodOptional<z.ZodISODate>;
5757
+ type: z.ZodEnum<{
5758
+ DailyOvertimeRule: "DailyOvertimeRule";
5759
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
5760
+ }>;
5761
+ rate_multiplier: z.ZodOptional<z.ZodEnum<{
5762
+ one_x: "one_x";
5763
+ one_five_x: "one_five_x";
5764
+ two_x: "two_x";
5765
+ }>>;
5766
+ region_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5767
+ eligible_hours_worked: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
5768
+ specific_day_of_week: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5769
+ sunday: "sunday";
5770
+ monday: "monday";
5771
+ tuesday: "tuesday";
5772
+ wednesday: "wednesday";
5773
+ thursday: "thursday";
5774
+ friday: "friday";
5775
+ saturday: "saturday";
5776
+ }>>>;
5777
+ specific_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
5778
+ }, z.core.$strip>;
5779
+ /**
5780
+ * Schedule an effective-dated change to the rule, applying from a calendar date forward. `type` is required, since it selects how the rule is compiled, and `rate_multiplier` carries forward when omitted. Everything describing *when* the multiplier applies — `region_id`, `eligible_hours_worked`, `specific_day_of_week`, `specific_date` — is recompiled from the body on every write, so omitting one drops it rather than keeping it. State the whole set of qualifiers you want, not just the ones you are changing.
5781
+ */
5782
+ export declare const zOvertimeRuleScheduledChangeParameters: z.ZodObject<{
5783
+ effective_date: z.ZodISODate;
5784
+ type: z.ZodEnum<{
5785
+ DailyOvertimeRule: "DailyOvertimeRule";
5786
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
5787
+ }>;
5788
+ rate_multiplier: z.ZodOptional<z.ZodEnum<{
5789
+ one_x: "one_x";
5790
+ one_five_x: "one_five_x";
5791
+ two_x: "two_x";
5792
+ }>>;
5793
+ region_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5794
+ eligible_hours_worked: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
5795
+ specific_day_of_week: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5796
+ sunday: "sunday";
5797
+ monday: "monday";
5798
+ tuesday: "tuesday";
5799
+ wednesday: "wednesday";
5800
+ thursday: "thursday";
5801
+ friday: "friday";
5802
+ saturday: "saturday";
5803
+ }>>>;
5804
+ specific_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
5805
+ }, z.core.$strip>;
5806
+ /**
5807
+ * Parameters for moving where an overtime rule's timeline begins.
5808
+ */
5809
+ export declare const zOvertimeRuleGenesisParameters: z.ZodObject<{
5810
+ effective_date: z.ZodISODate;
5811
+ }, z.core.$strip>;
5812
+ /**
5813
+ * Schedule when the overtime rule stops being valid.
5814
+ */
5815
+ export declare const zOvertimeRuleScheduledTerminationParameters: z.ZodObject<{
5816
+ effective_date: z.ZodISODate;
5817
+ }, z.core.$strip>;
5513
5818
  /**
5514
5819
  * Create a rate rule on a job wage determination. `effect` is required. `conditions` is optional — an omitted or empty list makes the rule always apply. `effective_date` (YYYY-MM-DD) sets when the rule takes effect; it defaults to today and cannot predate the earliest applicable wage determination.
5515
5820
  */
@@ -12188,6 +12493,7 @@ export declare const zCreateDirectUploadBody: z.ZodObject<{
12188
12493
  "assets.items.service_events": "assets.items.service_events";
12189
12494
  "assets.products": "assets.products";
12190
12495
  "assets.vendors": "assets.vendors";
12496
+ "pay_periods.imports.time_entries": "pay_periods.imports.time_entries";
12191
12497
  users: "users";
12192
12498
  }>;
12193
12499
  blob: z.ZodObject<{
@@ -13223,7 +13529,6 @@ export declare const zListJobWageDeterminationScheduledChangesResponse: z.ZodArr
13223
13529
  export declare const zScheduleJobWageDeterminationChangeBody: z.ZodObject<{
13224
13530
  effective_date: z.ZodISODate;
13225
13531
  labor_classification: z.ZodOptional<z.ZodString>;
13226
- pwa_trade_id: z.ZodOptional<z.ZodString>;
13227
13532
  hourly_rate_cents: z.ZodOptional<z.ZodString>;
13228
13533
  fringe_rate_cents: z.ZodOptional<z.ZodString>;
13229
13534
  class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -13473,6 +13778,7 @@ export declare const zCreateWageDeterminationBody: z.ZodDiscriminatedUnion<[z.Zo
13473
13778
  hourly_rate_cents: z.ZodString;
13474
13779
  fringe_rate_cents: z.ZodOptional<z.ZodString>;
13475
13780
  general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13781
+ overtime_package_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13476
13782
  regional_fields: z.ZodOptional<z.ZodObject<{
13477
13783
  combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
13478
13784
  combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
@@ -13625,6 +13931,7 @@ export declare const zGetJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[
13625
13931
  }, z.core.$strip>], "type">;
13626
13932
  export declare const zUpdateJobWageDeterminationBody: z.ZodObject<{
13627
13933
  effective_from: z.ZodOptional<z.ZodISODate>;
13934
+ overtime_package_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13628
13935
  labor_classification: z.ZodOptional<z.ZodString>;
13629
13936
  pwa_trade_id: z.ZodOptional<z.ZodString>;
13630
13937
  hourly_rate_cents: z.ZodOptional<z.ZodString>;
@@ -14271,6 +14578,19 @@ export declare const zUpdateJobResponse: z.ZodObject<{
14271
14578
  requires_feature_allocation: z.ZodBoolean;
14272
14579
  max_one_feature_allocation: z.ZodBoolean;
14273
14580
  }, z.core.$strip>;
14581
+ /**
14582
+ * Success
14583
+ */
14584
+ export declare const zGetOpenapiDocumentResponse: z.ZodObject<{
14585
+ openapi: z.ZodString;
14586
+ info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
14587
+ externalDocs: z.ZodRecord<z.ZodString, z.ZodUnknown>;
14588
+ tags: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
14589
+ 'x-tagGroups': z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
14590
+ paths: z.ZodRecord<z.ZodString, z.ZodUnknown>;
14591
+ servers: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
14592
+ components: z.ZodRecord<z.ZodString, z.ZodUnknown>;
14593
+ }, z.core.$strip>;
14274
14594
  export declare const zListSiteCheckInsPath: z.ZodObject<{
14275
14595
  site_id: z.ZodString;
14276
14596
  }, z.core.$strip>;
@@ -14365,6 +14685,725 @@ export declare const zGetSiteCheckInResponse: z.ZodObject<{
14365
14685
  created_at: z.ZodISODateTime;
14366
14686
  updated_at: z.ZodISODateTime;
14367
14687
  }, z.core.$strip>;
14688
+ export declare const zShiftOvertimeRuleGenesisBody: z.ZodObject<{
14689
+ effective_date: z.ZodISODate;
14690
+ }, z.core.$strip>;
14691
+ export declare const zShiftOvertimeRuleGenesisHeaders: z.ZodObject<{
14692
+ 'If-Match': z.ZodString;
14693
+ }, z.core.$strip>;
14694
+ export declare const zShiftOvertimeRuleGenesisPath: z.ZodObject<{
14695
+ overtime_package_id: z.ZodString;
14696
+ overtime_rule_id: z.ZodString;
14697
+ }, z.core.$strip>;
14698
+ /**
14699
+ * Success
14700
+ */
14701
+ export declare const zShiftOvertimeRuleGenesisResponse: z.ZodObject<{
14702
+ id: z.ZodString;
14703
+ overtime_package_id: z.ZodString;
14704
+ type: z.ZodEnum<{
14705
+ DailyOvertimeRule: "DailyOvertimeRule";
14706
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
14707
+ }>;
14708
+ rate_multiplier: z.ZodEnum<{
14709
+ one_x: "one_x";
14710
+ one_five_x: "one_five_x";
14711
+ two_x: "two_x";
14712
+ }>;
14713
+ region_id: z.ZodNullable<z.ZodString>;
14714
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
14715
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
14716
+ sunday: "sunday";
14717
+ monday: "monday";
14718
+ tuesday: "tuesday";
14719
+ wednesday: "wednesday";
14720
+ thursday: "thursday";
14721
+ friday: "friday";
14722
+ saturday: "saturday";
14723
+ }>>;
14724
+ specific_date: z.ZodNullable<z.ZodISODate>;
14725
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
14726
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
14727
+ created_at: z.ZodNullable<z.ZodISODateTime>;
14728
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
14729
+ }, z.core.$strip>;
14730
+ export declare const zListOvertimeRuleHistoryPath: z.ZodObject<{
14731
+ overtime_package_id: z.ZodString;
14732
+ overtime_rule_id: z.ZodString;
14733
+ }, z.core.$strip>;
14734
+ export declare const zListOvertimeRuleHistoryQuery: z.ZodObject<{
14735
+ 'as_of[valid]': z.ZodOptional<z.ZodString>;
14736
+ }, z.core.$strip>;
14737
+ /**
14738
+ * Success
14739
+ */
14740
+ export declare const zListOvertimeRuleHistoryResponse: z.ZodObject<{
14741
+ meta: z.ZodObject<{
14742
+ page: z.ZodObject<{
14743
+ next_cursor: z.ZodNullable<z.ZodString>;
14744
+ current_cursor: z.ZodNullable<z.ZodString>;
14745
+ }, z.core.$strip>;
14746
+ }, z.core.$strip>;
14747
+ links: z.ZodObject<{
14748
+ self: z.ZodString;
14749
+ first: z.ZodNullable<z.ZodString>;
14750
+ next: z.ZodNullable<z.ZodString>;
14751
+ }, z.core.$strip>;
14752
+ data: z.ZodArray<z.ZodObject<{
14753
+ overtime_rule_id: z.ZodString;
14754
+ overtime_package_id: z.ZodString;
14755
+ type: z.ZodEnum<{
14756
+ DailyOvertimeRule: "DailyOvertimeRule";
14757
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
14758
+ }>;
14759
+ rate_multiplier: z.ZodEnum<{
14760
+ one_x: "one_x";
14761
+ one_five_x: "one_five_x";
14762
+ two_x: "two_x";
14763
+ }>;
14764
+ region_id: z.ZodNullable<z.ZodString>;
14765
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
14766
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
14767
+ sunday: "sunday";
14768
+ monday: "monday";
14769
+ tuesday: "tuesday";
14770
+ wednesday: "wednesday";
14771
+ thursday: "thursday";
14772
+ friday: "friday";
14773
+ saturday: "saturday";
14774
+ }>>;
14775
+ specific_date: z.ZodNullable<z.ZodISODate>;
14776
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
14777
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
14778
+ created_at: z.ZodNullable<z.ZodISODateTime>;
14779
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
14780
+ version_status: z.ZodEnum<{
14781
+ scheduled: "scheduled";
14782
+ current: "current";
14783
+ historical: "historical";
14784
+ }>;
14785
+ corrections: z.ZodArray<z.ZodObject<{
14786
+ overtime_rule_id: z.ZodString;
14787
+ overtime_package_id: z.ZodString;
14788
+ type: z.ZodEnum<{
14789
+ DailyOvertimeRule: "DailyOvertimeRule";
14790
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
14791
+ }>;
14792
+ rate_multiplier: z.ZodEnum<{
14793
+ one_x: "one_x";
14794
+ one_five_x: "one_five_x";
14795
+ two_x: "two_x";
14796
+ }>;
14797
+ region_id: z.ZodNullable<z.ZodString>;
14798
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
14799
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
14800
+ sunday: "sunday";
14801
+ monday: "monday";
14802
+ tuesday: "tuesday";
14803
+ wednesday: "wednesday";
14804
+ thursday: "thursday";
14805
+ friday: "friday";
14806
+ saturday: "saturday";
14807
+ }>>;
14808
+ specific_date: z.ZodNullable<z.ZodISODate>;
14809
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
14810
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
14811
+ created_at: z.ZodNullable<z.ZodISODateTime>;
14812
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
14813
+ }, z.core.$strip>>;
14814
+ }, z.core.$strip>>;
14815
+ }, z.core.$strip>;
14816
+ export declare const zCancelOvertimeRuleScheduledChangesHeaders: z.ZodObject<{
14817
+ 'If-Match': z.ZodString;
14818
+ }, z.core.$strip>;
14819
+ export declare const zCancelOvertimeRuleScheduledChangesPath: z.ZodObject<{
14820
+ overtime_package_id: z.ZodString;
14821
+ overtime_rule_id: z.ZodString;
14822
+ }, z.core.$strip>;
14823
+ /**
14824
+ * Success
14825
+ */
14826
+ export declare const zCancelOvertimeRuleScheduledChangesResponse: z.ZodObject<{
14827
+ id: z.ZodString;
14828
+ overtime_package_id: z.ZodString;
14829
+ type: z.ZodEnum<{
14830
+ DailyOvertimeRule: "DailyOvertimeRule";
14831
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
14832
+ }>;
14833
+ rate_multiplier: z.ZodEnum<{
14834
+ one_x: "one_x";
14835
+ one_five_x: "one_five_x";
14836
+ two_x: "two_x";
14837
+ }>;
14838
+ region_id: z.ZodNullable<z.ZodString>;
14839
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
14840
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
14841
+ sunday: "sunday";
14842
+ monday: "monday";
14843
+ tuesday: "tuesday";
14844
+ wednesday: "wednesday";
14845
+ thursday: "thursday";
14846
+ friday: "friday";
14847
+ saturday: "saturday";
14848
+ }>>;
14849
+ specific_date: z.ZodNullable<z.ZodISODate>;
14850
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
14851
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
14852
+ created_at: z.ZodNullable<z.ZodISODateTime>;
14853
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
14854
+ }, z.core.$strip>;
14855
+ export declare const zListOvertimeRuleScheduledChangesPath: z.ZodObject<{
14856
+ overtime_package_id: z.ZodString;
14857
+ overtime_rule_id: z.ZodString;
14858
+ }, z.core.$strip>;
14859
+ /**
14860
+ * Success with scheduled changes
14861
+ */
14862
+ export declare const zListOvertimeRuleScheduledChangesResponse: z.ZodArray<z.ZodObject<{
14863
+ id: z.ZodString;
14864
+ overtime_package_id: z.ZodString;
14865
+ type: z.ZodEnum<{
14866
+ DailyOvertimeRule: "DailyOvertimeRule";
14867
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
14868
+ }>;
14869
+ rate_multiplier: z.ZodEnum<{
14870
+ one_x: "one_x";
14871
+ one_five_x: "one_five_x";
14872
+ two_x: "two_x";
14873
+ }>;
14874
+ region_id: z.ZodNullable<z.ZodString>;
14875
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
14876
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
14877
+ sunday: "sunday";
14878
+ monday: "monday";
14879
+ tuesday: "tuesday";
14880
+ wednesday: "wednesday";
14881
+ thursday: "thursday";
14882
+ friday: "friday";
14883
+ saturday: "saturday";
14884
+ }>>;
14885
+ specific_date: z.ZodNullable<z.ZodISODate>;
14886
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
14887
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
14888
+ created_at: z.ZodNullable<z.ZodISODateTime>;
14889
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
14890
+ }, z.core.$strip>>;
14891
+ export declare const zScheduleOvertimeRuleChangeBody: z.ZodObject<{
14892
+ effective_date: z.ZodISODate;
14893
+ type: z.ZodEnum<{
14894
+ DailyOvertimeRule: "DailyOvertimeRule";
14895
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
14896
+ }>;
14897
+ rate_multiplier: z.ZodOptional<z.ZodEnum<{
14898
+ one_x: "one_x";
14899
+ one_five_x: "one_five_x";
14900
+ two_x: "two_x";
14901
+ }>>;
14902
+ region_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14903
+ eligible_hours_worked: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
14904
+ specific_day_of_week: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
14905
+ sunday: "sunday";
14906
+ monday: "monday";
14907
+ tuesday: "tuesday";
14908
+ wednesday: "wednesday";
14909
+ thursday: "thursday";
14910
+ friday: "friday";
14911
+ saturday: "saturday";
14912
+ }>>>;
14913
+ specific_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
14914
+ }, z.core.$strip>;
14915
+ export declare const zScheduleOvertimeRuleChangeHeaders: z.ZodObject<{
14916
+ 'If-Match': z.ZodString;
14917
+ }, z.core.$strip>;
14918
+ export declare const zScheduleOvertimeRuleChangePath: z.ZodObject<{
14919
+ overtime_package_id: z.ZodString;
14920
+ overtime_rule_id: z.ZodString;
14921
+ }, z.core.$strip>;
14922
+ /**
14923
+ * Success (already scheduled)
14924
+ */
14925
+ export declare const zScheduleOvertimeRuleChangeResponse: z.ZodObject<{
14926
+ id: z.ZodString;
14927
+ overtime_package_id: z.ZodString;
14928
+ type: z.ZodEnum<{
14929
+ DailyOvertimeRule: "DailyOvertimeRule";
14930
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
14931
+ }>;
14932
+ rate_multiplier: z.ZodEnum<{
14933
+ one_x: "one_x";
14934
+ one_five_x: "one_five_x";
14935
+ two_x: "two_x";
14936
+ }>;
14937
+ region_id: z.ZodNullable<z.ZodString>;
14938
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
14939
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
14940
+ sunday: "sunday";
14941
+ monday: "monday";
14942
+ tuesday: "tuesday";
14943
+ wednesday: "wednesday";
14944
+ thursday: "thursday";
14945
+ friday: "friday";
14946
+ saturday: "saturday";
14947
+ }>>;
14948
+ specific_date: z.ZodNullable<z.ZodISODate>;
14949
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
14950
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
14951
+ created_at: z.ZodNullable<z.ZodISODateTime>;
14952
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
14953
+ }, z.core.$strip>;
14954
+ export declare const zCancelOvertimeRuleScheduledTerminationHeaders: z.ZodObject<{
14955
+ 'If-Match': z.ZodString;
14956
+ }, z.core.$strip>;
14957
+ export declare const zCancelOvertimeRuleScheduledTerminationPath: z.ZodObject<{
14958
+ overtime_package_id: z.ZodString;
14959
+ overtime_rule_id: z.ZodString;
14960
+ }, z.core.$strip>;
14961
+ /**
14962
+ * Success
14963
+ */
14964
+ export declare const zCancelOvertimeRuleScheduledTerminationResponse: z.ZodObject<{
14965
+ id: z.ZodString;
14966
+ overtime_package_id: z.ZodString;
14967
+ type: z.ZodEnum<{
14968
+ DailyOvertimeRule: "DailyOvertimeRule";
14969
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
14970
+ }>;
14971
+ rate_multiplier: z.ZodEnum<{
14972
+ one_x: "one_x";
14973
+ one_five_x: "one_five_x";
14974
+ two_x: "two_x";
14975
+ }>;
14976
+ region_id: z.ZodNullable<z.ZodString>;
14977
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
14978
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
14979
+ sunday: "sunday";
14980
+ monday: "monday";
14981
+ tuesday: "tuesday";
14982
+ wednesday: "wednesday";
14983
+ thursday: "thursday";
14984
+ friday: "friday";
14985
+ saturday: "saturday";
14986
+ }>>;
14987
+ specific_date: z.ZodNullable<z.ZodISODate>;
14988
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
14989
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
14990
+ created_at: z.ZodNullable<z.ZodISODateTime>;
14991
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
14992
+ }, z.core.$strip>;
14993
+ export declare const zScheduleOvertimeRuleTerminationBody: z.ZodObject<{
14994
+ effective_date: z.ZodISODate;
14995
+ }, z.core.$strip>;
14996
+ export declare const zScheduleOvertimeRuleTerminationHeaders: z.ZodObject<{
14997
+ 'If-Match': z.ZodString;
14998
+ }, z.core.$strip>;
14999
+ export declare const zScheduleOvertimeRuleTerminationPath: z.ZodObject<{
15000
+ overtime_package_id: z.ZodString;
15001
+ overtime_rule_id: z.ZodString;
15002
+ }, z.core.$strip>;
15003
+ /**
15004
+ * Created
15005
+ */
15006
+ export declare const zScheduleOvertimeRuleTerminationResponse: z.ZodObject<{
15007
+ id: z.ZodString;
15008
+ overtime_package_id: z.ZodString;
15009
+ type: z.ZodEnum<{
15010
+ DailyOvertimeRule: "DailyOvertimeRule";
15011
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
15012
+ }>;
15013
+ rate_multiplier: z.ZodEnum<{
15014
+ one_x: "one_x";
15015
+ one_five_x: "one_five_x";
15016
+ two_x: "two_x";
15017
+ }>;
15018
+ region_id: z.ZodNullable<z.ZodString>;
15019
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
15020
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
15021
+ sunday: "sunday";
15022
+ monday: "monday";
15023
+ tuesday: "tuesday";
15024
+ wednesday: "wednesday";
15025
+ thursday: "thursday";
15026
+ friday: "friday";
15027
+ saturday: "saturday";
15028
+ }>>;
15029
+ specific_date: z.ZodNullable<z.ZodISODate>;
15030
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
15031
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
15032
+ created_at: z.ZodNullable<z.ZodISODateTime>;
15033
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
15034
+ }, z.core.$strip>;
15035
+ export declare const zListOvertimeRulesPath: z.ZodObject<{
15036
+ overtime_package_id: z.ZodString;
15037
+ }, z.core.$strip>;
15038
+ export declare const zListOvertimeRulesQuery: z.ZodObject<{
15039
+ 'as_of[valid]': z.ZodOptional<z.ZodISODateTime>;
15040
+ as_of: z.ZodOptional<z.ZodString>;
15041
+ 'as_of[bogus_axis]': z.ZodOptional<z.ZodString>;
15042
+ 'as_of[valid][gte]': z.ZodOptional<z.ZodString>;
15043
+ 'as_of[transaction]': z.ZodOptional<z.ZodString>;
15044
+ filter: z.ZodOptional<z.ZodString>;
15045
+ 'filter[unexpected]': z.ZodOptional<z.ZodString>;
15046
+ 'page[cursor]': z.ZodOptional<z.ZodString>;
15047
+ 'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
15048
+ page: z.ZodOptional<z.ZodString>;
15049
+ }, z.core.$strip>;
15050
+ /**
15051
+ * Success
15052
+ */
15053
+ export declare const zListOvertimeRulesResponse: z.ZodObject<{
15054
+ meta: z.ZodObject<{
15055
+ page: z.ZodObject<{
15056
+ next_cursor: z.ZodNullable<z.ZodString>;
15057
+ current_cursor: z.ZodNullable<z.ZodString>;
15058
+ }, z.core.$strip>;
15059
+ }, z.core.$strip>;
15060
+ links: z.ZodObject<{
15061
+ self: z.ZodString;
15062
+ first: z.ZodNullable<z.ZodString>;
15063
+ next: z.ZodNullable<z.ZodString>;
15064
+ }, z.core.$strip>;
15065
+ data: z.ZodArray<z.ZodObject<{
15066
+ id: z.ZodString;
15067
+ overtime_package_id: z.ZodString;
15068
+ type: z.ZodEnum<{
15069
+ DailyOvertimeRule: "DailyOvertimeRule";
15070
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
15071
+ }>;
15072
+ rate_multiplier: z.ZodEnum<{
15073
+ one_x: "one_x";
15074
+ one_five_x: "one_five_x";
15075
+ two_x: "two_x";
15076
+ }>;
15077
+ region_id: z.ZodNullable<z.ZodString>;
15078
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
15079
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
15080
+ sunday: "sunday";
15081
+ monday: "monday";
15082
+ tuesday: "tuesday";
15083
+ wednesday: "wednesday";
15084
+ thursday: "thursday";
15085
+ friday: "friday";
15086
+ saturday: "saturday";
15087
+ }>>;
15088
+ specific_date: z.ZodNullable<z.ZodISODate>;
15089
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
15090
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
15091
+ created_at: z.ZodNullable<z.ZodISODateTime>;
15092
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
15093
+ }, z.core.$strip>>;
15094
+ }, z.core.$strip>;
15095
+ export declare const zCreateOvertimeRuleBody: z.ZodObject<{
15096
+ effective_date: z.ZodOptional<z.ZodISODate>;
15097
+ type: z.ZodEnum<{
15098
+ DailyOvertimeRule: "DailyOvertimeRule";
15099
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
15100
+ }>;
15101
+ rate_multiplier: z.ZodEnum<{
15102
+ one_x: "one_x";
15103
+ one_five_x: "one_five_x";
15104
+ two_x: "two_x";
15105
+ }>;
15106
+ region_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15107
+ eligible_hours_worked: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
15108
+ specific_day_of_week: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
15109
+ sunday: "sunday";
15110
+ monday: "monday";
15111
+ tuesday: "tuesday";
15112
+ wednesday: "wednesday";
15113
+ thursday: "thursday";
15114
+ friday: "friday";
15115
+ saturday: "saturday";
15116
+ }>>>;
15117
+ specific_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
15118
+ }, z.core.$strip>;
15119
+ export declare const zCreateOvertimeRulePath: z.ZodObject<{
15120
+ overtime_package_id: z.ZodString;
15121
+ }, z.core.$strip>;
15122
+ /**
15123
+ * Created
15124
+ */
15125
+ export declare const zCreateOvertimeRuleResponse: z.ZodObject<{
15126
+ id: z.ZodString;
15127
+ overtime_package_id: z.ZodString;
15128
+ type: z.ZodEnum<{
15129
+ DailyOvertimeRule: "DailyOvertimeRule";
15130
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
15131
+ }>;
15132
+ rate_multiplier: z.ZodEnum<{
15133
+ one_x: "one_x";
15134
+ one_five_x: "one_five_x";
15135
+ two_x: "two_x";
15136
+ }>;
15137
+ region_id: z.ZodNullable<z.ZodString>;
15138
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
15139
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
15140
+ sunday: "sunday";
15141
+ monday: "monday";
15142
+ tuesday: "tuesday";
15143
+ wednesday: "wednesday";
15144
+ thursday: "thursday";
15145
+ friday: "friday";
15146
+ saturday: "saturday";
15147
+ }>>;
15148
+ specific_date: z.ZodNullable<z.ZodISODate>;
15149
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
15150
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
15151
+ created_at: z.ZodNullable<z.ZodISODateTime>;
15152
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
15153
+ }, z.core.$strip>;
15154
+ export declare const zDeleteOvertimeRuleHeaders: z.ZodObject<{
15155
+ 'If-Match': z.ZodString;
15156
+ }, z.core.$strip>;
15157
+ export declare const zDeleteOvertimeRulePath: z.ZodObject<{
15158
+ overtime_package_id: z.ZodString;
15159
+ id: z.ZodString;
15160
+ }, z.core.$strip>;
15161
+ /**
15162
+ * Success
15163
+ */
15164
+ export declare const zDeleteOvertimeRuleResponse: z.ZodObject<{
15165
+ id: z.ZodString;
15166
+ overtime_package_id: z.ZodString;
15167
+ type: z.ZodEnum<{
15168
+ DailyOvertimeRule: "DailyOvertimeRule";
15169
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
15170
+ }>;
15171
+ rate_multiplier: z.ZodEnum<{
15172
+ one_x: "one_x";
15173
+ one_five_x: "one_five_x";
15174
+ two_x: "two_x";
15175
+ }>;
15176
+ region_id: z.ZodNullable<z.ZodString>;
15177
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
15178
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
15179
+ sunday: "sunday";
15180
+ monday: "monday";
15181
+ tuesday: "tuesday";
15182
+ wednesday: "wednesday";
15183
+ thursday: "thursday";
15184
+ friday: "friday";
15185
+ saturday: "saturday";
15186
+ }>>;
15187
+ specific_date: z.ZodNullable<z.ZodISODate>;
15188
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
15189
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
15190
+ created_at: z.ZodNullable<z.ZodISODateTime>;
15191
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
15192
+ }, z.core.$strip>;
15193
+ export declare const zGetOvertimeRulePath: z.ZodObject<{
15194
+ overtime_package_id: z.ZodString;
15195
+ id: z.ZodString;
15196
+ }, z.core.$strip>;
15197
+ export declare const zGetOvertimeRuleQuery: z.ZodObject<{
15198
+ 'as_of[valid]': z.ZodOptional<z.ZodISODateTime>;
15199
+ }, z.core.$strip>;
15200
+ /**
15201
+ * Success
15202
+ */
15203
+ export declare const zGetOvertimeRuleResponse: z.ZodObject<{
15204
+ id: z.ZodString;
15205
+ overtime_package_id: z.ZodString;
15206
+ type: z.ZodEnum<{
15207
+ DailyOvertimeRule: "DailyOvertimeRule";
15208
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
15209
+ }>;
15210
+ rate_multiplier: z.ZodEnum<{
15211
+ one_x: "one_x";
15212
+ one_five_x: "one_five_x";
15213
+ two_x: "two_x";
15214
+ }>;
15215
+ region_id: z.ZodNullable<z.ZodString>;
15216
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
15217
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
15218
+ sunday: "sunday";
15219
+ monday: "monday";
15220
+ tuesday: "tuesday";
15221
+ wednesday: "wednesday";
15222
+ thursday: "thursday";
15223
+ friday: "friday";
15224
+ saturday: "saturday";
15225
+ }>>;
15226
+ specific_date: z.ZodNullable<z.ZodISODate>;
15227
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
15228
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
15229
+ created_at: z.ZodNullable<z.ZodISODateTime>;
15230
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
15231
+ }, z.core.$strip>;
15232
+ export declare const zUpdateOvertimeRuleBody: z.ZodObject<{
15233
+ effective_from: z.ZodOptional<z.ZodISODate>;
15234
+ type: z.ZodEnum<{
15235
+ DailyOvertimeRule: "DailyOvertimeRule";
15236
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
15237
+ }>;
15238
+ rate_multiplier: z.ZodOptional<z.ZodEnum<{
15239
+ one_x: "one_x";
15240
+ one_five_x: "one_five_x";
15241
+ two_x: "two_x";
15242
+ }>>;
15243
+ region_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15244
+ eligible_hours_worked: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
15245
+ specific_day_of_week: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
15246
+ sunday: "sunday";
15247
+ monday: "monday";
15248
+ tuesday: "tuesday";
15249
+ wednesday: "wednesday";
15250
+ thursday: "thursday";
15251
+ friday: "friday";
15252
+ saturday: "saturday";
15253
+ }>>>;
15254
+ specific_date: z.ZodOptional<z.ZodNullable<z.ZodISODate>>;
15255
+ }, z.core.$strip>;
15256
+ export declare const zUpdateOvertimeRuleHeaders: z.ZodObject<{
15257
+ 'If-Match': z.ZodString;
15258
+ }, z.core.$strip>;
15259
+ export declare const zUpdateOvertimeRulePath: z.ZodObject<{
15260
+ overtime_package_id: z.ZodString;
15261
+ id: z.ZodString;
15262
+ }, z.core.$strip>;
15263
+ /**
15264
+ * Success
15265
+ */
15266
+ export declare const zUpdateOvertimeRuleResponse: z.ZodObject<{
15267
+ id: z.ZodString;
15268
+ overtime_package_id: z.ZodString;
15269
+ type: z.ZodEnum<{
15270
+ DailyOvertimeRule: "DailyOvertimeRule";
15271
+ WeeklyOvertimeRule: "WeeklyOvertimeRule";
15272
+ }>;
15273
+ rate_multiplier: z.ZodEnum<{
15274
+ one_x: "one_x";
15275
+ one_five_x: "one_five_x";
15276
+ two_x: "two_x";
15277
+ }>;
15278
+ region_id: z.ZodNullable<z.ZodString>;
15279
+ eligible_hours_worked: z.ZodNullable<z.ZodInt>;
15280
+ specific_day_of_week: z.ZodNullable<z.ZodEnum<{
15281
+ sunday: "sunday";
15282
+ monday: "monday";
15283
+ tuesday: "tuesday";
15284
+ wednesday: "wednesday";
15285
+ thursday: "thursday";
15286
+ friday: "friday";
15287
+ saturday: "saturday";
15288
+ }>>;
15289
+ specific_date: z.ZodNullable<z.ZodISODate>;
15290
+ valid_from: z.ZodNullable<z.ZodISODateTime>;
15291
+ valid_to: z.ZodNullable<z.ZodISODateTime>;
15292
+ created_at: z.ZodNullable<z.ZodISODateTime>;
15293
+ updated_at: z.ZodNullable<z.ZodISODateTime>;
15294
+ }, z.core.$strip>;
15295
+ export declare const zListTimeEntryImportsPath: z.ZodObject<{
15296
+ pay_period_id: z.ZodString;
15297
+ }, z.core.$strip>;
15298
+ export declare const zListTimeEntryImportsQuery: z.ZodObject<{
15299
+ 'filter[status]': z.ZodOptional<z.ZodString>;
15300
+ filter: z.ZodOptional<z.ZodString>;
15301
+ 'filter[unexpected]': z.ZodOptional<z.ZodString>;
15302
+ 'filter[completed_at][gte]': z.ZodOptional<z.ZodISODateTime>;
15303
+ 'filter[completed_at][lte]': z.ZodOptional<z.ZodISODateTime>;
15304
+ 'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
15305
+ 'filter[created_at][lte]': z.ZodOptional<z.ZodISODateTime>;
15306
+ 'filter[updated_at][gte]': z.ZodOptional<z.ZodISODateTime>;
15307
+ 'filter[updated_at][lte]': z.ZodOptional<z.ZodISODateTime>;
15308
+ 'page[cursor]': z.ZodOptional<z.ZodString>;
15309
+ 'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
15310
+ page: z.ZodOptional<z.ZodString>;
15311
+ }, z.core.$strip>;
15312
+ /**
15313
+ * Success
15314
+ */
15315
+ export declare const zListTimeEntryImportsResponse: z.ZodObject<{
15316
+ meta: z.ZodObject<{
15317
+ page: z.ZodObject<{
15318
+ next_cursor: z.ZodNullable<z.ZodString>;
15319
+ current_cursor: z.ZodNullable<z.ZodString>;
15320
+ }, z.core.$strip>;
15321
+ }, z.core.$strip>;
15322
+ links: z.ZodObject<{
15323
+ self: z.ZodString;
15324
+ first: z.ZodNullable<z.ZodString>;
15325
+ next: z.ZodNullable<z.ZodString>;
15326
+ }, z.core.$strip>;
15327
+ data: z.ZodArray<z.ZodObject<{
15328
+ id: z.ZodString;
15329
+ pay_period_id: z.ZodString;
15330
+ status: z.ZodEnum<{
15331
+ pending: "pending";
15332
+ failed: "failed";
15333
+ success: "success";
15334
+ processing: "processing";
15335
+ processed: "processed";
15336
+ }>;
15337
+ processed_rows_count: z.ZodInt;
15338
+ processing_errors: z.ZodArray<z.ZodObject<{
15339
+ code: z.ZodString;
15340
+ row: z.ZodNullable<z.ZodInt>;
15341
+ column: z.ZodNullable<z.ZodString>;
15342
+ context: z.ZodRecord<z.ZodString, z.ZodUnknown>;
15343
+ }, z.core.$strip>>;
15344
+ completed_at: z.ZodNullable<z.ZodISODateTime>;
15345
+ created_at: z.ZodISODateTime;
15346
+ updated_at: z.ZodISODateTime;
15347
+ }, z.core.$strip>>;
15348
+ }, z.core.$strip>;
15349
+ export declare const zCreateTimeEntryImportBody: z.ZodObject<{
15350
+ file_signed_id: z.ZodString;
15351
+ }, z.core.$strip>;
15352
+ export declare const zCreateTimeEntryImportPath: z.ZodObject<{
15353
+ pay_period_id: z.ZodString;
15354
+ }, z.core.$strip>;
15355
+ /**
15356
+ * Created
15357
+ */
15358
+ export declare const zCreateTimeEntryImportResponse: z.ZodObject<{
15359
+ id: z.ZodString;
15360
+ pay_period_id: z.ZodString;
15361
+ status: z.ZodEnum<{
15362
+ pending: "pending";
15363
+ failed: "failed";
15364
+ success: "success";
15365
+ processing: "processing";
15366
+ processed: "processed";
15367
+ }>;
15368
+ processed_rows_count: z.ZodInt;
15369
+ processing_errors: z.ZodArray<z.ZodObject<{
15370
+ code: z.ZodString;
15371
+ row: z.ZodNullable<z.ZodInt>;
15372
+ column: z.ZodNullable<z.ZodString>;
15373
+ context: z.ZodRecord<z.ZodString, z.ZodUnknown>;
15374
+ }, z.core.$strip>>;
15375
+ completed_at: z.ZodNullable<z.ZodISODateTime>;
15376
+ created_at: z.ZodISODateTime;
15377
+ updated_at: z.ZodISODateTime;
15378
+ }, z.core.$strip>;
15379
+ export declare const zGetTimeEntryImportPath: z.ZodObject<{
15380
+ pay_period_id: z.ZodString;
15381
+ id: z.ZodString;
15382
+ }, z.core.$strip>;
15383
+ /**
15384
+ * Success
15385
+ */
15386
+ export declare const zGetTimeEntryImportResponse: z.ZodObject<{
15387
+ id: z.ZodString;
15388
+ pay_period_id: z.ZodString;
15389
+ status: z.ZodEnum<{
15390
+ pending: "pending";
15391
+ failed: "failed";
15392
+ success: "success";
15393
+ processing: "processing";
15394
+ processed: "processed";
15395
+ }>;
15396
+ processed_rows_count: z.ZodInt;
15397
+ processing_errors: z.ZodArray<z.ZodObject<{
15398
+ code: z.ZodString;
15399
+ row: z.ZodNullable<z.ZodInt>;
15400
+ column: z.ZodNullable<z.ZodString>;
15401
+ context: z.ZodRecord<z.ZodString, z.ZodUnknown>;
15402
+ }, z.core.$strip>>;
15403
+ completed_at: z.ZodNullable<z.ZodISODateTime>;
15404
+ created_at: z.ZodISODateTime;
15405
+ updated_at: z.ZodISODateTime;
15406
+ }, z.core.$strip>;
14368
15407
  export declare const zListPayPeriodsQuery: z.ZodObject<{
14369
15408
  'filter[start_time][gte]': z.ZodOptional<z.ZodISODateTime>;
14370
15409
  'filter[start_time][lte]': z.ZodOptional<z.ZodISODateTime>;
@@ -16575,9 +17614,120 @@ export declare const zUpdateCompanyUserDetailResponse: z.ZodObject<{
16575
17614
  portuguese_or_brazilian: "portuguese_or_brazilian";
16576
17615
  }>>>;
16577
17616
  }, z.core.$strip>;
17617
+ export declare const zListApprenticeshipOccupationsPath: z.ZodObject<{
17618
+ trade_id: z.ZodString;
17619
+ }, z.core.$strip>;
17620
+ export declare const zListApprenticeshipOccupationsQuery: z.ZodObject<{
17621
+ 'filter[apprenticeship_occupation_id]': z.ZodOptional<z.ZodString>;
17622
+ 'filter[scope_status]': z.ZodOptional<z.ZodEnum<{
17623
+ in_scope: "in_scope";
17624
+ out_of_scope: "out_of_scope";
17625
+ }>>;
17626
+ 'page[cursor]': z.ZodOptional<z.ZodString>;
17627
+ 'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
17628
+ page: z.ZodOptional<z.ZodString>;
17629
+ 'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
17630
+ 'filter[created_at][lte]': z.ZodOptional<z.ZodISODateTime>;
17631
+ filter: z.ZodOptional<z.ZodString>;
17632
+ 'filter[unexpected]': z.ZodOptional<z.ZodString>;
17633
+ }, z.core.$strip>;
17634
+ /**
17635
+ * Success
17636
+ */
17637
+ export declare const zListApprenticeshipOccupationsResponse: z.ZodObject<{
17638
+ meta: z.ZodObject<{
17639
+ page: z.ZodObject<{
17640
+ next_cursor: z.ZodNullable<z.ZodString>;
17641
+ current_cursor: z.ZodNullable<z.ZodString>;
17642
+ }, z.core.$strip>;
17643
+ }, z.core.$strip>;
17644
+ links: z.ZodObject<{
17645
+ self: z.ZodString;
17646
+ first: z.ZodNullable<z.ZodString>;
17647
+ next: z.ZodNullable<z.ZodString>;
17648
+ }, z.core.$strip>;
17649
+ data: z.ZodArray<z.ZodObject<{
17650
+ id: z.ZodString;
17651
+ pwa_trade_id: z.ZodString;
17652
+ apprenticeship_occupation_id: z.ZodString;
17653
+ scope_status: z.ZodEnum<{
17654
+ in_scope: "in_scope";
17655
+ out_of_scope: "out_of_scope";
17656
+ }>;
17657
+ created_at: z.ZodISODateTime;
17658
+ updated_at: z.ZodISODateTime;
17659
+ }, z.core.$strip>>;
17660
+ }, z.core.$strip>;
17661
+ export declare const zCreateApprenticeshipOccupationBody: z.ZodObject<{
17662
+ apprenticeship_occupation_id: z.ZodString;
17663
+ scope_status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
17664
+ in_scope: "in_scope";
17665
+ out_of_scope: "out_of_scope";
17666
+ }>>>;
17667
+ }, z.core.$strip>;
17668
+ export declare const zCreateApprenticeshipOccupationPath: z.ZodObject<{
17669
+ trade_id: z.ZodString;
17670
+ }, z.core.$strip>;
17671
+ /**
17672
+ * Created
17673
+ */
17674
+ export declare const zCreateApprenticeshipOccupationResponse: z.ZodObject<{
17675
+ id: z.ZodString;
17676
+ pwa_trade_id: z.ZodString;
17677
+ apprenticeship_occupation_id: z.ZodString;
17678
+ scope_status: z.ZodEnum<{
17679
+ in_scope: "in_scope";
17680
+ out_of_scope: "out_of_scope";
17681
+ }>;
17682
+ created_at: z.ZodISODateTime;
17683
+ updated_at: z.ZodISODateTime;
17684
+ }, z.core.$strip>;
17685
+ export declare const zDeleteApprenticeshipOccupationPath: z.ZodObject<{
17686
+ trade_id: z.ZodString;
17687
+ id: z.ZodString;
17688
+ }, z.core.$strip>;
17689
+ /**
17690
+ * Success
17691
+ */
17692
+ export declare const zDeleteApprenticeshipOccupationResponse: z.ZodObject<{
17693
+ id: z.ZodString;
17694
+ pwa_trade_id: z.ZodString;
17695
+ apprenticeship_occupation_id: z.ZodString;
17696
+ scope_status: z.ZodEnum<{
17697
+ in_scope: "in_scope";
17698
+ out_of_scope: "out_of_scope";
17699
+ }>;
17700
+ created_at: z.ZodISODateTime;
17701
+ updated_at: z.ZodISODateTime;
17702
+ }, z.core.$strip>;
17703
+ export declare const zUpdateApprenticeshipOccupationBody: z.ZodObject<{
17704
+ scope_status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
17705
+ in_scope: "in_scope";
17706
+ out_of_scope: "out_of_scope";
17707
+ }>>>;
17708
+ }, z.core.$strip>;
17709
+ export declare const zUpdateApprenticeshipOccupationPath: z.ZodObject<{
17710
+ trade_id: z.ZodString;
17711
+ id: z.ZodString;
17712
+ }, z.core.$strip>;
17713
+ /**
17714
+ * Success
17715
+ */
17716
+ export declare const zUpdateApprenticeshipOccupationResponse: z.ZodObject<{
17717
+ id: z.ZodString;
17718
+ pwa_trade_id: z.ZodString;
17719
+ apprenticeship_occupation_id: z.ZodString;
17720
+ scope_status: z.ZodEnum<{
17721
+ in_scope: "in_scope";
17722
+ out_of_scope: "out_of_scope";
17723
+ }>;
17724
+ created_at: z.ZodISODateTime;
17725
+ updated_at: z.ZodISODateTime;
17726
+ }, z.core.$strip>;
16578
17727
  export declare const zListTradesQuery: z.ZodObject<{
16579
17728
  'filter[project_id]': z.ZodOptional<z.ZodString>;
16580
17729
  'filter[job_id]': z.ZodOptional<z.ZodString>;
17730
+ 'filter[name]': z.ZodOptional<z.ZodString>;
16581
17731
  'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
16582
17732
  'filter[created_at][lte]': z.ZodOptional<z.ZodISODateTime>;
16583
17733
  'filter[updated_at][gte]': z.ZodOptional<z.ZodISODateTime>;
@@ -16613,6 +17763,21 @@ export declare const zListTradesResponse: z.ZodObject<{
16613
17763
  updated_at: z.ZodISODateTime;
16614
17764
  }, z.core.$strip>>;
16615
17765
  }, z.core.$strip>;
17766
+ export declare const zDeleteTradePath: z.ZodObject<{
17767
+ id: z.ZodString;
17768
+ }, z.core.$strip>;
17769
+ /**
17770
+ * Success
17771
+ */
17772
+ export declare const zDeleteTradeResponse: z.ZodObject<{
17773
+ id: z.ZodString;
17774
+ project_id: z.ZodNullable<z.ZodString>;
17775
+ job_id: z.ZodNullable<z.ZodString>;
17776
+ name: z.ZodString;
17777
+ normalized_key: z.ZodString;
17778
+ created_at: z.ZodISODateTime;
17779
+ updated_at: z.ZodISODateTime;
17780
+ }, z.core.$strip>;
16616
17781
  export declare const zGetTradePath: z.ZodObject<{
16617
17782
  id: z.ZodString;
16618
17783
  }, z.core.$strip>;
@@ -16628,6 +17793,24 @@ export declare const zGetTradeResponse: z.ZodObject<{
16628
17793
  created_at: z.ZodISODateTime;
16629
17794
  updated_at: z.ZodISODateTime;
16630
17795
  }, z.core.$strip>;
17796
+ export declare const zUpdateTradeBody: z.ZodObject<{
17797
+ name: z.ZodOptional<z.ZodString>;
17798
+ }, z.core.$strip>;
17799
+ export declare const zUpdateTradePath: z.ZodObject<{
17800
+ id: z.ZodString;
17801
+ }, z.core.$strip>;
17802
+ /**
17803
+ * Success
17804
+ */
17805
+ export declare const zUpdateTradeResponse: z.ZodObject<{
17806
+ id: z.ZodString;
17807
+ project_id: z.ZodNullable<z.ZodString>;
17808
+ job_id: z.ZodNullable<z.ZodString>;
17809
+ name: z.ZodString;
17810
+ normalized_key: z.ZodString;
17811
+ created_at: z.ZodISODateTime;
17812
+ updated_at: z.ZodISODateTime;
17813
+ }, z.core.$strip>;
16631
17814
  export declare const zCreateFormAssignmentTaskBody: z.ZodObject<{
16632
17815
  form_definition_id: z.ZodString;
16633
17816
  spread_assignees: z.ZodOptional<z.ZodBoolean>;