@wakata-dev/api-client 0.4.0 → 0.5.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.cjs +102 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +667 -2
- package/dist/index.d.ts +667 -2
- package/dist/index.js +102 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -473,6 +473,37 @@ type CreateGroupDto = {
|
|
|
473
473
|
*/
|
|
474
474
|
include_all_checklists?: boolean;
|
|
475
475
|
};
|
|
476
|
+
type CreateProjectDto = {
|
|
477
|
+
/**
|
|
478
|
+
* Project name
|
|
479
|
+
*/
|
|
480
|
+
name: string;
|
|
481
|
+
/**
|
|
482
|
+
* Site publicId (UUID) the project belongs to
|
|
483
|
+
*/
|
|
484
|
+
site_id: string;
|
|
485
|
+
/**
|
|
486
|
+
* Project code (unique per company)
|
|
487
|
+
*/
|
|
488
|
+
project_code: string;
|
|
489
|
+
/**
|
|
490
|
+
* Start date (ISO)
|
|
491
|
+
*/
|
|
492
|
+
started_at: string;
|
|
493
|
+
/**
|
|
494
|
+
* Description
|
|
495
|
+
*/
|
|
496
|
+
description?: string;
|
|
497
|
+
/**
|
|
498
|
+
* BigInt as string. Project category id (config_items.id, numeric string)
|
|
499
|
+
*/
|
|
500
|
+
project_category_id?: string;
|
|
501
|
+
status?: 'active' | 'suspended' | 'completed';
|
|
502
|
+
/**
|
|
503
|
+
* Expected end date (ISO)
|
|
504
|
+
*/
|
|
505
|
+
expected_end_date?: string;
|
|
506
|
+
};
|
|
476
507
|
type CreateSiteDto = {
|
|
477
508
|
/**
|
|
478
509
|
* Site name
|
|
@@ -605,6 +636,10 @@ type DeleteGroupResponseDto = {
|
|
|
605
636
|
message: string;
|
|
606
637
|
public_id: string;
|
|
607
638
|
};
|
|
639
|
+
type DeleteProjectResponseDto = {
|
|
640
|
+
message: string;
|
|
641
|
+
public_id: string;
|
|
642
|
+
};
|
|
608
643
|
type DeleteSiteResponseDto = {
|
|
609
644
|
/**
|
|
610
645
|
* Success message
|
|
@@ -880,6 +915,35 @@ type EmbeddedCustomerPropertyDto = {
|
|
|
880
915
|
[key: string]: unknown;
|
|
881
916
|
} | null;
|
|
882
917
|
};
|
|
918
|
+
type EmbeddedProjectPropertyDto = {
|
|
919
|
+
/**
|
|
920
|
+
* BigInt as string. Property definition id (config_items.id)
|
|
921
|
+
*/
|
|
922
|
+
property_id: string;
|
|
923
|
+
/**
|
|
924
|
+
* BigInt as string. Property value row id — definition lives on config_items
|
|
925
|
+
*/
|
|
926
|
+
project_property_id: string;
|
|
927
|
+
property_name: string;
|
|
928
|
+
text_value: {
|
|
929
|
+
[key: string]: unknown;
|
|
930
|
+
} | null;
|
|
931
|
+
numeric_value: {
|
|
932
|
+
[key: string]: unknown;
|
|
933
|
+
} | null;
|
|
934
|
+
date_value: {
|
|
935
|
+
[key: string]: unknown;
|
|
936
|
+
} | null;
|
|
937
|
+
updated_at: {
|
|
938
|
+
[key: string]: unknown;
|
|
939
|
+
} | null;
|
|
940
|
+
updated_by: {
|
|
941
|
+
[key: string]: unknown;
|
|
942
|
+
} | null;
|
|
943
|
+
updated_by_name: {
|
|
944
|
+
[key: string]: unknown;
|
|
945
|
+
} | null;
|
|
946
|
+
};
|
|
883
947
|
type EmbeddedUserPropertyDto = {
|
|
884
948
|
/**
|
|
885
949
|
* Property ID. Serialized as a string in public API responses (BigInt-safe).
|
|
@@ -1505,6 +1569,27 @@ type ListIssuesResponseDto = {
|
|
|
1505
1569
|
*/
|
|
1506
1570
|
total_pages: number;
|
|
1507
1571
|
};
|
|
1572
|
+
type ListProjectAssetsResponseDto = {
|
|
1573
|
+
data: Array<ProjectAssetDto>;
|
|
1574
|
+
page: number;
|
|
1575
|
+
per_page: number;
|
|
1576
|
+
total: number;
|
|
1577
|
+
total_pages: number;
|
|
1578
|
+
};
|
|
1579
|
+
type ListProjectUsersResponseDto = {
|
|
1580
|
+
data: Array<ProjectUserDto>;
|
|
1581
|
+
page: number;
|
|
1582
|
+
per_page: number;
|
|
1583
|
+
total: number;
|
|
1584
|
+
total_pages: number;
|
|
1585
|
+
};
|
|
1586
|
+
type ListProjectsResponseDto = {
|
|
1587
|
+
data: Array<ProjectResponseDto>;
|
|
1588
|
+
page: number;
|
|
1589
|
+
per_page: number;
|
|
1590
|
+
total: number;
|
|
1591
|
+
total_pages: number;
|
|
1592
|
+
};
|
|
1508
1593
|
type ListSitesResponseDto = {
|
|
1509
1594
|
/**
|
|
1510
1595
|
* List of sites
|
|
@@ -1541,6 +1626,124 @@ type ListZonesResponseDto = {
|
|
|
1541
1626
|
total: number;
|
|
1542
1627
|
total_pages: number;
|
|
1543
1628
|
};
|
|
1629
|
+
type ProjectAssetDto = {
|
|
1630
|
+
/**
|
|
1631
|
+
* Assignment (approval) row publicId
|
|
1632
|
+
*/
|
|
1633
|
+
project_asset_approval_id: string;
|
|
1634
|
+
/**
|
|
1635
|
+
* Asset publicId
|
|
1636
|
+
*/
|
|
1637
|
+
asset_id: string;
|
|
1638
|
+
/**
|
|
1639
|
+
* Asset number
|
|
1640
|
+
*/
|
|
1641
|
+
asset_number: string;
|
|
1642
|
+
/**
|
|
1643
|
+
* Assignment approval status
|
|
1644
|
+
*/
|
|
1645
|
+
approval_status: 'pending' | 'in_review' | 'approved' | 'rejected' | 'expired' | 'returned';
|
|
1646
|
+
approval_number: {
|
|
1647
|
+
[key: string]: unknown;
|
|
1648
|
+
} | null;
|
|
1649
|
+
approval_date: {
|
|
1650
|
+
[key: string]: unknown;
|
|
1651
|
+
} | null;
|
|
1652
|
+
expiry_date: {
|
|
1653
|
+
[key: string]: unknown;
|
|
1654
|
+
} | null;
|
|
1655
|
+
rejection_reason: {
|
|
1656
|
+
[key: string]: unknown;
|
|
1657
|
+
} | null;
|
|
1658
|
+
created_at: string;
|
|
1659
|
+
updated_at: string;
|
|
1660
|
+
};
|
|
1661
|
+
type ProjectResponseDto = {
|
|
1662
|
+
public_id: string;
|
|
1663
|
+
/**
|
|
1664
|
+
* Site publicId
|
|
1665
|
+
*/
|
|
1666
|
+
site_id: string;
|
|
1667
|
+
/**
|
|
1668
|
+
* Site name
|
|
1669
|
+
*/
|
|
1670
|
+
site_name: {
|
|
1671
|
+
[key: string]: unknown;
|
|
1672
|
+
} | null;
|
|
1673
|
+
name: string;
|
|
1674
|
+
project_code: string;
|
|
1675
|
+
description: {
|
|
1676
|
+
[key: string]: unknown;
|
|
1677
|
+
} | null;
|
|
1678
|
+
/**
|
|
1679
|
+
* Category config-item id
|
|
1680
|
+
*/
|
|
1681
|
+
project_category_id: {
|
|
1682
|
+
[key: string]: unknown;
|
|
1683
|
+
} | null;
|
|
1684
|
+
/**
|
|
1685
|
+
* Category name
|
|
1686
|
+
*/
|
|
1687
|
+
project_category: {
|
|
1688
|
+
[key: string]: unknown;
|
|
1689
|
+
} | null;
|
|
1690
|
+
status: 'active' | 'suspended' | 'completed';
|
|
1691
|
+
suspended_reason: {
|
|
1692
|
+
[key: string]: unknown;
|
|
1693
|
+
} | null;
|
|
1694
|
+
started_at: string;
|
|
1695
|
+
expected_end_date: {
|
|
1696
|
+
[key: string]: unknown;
|
|
1697
|
+
} | null;
|
|
1698
|
+
completed_at: {
|
|
1699
|
+
[key: string]: unknown;
|
|
1700
|
+
} | null;
|
|
1701
|
+
/**
|
|
1702
|
+
* Count of approved asset assignments
|
|
1703
|
+
*/
|
|
1704
|
+
asset_count: number;
|
|
1705
|
+
/**
|
|
1706
|
+
* Count of approved user assignments
|
|
1707
|
+
*/
|
|
1708
|
+
user_count: number;
|
|
1709
|
+
created_at: string;
|
|
1710
|
+
updated_at: string;
|
|
1711
|
+
project_properties: Array<EmbeddedProjectPropertyDto>;
|
|
1712
|
+
};
|
|
1713
|
+
type ProjectUserDto = {
|
|
1714
|
+
/**
|
|
1715
|
+
* Assignment (approval) row publicId
|
|
1716
|
+
*/
|
|
1717
|
+
project_user_approval_id: string;
|
|
1718
|
+
/**
|
|
1719
|
+
* User publicId
|
|
1720
|
+
*/
|
|
1721
|
+
user_id: string;
|
|
1722
|
+
/**
|
|
1723
|
+
* User full name
|
|
1724
|
+
*/
|
|
1725
|
+
user_name: {
|
|
1726
|
+
[key: string]: unknown;
|
|
1727
|
+
} | null;
|
|
1728
|
+
/**
|
|
1729
|
+
* Assignment approval status
|
|
1730
|
+
*/
|
|
1731
|
+
approval_status: 'pending' | 'in_review' | 'approved' | 'rejected' | 'expired' | 'returned';
|
|
1732
|
+
approval_number: {
|
|
1733
|
+
[key: string]: unknown;
|
|
1734
|
+
} | null;
|
|
1735
|
+
approval_date: {
|
|
1736
|
+
[key: string]: unknown;
|
|
1737
|
+
} | null;
|
|
1738
|
+
expiry_date: {
|
|
1739
|
+
[key: string]: unknown;
|
|
1740
|
+
} | null;
|
|
1741
|
+
rejection_reason: {
|
|
1742
|
+
[key: string]: unknown;
|
|
1743
|
+
} | null;
|
|
1744
|
+
created_at: string;
|
|
1745
|
+
updated_at: string;
|
|
1746
|
+
};
|
|
1544
1747
|
type PublicCreateAssetDto = {
|
|
1545
1748
|
/**
|
|
1546
1749
|
* Asset number
|
|
@@ -2022,6 +2225,51 @@ type UpdateIssueDto = {
|
|
|
2022
2225
|
*/
|
|
2023
2226
|
user_id: string;
|
|
2024
2227
|
};
|
|
2228
|
+
type UpdateProjectDto = {
|
|
2229
|
+
/**
|
|
2230
|
+
* Project name
|
|
2231
|
+
*/
|
|
2232
|
+
name?: string;
|
|
2233
|
+
/**
|
|
2234
|
+
* Project code (unique per company)
|
|
2235
|
+
*/
|
|
2236
|
+
project_code?: string;
|
|
2237
|
+
/**
|
|
2238
|
+
* Description
|
|
2239
|
+
*/
|
|
2240
|
+
description?: {
|
|
2241
|
+
[key: string]: unknown;
|
|
2242
|
+
} | null;
|
|
2243
|
+
/**
|
|
2244
|
+
* Project category id (numeric)
|
|
2245
|
+
*/
|
|
2246
|
+
project_category_id?: {
|
|
2247
|
+
[key: string]: unknown;
|
|
2248
|
+
} | null;
|
|
2249
|
+
status?: 'active' | 'suspended' | 'completed';
|
|
2250
|
+
/**
|
|
2251
|
+
* Reason when status is suspended
|
|
2252
|
+
*/
|
|
2253
|
+
suspended_reason?: {
|
|
2254
|
+
[key: string]: unknown;
|
|
2255
|
+
} | null;
|
|
2256
|
+
/**
|
|
2257
|
+
* Start date (ISO)
|
|
2258
|
+
*/
|
|
2259
|
+
started_at?: string;
|
|
2260
|
+
/**
|
|
2261
|
+
* Expected end date (ISO)
|
|
2262
|
+
*/
|
|
2263
|
+
expected_end_date?: {
|
|
2264
|
+
[key: string]: unknown;
|
|
2265
|
+
} | null;
|
|
2266
|
+
/**
|
|
2267
|
+
* Completed date (ISO)
|
|
2268
|
+
*/
|
|
2269
|
+
completed_at?: {
|
|
2270
|
+
[key: string]: unknown;
|
|
2271
|
+
} | null;
|
|
2272
|
+
};
|
|
2025
2273
|
type UpdateSiteDto = {
|
|
2026
2274
|
/**
|
|
2027
2275
|
* Site name
|
|
@@ -6460,6 +6708,372 @@ type CompanyDocumentControllerCreateResponses = {
|
|
|
6460
6708
|
201: DocumentResponseDto;
|
|
6461
6709
|
};
|
|
6462
6710
|
type CompanyDocumentControllerCreateResponse = CompanyDocumentControllerCreateResponses[keyof CompanyDocumentControllerCreateResponses];
|
|
6711
|
+
type ProjectControllerListData = {
|
|
6712
|
+
body?: never;
|
|
6713
|
+
path?: never;
|
|
6714
|
+
query?: {
|
|
6715
|
+
/**
|
|
6716
|
+
* Results per page
|
|
6717
|
+
*/
|
|
6718
|
+
per_page?: number;
|
|
6719
|
+
/**
|
|
6720
|
+
* Page number
|
|
6721
|
+
*/
|
|
6722
|
+
page?: number;
|
|
6723
|
+
direction?: 'asc' | 'desc';
|
|
6724
|
+
/**
|
|
6725
|
+
* Sort field: name, project_code, status, started_at, created_at, updated_at, id (default updated_at)
|
|
6726
|
+
*/
|
|
6727
|
+
sort?: string;
|
|
6728
|
+
/**
|
|
6729
|
+
* Filter by name (case-insensitive partial)
|
|
6730
|
+
*/
|
|
6731
|
+
name?: string;
|
|
6732
|
+
/**
|
|
6733
|
+
* Filter by project code (case-insensitive partial)
|
|
6734
|
+
*/
|
|
6735
|
+
project_code?: string;
|
|
6736
|
+
/**
|
|
6737
|
+
* Filter by status
|
|
6738
|
+
*/
|
|
6739
|
+
status?: 'active' | 'suspended' | 'completed';
|
|
6740
|
+
/**
|
|
6741
|
+
* Filter to one site by its publicId (UUID)
|
|
6742
|
+
*/
|
|
6743
|
+
site_id?: string;
|
|
6744
|
+
/**
|
|
6745
|
+
* Filter: updated_at >= (ISO) — incremental sync watermark
|
|
6746
|
+
*/
|
|
6747
|
+
project_date_updated_from?: string;
|
|
6748
|
+
/**
|
|
6749
|
+
* Filter: updated_at <= (ISO)
|
|
6750
|
+
*/
|
|
6751
|
+
project_date_updated_to?: string;
|
|
6752
|
+
};
|
|
6753
|
+
url: '/project/list';
|
|
6754
|
+
};
|
|
6755
|
+
type ProjectControllerListErrors = {
|
|
6756
|
+
/**
|
|
6757
|
+
* 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`.
|
|
6758
|
+
*/
|
|
6759
|
+
400: ApiErrorResponse;
|
|
6760
|
+
/**
|
|
6761
|
+
* 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.
|
|
6762
|
+
*/
|
|
6763
|
+
401: ApiErrorResponse;
|
|
6764
|
+
/**
|
|
6765
|
+
* 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).
|
|
6766
|
+
*/
|
|
6767
|
+
403: ApiErrorResponse;
|
|
6768
|
+
/**
|
|
6769
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
6770
|
+
*/
|
|
6771
|
+
429: ApiErrorResponse;
|
|
6772
|
+
/**
|
|
6773
|
+
* 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.
|
|
6774
|
+
*/
|
|
6775
|
+
500: ApiErrorResponse;
|
|
6776
|
+
};
|
|
6777
|
+
type ProjectControllerListError = ProjectControllerListErrors[keyof ProjectControllerListErrors];
|
|
6778
|
+
type ProjectControllerListResponses = {
|
|
6779
|
+
200: ListProjectsResponseDto;
|
|
6780
|
+
};
|
|
6781
|
+
type ProjectControllerListResponse = ProjectControllerListResponses[keyof ProjectControllerListResponses];
|
|
6782
|
+
type ProjectControllerDeleteData = {
|
|
6783
|
+
body?: never;
|
|
6784
|
+
path: {
|
|
6785
|
+
/**
|
|
6786
|
+
* Project public ID
|
|
6787
|
+
*/
|
|
6788
|
+
id: string;
|
|
6789
|
+
};
|
|
6790
|
+
query?: never;
|
|
6791
|
+
url: '/project/{id}';
|
|
6792
|
+
};
|
|
6793
|
+
type ProjectControllerDeleteErrors = {
|
|
6794
|
+
/**
|
|
6795
|
+
* 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.
|
|
6796
|
+
*/
|
|
6797
|
+
401: ApiErrorResponse;
|
|
6798
|
+
/**
|
|
6799
|
+
* 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).
|
|
6800
|
+
*/
|
|
6801
|
+
403: ApiErrorResponse;
|
|
6802
|
+
/**
|
|
6803
|
+
* 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.
|
|
6804
|
+
*/
|
|
6805
|
+
404: ApiErrorResponse;
|
|
6806
|
+
/**
|
|
6807
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
6808
|
+
*/
|
|
6809
|
+
429: ApiErrorResponse;
|
|
6810
|
+
/**
|
|
6811
|
+
* 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.
|
|
6812
|
+
*/
|
|
6813
|
+
500: ApiErrorResponse;
|
|
6814
|
+
};
|
|
6815
|
+
type ProjectControllerDeleteError = ProjectControllerDeleteErrors[keyof ProjectControllerDeleteErrors];
|
|
6816
|
+
type ProjectControllerDeleteResponses = {
|
|
6817
|
+
200: DeleteProjectResponseDto;
|
|
6818
|
+
};
|
|
6819
|
+
type ProjectControllerDeleteResponse = ProjectControllerDeleteResponses[keyof ProjectControllerDeleteResponses];
|
|
6820
|
+
type ProjectControllerGetData = {
|
|
6821
|
+
body?: never;
|
|
6822
|
+
path: {
|
|
6823
|
+
/**
|
|
6824
|
+
* Project public ID
|
|
6825
|
+
*/
|
|
6826
|
+
id: string;
|
|
6827
|
+
};
|
|
6828
|
+
query?: never;
|
|
6829
|
+
url: '/project/{id}';
|
|
6830
|
+
};
|
|
6831
|
+
type ProjectControllerGetErrors = {
|
|
6832
|
+
/**
|
|
6833
|
+
* 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.
|
|
6834
|
+
*/
|
|
6835
|
+
401: ApiErrorResponse;
|
|
6836
|
+
/**
|
|
6837
|
+
* 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).
|
|
6838
|
+
*/
|
|
6839
|
+
403: ApiErrorResponse;
|
|
6840
|
+
/**
|
|
6841
|
+
* 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.
|
|
6842
|
+
*/
|
|
6843
|
+
404: ApiErrorResponse;
|
|
6844
|
+
/**
|
|
6845
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
6846
|
+
*/
|
|
6847
|
+
429: ApiErrorResponse;
|
|
6848
|
+
/**
|
|
6849
|
+
* 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.
|
|
6850
|
+
*/
|
|
6851
|
+
500: ApiErrorResponse;
|
|
6852
|
+
};
|
|
6853
|
+
type ProjectControllerGetError = ProjectControllerGetErrors[keyof ProjectControllerGetErrors];
|
|
6854
|
+
type ProjectControllerGetResponses = {
|
|
6855
|
+
200: ProjectResponseDto;
|
|
6856
|
+
};
|
|
6857
|
+
type ProjectControllerGetResponse = ProjectControllerGetResponses[keyof ProjectControllerGetResponses];
|
|
6858
|
+
type ProjectControllerUpdateData = {
|
|
6859
|
+
body: UpdateProjectDto;
|
|
6860
|
+
headers?: {
|
|
6861
|
+
/**
|
|
6862
|
+
* 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.
|
|
6863
|
+
*/
|
|
6864
|
+
'Idempotency-Key'?: string;
|
|
6865
|
+
};
|
|
6866
|
+
path: {
|
|
6867
|
+
/**
|
|
6868
|
+
* Project public ID
|
|
6869
|
+
*/
|
|
6870
|
+
id: string;
|
|
6871
|
+
};
|
|
6872
|
+
query?: never;
|
|
6873
|
+
url: '/project/{id}';
|
|
6874
|
+
};
|
|
6875
|
+
type ProjectControllerUpdateErrors = {
|
|
6876
|
+
/**
|
|
6877
|
+
* 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`.
|
|
6878
|
+
*/
|
|
6879
|
+
400: ApiErrorResponse;
|
|
6880
|
+
/**
|
|
6881
|
+
* 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.
|
|
6882
|
+
*/
|
|
6883
|
+
401: ApiErrorResponse;
|
|
6884
|
+
/**
|
|
6885
|
+
* 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).
|
|
6886
|
+
*/
|
|
6887
|
+
403: ApiErrorResponse;
|
|
6888
|
+
/**
|
|
6889
|
+
* 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.
|
|
6890
|
+
*/
|
|
6891
|
+
404: ApiErrorResponse;
|
|
6892
|
+
/**
|
|
6893
|
+
* 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`).
|
|
6894
|
+
*/
|
|
6895
|
+
409: ApiErrorResponse;
|
|
6896
|
+
/**
|
|
6897
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
6898
|
+
*/
|
|
6899
|
+
429: ApiErrorResponse;
|
|
6900
|
+
/**
|
|
6901
|
+
* 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.
|
|
6902
|
+
*/
|
|
6903
|
+
500: ApiErrorResponse;
|
|
6904
|
+
};
|
|
6905
|
+
type ProjectControllerUpdateError = ProjectControllerUpdateErrors[keyof ProjectControllerUpdateErrors];
|
|
6906
|
+
type ProjectControllerUpdateResponses = {
|
|
6907
|
+
200: ProjectResponseDto;
|
|
6908
|
+
};
|
|
6909
|
+
type ProjectControllerUpdateResponse = ProjectControllerUpdateResponses[keyof ProjectControllerUpdateResponses];
|
|
6910
|
+
type ProjectControllerListAssetsData = {
|
|
6911
|
+
body?: never;
|
|
6912
|
+
path: {
|
|
6913
|
+
/**
|
|
6914
|
+
* Project public ID
|
|
6915
|
+
*/
|
|
6916
|
+
id: string;
|
|
6917
|
+
};
|
|
6918
|
+
query?: {
|
|
6919
|
+
/**
|
|
6920
|
+
* Results per page
|
|
6921
|
+
*/
|
|
6922
|
+
per_page?: number;
|
|
6923
|
+
/**
|
|
6924
|
+
* Page number
|
|
6925
|
+
*/
|
|
6926
|
+
page?: number;
|
|
6927
|
+
direction?: 'asc' | 'desc';
|
|
6928
|
+
/**
|
|
6929
|
+
* Sort field: approval_date, expiry_date, approval_status, created_at, updated_at, id (default updated_at)
|
|
6930
|
+
*/
|
|
6931
|
+
sort?: string;
|
|
6932
|
+
/**
|
|
6933
|
+
* Filter by approval status (e.g. approved)
|
|
6934
|
+
*/
|
|
6935
|
+
approval_status?: 'pending' | 'in_review' | 'approved' | 'rejected' | 'expired' | 'returned';
|
|
6936
|
+
};
|
|
6937
|
+
url: '/project/{id}/assets';
|
|
6938
|
+
};
|
|
6939
|
+
type ProjectControllerListAssetsErrors = {
|
|
6940
|
+
/**
|
|
6941
|
+
* 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`.
|
|
6942
|
+
*/
|
|
6943
|
+
400: ApiErrorResponse;
|
|
6944
|
+
/**
|
|
6945
|
+
* 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.
|
|
6946
|
+
*/
|
|
6947
|
+
401: ApiErrorResponse;
|
|
6948
|
+
/**
|
|
6949
|
+
* 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).
|
|
6950
|
+
*/
|
|
6951
|
+
403: ApiErrorResponse;
|
|
6952
|
+
/**
|
|
6953
|
+
* 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.
|
|
6954
|
+
*/
|
|
6955
|
+
404: ApiErrorResponse;
|
|
6956
|
+
/**
|
|
6957
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
6958
|
+
*/
|
|
6959
|
+
429: ApiErrorResponse;
|
|
6960
|
+
/**
|
|
6961
|
+
* 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.
|
|
6962
|
+
*/
|
|
6963
|
+
500: ApiErrorResponse;
|
|
6964
|
+
};
|
|
6965
|
+
type ProjectControllerListAssetsError = ProjectControllerListAssetsErrors[keyof ProjectControllerListAssetsErrors];
|
|
6966
|
+
type ProjectControllerListAssetsResponses = {
|
|
6967
|
+
200: ListProjectAssetsResponseDto;
|
|
6968
|
+
};
|
|
6969
|
+
type ProjectControllerListAssetsResponse = ProjectControllerListAssetsResponses[keyof ProjectControllerListAssetsResponses];
|
|
6970
|
+
type ProjectControllerListUsersData = {
|
|
6971
|
+
body?: never;
|
|
6972
|
+
path: {
|
|
6973
|
+
/**
|
|
6974
|
+
* Project public ID
|
|
6975
|
+
*/
|
|
6976
|
+
id: string;
|
|
6977
|
+
};
|
|
6978
|
+
query?: {
|
|
6979
|
+
/**
|
|
6980
|
+
* Results per page
|
|
6981
|
+
*/
|
|
6982
|
+
per_page?: number;
|
|
6983
|
+
/**
|
|
6984
|
+
* Page number
|
|
6985
|
+
*/
|
|
6986
|
+
page?: number;
|
|
6987
|
+
direction?: 'asc' | 'desc';
|
|
6988
|
+
/**
|
|
6989
|
+
* Sort field: approval_date, expiry_date, approval_status, created_at, updated_at, id (default updated_at)
|
|
6990
|
+
*/
|
|
6991
|
+
sort?: string;
|
|
6992
|
+
/**
|
|
6993
|
+
* Filter by approval status (e.g. approved)
|
|
6994
|
+
*/
|
|
6995
|
+
approval_status?: 'pending' | 'in_review' | 'approved' | 'rejected' | 'expired' | 'returned';
|
|
6996
|
+
};
|
|
6997
|
+
url: '/project/{id}/users';
|
|
6998
|
+
};
|
|
6999
|
+
type ProjectControllerListUsersErrors = {
|
|
7000
|
+
/**
|
|
7001
|
+
* 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`.
|
|
7002
|
+
*/
|
|
7003
|
+
400: ApiErrorResponse;
|
|
7004
|
+
/**
|
|
7005
|
+
* 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.
|
|
7006
|
+
*/
|
|
7007
|
+
401: ApiErrorResponse;
|
|
7008
|
+
/**
|
|
7009
|
+
* 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).
|
|
7010
|
+
*/
|
|
7011
|
+
403: ApiErrorResponse;
|
|
7012
|
+
/**
|
|
7013
|
+
* 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.
|
|
7014
|
+
*/
|
|
7015
|
+
404: ApiErrorResponse;
|
|
7016
|
+
/**
|
|
7017
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
7018
|
+
*/
|
|
7019
|
+
429: ApiErrorResponse;
|
|
7020
|
+
/**
|
|
7021
|
+
* 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.
|
|
7022
|
+
*/
|
|
7023
|
+
500: ApiErrorResponse;
|
|
7024
|
+
};
|
|
7025
|
+
type ProjectControllerListUsersError = ProjectControllerListUsersErrors[keyof ProjectControllerListUsersErrors];
|
|
7026
|
+
type ProjectControllerListUsersResponses = {
|
|
7027
|
+
200: ListProjectUsersResponseDto;
|
|
7028
|
+
};
|
|
7029
|
+
type ProjectControllerListUsersResponse = ProjectControllerListUsersResponses[keyof ProjectControllerListUsersResponses];
|
|
7030
|
+
type ProjectControllerCreateData = {
|
|
7031
|
+
body: CreateProjectDto;
|
|
7032
|
+
headers?: {
|
|
7033
|
+
/**
|
|
7034
|
+
* 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.
|
|
7035
|
+
*/
|
|
7036
|
+
'Idempotency-Key'?: string;
|
|
7037
|
+
};
|
|
7038
|
+
path?: never;
|
|
7039
|
+
query?: never;
|
|
7040
|
+
url: '/project';
|
|
7041
|
+
};
|
|
7042
|
+
type ProjectControllerCreateErrors = {
|
|
7043
|
+
/**
|
|
7044
|
+
* 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`.
|
|
7045
|
+
*/
|
|
7046
|
+
400: ApiErrorResponse;
|
|
7047
|
+
/**
|
|
7048
|
+
* 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.
|
|
7049
|
+
*/
|
|
7050
|
+
401: ApiErrorResponse;
|
|
7051
|
+
/**
|
|
7052
|
+
* 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).
|
|
7053
|
+
*/
|
|
7054
|
+
403: ApiErrorResponse;
|
|
7055
|
+
/**
|
|
7056
|
+
* 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.
|
|
7057
|
+
*/
|
|
7058
|
+
404: ApiErrorResponse;
|
|
7059
|
+
/**
|
|
7060
|
+
* 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`).
|
|
7061
|
+
*/
|
|
7062
|
+
409: ApiErrorResponse;
|
|
7063
|
+
/**
|
|
7064
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
7065
|
+
*/
|
|
7066
|
+
429: ApiErrorResponse;
|
|
7067
|
+
/**
|
|
7068
|
+
* 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.
|
|
7069
|
+
*/
|
|
7070
|
+
500: ApiErrorResponse;
|
|
7071
|
+
};
|
|
7072
|
+
type ProjectControllerCreateError = ProjectControllerCreateErrors[keyof ProjectControllerCreateErrors];
|
|
7073
|
+
type ProjectControllerCreateResponses = {
|
|
7074
|
+
201: ProjectResponseDto;
|
|
7075
|
+
};
|
|
7076
|
+
type ProjectControllerCreateResponse = ProjectControllerCreateResponses[keyof ProjectControllerCreateResponses];
|
|
6463
7077
|
type CustomerControllerListData = {
|
|
6464
7078
|
body?: never;
|
|
6465
7079
|
path?: never;
|
|
@@ -7639,7 +8253,11 @@ declare const assetControllerListAssets: <ThrowOnError extends boolean = false>(
|
|
|
7639
8253
|
data?: Array<{
|
|
7640
8254
|
id?: string;
|
|
7641
8255
|
publicId?: string;
|
|
7642
|
-
assetNumber
|
|
8256
|
+
assetNumber
|
|
8257
|
+
/**
|
|
8258
|
+
* Get a company document
|
|
8259
|
+
*/
|
|
8260
|
+
?: string;
|
|
7643
8261
|
assetClassId?: string;
|
|
7644
8262
|
siteId?: string;
|
|
7645
8263
|
companyId?: string;
|
|
@@ -7979,6 +8597,41 @@ declare const assetDocumentControllerUpdate: <ThrowOnError extends boolean = fal
|
|
|
7979
8597
|
* Create an asset document
|
|
7980
8598
|
*/
|
|
7981
8599
|
declare const assetDocumentControllerCreate: <ThrowOnError extends boolean = false>(options: Options<AssetDocumentControllerCreateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DocumentResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
8600
|
+
/**
|
|
8601
|
+
* List projects
|
|
8602
|
+
* Returns a paginated list of projects for the authenticated company. Filter by name, project_code, status, site (publicId), and an incremental `updated_at` watermark. Each row includes approved asset_count / user_count. Requires project:read.
|
|
8603
|
+
*/
|
|
8604
|
+
declare const projectControllerList: <ThrowOnError extends boolean = false>(options?: Options<ProjectControllerListData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListProjectsResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
8605
|
+
/**
|
|
8606
|
+
* Delete a project
|
|
8607
|
+
* Soft-deletes a project by its public_id (UUID). Requires project:delete.
|
|
8608
|
+
*/
|
|
8609
|
+
declare const projectControllerDelete: <ThrowOnError extends boolean = false>(options: Options<ProjectControllerDeleteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteProjectResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
8610
|
+
/**
|
|
8611
|
+
* Get a project by public ID
|
|
8612
|
+
* Returns one project (with embedded project_properties[] and approved asset/user counts) by its public_id (UUID). Requires project:read.
|
|
8613
|
+
*/
|
|
8614
|
+
declare const projectControllerGet: <ThrowOnError extends boolean = false>(options: Options<ProjectControllerGetData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ProjectResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
8615
|
+
/**
|
|
8616
|
+
* Update a project
|
|
8617
|
+
* Updates a project by its public_id (UUID). Only provided fields are changed. Requires project:update. Supports `Idempotency-Key`.
|
|
8618
|
+
*/
|
|
8619
|
+
declare const projectControllerUpdate: <ThrowOnError extends boolean = false>(options: Options<ProjectControllerUpdateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ProjectResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
8620
|
+
/**
|
|
8621
|
+
* List assets assigned to a project
|
|
8622
|
+
* Returns the asset assignments for a project (read-only). Each row is an approval record carrying approval_status, approval_number, approval_date and expiry_date. Filter by approval_status (e.g. approved). The assign/approve workflow happens in the app. Requires project_asset_approval:read.
|
|
8623
|
+
*/
|
|
8624
|
+
declare const projectControllerListAssets: <ThrowOnError extends boolean = false>(options: Options<ProjectControllerListAssetsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListProjectAssetsResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
8625
|
+
/**
|
|
8626
|
+
* List users assigned to a project
|
|
8627
|
+
* Returns the user assignments for a project (read-only). Each row is an approval record carrying approval_status, approval_number, approval_date and expiry_date. Filter by approval_status (e.g. approved). The assign/approve workflow happens in the app. Requires project_user_approval:read.
|
|
8628
|
+
*/
|
|
8629
|
+
declare const projectControllerListUsers: <ThrowOnError extends boolean = false>(options: Options<ProjectControllerListUsersData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListProjectUsersResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
8630
|
+
/**
|
|
8631
|
+
* Create a project
|
|
8632
|
+
* Creates a project under a site (by publicId) for the authenticated company. project_code is unique per company — a duplicate returns 409. Requires project:create. Supports `Idempotency-Key`.
|
|
8633
|
+
*/
|
|
8634
|
+
declare const projectControllerCreate: <ThrowOnError extends boolean = false>(options: Options<ProjectControllerCreateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ProjectResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
7982
8635
|
/**
|
|
7983
8636
|
* List customers
|
|
7984
8637
|
* Returns a paginated list of customers for the authenticated company. Supports name/status filters and an incremental `updated_at` watermark. Requires customer:read.
|
|
@@ -8210,6 +8863,17 @@ interface TimesheetsResource {
|
|
|
8210
8863
|
list: (options?: WakataMethodOptions<Parameters<typeof timesheetPublicControllerList>[0] extends infer O ? O : never>) => Promise<Awaited<ReturnType<typeof timesheetPublicControllerList>>['data']>;
|
|
8211
8864
|
get: (options: WakataMethodOptions<Parameters<typeof timesheetPublicControllerGet>[0]>) => Promise<Awaited<ReturnType<typeof timesheetPublicControllerGet>>['data']>;
|
|
8212
8865
|
}
|
|
8866
|
+
interface ProjectsResource {
|
|
8867
|
+
list: (options?: WakataMethodOptions<Parameters<typeof projectControllerList>[0] extends infer O ? O : never>) => Promise<Awaited<ReturnType<typeof projectControllerList>>['data']>;
|
|
8868
|
+
get: (options: WakataMethodOptions<Parameters<typeof projectControllerGet>[0]>) => Promise<Awaited<ReturnType<typeof projectControllerGet>>['data']>;
|
|
8869
|
+
create: (options: WakataMethodOptions<Parameters<typeof projectControllerCreate>[0]>) => Promise<Awaited<ReturnType<typeof projectControllerCreate>>['data']>;
|
|
8870
|
+
update: (options: WakataMethodOptions<Parameters<typeof projectControllerUpdate>[0]>) => Promise<Awaited<ReturnType<typeof projectControllerUpdate>>['data']>;
|
|
8871
|
+
delete: (options: WakataMethodOptions<Parameters<typeof projectControllerDelete>[0]>) => Promise<Awaited<ReturnType<typeof projectControllerDelete>>['data']>;
|
|
8872
|
+
/** Read the asset assignments for a project (filter by approval_status). */
|
|
8873
|
+
assets: (options: WakataMethodOptions<Parameters<typeof projectControllerListAssets>[0]>) => Promise<Awaited<ReturnType<typeof projectControllerListAssets>>['data']>;
|
|
8874
|
+
/** Read the user assignments for a project (filter by approval_status). */
|
|
8875
|
+
users: (options: WakataMethodOptions<Parameters<typeof projectControllerListUsers>[0]>) => Promise<Awaited<ReturnType<typeof projectControllerListUsers>>['data']>;
|
|
8876
|
+
}
|
|
8213
8877
|
/**
|
|
8214
8878
|
* One entity-document type's CRUD. All document types share the same DTOs, so
|
|
8215
8879
|
* the shape is typed against the asset-document operations (structurally
|
|
@@ -8269,6 +8933,7 @@ declare class WakataClient {
|
|
|
8269
8933
|
readonly groups: GroupsResource;
|
|
8270
8934
|
readonly devices: DevicesResource;
|
|
8271
8935
|
readonly timesheets: TimesheetsResource;
|
|
8936
|
+
readonly projects: ProjectsResource;
|
|
8272
8937
|
constructor(options: WakataClientOptions);
|
|
8273
8938
|
}
|
|
8274
8939
|
|
|
@@ -8442,4 +9107,4 @@ declare const PACKAGE_VERSION = "0.3.3";
|
|
|
8442
9107
|
/** Default base URL for the Wakata Public API (production). */
|
|
8443
9108
|
declare const DEFAULT_BASE_URL = "https://api.wakata.ai/api/v1";
|
|
8444
9109
|
|
|
8445
|
-
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 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 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 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 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 ListChecklistsResponseDto, type ListConfigItemsResponseDto, type ListConfigTablesResponseDto, type ListCustomersResponseDto, type ListDevicesResponseDto, type ListDocumentsResponseDto, type ListGroupsResponseDto, type ListInspectionsResponseDto, type ListIssuesResponseDto, type ListSitesResponseDto, type ListTimesheetsResponseDto, type ListZonesResponseDto, PACKAGE_NAME, PACKAGE_VERSION, 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 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 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 };
|
|
9110
|
+
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 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 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 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 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 ListChecklistsResponseDto, type ListConfigItemsResponseDto, type ListConfigTablesResponseDto, type ListCustomersResponseDto, type ListDevicesResponseDto, type ListDocumentsResponseDto, type ListGroupsResponseDto, type ListInspectionsResponseDto, type ListIssuesResponseDto, 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 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 };
|