@wakata-dev/api-client 0.3.1 → 0.3.2
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 +34 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +191 -3
- package/dist/index.d.ts +191 -3
- package/dist/index.js +34 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -66,6 +66,46 @@ type AssetClassListResponseDto = {
|
|
|
66
66
|
*/
|
|
67
67
|
total_pages: number;
|
|
68
68
|
};
|
|
69
|
+
type AssetClassPropertyResponseDto = {
|
|
70
|
+
/**
|
|
71
|
+
* Asset class property value-row ID
|
|
72
|
+
*/
|
|
73
|
+
id: string;
|
|
74
|
+
/**
|
|
75
|
+
* Asset class ID
|
|
76
|
+
*/
|
|
77
|
+
asset_class_id: string;
|
|
78
|
+
/**
|
|
79
|
+
* Field-definition ID (config_items.id)
|
|
80
|
+
*/
|
|
81
|
+
property_id: string;
|
|
82
|
+
/**
|
|
83
|
+
* Text value
|
|
84
|
+
*/
|
|
85
|
+
text_value: {
|
|
86
|
+
[key: string]: unknown;
|
|
87
|
+
} | null;
|
|
88
|
+
/**
|
|
89
|
+
* Numeric value
|
|
90
|
+
*/
|
|
91
|
+
numeric_value: {
|
|
92
|
+
[key: string]: unknown;
|
|
93
|
+
} | null;
|
|
94
|
+
/**
|
|
95
|
+
* Date value
|
|
96
|
+
*/
|
|
97
|
+
date_value: {
|
|
98
|
+
[key: string]: unknown;
|
|
99
|
+
} | null;
|
|
100
|
+
/**
|
|
101
|
+
* How the value was last set
|
|
102
|
+
*/
|
|
103
|
+
update_method: {
|
|
104
|
+
[key: string]: unknown;
|
|
105
|
+
} | null;
|
|
106
|
+
created_at: string;
|
|
107
|
+
updated_at: string;
|
|
108
|
+
};
|
|
69
109
|
type AssetClassResponseDto = {
|
|
70
110
|
/**
|
|
71
111
|
* Asset class public ID (UUID)
|
|
@@ -92,11 +132,17 @@ type AssetClassResponseDto = {
|
|
|
92
132
|
[key: string]: unknown;
|
|
93
133
|
};
|
|
94
134
|
/**
|
|
95
|
-
* Asset class photo file path
|
|
135
|
+
* Asset class photo file path (S3 key)
|
|
96
136
|
*/
|
|
97
137
|
asset_class_photo_file?: {
|
|
98
138
|
[key: string]: unknown;
|
|
99
139
|
};
|
|
140
|
+
/**
|
|
141
|
+
* Signed CloudFront URL for the asset class photo (≈1h lifetime), or null if no photo / signing not configured.
|
|
142
|
+
*/
|
|
143
|
+
asset_class_photo_url?: {
|
|
144
|
+
[key: string]: unknown;
|
|
145
|
+
};
|
|
100
146
|
/**
|
|
101
147
|
* Asset class photo info
|
|
102
148
|
*/
|
|
@@ -372,6 +418,13 @@ type CreateSiteDto = {
|
|
|
372
418
|
*/
|
|
373
419
|
public_id?: string;
|
|
374
420
|
};
|
|
421
|
+
type DeleteAssetClassPropertyResponseDto = {
|
|
422
|
+
message: string;
|
|
423
|
+
/**
|
|
424
|
+
* Deleted asset class property ID
|
|
425
|
+
*/
|
|
426
|
+
id: string;
|
|
427
|
+
};
|
|
375
428
|
type DeleteAssetPropertyResponseDto = {
|
|
376
429
|
/**
|
|
377
430
|
* Success message
|
|
@@ -1212,6 +1265,14 @@ type UpdateAssetClassDto = {
|
|
|
1212
1265
|
*/
|
|
1213
1266
|
on_the_fly_enabled?: boolean;
|
|
1214
1267
|
};
|
|
1268
|
+
type UpdateAssetClassPropertyDto = {
|
|
1269
|
+
/**
|
|
1270
|
+
* Property value (string, number, or date depending on the property type defined in config_items).
|
|
1271
|
+
*/
|
|
1272
|
+
value: {
|
|
1273
|
+
[key: string]: unknown;
|
|
1274
|
+
};
|
|
1275
|
+
};
|
|
1215
1276
|
type UpdateAssetDto = {
|
|
1216
1277
|
/**
|
|
1217
1278
|
* Asset number
|
|
@@ -1559,6 +1620,10 @@ type AssetControllerCreateAssetPublicResponses = {
|
|
|
1559
1620
|
companyId?: string;
|
|
1560
1621
|
assetPhotoFile?: string | null;
|
|
1561
1622
|
assetPhotoInfo?: string | null;
|
|
1623
|
+
/**
|
|
1624
|
+
* Signed CloudFront URL for the asset photo (assetPhotoFile is the S3 key). ~1h lifetime; null if no photo / signing not configured.
|
|
1625
|
+
*/
|
|
1626
|
+
asset_photo_url?: string | null;
|
|
1562
1627
|
lat?: number | null;
|
|
1563
1628
|
lng?: number | null;
|
|
1564
1629
|
createdById?: string;
|
|
@@ -1658,6 +1723,10 @@ type AssetControllerListAssetsResponses = {
|
|
|
1658
1723
|
companyId?: string;
|
|
1659
1724
|
assetPhotoFile?: string | null;
|
|
1660
1725
|
assetPhotoInfo?: string | null;
|
|
1726
|
+
/**
|
|
1727
|
+
* Signed CloudFront URL for the asset photo (assetPhotoFile is the S3 key). ~1h lifetime; null if no photo / signing not configured.
|
|
1728
|
+
*/
|
|
1729
|
+
asset_photo_url?: string | null;
|
|
1661
1730
|
lat?: number | null;
|
|
1662
1731
|
lng?: number | null;
|
|
1663
1732
|
createdById?: string;
|
|
@@ -1728,6 +1797,10 @@ type AssetControllerGetAssetResponses = {
|
|
|
1728
1797
|
companyId?: string;
|
|
1729
1798
|
assetPhotoFile?: string | null;
|
|
1730
1799
|
assetPhotoInfo?: string | null;
|
|
1800
|
+
/**
|
|
1801
|
+
* Signed CloudFront URL for the asset photo (assetPhotoFile is the S3 key). ~1h lifetime; null if no photo / signing not configured.
|
|
1802
|
+
*/
|
|
1803
|
+
asset_photo_url?: string | null;
|
|
1731
1804
|
lat?: number | null;
|
|
1732
1805
|
lng?: number | null;
|
|
1733
1806
|
createdById?: string;
|
|
@@ -1808,6 +1881,10 @@ type AssetControllerUpdateAssetResponses = {
|
|
|
1808
1881
|
companyId?: string;
|
|
1809
1882
|
assetPhotoFile?: string | null;
|
|
1810
1883
|
assetPhotoInfo?: string | null;
|
|
1884
|
+
/**
|
|
1885
|
+
* Signed CloudFront URL for the asset photo (assetPhotoFile is the S3 key). ~1h lifetime; null if no photo / signing not configured.
|
|
1886
|
+
*/
|
|
1887
|
+
asset_photo_url?: string | null;
|
|
1811
1888
|
lat?: number | null;
|
|
1812
1889
|
lng?: number | null;
|
|
1813
1890
|
createdById?: string;
|
|
@@ -3516,6 +3593,98 @@ type PublicConfigControllerCreateConfigItemResponses = {
|
|
|
3516
3593
|
201: ConfigItemDto;
|
|
3517
3594
|
};
|
|
3518
3595
|
type PublicConfigControllerCreateConfigItemResponse = PublicConfigControllerCreateConfigItemResponses[keyof PublicConfigControllerCreateConfigItemResponses];
|
|
3596
|
+
type AssetClassPropertyControllerRemoveData = {
|
|
3597
|
+
body?: never;
|
|
3598
|
+
path: {
|
|
3599
|
+
/**
|
|
3600
|
+
* Asset class property value-row ID (numeric string)
|
|
3601
|
+
*/
|
|
3602
|
+
id: string;
|
|
3603
|
+
};
|
|
3604
|
+
query?: never;
|
|
3605
|
+
url: '/asset-class-property/{id}';
|
|
3606
|
+
};
|
|
3607
|
+
type AssetClassPropertyControllerRemoveErrors = {
|
|
3608
|
+
/**
|
|
3609
|
+
* 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.
|
|
3610
|
+
*/
|
|
3611
|
+
401: ApiErrorResponse;
|
|
3612
|
+
/**
|
|
3613
|
+
* 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).
|
|
3614
|
+
*/
|
|
3615
|
+
403: ApiErrorResponse;
|
|
3616
|
+
/**
|
|
3617
|
+
* 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.
|
|
3618
|
+
*/
|
|
3619
|
+
404: ApiErrorResponse;
|
|
3620
|
+
/**
|
|
3621
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
3622
|
+
*/
|
|
3623
|
+
429: ApiErrorResponse;
|
|
3624
|
+
/**
|
|
3625
|
+
* 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.
|
|
3626
|
+
*/
|
|
3627
|
+
500: ApiErrorResponse;
|
|
3628
|
+
};
|
|
3629
|
+
type AssetClassPropertyControllerRemoveError = AssetClassPropertyControllerRemoveErrors[keyof AssetClassPropertyControllerRemoveErrors];
|
|
3630
|
+
type AssetClassPropertyControllerRemoveResponses = {
|
|
3631
|
+
/**
|
|
3632
|
+
* Asset class property deleted
|
|
3633
|
+
*/
|
|
3634
|
+
200: DeleteAssetClassPropertyResponseDto;
|
|
3635
|
+
};
|
|
3636
|
+
type AssetClassPropertyControllerRemoveResponse = AssetClassPropertyControllerRemoveResponses[keyof AssetClassPropertyControllerRemoveResponses];
|
|
3637
|
+
type AssetClassPropertyControllerUpdateData = {
|
|
3638
|
+
body: UpdateAssetClassPropertyDto;
|
|
3639
|
+
headers?: {
|
|
3640
|
+
/**
|
|
3641
|
+
* 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.
|
|
3642
|
+
*/
|
|
3643
|
+
'Idempotency-Key'?: string;
|
|
3644
|
+
};
|
|
3645
|
+
path: {
|
|
3646
|
+
/**
|
|
3647
|
+
* Asset class property value-row ID (numeric string)
|
|
3648
|
+
*/
|
|
3649
|
+
id: string;
|
|
3650
|
+
};
|
|
3651
|
+
query?: never;
|
|
3652
|
+
url: '/asset-class-property/{id}';
|
|
3653
|
+
};
|
|
3654
|
+
type AssetClassPropertyControllerUpdateErrors = {
|
|
3655
|
+
/**
|
|
3656
|
+
* 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`.
|
|
3657
|
+
*/
|
|
3658
|
+
400: ApiErrorResponse;
|
|
3659
|
+
/**
|
|
3660
|
+
* 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.
|
|
3661
|
+
*/
|
|
3662
|
+
401: ApiErrorResponse;
|
|
3663
|
+
/**
|
|
3664
|
+
* 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).
|
|
3665
|
+
*/
|
|
3666
|
+
403: ApiErrorResponse;
|
|
3667
|
+
/**
|
|
3668
|
+
* 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.
|
|
3669
|
+
*/
|
|
3670
|
+
404: ApiErrorResponse;
|
|
3671
|
+
/**
|
|
3672
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
3673
|
+
*/
|
|
3674
|
+
429: ApiErrorResponse;
|
|
3675
|
+
/**
|
|
3676
|
+
* 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.
|
|
3677
|
+
*/
|
|
3678
|
+
500: ApiErrorResponse;
|
|
3679
|
+
};
|
|
3680
|
+
type AssetClassPropertyControllerUpdateError = AssetClassPropertyControllerUpdateErrors[keyof AssetClassPropertyControllerUpdateErrors];
|
|
3681
|
+
type AssetClassPropertyControllerUpdateResponses = {
|
|
3682
|
+
/**
|
|
3683
|
+
* Asset class property updated
|
|
3684
|
+
*/
|
|
3685
|
+
200: AssetClassPropertyResponseDto;
|
|
3686
|
+
};
|
|
3687
|
+
type AssetClassPropertyControllerUpdateResponse = AssetClassPropertyControllerUpdateResponses[keyof AssetClassPropertyControllerUpdateResponses];
|
|
3519
3688
|
type SiteControllerListSitesData = {
|
|
3520
3689
|
body?: never;
|
|
3521
3690
|
path?: never;
|
|
@@ -3763,6 +3932,7 @@ declare const assetControllerCreateAssetPublic: <ThrowOnError extends boolean =
|
|
|
3763
3932
|
companyId?: string;
|
|
3764
3933
|
assetPhotoFile?: string | null;
|
|
3765
3934
|
assetPhotoInfo?: string | null;
|
|
3935
|
+
asset_photo_url?: string | null;
|
|
3766
3936
|
lat?: number | null;
|
|
3767
3937
|
lng?: number | null;
|
|
3768
3938
|
createdById?: string;
|
|
@@ -3788,6 +3958,7 @@ declare const assetControllerListAssets: <ThrowOnError extends boolean = false>(
|
|
|
3788
3958
|
companyId?: string;
|
|
3789
3959
|
assetPhotoFile?: string | null;
|
|
3790
3960
|
assetPhotoInfo?: string | null;
|
|
3961
|
+
asset_photo_url?: string | null;
|
|
3791
3962
|
lat?: number | null;
|
|
3792
3963
|
lng?: number | null;
|
|
3793
3964
|
createdById?: string;
|
|
@@ -3819,6 +3990,7 @@ declare const assetControllerGetAsset: <ThrowOnError extends boolean = false>(op
|
|
|
3819
3990
|
companyId?: string;
|
|
3820
3991
|
assetPhotoFile?: string | null;
|
|
3821
3992
|
assetPhotoInfo?: string | null;
|
|
3993
|
+
asset_photo_url?: string | null;
|
|
3822
3994
|
lat?: number | null;
|
|
3823
3995
|
lng?: number | null;
|
|
3824
3996
|
createdById?: string;
|
|
@@ -3843,6 +4015,7 @@ declare const assetControllerUpdateAsset: <ThrowOnError extends boolean = false>
|
|
|
3843
4015
|
companyId?: string;
|
|
3844
4016
|
assetPhotoFile?: string | null;
|
|
3845
4017
|
assetPhotoInfo?: string | null;
|
|
4018
|
+
asset_photo_url?: string | null;
|
|
3846
4019
|
lat?: number | null;
|
|
3847
4020
|
lng?: number | null;
|
|
3848
4021
|
createdById?: string;
|
|
@@ -4084,6 +4257,16 @@ declare const publicConfigControllerUpdateConfigItem: <ThrowOnError extends bool
|
|
|
4084
4257
|
* Creates a config item (e.g. a new asset category) under the given config_table_id, which must belong to the authenticated company. Requires company:settings:tables. Supports `Idempotency-Key`.
|
|
4085
4258
|
*/
|
|
4086
4259
|
declare const publicConfigControllerCreateConfigItem: <ThrowOnError extends boolean = false>(options: Options<PublicConfigControllerCreateConfigItemData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ConfigItemDto, ApiErrorResponse, ThrowOnError>;
|
|
4260
|
+
/**
|
|
4261
|
+
* Delete an asset class property by ID
|
|
4262
|
+
* Soft-deletes an asset class custom property value (writes a history record). Company-scoped. Requires asset-class:update.
|
|
4263
|
+
*/
|
|
4264
|
+
declare const assetClassPropertyControllerRemove: <ThrowOnError extends boolean = false>(options: Options<AssetClassPropertyControllerRemoveData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteAssetClassPropertyResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
4265
|
+
/**
|
|
4266
|
+
* Update an asset class property value by ID
|
|
4267
|
+
* Updates the value of an asset class custom property. The value is stored in text_value, numeric_value, or date_value based on the property type in config_items, and a history record is written. Company-scoped. Requires asset-class:update. Supports `Idempotency-Key`.
|
|
4268
|
+
*/
|
|
4269
|
+
declare const assetClassPropertyControllerUpdate: <ThrowOnError extends boolean = false>(options: Options<AssetClassPropertyControllerUpdateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<AssetClassPropertyResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
4087
4270
|
/**
|
|
4088
4271
|
* List sites
|
|
4089
4272
|
* Returns a paginated list of sites for the authenticated company. Supports filtering by name, category, and date modified. Requires Bearer token authentication with site:read permission.
|
|
@@ -4185,6 +4368,10 @@ interface UserPropertiesResource {
|
|
|
4185
4368
|
update: (options: WakataMethodOptions<Parameters<typeof userPropertyControllerUpdateUserProperty>[0]>) => Promise<Awaited<ReturnType<typeof userPropertyControllerUpdateUserProperty>>['data']>;
|
|
4186
4369
|
delete: (options: WakataMethodOptions<Parameters<typeof userPropertyControllerDeleteUserProperty>[0]>) => Promise<Awaited<ReturnType<typeof userPropertyControllerDeleteUserProperty>>['data']>;
|
|
4187
4370
|
}
|
|
4371
|
+
interface AssetClassPropertiesResource {
|
|
4372
|
+
update: (options: WakataMethodOptions<Parameters<typeof assetClassPropertyControllerUpdate>[0]>) => Promise<Awaited<ReturnType<typeof assetClassPropertyControllerUpdate>>['data']>;
|
|
4373
|
+
delete: (options: WakataMethodOptions<Parameters<typeof assetClassPropertyControllerRemove>[0]>) => Promise<Awaited<ReturnType<typeof assetClassPropertyControllerRemove>>['data']>;
|
|
4374
|
+
}
|
|
4188
4375
|
/**
|
|
4189
4376
|
* The main entry point for the Wakata API client.
|
|
4190
4377
|
*
|
|
@@ -4213,6 +4400,7 @@ declare class WakataClient {
|
|
|
4213
4400
|
readonly userProperties: UserPropertiesResource;
|
|
4214
4401
|
readonly checklists: ChecklistsResource;
|
|
4215
4402
|
readonly config: ConfigResource;
|
|
4403
|
+
readonly assetClassProperties: AssetClassPropertiesResource;
|
|
4216
4404
|
constructor(options: WakataClientOptions);
|
|
4217
4405
|
}
|
|
4218
4406
|
|
|
@@ -4382,8 +4570,8 @@ declare function generateIdempotencyKey(): string;
|
|
|
4382
4570
|
* See README.md for usage.
|
|
4383
4571
|
*/
|
|
4384
4572
|
declare const PACKAGE_NAME = "@wakata-dev/api-client";
|
|
4385
|
-
declare const PACKAGE_VERSION = "0.3.
|
|
4573
|
+
declare const PACKAGE_VERSION = "0.3.2";
|
|
4386
4574
|
/** Default base URL for the Wakata Public API (production). */
|
|
4387
4575
|
declare const DEFAULT_BASE_URL = "https://api.wakata.ai/api/v1";
|
|
4388
4576
|
|
|
4389
|
-
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 AssetClassListResponseDto, 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 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 ConfigItemDto, type ConfigTableDto, type CreateAssetClassDto, type CreateConfigItemDto, type CreateSiteDto, DEFAULT_BASE_URL, type DeleteAssetPropertyResponseDto, type DeleteSiteResponseDto, type DeleteUserPropertyResponseDto, type EmbeddedAssetClassPropertyDto, type EmbeddedAssetPropertyDto, type EmbeddedUserPropertyDto, type ErrorDetail, 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 ListChecklistsResponseDto, type ListConfigItemsResponseDto, type ListConfigTablesResponseDto, type ListInspectionsResponseDto, type ListIssuesResponseDto, type ListSitesResponseDto, PACKAGE_NAME, PACKAGE_VERSION, 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 SiteResponseDto, type SitesResource, type UpdateAssetClassDto, type UpdateAssetDto, type UpdateAssetPropertyDto, type UpdateConfigItemDto, type UpdateIssueDto, type UpdateSiteDto, type UpdateUserPropertyDto, 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 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, generateIdempotencyKey, mapApiError };
|
|
4577
|
+
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 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 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 ConfigItemDto, type ConfigTableDto, type CreateAssetClassDto, type CreateConfigItemDto, type CreateSiteDto, DEFAULT_BASE_URL, type DeleteAssetClassPropertyResponseDto, type DeleteAssetPropertyResponseDto, type DeleteSiteResponseDto, type DeleteUserPropertyResponseDto, type EmbeddedAssetClassPropertyDto, type EmbeddedAssetPropertyDto, type EmbeddedUserPropertyDto, type ErrorDetail, 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 ListChecklistsResponseDto, type ListConfigItemsResponseDto, type ListConfigTablesResponseDto, type ListInspectionsResponseDto, type ListIssuesResponseDto, type ListSitesResponseDto, PACKAGE_NAME, PACKAGE_VERSION, 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 SiteResponseDto, type SitesResource, type UpdateAssetClassDto, type UpdateAssetClassPropertyDto, type UpdateAssetDto, type UpdateAssetPropertyDto, type UpdateConfigItemDto, type UpdateIssueDto, type UpdateSiteDto, type UpdateUserPropertyDto, 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 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, generateIdempotencyKey, mapApiError };
|