@dsptch-work/api-client 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +54 -0
- package/dist/gen/index.d.ts +2 -2
- package/dist/gen/index.js +1 -1
- package/dist/gen/sdk.gen.d.ts +198 -1
- package/dist/gen/sdk.gen.js +333 -0
- package/dist/gen/types.gen.d.ts +912 -27
- package/dist/gen/zod.gen.d.ts +1154 -176
- package/dist/gen/zod.gen.js +309 -6
- package/package.json +1 -1
package/dist/gen/zod.gen.d.ts
CHANGED
|
@@ -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
|
-
* **
|
|
246
|
+
* **Attachment Upload Not Found**
|
|
241
247
|
*
|
|
242
|
-
* An attachment signed id
|
|
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.
|
|
@@ -4516,6 +4530,7 @@ export declare const zFederalJobWageDeterminationResponseObject: z.ZodObject<{
|
|
|
4516
4530
|
id: z.ZodString;
|
|
4517
4531
|
job_id: z.ZodString;
|
|
4518
4532
|
pwa_trade_id: z.ZodString;
|
|
4533
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4519
4534
|
type: z.ZodEnum<{
|
|
4520
4535
|
"Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
|
|
4521
4536
|
}>;
|
|
@@ -4539,6 +4554,7 @@ export declare const zFederalJobWageDeterminationHistoryCorrectionObject: z.ZodO
|
|
|
4539
4554
|
job_wage_determination_id: z.ZodString;
|
|
4540
4555
|
job_id: z.ZodString;
|
|
4541
4556
|
pwa_trade_id: z.ZodString;
|
|
4557
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4542
4558
|
type: z.ZodEnum<{
|
|
4543
4559
|
"Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
|
|
4544
4560
|
}>;
|
|
@@ -4611,6 +4627,7 @@ export declare const zRegionalJobWageDeterminationResponseObject: z.ZodObject<{
|
|
|
4611
4627
|
id: z.ZodString;
|
|
4612
4628
|
job_id: z.ZodString;
|
|
4613
4629
|
pwa_trade_id: z.ZodString;
|
|
4630
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4614
4631
|
type: z.ZodEnum<{
|
|
4615
4632
|
"Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
|
|
4616
4633
|
}>;
|
|
@@ -4631,6 +4648,7 @@ export declare const zJobWageDeterminationResponseObject: z.ZodDiscriminatedUnio
|
|
|
4631
4648
|
id: z.ZodString;
|
|
4632
4649
|
job_id: z.ZodString;
|
|
4633
4650
|
pwa_trade_id: z.ZodString;
|
|
4651
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4634
4652
|
labor_classification: z.ZodString;
|
|
4635
4653
|
hourly_rate_cents: z.ZodString;
|
|
4636
4654
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4651,6 +4669,7 @@ export declare const zJobWageDeterminationResponseObject: z.ZodDiscriminatedUnio
|
|
|
4651
4669
|
id: z.ZodString;
|
|
4652
4670
|
job_id: z.ZodString;
|
|
4653
4671
|
pwa_trade_id: z.ZodString;
|
|
4672
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4654
4673
|
labor_classification: z.ZodString;
|
|
4655
4674
|
hourly_rate_cents: z.ZodString;
|
|
4656
4675
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4666,6 +4685,7 @@ export declare const zRegionalJobWageDeterminationHistoryCorrectionObject: z.Zod
|
|
|
4666
4685
|
job_wage_determination_id: z.ZodString;
|
|
4667
4686
|
job_id: z.ZodString;
|
|
4668
4687
|
pwa_trade_id: z.ZodString;
|
|
4688
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4669
4689
|
type: z.ZodEnum<{
|
|
4670
4690
|
"Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
|
|
4671
4691
|
}>;
|
|
@@ -4683,6 +4703,7 @@ export declare const zJobWageDeterminationHistoryCorrectionObject: z.ZodDiscrimi
|
|
|
4683
4703
|
job_wage_determination_id: z.ZodString;
|
|
4684
4704
|
job_id: z.ZodString;
|
|
4685
4705
|
pwa_trade_id: z.ZodString;
|
|
4706
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4686
4707
|
labor_classification: z.ZodString;
|
|
4687
4708
|
hourly_rate_cents: z.ZodString;
|
|
4688
4709
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4703,6 +4724,7 @@ export declare const zJobWageDeterminationHistoryCorrectionObject: z.ZodDiscrimi
|
|
|
4703
4724
|
job_wage_determination_id: z.ZodString;
|
|
4704
4725
|
job_id: z.ZodString;
|
|
4705
4726
|
pwa_trade_id: z.ZodString;
|
|
4727
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4706
4728
|
labor_classification: z.ZodString;
|
|
4707
4729
|
hourly_rate_cents: z.ZodString;
|
|
4708
4730
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4718,6 +4740,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
|
|
|
4718
4740
|
job_wage_determination_id: z.ZodString;
|
|
4719
4741
|
job_id: z.ZodString;
|
|
4720
4742
|
pwa_trade_id: z.ZodString;
|
|
4743
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4721
4744
|
type: z.ZodEnum<{
|
|
4722
4745
|
"Pwa::JobWageDeterminations::Federal": "Pwa::JobWageDeterminations::Federal";
|
|
4723
4746
|
}>;
|
|
@@ -4745,6 +4768,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
|
|
|
4745
4768
|
job_wage_determination_id: z.ZodString;
|
|
4746
4769
|
job_id: z.ZodString;
|
|
4747
4770
|
pwa_trade_id: z.ZodString;
|
|
4771
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4748
4772
|
labor_classification: z.ZodString;
|
|
4749
4773
|
hourly_rate_cents: z.ZodString;
|
|
4750
4774
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4765,6 +4789,7 @@ export declare const zFederalJobWageDeterminationHistoryVersionObject: z.ZodObje
|
|
|
4765
4789
|
job_wage_determination_id: z.ZodString;
|
|
4766
4790
|
job_id: z.ZodString;
|
|
4767
4791
|
pwa_trade_id: z.ZodString;
|
|
4792
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4768
4793
|
labor_classification: z.ZodString;
|
|
4769
4794
|
hourly_rate_cents: z.ZodString;
|
|
4770
4795
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4781,6 +4806,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
|
|
|
4781
4806
|
job_wage_determination_id: z.ZodString;
|
|
4782
4807
|
job_id: z.ZodString;
|
|
4783
4808
|
pwa_trade_id: z.ZodString;
|
|
4809
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4784
4810
|
type: z.ZodEnum<{
|
|
4785
4811
|
"Pwa::JobWageDeterminations::Regional": "Pwa::JobWageDeterminations::Regional";
|
|
4786
4812
|
}>;
|
|
@@ -4802,6 +4828,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
|
|
|
4802
4828
|
job_wage_determination_id: z.ZodString;
|
|
4803
4829
|
job_id: z.ZodString;
|
|
4804
4830
|
pwa_trade_id: z.ZodString;
|
|
4831
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4805
4832
|
labor_classification: z.ZodString;
|
|
4806
4833
|
hourly_rate_cents: z.ZodString;
|
|
4807
4834
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4822,6 +4849,7 @@ export declare const zRegionalJobWageDeterminationHistoryVersionObject: z.ZodObj
|
|
|
4822
4849
|
job_wage_determination_id: z.ZodString;
|
|
4823
4850
|
job_id: z.ZodString;
|
|
4824
4851
|
pwa_trade_id: z.ZodString;
|
|
4852
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4825
4853
|
labor_classification: z.ZodString;
|
|
4826
4854
|
hourly_rate_cents: z.ZodString;
|
|
4827
4855
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4838,6 +4866,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
|
|
|
4838
4866
|
job_wage_determination_id: z.ZodString;
|
|
4839
4867
|
job_id: z.ZodString;
|
|
4840
4868
|
pwa_trade_id: z.ZodString;
|
|
4869
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4841
4870
|
labor_classification: z.ZodString;
|
|
4842
4871
|
hourly_rate_cents: z.ZodString;
|
|
4843
4872
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4862,6 +4891,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
|
|
|
4862
4891
|
job_wage_determination_id: z.ZodString;
|
|
4863
4892
|
job_id: z.ZodString;
|
|
4864
4893
|
pwa_trade_id: z.ZodString;
|
|
4894
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4865
4895
|
labor_classification: z.ZodString;
|
|
4866
4896
|
hourly_rate_cents: z.ZodString;
|
|
4867
4897
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4882,6 +4912,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
|
|
|
4882
4912
|
job_wage_determination_id: z.ZodString;
|
|
4883
4913
|
job_id: z.ZodString;
|
|
4884
4914
|
pwa_trade_id: z.ZodString;
|
|
4915
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4885
4916
|
labor_classification: z.ZodString;
|
|
4886
4917
|
hourly_rate_cents: z.ZodString;
|
|
4887
4918
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4898,6 +4929,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
|
|
|
4898
4929
|
job_wage_determination_id: z.ZodString;
|
|
4899
4930
|
job_id: z.ZodString;
|
|
4900
4931
|
pwa_trade_id: z.ZodString;
|
|
4932
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4901
4933
|
labor_classification: z.ZodString;
|
|
4902
4934
|
hourly_rate_cents: z.ZodString;
|
|
4903
4935
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4916,6 +4948,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
|
|
|
4916
4948
|
job_wage_determination_id: z.ZodString;
|
|
4917
4949
|
job_id: z.ZodString;
|
|
4918
4950
|
pwa_trade_id: z.ZodString;
|
|
4951
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4919
4952
|
labor_classification: z.ZodString;
|
|
4920
4953
|
hourly_rate_cents: z.ZodString;
|
|
4921
4954
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4936,6 +4969,7 @@ export declare const zJobWageDeterminationHistoryVersionObject: z.ZodDiscriminat
|
|
|
4936
4969
|
job_wage_determination_id: z.ZodString;
|
|
4937
4970
|
job_id: z.ZodString;
|
|
4938
4971
|
pwa_trade_id: z.ZodString;
|
|
4972
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
4939
4973
|
labor_classification: z.ZodString;
|
|
4940
4974
|
hourly_rate_cents: z.ZodString;
|
|
4941
4975
|
fringe_rate_cents: z.ZodString;
|
|
@@ -4994,7 +5028,7 @@ export declare const zRegionalJobWageDeterminationParameters: z.ZodObject<{
|
|
|
4994
5028
|
}, z.core.$strip>>;
|
|
4995
5029
|
}, z.core.$strip>;
|
|
4996
5030
|
/**
|
|
4997
|
-
* Parameters for creating a job wage determination. Provide the Federal or Regional shape; the type discriminator selects which.
|
|
5031
|
+
* Parameters for creating a job wage determination. Provide the Federal or Regional shape; the type discriminator selects which. Editing an existing determination uses the update parameters, which take an `effective_from` instead of a type.
|
|
4998
5032
|
*/
|
|
4999
5033
|
export declare const zJobWageDeterminationParameters: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5000
5034
|
labor_classification: z.ZodString;
|
|
@@ -5029,6 +5063,76 @@ export declare const zJobWageDeterminationParameters: z.ZodDiscriminatedUnion<[z
|
|
|
5029
5063
|
}, z.core.$strip>>;
|
|
5030
5064
|
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
5031
5065
|
}, z.core.$strip>], "type">;
|
|
5066
|
+
/**
|
|
5067
|
+
* Parameters for editing a job wage determination from a point in valid time forward. The type is fixed by the determination the id names and is not sent.
|
|
5068
|
+
*/
|
|
5069
|
+
export declare const zJobWageDeterminationUpdateParameters: z.ZodObject<{
|
|
5070
|
+
effective_from: z.ZodOptional<z.ZodISODate>;
|
|
5071
|
+
labor_classification: z.ZodOptional<z.ZodString>;
|
|
5072
|
+
pwa_trade_id: z.ZodOptional<z.ZodString>;
|
|
5073
|
+
hourly_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5074
|
+
fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5075
|
+
class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5076
|
+
construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
5077
|
+
building: "building";
|
|
5078
|
+
heavy: "heavy";
|
|
5079
|
+
highway: "highway";
|
|
5080
|
+
residential: "residential";
|
|
5081
|
+
}>>>;
|
|
5082
|
+
general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5083
|
+
regional_fields: z.ZodOptional<z.ZodObject<{
|
|
5084
|
+
combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5085
|
+
combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5086
|
+
combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5087
|
+
training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5088
|
+
other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5089
|
+
one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5090
|
+
two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5091
|
+
one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5092
|
+
two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5093
|
+
}, z.core.$strip>>;
|
|
5094
|
+
}, z.core.$strip>;
|
|
5095
|
+
/**
|
|
5096
|
+
* Parameters for an effective-dated change to a job wage determination, applying from a calendar date forward. The type is fixed by the determination the id names and is not sent.
|
|
5097
|
+
*/
|
|
5098
|
+
export declare const zJobWageDeterminationScheduledChangeParameters: z.ZodObject<{
|
|
5099
|
+
effective_date: z.ZodISODate;
|
|
5100
|
+
labor_classification: z.ZodOptional<z.ZodString>;
|
|
5101
|
+
pwa_trade_id: z.ZodOptional<z.ZodString>;
|
|
5102
|
+
hourly_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5103
|
+
fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5104
|
+
class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5105
|
+
construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
5106
|
+
building: "building";
|
|
5107
|
+
heavy: "heavy";
|
|
5108
|
+
highway: "highway";
|
|
5109
|
+
residential: "residential";
|
|
5110
|
+
}>>>;
|
|
5111
|
+
general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5112
|
+
regional_fields: z.ZodOptional<z.ZodObject<{
|
|
5113
|
+
combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5114
|
+
combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5115
|
+
combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5116
|
+
training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5117
|
+
other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
5118
|
+
one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5119
|
+
two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5120
|
+
one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5121
|
+
two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5122
|
+
}, z.core.$strip>>;
|
|
5123
|
+
}, z.core.$strip>;
|
|
5124
|
+
/**
|
|
5125
|
+
* Parameters for moving where a job wage determination's timeline begins.
|
|
5126
|
+
*/
|
|
5127
|
+
export declare const zJobWageDeterminationGenesisParameters: z.ZodObject<{
|
|
5128
|
+
effective_date: z.ZodISODate;
|
|
5129
|
+
}, z.core.$strip>;
|
|
5130
|
+
/**
|
|
5131
|
+
* Parameters for scheduling when a job wage determination stops being valid.
|
|
5132
|
+
*/
|
|
5133
|
+
export declare const zJobWageDeterminationScheduledTerminationParameters: z.ZodObject<{
|
|
5134
|
+
effective_date: z.ZodISODate;
|
|
5135
|
+
}, z.core.$strip>;
|
|
5032
5136
|
/**
|
|
5033
5137
|
* The adjustment applied when a rule matches — an addition to the wage or fringe rate.
|
|
5034
5138
|
*/
|
|
@@ -5656,6 +5760,7 @@ export declare const zAssetsItemParameters: z.ZodObject<{
|
|
|
5656
5760
|
assets_site_id: z.ZodOptional<z.ZodString>;
|
|
5657
5761
|
user_id: z.ZodOptional<z.ZodString>;
|
|
5658
5762
|
container_item_id: z.ZodOptional<z.ZodString>;
|
|
5763
|
+
assets_sub_location_id: z.ZodOptional<z.ZodString>;
|
|
5659
5764
|
performed_by_user_id: z.ZodString;
|
|
5660
5765
|
}, z.core.$strip>;
|
|
5661
5766
|
/**
|
|
@@ -5794,12 +5899,13 @@ export declare const zAssetsItemFormAssignmentParameters: z.ZodObject<{
|
|
|
5794
5899
|
}, z.core.$strip>;
|
|
5795
5900
|
}, z.core.$strip>;
|
|
5796
5901
|
/**
|
|
5797
|
-
* On-hand stock of an item at a site — one row per item and
|
|
5902
|
+
* On-hand stock of an item at a site — one row per item, site, and storage location. Read-only. A site with none of the item has no row at all, since a row is removed once its count reaches zero.
|
|
5798
5903
|
*/
|
|
5799
5904
|
export declare const zAssetsInventoryResponseObject: z.ZodObject<{
|
|
5800
5905
|
id: z.ZodString;
|
|
5801
5906
|
assets_item_id: z.ZodString;
|
|
5802
5907
|
assets_site_id: z.ZodString;
|
|
5908
|
+
assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
5803
5909
|
company_id: z.ZodString;
|
|
5804
5910
|
quantity_on_hand: z.ZodInt;
|
|
5805
5911
|
created_at: z.ZodISODateTime;
|
|
@@ -5833,6 +5939,7 @@ export declare const zAssetsTransactionEventResponseObject: z.ZodObject<{
|
|
|
5833
5939
|
assets_site_id: z.ZodNullable<z.ZodString>;
|
|
5834
5940
|
assignee_id: z.ZodNullable<z.ZodString>;
|
|
5835
5941
|
container_item_id: z.ZodNullable<z.ZodString>;
|
|
5942
|
+
assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
5836
5943
|
assets_transfer_id: z.ZodNullable<z.ZodString>;
|
|
5837
5944
|
performed_by_user_id: z.ZodString;
|
|
5838
5945
|
direction: z.ZodEnum<{
|
|
@@ -5887,6 +5994,7 @@ export declare const zAssetsItemEventResponseObject: z.ZodDiscriminatedUnion<[z.
|
|
|
5887
5994
|
assets_site_id: z.ZodNullable<z.ZodString>;
|
|
5888
5995
|
assignee_id: z.ZodNullable<z.ZodString>;
|
|
5889
5996
|
container_item_id: z.ZodNullable<z.ZodString>;
|
|
5997
|
+
assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
5890
5998
|
assets_transfer_id: z.ZodNullable<z.ZodString>;
|
|
5891
5999
|
performed_by_user_id: z.ZodString;
|
|
5892
6000
|
direction: z.ZodEnum<{
|
|
@@ -6056,6 +6164,65 @@ export declare const zAssetsServiceScheduleTemplateParameters: z.ZodObject<{
|
|
|
6056
6164
|
interval_count: z.ZodInt;
|
|
6057
6165
|
performed_by_user_id: z.ZodString;
|
|
6058
6166
|
}, z.core.$strip>;
|
|
6167
|
+
/**
|
|
6168
|
+
* A node of fixed storage structure inside a site or a container item — a zone, aisle, rack, shelf, bin, or drawer. Nodes form a tree per holder, and each carries a scannable path_code composed from its ancestors' codes.
|
|
6169
|
+
*/
|
|
6170
|
+
export declare const zAssetsSubLocationResponseObject: z.ZodObject<{
|
|
6171
|
+
id: z.ZodString;
|
|
6172
|
+
company_id: z.ZodString;
|
|
6173
|
+
assets_site_id: z.ZodNullable<z.ZodString>;
|
|
6174
|
+
container_item_id: z.ZodNullable<z.ZodString>;
|
|
6175
|
+
parent_id: z.ZodNullable<z.ZodString>;
|
|
6176
|
+
kind: z.ZodNullable<z.ZodEnum<{
|
|
6177
|
+
zone: "zone";
|
|
6178
|
+
aisle: "aisle";
|
|
6179
|
+
rack: "rack";
|
|
6180
|
+
shelf: "shelf";
|
|
6181
|
+
bin: "bin";
|
|
6182
|
+
drawer: "drawer";
|
|
6183
|
+
}>>;
|
|
6184
|
+
name: z.ZodString;
|
|
6185
|
+
code: z.ZodString;
|
|
6186
|
+
path_code: z.ZodString;
|
|
6187
|
+
created_at: z.ZodISODateTime;
|
|
6188
|
+
updated_at: z.ZodISODateTime;
|
|
6189
|
+
}, z.core.$strip>;
|
|
6190
|
+
/**
|
|
6191
|
+
* Create a storage location. name and code are required. A top-level node names its holder (assets_site_id or container_item_id, exactly one); a nested node names parent_id and inherits the parent's holder. The holder cannot change after creation.
|
|
6192
|
+
*/
|
|
6193
|
+
export declare const zAssetsSubLocationParameters: z.ZodObject<{
|
|
6194
|
+
assets_site_id: z.ZodOptional<z.ZodString>;
|
|
6195
|
+
container_item_id: z.ZodOptional<z.ZodString>;
|
|
6196
|
+
parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6197
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
6198
|
+
zone: "zone";
|
|
6199
|
+
aisle: "aisle";
|
|
6200
|
+
rack: "rack";
|
|
6201
|
+
shelf: "shelf";
|
|
6202
|
+
bin: "bin";
|
|
6203
|
+
drawer: "drawer";
|
|
6204
|
+
}>>;
|
|
6205
|
+
name: z.ZodString;
|
|
6206
|
+
code: z.ZodString;
|
|
6207
|
+
}, z.core.$strip>;
|
|
6208
|
+
/**
|
|
6209
|
+
* Update a storage location. All fields are optional — send only what changes. The holder fields cannot change after creation; renaming code cascades new path codes through the node's subtree.
|
|
6210
|
+
*/
|
|
6211
|
+
export declare const zAssetsSubLocationUpdateParameters: z.ZodObject<{
|
|
6212
|
+
assets_site_id: z.ZodOptional<z.ZodString>;
|
|
6213
|
+
container_item_id: z.ZodOptional<z.ZodString>;
|
|
6214
|
+
parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6215
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
6216
|
+
zone: "zone";
|
|
6217
|
+
aisle: "aisle";
|
|
6218
|
+
rack: "rack";
|
|
6219
|
+
shelf: "shelf";
|
|
6220
|
+
bin: "bin";
|
|
6221
|
+
drawer: "drawer";
|
|
6222
|
+
}>>;
|
|
6223
|
+
name: z.ZodOptional<z.ZodString>;
|
|
6224
|
+
code: z.ZodOptional<z.ZodString>;
|
|
6225
|
+
}, z.core.$strip>;
|
|
6059
6226
|
/**
|
|
6060
6227
|
* A completed movement of item stock between two holders, each a site, a user, or a container. Each line moves one item; applying the transfer records paired outbound and inbound transactions and updates the on-hand, custody, and containment counts. Transfers created through this API are always completed. One-sided moves (placing or removing an item with only one endpoint) record transactions but no transfer, and so are not represented by this resource.
|
|
6061
6228
|
*/
|
|
@@ -6074,6 +6241,8 @@ export declare const zAssetsTransferResponseObject: z.ZodObject<{
|
|
|
6074
6241
|
to_assets_site_id: z.ZodNullable<z.ZodString>;
|
|
6075
6242
|
to_user_id: z.ZodNullable<z.ZodString>;
|
|
6076
6243
|
to_container_item_id: z.ZodNullable<z.ZodString>;
|
|
6244
|
+
from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
6245
|
+
to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
6077
6246
|
initiated_by_user_id: z.ZodString;
|
|
6078
6247
|
completed_at: z.ZodNullable<z.ZodISODateTime>;
|
|
6079
6248
|
transfer_lines: z.ZodArray<z.ZodObject<{
|
|
@@ -6094,6 +6263,8 @@ export declare const zAssetsTransferParameters: z.ZodObject<{
|
|
|
6094
6263
|
to_assets_site_id: z.ZodOptional<z.ZodString>;
|
|
6095
6264
|
to_user_id: z.ZodOptional<z.ZodString>;
|
|
6096
6265
|
to_container_item_id: z.ZodOptional<z.ZodString>;
|
|
6266
|
+
from_assets_sub_location_id: z.ZodOptional<z.ZodString>;
|
|
6267
|
+
to_assets_sub_location_id: z.ZodOptional<z.ZodString>;
|
|
6097
6268
|
performed_by_user_id: z.ZodString;
|
|
6098
6269
|
line_items: z.ZodArray<z.ZodObject<{
|
|
6099
6270
|
assets_item_id: z.ZodString;
|
|
@@ -6105,6 +6276,7 @@ export declare const zAssetsTransferParameters: z.ZodObject<{
|
|
|
6105
6276
|
*/
|
|
6106
6277
|
export declare const zAssetsRestockParameters: z.ZodObject<{
|
|
6107
6278
|
assets_site_id: z.ZodString;
|
|
6279
|
+
assets_sub_location_id: z.ZodOptional<z.ZodString>;
|
|
6108
6280
|
quantity: z.ZodInt;
|
|
6109
6281
|
performed_by_user_id: z.ZodString;
|
|
6110
6282
|
}, z.core.$strip>;
|
|
@@ -6113,9 +6285,16 @@ export declare const zAssetsRestockParameters: z.ZodObject<{
|
|
|
6113
6285
|
*/
|
|
6114
6286
|
export declare const zAssetsAdjustmentParameters: z.ZodObject<{
|
|
6115
6287
|
assets_site_id: z.ZodString;
|
|
6288
|
+
assets_sub_location_id: z.ZodOptional<z.ZodString>;
|
|
6116
6289
|
new_quantity: z.ZodInt;
|
|
6117
6290
|
performed_by_user_id: z.ZodString;
|
|
6118
6291
|
}, z.core.$strip>;
|
|
6292
|
+
/**
|
|
6293
|
+
* Archive or unarchive a product or item. Archiving takes it out of circulation without deleting it — history is preserved and it is hidden from listings unless requested with filter[state]. Archiving a product cascades to its items; item operations apply to serial items only.
|
|
6294
|
+
*/
|
|
6295
|
+
export declare const zAssetsArchiveParameters: z.ZodObject<{
|
|
6296
|
+
performed_by_user_id: z.ZodString;
|
|
6297
|
+
}, z.core.$strip>;
|
|
6119
6298
|
/**
|
|
6120
6299
|
* Success
|
|
6121
6300
|
*/
|
|
@@ -7330,6 +7509,7 @@ export declare const zListEventsResponse: z.ZodObject<{
|
|
|
7330
7509
|
assets_site_id: z.ZodNullable<z.ZodString>;
|
|
7331
7510
|
assignee_id: z.ZodNullable<z.ZodString>;
|
|
7332
7511
|
container_item_id: z.ZodNullable<z.ZodString>;
|
|
7512
|
+
assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
7333
7513
|
assets_transfer_id: z.ZodNullable<z.ZodString>;
|
|
7334
7514
|
performed_by_user_id: z.ZodString;
|
|
7335
7515
|
direction: z.ZodEnum<{
|
|
@@ -7383,6 +7563,7 @@ export declare const zGetEventResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7383
7563
|
assets_site_id: z.ZodNullable<z.ZodString>;
|
|
7384
7564
|
assignee_id: z.ZodNullable<z.ZodString>;
|
|
7385
7565
|
container_item_id: z.ZodNullable<z.ZodString>;
|
|
7566
|
+
assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
7386
7567
|
assets_transfer_id: z.ZodNullable<z.ZodString>;
|
|
7387
7568
|
performed_by_user_id: z.ZodString;
|
|
7388
7569
|
direction: z.ZodEnum<{
|
|
@@ -7740,6 +7921,7 @@ export declare const zListInventoriesResponse: z.ZodObject<{
|
|
|
7740
7921
|
id: z.ZodString;
|
|
7741
7922
|
assets_item_id: z.ZodString;
|
|
7742
7923
|
assets_site_id: z.ZodString;
|
|
7924
|
+
assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
7743
7925
|
company_id: z.ZodString;
|
|
7744
7926
|
quantity_on_hand: z.ZodInt;
|
|
7745
7927
|
created_at: z.ZodISODateTime;
|
|
@@ -7756,6 +7938,7 @@ export declare const zGetInventoryResponse: z.ZodObject<{
|
|
|
7756
7938
|
id: z.ZodString;
|
|
7757
7939
|
assets_item_id: z.ZodString;
|
|
7758
7940
|
assets_site_id: z.ZodString;
|
|
7941
|
+
assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
7759
7942
|
company_id: z.ZodString;
|
|
7760
7943
|
quantity_on_hand: z.ZodInt;
|
|
7761
7944
|
created_at: z.ZodISODateTime;
|
|
@@ -7855,6 +8038,7 @@ export declare const zCreateItemBody: z.ZodObject<{
|
|
|
7855
8038
|
assets_site_id: z.ZodOptional<z.ZodString>;
|
|
7856
8039
|
user_id: z.ZodOptional<z.ZodString>;
|
|
7857
8040
|
container_item_id: z.ZodOptional<z.ZodString>;
|
|
8041
|
+
assets_sub_location_id: z.ZodOptional<z.ZodString>;
|
|
7858
8042
|
performed_by_user_id: z.ZodString;
|
|
7859
8043
|
}, z.core.$strip>;
|
|
7860
8044
|
/**
|
|
@@ -8025,6 +8209,7 @@ export declare const zUpdateItemBody: z.ZodObject<{
|
|
|
8025
8209
|
assets_site_id: z.ZodOptional<z.ZodString>;
|
|
8026
8210
|
user_id: z.ZodOptional<z.ZodString>;
|
|
8027
8211
|
container_item_id: z.ZodOptional<z.ZodString>;
|
|
8212
|
+
assets_sub_location_id: z.ZodOptional<z.ZodString>;
|
|
8028
8213
|
performed_by_user_id: z.ZodString;
|
|
8029
8214
|
}, z.core.$strip>;
|
|
8030
8215
|
export declare const zUpdateItemPath: z.ZodObject<{
|
|
@@ -8077,6 +8262,112 @@ export declare const zUpdateItemResponse: z.ZodObject<{
|
|
|
8077
8262
|
created_at: z.ZodISODateTime;
|
|
8078
8263
|
updated_at: z.ZodISODateTime;
|
|
8079
8264
|
}, z.core.$strip>;
|
|
8265
|
+
export declare const zUnarchiveItemBody: z.ZodObject<{
|
|
8266
|
+
performed_by_user_id: z.ZodString;
|
|
8267
|
+
}, z.core.$strip>;
|
|
8268
|
+
export declare const zUnarchiveItemPath: z.ZodObject<{
|
|
8269
|
+
item_id: z.ZodString;
|
|
8270
|
+
}, z.core.$strip>;
|
|
8271
|
+
/**
|
|
8272
|
+
* Success
|
|
8273
|
+
*/
|
|
8274
|
+
export declare const zUnarchiveItemResponse: z.ZodObject<{
|
|
8275
|
+
id: z.ZodString;
|
|
8276
|
+
name: z.ZodString;
|
|
8277
|
+
description: z.ZodNullable<z.ZodString>;
|
|
8278
|
+
assets_product_id: z.ZodString;
|
|
8279
|
+
company_id: z.ZodString;
|
|
8280
|
+
type: z.ZodEnum<{
|
|
8281
|
+
serial: "serial";
|
|
8282
|
+
bulk: "bulk";
|
|
8283
|
+
}>;
|
|
8284
|
+
serial_number: z.ZodNullable<z.ZodString>;
|
|
8285
|
+
status: z.ZodNullable<z.ZodEnum<{
|
|
8286
|
+
available: "available";
|
|
8287
|
+
assigned: "assigned";
|
|
8288
|
+
}>>;
|
|
8289
|
+
purchase_date: z.ZodNullable<z.ZodISODateTime>;
|
|
8290
|
+
purchase_price_cents: z.ZodNullable<z.ZodString>;
|
|
8291
|
+
currency: z.ZodNullable<z.ZodString>;
|
|
8292
|
+
external_id: z.ZodNullable<z.ZodString>;
|
|
8293
|
+
external_system_url: z.ZodNullable<z.ZodString>;
|
|
8294
|
+
container: z.ZodBoolean;
|
|
8295
|
+
contents: z.ZodArray<z.ZodObject<{
|
|
8296
|
+
item_id: z.ZodString;
|
|
8297
|
+
quantity: z.ZodInt;
|
|
8298
|
+
}, z.core.$strip>>;
|
|
8299
|
+
containers: z.ZodArray<z.ZodObject<{
|
|
8300
|
+
container_item_id: z.ZodString;
|
|
8301
|
+
quantity: z.ZodInt;
|
|
8302
|
+
}, z.core.$strip>>;
|
|
8303
|
+
images: z.ZodArray<z.ZodObject<{
|
|
8304
|
+
id: z.ZodString;
|
|
8305
|
+
file: z.ZodNullable<z.ZodObject<{
|
|
8306
|
+
filename: z.ZodString;
|
|
8307
|
+
content_type: z.ZodNullable<z.ZodString>;
|
|
8308
|
+
byte_size: z.ZodInt;
|
|
8309
|
+
url: z.ZodString;
|
|
8310
|
+
}, z.core.$strip>>;
|
|
8311
|
+
created_at: z.ZodISODateTime;
|
|
8312
|
+
updated_at: z.ZodISODateTime;
|
|
8313
|
+
}, z.core.$strip>>;
|
|
8314
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
8315
|
+
created_at: z.ZodISODateTime;
|
|
8316
|
+
updated_at: z.ZodISODateTime;
|
|
8317
|
+
}, z.core.$strip>;
|
|
8318
|
+
export declare const zArchiveItemBody: z.ZodObject<{
|
|
8319
|
+
performed_by_user_id: z.ZodString;
|
|
8320
|
+
}, z.core.$strip>;
|
|
8321
|
+
export declare const zArchiveItemPath: z.ZodObject<{
|
|
8322
|
+
item_id: z.ZodString;
|
|
8323
|
+
}, z.core.$strip>;
|
|
8324
|
+
/**
|
|
8325
|
+
* Created
|
|
8326
|
+
*/
|
|
8327
|
+
export declare const zArchiveItemResponse: z.ZodObject<{
|
|
8328
|
+
id: z.ZodString;
|
|
8329
|
+
name: z.ZodString;
|
|
8330
|
+
description: z.ZodNullable<z.ZodString>;
|
|
8331
|
+
assets_product_id: z.ZodString;
|
|
8332
|
+
company_id: z.ZodString;
|
|
8333
|
+
type: z.ZodEnum<{
|
|
8334
|
+
serial: "serial";
|
|
8335
|
+
bulk: "bulk";
|
|
8336
|
+
}>;
|
|
8337
|
+
serial_number: z.ZodNullable<z.ZodString>;
|
|
8338
|
+
status: z.ZodNullable<z.ZodEnum<{
|
|
8339
|
+
available: "available";
|
|
8340
|
+
assigned: "assigned";
|
|
8341
|
+
}>>;
|
|
8342
|
+
purchase_date: z.ZodNullable<z.ZodISODateTime>;
|
|
8343
|
+
purchase_price_cents: z.ZodNullable<z.ZodString>;
|
|
8344
|
+
currency: z.ZodNullable<z.ZodString>;
|
|
8345
|
+
external_id: z.ZodNullable<z.ZodString>;
|
|
8346
|
+
external_system_url: z.ZodNullable<z.ZodString>;
|
|
8347
|
+
container: z.ZodBoolean;
|
|
8348
|
+
contents: z.ZodArray<z.ZodObject<{
|
|
8349
|
+
item_id: z.ZodString;
|
|
8350
|
+
quantity: z.ZodInt;
|
|
8351
|
+
}, z.core.$strip>>;
|
|
8352
|
+
containers: z.ZodArray<z.ZodObject<{
|
|
8353
|
+
container_item_id: z.ZodString;
|
|
8354
|
+
quantity: z.ZodInt;
|
|
8355
|
+
}, z.core.$strip>>;
|
|
8356
|
+
images: z.ZodArray<z.ZodObject<{
|
|
8357
|
+
id: z.ZodString;
|
|
8358
|
+
file: z.ZodNullable<z.ZodObject<{
|
|
8359
|
+
filename: z.ZodString;
|
|
8360
|
+
content_type: z.ZodNullable<z.ZodString>;
|
|
8361
|
+
byte_size: z.ZodInt;
|
|
8362
|
+
url: z.ZodString;
|
|
8363
|
+
}, z.core.$strip>>;
|
|
8364
|
+
created_at: z.ZodISODateTime;
|
|
8365
|
+
updated_at: z.ZodISODateTime;
|
|
8366
|
+
}, z.core.$strip>>;
|
|
8367
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
8368
|
+
created_at: z.ZodISODateTime;
|
|
8369
|
+
updated_at: z.ZodISODateTime;
|
|
8370
|
+
}, z.core.$strip>;
|
|
8080
8371
|
export declare const zListServiceSchedulesPath: z.ZodObject<{
|
|
8081
8372
|
item_id: z.ZodString;
|
|
8082
8373
|
}, z.core.$strip>;
|
|
@@ -9239,18 +9530,16 @@ export declare const zUpdateProductResponse: z.ZodObject<{
|
|
|
9239
9530
|
created_at: z.ZodISODateTime;
|
|
9240
9531
|
updated_at: z.ZodISODateTime;
|
|
9241
9532
|
}, z.core.$strip>;
|
|
9242
|
-
export declare const
|
|
9243
|
-
assets_site_id: z.ZodString;
|
|
9244
|
-
new_quantity: z.ZodInt;
|
|
9533
|
+
export declare const zUnarchiveProductBody: z.ZodObject<{
|
|
9245
9534
|
performed_by_user_id: z.ZodString;
|
|
9246
9535
|
}, z.core.$strip>;
|
|
9247
|
-
export declare const
|
|
9536
|
+
export declare const zUnarchiveProductPath: z.ZodObject<{
|
|
9248
9537
|
product_id: z.ZodString;
|
|
9249
9538
|
}, z.core.$strip>;
|
|
9250
9539
|
/**
|
|
9251
|
-
*
|
|
9540
|
+
* Success
|
|
9252
9541
|
*/
|
|
9253
|
-
export declare const
|
|
9542
|
+
export declare const zUnarchiveProductResponse: z.ZodObject<{
|
|
9254
9543
|
id: z.ZodString;
|
|
9255
9544
|
company_id: z.ZodString;
|
|
9256
9545
|
name: z.ZodString;
|
|
@@ -9287,18 +9576,16 @@ export declare const zAdjustProductInventoryResponse: z.ZodObject<{
|
|
|
9287
9576
|
created_at: z.ZodISODateTime;
|
|
9288
9577
|
updated_at: z.ZodISODateTime;
|
|
9289
9578
|
}, z.core.$strip>;
|
|
9290
|
-
export declare const
|
|
9291
|
-
assets_site_id: z.ZodString;
|
|
9292
|
-
quantity: z.ZodInt;
|
|
9579
|
+
export declare const zArchiveProductBody: z.ZodObject<{
|
|
9293
9580
|
performed_by_user_id: z.ZodString;
|
|
9294
9581
|
}, z.core.$strip>;
|
|
9295
|
-
export declare const
|
|
9582
|
+
export declare const zArchiveProductPath: z.ZodObject<{
|
|
9296
9583
|
product_id: z.ZodString;
|
|
9297
9584
|
}, z.core.$strip>;
|
|
9298
9585
|
/**
|
|
9299
9586
|
* Created
|
|
9300
9587
|
*/
|
|
9301
|
-
export declare const
|
|
9588
|
+
export declare const zArchiveProductResponse: z.ZodObject<{
|
|
9302
9589
|
id: z.ZodString;
|
|
9303
9590
|
company_id: z.ZodString;
|
|
9304
9591
|
name: z.ZodString;
|
|
@@ -9335,36 +9622,134 @@ export declare const zRestockProductResponse: z.ZodObject<{
|
|
|
9335
9622
|
created_at: z.ZodISODateTime;
|
|
9336
9623
|
updated_at: z.ZodISODateTime;
|
|
9337
9624
|
}, z.core.$strip>;
|
|
9338
|
-
export declare const
|
|
9339
|
-
|
|
9625
|
+
export declare const zAdjustProductInventoryBody: z.ZodObject<{
|
|
9626
|
+
assets_site_id: z.ZodString;
|
|
9627
|
+
assets_sub_location_id: z.ZodOptional<z.ZodString>;
|
|
9628
|
+
new_quantity: z.ZodInt;
|
|
9629
|
+
performed_by_user_id: z.ZodString;
|
|
9340
9630
|
}, z.core.$strip>;
|
|
9341
|
-
export declare const
|
|
9342
|
-
|
|
9343
|
-
filter: z.ZodOptional<z.ZodString>;
|
|
9344
|
-
'filter[unexpected]': z.ZodOptional<z.ZodString>;
|
|
9345
|
-
'page[cursor]': z.ZodOptional<z.ZodString>;
|
|
9346
|
-
'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
9347
|
-
page: z.ZodOptional<z.ZodString>;
|
|
9631
|
+
export declare const zAdjustProductInventoryPath: z.ZodObject<{
|
|
9632
|
+
product_id: z.ZodString;
|
|
9348
9633
|
}, z.core.$strip>;
|
|
9349
9634
|
/**
|
|
9350
|
-
*
|
|
9635
|
+
* Created
|
|
9351
9636
|
*/
|
|
9352
|
-
export declare const
|
|
9353
|
-
|
|
9354
|
-
|
|
9355
|
-
|
|
9356
|
-
|
|
9357
|
-
|
|
9358
|
-
|
|
9359
|
-
|
|
9360
|
-
|
|
9361
|
-
|
|
9362
|
-
|
|
9363
|
-
|
|
9364
|
-
|
|
9637
|
+
export declare const zAdjustProductInventoryResponse: z.ZodObject<{
|
|
9638
|
+
id: z.ZodString;
|
|
9639
|
+
company_id: z.ZodString;
|
|
9640
|
+
name: z.ZodString;
|
|
9641
|
+
upc: z.ZodNullable<z.ZodString>;
|
|
9642
|
+
internal_sku: z.ZodNullable<z.ZodString>;
|
|
9643
|
+
default_minimum_quantity: z.ZodNullable<z.ZodInt>;
|
|
9644
|
+
make: z.ZodNullable<z.ZodString>;
|
|
9645
|
+
model: z.ZodNullable<z.ZodString>;
|
|
9646
|
+
counted_by: z.ZodEnum<{
|
|
9647
|
+
each: "each";
|
|
9648
|
+
pair: "pair";
|
|
9649
|
+
pack: "pack";
|
|
9650
|
+
}>;
|
|
9651
|
+
container: z.ZodBoolean;
|
|
9652
|
+
serialized: z.ZodBoolean;
|
|
9653
|
+
assets_category_id: z.ZodNullable<z.ZodString>;
|
|
9654
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9655
|
+
assets_attribute_id: z.ZodString;
|
|
9656
|
+
value: z.ZodNullable<z.ZodString>;
|
|
9657
|
+
assets_attribute_option_id: z.ZodNullable<z.ZodString>;
|
|
9658
|
+
}, z.core.$strip>>;
|
|
9659
|
+
images: z.ZodArray<z.ZodObject<{
|
|
9365
9660
|
id: z.ZodString;
|
|
9366
|
-
|
|
9367
|
-
|
|
9661
|
+
file: z.ZodNullable<z.ZodObject<{
|
|
9662
|
+
filename: z.ZodString;
|
|
9663
|
+
content_type: z.ZodNullable<z.ZodString>;
|
|
9664
|
+
byte_size: z.ZodInt;
|
|
9665
|
+
url: z.ZodString;
|
|
9666
|
+
}, z.core.$strip>>;
|
|
9667
|
+
created_at: z.ZodISODateTime;
|
|
9668
|
+
updated_at: z.ZodISODateTime;
|
|
9669
|
+
}, z.core.$strip>>;
|
|
9670
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9671
|
+
created_at: z.ZodISODateTime;
|
|
9672
|
+
updated_at: z.ZodISODateTime;
|
|
9673
|
+
}, z.core.$strip>;
|
|
9674
|
+
export declare const zRestockProductBody: z.ZodObject<{
|
|
9675
|
+
assets_site_id: z.ZodString;
|
|
9676
|
+
assets_sub_location_id: z.ZodOptional<z.ZodString>;
|
|
9677
|
+
quantity: z.ZodInt;
|
|
9678
|
+
performed_by_user_id: z.ZodString;
|
|
9679
|
+
}, z.core.$strip>;
|
|
9680
|
+
export declare const zRestockProductPath: z.ZodObject<{
|
|
9681
|
+
product_id: z.ZodString;
|
|
9682
|
+
}, z.core.$strip>;
|
|
9683
|
+
/**
|
|
9684
|
+
* Created
|
|
9685
|
+
*/
|
|
9686
|
+
export declare const zRestockProductResponse: z.ZodObject<{
|
|
9687
|
+
id: z.ZodString;
|
|
9688
|
+
company_id: z.ZodString;
|
|
9689
|
+
name: z.ZodString;
|
|
9690
|
+
upc: z.ZodNullable<z.ZodString>;
|
|
9691
|
+
internal_sku: z.ZodNullable<z.ZodString>;
|
|
9692
|
+
default_minimum_quantity: z.ZodNullable<z.ZodInt>;
|
|
9693
|
+
make: z.ZodNullable<z.ZodString>;
|
|
9694
|
+
model: z.ZodNullable<z.ZodString>;
|
|
9695
|
+
counted_by: z.ZodEnum<{
|
|
9696
|
+
each: "each";
|
|
9697
|
+
pair: "pair";
|
|
9698
|
+
pack: "pack";
|
|
9699
|
+
}>;
|
|
9700
|
+
container: z.ZodBoolean;
|
|
9701
|
+
serialized: z.ZodBoolean;
|
|
9702
|
+
assets_category_id: z.ZodNullable<z.ZodString>;
|
|
9703
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9704
|
+
assets_attribute_id: z.ZodString;
|
|
9705
|
+
value: z.ZodNullable<z.ZodString>;
|
|
9706
|
+
assets_attribute_option_id: z.ZodNullable<z.ZodString>;
|
|
9707
|
+
}, z.core.$strip>>;
|
|
9708
|
+
images: z.ZodArray<z.ZodObject<{
|
|
9709
|
+
id: z.ZodString;
|
|
9710
|
+
file: z.ZodNullable<z.ZodObject<{
|
|
9711
|
+
filename: z.ZodString;
|
|
9712
|
+
content_type: z.ZodNullable<z.ZodString>;
|
|
9713
|
+
byte_size: z.ZodInt;
|
|
9714
|
+
url: z.ZodString;
|
|
9715
|
+
}, z.core.$strip>>;
|
|
9716
|
+
created_at: z.ZodISODateTime;
|
|
9717
|
+
updated_at: z.ZodISODateTime;
|
|
9718
|
+
}, z.core.$strip>>;
|
|
9719
|
+
archived_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9720
|
+
created_at: z.ZodISODateTime;
|
|
9721
|
+
updated_at: z.ZodISODateTime;
|
|
9722
|
+
}, z.core.$strip>;
|
|
9723
|
+
export declare const zListServiceScheduleTemplatesPath: z.ZodObject<{
|
|
9724
|
+
product_id: z.ZodString;
|
|
9725
|
+
}, z.core.$strip>;
|
|
9726
|
+
export declare const zListServiceScheduleTemplatesQuery: z.ZodObject<{
|
|
9727
|
+
'filter[kind]': z.ZodOptional<z.ZodString>;
|
|
9728
|
+
filter: z.ZodOptional<z.ZodString>;
|
|
9729
|
+
'filter[unexpected]': z.ZodOptional<z.ZodString>;
|
|
9730
|
+
'page[cursor]': z.ZodOptional<z.ZodString>;
|
|
9731
|
+
'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
9732
|
+
page: z.ZodOptional<z.ZodString>;
|
|
9733
|
+
}, z.core.$strip>;
|
|
9734
|
+
/**
|
|
9735
|
+
* Success
|
|
9736
|
+
*/
|
|
9737
|
+
export declare const zListServiceScheduleTemplatesResponse: z.ZodObject<{
|
|
9738
|
+
meta: z.ZodObject<{
|
|
9739
|
+
page: z.ZodObject<{
|
|
9740
|
+
next_cursor: z.ZodNullable<z.ZodString>;
|
|
9741
|
+
current_cursor: z.ZodNullable<z.ZodString>;
|
|
9742
|
+
}, z.core.$strip>;
|
|
9743
|
+
}, z.core.$strip>;
|
|
9744
|
+
links: z.ZodObject<{
|
|
9745
|
+
self: z.ZodString;
|
|
9746
|
+
first: z.ZodNullable<z.ZodString>;
|
|
9747
|
+
next: z.ZodNullable<z.ZodString>;
|
|
9748
|
+
}, z.core.$strip>;
|
|
9749
|
+
data: z.ZodArray<z.ZodObject<{
|
|
9750
|
+
id: z.ZodString;
|
|
9751
|
+
company_id: z.ZodString;
|
|
9752
|
+
assets_product_id: z.ZodString;
|
|
9368
9753
|
kind: z.ZodEnum<{
|
|
9369
9754
|
maintenance: "maintenance";
|
|
9370
9755
|
calibration: "calibration";
|
|
@@ -9719,6 +10104,187 @@ export declare const zUpdateSiteResponse: z.ZodObject<{
|
|
|
9719
10104
|
created_at: z.ZodISODateTime;
|
|
9720
10105
|
updated_at: z.ZodISODateTime;
|
|
9721
10106
|
}, z.core.$strip>;
|
|
10107
|
+
export declare const zListSubLocationsQuery: z.ZodObject<{
|
|
10108
|
+
'filter[assets_site_id]': z.ZodOptional<z.ZodString>;
|
|
10109
|
+
'filter[container_item_id]': z.ZodOptional<z.ZodString>;
|
|
10110
|
+
'filter[kind]': z.ZodOptional<z.ZodString>;
|
|
10111
|
+
'filter[created_at][gte]': z.ZodOptional<z.ZodISODateTime>;
|
|
10112
|
+
'filter[created_at][lte]': z.ZodOptional<z.ZodISODateTime>;
|
|
10113
|
+
'filter[updated_at][gte]': z.ZodOptional<z.ZodISODateTime>;
|
|
10114
|
+
'filter[updated_at][lte]': z.ZodOptional<z.ZodISODateTime>;
|
|
10115
|
+
filter: z.ZodOptional<z.ZodString>;
|
|
10116
|
+
'filter[unexpected]': z.ZodOptional<z.ZodString>;
|
|
10117
|
+
'page[cursor]': z.ZodOptional<z.ZodString>;
|
|
10118
|
+
'page[limit]': z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
10119
|
+
page: z.ZodOptional<z.ZodString>;
|
|
10120
|
+
}, z.core.$strip>;
|
|
10121
|
+
/**
|
|
10122
|
+
* Success
|
|
10123
|
+
*/
|
|
10124
|
+
export declare const zListSubLocationsResponse: z.ZodObject<{
|
|
10125
|
+
meta: z.ZodObject<{
|
|
10126
|
+
page: z.ZodObject<{
|
|
10127
|
+
next_cursor: z.ZodNullable<z.ZodString>;
|
|
10128
|
+
current_cursor: z.ZodNullable<z.ZodString>;
|
|
10129
|
+
}, z.core.$strip>;
|
|
10130
|
+
}, z.core.$strip>;
|
|
10131
|
+
links: z.ZodObject<{
|
|
10132
|
+
self: z.ZodString;
|
|
10133
|
+
first: z.ZodNullable<z.ZodString>;
|
|
10134
|
+
next: z.ZodNullable<z.ZodString>;
|
|
10135
|
+
}, z.core.$strip>;
|
|
10136
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10137
|
+
id: z.ZodString;
|
|
10138
|
+
company_id: z.ZodString;
|
|
10139
|
+
assets_site_id: z.ZodNullable<z.ZodString>;
|
|
10140
|
+
container_item_id: z.ZodNullable<z.ZodString>;
|
|
10141
|
+
parent_id: z.ZodNullable<z.ZodString>;
|
|
10142
|
+
kind: z.ZodNullable<z.ZodEnum<{
|
|
10143
|
+
zone: "zone";
|
|
10144
|
+
aisle: "aisle";
|
|
10145
|
+
rack: "rack";
|
|
10146
|
+
shelf: "shelf";
|
|
10147
|
+
bin: "bin";
|
|
10148
|
+
drawer: "drawer";
|
|
10149
|
+
}>>;
|
|
10150
|
+
name: z.ZodString;
|
|
10151
|
+
code: z.ZodString;
|
|
10152
|
+
path_code: z.ZodString;
|
|
10153
|
+
created_at: z.ZodISODateTime;
|
|
10154
|
+
updated_at: z.ZodISODateTime;
|
|
10155
|
+
}, z.core.$strip>>;
|
|
10156
|
+
}, z.core.$strip>;
|
|
10157
|
+
export declare const zCreateSubLocationBody: z.ZodObject<{
|
|
10158
|
+
assets_site_id: z.ZodOptional<z.ZodString>;
|
|
10159
|
+
container_item_id: z.ZodOptional<z.ZodString>;
|
|
10160
|
+
parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10161
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
10162
|
+
zone: "zone";
|
|
10163
|
+
aisle: "aisle";
|
|
10164
|
+
rack: "rack";
|
|
10165
|
+
shelf: "shelf";
|
|
10166
|
+
bin: "bin";
|
|
10167
|
+
drawer: "drawer";
|
|
10168
|
+
}>>;
|
|
10169
|
+
name: z.ZodString;
|
|
10170
|
+
code: z.ZodString;
|
|
10171
|
+
}, z.core.$strip>;
|
|
10172
|
+
/**
|
|
10173
|
+
* Created
|
|
10174
|
+
*/
|
|
10175
|
+
export declare const zCreateSubLocationResponse: z.ZodObject<{
|
|
10176
|
+
id: z.ZodString;
|
|
10177
|
+
company_id: z.ZodString;
|
|
10178
|
+
assets_site_id: z.ZodNullable<z.ZodString>;
|
|
10179
|
+
container_item_id: z.ZodNullable<z.ZodString>;
|
|
10180
|
+
parent_id: z.ZodNullable<z.ZodString>;
|
|
10181
|
+
kind: z.ZodNullable<z.ZodEnum<{
|
|
10182
|
+
zone: "zone";
|
|
10183
|
+
aisle: "aisle";
|
|
10184
|
+
rack: "rack";
|
|
10185
|
+
shelf: "shelf";
|
|
10186
|
+
bin: "bin";
|
|
10187
|
+
drawer: "drawer";
|
|
10188
|
+
}>>;
|
|
10189
|
+
name: z.ZodString;
|
|
10190
|
+
code: z.ZodString;
|
|
10191
|
+
path_code: z.ZodString;
|
|
10192
|
+
created_at: z.ZodISODateTime;
|
|
10193
|
+
updated_at: z.ZodISODateTime;
|
|
10194
|
+
}, z.core.$strip>;
|
|
10195
|
+
export declare const zDeleteSubLocationPath: z.ZodObject<{
|
|
10196
|
+
id: z.ZodString;
|
|
10197
|
+
}, z.core.$strip>;
|
|
10198
|
+
/**
|
|
10199
|
+
* Success
|
|
10200
|
+
*/
|
|
10201
|
+
export declare const zDeleteSubLocationResponse: z.ZodObject<{
|
|
10202
|
+
id: z.ZodString;
|
|
10203
|
+
company_id: z.ZodString;
|
|
10204
|
+
assets_site_id: z.ZodNullable<z.ZodString>;
|
|
10205
|
+
container_item_id: z.ZodNullable<z.ZodString>;
|
|
10206
|
+
parent_id: z.ZodNullable<z.ZodString>;
|
|
10207
|
+
kind: z.ZodNullable<z.ZodEnum<{
|
|
10208
|
+
zone: "zone";
|
|
10209
|
+
aisle: "aisle";
|
|
10210
|
+
rack: "rack";
|
|
10211
|
+
shelf: "shelf";
|
|
10212
|
+
bin: "bin";
|
|
10213
|
+
drawer: "drawer";
|
|
10214
|
+
}>>;
|
|
10215
|
+
name: z.ZodString;
|
|
10216
|
+
code: z.ZodString;
|
|
10217
|
+
path_code: z.ZodString;
|
|
10218
|
+
created_at: z.ZodISODateTime;
|
|
10219
|
+
updated_at: z.ZodISODateTime;
|
|
10220
|
+
}, z.core.$strip>;
|
|
10221
|
+
export declare const zGetSubLocationPath: z.ZodObject<{
|
|
10222
|
+
id: z.ZodString;
|
|
10223
|
+
}, z.core.$strip>;
|
|
10224
|
+
/**
|
|
10225
|
+
* Success
|
|
10226
|
+
*/
|
|
10227
|
+
export declare const zGetSubLocationResponse: z.ZodObject<{
|
|
10228
|
+
id: z.ZodString;
|
|
10229
|
+
company_id: z.ZodString;
|
|
10230
|
+
assets_site_id: z.ZodNullable<z.ZodString>;
|
|
10231
|
+
container_item_id: z.ZodNullable<z.ZodString>;
|
|
10232
|
+
parent_id: z.ZodNullable<z.ZodString>;
|
|
10233
|
+
kind: z.ZodNullable<z.ZodEnum<{
|
|
10234
|
+
zone: "zone";
|
|
10235
|
+
aisle: "aisle";
|
|
10236
|
+
rack: "rack";
|
|
10237
|
+
shelf: "shelf";
|
|
10238
|
+
bin: "bin";
|
|
10239
|
+
drawer: "drawer";
|
|
10240
|
+
}>>;
|
|
10241
|
+
name: z.ZodString;
|
|
10242
|
+
code: z.ZodString;
|
|
10243
|
+
path_code: z.ZodString;
|
|
10244
|
+
created_at: z.ZodISODateTime;
|
|
10245
|
+
updated_at: z.ZodISODateTime;
|
|
10246
|
+
}, z.core.$strip>;
|
|
10247
|
+
export declare const zUpdateSubLocationBody: z.ZodObject<{
|
|
10248
|
+
assets_site_id: z.ZodOptional<z.ZodString>;
|
|
10249
|
+
container_item_id: z.ZodOptional<z.ZodString>;
|
|
10250
|
+
parent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10251
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
10252
|
+
zone: "zone";
|
|
10253
|
+
aisle: "aisle";
|
|
10254
|
+
rack: "rack";
|
|
10255
|
+
shelf: "shelf";
|
|
10256
|
+
bin: "bin";
|
|
10257
|
+
drawer: "drawer";
|
|
10258
|
+
}>>;
|
|
10259
|
+
name: z.ZodOptional<z.ZodString>;
|
|
10260
|
+
code: z.ZodOptional<z.ZodString>;
|
|
10261
|
+
}, z.core.$strip>;
|
|
10262
|
+
export declare const zUpdateSubLocationPath: z.ZodObject<{
|
|
10263
|
+
id: z.ZodString;
|
|
10264
|
+
}, z.core.$strip>;
|
|
10265
|
+
/**
|
|
10266
|
+
* Success
|
|
10267
|
+
*/
|
|
10268
|
+
export declare const zUpdateSubLocationResponse: z.ZodObject<{
|
|
10269
|
+
id: z.ZodString;
|
|
10270
|
+
company_id: z.ZodString;
|
|
10271
|
+
assets_site_id: z.ZodNullable<z.ZodString>;
|
|
10272
|
+
container_item_id: z.ZodNullable<z.ZodString>;
|
|
10273
|
+
parent_id: z.ZodNullable<z.ZodString>;
|
|
10274
|
+
kind: z.ZodNullable<z.ZodEnum<{
|
|
10275
|
+
zone: "zone";
|
|
10276
|
+
aisle: "aisle";
|
|
10277
|
+
rack: "rack";
|
|
10278
|
+
shelf: "shelf";
|
|
10279
|
+
bin: "bin";
|
|
10280
|
+
drawer: "drawer";
|
|
10281
|
+
}>>;
|
|
10282
|
+
name: z.ZodString;
|
|
10283
|
+
code: z.ZodString;
|
|
10284
|
+
path_code: z.ZodString;
|
|
10285
|
+
created_at: z.ZodISODateTime;
|
|
10286
|
+
updated_at: z.ZodISODateTime;
|
|
10287
|
+
}, z.core.$strip>;
|
|
9722
10288
|
export declare const zListTransfersQuery: z.ZodObject<{
|
|
9723
10289
|
'filter[status]': z.ZodOptional<z.ZodString>;
|
|
9724
10290
|
filter: z.ZodOptional<z.ZodString>;
|
|
@@ -9754,6 +10320,8 @@ export declare const zListTransfersResponse: z.ZodObject<{
|
|
|
9754
10320
|
to_assets_site_id: z.ZodNullable<z.ZodString>;
|
|
9755
10321
|
to_user_id: z.ZodNullable<z.ZodString>;
|
|
9756
10322
|
to_container_item_id: z.ZodNullable<z.ZodString>;
|
|
10323
|
+
from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
10324
|
+
to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
9757
10325
|
initiated_by_user_id: z.ZodString;
|
|
9758
10326
|
completed_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9759
10327
|
transfer_lines: z.ZodArray<z.ZodObject<{
|
|
@@ -9772,6 +10340,8 @@ export declare const zCreateTransferBody: z.ZodObject<{
|
|
|
9772
10340
|
to_assets_site_id: z.ZodOptional<z.ZodString>;
|
|
9773
10341
|
to_user_id: z.ZodOptional<z.ZodString>;
|
|
9774
10342
|
to_container_item_id: z.ZodOptional<z.ZodString>;
|
|
10343
|
+
from_assets_sub_location_id: z.ZodOptional<z.ZodString>;
|
|
10344
|
+
to_assets_sub_location_id: z.ZodOptional<z.ZodString>;
|
|
9775
10345
|
performed_by_user_id: z.ZodString;
|
|
9776
10346
|
line_items: z.ZodArray<z.ZodObject<{
|
|
9777
10347
|
assets_item_id: z.ZodString;
|
|
@@ -9793,6 +10363,8 @@ export declare const zCreateTransferResponse: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9793
10363
|
to_assets_site_id: z.ZodNullable<z.ZodString>;
|
|
9794
10364
|
to_user_id: z.ZodNullable<z.ZodString>;
|
|
9795
10365
|
to_container_item_id: z.ZodNullable<z.ZodString>;
|
|
10366
|
+
from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
10367
|
+
to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
9796
10368
|
initiated_by_user_id: z.ZodString;
|
|
9797
10369
|
completed_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9798
10370
|
transfer_lines: z.ZodArray<z.ZodObject<{
|
|
@@ -9824,6 +10396,8 @@ export declare const zGetTransferResponse: z.ZodObject<{
|
|
|
9824
10396
|
to_assets_site_id: z.ZodNullable<z.ZodString>;
|
|
9825
10397
|
to_user_id: z.ZodNullable<z.ZodString>;
|
|
9826
10398
|
to_container_item_id: z.ZodNullable<z.ZodString>;
|
|
10399
|
+
from_assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
10400
|
+
to_assets_sub_location_id: z.ZodNullable<z.ZodString>;
|
|
9827
10401
|
initiated_by_user_id: z.ZodString;
|
|
9828
10402
|
completed_at: z.ZodNullable<z.ZodISODateTime>;
|
|
9829
10403
|
transfer_lines: z.ZodArray<z.ZodObject<{
|
|
@@ -11408,6 +11982,14 @@ export declare const zUpdateCustomFieldConfigResponse: z.ZodObject<{
|
|
|
11408
11982
|
updated_at: z.ZodISODateTime;
|
|
11409
11983
|
}, z.core.$strip>;
|
|
11410
11984
|
export declare const zCreateDirectUploadBody: z.ZodObject<{
|
|
11985
|
+
resource: z.ZodEnum<{
|
|
11986
|
+
"assets.items": "assets.items";
|
|
11987
|
+
"assets.items.documents": "assets.items.documents";
|
|
11988
|
+
"assets.items.service_events": "assets.items.service_events";
|
|
11989
|
+
"assets.products": "assets.products";
|
|
11990
|
+
"assets.vendors": "assets.vendors";
|
|
11991
|
+
users: "users";
|
|
11992
|
+
}>;
|
|
11411
11993
|
blob: z.ZodObject<{
|
|
11412
11994
|
filename: z.ZodString;
|
|
11413
11995
|
byte_size: z.ZodInt;
|
|
@@ -12153,144 +12735,461 @@ export declare const zGetRateRuleResponse: z.ZodObject<{
|
|
|
12153
12735
|
created_at: z.ZodISODateTime;
|
|
12154
12736
|
updated_at: z.ZodISODateTime;
|
|
12155
12737
|
}, z.core.$strip>;
|
|
12156
|
-
export declare const
|
|
12738
|
+
export declare const zShiftJobWageDeterminationGenesisBody: z.ZodObject<{
|
|
12739
|
+
effective_date: z.ZodISODate;
|
|
12740
|
+
}, z.core.$strip>;
|
|
12741
|
+
export declare const zShiftJobWageDeterminationGenesisHeaders: z.ZodObject<{
|
|
12742
|
+
'If-Match': z.ZodString;
|
|
12743
|
+
}, z.core.$strip>;
|
|
12744
|
+
export declare const zShiftJobWageDeterminationGenesisPath: z.ZodObject<{
|
|
12745
|
+
job_id: z.ZodString;
|
|
12746
|
+
wage_determination_id: z.ZodString;
|
|
12747
|
+
}, z.core.$strip>;
|
|
12748
|
+
/**
|
|
12749
|
+
* Success
|
|
12750
|
+
*/
|
|
12751
|
+
export declare const zShiftJobWageDeterminationGenesisResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12752
|
+
id: z.ZodString;
|
|
12753
|
+
job_id: z.ZodString;
|
|
12754
|
+
pwa_trade_id: z.ZodString;
|
|
12755
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12756
|
+
labor_classification: z.ZodString;
|
|
12757
|
+
hourly_rate_cents: z.ZodString;
|
|
12758
|
+
fringe_rate_cents: z.ZodString;
|
|
12759
|
+
class_code: z.ZodNullable<z.ZodString>;
|
|
12760
|
+
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
12761
|
+
building: "building";
|
|
12762
|
+
heavy: "heavy";
|
|
12763
|
+
highway: "highway";
|
|
12764
|
+
residential: "residential";
|
|
12765
|
+
}>>;
|
|
12766
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12767
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12768
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12769
|
+
created_at: z.ZodISODateTime;
|
|
12770
|
+
updated_at: z.ZodISODateTime;
|
|
12771
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
12772
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12773
|
+
id: z.ZodString;
|
|
12774
|
+
job_id: z.ZodString;
|
|
12775
|
+
pwa_trade_id: z.ZodString;
|
|
12776
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12777
|
+
labor_classification: z.ZodString;
|
|
12778
|
+
hourly_rate_cents: z.ZodString;
|
|
12779
|
+
fringe_rate_cents: z.ZodString;
|
|
12780
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12781
|
+
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
12782
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12783
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12784
|
+
created_at: z.ZodISODateTime;
|
|
12785
|
+
updated_at: z.ZodISODateTime;
|
|
12786
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
12787
|
+
}, z.core.$strip>], "type">;
|
|
12788
|
+
export declare const zListJobWageDeterminationHistoryPath: z.ZodObject<{
|
|
12789
|
+
job_id: z.ZodString;
|
|
12790
|
+
wage_determination_id: z.ZodString;
|
|
12791
|
+
}, z.core.$strip>;
|
|
12792
|
+
export declare const zListJobWageDeterminationHistoryQuery: z.ZodObject<{
|
|
12793
|
+
'as_of[valid]': z.ZodOptional<z.ZodString>;
|
|
12794
|
+
}, z.core.$strip>;
|
|
12795
|
+
/**
|
|
12796
|
+
* Success
|
|
12797
|
+
*/
|
|
12798
|
+
export declare const zListJobWageDeterminationHistoryResponse: z.ZodObject<{
|
|
12799
|
+
meta: z.ZodObject<{
|
|
12800
|
+
page: z.ZodObject<{
|
|
12801
|
+
next_cursor: z.ZodNullable<z.ZodString>;
|
|
12802
|
+
current_cursor: z.ZodNullable<z.ZodString>;
|
|
12803
|
+
}, z.core.$strip>;
|
|
12804
|
+
}, z.core.$strip>;
|
|
12805
|
+
links: z.ZodObject<{
|
|
12806
|
+
self: z.ZodString;
|
|
12807
|
+
first: z.ZodNullable<z.ZodString>;
|
|
12808
|
+
next: z.ZodNullable<z.ZodString>;
|
|
12809
|
+
}, z.core.$strip>;
|
|
12810
|
+
data: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12811
|
+
job_wage_determination_id: z.ZodString;
|
|
12812
|
+
job_id: z.ZodString;
|
|
12813
|
+
pwa_trade_id: z.ZodString;
|
|
12814
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12815
|
+
labor_classification: z.ZodString;
|
|
12816
|
+
hourly_rate_cents: z.ZodString;
|
|
12817
|
+
fringe_rate_cents: z.ZodString;
|
|
12818
|
+
class_code: z.ZodNullable<z.ZodString>;
|
|
12819
|
+
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
12820
|
+
building: "building";
|
|
12821
|
+
heavy: "heavy";
|
|
12822
|
+
highway: "highway";
|
|
12823
|
+
residential: "residential";
|
|
12824
|
+
}>>;
|
|
12825
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12826
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12827
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12828
|
+
created_at: z.ZodISODateTime;
|
|
12829
|
+
updated_at: z.ZodISODateTime;
|
|
12830
|
+
version_status: z.ZodEnum<{
|
|
12831
|
+
scheduled: "scheduled";
|
|
12832
|
+
current: "current";
|
|
12833
|
+
historical: "historical";
|
|
12834
|
+
}>;
|
|
12835
|
+
corrections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12836
|
+
job_wage_determination_id: z.ZodString;
|
|
12837
|
+
job_id: z.ZodString;
|
|
12838
|
+
pwa_trade_id: z.ZodString;
|
|
12839
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12840
|
+
labor_classification: z.ZodString;
|
|
12841
|
+
hourly_rate_cents: z.ZodString;
|
|
12842
|
+
fringe_rate_cents: z.ZodString;
|
|
12843
|
+
class_code: z.ZodNullable<z.ZodString>;
|
|
12844
|
+
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
12845
|
+
building: "building";
|
|
12846
|
+
heavy: "heavy";
|
|
12847
|
+
highway: "highway";
|
|
12848
|
+
residential: "residential";
|
|
12849
|
+
}>>;
|
|
12850
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12851
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12852
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12853
|
+
created_at: z.ZodISODateTime;
|
|
12854
|
+
updated_at: z.ZodISODateTime;
|
|
12855
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
12856
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12857
|
+
job_wage_determination_id: z.ZodString;
|
|
12858
|
+
job_id: z.ZodString;
|
|
12859
|
+
pwa_trade_id: z.ZodString;
|
|
12860
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12861
|
+
labor_classification: z.ZodString;
|
|
12862
|
+
hourly_rate_cents: z.ZodString;
|
|
12863
|
+
fringe_rate_cents: z.ZodString;
|
|
12864
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12865
|
+
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
12866
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12867
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12868
|
+
created_at: z.ZodISODateTime;
|
|
12869
|
+
updated_at: z.ZodISODateTime;
|
|
12870
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
12871
|
+
}, z.core.$strip>], "type">>;
|
|
12872
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
12873
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12874
|
+
job_wage_determination_id: z.ZodString;
|
|
12875
|
+
job_id: z.ZodString;
|
|
12876
|
+
pwa_trade_id: z.ZodString;
|
|
12877
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12878
|
+
labor_classification: z.ZodString;
|
|
12879
|
+
hourly_rate_cents: z.ZodString;
|
|
12880
|
+
fringe_rate_cents: z.ZodString;
|
|
12881
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12882
|
+
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
12883
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12884
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12885
|
+
created_at: z.ZodISODateTime;
|
|
12886
|
+
updated_at: z.ZodISODateTime;
|
|
12887
|
+
version_status: z.ZodEnum<{
|
|
12888
|
+
scheduled: "scheduled";
|
|
12889
|
+
current: "current";
|
|
12890
|
+
historical: "historical";
|
|
12891
|
+
}>;
|
|
12892
|
+
corrections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12893
|
+
job_wage_determination_id: z.ZodString;
|
|
12894
|
+
job_id: z.ZodString;
|
|
12895
|
+
pwa_trade_id: z.ZodString;
|
|
12896
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12897
|
+
labor_classification: z.ZodString;
|
|
12898
|
+
hourly_rate_cents: z.ZodString;
|
|
12899
|
+
fringe_rate_cents: z.ZodString;
|
|
12900
|
+
class_code: z.ZodNullable<z.ZodString>;
|
|
12901
|
+
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
12902
|
+
building: "building";
|
|
12903
|
+
heavy: "heavy";
|
|
12904
|
+
highway: "highway";
|
|
12905
|
+
residential: "residential";
|
|
12906
|
+
}>>;
|
|
12907
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12908
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12909
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12910
|
+
created_at: z.ZodISODateTime;
|
|
12911
|
+
updated_at: z.ZodISODateTime;
|
|
12912
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
12913
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12914
|
+
job_wage_determination_id: z.ZodString;
|
|
12915
|
+
job_id: z.ZodString;
|
|
12916
|
+
pwa_trade_id: z.ZodString;
|
|
12917
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12918
|
+
labor_classification: z.ZodString;
|
|
12919
|
+
hourly_rate_cents: z.ZodString;
|
|
12920
|
+
fringe_rate_cents: z.ZodString;
|
|
12921
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12922
|
+
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
12923
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12924
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12925
|
+
created_at: z.ZodISODateTime;
|
|
12926
|
+
updated_at: z.ZodISODateTime;
|
|
12927
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
12928
|
+
}, z.core.$strip>], "type">>;
|
|
12929
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
12930
|
+
}, z.core.$strip>], "type">>;
|
|
12931
|
+
}, z.core.$strip>;
|
|
12932
|
+
export declare const zCancelJobWageDeterminationScheduledChangesHeaders: z.ZodObject<{
|
|
12933
|
+
'If-Match': z.ZodString;
|
|
12934
|
+
}, z.core.$strip>;
|
|
12935
|
+
export declare const zCancelJobWageDeterminationScheduledChangesPath: z.ZodObject<{
|
|
12936
|
+
job_id: z.ZodString;
|
|
12937
|
+
wage_determination_id: z.ZodString;
|
|
12938
|
+
}, z.core.$strip>;
|
|
12939
|
+
/**
|
|
12940
|
+
* Success
|
|
12941
|
+
*/
|
|
12942
|
+
export declare const zCancelJobWageDeterminationScheduledChangesResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12943
|
+
id: z.ZodString;
|
|
12944
|
+
job_id: z.ZodString;
|
|
12945
|
+
pwa_trade_id: z.ZodString;
|
|
12946
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12947
|
+
labor_classification: z.ZodString;
|
|
12948
|
+
hourly_rate_cents: z.ZodString;
|
|
12949
|
+
fringe_rate_cents: z.ZodString;
|
|
12950
|
+
class_code: z.ZodNullable<z.ZodString>;
|
|
12951
|
+
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
12952
|
+
building: "building";
|
|
12953
|
+
heavy: "heavy";
|
|
12954
|
+
highway: "highway";
|
|
12955
|
+
residential: "residential";
|
|
12956
|
+
}>>;
|
|
12957
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12958
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12959
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12960
|
+
created_at: z.ZodISODateTime;
|
|
12961
|
+
updated_at: z.ZodISODateTime;
|
|
12962
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
12963
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12964
|
+
id: z.ZodString;
|
|
12965
|
+
job_id: z.ZodString;
|
|
12966
|
+
pwa_trade_id: z.ZodString;
|
|
12967
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12968
|
+
labor_classification: z.ZodString;
|
|
12969
|
+
hourly_rate_cents: z.ZodString;
|
|
12970
|
+
fringe_rate_cents: z.ZodString;
|
|
12971
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12972
|
+
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
12973
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12974
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12975
|
+
created_at: z.ZodISODateTime;
|
|
12976
|
+
updated_at: z.ZodISODateTime;
|
|
12977
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
12978
|
+
}, z.core.$strip>], "type">;
|
|
12979
|
+
export declare const zListJobWageDeterminationScheduledChangesPath: z.ZodObject<{
|
|
12980
|
+
job_id: z.ZodString;
|
|
12981
|
+
wage_determination_id: z.ZodString;
|
|
12982
|
+
}, z.core.$strip>;
|
|
12983
|
+
/**
|
|
12984
|
+
* Success with scheduled changes
|
|
12985
|
+
*/
|
|
12986
|
+
export declare const zListJobWageDeterminationScheduledChangesResponse: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12987
|
+
id: z.ZodString;
|
|
12988
|
+
job_id: z.ZodString;
|
|
12989
|
+
pwa_trade_id: z.ZodString;
|
|
12990
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12991
|
+
labor_classification: z.ZodString;
|
|
12992
|
+
hourly_rate_cents: z.ZodString;
|
|
12993
|
+
fringe_rate_cents: z.ZodString;
|
|
12994
|
+
class_code: z.ZodNullable<z.ZodString>;
|
|
12995
|
+
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
12996
|
+
building: "building";
|
|
12997
|
+
heavy: "heavy";
|
|
12998
|
+
highway: "highway";
|
|
12999
|
+
residential: "residential";
|
|
13000
|
+
}>>;
|
|
13001
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
13002
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
13003
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
13004
|
+
created_at: z.ZodISODateTime;
|
|
13005
|
+
updated_at: z.ZodISODateTime;
|
|
13006
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
13007
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13008
|
+
id: z.ZodString;
|
|
13009
|
+
job_id: z.ZodString;
|
|
13010
|
+
pwa_trade_id: z.ZodString;
|
|
13011
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
13012
|
+
labor_classification: z.ZodString;
|
|
13013
|
+
hourly_rate_cents: z.ZodString;
|
|
13014
|
+
fringe_rate_cents: z.ZodString;
|
|
13015
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
13016
|
+
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
13017
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
13018
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
13019
|
+
created_at: z.ZodISODateTime;
|
|
13020
|
+
updated_at: z.ZodISODateTime;
|
|
13021
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
13022
|
+
}, z.core.$strip>], "type">>;
|
|
13023
|
+
export declare const zScheduleJobWageDeterminationChangeBody: z.ZodObject<{
|
|
13024
|
+
effective_date: z.ZodISODate;
|
|
13025
|
+
labor_classification: z.ZodOptional<z.ZodString>;
|
|
13026
|
+
pwa_trade_id: z.ZodOptional<z.ZodString>;
|
|
13027
|
+
hourly_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13028
|
+
fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13029
|
+
class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13030
|
+
construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13031
|
+
building: "building";
|
|
13032
|
+
heavy: "heavy";
|
|
13033
|
+
highway: "highway";
|
|
13034
|
+
residential: "residential";
|
|
13035
|
+
}>>>;
|
|
13036
|
+
general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13037
|
+
regional_fields: z.ZodOptional<z.ZodObject<{
|
|
13038
|
+
combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13039
|
+
combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13040
|
+
combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13041
|
+
training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13042
|
+
other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13043
|
+
one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13044
|
+
two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13045
|
+
one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13046
|
+
two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13047
|
+
}, z.core.$strip>>;
|
|
13048
|
+
}, z.core.$strip>;
|
|
13049
|
+
export declare const zScheduleJobWageDeterminationChangeHeaders: z.ZodObject<{
|
|
13050
|
+
'If-Match': z.ZodString;
|
|
13051
|
+
}, z.core.$strip>;
|
|
13052
|
+
export declare const zScheduleJobWageDeterminationChangePath: z.ZodObject<{
|
|
13053
|
+
job_id: z.ZodString;
|
|
13054
|
+
wage_determination_id: z.ZodString;
|
|
13055
|
+
}, z.core.$strip>;
|
|
13056
|
+
/**
|
|
13057
|
+
* Created
|
|
13058
|
+
*/
|
|
13059
|
+
export declare const zScheduleJobWageDeterminationChangeResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13060
|
+
id: z.ZodString;
|
|
13061
|
+
job_id: z.ZodString;
|
|
13062
|
+
pwa_trade_id: z.ZodString;
|
|
13063
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
13064
|
+
labor_classification: z.ZodString;
|
|
13065
|
+
hourly_rate_cents: z.ZodString;
|
|
13066
|
+
fringe_rate_cents: z.ZodString;
|
|
13067
|
+
class_code: z.ZodNullable<z.ZodString>;
|
|
13068
|
+
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
13069
|
+
building: "building";
|
|
13070
|
+
heavy: "heavy";
|
|
13071
|
+
highway: "highway";
|
|
13072
|
+
residential: "residential";
|
|
13073
|
+
}>>;
|
|
13074
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
13075
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
13076
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
13077
|
+
created_at: z.ZodISODateTime;
|
|
13078
|
+
updated_at: z.ZodISODateTime;
|
|
13079
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
13080
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13081
|
+
id: z.ZodString;
|
|
13082
|
+
job_id: z.ZodString;
|
|
13083
|
+
pwa_trade_id: z.ZodString;
|
|
13084
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
13085
|
+
labor_classification: z.ZodString;
|
|
13086
|
+
hourly_rate_cents: z.ZodString;
|
|
13087
|
+
fringe_rate_cents: z.ZodString;
|
|
13088
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
13089
|
+
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
13090
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
13091
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
13092
|
+
created_at: z.ZodISODateTime;
|
|
13093
|
+
updated_at: z.ZodISODateTime;
|
|
13094
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
13095
|
+
}, z.core.$strip>], "type">;
|
|
13096
|
+
export declare const zCancelJobWageDeterminationScheduledTerminationHeaders: z.ZodObject<{
|
|
13097
|
+
'If-Match': z.ZodString;
|
|
13098
|
+
}, z.core.$strip>;
|
|
13099
|
+
export declare const zCancelJobWageDeterminationScheduledTerminationPath: z.ZodObject<{
|
|
13100
|
+
job_id: z.ZodString;
|
|
13101
|
+
wage_determination_id: z.ZodString;
|
|
13102
|
+
}, z.core.$strip>;
|
|
13103
|
+
/**
|
|
13104
|
+
* Success
|
|
13105
|
+
*/
|
|
13106
|
+
export declare const zCancelJobWageDeterminationScheduledTerminationResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13107
|
+
id: z.ZodString;
|
|
13108
|
+
job_id: z.ZodString;
|
|
13109
|
+
pwa_trade_id: z.ZodString;
|
|
13110
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
13111
|
+
labor_classification: z.ZodString;
|
|
13112
|
+
hourly_rate_cents: z.ZodString;
|
|
13113
|
+
fringe_rate_cents: z.ZodString;
|
|
13114
|
+
class_code: z.ZodNullable<z.ZodString>;
|
|
13115
|
+
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
13116
|
+
building: "building";
|
|
13117
|
+
heavy: "heavy";
|
|
13118
|
+
highway: "highway";
|
|
13119
|
+
residential: "residential";
|
|
13120
|
+
}>>;
|
|
13121
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
13122
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
13123
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
13124
|
+
created_at: z.ZodISODateTime;
|
|
13125
|
+
updated_at: z.ZodISODateTime;
|
|
13126
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
13127
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13128
|
+
id: z.ZodString;
|
|
13129
|
+
job_id: z.ZodString;
|
|
13130
|
+
pwa_trade_id: z.ZodString;
|
|
13131
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
13132
|
+
labor_classification: z.ZodString;
|
|
13133
|
+
hourly_rate_cents: z.ZodString;
|
|
13134
|
+
fringe_rate_cents: z.ZodString;
|
|
13135
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
13136
|
+
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
13137
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
13138
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
13139
|
+
created_at: z.ZodISODateTime;
|
|
13140
|
+
updated_at: z.ZodISODateTime;
|
|
13141
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
13142
|
+
}, z.core.$strip>], "type">;
|
|
13143
|
+
export declare const zScheduleJobWageDeterminationTerminationBody: z.ZodObject<{
|
|
13144
|
+
effective_date: z.ZodISODate;
|
|
13145
|
+
}, z.core.$strip>;
|
|
13146
|
+
export declare const zScheduleJobWageDeterminationTerminationHeaders: z.ZodObject<{
|
|
13147
|
+
'If-Match': z.ZodString;
|
|
13148
|
+
}, z.core.$strip>;
|
|
13149
|
+
export declare const zScheduleJobWageDeterminationTerminationPath: z.ZodObject<{
|
|
12157
13150
|
job_id: z.ZodString;
|
|
12158
13151
|
wage_determination_id: z.ZodString;
|
|
12159
13152
|
}, z.core.$strip>;
|
|
12160
|
-
export declare const zListJobWageDeterminationHistoryQuery: z.ZodObject<{
|
|
12161
|
-
'as_of[valid]': z.ZodOptional<z.ZodString>;
|
|
12162
|
-
}, z.core.$strip>;
|
|
12163
13153
|
/**
|
|
12164
|
-
*
|
|
13154
|
+
* Created
|
|
12165
13155
|
*/
|
|
12166
|
-
export declare const
|
|
12167
|
-
|
|
12168
|
-
|
|
12169
|
-
|
|
12170
|
-
|
|
12171
|
-
|
|
12172
|
-
|
|
12173
|
-
|
|
12174
|
-
|
|
12175
|
-
|
|
12176
|
-
|
|
12177
|
-
|
|
12178
|
-
|
|
12179
|
-
|
|
12180
|
-
|
|
12181
|
-
|
|
12182
|
-
|
|
12183
|
-
|
|
12184
|
-
|
|
12185
|
-
|
|
12186
|
-
|
|
12187
|
-
|
|
12188
|
-
|
|
12189
|
-
|
|
12190
|
-
|
|
12191
|
-
|
|
12192
|
-
|
|
12193
|
-
|
|
12194
|
-
|
|
12195
|
-
|
|
12196
|
-
|
|
12197
|
-
|
|
12198
|
-
|
|
12199
|
-
|
|
12200
|
-
|
|
12201
|
-
|
|
12202
|
-
|
|
12203
|
-
job_wage_determination_id: z.ZodString;
|
|
12204
|
-
job_id: z.ZodString;
|
|
12205
|
-
pwa_trade_id: z.ZodString;
|
|
12206
|
-
labor_classification: z.ZodString;
|
|
12207
|
-
hourly_rate_cents: z.ZodString;
|
|
12208
|
-
fringe_rate_cents: z.ZodString;
|
|
12209
|
-
class_code: z.ZodNullable<z.ZodString>;
|
|
12210
|
-
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
12211
|
-
building: "building";
|
|
12212
|
-
heavy: "heavy";
|
|
12213
|
-
highway: "highway";
|
|
12214
|
-
residential: "residential";
|
|
12215
|
-
}>>;
|
|
12216
|
-
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12217
|
-
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12218
|
-
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12219
|
-
created_at: z.ZodISODateTime;
|
|
12220
|
-
updated_at: z.ZodISODateTime;
|
|
12221
|
-
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
12222
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
12223
|
-
job_wage_determination_id: z.ZodString;
|
|
12224
|
-
job_id: z.ZodString;
|
|
12225
|
-
pwa_trade_id: z.ZodString;
|
|
12226
|
-
labor_classification: z.ZodString;
|
|
12227
|
-
hourly_rate_cents: z.ZodString;
|
|
12228
|
-
fringe_rate_cents: z.ZodString;
|
|
12229
|
-
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12230
|
-
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
12231
|
-
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12232
|
-
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12233
|
-
created_at: z.ZodISODateTime;
|
|
12234
|
-
updated_at: z.ZodISODateTime;
|
|
12235
|
-
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
12236
|
-
}, z.core.$strip>], "type">>;
|
|
12237
|
-
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
12238
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
12239
|
-
job_wage_determination_id: z.ZodString;
|
|
12240
|
-
job_id: z.ZodString;
|
|
12241
|
-
pwa_trade_id: z.ZodString;
|
|
12242
|
-
labor_classification: z.ZodString;
|
|
12243
|
-
hourly_rate_cents: z.ZodString;
|
|
12244
|
-
fringe_rate_cents: z.ZodString;
|
|
12245
|
-
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12246
|
-
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
12247
|
-
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12248
|
-
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12249
|
-
created_at: z.ZodISODateTime;
|
|
12250
|
-
updated_at: z.ZodISODateTime;
|
|
12251
|
-
version_status: z.ZodEnum<{
|
|
12252
|
-
scheduled: "scheduled";
|
|
12253
|
-
current: "current";
|
|
12254
|
-
historical: "historical";
|
|
12255
|
-
}>;
|
|
12256
|
-
corrections: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
12257
|
-
job_wage_determination_id: z.ZodString;
|
|
12258
|
-
job_id: z.ZodString;
|
|
12259
|
-
pwa_trade_id: z.ZodString;
|
|
12260
|
-
labor_classification: z.ZodString;
|
|
12261
|
-
hourly_rate_cents: z.ZodString;
|
|
12262
|
-
fringe_rate_cents: z.ZodString;
|
|
12263
|
-
class_code: z.ZodNullable<z.ZodString>;
|
|
12264
|
-
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
12265
|
-
building: "building";
|
|
12266
|
-
heavy: "heavy";
|
|
12267
|
-
highway: "highway";
|
|
12268
|
-
residential: "residential";
|
|
12269
|
-
}>>;
|
|
12270
|
-
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12271
|
-
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12272
|
-
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12273
|
-
created_at: z.ZodISODateTime;
|
|
12274
|
-
updated_at: z.ZodISODateTime;
|
|
12275
|
-
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
12276
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
12277
|
-
job_wage_determination_id: z.ZodString;
|
|
12278
|
-
job_id: z.ZodString;
|
|
12279
|
-
pwa_trade_id: z.ZodString;
|
|
12280
|
-
labor_classification: z.ZodString;
|
|
12281
|
-
hourly_rate_cents: z.ZodString;
|
|
12282
|
-
fringe_rate_cents: z.ZodString;
|
|
12283
|
-
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
12284
|
-
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
12285
|
-
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
12286
|
-
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
12287
|
-
created_at: z.ZodISODateTime;
|
|
12288
|
-
updated_at: z.ZodISODateTime;
|
|
12289
|
-
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
12290
|
-
}, z.core.$strip>], "type">>;
|
|
12291
|
-
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
12292
|
-
}, z.core.$strip>], "type">>;
|
|
12293
|
-
}, z.core.$strip>;
|
|
13156
|
+
export declare const zScheduleJobWageDeterminationTerminationResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13157
|
+
id: z.ZodString;
|
|
13158
|
+
job_id: z.ZodString;
|
|
13159
|
+
pwa_trade_id: z.ZodString;
|
|
13160
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
13161
|
+
labor_classification: z.ZodString;
|
|
13162
|
+
hourly_rate_cents: z.ZodString;
|
|
13163
|
+
fringe_rate_cents: z.ZodString;
|
|
13164
|
+
class_code: z.ZodNullable<z.ZodString>;
|
|
13165
|
+
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
13166
|
+
building: "building";
|
|
13167
|
+
heavy: "heavy";
|
|
13168
|
+
highway: "highway";
|
|
13169
|
+
residential: "residential";
|
|
13170
|
+
}>>;
|
|
13171
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
13172
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
13173
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
13174
|
+
created_at: z.ZodISODateTime;
|
|
13175
|
+
updated_at: z.ZodISODateTime;
|
|
13176
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
13177
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13178
|
+
id: z.ZodString;
|
|
13179
|
+
job_id: z.ZodString;
|
|
13180
|
+
pwa_trade_id: z.ZodString;
|
|
13181
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
13182
|
+
labor_classification: z.ZodString;
|
|
13183
|
+
hourly_rate_cents: z.ZodString;
|
|
13184
|
+
fringe_rate_cents: z.ZodString;
|
|
13185
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
13186
|
+
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
13187
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
13188
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
13189
|
+
created_at: z.ZodISODateTime;
|
|
13190
|
+
updated_at: z.ZodISODateTime;
|
|
13191
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
13192
|
+
}, z.core.$strip>], "type">;
|
|
12294
13193
|
export declare const zListJobWageDeterminationsPath: z.ZodObject<{
|
|
12295
13194
|
job_id: z.ZodString;
|
|
12296
13195
|
}, z.core.$strip>;
|
|
@@ -12320,6 +13219,7 @@ export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
|
|
|
12320
13219
|
id: z.ZodString;
|
|
12321
13220
|
job_id: z.ZodString;
|
|
12322
13221
|
pwa_trade_id: z.ZodString;
|
|
13222
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12323
13223
|
labor_classification: z.ZodString;
|
|
12324
13224
|
hourly_rate_cents: z.ZodString;
|
|
12325
13225
|
fringe_rate_cents: z.ZodString;
|
|
@@ -12340,6 +13240,7 @@ export declare const zListJobWageDeterminationsResponse: z.ZodObject<{
|
|
|
12340
13240
|
id: z.ZodString;
|
|
12341
13241
|
job_id: z.ZodString;
|
|
12342
13242
|
pwa_trade_id: z.ZodString;
|
|
13243
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12343
13244
|
labor_classification: z.ZodString;
|
|
12344
13245
|
hourly_rate_cents: z.ZodString;
|
|
12345
13246
|
fringe_rate_cents: z.ZodString;
|
|
@@ -12395,6 +13296,7 @@ export declare const zCreateWageDeterminationResponse: z.ZodDiscriminatedUnion<[
|
|
|
12395
13296
|
id: z.ZodString;
|
|
12396
13297
|
job_id: z.ZodString;
|
|
12397
13298
|
pwa_trade_id: z.ZodString;
|
|
13299
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12398
13300
|
labor_classification: z.ZodString;
|
|
12399
13301
|
hourly_rate_cents: z.ZodString;
|
|
12400
13302
|
fringe_rate_cents: z.ZodString;
|
|
@@ -12415,6 +13317,7 @@ export declare const zCreateWageDeterminationResponse: z.ZodDiscriminatedUnion<[
|
|
|
12415
13317
|
id: z.ZodString;
|
|
12416
13318
|
job_id: z.ZodString;
|
|
12417
13319
|
pwa_trade_id: z.ZodString;
|
|
13320
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12418
13321
|
labor_classification: z.ZodString;
|
|
12419
13322
|
hourly_rate_cents: z.ZodString;
|
|
12420
13323
|
fringe_rate_cents: z.ZodString;
|
|
@@ -12440,6 +13343,7 @@ export declare const zDeleteWageDeterminationResponse: z.ZodDiscriminatedUnion<[
|
|
|
12440
13343
|
id: z.ZodString;
|
|
12441
13344
|
job_id: z.ZodString;
|
|
12442
13345
|
pwa_trade_id: z.ZodString;
|
|
13346
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12443
13347
|
labor_classification: z.ZodString;
|
|
12444
13348
|
hourly_rate_cents: z.ZodString;
|
|
12445
13349
|
fringe_rate_cents: z.ZodString;
|
|
@@ -12460,6 +13364,7 @@ export declare const zDeleteWageDeterminationResponse: z.ZodDiscriminatedUnion<[
|
|
|
12460
13364
|
id: z.ZodString;
|
|
12461
13365
|
job_id: z.ZodString;
|
|
12462
13366
|
pwa_trade_id: z.ZodString;
|
|
13367
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12463
13368
|
labor_classification: z.ZodString;
|
|
12464
13369
|
hourly_rate_cents: z.ZodString;
|
|
12465
13370
|
fringe_rate_cents: z.ZodString;
|
|
@@ -12485,6 +13390,80 @@ export declare const zGetJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[
|
|
|
12485
13390
|
id: z.ZodString;
|
|
12486
13391
|
job_id: z.ZodString;
|
|
12487
13392
|
pwa_trade_id: z.ZodString;
|
|
13393
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
13394
|
+
labor_classification: z.ZodString;
|
|
13395
|
+
hourly_rate_cents: z.ZodString;
|
|
13396
|
+
fringe_rate_cents: z.ZodString;
|
|
13397
|
+
class_code: z.ZodNullable<z.ZodString>;
|
|
13398
|
+
construction_category: z.ZodNullable<z.ZodEnum<{
|
|
13399
|
+
building: "building";
|
|
13400
|
+
heavy: "heavy";
|
|
13401
|
+
highway: "highway";
|
|
13402
|
+
residential: "residential";
|
|
13403
|
+
}>>;
|
|
13404
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
13405
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
13406
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
13407
|
+
created_at: z.ZodISODateTime;
|
|
13408
|
+
updated_at: z.ZodISODateTime;
|
|
13409
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Federal">;
|
|
13410
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13411
|
+
id: z.ZodString;
|
|
13412
|
+
job_id: z.ZodString;
|
|
13413
|
+
pwa_trade_id: z.ZodString;
|
|
13414
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
13415
|
+
labor_classification: z.ZodString;
|
|
13416
|
+
hourly_rate_cents: z.ZodString;
|
|
13417
|
+
fringe_rate_cents: z.ZodString;
|
|
13418
|
+
general_wage_determination: z.ZodNullable<z.ZodString>;
|
|
13419
|
+
regional_fields: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
13420
|
+
valid_from: z.ZodNullable<z.ZodISODateTime>;
|
|
13421
|
+
valid_to: z.ZodNullable<z.ZodISODateTime>;
|
|
13422
|
+
created_at: z.ZodISODateTime;
|
|
13423
|
+
updated_at: z.ZodISODateTime;
|
|
13424
|
+
type: z.ZodLiteral<"Pwa::JobWageDeterminations::Regional">;
|
|
13425
|
+
}, z.core.$strip>], "type">;
|
|
13426
|
+
export declare const zUpdateJobWageDeterminationBody: z.ZodObject<{
|
|
13427
|
+
effective_from: z.ZodOptional<z.ZodISODate>;
|
|
13428
|
+
labor_classification: z.ZodOptional<z.ZodString>;
|
|
13429
|
+
pwa_trade_id: z.ZodOptional<z.ZodString>;
|
|
13430
|
+
hourly_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13431
|
+
fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13432
|
+
class_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13433
|
+
construction_category: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13434
|
+
building: "building";
|
|
13435
|
+
heavy: "heavy";
|
|
13436
|
+
highway: "highway";
|
|
13437
|
+
residential: "residential";
|
|
13438
|
+
}>>>;
|
|
13439
|
+
general_wage_determination: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13440
|
+
regional_fields: z.ZodOptional<z.ZodObject<{
|
|
13441
|
+
combined_health_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13442
|
+
combined_savings_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13443
|
+
combined_holiday_pto_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13444
|
+
training_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13445
|
+
other_fringe_rate_cents: z.ZodOptional<z.ZodString>;
|
|
13446
|
+
one_five_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13447
|
+
two_x_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13448
|
+
one_five_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13449
|
+
two_x_fringe_adder_rate_cents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13450
|
+
}, z.core.$strip>>;
|
|
13451
|
+
}, z.core.$strip>;
|
|
13452
|
+
export declare const zUpdateJobWageDeterminationHeaders: z.ZodObject<{
|
|
13453
|
+
'If-Match': z.ZodString;
|
|
13454
|
+
}, z.core.$strip>;
|
|
13455
|
+
export declare const zUpdateJobWageDeterminationPath: z.ZodObject<{
|
|
13456
|
+
job_id: z.ZodString;
|
|
13457
|
+
id: z.ZodString;
|
|
13458
|
+
}, z.core.$strip>;
|
|
13459
|
+
/**
|
|
13460
|
+
* Success
|
|
13461
|
+
*/
|
|
13462
|
+
export declare const zUpdateJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13463
|
+
id: z.ZodString;
|
|
13464
|
+
job_id: z.ZodString;
|
|
13465
|
+
pwa_trade_id: z.ZodString;
|
|
13466
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12488
13467
|
labor_classification: z.ZodString;
|
|
12489
13468
|
hourly_rate_cents: z.ZodString;
|
|
12490
13469
|
fringe_rate_cents: z.ZodString;
|
|
@@ -12505,6 +13484,7 @@ export declare const zGetJobWageDeterminationResponse: z.ZodDiscriminatedUnion<[
|
|
|
12505
13484
|
id: z.ZodString;
|
|
12506
13485
|
job_id: z.ZodString;
|
|
12507
13486
|
pwa_trade_id: z.ZodString;
|
|
13487
|
+
overtime_package_id: z.ZodNullable<z.ZodString>;
|
|
12508
13488
|
labor_classification: z.ZodString;
|
|
12509
13489
|
hourly_rate_cents: z.ZodString;
|
|
12510
13490
|
fringe_rate_cents: z.ZodString;
|
|
@@ -15856,7 +16836,6 @@ export declare const zCreateTimeCardPerDiemBody: z.ZodObject<{
|
|
|
15856
16836
|
date: z.ZodISODate;
|
|
15857
16837
|
approver_user_id: z.ZodString;
|
|
15858
16838
|
per_diem_id: z.ZodString;
|
|
15859
|
-
taxable: z.ZodOptional<z.ZodBoolean>;
|
|
15860
16839
|
}, z.core.$strip>;
|
|
15861
16840
|
export declare const zCreateTimeCardPerDiemPath: z.ZodObject<{
|
|
15862
16841
|
time_card_id: z.ZodString;
|
|
@@ -15899,7 +16878,6 @@ export declare const zUpdateTimeCardPerDiemBody: z.ZodObject<{
|
|
|
15899
16878
|
date: z.ZodISODate;
|
|
15900
16879
|
approver_user_id: z.ZodString;
|
|
15901
16880
|
per_diem_id: z.ZodString;
|
|
15902
|
-
taxable: z.ZodOptional<z.ZodBoolean>;
|
|
15903
16881
|
}, z.core.$strip>;
|
|
15904
16882
|
export declare const zUpdateTimeCardPerDiemPath: z.ZodObject<{
|
|
15905
16883
|
time_card_id: z.ZodString;
|