@wakata-dev/api-client 0.6.0 → 0.7.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/dist/index.d.ts CHANGED
@@ -44,6 +44,109 @@ type ApiErrorDetail = {
44
44
  type ApiErrorResponse = {
45
45
  error: ApiErrorBody;
46
46
  };
47
+ type ApprovalLevelDto = {
48
+ public_id: string;
49
+ level_number: number;
50
+ total_levels: number;
51
+ members: Array<ApprovalLevelMemberDto>;
52
+ };
53
+ type ApprovalLevelMemberDto = {
54
+ public_id: string;
55
+ /**
56
+ * Member kind
57
+ */
58
+ member_type: 'user' | 'group';
59
+ /**
60
+ * User publicId (when member_type=user)
61
+ */
62
+ user_id: {
63
+ [key: string]: unknown;
64
+ } | null;
65
+ /**
66
+ * User full name
67
+ */
68
+ user_name: {
69
+ [key: string]: unknown;
70
+ } | null;
71
+ /**
72
+ * Group publicId (when member_type=group)
73
+ */
74
+ group_id: {
75
+ [key: string]: unknown;
76
+ } | null;
77
+ /**
78
+ * Group name
79
+ */
80
+ group_name: {
81
+ [key: string]: unknown;
82
+ } | null;
83
+ member_order: number;
84
+ };
85
+ type ApprovalSchemeDetailDto = {
86
+ public_id: string;
87
+ /**
88
+ * Site publicId (null = company-wide)
89
+ */
90
+ site_id: {
91
+ [key: string]: unknown;
92
+ } | null;
93
+ /**
94
+ * Site name
95
+ */
96
+ site_name: {
97
+ [key: string]: unknown;
98
+ } | null;
99
+ version: number;
100
+ for_timesheets: boolean;
101
+ for_inspections: boolean;
102
+ for_checklists: boolean;
103
+ for_dockets: boolean;
104
+ for_work_instructions: boolean;
105
+ date_effective: {
106
+ [key: string]: unknown;
107
+ } | null;
108
+ date_terminated: {
109
+ [key: string]: unknown;
110
+ } | null;
111
+ published_at: {
112
+ [key: string]: unknown;
113
+ } | null;
114
+ created_at: string;
115
+ updated_at: string;
116
+ levels: Array<ApprovalLevelDto>;
117
+ };
118
+ type ApprovalSchemeSummaryDto = {
119
+ public_id: string;
120
+ /**
121
+ * Site publicId (null = company-wide)
122
+ */
123
+ site_id: {
124
+ [key: string]: unknown;
125
+ } | null;
126
+ /**
127
+ * Site name
128
+ */
129
+ site_name: {
130
+ [key: string]: unknown;
131
+ } | null;
132
+ version: number;
133
+ for_timesheets: boolean;
134
+ for_inspections: boolean;
135
+ for_checklists: boolean;
136
+ for_dockets: boolean;
137
+ for_work_instructions: boolean;
138
+ date_effective: {
139
+ [key: string]: unknown;
140
+ } | null;
141
+ date_terminated: {
142
+ [key: string]: unknown;
143
+ } | null;
144
+ published_at: {
145
+ [key: string]: unknown;
146
+ } | null;
147
+ created_at: string;
148
+ updated_at: string;
149
+ };
47
150
  type AssetClassListResponseDto = {
48
151
  /**
49
152
  * List of asset classes
@@ -348,6 +451,37 @@ type ConfigTableDto = {
348
451
  created_at: string;
349
452
  updated_at: string;
350
453
  };
454
+ type CostCodeResponseDto = {
455
+ public_id: string;
456
+ /**
457
+ * Customer publicId
458
+ */
459
+ customer_id: string;
460
+ /**
461
+ * Customer name
462
+ */
463
+ customer_name: {
464
+ [key: string]: unknown;
465
+ } | null;
466
+ code: string;
467
+ name: string;
468
+ description: {
469
+ [key: string]: unknown;
470
+ } | null;
471
+ /**
472
+ * Parent cost code publicId, or null for a top-level code
473
+ */
474
+ parent_id: {
475
+ [key: string]: unknown;
476
+ } | null;
477
+ /**
478
+ * Depth in the hierarchy (0 = top level)
479
+ */
480
+ level: number;
481
+ status: string;
482
+ created_at: string;
483
+ updated_at: string;
484
+ };
351
485
  type CreateAssetClassDto = {
352
486
  /**
353
487
  * Asset class name (make)
@@ -388,6 +522,32 @@ type CreateConfigItemDto = {
388
522
  */
389
523
  description?: string;
390
524
  };
525
+ type CreateCostCodeDto = {
526
+ /**
527
+ * Customer publicId (UUID) the cost code belongs to
528
+ */
529
+ customer_id: string;
530
+ /**
531
+ * Cost code
532
+ */
533
+ code: string;
534
+ /**
535
+ * Cost code name
536
+ */
537
+ name: string;
538
+ /**
539
+ * Description
540
+ */
541
+ description?: string;
542
+ /**
543
+ * Parent cost code publicId (UUID) for nesting
544
+ */
545
+ parent_id?: string;
546
+ /**
547
+ * Status
548
+ */
549
+ status?: string;
550
+ };
391
551
  type CreateCustomerDto = {
392
552
  /**
393
553
  * Customer name
@@ -698,6 +858,10 @@ type DeleteAssetPropertyResponseDto = {
698
858
  */
699
859
  id: string;
700
860
  };
861
+ type DeleteCostCodeResponseDto = {
862
+ message: string;
863
+ public_id: string;
864
+ };
701
865
  type DeleteCustomerResponseDto = {
702
866
  message: string;
703
867
  public_id: string;
@@ -1728,6 +1892,13 @@ type JobResponseDto = {
1728
1892
  updated_at: string;
1729
1893
  job_properties: Array<EmbeddedJobPropertyDto>;
1730
1894
  };
1895
+ type ListApprovalSchemesResponseDto = {
1896
+ data: Array<ApprovalSchemeSummaryDto>;
1897
+ page: number;
1898
+ per_page: number;
1899
+ total: number;
1900
+ total_pages: number;
1901
+ };
1731
1902
  type ListChecklistsResponseDto = {
1732
1903
  /**
1733
1904
  * List of checklists
@@ -1770,6 +1941,13 @@ type ListConfigTablesResponseDto = {
1770
1941
  total: number;
1771
1942
  total_pages: number;
1772
1943
  };
1944
+ type ListCostCodesResponseDto = {
1945
+ data: Array<CostCodeResponseDto>;
1946
+ page: number;
1947
+ per_page: number;
1948
+ total: number;
1949
+ total_pages: number;
1950
+ };
1773
1951
  type ListCustomersResponseDto = {
1774
1952
  data: Array<CustomerResponseDto>;
1775
1953
  page: number;
@@ -1863,6 +2041,13 @@ type ListJobsResponseDto = {
1863
2041
  total: number;
1864
2042
  total_pages: number;
1865
2043
  };
2044
+ type ListPermitTypesResponseDto = {
2045
+ data: Array<PermitTypeResponseDto>;
2046
+ page: number;
2047
+ per_page: number;
2048
+ total: number;
2049
+ total_pages: number;
2050
+ };
1866
2051
  type ListProjectAssetsResponseDto = {
1867
2052
  data: Array<ProjectAssetDto>;
1868
2053
  page: number;
@@ -1906,6 +2091,13 @@ type ListSitesResponseDto = {
1906
2091
  */
1907
2092
  total_pages: number;
1908
2093
  };
2094
+ type ListTimeLinesResponseDto = {
2095
+ data: Array<TimeLineResponseDto>;
2096
+ page: number;
2097
+ per_page: number;
2098
+ total: number;
2099
+ total_pages: number;
2100
+ };
1909
2101
  type ListTimesheetsResponseDto = {
1910
2102
  data: Array<TimesheetSummaryDto>;
1911
2103
  page: number;
@@ -1920,6 +2112,28 @@ type ListZonesResponseDto = {
1920
2112
  total: number;
1921
2113
  total_pages: number;
1922
2114
  };
2115
+ type PermitTypeResponseDto = {
2116
+ public_id: string;
2117
+ code: string;
2118
+ name: string;
2119
+ description: {
2120
+ [key: string]: unknown;
2121
+ } | null;
2122
+ /**
2123
+ * Regulatory reference
2124
+ */
2125
+ regulatory_ref: {
2126
+ [key: string]: unknown;
2127
+ } | null;
2128
+ /**
2129
+ * True for Wakata system-default permit types (shared, read-only)
2130
+ */
2131
+ is_system_default: boolean;
2132
+ is_enabled: boolean;
2133
+ sort_order: number;
2134
+ created_at: string;
2135
+ updated_at: string;
2136
+ };
1923
2137
  type ProjectAssetDto = {
1924
2138
  /**
1925
2139
  * Assignment (approval) row publicId
@@ -2126,6 +2340,48 @@ type SiteResponseDto = {
2126
2340
  [key: string]: unknown;
2127
2341
  };
2128
2342
  };
2343
+ type TimeLineResponseDto = {
2344
+ public_id: string;
2345
+ name: string;
2346
+ /**
2347
+ * Site publicId (null = company-wide)
2348
+ */
2349
+ site_id: {
2350
+ [key: string]: unknown;
2351
+ } | null;
2352
+ /**
2353
+ * Site name
2354
+ */
2355
+ site_name: {
2356
+ [key: string]: unknown;
2357
+ } | null;
2358
+ /**
2359
+ * Activity category config-item id
2360
+ */
2361
+ category_id: {
2362
+ [key: string]: unknown;
2363
+ } | null;
2364
+ /**
2365
+ * Activity category name
2366
+ */
2367
+ category: {
2368
+ [key: string]: unknown;
2369
+ } | null;
2370
+ chargeable: boolean;
2371
+ version: number;
2372
+ status: string;
2373
+ date_effective: {
2374
+ [key: string]: unknown;
2375
+ } | null;
2376
+ date_terminated: {
2377
+ [key: string]: unknown;
2378
+ } | null;
2379
+ published_at: {
2380
+ [key: string]: unknown;
2381
+ } | null;
2382
+ created_at: string;
2383
+ updated_at: string;
2384
+ };
2129
2385
  type TimesheetDetailDto = {
2130
2386
  public_id: string;
2131
2387
  /**
@@ -2349,6 +2605,32 @@ type UpdateConfigItemDto = {
2349
2605
  [key: string]: unknown;
2350
2606
  } | null;
2351
2607
  };
2608
+ type UpdateCostCodeDto = {
2609
+ /**
2610
+ * Cost code
2611
+ */
2612
+ code?: string;
2613
+ /**
2614
+ * Cost code name
2615
+ */
2616
+ name?: string;
2617
+ /**
2618
+ * Description
2619
+ */
2620
+ description?: {
2621
+ [key: string]: unknown;
2622
+ } | null;
2623
+ /**
2624
+ * Parent cost code publicId (UUID), or null to make it top-level
2625
+ */
2626
+ parent_id?: {
2627
+ [key: string]: unknown;
2628
+ } | null;
2629
+ /**
2630
+ * Status
2631
+ */
2632
+ status?: string;
2633
+ };
2352
2634
  type UpdateCustomerDto = {
2353
2635
  /**
2354
2636
  * Customer name
@@ -7832,7 +8114,7 @@ type JobControllerCreateResponses = {
7832
8114
  201: JobResponseDto;
7833
8115
  };
7834
8116
  type JobControllerCreateResponse = JobControllerCreateResponses[keyof JobControllerCreateResponses];
7835
- type CustomerControllerListData = {
8117
+ type CostCodeControllerListData = {
7836
8118
  body?: never;
7837
8119
  path?: never;
7838
8120
  query?: {
@@ -7846,29 +8128,37 @@ type CustomerControllerListData = {
7846
8128
  page?: number;
7847
8129
  direction?: 'asc' | 'desc';
7848
8130
  /**
7849
- * Sort field: name, status, created_at, updated_at, id (default updated_at)
8131
+ * Sort field: code, name, status, created_at, updated_at, id (default updated_at)
7850
8132
  */
7851
8133
  sort?: string;
8134
+ /**
8135
+ * Filter to one customer by its publicId (UUID)
8136
+ */
8137
+ customer_id?: string;
8138
+ /**
8139
+ * Filter by code (case-insensitive partial)
8140
+ */
8141
+ code?: string;
7852
8142
  /**
7853
8143
  * Filter by name (case-insensitive partial)
7854
8144
  */
7855
8145
  name?: string;
7856
8146
  /**
7857
- * Filter by status (e.g. active, inactive)
8147
+ * Filter by status (e.g. active)
7858
8148
  */
7859
8149
  status?: string;
7860
8150
  /**
7861
8151
  * Filter: updated_at >= (ISO) — incremental sync watermark
7862
8152
  */
7863
- customer_date_updated_from?: string;
8153
+ cost_code_date_updated_from?: string;
7864
8154
  /**
7865
8155
  * Filter: updated_at <= (ISO)
7866
8156
  */
7867
- customer_date_updated_to?: string;
8157
+ cost_code_date_updated_to?: string;
7868
8158
  };
7869
- url: '/customer/list';
8159
+ url: '/cost-code/list';
7870
8160
  };
7871
- type CustomerControllerListErrors = {
8161
+ type CostCodeControllerListErrors = {
7872
8162
  /**
7873
8163
  * Validation failed or the request was malformed. The response body will use `code: validation_error` (with `details[]` populated when the failure can be pinpointed to specific fields) or the more generic `code: bad_request`.
7874
8164
  */
@@ -7890,23 +8180,23 @@ type CustomerControllerListErrors = {
7890
8180
  */
7891
8181
  500: ApiErrorResponse;
7892
8182
  };
7893
- type CustomerControllerListError = CustomerControllerListErrors[keyof CustomerControllerListErrors];
7894
- type CustomerControllerListResponses = {
7895
- 200: ListCustomersResponseDto;
8183
+ type CostCodeControllerListError = CostCodeControllerListErrors[keyof CostCodeControllerListErrors];
8184
+ type CostCodeControllerListResponses = {
8185
+ 200: ListCostCodesResponseDto;
7896
8186
  };
7897
- type CustomerControllerListResponse = CustomerControllerListResponses[keyof CustomerControllerListResponses];
7898
- type CustomerControllerDeleteData = {
8187
+ type CostCodeControllerListResponse = CostCodeControllerListResponses[keyof CostCodeControllerListResponses];
8188
+ type CostCodeControllerDeleteData = {
7899
8189
  body?: never;
7900
8190
  path: {
7901
8191
  /**
7902
- * Customer public ID
8192
+ * Cost code public ID
7903
8193
  */
7904
8194
  id: string;
7905
8195
  };
7906
8196
  query?: never;
7907
- url: '/customer/{id}';
8197
+ url: '/cost-code/{id}';
7908
8198
  };
7909
- type CustomerControllerDeleteErrors = {
8199
+ type CostCodeControllerDeleteErrors = {
7910
8200
  /**
7911
8201
  * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
7912
8202
  */
@@ -7928,23 +8218,23 @@ type CustomerControllerDeleteErrors = {
7928
8218
  */
7929
8219
  500: ApiErrorResponse;
7930
8220
  };
7931
- type CustomerControllerDeleteError = CustomerControllerDeleteErrors[keyof CustomerControllerDeleteErrors];
7932
- type CustomerControllerDeleteResponses = {
7933
- 200: DeleteCustomerResponseDto;
8221
+ type CostCodeControllerDeleteError = CostCodeControllerDeleteErrors[keyof CostCodeControllerDeleteErrors];
8222
+ type CostCodeControllerDeleteResponses = {
8223
+ 200: DeleteCostCodeResponseDto;
7934
8224
  };
7935
- type CustomerControllerDeleteResponse = CustomerControllerDeleteResponses[keyof CustomerControllerDeleteResponses];
7936
- type CustomerControllerGetData = {
8225
+ type CostCodeControllerDeleteResponse = CostCodeControllerDeleteResponses[keyof CostCodeControllerDeleteResponses];
8226
+ type CostCodeControllerGetData = {
7937
8227
  body?: never;
7938
8228
  path: {
7939
8229
  /**
7940
- * Customer public ID
8230
+ * Cost code public ID
7941
8231
  */
7942
8232
  id: string;
7943
8233
  };
7944
8234
  query?: never;
7945
- url: '/customer/{id}';
8235
+ url: '/cost-code/{id}';
7946
8236
  };
7947
- type CustomerControllerGetErrors = {
8237
+ type CostCodeControllerGetErrors = {
7948
8238
  /**
7949
8239
  * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
7950
8240
  */
@@ -7966,13 +8256,13 @@ type CustomerControllerGetErrors = {
7966
8256
  */
7967
8257
  500: ApiErrorResponse;
7968
8258
  };
7969
- type CustomerControllerGetError = CustomerControllerGetErrors[keyof CustomerControllerGetErrors];
7970
- type CustomerControllerGetResponses = {
7971
- 200: CustomerResponseDto;
8259
+ type CostCodeControllerGetError = CostCodeControllerGetErrors[keyof CostCodeControllerGetErrors];
8260
+ type CostCodeControllerGetResponses = {
8261
+ 200: CostCodeResponseDto;
7972
8262
  };
7973
- type CustomerControllerGetResponse = CustomerControllerGetResponses[keyof CustomerControllerGetResponses];
7974
- type CustomerControllerUpdateData = {
7975
- body: UpdateCustomerDto;
8263
+ type CostCodeControllerGetResponse = CostCodeControllerGetResponses[keyof CostCodeControllerGetResponses];
8264
+ type CostCodeControllerUpdateData = {
8265
+ body: UpdateCostCodeDto;
7976
8266
  headers?: {
7977
8267
  /**
7978
8268
  * Opaque client-generated key (any string up to 255 chars, ULID or UUID recommended) that makes this POST/PATCH safe to retry. The server stores the first successful response under this key for 24 hours; retries with the same key replay the stored response and set `Idempotent-Replayed: true`. Reusing the key with a different body returns `409 idempotency_key_conflict`. Omit on read-only GETs — they are already idempotent.
@@ -7981,14 +8271,14 @@ type CustomerControllerUpdateData = {
7981
8271
  };
7982
8272
  path: {
7983
8273
  /**
7984
- * Customer public ID
8274
+ * Cost code public ID
7985
8275
  */
7986
8276
  id: string;
7987
8277
  };
7988
8278
  query?: never;
7989
- url: '/customer/{id}';
8279
+ url: '/cost-code/{id}';
7990
8280
  };
7991
- type CustomerControllerUpdateErrors = {
8281
+ type CostCodeControllerUpdateErrors = {
7992
8282
  /**
7993
8283
  * Validation failed or the request was malformed. The response body will use `code: validation_error` (with `details[]` populated when the failure can be pinpointed to specific fields) or the more generic `code: bad_request`.
7994
8284
  */
@@ -8018,11 +8308,528 @@ type CustomerControllerUpdateErrors = {
8018
8308
  */
8019
8309
  500: ApiErrorResponse;
8020
8310
  };
8021
- type CustomerControllerUpdateError = CustomerControllerUpdateErrors[keyof CustomerControllerUpdateErrors];
8022
- type CustomerControllerUpdateResponses = {
8023
- 200: CustomerResponseDto;
8311
+ type CostCodeControllerUpdateError = CostCodeControllerUpdateErrors[keyof CostCodeControllerUpdateErrors];
8312
+ type CostCodeControllerUpdateResponses = {
8313
+ 200: CostCodeResponseDto;
8024
8314
  };
8025
- type CustomerControllerUpdateResponse = CustomerControllerUpdateResponses[keyof CustomerControllerUpdateResponses];
8315
+ type CostCodeControllerUpdateResponse = CostCodeControllerUpdateResponses[keyof CostCodeControllerUpdateResponses];
8316
+ type CostCodeControllerCreateData = {
8317
+ body: CreateCostCodeDto;
8318
+ headers?: {
8319
+ /**
8320
+ * Opaque client-generated key (any string up to 255 chars, ULID or UUID recommended) that makes this POST/PATCH safe to retry. The server stores the first successful response under this key for 24 hours; retries with the same key replay the stored response and set `Idempotent-Replayed: true`. Reusing the key with a different body returns `409 idempotency_key_conflict`. Omit on read-only GETs — they are already idempotent.
8321
+ */
8322
+ 'Idempotency-Key'?: string;
8323
+ };
8324
+ path?: never;
8325
+ query?: never;
8326
+ url: '/cost-code';
8327
+ };
8328
+ type CostCodeControllerCreateErrors = {
8329
+ /**
8330
+ * Validation failed or the request was malformed. The response body will use `code: validation_error` (with `details[]` populated when the failure can be pinpointed to specific fields) or the more generic `code: bad_request`.
8331
+ */
8332
+ 400: ApiErrorResponse;
8333
+ /**
8334
+ * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
8335
+ */
8336
+ 401: ApiErrorResponse;
8337
+ /**
8338
+ * The Bearer token authenticated successfully but cannot perform this action. Two distinct codes share this status: `forbidden` (missing permission scope) and `ip_not_allowed` (source IP not in the API key's allowlist).
8339
+ */
8340
+ 403: ApiErrorResponse;
8341
+ /**
8342
+ * No resource was found at the requested location, or a referenced resource (`publicId` in the body) doesn't exist or is not visible to the calling company.
8343
+ */
8344
+ 404: ApiErrorResponse;
8345
+ /**
8346
+ * The request conflicts with current state. Common cases: a unique business identifier already exists (`conflict`), or an `Idempotency-Key` was reused with a different request body (`idempotency_key_conflict`).
8347
+ */
8348
+ 409: ApiErrorResponse;
8349
+ /**
8350
+ * Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
8351
+ */
8352
+ 429: ApiErrorResponse;
8353
+ /**
8354
+ * Something went wrong on our side. The `request_id` field in the response body matches the entry in our logs — include it when reporting the issue.
8355
+ */
8356
+ 500: ApiErrorResponse;
8357
+ };
8358
+ type CostCodeControllerCreateError = CostCodeControllerCreateErrors[keyof CostCodeControllerCreateErrors];
8359
+ type CostCodeControllerCreateResponses = {
8360
+ 201: CostCodeResponseDto;
8361
+ };
8362
+ type CostCodeControllerCreateResponse = CostCodeControllerCreateResponses[keyof CostCodeControllerCreateResponses];
8363
+ type PermitTypeControllerListData = {
8364
+ body?: never;
8365
+ path?: never;
8366
+ query?: {
8367
+ /**
8368
+ * Results per page
8369
+ */
8370
+ per_page?: number;
8371
+ /**
8372
+ * Page number
8373
+ */
8374
+ page?: number;
8375
+ direction?: 'asc' | 'desc';
8376
+ /**
8377
+ * Sort field: sort_order, code, name, created_at, updated_at, id (default sort_order)
8378
+ */
8379
+ sort?: string;
8380
+ /**
8381
+ * Filter by name (case-insensitive partial)
8382
+ */
8383
+ name?: string;
8384
+ /**
8385
+ * Filter by code (case-insensitive partial)
8386
+ */
8387
+ code?: string;
8388
+ /**
8389
+ * Filter by enabled state (true/false)
8390
+ */
8391
+ is_enabled?: string;
8392
+ };
8393
+ url: '/permit-type/list';
8394
+ };
8395
+ type PermitTypeControllerListErrors = {
8396
+ /**
8397
+ * Validation failed or the request was malformed. The response body will use `code: validation_error` (with `details[]` populated when the failure can be pinpointed to specific fields) or the more generic `code: bad_request`.
8398
+ */
8399
+ 400: ApiErrorResponse;
8400
+ /**
8401
+ * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
8402
+ */
8403
+ 401: ApiErrorResponse;
8404
+ /**
8405
+ * The Bearer token authenticated successfully but cannot perform this action. Two distinct codes share this status: `forbidden` (missing permission scope) and `ip_not_allowed` (source IP not in the API key's allowlist).
8406
+ */
8407
+ 403: ApiErrorResponse;
8408
+ /**
8409
+ * Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
8410
+ */
8411
+ 429: ApiErrorResponse;
8412
+ /**
8413
+ * Something went wrong on our side. The `request_id` field in the response body matches the entry in our logs — include it when reporting the issue.
8414
+ */
8415
+ 500: ApiErrorResponse;
8416
+ };
8417
+ type PermitTypeControllerListError = PermitTypeControllerListErrors[keyof PermitTypeControllerListErrors];
8418
+ type PermitTypeControllerListResponses = {
8419
+ 200: ListPermitTypesResponseDto;
8420
+ };
8421
+ type PermitTypeControllerListResponse = PermitTypeControllerListResponses[keyof PermitTypeControllerListResponses];
8422
+ type PermitTypeControllerGetData = {
8423
+ body?: never;
8424
+ path: {
8425
+ /**
8426
+ * Permit type public ID
8427
+ */
8428
+ id: string;
8429
+ };
8430
+ query?: never;
8431
+ url: '/permit-type/{id}';
8432
+ };
8433
+ type PermitTypeControllerGetErrors = {
8434
+ /**
8435
+ * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
8436
+ */
8437
+ 401: ApiErrorResponse;
8438
+ /**
8439
+ * The Bearer token authenticated successfully but cannot perform this action. Two distinct codes share this status: `forbidden` (missing permission scope) and `ip_not_allowed` (source IP not in the API key's allowlist).
8440
+ */
8441
+ 403: ApiErrorResponse;
8442
+ /**
8443
+ * No resource was found at the requested location, or a referenced resource (`publicId` in the body) doesn't exist or is not visible to the calling company.
8444
+ */
8445
+ 404: ApiErrorResponse;
8446
+ /**
8447
+ * Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
8448
+ */
8449
+ 429: ApiErrorResponse;
8450
+ /**
8451
+ * Something went wrong on our side. The `request_id` field in the response body matches the entry in our logs — include it when reporting the issue.
8452
+ */
8453
+ 500: ApiErrorResponse;
8454
+ };
8455
+ type PermitTypeControllerGetError = PermitTypeControllerGetErrors[keyof PermitTypeControllerGetErrors];
8456
+ type PermitTypeControllerGetResponses = {
8457
+ 200: PermitTypeResponseDto;
8458
+ };
8459
+ type PermitTypeControllerGetResponse = PermitTypeControllerGetResponses[keyof PermitTypeControllerGetResponses];
8460
+ type TimeLineControllerListData = {
8461
+ body?: never;
8462
+ path?: never;
8463
+ query?: {
8464
+ /**
8465
+ * Results per page
8466
+ */
8467
+ per_page?: number;
8468
+ /**
8469
+ * Page number
8470
+ */
8471
+ page?: number;
8472
+ direction?: 'asc' | 'desc';
8473
+ /**
8474
+ * Sort field: name, version, published_at, created_at, updated_at, id (default name)
8475
+ */
8476
+ sort?: string;
8477
+ /**
8478
+ * Filter by name (case-insensitive partial)
8479
+ */
8480
+ name?: string;
8481
+ /**
8482
+ * Filter to one site by its publicId (UUID)
8483
+ */
8484
+ site_id?: string;
8485
+ };
8486
+ url: '/time-line/list';
8487
+ };
8488
+ type TimeLineControllerListErrors = {
8489
+ /**
8490
+ * Validation failed or the request was malformed. The response body will use `code: validation_error` (with `details[]` populated when the failure can be pinpointed to specific fields) or the more generic `code: bad_request`.
8491
+ */
8492
+ 400: ApiErrorResponse;
8493
+ /**
8494
+ * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
8495
+ */
8496
+ 401: ApiErrorResponse;
8497
+ /**
8498
+ * The Bearer token authenticated successfully but cannot perform this action. Two distinct codes share this status: `forbidden` (missing permission scope) and `ip_not_allowed` (source IP not in the API key's allowlist).
8499
+ */
8500
+ 403: ApiErrorResponse;
8501
+ /**
8502
+ * Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
8503
+ */
8504
+ 429: ApiErrorResponse;
8505
+ /**
8506
+ * Something went wrong on our side. The `request_id` field in the response body matches the entry in our logs — include it when reporting the issue.
8507
+ */
8508
+ 500: ApiErrorResponse;
8509
+ };
8510
+ type TimeLineControllerListError = TimeLineControllerListErrors[keyof TimeLineControllerListErrors];
8511
+ type TimeLineControllerListResponses = {
8512
+ 200: ListTimeLinesResponseDto;
8513
+ };
8514
+ type TimeLineControllerListResponse = TimeLineControllerListResponses[keyof TimeLineControllerListResponses];
8515
+ type TimeLineControllerGetData = {
8516
+ body?: never;
8517
+ path: {
8518
+ /**
8519
+ * Time line public ID
8520
+ */
8521
+ id: string;
8522
+ };
8523
+ query?: never;
8524
+ url: '/time-line/{id}';
8525
+ };
8526
+ type TimeLineControllerGetErrors = {
8527
+ /**
8528
+ * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
8529
+ */
8530
+ 401: ApiErrorResponse;
8531
+ /**
8532
+ * The Bearer token authenticated successfully but cannot perform this action. Two distinct codes share this status: `forbidden` (missing permission scope) and `ip_not_allowed` (source IP not in the API key's allowlist).
8533
+ */
8534
+ 403: ApiErrorResponse;
8535
+ /**
8536
+ * No resource was found at the requested location, or a referenced resource (`publicId` in the body) doesn't exist or is not visible to the calling company.
8537
+ */
8538
+ 404: ApiErrorResponse;
8539
+ /**
8540
+ * Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
8541
+ */
8542
+ 429: ApiErrorResponse;
8543
+ /**
8544
+ * Something went wrong on our side. The `request_id` field in the response body matches the entry in our logs — include it when reporting the issue.
8545
+ */
8546
+ 500: ApiErrorResponse;
8547
+ };
8548
+ type TimeLineControllerGetError = TimeLineControllerGetErrors[keyof TimeLineControllerGetErrors];
8549
+ type TimeLineControllerGetResponses = {
8550
+ 200: TimeLineResponseDto;
8551
+ };
8552
+ type TimeLineControllerGetResponse = TimeLineControllerGetResponses[keyof TimeLineControllerGetResponses];
8553
+ type ApprovalSchemeControllerListData = {
8554
+ body?: never;
8555
+ path?: never;
8556
+ query?: {
8557
+ /**
8558
+ * Results per page
8559
+ */
8560
+ per_page?: number;
8561
+ /**
8562
+ * Page number
8563
+ */
8564
+ page?: number;
8565
+ direction?: 'asc' | 'desc';
8566
+ /**
8567
+ * Sort field: version, published_at, created_at, updated_at, id (default updated_at)
8568
+ */
8569
+ sort?: string;
8570
+ /**
8571
+ * Filter to one site by its publicId (UUID)
8572
+ */
8573
+ site_id?: string;
8574
+ };
8575
+ url: '/approval-scheme/list';
8576
+ };
8577
+ type ApprovalSchemeControllerListErrors = {
8578
+ /**
8579
+ * Validation failed or the request was malformed. The response body will use `code: validation_error` (with `details[]` populated when the failure can be pinpointed to specific fields) or the more generic `code: bad_request`.
8580
+ */
8581
+ 400: ApiErrorResponse;
8582
+ /**
8583
+ * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
8584
+ */
8585
+ 401: ApiErrorResponse;
8586
+ /**
8587
+ * The Bearer token authenticated successfully but cannot perform this action. Two distinct codes share this status: `forbidden` (missing permission scope) and `ip_not_allowed` (source IP not in the API key's allowlist).
8588
+ */
8589
+ 403: ApiErrorResponse;
8590
+ /**
8591
+ * Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
8592
+ */
8593
+ 429: ApiErrorResponse;
8594
+ /**
8595
+ * Something went wrong on our side. The `request_id` field in the response body matches the entry in our logs — include it when reporting the issue.
8596
+ */
8597
+ 500: ApiErrorResponse;
8598
+ };
8599
+ type ApprovalSchemeControllerListError = ApprovalSchemeControllerListErrors[keyof ApprovalSchemeControllerListErrors];
8600
+ type ApprovalSchemeControllerListResponses = {
8601
+ 200: ListApprovalSchemesResponseDto;
8602
+ };
8603
+ type ApprovalSchemeControllerListResponse = ApprovalSchemeControllerListResponses[keyof ApprovalSchemeControllerListResponses];
8604
+ type ApprovalSchemeControllerGetData = {
8605
+ body?: never;
8606
+ path: {
8607
+ /**
8608
+ * Approval scheme public ID
8609
+ */
8610
+ id: string;
8611
+ };
8612
+ query?: never;
8613
+ url: '/approval-scheme/{id}';
8614
+ };
8615
+ type ApprovalSchemeControllerGetErrors = {
8616
+ /**
8617
+ * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
8618
+ */
8619
+ 401: ApiErrorResponse;
8620
+ /**
8621
+ * The Bearer token authenticated successfully but cannot perform this action. Two distinct codes share this status: `forbidden` (missing permission scope) and `ip_not_allowed` (source IP not in the API key's allowlist).
8622
+ */
8623
+ 403: ApiErrorResponse;
8624
+ /**
8625
+ * No resource was found at the requested location, or a referenced resource (`publicId` in the body) doesn't exist or is not visible to the calling company.
8626
+ */
8627
+ 404: ApiErrorResponse;
8628
+ /**
8629
+ * Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
8630
+ */
8631
+ 429: ApiErrorResponse;
8632
+ /**
8633
+ * Something went wrong on our side. The `request_id` field in the response body matches the entry in our logs — include it when reporting the issue.
8634
+ */
8635
+ 500: ApiErrorResponse;
8636
+ };
8637
+ type ApprovalSchemeControllerGetError = ApprovalSchemeControllerGetErrors[keyof ApprovalSchemeControllerGetErrors];
8638
+ type ApprovalSchemeControllerGetResponses = {
8639
+ 200: ApprovalSchemeDetailDto;
8640
+ };
8641
+ type ApprovalSchemeControllerGetResponse = ApprovalSchemeControllerGetResponses[keyof ApprovalSchemeControllerGetResponses];
8642
+ type CustomerControllerListData = {
8643
+ body?: never;
8644
+ path?: never;
8645
+ query?: {
8646
+ /**
8647
+ * Results per page
8648
+ */
8649
+ per_page?: number;
8650
+ /**
8651
+ * Page number
8652
+ */
8653
+ page?: number;
8654
+ direction?: 'asc' | 'desc';
8655
+ /**
8656
+ * Sort field: name, status, created_at, updated_at, id (default updated_at)
8657
+ */
8658
+ sort?: string;
8659
+ /**
8660
+ * Filter by name (case-insensitive partial)
8661
+ */
8662
+ name?: string;
8663
+ /**
8664
+ * Filter by status (e.g. active, inactive)
8665
+ */
8666
+ status?: string;
8667
+ /**
8668
+ * Filter: updated_at >= (ISO) — incremental sync watermark
8669
+ */
8670
+ customer_date_updated_from?: string;
8671
+ /**
8672
+ * Filter: updated_at <= (ISO)
8673
+ */
8674
+ customer_date_updated_to?: string;
8675
+ };
8676
+ url: '/customer/list';
8677
+ };
8678
+ type CustomerControllerListErrors = {
8679
+ /**
8680
+ * Validation failed or the request was malformed. The response body will use `code: validation_error` (with `details[]` populated when the failure can be pinpointed to specific fields) or the more generic `code: bad_request`.
8681
+ */
8682
+ 400: ApiErrorResponse;
8683
+ /**
8684
+ * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
8685
+ */
8686
+ 401: ApiErrorResponse;
8687
+ /**
8688
+ * The Bearer token authenticated successfully but cannot perform this action. Two distinct codes share this status: `forbidden` (missing permission scope) and `ip_not_allowed` (source IP not in the API key's allowlist).
8689
+ */
8690
+ 403: ApiErrorResponse;
8691
+ /**
8692
+ * Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
8693
+ */
8694
+ 429: ApiErrorResponse;
8695
+ /**
8696
+ * Something went wrong on our side. The `request_id` field in the response body matches the entry in our logs — include it when reporting the issue.
8697
+ */
8698
+ 500: ApiErrorResponse;
8699
+ };
8700
+ type CustomerControllerListError = CustomerControllerListErrors[keyof CustomerControllerListErrors];
8701
+ type CustomerControllerListResponses = {
8702
+ 200: ListCustomersResponseDto;
8703
+ };
8704
+ type CustomerControllerListResponse = CustomerControllerListResponses[keyof CustomerControllerListResponses];
8705
+ type CustomerControllerDeleteData = {
8706
+ body?: never;
8707
+ path: {
8708
+ /**
8709
+ * Customer public ID
8710
+ */
8711
+ id: string;
8712
+ };
8713
+ query?: never;
8714
+ url: '/customer/{id}';
8715
+ };
8716
+ type CustomerControllerDeleteErrors = {
8717
+ /**
8718
+ * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
8719
+ */
8720
+ 401: ApiErrorResponse;
8721
+ /**
8722
+ * The Bearer token authenticated successfully but cannot perform this action. Two distinct codes share this status: `forbidden` (missing permission scope) and `ip_not_allowed` (source IP not in the API key's allowlist).
8723
+ */
8724
+ 403: ApiErrorResponse;
8725
+ /**
8726
+ * No resource was found at the requested location, or a referenced resource (`publicId` in the body) doesn't exist or is not visible to the calling company.
8727
+ */
8728
+ 404: ApiErrorResponse;
8729
+ /**
8730
+ * Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
8731
+ */
8732
+ 429: ApiErrorResponse;
8733
+ /**
8734
+ * Something went wrong on our side. The `request_id` field in the response body matches the entry in our logs — include it when reporting the issue.
8735
+ */
8736
+ 500: ApiErrorResponse;
8737
+ };
8738
+ type CustomerControllerDeleteError = CustomerControllerDeleteErrors[keyof CustomerControllerDeleteErrors];
8739
+ type CustomerControllerDeleteResponses = {
8740
+ 200: DeleteCustomerResponseDto;
8741
+ };
8742
+ type CustomerControllerDeleteResponse = CustomerControllerDeleteResponses[keyof CustomerControllerDeleteResponses];
8743
+ type CustomerControllerGetData = {
8744
+ body?: never;
8745
+ path: {
8746
+ /**
8747
+ * Customer public ID
8748
+ */
8749
+ id: string;
8750
+ };
8751
+ query?: never;
8752
+ url: '/customer/{id}';
8753
+ };
8754
+ type CustomerControllerGetErrors = {
8755
+ /**
8756
+ * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
8757
+ */
8758
+ 401: ApiErrorResponse;
8759
+ /**
8760
+ * The Bearer token authenticated successfully but cannot perform this action. Two distinct codes share this status: `forbidden` (missing permission scope) and `ip_not_allowed` (source IP not in the API key's allowlist).
8761
+ */
8762
+ 403: ApiErrorResponse;
8763
+ /**
8764
+ * No resource was found at the requested location, or a referenced resource (`publicId` in the body) doesn't exist or is not visible to the calling company.
8765
+ */
8766
+ 404: ApiErrorResponse;
8767
+ /**
8768
+ * Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
8769
+ */
8770
+ 429: ApiErrorResponse;
8771
+ /**
8772
+ * Something went wrong on our side. The `request_id` field in the response body matches the entry in our logs — include it when reporting the issue.
8773
+ */
8774
+ 500: ApiErrorResponse;
8775
+ };
8776
+ type CustomerControllerGetError = CustomerControllerGetErrors[keyof CustomerControllerGetErrors];
8777
+ type CustomerControllerGetResponses = {
8778
+ 200: CustomerResponseDto;
8779
+ };
8780
+ type CustomerControllerGetResponse = CustomerControllerGetResponses[keyof CustomerControllerGetResponses];
8781
+ type CustomerControllerUpdateData = {
8782
+ body: UpdateCustomerDto;
8783
+ headers?: {
8784
+ /**
8785
+ * Opaque client-generated key (any string up to 255 chars, ULID or UUID recommended) that makes this POST/PATCH safe to retry. The server stores the first successful response under this key for 24 hours; retries with the same key replay the stored response and set `Idempotent-Replayed: true`. Reusing the key with a different body returns `409 idempotency_key_conflict`. Omit on read-only GETs — they are already idempotent.
8786
+ */
8787
+ 'Idempotency-Key'?: string;
8788
+ };
8789
+ path: {
8790
+ /**
8791
+ * Customer public ID
8792
+ */
8793
+ id: string;
8794
+ };
8795
+ query?: never;
8796
+ url: '/customer/{id}';
8797
+ };
8798
+ type CustomerControllerUpdateErrors = {
8799
+ /**
8800
+ * Validation failed or the request was malformed. The response body will use `code: validation_error` (with `details[]` populated when the failure can be pinpointed to specific fields) or the more generic `code: bad_request`.
8801
+ */
8802
+ 400: ApiErrorResponse;
8803
+ /**
8804
+ * The Bearer token is missing, malformed, or no longer valid. Verify the `Authorization` header is set to `Bearer wk_…` and that the key has not been revoked or rotated out.
8805
+ */
8806
+ 401: ApiErrorResponse;
8807
+ /**
8808
+ * The Bearer token authenticated successfully but cannot perform this action. Two distinct codes share this status: `forbidden` (missing permission scope) and `ip_not_allowed` (source IP not in the API key's allowlist).
8809
+ */
8810
+ 403: ApiErrorResponse;
8811
+ /**
8812
+ * No resource was found at the requested location, or a referenced resource (`publicId` in the body) doesn't exist or is not visible to the calling company.
8813
+ */
8814
+ 404: ApiErrorResponse;
8815
+ /**
8816
+ * The request conflicts with current state. Common cases: a unique business identifier already exists (`conflict`), or an `Idempotency-Key` was reused with a different request body (`idempotency_key_conflict`).
8817
+ */
8818
+ 409: ApiErrorResponse;
8819
+ /**
8820
+ * Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
8821
+ */
8822
+ 429: ApiErrorResponse;
8823
+ /**
8824
+ * Something went wrong on our side. The `request_id` field in the response body matches the entry in our logs — include it when reporting the issue.
8825
+ */
8826
+ 500: ApiErrorResponse;
8827
+ };
8828
+ type CustomerControllerUpdateError = CustomerControllerUpdateErrors[keyof CustomerControllerUpdateErrors];
8829
+ type CustomerControllerUpdateResponses = {
8830
+ 200: CustomerResponseDto;
8831
+ };
8832
+ type CustomerControllerUpdateResponse = CustomerControllerUpdateResponses[keyof CustomerControllerUpdateResponses];
8026
8833
  type CustomerControllerCreateData = {
8027
8834
  body: CreateCustomerDto;
8028
8835
  headers?: {
@@ -9421,6 +10228,61 @@ declare const jobControllerListRequirements: <ThrowOnError extends boolean = fal
9421
10228
  * Creates a job for a customer (by publicId). The job_number is generated automatically (PREFIX-00001) — do not supply it. Requires job:create. Supports `Idempotency-Key`.
9422
10229
  */
9423
10230
  declare const jobControllerCreate: <ThrowOnError extends boolean = false>(options: Options<JobControllerCreateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<JobResponseDto, ApiErrorResponse, ThrowOnError>;
10231
+ /**
10232
+ * List cost codes
10233
+ * Returns a paginated list of cost codes for the authenticated company. Filter by customer (publicId), code, name, status, and an incremental `updated_at` watermark. Requires cost_code:read.
10234
+ */
10235
+ declare const costCodeControllerList: <ThrowOnError extends boolean = false>(options?: Options<CostCodeControllerListData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListCostCodesResponseDto, ApiErrorResponse, ThrowOnError>;
10236
+ /**
10237
+ * Delete a cost code
10238
+ * Soft-deletes a cost code by its public_id (UUID). Requires cost_code:delete.
10239
+ */
10240
+ declare const costCodeControllerDelete: <ThrowOnError extends boolean = false>(options: Options<CostCodeControllerDeleteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteCostCodeResponseDto, ApiErrorResponse, ThrowOnError>;
10241
+ /**
10242
+ * Get a cost code by public ID
10243
+ * Returns one cost code by its public_id (UUID). Requires cost_code:read.
10244
+ */
10245
+ declare const costCodeControllerGet: <ThrowOnError extends boolean = false>(options: Options<CostCodeControllerGetData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CostCodeResponseDto, ApiErrorResponse, ThrowOnError>;
10246
+ /**
10247
+ * Update a cost code
10248
+ * Updates a cost code by its public_id (UUID). Only provided fields are changed; set parent_id to null to make it top-level. Requires cost_code:update. Supports `Idempotency-Key`.
10249
+ */
10250
+ declare const costCodeControllerUpdate: <ThrowOnError extends boolean = false>(options: Options<CostCodeControllerUpdateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CostCodeResponseDto, ApiErrorResponse, ThrowOnError>;
10251
+ /**
10252
+ * Create a cost code
10253
+ * Creates a cost code for a customer (by publicId). Optionally nest under a parent cost code (by publicId) — level is derived. Requires cost_code:create. Supports `Idempotency-Key`.
10254
+ */
10255
+ declare const costCodeControllerCreate: <ThrowOnError extends boolean = false>(options: Options<CostCodeControllerCreateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CostCodeResponseDto, ApiErrorResponse, ThrowOnError>;
10256
+ /**
10257
+ * List permit types
10258
+ * Returns the permit-type catalog available to the authenticated company — both the company's own types and the shared Wakata system defaults (read-only). Filter by name, code, enabled state. Requires permit:read.
10259
+ */
10260
+ declare const permitTypeControllerList: <ThrowOnError extends boolean = false>(options?: Options<PermitTypeControllerListData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListPermitTypesResponseDto, ApiErrorResponse, ThrowOnError>;
10261
+ /**
10262
+ * Get a permit type by public ID
10263
+ * Returns one permit type (company-owned or system default) by its public_id (UUID). Read-only. Requires permit:read.
10264
+ */
10265
+ declare const permitTypeControllerGet: <ThrowOnError extends boolean = false>(options: Options<PermitTypeControllerGetData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PermitTypeResponseDto, ApiErrorResponse, ThrowOnError>;
10266
+ /**
10267
+ * List time lines (activity catalog)
10268
+ * Returns the published activity catalog for the authenticated company — the latest published version per activity. Filter by name and site (publicId). Read-only (time lines are versioned and edited in the app). Requires time_line:read.
10269
+ */
10270
+ declare const timeLineControllerList: <ThrowOnError extends boolean = false>(options?: Options<TimeLineControllerListData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListTimeLinesResponseDto, ApiErrorResponse, ThrowOnError>;
10271
+ /**
10272
+ * Get a time line by public ID
10273
+ * Returns one time line (any version) by its public_id (UUID). Read-only. Requires time_line:read.
10274
+ */
10275
+ declare const timeLineControllerGet: <ThrowOnError extends boolean = false>(options: Options<TimeLineControllerGetData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TimeLineResponseDto, ApiErrorResponse, ThrowOnError>;
10276
+ /**
10277
+ * List approval schemes
10278
+ * Returns the latest version per approval scheme for the authenticated company (read-only). Each summary shows which workflows it applies to (for_timesheets/for_inspections/…) and its site. Requires approval_scheme:read.
10279
+ */
10280
+ declare const approvalSchemeControllerList: <ThrowOnError extends boolean = false>(options?: Options<ApprovalSchemeControllerListData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListApprovalSchemesResponseDto, ApiErrorResponse, ThrowOnError>;
10281
+ /**
10282
+ * Get an approval scheme by public ID
10283
+ * Returns one approval scheme with its levels[] and each level's members[] (a member is a user or a group) by its public_id (UUID). Read-only. Requires approval_scheme:read.
10284
+ */
10285
+ declare const approvalSchemeControllerGet: <ThrowOnError extends boolean = false>(options: Options<ApprovalSchemeControllerGetData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ApprovalSchemeDetailDto, ApiErrorResponse, ThrowOnError>;
9424
10286
  /**
9425
10287
  * List customers
9426
10288
  * Returns a paginated list of customers for the authenticated company. Supports name/status filters and an incremental `updated_at` watermark. Requires customer:read.
@@ -9674,6 +10536,28 @@ interface JobsResource {
9674
10536
  /** Read asset requirements (needs spec) for a job. */
9675
10537
  requirements: (options: WakataMethodOptions<Parameters<typeof jobControllerListRequirements>[0]>) => Promise<Awaited<ReturnType<typeof jobControllerListRequirements>>['data']>;
9676
10538
  }
10539
+ interface CostCodesResource {
10540
+ list: (options?: WakataMethodOptions<Parameters<typeof costCodeControllerList>[0] extends infer O ? O : never>) => Promise<Awaited<ReturnType<typeof costCodeControllerList>>['data']>;
10541
+ get: (options: WakataMethodOptions<Parameters<typeof costCodeControllerGet>[0]>) => Promise<Awaited<ReturnType<typeof costCodeControllerGet>>['data']>;
10542
+ create: (options: WakataMethodOptions<Parameters<typeof costCodeControllerCreate>[0]>) => Promise<Awaited<ReturnType<typeof costCodeControllerCreate>>['data']>;
10543
+ update: (options: WakataMethodOptions<Parameters<typeof costCodeControllerUpdate>[0]>) => Promise<Awaited<ReturnType<typeof costCodeControllerUpdate>>['data']>;
10544
+ delete: (options: WakataMethodOptions<Parameters<typeof costCodeControllerDelete>[0]>) => Promise<Awaited<ReturnType<typeof costCodeControllerDelete>>['data']>;
10545
+ }
10546
+ /** Permit type catalog — read-only (includes shared system defaults). */
10547
+ interface PermitTypesResource {
10548
+ list: (options?: WakataMethodOptions<Parameters<typeof permitTypeControllerList>[0] extends infer O ? O : never>) => Promise<Awaited<ReturnType<typeof permitTypeControllerList>>['data']>;
10549
+ get: (options: WakataMethodOptions<Parameters<typeof permitTypeControllerGet>[0]>) => Promise<Awaited<ReturnType<typeof permitTypeControllerGet>>['data']>;
10550
+ }
10551
+ /** Time line / activity catalog — read-only. */
10552
+ interface TimeLinesResource {
10553
+ list: (options?: WakataMethodOptions<Parameters<typeof timeLineControllerList>[0] extends infer O ? O : never>) => Promise<Awaited<ReturnType<typeof timeLineControllerList>>['data']>;
10554
+ get: (options: WakataMethodOptions<Parameters<typeof timeLineControllerGet>[0]>) => Promise<Awaited<ReturnType<typeof timeLineControllerGet>>['data']>;
10555
+ }
10556
+ /** Approval schemes (+ levels/members) — read-only. */
10557
+ interface ApprovalSchemesResource {
10558
+ list: (options?: WakataMethodOptions<Parameters<typeof approvalSchemeControllerList>[0] extends infer O ? O : never>) => Promise<Awaited<ReturnType<typeof approvalSchemeControllerList>>['data']>;
10559
+ get: (options: WakataMethodOptions<Parameters<typeof approvalSchemeControllerGet>[0]>) => Promise<Awaited<ReturnType<typeof approvalSchemeControllerGet>>['data']>;
10560
+ }
9677
10561
  /**
9678
10562
  * One entity-document type's CRUD. All document types share the same DTOs, so
9679
10563
  * the shape is typed against the asset-document operations (structurally
@@ -9735,6 +10619,10 @@ declare class WakataClient {
9735
10619
  readonly timesheets: TimesheetsResource;
9736
10620
  readonly projects: ProjectsResource;
9737
10621
  readonly jobs: JobsResource;
10622
+ readonly costCodes: CostCodesResource;
10623
+ readonly permitTypes: PermitTypesResource;
10624
+ readonly timeLines: TimeLinesResource;
10625
+ readonly approvalSchemes: ApprovalSchemesResource;
9738
10626
  constructor(options: WakataClientOptions);
9739
10627
  }
9740
10628
 
@@ -9908,4 +10796,4 @@ declare const PACKAGE_VERSION = "0.3.3";
9908
10796
  /** Default base URL for the Wakata Public API (production). */
9909
10797
  declare const DEFAULT_BASE_URL = "https://api.wakata.ai/api/v1";
9910
10798
 
9911
- export { type ApiErrorBody, type ApiErrorDetail, type ApiErrorResponse, type AssetClassControllerCreateAssetClassData, type AssetClassControllerCreateAssetClassError, type AssetClassControllerCreateAssetClassErrors, type AssetClassControllerCreateAssetClassResponse, type AssetClassControllerCreateAssetClassResponses, type AssetClassControllerGetAssetClassListData, type AssetClassControllerGetAssetClassListError, type AssetClassControllerGetAssetClassListErrors, type AssetClassControllerGetAssetClassListResponse, type AssetClassControllerGetAssetClassListResponses, type AssetClassControllerUpdateAssetClassData, type AssetClassControllerUpdateAssetClassError, type AssetClassControllerUpdateAssetClassErrors, type AssetClassControllerUpdateAssetClassResponse, type AssetClassControllerUpdateAssetClassResponses, type AssetClassDocumentControllerCreateData, type AssetClassDocumentControllerCreateError, type AssetClassDocumentControllerCreateErrors, type AssetClassDocumentControllerCreateResponse, type AssetClassDocumentControllerCreateResponses, type AssetClassDocumentControllerGetData, type AssetClassDocumentControllerGetError, type AssetClassDocumentControllerGetErrors, type AssetClassDocumentControllerGetResponse, type AssetClassDocumentControllerGetResponses, type AssetClassDocumentControllerListData, type AssetClassDocumentControllerListError, type AssetClassDocumentControllerListErrors, type AssetClassDocumentControllerListResponse, type AssetClassDocumentControllerListResponses, type AssetClassDocumentControllerRemoveData, type AssetClassDocumentControllerRemoveError, type AssetClassDocumentControllerRemoveErrors, type AssetClassDocumentControllerRemoveResponse, type AssetClassDocumentControllerRemoveResponses, type AssetClassDocumentControllerUpdateData, type AssetClassDocumentControllerUpdateError, type AssetClassDocumentControllerUpdateErrors, type AssetClassDocumentControllerUpdateResponse, type AssetClassDocumentControllerUpdateResponses, type AssetClassListResponseDto, type AssetClassPropertyControllerRemoveData, type AssetClassPropertyControllerRemoveError, type AssetClassPropertyControllerRemoveErrors, type AssetClassPropertyControllerRemoveResponse, type AssetClassPropertyControllerRemoveResponses, type AssetClassPropertyControllerUpdateData, type AssetClassPropertyControllerUpdateError, type AssetClassPropertyControllerUpdateErrors, type AssetClassPropertyControllerUpdateResponse, type AssetClassPropertyControllerUpdateResponses, type AssetClassPropertyResponseDto, type AssetClassResponseDto, type AssetControllerCreateAssetPublicData, type AssetControllerCreateAssetPublicError, type AssetControllerCreateAssetPublicErrors, type AssetControllerCreateAssetPublicResponse, type AssetControllerCreateAssetPublicResponses, type AssetControllerGetAssetData, type AssetControllerGetAssetError, type AssetControllerGetAssetErrors, type AssetControllerGetAssetResponse, type AssetControllerGetAssetResponses, type AssetControllerListAssetsData, type AssetControllerListAssetsError, type AssetControllerListAssetsErrors, type AssetControllerListAssetsResponse, type AssetControllerListAssetsResponses, type AssetControllerUpdateAssetData, type AssetControllerUpdateAssetError, type AssetControllerUpdateAssetErrors, type AssetControllerUpdateAssetResponse, type AssetControllerUpdateAssetResponses, type AssetDocumentControllerCreateData, type AssetDocumentControllerCreateError, type AssetDocumentControllerCreateErrors, type AssetDocumentControllerCreateResponse, type AssetDocumentControllerCreateResponses, type AssetDocumentControllerGetData, type AssetDocumentControllerGetError, type AssetDocumentControllerGetErrors, type AssetDocumentControllerGetResponse, type AssetDocumentControllerGetResponses, type AssetDocumentControllerListData, type AssetDocumentControllerListError, type AssetDocumentControllerListErrors, type AssetDocumentControllerListResponse, type AssetDocumentControllerListResponses, type AssetDocumentControllerRemoveData, type AssetDocumentControllerRemoveError, type AssetDocumentControllerRemoveErrors, type AssetDocumentControllerRemoveResponse, type AssetDocumentControllerRemoveResponses, type AssetDocumentControllerUpdateData, type AssetDocumentControllerUpdateError, type AssetDocumentControllerUpdateErrors, type AssetDocumentControllerUpdateResponse, type AssetDocumentControllerUpdateResponses, type AssetPropertyControllerDeleteAssetPropertyData, type AssetPropertyControllerDeleteAssetPropertyError, type AssetPropertyControllerDeleteAssetPropertyErrors, type AssetPropertyControllerDeleteAssetPropertyResponse, type AssetPropertyControllerDeleteAssetPropertyResponses, type AssetPropertyControllerUpdateAssetPropertyData, type AssetPropertyControllerUpdateAssetPropertyError, type AssetPropertyControllerUpdateAssetPropertyErrors, type AssetPropertyControllerUpdateAssetPropertyResponse, type AssetPropertyControllerUpdateAssetPropertyResponses, type AssetPropertyResponseDto, type AssetsResource, type ChecklistControllerGetChecklistData, type ChecklistControllerGetChecklistError, type ChecklistControllerGetChecklistErrors, type ChecklistControllerGetChecklistResponse, type ChecklistControllerGetChecklistResponses, type ChecklistControllerListChecklistsData, type ChecklistControllerListChecklistsError, type ChecklistControllerListChecklistsErrors, type ChecklistControllerListChecklistsResponse, type ChecklistControllerListChecklistsResponses, type ChecklistSummaryDto, type ClientOptions, type CompanyDocumentControllerCreateData, type CompanyDocumentControllerCreateError, type CompanyDocumentControllerCreateErrors, type CompanyDocumentControllerCreateResponse, type CompanyDocumentControllerCreateResponses, type CompanyDocumentControllerGetData, type CompanyDocumentControllerGetError, type CompanyDocumentControllerGetErrors, type CompanyDocumentControllerGetResponse, type CompanyDocumentControllerGetResponses, type CompanyDocumentControllerListData, type CompanyDocumentControllerListError, type CompanyDocumentControllerListErrors, type CompanyDocumentControllerListResponse, type CompanyDocumentControllerListResponses, type CompanyDocumentControllerRemoveData, type CompanyDocumentControllerRemoveError, type CompanyDocumentControllerRemoveErrors, type CompanyDocumentControllerRemoveResponse, type CompanyDocumentControllerRemoveResponses, type CompanyDocumentControllerUpdateData, type CompanyDocumentControllerUpdateError, type CompanyDocumentControllerUpdateErrors, type CompanyDocumentControllerUpdateResponse, type CompanyDocumentControllerUpdateResponses, type ConfigItemDto, type ConfigTableDto, type CreateAssetClassDto, type CreateConfigItemDto, type CreateCustomerDto, type CreateDocumentDto, type CreateGroupDto, type CreateJobDto, type CreateProjectDto, type CreateSiteDto, type CreateZoneDto, type CustomerControllerCreateData, type CustomerControllerCreateError, type CustomerControllerCreateErrors, type CustomerControllerCreateResponse, type CustomerControllerCreateResponses, type CustomerControllerDeleteData, type CustomerControllerDeleteError, type CustomerControllerDeleteErrors, type CustomerControllerDeleteResponse, type CustomerControllerDeleteResponses, type CustomerControllerGetData, type CustomerControllerGetError, type CustomerControllerGetErrors, type CustomerControllerGetResponse, type CustomerControllerGetResponses, type CustomerControllerListData, type CustomerControllerListError, type CustomerControllerListErrors, type CustomerControllerListResponse, type CustomerControllerListResponses, type CustomerControllerUpdateData, type CustomerControllerUpdateError, type CustomerControllerUpdateErrors, type CustomerControllerUpdateResponse, type CustomerControllerUpdateResponses, type CustomerDocumentControllerCreateData, type CustomerDocumentControllerCreateError, type CustomerDocumentControllerCreateErrors, type CustomerDocumentControllerCreateResponse, type CustomerDocumentControllerCreateResponses, type CustomerDocumentControllerGetData, type CustomerDocumentControllerGetError, type CustomerDocumentControllerGetErrors, type CustomerDocumentControllerGetResponse, type CustomerDocumentControllerGetResponses, type CustomerDocumentControllerListData, type CustomerDocumentControllerListError, type CustomerDocumentControllerListErrors, type CustomerDocumentControllerListResponse, type CustomerDocumentControllerListResponses, type CustomerDocumentControllerRemoveData, type CustomerDocumentControllerRemoveError, type CustomerDocumentControllerRemoveErrors, type CustomerDocumentControllerRemoveResponse, type CustomerDocumentControllerRemoveResponses, type CustomerDocumentControllerUpdateData, type CustomerDocumentControllerUpdateError, type CustomerDocumentControllerUpdateErrors, type CustomerDocumentControllerUpdateResponse, type CustomerDocumentControllerUpdateResponses, type CustomerResponseDto, DEFAULT_BASE_URL, type DeleteAssetClassPropertyResponseDto, type DeleteAssetPropertyResponseDto, type DeleteCustomerResponseDto, type DeleteDocumentResponseDto, type DeleteGroupResponseDto, type DeleteJobResponseDto, type DeleteProjectResponseDto, type DeleteSiteResponseDto, type DeleteUserPropertyResponseDto, type DeleteZoneResponseDto, type DevicePublicControllerGetData, type DevicePublicControllerGetError, type DevicePublicControllerGetErrors, type DevicePublicControllerGetResponse, type DevicePublicControllerGetResponses, type DevicePublicControllerListData, type DevicePublicControllerListError, type DevicePublicControllerListErrors, type DevicePublicControllerListResponse, type DevicePublicControllerListResponses, type DeviceResponseDto, type DocumentResponseDto, type DocumentUploadControllerUploadUrlData, type DocumentUploadControllerUploadUrlError, type DocumentUploadControllerUploadUrlErrors, type DocumentUploadControllerUploadUrlResponse, type DocumentUploadControllerUploadUrlResponses, type DocumentUploadUrlDto, type DocumentUploadUrlResponseDto, type EmbeddedAssetClassPropertyDto, type EmbeddedAssetPropertyDto, type EmbeddedCustomerPropertyDto, type EmbeddedJobPropertyDto, type EmbeddedProjectPropertyDto, type EmbeddedUserPropertyDto, type ErrorDetail, type GroupControllerCreateData, type GroupControllerCreateError, type GroupControllerCreateErrors, type GroupControllerCreateResponse, type GroupControllerCreateResponses, type GroupControllerDeleteData, type GroupControllerDeleteError, type GroupControllerDeleteErrors, type GroupControllerDeleteResponse, type GroupControllerDeleteResponses, type GroupControllerGetData, type GroupControllerGetError, type GroupControllerGetErrors, type GroupControllerGetResponse, type GroupControllerGetResponses, type GroupControllerListData, type GroupControllerListError, type GroupControllerListErrors, type GroupControllerListResponse, type GroupControllerListResponses, type GroupControllerUpdateData, type GroupControllerUpdateError, type GroupControllerUpdateErrors, type GroupControllerUpdateResponse, type GroupControllerUpdateResponses, type GroupResponseDto, type InspectionControllerGetPublicInspectionData, type InspectionControllerGetPublicInspectionError, type InspectionControllerGetPublicInspectionErrors, type InspectionControllerGetPublicInspectionResponse, type InspectionControllerGetPublicInspectionResponses, type InspectionControllerListInspectionsData, type InspectionControllerListInspectionsError, type InspectionControllerListInspectionsErrors, type InspectionControllerListInspectionsResponse, type InspectionControllerListInspectionsResponses, type InspectionResponseDto, type InspectionsResource, type IssueControllerGetIssueHistoryPublicData, type IssueControllerGetIssueHistoryPublicError, type IssueControllerGetIssueHistoryPublicErrors, type IssueControllerGetIssueHistoryPublicResponse, type IssueControllerGetIssueHistoryPublicResponses, type IssueControllerGetIssuePublicData, type IssueControllerGetIssuePublicError, type IssueControllerGetIssuePublicErrors, type IssueControllerGetIssuePublicResponse, type IssueControllerGetIssuePublicResponses, type IssueControllerListIssuesData, type IssueControllerListIssuesError, type IssueControllerListIssuesErrors, type IssueControllerListIssuesResponse, type IssueControllerListIssuesResponses, type IssueControllerUpdateIssuePublicData, type IssueControllerUpdateIssuePublicError, type IssueControllerUpdateIssuePublicErrors, type IssueControllerUpdateIssuePublicResponse, type IssueControllerUpdateIssuePublicResponses, type IssueHistoryDto, type IssueHistoryResponseDto, type IssueResponseDto, type IssuesResource, type JobAssignmentDto, type JobControllerCreateData, type JobControllerCreateError, type JobControllerCreateErrors, type JobControllerCreateResponse, type JobControllerCreateResponses, type JobControllerDeleteData, type JobControllerDeleteError, type JobControllerDeleteErrors, type JobControllerDeleteResponse, type JobControllerDeleteResponses, type JobControllerGetData, type JobControllerGetError, type JobControllerGetErrors, type JobControllerGetResponse, type JobControllerGetResponses, type JobControllerListAssignmentsData, type JobControllerListAssignmentsError, type JobControllerListAssignmentsErrors, type JobControllerListAssignmentsResponse, type JobControllerListAssignmentsResponses, type JobControllerListData, type JobControllerListError, type JobControllerListErrors, type JobControllerListRequirementsData, type JobControllerListRequirementsError, type JobControllerListRequirementsErrors, type JobControllerListRequirementsResponse, type JobControllerListRequirementsResponses, type JobControllerListResponse, type JobControllerListResponses, type JobControllerUpdateData, type JobControllerUpdateError, type JobControllerUpdateErrors, type JobControllerUpdateResponse, type JobControllerUpdateResponses, type JobDocumentControllerCreateData, type JobDocumentControllerCreateError, type JobDocumentControllerCreateErrors, type JobDocumentControllerCreateResponse, type JobDocumentControllerCreateResponses, type JobDocumentControllerGetData, type JobDocumentControllerGetError, type JobDocumentControllerGetErrors, type JobDocumentControllerGetResponse, type JobDocumentControllerGetResponses, type JobDocumentControllerListData, type JobDocumentControllerListError, type JobDocumentControllerListErrors, type JobDocumentControllerListResponse, type JobDocumentControllerListResponses, type JobDocumentControllerRemoveData, type JobDocumentControllerRemoveError, type JobDocumentControllerRemoveErrors, type JobDocumentControllerRemoveResponse, type JobDocumentControllerRemoveResponses, type JobDocumentControllerUpdateData, type JobDocumentControllerUpdateError, type JobDocumentControllerUpdateErrors, type JobDocumentControllerUpdateResponse, type JobDocumentControllerUpdateResponses, type JobRequirementDto, type JobResponseDto, type ListChecklistsResponseDto, type ListConfigItemsResponseDto, type ListConfigTablesResponseDto, type ListCustomersResponseDto, type ListDevicesResponseDto, type ListDocumentsResponseDto, type ListGroupsResponseDto, type ListInspectionsResponseDto, type ListIssuesResponseDto, type ListJobAssignmentsResponseDto, type ListJobRequirementsResponseDto, type ListJobsResponseDto, type ListProjectAssetsResponseDto, type ListProjectUsersResponseDto, type ListProjectsResponseDto, type ListSitesResponseDto, type ListTimesheetsResponseDto, type ListZonesResponseDto, PACKAGE_NAME, PACKAGE_VERSION, type ProjectAssetDto, type ProjectControllerCreateData, type ProjectControllerCreateError, type ProjectControllerCreateErrors, type ProjectControllerCreateResponse, type ProjectControllerCreateResponses, type ProjectControllerDeleteData, type ProjectControllerDeleteError, type ProjectControllerDeleteErrors, type ProjectControllerDeleteResponse, type ProjectControllerDeleteResponses, type ProjectControllerGetData, type ProjectControllerGetError, type ProjectControllerGetErrors, type ProjectControllerGetResponse, type ProjectControllerGetResponses, type ProjectControllerListAssetsData, type ProjectControllerListAssetsError, type ProjectControllerListAssetsErrors, type ProjectControllerListAssetsResponse, type ProjectControllerListAssetsResponses, type ProjectControllerListData, type ProjectControllerListError, type ProjectControllerListErrors, type ProjectControllerListResponse, type ProjectControllerListResponses, type ProjectControllerListUsersData, type ProjectControllerListUsersError, type ProjectControllerListUsersErrors, type ProjectControllerListUsersResponse, type ProjectControllerListUsersResponses, type ProjectControllerUpdateData, type ProjectControllerUpdateError, type ProjectControllerUpdateErrors, type ProjectControllerUpdateResponse, type ProjectControllerUpdateResponses, type ProjectDocumentControllerCreateData, type ProjectDocumentControllerCreateError, type ProjectDocumentControllerCreateErrors, type ProjectDocumentControllerCreateResponse, type ProjectDocumentControllerCreateResponses, type ProjectDocumentControllerGetData, type ProjectDocumentControllerGetError, type ProjectDocumentControllerGetErrors, type ProjectDocumentControllerGetResponse, type ProjectDocumentControllerGetResponses, type ProjectDocumentControllerListData, type ProjectDocumentControllerListError, type ProjectDocumentControllerListErrors, type ProjectDocumentControllerListResponse, type ProjectDocumentControllerListResponses, type ProjectDocumentControllerRemoveData, type ProjectDocumentControllerRemoveError, type ProjectDocumentControllerRemoveErrors, type ProjectDocumentControllerRemoveResponse, type ProjectDocumentControllerRemoveResponses, type ProjectDocumentControllerUpdateData, type ProjectDocumentControllerUpdateError, type ProjectDocumentControllerUpdateErrors, type ProjectDocumentControllerUpdateResponse, type ProjectDocumentControllerUpdateResponses, type ProjectResponseDto, type ProjectUserDto, type PublicConfigControllerCreateConfigItemData, type PublicConfigControllerCreateConfigItemError, type PublicConfigControllerCreateConfigItemErrors, type PublicConfigControllerCreateConfigItemResponse, type PublicConfigControllerCreateConfigItemResponses, type PublicConfigControllerDeleteConfigItemData, type PublicConfigControllerDeleteConfigItemError, type PublicConfigControllerDeleteConfigItemErrors, type PublicConfigControllerDeleteConfigItemResponse, type PublicConfigControllerDeleteConfigItemResponses, type PublicConfigControllerGetConfigItemData, type PublicConfigControllerGetConfigItemError, type PublicConfigControllerGetConfigItemErrors, type PublicConfigControllerGetConfigItemResponse, type PublicConfigControllerGetConfigItemResponses, type PublicConfigControllerListConfigItemsData, type PublicConfigControllerListConfigItemsError, type PublicConfigControllerListConfigItemsErrors, type PublicConfigControllerListConfigItemsResponse, type PublicConfigControllerListConfigItemsResponses, type PublicConfigControllerListConfigTablesData, type PublicConfigControllerListConfigTablesError, type PublicConfigControllerListConfigTablesErrors, type PublicConfigControllerListConfigTablesResponse, type PublicConfigControllerListConfigTablesResponses, type PublicConfigControllerUpdateConfigItemData, type PublicConfigControllerUpdateConfigItemError, type PublicConfigControllerUpdateConfigItemErrors, type PublicConfigControllerUpdateConfigItemResponse, type PublicConfigControllerUpdateConfigItemResponses, type PublicCreateAssetDto, type SiteControllerCreateSiteData, type SiteControllerCreateSiteError, type SiteControllerCreateSiteErrors, type SiteControllerCreateSiteResponse, type SiteControllerCreateSiteResponses, type SiteControllerDeleteSiteData, type SiteControllerDeleteSiteError, type SiteControllerDeleteSiteErrors, type SiteControllerDeleteSiteResponse, type SiteControllerDeleteSiteResponses, type SiteControllerListSitesData, type SiteControllerListSitesError, type SiteControllerListSitesErrors, type SiteControllerListSitesResponse, type SiteControllerListSitesResponses, type SiteControllerUpdateSiteData, type SiteControllerUpdateSiteError, type SiteControllerUpdateSiteErrors, type SiteControllerUpdateSiteResponse, type SiteControllerUpdateSiteResponses, type SiteDocumentControllerCreateData, type SiteDocumentControllerCreateError, type SiteDocumentControllerCreateErrors, type SiteDocumentControllerCreateResponse, type SiteDocumentControllerCreateResponses, type SiteDocumentControllerGetData, type SiteDocumentControllerGetError, type SiteDocumentControllerGetErrors, type SiteDocumentControllerGetResponse, type SiteDocumentControllerGetResponses, type SiteDocumentControllerListData, type SiteDocumentControllerListError, type SiteDocumentControllerListErrors, type SiteDocumentControllerListResponse, type SiteDocumentControllerListResponses, type SiteDocumentControllerRemoveData, type SiteDocumentControllerRemoveError, type SiteDocumentControllerRemoveErrors, type SiteDocumentControllerRemoveResponse, type SiteDocumentControllerRemoveResponses, type SiteDocumentControllerUpdateData, type SiteDocumentControllerUpdateError, type SiteDocumentControllerUpdateErrors, type SiteDocumentControllerUpdateResponse, type SiteDocumentControllerUpdateResponses, type SiteResponseDto, type SitesResource, type TimesheetDetailDto, type TimesheetLineDto, type TimesheetPublicControllerGetData, type TimesheetPublicControllerGetError, type TimesheetPublicControllerGetErrors, type TimesheetPublicControllerGetResponse, type TimesheetPublicControllerGetResponses, type TimesheetPublicControllerListData, type TimesheetPublicControllerListError, type TimesheetPublicControllerListErrors, type TimesheetPublicControllerListResponse, type TimesheetPublicControllerListResponses, type TimesheetSummaryDto, type UpdateAssetClassDto, type UpdateAssetClassPropertyDto, type UpdateAssetDto, type UpdateAssetPropertyDto, type UpdateConfigItemDto, type UpdateCustomerDto, type UpdateDocumentDto, type UpdateGroupDto, type UpdateIssueDto, type UpdateJobDto, type UpdateProjectDto, type UpdateSiteDto, type UpdateUserPropertyDto, type UpdateZoneDto, type UserControllerCreateUserData, type UserControllerCreateUserError, type UserControllerCreateUserErrors, type UserControllerCreateUserResponse, type UserControllerCreateUserResponses, type UserControllerGetUserData, type UserControllerGetUserError, type UserControllerGetUserErrors, type UserControllerGetUserResponse, type UserControllerGetUserResponses, type UserControllerListUsersData, type UserControllerListUsersError, type UserControllerListUsersErrors, type UserControllerListUsersResponse, type UserControllerListUsersResponses, type UserControllerUpdateUserData, type UserControllerUpdateUserError, type UserControllerUpdateUserErrors, type UserControllerUpdateUserResponse, type UserControllerUpdateUserResponses, type UserDocumentControllerCreateData, type UserDocumentControllerCreateError, type UserDocumentControllerCreateErrors, type UserDocumentControllerCreateResponse, type UserDocumentControllerCreateResponses, type UserDocumentControllerGetData, type UserDocumentControllerGetError, type UserDocumentControllerGetErrors, type UserDocumentControllerGetResponse, type UserDocumentControllerGetResponses, type UserDocumentControllerListData, type UserDocumentControllerListError, type UserDocumentControllerListErrors, type UserDocumentControllerListResponse, type UserDocumentControllerListResponses, type UserDocumentControllerRemoveData, type UserDocumentControllerRemoveError, type UserDocumentControllerRemoveErrors, type UserDocumentControllerRemoveResponse, type UserDocumentControllerRemoveResponses, type UserDocumentControllerUpdateData, type UserDocumentControllerUpdateError, type UserDocumentControllerUpdateErrors, type UserDocumentControllerUpdateResponse, type UserDocumentControllerUpdateResponses, type UserPropertiesResource, type UserPropertyControllerDeleteUserPropertyData, type UserPropertyControllerDeleteUserPropertyError, type UserPropertyControllerDeleteUserPropertyErrors, type UserPropertyControllerDeleteUserPropertyResponse, type UserPropertyControllerDeleteUserPropertyResponses, type UserPropertyControllerUpdateUserPropertyData, type UserPropertyControllerUpdateUserPropertyError, type UserPropertyControllerUpdateUserPropertyErrors, type UserPropertyControllerUpdateUserPropertyResponse, type UserPropertyControllerUpdateUserPropertyResponses, type UserPropertyResponseDto, type UserResponseDto, type UsersResource, WakataApiError, WakataAuthError, WakataClient, type WakataClientOptions, WakataConflictError, type WakataErrorEnvelope, WakataNotFoundError, WakataPermissionError, WakataRateLimitError, WakataServerError, WakataValidationError, type ZoneControllerCreateData, type ZoneControllerCreateError, type ZoneControllerCreateErrors, type ZoneControllerCreateResponse, type ZoneControllerCreateResponses, type ZoneControllerDeleteData, type ZoneControllerDeleteError, type ZoneControllerDeleteErrors, type ZoneControllerDeleteResponse, type ZoneControllerDeleteResponses, type ZoneControllerGetData, type ZoneControllerGetError, type ZoneControllerGetErrors, type ZoneControllerGetResponse, type ZoneControllerGetResponses, type ZoneControllerListData, type ZoneControllerListError, type ZoneControllerListErrors, type ZoneControllerListResponse, type ZoneControllerListResponses, type ZoneControllerUpdateData, type ZoneControllerUpdateError, type ZoneControllerUpdateErrors, type ZoneControllerUpdateResponse, type ZoneControllerUpdateResponses, type ZoneResponseDto, generateIdempotencyKey, mapApiError };
10799
+ export { type ApiErrorBody, type ApiErrorDetail, type ApiErrorResponse, type ApprovalLevelDto, type ApprovalLevelMemberDto, type ApprovalSchemeControllerGetData, type ApprovalSchemeControllerGetError, type ApprovalSchemeControllerGetErrors, type ApprovalSchemeControllerGetResponse, type ApprovalSchemeControllerGetResponses, type ApprovalSchemeControllerListData, type ApprovalSchemeControllerListError, type ApprovalSchemeControllerListErrors, type ApprovalSchemeControllerListResponse, type ApprovalSchemeControllerListResponses, type ApprovalSchemeDetailDto, type ApprovalSchemeSummaryDto, type AssetClassControllerCreateAssetClassData, type AssetClassControllerCreateAssetClassError, type AssetClassControllerCreateAssetClassErrors, type AssetClassControllerCreateAssetClassResponse, type AssetClassControllerCreateAssetClassResponses, type AssetClassControllerGetAssetClassListData, type AssetClassControllerGetAssetClassListError, type AssetClassControllerGetAssetClassListErrors, type AssetClassControllerGetAssetClassListResponse, type AssetClassControllerGetAssetClassListResponses, type AssetClassControllerUpdateAssetClassData, type AssetClassControllerUpdateAssetClassError, type AssetClassControllerUpdateAssetClassErrors, type AssetClassControllerUpdateAssetClassResponse, type AssetClassControllerUpdateAssetClassResponses, type AssetClassDocumentControllerCreateData, type AssetClassDocumentControllerCreateError, type AssetClassDocumentControllerCreateErrors, type AssetClassDocumentControllerCreateResponse, type AssetClassDocumentControllerCreateResponses, type AssetClassDocumentControllerGetData, type AssetClassDocumentControllerGetError, type AssetClassDocumentControllerGetErrors, type AssetClassDocumentControllerGetResponse, type AssetClassDocumentControllerGetResponses, type AssetClassDocumentControllerListData, type AssetClassDocumentControllerListError, type AssetClassDocumentControllerListErrors, type AssetClassDocumentControllerListResponse, type AssetClassDocumentControllerListResponses, type AssetClassDocumentControllerRemoveData, type AssetClassDocumentControllerRemoveError, type AssetClassDocumentControllerRemoveErrors, type AssetClassDocumentControllerRemoveResponse, type AssetClassDocumentControllerRemoveResponses, type AssetClassDocumentControllerUpdateData, type AssetClassDocumentControllerUpdateError, type AssetClassDocumentControllerUpdateErrors, type AssetClassDocumentControllerUpdateResponse, type AssetClassDocumentControllerUpdateResponses, type AssetClassListResponseDto, type AssetClassPropertyControllerRemoveData, type AssetClassPropertyControllerRemoveError, type AssetClassPropertyControllerRemoveErrors, type AssetClassPropertyControllerRemoveResponse, type AssetClassPropertyControllerRemoveResponses, type AssetClassPropertyControllerUpdateData, type AssetClassPropertyControllerUpdateError, type AssetClassPropertyControllerUpdateErrors, type AssetClassPropertyControllerUpdateResponse, type AssetClassPropertyControllerUpdateResponses, type AssetClassPropertyResponseDto, type AssetClassResponseDto, type AssetControllerCreateAssetPublicData, type AssetControllerCreateAssetPublicError, type AssetControllerCreateAssetPublicErrors, type AssetControllerCreateAssetPublicResponse, type AssetControllerCreateAssetPublicResponses, type AssetControllerGetAssetData, type AssetControllerGetAssetError, type AssetControllerGetAssetErrors, type AssetControllerGetAssetResponse, type AssetControllerGetAssetResponses, type AssetControllerListAssetsData, type AssetControllerListAssetsError, type AssetControllerListAssetsErrors, type AssetControllerListAssetsResponse, type AssetControllerListAssetsResponses, type AssetControllerUpdateAssetData, type AssetControllerUpdateAssetError, type AssetControllerUpdateAssetErrors, type AssetControllerUpdateAssetResponse, type AssetControllerUpdateAssetResponses, type AssetDocumentControllerCreateData, type AssetDocumentControllerCreateError, type AssetDocumentControllerCreateErrors, type AssetDocumentControllerCreateResponse, type AssetDocumentControllerCreateResponses, type AssetDocumentControllerGetData, type AssetDocumentControllerGetError, type AssetDocumentControllerGetErrors, type AssetDocumentControllerGetResponse, type AssetDocumentControllerGetResponses, type AssetDocumentControllerListData, type AssetDocumentControllerListError, type AssetDocumentControllerListErrors, type AssetDocumentControllerListResponse, type AssetDocumentControllerListResponses, type AssetDocumentControllerRemoveData, type AssetDocumentControllerRemoveError, type AssetDocumentControllerRemoveErrors, type AssetDocumentControllerRemoveResponse, type AssetDocumentControllerRemoveResponses, type AssetDocumentControllerUpdateData, type AssetDocumentControllerUpdateError, type AssetDocumentControllerUpdateErrors, type AssetDocumentControllerUpdateResponse, type AssetDocumentControllerUpdateResponses, type AssetPropertyControllerDeleteAssetPropertyData, type AssetPropertyControllerDeleteAssetPropertyError, type AssetPropertyControllerDeleteAssetPropertyErrors, type AssetPropertyControllerDeleteAssetPropertyResponse, type AssetPropertyControllerDeleteAssetPropertyResponses, type AssetPropertyControllerUpdateAssetPropertyData, type AssetPropertyControllerUpdateAssetPropertyError, type AssetPropertyControllerUpdateAssetPropertyErrors, type AssetPropertyControllerUpdateAssetPropertyResponse, type AssetPropertyControllerUpdateAssetPropertyResponses, type AssetPropertyResponseDto, type AssetsResource, type ChecklistControllerGetChecklistData, type ChecklistControllerGetChecklistError, type ChecklistControllerGetChecklistErrors, type ChecklistControllerGetChecklistResponse, type ChecklistControllerGetChecklistResponses, type ChecklistControllerListChecklistsData, type ChecklistControllerListChecklistsError, type ChecklistControllerListChecklistsErrors, type ChecklistControllerListChecklistsResponse, type ChecklistControllerListChecklistsResponses, type ChecklistSummaryDto, type ClientOptions, type CompanyDocumentControllerCreateData, type CompanyDocumentControllerCreateError, type CompanyDocumentControllerCreateErrors, type CompanyDocumentControllerCreateResponse, type CompanyDocumentControllerCreateResponses, type CompanyDocumentControllerGetData, type CompanyDocumentControllerGetError, type CompanyDocumentControllerGetErrors, type CompanyDocumentControllerGetResponse, type CompanyDocumentControllerGetResponses, type CompanyDocumentControllerListData, type CompanyDocumentControllerListError, type CompanyDocumentControllerListErrors, type CompanyDocumentControllerListResponse, type CompanyDocumentControllerListResponses, type CompanyDocumentControllerRemoveData, type CompanyDocumentControllerRemoveError, type CompanyDocumentControllerRemoveErrors, type CompanyDocumentControllerRemoveResponse, type CompanyDocumentControllerRemoveResponses, type CompanyDocumentControllerUpdateData, type CompanyDocumentControllerUpdateError, type CompanyDocumentControllerUpdateErrors, type CompanyDocumentControllerUpdateResponse, type CompanyDocumentControllerUpdateResponses, type ConfigItemDto, type ConfigTableDto, type CostCodeControllerCreateData, type CostCodeControllerCreateError, type CostCodeControllerCreateErrors, type CostCodeControllerCreateResponse, type CostCodeControllerCreateResponses, type CostCodeControllerDeleteData, type CostCodeControllerDeleteError, type CostCodeControllerDeleteErrors, type CostCodeControllerDeleteResponse, type CostCodeControllerDeleteResponses, type CostCodeControllerGetData, type CostCodeControllerGetError, type CostCodeControllerGetErrors, type CostCodeControllerGetResponse, type CostCodeControllerGetResponses, type CostCodeControllerListData, type CostCodeControllerListError, type CostCodeControllerListErrors, type CostCodeControllerListResponse, type CostCodeControllerListResponses, type CostCodeControllerUpdateData, type CostCodeControllerUpdateError, type CostCodeControllerUpdateErrors, type CostCodeControllerUpdateResponse, type CostCodeControllerUpdateResponses, type CostCodeResponseDto, type CreateAssetClassDto, type CreateConfigItemDto, type CreateCostCodeDto, type CreateCustomerDto, type CreateDocumentDto, type CreateGroupDto, type CreateJobDto, type CreateProjectDto, type CreateSiteDto, type CreateZoneDto, type CustomerControllerCreateData, type CustomerControllerCreateError, type CustomerControllerCreateErrors, type CustomerControllerCreateResponse, type CustomerControllerCreateResponses, type CustomerControllerDeleteData, type CustomerControllerDeleteError, type CustomerControllerDeleteErrors, type CustomerControllerDeleteResponse, type CustomerControllerDeleteResponses, type CustomerControllerGetData, type CustomerControllerGetError, type CustomerControllerGetErrors, type CustomerControllerGetResponse, type CustomerControllerGetResponses, type CustomerControllerListData, type CustomerControllerListError, type CustomerControllerListErrors, type CustomerControllerListResponse, type CustomerControllerListResponses, type CustomerControllerUpdateData, type CustomerControllerUpdateError, type CustomerControllerUpdateErrors, type CustomerControllerUpdateResponse, type CustomerControllerUpdateResponses, type CustomerDocumentControllerCreateData, type CustomerDocumentControllerCreateError, type CustomerDocumentControllerCreateErrors, type CustomerDocumentControllerCreateResponse, type CustomerDocumentControllerCreateResponses, type CustomerDocumentControllerGetData, type CustomerDocumentControllerGetError, type CustomerDocumentControllerGetErrors, type CustomerDocumentControllerGetResponse, type CustomerDocumentControllerGetResponses, type CustomerDocumentControllerListData, type CustomerDocumentControllerListError, type CustomerDocumentControllerListErrors, type CustomerDocumentControllerListResponse, type CustomerDocumentControllerListResponses, type CustomerDocumentControllerRemoveData, type CustomerDocumentControllerRemoveError, type CustomerDocumentControllerRemoveErrors, type CustomerDocumentControllerRemoveResponse, type CustomerDocumentControllerRemoveResponses, type CustomerDocumentControllerUpdateData, type CustomerDocumentControllerUpdateError, type CustomerDocumentControllerUpdateErrors, type CustomerDocumentControllerUpdateResponse, type CustomerDocumentControllerUpdateResponses, type CustomerResponseDto, DEFAULT_BASE_URL, type DeleteAssetClassPropertyResponseDto, type DeleteAssetPropertyResponseDto, type DeleteCostCodeResponseDto, type DeleteCustomerResponseDto, type DeleteDocumentResponseDto, type DeleteGroupResponseDto, type DeleteJobResponseDto, type DeleteProjectResponseDto, type DeleteSiteResponseDto, type DeleteUserPropertyResponseDto, type DeleteZoneResponseDto, type DevicePublicControllerGetData, type DevicePublicControllerGetError, type DevicePublicControllerGetErrors, type DevicePublicControllerGetResponse, type DevicePublicControllerGetResponses, type DevicePublicControllerListData, type DevicePublicControllerListError, type DevicePublicControllerListErrors, type DevicePublicControllerListResponse, type DevicePublicControllerListResponses, type DeviceResponseDto, type DocumentResponseDto, type DocumentUploadControllerUploadUrlData, type DocumentUploadControllerUploadUrlError, type DocumentUploadControllerUploadUrlErrors, type DocumentUploadControllerUploadUrlResponse, type DocumentUploadControllerUploadUrlResponses, type DocumentUploadUrlDto, type DocumentUploadUrlResponseDto, type EmbeddedAssetClassPropertyDto, type EmbeddedAssetPropertyDto, type EmbeddedCustomerPropertyDto, type EmbeddedJobPropertyDto, type EmbeddedProjectPropertyDto, type EmbeddedUserPropertyDto, type ErrorDetail, type GroupControllerCreateData, type GroupControllerCreateError, type GroupControllerCreateErrors, type GroupControllerCreateResponse, type GroupControllerCreateResponses, type GroupControllerDeleteData, type GroupControllerDeleteError, type GroupControllerDeleteErrors, type GroupControllerDeleteResponse, type GroupControllerDeleteResponses, type GroupControllerGetData, type GroupControllerGetError, type GroupControllerGetErrors, type GroupControllerGetResponse, type GroupControllerGetResponses, type GroupControllerListData, type GroupControllerListError, type GroupControllerListErrors, type GroupControllerListResponse, type GroupControllerListResponses, type GroupControllerUpdateData, type GroupControllerUpdateError, type GroupControllerUpdateErrors, type GroupControllerUpdateResponse, type GroupControllerUpdateResponses, type GroupResponseDto, type InspectionControllerGetPublicInspectionData, type InspectionControllerGetPublicInspectionError, type InspectionControllerGetPublicInspectionErrors, type InspectionControllerGetPublicInspectionResponse, type InspectionControllerGetPublicInspectionResponses, type InspectionControllerListInspectionsData, type InspectionControllerListInspectionsError, type InspectionControllerListInspectionsErrors, type InspectionControllerListInspectionsResponse, type InspectionControllerListInspectionsResponses, type InspectionResponseDto, type InspectionsResource, type IssueControllerGetIssueHistoryPublicData, type IssueControllerGetIssueHistoryPublicError, type IssueControllerGetIssueHistoryPublicErrors, type IssueControllerGetIssueHistoryPublicResponse, type IssueControllerGetIssueHistoryPublicResponses, type IssueControllerGetIssuePublicData, type IssueControllerGetIssuePublicError, type IssueControllerGetIssuePublicErrors, type IssueControllerGetIssuePublicResponse, type IssueControllerGetIssuePublicResponses, type IssueControllerListIssuesData, type IssueControllerListIssuesError, type IssueControllerListIssuesErrors, type IssueControllerListIssuesResponse, type IssueControllerListIssuesResponses, type IssueControllerUpdateIssuePublicData, type IssueControllerUpdateIssuePublicError, type IssueControllerUpdateIssuePublicErrors, type IssueControllerUpdateIssuePublicResponse, type IssueControllerUpdateIssuePublicResponses, type IssueHistoryDto, type IssueHistoryResponseDto, type IssueResponseDto, type IssuesResource, type JobAssignmentDto, type JobControllerCreateData, type JobControllerCreateError, type JobControllerCreateErrors, type JobControllerCreateResponse, type JobControllerCreateResponses, type JobControllerDeleteData, type JobControllerDeleteError, type JobControllerDeleteErrors, type JobControllerDeleteResponse, type JobControllerDeleteResponses, type JobControllerGetData, type JobControllerGetError, type JobControllerGetErrors, type JobControllerGetResponse, type JobControllerGetResponses, type JobControllerListAssignmentsData, type JobControllerListAssignmentsError, type JobControllerListAssignmentsErrors, type JobControllerListAssignmentsResponse, type JobControllerListAssignmentsResponses, type JobControllerListData, type JobControllerListError, type JobControllerListErrors, type JobControllerListRequirementsData, type JobControllerListRequirementsError, type JobControllerListRequirementsErrors, type JobControllerListRequirementsResponse, type JobControllerListRequirementsResponses, type JobControllerListResponse, type JobControllerListResponses, type JobControllerUpdateData, type JobControllerUpdateError, type JobControllerUpdateErrors, type JobControllerUpdateResponse, type JobControllerUpdateResponses, type JobDocumentControllerCreateData, type JobDocumentControllerCreateError, type JobDocumentControllerCreateErrors, type JobDocumentControllerCreateResponse, type JobDocumentControllerCreateResponses, type JobDocumentControllerGetData, type JobDocumentControllerGetError, type JobDocumentControllerGetErrors, type JobDocumentControllerGetResponse, type JobDocumentControllerGetResponses, type JobDocumentControllerListData, type JobDocumentControllerListError, type JobDocumentControllerListErrors, type JobDocumentControllerListResponse, type JobDocumentControllerListResponses, type JobDocumentControllerRemoveData, type JobDocumentControllerRemoveError, type JobDocumentControllerRemoveErrors, type JobDocumentControllerRemoveResponse, type JobDocumentControllerRemoveResponses, type JobDocumentControllerUpdateData, type JobDocumentControllerUpdateError, type JobDocumentControllerUpdateErrors, type JobDocumentControllerUpdateResponse, type JobDocumentControllerUpdateResponses, type JobRequirementDto, type JobResponseDto, type ListApprovalSchemesResponseDto, type ListChecklistsResponseDto, type ListConfigItemsResponseDto, type ListConfigTablesResponseDto, type ListCostCodesResponseDto, type ListCustomersResponseDto, type ListDevicesResponseDto, type ListDocumentsResponseDto, type ListGroupsResponseDto, type ListInspectionsResponseDto, type ListIssuesResponseDto, type ListJobAssignmentsResponseDto, type ListJobRequirementsResponseDto, type ListJobsResponseDto, type ListPermitTypesResponseDto, type ListProjectAssetsResponseDto, type ListProjectUsersResponseDto, type ListProjectsResponseDto, type ListSitesResponseDto, type ListTimeLinesResponseDto, type ListTimesheetsResponseDto, type ListZonesResponseDto, PACKAGE_NAME, PACKAGE_VERSION, type PermitTypeControllerGetData, type PermitTypeControllerGetError, type PermitTypeControllerGetErrors, type PermitTypeControllerGetResponse, type PermitTypeControllerGetResponses, type PermitTypeControllerListData, type PermitTypeControllerListError, type PermitTypeControllerListErrors, type PermitTypeControllerListResponse, type PermitTypeControllerListResponses, type PermitTypeResponseDto, type ProjectAssetDto, type ProjectControllerCreateData, type ProjectControllerCreateError, type ProjectControllerCreateErrors, type ProjectControllerCreateResponse, type ProjectControllerCreateResponses, type ProjectControllerDeleteData, type ProjectControllerDeleteError, type ProjectControllerDeleteErrors, type ProjectControllerDeleteResponse, type ProjectControllerDeleteResponses, type ProjectControllerGetData, type ProjectControllerGetError, type ProjectControllerGetErrors, type ProjectControllerGetResponse, type ProjectControllerGetResponses, type ProjectControllerListAssetsData, type ProjectControllerListAssetsError, type ProjectControllerListAssetsErrors, type ProjectControllerListAssetsResponse, type ProjectControllerListAssetsResponses, type ProjectControllerListData, type ProjectControllerListError, type ProjectControllerListErrors, type ProjectControllerListResponse, type ProjectControllerListResponses, type ProjectControllerListUsersData, type ProjectControllerListUsersError, type ProjectControllerListUsersErrors, type ProjectControllerListUsersResponse, type ProjectControllerListUsersResponses, type ProjectControllerUpdateData, type ProjectControllerUpdateError, type ProjectControllerUpdateErrors, type ProjectControllerUpdateResponse, type ProjectControllerUpdateResponses, type ProjectDocumentControllerCreateData, type ProjectDocumentControllerCreateError, type ProjectDocumentControllerCreateErrors, type ProjectDocumentControllerCreateResponse, type ProjectDocumentControllerCreateResponses, type ProjectDocumentControllerGetData, type ProjectDocumentControllerGetError, type ProjectDocumentControllerGetErrors, type ProjectDocumentControllerGetResponse, type ProjectDocumentControllerGetResponses, type ProjectDocumentControllerListData, type ProjectDocumentControllerListError, type ProjectDocumentControllerListErrors, type ProjectDocumentControllerListResponse, type ProjectDocumentControllerListResponses, type ProjectDocumentControllerRemoveData, type ProjectDocumentControllerRemoveError, type ProjectDocumentControllerRemoveErrors, type ProjectDocumentControllerRemoveResponse, type ProjectDocumentControllerRemoveResponses, type ProjectDocumentControllerUpdateData, type ProjectDocumentControllerUpdateError, type ProjectDocumentControllerUpdateErrors, type ProjectDocumentControllerUpdateResponse, type ProjectDocumentControllerUpdateResponses, type ProjectResponseDto, type ProjectUserDto, type PublicConfigControllerCreateConfigItemData, type PublicConfigControllerCreateConfigItemError, type PublicConfigControllerCreateConfigItemErrors, type PublicConfigControllerCreateConfigItemResponse, type PublicConfigControllerCreateConfigItemResponses, type PublicConfigControllerDeleteConfigItemData, type PublicConfigControllerDeleteConfigItemError, type PublicConfigControllerDeleteConfigItemErrors, type PublicConfigControllerDeleteConfigItemResponse, type PublicConfigControllerDeleteConfigItemResponses, type PublicConfigControllerGetConfigItemData, type PublicConfigControllerGetConfigItemError, type PublicConfigControllerGetConfigItemErrors, type PublicConfigControllerGetConfigItemResponse, type PublicConfigControllerGetConfigItemResponses, type PublicConfigControllerListConfigItemsData, type PublicConfigControllerListConfigItemsError, type PublicConfigControllerListConfigItemsErrors, type PublicConfigControllerListConfigItemsResponse, type PublicConfigControllerListConfigItemsResponses, type PublicConfigControllerListConfigTablesData, type PublicConfigControllerListConfigTablesError, type PublicConfigControllerListConfigTablesErrors, type PublicConfigControllerListConfigTablesResponse, type PublicConfigControllerListConfigTablesResponses, type PublicConfigControllerUpdateConfigItemData, type PublicConfigControllerUpdateConfigItemError, type PublicConfigControllerUpdateConfigItemErrors, type PublicConfigControllerUpdateConfigItemResponse, type PublicConfigControllerUpdateConfigItemResponses, type PublicCreateAssetDto, type SiteControllerCreateSiteData, type SiteControllerCreateSiteError, type SiteControllerCreateSiteErrors, type SiteControllerCreateSiteResponse, type SiteControllerCreateSiteResponses, type SiteControllerDeleteSiteData, type SiteControllerDeleteSiteError, type SiteControllerDeleteSiteErrors, type SiteControllerDeleteSiteResponse, type SiteControllerDeleteSiteResponses, type SiteControllerListSitesData, type SiteControllerListSitesError, type SiteControllerListSitesErrors, type SiteControllerListSitesResponse, type SiteControllerListSitesResponses, type SiteControllerUpdateSiteData, type SiteControllerUpdateSiteError, type SiteControllerUpdateSiteErrors, type SiteControllerUpdateSiteResponse, type SiteControllerUpdateSiteResponses, type SiteDocumentControllerCreateData, type SiteDocumentControllerCreateError, type SiteDocumentControllerCreateErrors, type SiteDocumentControllerCreateResponse, type SiteDocumentControllerCreateResponses, type SiteDocumentControllerGetData, type SiteDocumentControllerGetError, type SiteDocumentControllerGetErrors, type SiteDocumentControllerGetResponse, type SiteDocumentControllerGetResponses, type SiteDocumentControllerListData, type SiteDocumentControllerListError, type SiteDocumentControllerListErrors, type SiteDocumentControllerListResponse, type SiteDocumentControllerListResponses, type SiteDocumentControllerRemoveData, type SiteDocumentControllerRemoveError, type SiteDocumentControllerRemoveErrors, type SiteDocumentControllerRemoveResponse, type SiteDocumentControllerRemoveResponses, type SiteDocumentControllerUpdateData, type SiteDocumentControllerUpdateError, type SiteDocumentControllerUpdateErrors, type SiteDocumentControllerUpdateResponse, type SiteDocumentControllerUpdateResponses, type SiteResponseDto, type SitesResource, type TimeLineControllerGetData, type TimeLineControllerGetError, type TimeLineControllerGetErrors, type TimeLineControllerGetResponse, type TimeLineControllerGetResponses, type TimeLineControllerListData, type TimeLineControllerListError, type TimeLineControllerListErrors, type TimeLineControllerListResponse, type TimeLineControllerListResponses, type TimeLineResponseDto, type TimesheetDetailDto, type TimesheetLineDto, type TimesheetPublicControllerGetData, type TimesheetPublicControllerGetError, type TimesheetPublicControllerGetErrors, type TimesheetPublicControllerGetResponse, type TimesheetPublicControllerGetResponses, type TimesheetPublicControllerListData, type TimesheetPublicControllerListError, type TimesheetPublicControllerListErrors, type TimesheetPublicControllerListResponse, type TimesheetPublicControllerListResponses, type TimesheetSummaryDto, type UpdateAssetClassDto, type UpdateAssetClassPropertyDto, type UpdateAssetDto, type UpdateAssetPropertyDto, type UpdateConfigItemDto, type UpdateCostCodeDto, type UpdateCustomerDto, type UpdateDocumentDto, type UpdateGroupDto, type UpdateIssueDto, type UpdateJobDto, type UpdateProjectDto, type UpdateSiteDto, type UpdateUserPropertyDto, type UpdateZoneDto, type UserControllerCreateUserData, type UserControllerCreateUserError, type UserControllerCreateUserErrors, type UserControllerCreateUserResponse, type UserControllerCreateUserResponses, type UserControllerGetUserData, type UserControllerGetUserError, type UserControllerGetUserErrors, type UserControllerGetUserResponse, type UserControllerGetUserResponses, type UserControllerListUsersData, type UserControllerListUsersError, type UserControllerListUsersErrors, type UserControllerListUsersResponse, type UserControllerListUsersResponses, type UserControllerUpdateUserData, type UserControllerUpdateUserError, type UserControllerUpdateUserErrors, type UserControllerUpdateUserResponse, type UserControllerUpdateUserResponses, type UserDocumentControllerCreateData, type UserDocumentControllerCreateError, type UserDocumentControllerCreateErrors, type UserDocumentControllerCreateResponse, type UserDocumentControllerCreateResponses, type UserDocumentControllerGetData, type UserDocumentControllerGetError, type UserDocumentControllerGetErrors, type UserDocumentControllerGetResponse, type UserDocumentControllerGetResponses, type UserDocumentControllerListData, type UserDocumentControllerListError, type UserDocumentControllerListErrors, type UserDocumentControllerListResponse, type UserDocumentControllerListResponses, type UserDocumentControllerRemoveData, type UserDocumentControllerRemoveError, type UserDocumentControllerRemoveErrors, type UserDocumentControllerRemoveResponse, type UserDocumentControllerRemoveResponses, type UserDocumentControllerUpdateData, type UserDocumentControllerUpdateError, type UserDocumentControllerUpdateErrors, type UserDocumentControllerUpdateResponse, type UserDocumentControllerUpdateResponses, type UserPropertiesResource, type UserPropertyControllerDeleteUserPropertyData, type UserPropertyControllerDeleteUserPropertyError, type UserPropertyControllerDeleteUserPropertyErrors, type UserPropertyControllerDeleteUserPropertyResponse, type UserPropertyControllerDeleteUserPropertyResponses, type UserPropertyControllerUpdateUserPropertyData, type UserPropertyControllerUpdateUserPropertyError, type UserPropertyControllerUpdateUserPropertyErrors, type UserPropertyControllerUpdateUserPropertyResponse, type UserPropertyControllerUpdateUserPropertyResponses, type UserPropertyResponseDto, type UserResponseDto, type UsersResource, WakataApiError, WakataAuthError, WakataClient, type WakataClientOptions, WakataConflictError, type WakataErrorEnvelope, WakataNotFoundError, WakataPermissionError, WakataRateLimitError, WakataServerError, WakataValidationError, type ZoneControllerCreateData, type ZoneControllerCreateError, type ZoneControllerCreateErrors, type ZoneControllerCreateResponse, type ZoneControllerCreateResponses, type ZoneControllerDeleteData, type ZoneControllerDeleteError, type ZoneControllerDeleteErrors, type ZoneControllerDeleteResponse, type ZoneControllerDeleteResponses, type ZoneControllerGetData, type ZoneControllerGetError, type ZoneControllerGetErrors, type ZoneControllerGetResponse, type ZoneControllerGetResponses, type ZoneControllerListData, type ZoneControllerListError, type ZoneControllerListErrors, type ZoneControllerListResponse, type ZoneControllerListResponses, type ZoneControllerUpdateData, type ZoneControllerUpdateError, type ZoneControllerUpdateErrors, type ZoneControllerUpdateResponse, type ZoneControllerUpdateResponses, type ZoneResponseDto, generateIdempotencyKey, mapApiError };