@wakata-dev/api-client 0.5.0 → 0.6.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 +966 -165
- package/dist/index.d.ts +966 -165
- 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,80 @@ type CreateGroupDto = {
|
|
|
473
473
|
*/
|
|
474
474
|
include_all_checklists?: boolean;
|
|
475
475
|
};
|
|
476
|
+
type CreateJobDto = {
|
|
477
|
+
/**
|
|
478
|
+
* Customer publicId (UUID) the job is for
|
|
479
|
+
*/
|
|
480
|
+
customer_id: string;
|
|
481
|
+
/**
|
|
482
|
+
* Job title
|
|
483
|
+
*/
|
|
484
|
+
title: string;
|
|
485
|
+
/**
|
|
486
|
+
* Start date (ISO)
|
|
487
|
+
*/
|
|
488
|
+
start_date: string;
|
|
489
|
+
/**
|
|
490
|
+
* BigInt as string. Category id (config_items.id, numeric string)
|
|
491
|
+
*/
|
|
492
|
+
category_id?: string;
|
|
493
|
+
/**
|
|
494
|
+
* Description
|
|
495
|
+
*/
|
|
496
|
+
description?: string;
|
|
497
|
+
/**
|
|
498
|
+
* Status
|
|
499
|
+
*/
|
|
500
|
+
status?: string;
|
|
501
|
+
/**
|
|
502
|
+
* Location address
|
|
503
|
+
*/
|
|
504
|
+
location_address?: string;
|
|
505
|
+
/**
|
|
506
|
+
* Location latitude
|
|
507
|
+
*/
|
|
508
|
+
location_lat?: number;
|
|
509
|
+
/**
|
|
510
|
+
* Location longitude
|
|
511
|
+
*/
|
|
512
|
+
location_lng?: number;
|
|
513
|
+
/**
|
|
514
|
+
* Google place id
|
|
515
|
+
*/
|
|
516
|
+
location_place_id?: string;
|
|
517
|
+
/**
|
|
518
|
+
* End date (ISO)
|
|
519
|
+
*/
|
|
520
|
+
end_date?: string;
|
|
521
|
+
/**
|
|
522
|
+
* Start time (HH:MM[:SS])
|
|
523
|
+
*/
|
|
524
|
+
start_time?: string;
|
|
525
|
+
/**
|
|
526
|
+
* End time (HH:MM[:SS])
|
|
527
|
+
*/
|
|
528
|
+
end_time?: string;
|
|
529
|
+
/**
|
|
530
|
+
* Estimated cost
|
|
531
|
+
*/
|
|
532
|
+
estimated_cost?: number;
|
|
533
|
+
/**
|
|
534
|
+
* Actual cost
|
|
535
|
+
*/
|
|
536
|
+
actual_cost?: number;
|
|
537
|
+
/**
|
|
538
|
+
* Cost notes
|
|
539
|
+
*/
|
|
540
|
+
cost_notes?: string;
|
|
541
|
+
/**
|
|
542
|
+
* Required crew count
|
|
543
|
+
*/
|
|
544
|
+
required_crew_count?: number;
|
|
545
|
+
/**
|
|
546
|
+
* Notes
|
|
547
|
+
*/
|
|
548
|
+
notes?: string;
|
|
549
|
+
};
|
|
476
550
|
type CreateProjectDto = {
|
|
477
551
|
/**
|
|
478
552
|
* Project name
|
|
@@ -636,6 +710,10 @@ type DeleteGroupResponseDto = {
|
|
|
636
710
|
message: string;
|
|
637
711
|
public_id: string;
|
|
638
712
|
};
|
|
713
|
+
type DeleteJobResponseDto = {
|
|
714
|
+
message: string;
|
|
715
|
+
public_id: string;
|
|
716
|
+
};
|
|
639
717
|
type DeleteProjectResponseDto = {
|
|
640
718
|
message: string;
|
|
641
719
|
public_id: string;
|
|
@@ -915,6 +993,35 @@ type EmbeddedCustomerPropertyDto = {
|
|
|
915
993
|
[key: string]: unknown;
|
|
916
994
|
} | null;
|
|
917
995
|
};
|
|
996
|
+
type EmbeddedJobPropertyDto = {
|
|
997
|
+
/**
|
|
998
|
+
* BigInt as string. Property definition id (config_items.id)
|
|
999
|
+
*/
|
|
1000
|
+
property_id: string;
|
|
1001
|
+
/**
|
|
1002
|
+
* BigInt as string. Property value row id
|
|
1003
|
+
*/
|
|
1004
|
+
job_property_id: string;
|
|
1005
|
+
property_name: string;
|
|
1006
|
+
text_value: {
|
|
1007
|
+
[key: string]: unknown;
|
|
1008
|
+
} | null;
|
|
1009
|
+
numeric_value: {
|
|
1010
|
+
[key: string]: unknown;
|
|
1011
|
+
} | null;
|
|
1012
|
+
date_value: {
|
|
1013
|
+
[key: string]: unknown;
|
|
1014
|
+
} | null;
|
|
1015
|
+
updated_at: {
|
|
1016
|
+
[key: string]: unknown;
|
|
1017
|
+
} | null;
|
|
1018
|
+
updated_by: {
|
|
1019
|
+
[key: string]: unknown;
|
|
1020
|
+
} | null;
|
|
1021
|
+
updated_by_name: {
|
|
1022
|
+
[key: string]: unknown;
|
|
1023
|
+
} | null;
|
|
1024
|
+
};
|
|
918
1025
|
type EmbeddedProjectPropertyDto = {
|
|
919
1026
|
/**
|
|
920
1027
|
* BigInt as string. Property definition id (config_items.id)
|
|
@@ -1455,6 +1562,172 @@ type IssueResponseDto = {
|
|
|
1455
1562
|
[key: string]: unknown;
|
|
1456
1563
|
};
|
|
1457
1564
|
};
|
|
1565
|
+
type JobAssignmentDto = {
|
|
1566
|
+
job_assignment_id: string;
|
|
1567
|
+
/**
|
|
1568
|
+
* Assigned user publicId
|
|
1569
|
+
*/
|
|
1570
|
+
user_id: {
|
|
1571
|
+
[key: string]: unknown;
|
|
1572
|
+
} | null;
|
|
1573
|
+
/**
|
|
1574
|
+
* Assigned user full name
|
|
1575
|
+
*/
|
|
1576
|
+
user_name: {
|
|
1577
|
+
[key: string]: unknown;
|
|
1578
|
+
} | null;
|
|
1579
|
+
/**
|
|
1580
|
+
* Assigned asset publicId
|
|
1581
|
+
*/
|
|
1582
|
+
asset_id: {
|
|
1583
|
+
[key: string]: unknown;
|
|
1584
|
+
} | null;
|
|
1585
|
+
/**
|
|
1586
|
+
* Assigned asset number
|
|
1587
|
+
*/
|
|
1588
|
+
asset_number: {
|
|
1589
|
+
[key: string]: unknown;
|
|
1590
|
+
} | null;
|
|
1591
|
+
assignment_date: string;
|
|
1592
|
+
/**
|
|
1593
|
+
* Start time (HH:MM:SS)
|
|
1594
|
+
*/
|
|
1595
|
+
start_time: {
|
|
1596
|
+
[key: string]: unknown;
|
|
1597
|
+
} | null;
|
|
1598
|
+
/**
|
|
1599
|
+
* End time (HH:MM:SS)
|
|
1600
|
+
*/
|
|
1601
|
+
end_time: {
|
|
1602
|
+
[key: string]: unknown;
|
|
1603
|
+
} | null;
|
|
1604
|
+
status: string;
|
|
1605
|
+
notes: {
|
|
1606
|
+
[key: string]: unknown;
|
|
1607
|
+
} | null;
|
|
1608
|
+
created_at: string;
|
|
1609
|
+
updated_at: string;
|
|
1610
|
+
};
|
|
1611
|
+
type JobRequirementDto = {
|
|
1612
|
+
job_asset_requirement_id: string;
|
|
1613
|
+
/**
|
|
1614
|
+
* BigInt as string. Asset category config-item id
|
|
1615
|
+
*/
|
|
1616
|
+
asset_category_id: string;
|
|
1617
|
+
/**
|
|
1618
|
+
* Asset category name
|
|
1619
|
+
*/
|
|
1620
|
+
asset_category: {
|
|
1621
|
+
[key: string]: unknown;
|
|
1622
|
+
} | null;
|
|
1623
|
+
/**
|
|
1624
|
+
* Asset class publicId
|
|
1625
|
+
*/
|
|
1626
|
+
asset_class_id: {
|
|
1627
|
+
[key: string]: unknown;
|
|
1628
|
+
} | null;
|
|
1629
|
+
/**
|
|
1630
|
+
* Asset class name
|
|
1631
|
+
*/
|
|
1632
|
+
asset_class: {
|
|
1633
|
+
[key: string]: unknown;
|
|
1634
|
+
} | null;
|
|
1635
|
+
asset_sub_class: {
|
|
1636
|
+
[key: string]: unknown;
|
|
1637
|
+
} | null;
|
|
1638
|
+
quantity: number;
|
|
1639
|
+
is_mandatory: boolean;
|
|
1640
|
+
notes: {
|
|
1641
|
+
[key: string]: unknown;
|
|
1642
|
+
} | null;
|
|
1643
|
+
created_at: string;
|
|
1644
|
+
updated_at: string;
|
|
1645
|
+
};
|
|
1646
|
+
type JobResponseDto = {
|
|
1647
|
+
public_id: string;
|
|
1648
|
+
/**
|
|
1649
|
+
* Customer publicId
|
|
1650
|
+
*/
|
|
1651
|
+
customer_id: string;
|
|
1652
|
+
/**
|
|
1653
|
+
* Customer name
|
|
1654
|
+
*/
|
|
1655
|
+
customer_name: {
|
|
1656
|
+
[key: string]: unknown;
|
|
1657
|
+
} | null;
|
|
1658
|
+
/**
|
|
1659
|
+
* Category config-item id
|
|
1660
|
+
*/
|
|
1661
|
+
category_id: {
|
|
1662
|
+
[key: string]: unknown;
|
|
1663
|
+
} | null;
|
|
1664
|
+
/**
|
|
1665
|
+
* Category name
|
|
1666
|
+
*/
|
|
1667
|
+
category: {
|
|
1668
|
+
[key: string]: unknown;
|
|
1669
|
+
} | null;
|
|
1670
|
+
job_number: string;
|
|
1671
|
+
title: string;
|
|
1672
|
+
description: {
|
|
1673
|
+
[key: string]: unknown;
|
|
1674
|
+
} | null;
|
|
1675
|
+
status: string;
|
|
1676
|
+
location_address: {
|
|
1677
|
+
[key: string]: unknown;
|
|
1678
|
+
} | null;
|
|
1679
|
+
location_lat: {
|
|
1680
|
+
[key: string]: unknown;
|
|
1681
|
+
} | null;
|
|
1682
|
+
location_lng: {
|
|
1683
|
+
[key: string]: unknown;
|
|
1684
|
+
} | null;
|
|
1685
|
+
location_place_id: {
|
|
1686
|
+
[key: string]: unknown;
|
|
1687
|
+
} | null;
|
|
1688
|
+
start_date: string;
|
|
1689
|
+
end_date: {
|
|
1690
|
+
[key: string]: unknown;
|
|
1691
|
+
} | null;
|
|
1692
|
+
/**
|
|
1693
|
+
* Start time (HH:MM:SS)
|
|
1694
|
+
*/
|
|
1695
|
+
start_time: {
|
|
1696
|
+
[key: string]: unknown;
|
|
1697
|
+
} | null;
|
|
1698
|
+
/**
|
|
1699
|
+
* End time (HH:MM:SS)
|
|
1700
|
+
*/
|
|
1701
|
+
end_time: {
|
|
1702
|
+
[key: string]: unknown;
|
|
1703
|
+
} | null;
|
|
1704
|
+
estimated_cost: {
|
|
1705
|
+
[key: string]: unknown;
|
|
1706
|
+
} | null;
|
|
1707
|
+
actual_cost: {
|
|
1708
|
+
[key: string]: unknown;
|
|
1709
|
+
} | null;
|
|
1710
|
+
cost_notes: {
|
|
1711
|
+
[key: string]: unknown;
|
|
1712
|
+
} | null;
|
|
1713
|
+
required_crew_count: {
|
|
1714
|
+
[key: string]: unknown;
|
|
1715
|
+
} | null;
|
|
1716
|
+
notes: {
|
|
1717
|
+
[key: string]: unknown;
|
|
1718
|
+
} | null;
|
|
1719
|
+
/**
|
|
1720
|
+
* Count of assignments
|
|
1721
|
+
*/
|
|
1722
|
+
assignment_count: number;
|
|
1723
|
+
/**
|
|
1724
|
+
* Count of asset requirements
|
|
1725
|
+
*/
|
|
1726
|
+
requirement_count: number;
|
|
1727
|
+
created_at: string;
|
|
1728
|
+
updated_at: string;
|
|
1729
|
+
job_properties: Array<EmbeddedJobPropertyDto>;
|
|
1730
|
+
};
|
|
1458
1731
|
type ListChecklistsResponseDto = {
|
|
1459
1732
|
/**
|
|
1460
1733
|
* List of checklists
|
|
@@ -1569,6 +1842,27 @@ type ListIssuesResponseDto = {
|
|
|
1569
1842
|
*/
|
|
1570
1843
|
total_pages: number;
|
|
1571
1844
|
};
|
|
1845
|
+
type ListJobAssignmentsResponseDto = {
|
|
1846
|
+
data: Array<JobAssignmentDto>;
|
|
1847
|
+
page: number;
|
|
1848
|
+
per_page: number;
|
|
1849
|
+
total: number;
|
|
1850
|
+
total_pages: number;
|
|
1851
|
+
};
|
|
1852
|
+
type ListJobRequirementsResponseDto = {
|
|
1853
|
+
data: Array<JobRequirementDto>;
|
|
1854
|
+
page: number;
|
|
1855
|
+
per_page: number;
|
|
1856
|
+
total: number;
|
|
1857
|
+
total_pages: number;
|
|
1858
|
+
};
|
|
1859
|
+
type ListJobsResponseDto = {
|
|
1860
|
+
data: Array<JobResponseDto>;
|
|
1861
|
+
page: number;
|
|
1862
|
+
per_page: number;
|
|
1863
|
+
total: number;
|
|
1864
|
+
total_pages: number;
|
|
1865
|
+
};
|
|
1572
1866
|
type ListProjectAssetsResponseDto = {
|
|
1573
1867
|
data: Array<ProjectAssetDto>;
|
|
1574
1868
|
page: number;
|
|
@@ -2225,15 +2519,21 @@ type UpdateIssueDto = {
|
|
|
2225
2519
|
*/
|
|
2226
2520
|
user_id: string;
|
|
2227
2521
|
};
|
|
2228
|
-
type
|
|
2522
|
+
type UpdateJobDto = {
|
|
2229
2523
|
/**
|
|
2230
|
-
*
|
|
2524
|
+
* Customer publicId (UUID)
|
|
2231
2525
|
*/
|
|
2232
|
-
|
|
2526
|
+
customer_id?: string;
|
|
2233
2527
|
/**
|
|
2234
|
-
*
|
|
2528
|
+
* Job title
|
|
2235
2529
|
*/
|
|
2236
|
-
|
|
2530
|
+
title?: string;
|
|
2531
|
+
/**
|
|
2532
|
+
* Category id (numeric)
|
|
2533
|
+
*/
|
|
2534
|
+
category_id?: {
|
|
2535
|
+
[key: string]: unknown;
|
|
2536
|
+
} | null;
|
|
2237
2537
|
/**
|
|
2238
2538
|
* Description
|
|
2239
2539
|
*/
|
|
@@ -2241,50 +2541,146 @@ type UpdateProjectDto = {
|
|
|
2241
2541
|
[key: string]: unknown;
|
|
2242
2542
|
} | null;
|
|
2243
2543
|
/**
|
|
2244
|
-
*
|
|
2544
|
+
* Status
|
|
2245
2545
|
*/
|
|
2246
|
-
|
|
2546
|
+
status?: string;
|
|
2547
|
+
/**
|
|
2548
|
+
* Location address
|
|
2549
|
+
*/
|
|
2550
|
+
location_address?: {
|
|
2247
2551
|
[key: string]: unknown;
|
|
2248
2552
|
} | null;
|
|
2249
|
-
status?: 'active' | 'suspended' | 'completed';
|
|
2250
2553
|
/**
|
|
2251
|
-
*
|
|
2554
|
+
* Location latitude
|
|
2252
2555
|
*/
|
|
2253
|
-
|
|
2556
|
+
location_lat?: {
|
|
2557
|
+
[key: string]: unknown;
|
|
2558
|
+
} | null;
|
|
2559
|
+
/**
|
|
2560
|
+
* Location longitude
|
|
2561
|
+
*/
|
|
2562
|
+
location_lng?: {
|
|
2563
|
+
[key: string]: unknown;
|
|
2564
|
+
} | null;
|
|
2565
|
+
/**
|
|
2566
|
+
* Google place id
|
|
2567
|
+
*/
|
|
2568
|
+
location_place_id?: {
|
|
2254
2569
|
[key: string]: unknown;
|
|
2255
2570
|
} | null;
|
|
2256
2571
|
/**
|
|
2257
2572
|
* Start date (ISO)
|
|
2258
2573
|
*/
|
|
2259
|
-
|
|
2574
|
+
start_date?: string;
|
|
2260
2575
|
/**
|
|
2261
|
-
*
|
|
2576
|
+
* End date (ISO)
|
|
2262
2577
|
*/
|
|
2263
|
-
|
|
2578
|
+
end_date?: {
|
|
2264
2579
|
[key: string]: unknown;
|
|
2265
2580
|
} | null;
|
|
2266
2581
|
/**
|
|
2267
|
-
*
|
|
2582
|
+
* Start time (HH:MM[:SS])
|
|
2268
2583
|
*/
|
|
2269
|
-
|
|
2584
|
+
start_time?: {
|
|
2270
2585
|
[key: string]: unknown;
|
|
2271
2586
|
} | null;
|
|
2272
|
-
};
|
|
2273
|
-
type UpdateSiteDto = {
|
|
2274
2587
|
/**
|
|
2275
|
-
*
|
|
2588
|
+
* End time (HH:MM[:SS])
|
|
2276
2589
|
*/
|
|
2277
|
-
|
|
2590
|
+
end_time?: {
|
|
2591
|
+
[key: string]: unknown;
|
|
2592
|
+
} | null;
|
|
2278
2593
|
/**
|
|
2279
|
-
*
|
|
2594
|
+
* Estimated cost
|
|
2280
2595
|
*/
|
|
2281
|
-
|
|
2596
|
+
estimated_cost?: {
|
|
2597
|
+
[key: string]: unknown;
|
|
2598
|
+
} | null;
|
|
2282
2599
|
/**
|
|
2283
|
-
*
|
|
2600
|
+
* Actual cost
|
|
2284
2601
|
*/
|
|
2285
|
-
|
|
2602
|
+
actual_cost?: {
|
|
2603
|
+
[key: string]: unknown;
|
|
2604
|
+
} | null;
|
|
2286
2605
|
/**
|
|
2287
|
-
*
|
|
2606
|
+
* Cost notes
|
|
2607
|
+
*/
|
|
2608
|
+
cost_notes?: {
|
|
2609
|
+
[key: string]: unknown;
|
|
2610
|
+
} | null;
|
|
2611
|
+
/**
|
|
2612
|
+
* Required crew count
|
|
2613
|
+
*/
|
|
2614
|
+
required_crew_count?: {
|
|
2615
|
+
[key: string]: unknown;
|
|
2616
|
+
} | null;
|
|
2617
|
+
/**
|
|
2618
|
+
* Notes
|
|
2619
|
+
*/
|
|
2620
|
+
notes?: {
|
|
2621
|
+
[key: string]: unknown;
|
|
2622
|
+
} | null;
|
|
2623
|
+
};
|
|
2624
|
+
type UpdateProjectDto = {
|
|
2625
|
+
/**
|
|
2626
|
+
* Project name
|
|
2627
|
+
*/
|
|
2628
|
+
name?: string;
|
|
2629
|
+
/**
|
|
2630
|
+
* Project code (unique per company)
|
|
2631
|
+
*/
|
|
2632
|
+
project_code?: string;
|
|
2633
|
+
/**
|
|
2634
|
+
* Description
|
|
2635
|
+
*/
|
|
2636
|
+
description?: {
|
|
2637
|
+
[key: string]: unknown;
|
|
2638
|
+
} | null;
|
|
2639
|
+
/**
|
|
2640
|
+
* Project category id (numeric)
|
|
2641
|
+
*/
|
|
2642
|
+
project_category_id?: {
|
|
2643
|
+
[key: string]: unknown;
|
|
2644
|
+
} | null;
|
|
2645
|
+
status?: 'active' | 'suspended' | 'completed';
|
|
2646
|
+
/**
|
|
2647
|
+
* Reason when status is suspended
|
|
2648
|
+
*/
|
|
2649
|
+
suspended_reason?: {
|
|
2650
|
+
[key: string]: unknown;
|
|
2651
|
+
} | null;
|
|
2652
|
+
/**
|
|
2653
|
+
* Start date (ISO)
|
|
2654
|
+
*/
|
|
2655
|
+
started_at?: string;
|
|
2656
|
+
/**
|
|
2657
|
+
* Expected end date (ISO)
|
|
2658
|
+
*/
|
|
2659
|
+
expected_end_date?: {
|
|
2660
|
+
[key: string]: unknown;
|
|
2661
|
+
} | null;
|
|
2662
|
+
/**
|
|
2663
|
+
* Completed date (ISO)
|
|
2664
|
+
*/
|
|
2665
|
+
completed_at?: {
|
|
2666
|
+
[key: string]: unknown;
|
|
2667
|
+
} | null;
|
|
2668
|
+
};
|
|
2669
|
+
type UpdateSiteDto = {
|
|
2670
|
+
/**
|
|
2671
|
+
* Site name
|
|
2672
|
+
*/
|
|
2673
|
+
name?: string;
|
|
2674
|
+
/**
|
|
2675
|
+
* Base language for the site
|
|
2676
|
+
*/
|
|
2677
|
+
base_language?: string;
|
|
2678
|
+
/**
|
|
2679
|
+
* BigInt as string. Site category ID (config_items.id)
|
|
2680
|
+
*/
|
|
2681
|
+
category_id?: string;
|
|
2682
|
+
/**
|
|
2683
|
+
* Asset selection method
|
|
2288
2684
|
*/
|
|
2289
2685
|
asset_selection_method?: string;
|
|
2290
2686
|
/**
|
|
@@ -6496,17 +6892,339 @@ type CompanyDocumentControllerListData = {
|
|
|
6496
6892
|
*/
|
|
6497
6893
|
document_date_updated_from?: string;
|
|
6498
6894
|
/**
|
|
6499
|
-
* Filter: updated_at <= (ISO)
|
|
6895
|
+
* Filter: updated_at <= (ISO)
|
|
6896
|
+
*/
|
|
6897
|
+
document_date_updated_to?: string;
|
|
6898
|
+
};
|
|
6899
|
+
url: '/company-document/list';
|
|
6900
|
+
};
|
|
6901
|
+
type CompanyDocumentControllerListErrors = {
|
|
6902
|
+
/**
|
|
6903
|
+
* 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`.
|
|
6904
|
+
*/
|
|
6905
|
+
400: ApiErrorResponse;
|
|
6906
|
+
/**
|
|
6907
|
+
* 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.
|
|
6908
|
+
*/
|
|
6909
|
+
401: ApiErrorResponse;
|
|
6910
|
+
/**
|
|
6911
|
+
* 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).
|
|
6912
|
+
*/
|
|
6913
|
+
403: ApiErrorResponse;
|
|
6914
|
+
/**
|
|
6915
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
6916
|
+
*/
|
|
6917
|
+
429: ApiErrorResponse;
|
|
6918
|
+
/**
|
|
6919
|
+
* 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.
|
|
6920
|
+
*/
|
|
6921
|
+
500: ApiErrorResponse;
|
|
6922
|
+
};
|
|
6923
|
+
type CompanyDocumentControllerListError = CompanyDocumentControllerListErrors[keyof CompanyDocumentControllerListErrors];
|
|
6924
|
+
type CompanyDocumentControllerListResponses = {
|
|
6925
|
+
200: ListDocumentsResponseDto;
|
|
6926
|
+
};
|
|
6927
|
+
type CompanyDocumentControllerListResponse = CompanyDocumentControllerListResponses[keyof CompanyDocumentControllerListResponses];
|
|
6928
|
+
type CompanyDocumentControllerRemoveData = {
|
|
6929
|
+
body?: never;
|
|
6930
|
+
path: {
|
|
6931
|
+
/**
|
|
6932
|
+
* Document ID (numeric string)
|
|
6933
|
+
*/
|
|
6934
|
+
id: string;
|
|
6935
|
+
};
|
|
6936
|
+
query?: never;
|
|
6937
|
+
url: '/company-document/{id}';
|
|
6938
|
+
};
|
|
6939
|
+
type CompanyDocumentControllerRemoveErrors = {
|
|
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 CompanyDocumentControllerRemoveError = CompanyDocumentControllerRemoveErrors[keyof CompanyDocumentControllerRemoveErrors];
|
|
6966
|
+
type CompanyDocumentControllerRemoveResponses = {
|
|
6967
|
+
200: DeleteDocumentResponseDto;
|
|
6968
|
+
};
|
|
6969
|
+
type CompanyDocumentControllerRemoveResponse = CompanyDocumentControllerRemoveResponses[keyof CompanyDocumentControllerRemoveResponses];
|
|
6970
|
+
type CompanyDocumentControllerGetData = {
|
|
6971
|
+
body?: never;
|
|
6972
|
+
path: {
|
|
6973
|
+
/**
|
|
6974
|
+
* Document ID (numeric string)
|
|
6975
|
+
*/
|
|
6976
|
+
id: string;
|
|
6977
|
+
};
|
|
6978
|
+
query?: never;
|
|
6979
|
+
url: '/company-document/{id}';
|
|
6980
|
+
};
|
|
6981
|
+
type CompanyDocumentControllerGetErrors = {
|
|
6982
|
+
/**
|
|
6983
|
+
* 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`.
|
|
6984
|
+
*/
|
|
6985
|
+
400: ApiErrorResponse;
|
|
6986
|
+
/**
|
|
6987
|
+
* 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.
|
|
6988
|
+
*/
|
|
6989
|
+
401: ApiErrorResponse;
|
|
6990
|
+
/**
|
|
6991
|
+
* 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).
|
|
6992
|
+
*/
|
|
6993
|
+
403: ApiErrorResponse;
|
|
6994
|
+
/**
|
|
6995
|
+
* 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.
|
|
6996
|
+
*/
|
|
6997
|
+
404: ApiErrorResponse;
|
|
6998
|
+
/**
|
|
6999
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
7000
|
+
*/
|
|
7001
|
+
429: ApiErrorResponse;
|
|
7002
|
+
/**
|
|
7003
|
+
* 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.
|
|
7004
|
+
*/
|
|
7005
|
+
500: ApiErrorResponse;
|
|
7006
|
+
};
|
|
7007
|
+
type CompanyDocumentControllerGetError = CompanyDocumentControllerGetErrors[keyof CompanyDocumentControllerGetErrors];
|
|
7008
|
+
type CompanyDocumentControllerGetResponses = {
|
|
7009
|
+
200: DocumentResponseDto;
|
|
7010
|
+
};
|
|
7011
|
+
type CompanyDocumentControllerGetResponse = CompanyDocumentControllerGetResponses[keyof CompanyDocumentControllerGetResponses];
|
|
7012
|
+
type CompanyDocumentControllerUpdateData = {
|
|
7013
|
+
body: UpdateDocumentDto;
|
|
7014
|
+
headers?: {
|
|
7015
|
+
/**
|
|
7016
|
+
* 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.
|
|
7017
|
+
*/
|
|
7018
|
+
'Idempotency-Key'?: string;
|
|
7019
|
+
};
|
|
7020
|
+
path: {
|
|
7021
|
+
/**
|
|
7022
|
+
* Document ID (numeric string)
|
|
7023
|
+
*/
|
|
7024
|
+
id: string;
|
|
7025
|
+
};
|
|
7026
|
+
query?: never;
|
|
7027
|
+
url: '/company-document/{id}';
|
|
7028
|
+
};
|
|
7029
|
+
type CompanyDocumentControllerUpdateErrors = {
|
|
7030
|
+
/**
|
|
7031
|
+
* 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`.
|
|
7032
|
+
*/
|
|
7033
|
+
400: ApiErrorResponse;
|
|
7034
|
+
/**
|
|
7035
|
+
* 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.
|
|
7036
|
+
*/
|
|
7037
|
+
401: ApiErrorResponse;
|
|
7038
|
+
/**
|
|
7039
|
+
* 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).
|
|
7040
|
+
*/
|
|
7041
|
+
403: ApiErrorResponse;
|
|
7042
|
+
/**
|
|
7043
|
+
* 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.
|
|
7044
|
+
*/
|
|
7045
|
+
404: ApiErrorResponse;
|
|
7046
|
+
/**
|
|
7047
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
7048
|
+
*/
|
|
7049
|
+
429: ApiErrorResponse;
|
|
7050
|
+
/**
|
|
7051
|
+
* 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.
|
|
7052
|
+
*/
|
|
7053
|
+
500: ApiErrorResponse;
|
|
7054
|
+
};
|
|
7055
|
+
type CompanyDocumentControllerUpdateError = CompanyDocumentControllerUpdateErrors[keyof CompanyDocumentControllerUpdateErrors];
|
|
7056
|
+
type CompanyDocumentControllerUpdateResponses = {
|
|
7057
|
+
200: DocumentResponseDto;
|
|
7058
|
+
};
|
|
7059
|
+
type CompanyDocumentControllerUpdateResponse = CompanyDocumentControllerUpdateResponses[keyof CompanyDocumentControllerUpdateResponses];
|
|
7060
|
+
type CompanyDocumentControllerCreateData = {
|
|
7061
|
+
body: CreateDocumentDto;
|
|
7062
|
+
headers?: {
|
|
7063
|
+
/**
|
|
7064
|
+
* 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.
|
|
7065
|
+
*/
|
|
7066
|
+
'Idempotency-Key'?: string;
|
|
7067
|
+
};
|
|
7068
|
+
path?: never;
|
|
7069
|
+
query?: never;
|
|
7070
|
+
url: '/company-document';
|
|
7071
|
+
};
|
|
7072
|
+
type CompanyDocumentControllerCreateErrors = {
|
|
7073
|
+
/**
|
|
7074
|
+
* 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`.
|
|
7075
|
+
*/
|
|
7076
|
+
400: ApiErrorResponse;
|
|
7077
|
+
/**
|
|
7078
|
+
* 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.
|
|
7079
|
+
*/
|
|
7080
|
+
401: ApiErrorResponse;
|
|
7081
|
+
/**
|
|
7082
|
+
* 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).
|
|
7083
|
+
*/
|
|
7084
|
+
403: ApiErrorResponse;
|
|
7085
|
+
/**
|
|
7086
|
+
* 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.
|
|
7087
|
+
*/
|
|
7088
|
+
404: ApiErrorResponse;
|
|
7089
|
+
/**
|
|
7090
|
+
* 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`).
|
|
7091
|
+
*/
|
|
7092
|
+
409: ApiErrorResponse;
|
|
7093
|
+
/**
|
|
7094
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
7095
|
+
*/
|
|
7096
|
+
429: ApiErrorResponse;
|
|
7097
|
+
/**
|
|
7098
|
+
* 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.
|
|
7099
|
+
*/
|
|
7100
|
+
500: ApiErrorResponse;
|
|
7101
|
+
};
|
|
7102
|
+
type CompanyDocumentControllerCreateError = CompanyDocumentControllerCreateErrors[keyof CompanyDocumentControllerCreateErrors];
|
|
7103
|
+
type CompanyDocumentControllerCreateResponses = {
|
|
7104
|
+
201: DocumentResponseDto;
|
|
7105
|
+
};
|
|
7106
|
+
type CompanyDocumentControllerCreateResponse = CompanyDocumentControllerCreateResponses[keyof CompanyDocumentControllerCreateResponses];
|
|
7107
|
+
type ProjectControllerListData = {
|
|
7108
|
+
body?: never;
|
|
7109
|
+
path?: never;
|
|
7110
|
+
query?: {
|
|
7111
|
+
/**
|
|
7112
|
+
* Results per page
|
|
7113
|
+
*/
|
|
7114
|
+
per_page?: number;
|
|
7115
|
+
/**
|
|
7116
|
+
* Page number
|
|
7117
|
+
*/
|
|
7118
|
+
page?: number;
|
|
7119
|
+
direction?: 'asc' | 'desc';
|
|
7120
|
+
/**
|
|
7121
|
+
* Sort field: name, project_code, status, started_at, created_at, updated_at, id (default updated_at)
|
|
7122
|
+
*/
|
|
7123
|
+
sort?: string;
|
|
7124
|
+
/**
|
|
7125
|
+
* Filter by name (case-insensitive partial)
|
|
7126
|
+
*/
|
|
7127
|
+
name?: string;
|
|
7128
|
+
/**
|
|
7129
|
+
* Filter by project code (case-insensitive partial)
|
|
7130
|
+
*/
|
|
7131
|
+
project_code?: string;
|
|
7132
|
+
/**
|
|
7133
|
+
* Filter by status
|
|
7134
|
+
*/
|
|
7135
|
+
status?: 'active' | 'suspended' | 'completed';
|
|
7136
|
+
/**
|
|
7137
|
+
* Filter to one site by its publicId (UUID)
|
|
7138
|
+
*/
|
|
7139
|
+
site_id?: string;
|
|
7140
|
+
/**
|
|
7141
|
+
* Filter: updated_at >= (ISO) — incremental sync watermark
|
|
7142
|
+
*/
|
|
7143
|
+
project_date_updated_from?: string;
|
|
7144
|
+
/**
|
|
7145
|
+
* Filter: updated_at <= (ISO)
|
|
7146
|
+
*/
|
|
7147
|
+
project_date_updated_to?: string;
|
|
7148
|
+
};
|
|
7149
|
+
url: '/project/list';
|
|
7150
|
+
};
|
|
7151
|
+
type ProjectControllerListErrors = {
|
|
7152
|
+
/**
|
|
7153
|
+
* 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`.
|
|
7154
|
+
*/
|
|
7155
|
+
400: ApiErrorResponse;
|
|
7156
|
+
/**
|
|
7157
|
+
* 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.
|
|
7158
|
+
*/
|
|
7159
|
+
401: ApiErrorResponse;
|
|
7160
|
+
/**
|
|
7161
|
+
* 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).
|
|
7162
|
+
*/
|
|
7163
|
+
403: ApiErrorResponse;
|
|
7164
|
+
/**
|
|
7165
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
7166
|
+
*/
|
|
7167
|
+
429: ApiErrorResponse;
|
|
7168
|
+
/**
|
|
7169
|
+
* 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.
|
|
7170
|
+
*/
|
|
7171
|
+
500: ApiErrorResponse;
|
|
7172
|
+
};
|
|
7173
|
+
type ProjectControllerListError = ProjectControllerListErrors[keyof ProjectControllerListErrors];
|
|
7174
|
+
type ProjectControllerListResponses = {
|
|
7175
|
+
200: ListProjectsResponseDto;
|
|
7176
|
+
};
|
|
7177
|
+
type ProjectControllerListResponse = ProjectControllerListResponses[keyof ProjectControllerListResponses];
|
|
7178
|
+
type ProjectControllerDeleteData = {
|
|
7179
|
+
body?: never;
|
|
7180
|
+
path: {
|
|
7181
|
+
/**
|
|
7182
|
+
* Project public ID
|
|
7183
|
+
*/
|
|
7184
|
+
id: string;
|
|
7185
|
+
};
|
|
7186
|
+
query?: never;
|
|
7187
|
+
url: '/project/{id}';
|
|
7188
|
+
};
|
|
7189
|
+
type ProjectControllerDeleteErrors = {
|
|
7190
|
+
/**
|
|
7191
|
+
* 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.
|
|
7192
|
+
*/
|
|
7193
|
+
401: ApiErrorResponse;
|
|
7194
|
+
/**
|
|
7195
|
+
* 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).
|
|
7196
|
+
*/
|
|
7197
|
+
403: ApiErrorResponse;
|
|
7198
|
+
/**
|
|
7199
|
+
* 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.
|
|
7200
|
+
*/
|
|
7201
|
+
404: ApiErrorResponse;
|
|
7202
|
+
/**
|
|
7203
|
+
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
7204
|
+
*/
|
|
7205
|
+
429: ApiErrorResponse;
|
|
7206
|
+
/**
|
|
7207
|
+
* 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.
|
|
7208
|
+
*/
|
|
7209
|
+
500: ApiErrorResponse;
|
|
7210
|
+
};
|
|
7211
|
+
type ProjectControllerDeleteError = ProjectControllerDeleteErrors[keyof ProjectControllerDeleteErrors];
|
|
7212
|
+
type ProjectControllerDeleteResponses = {
|
|
7213
|
+
200: DeleteProjectResponseDto;
|
|
7214
|
+
};
|
|
7215
|
+
type ProjectControllerDeleteResponse = ProjectControllerDeleteResponses[keyof ProjectControllerDeleteResponses];
|
|
7216
|
+
type ProjectControllerGetData = {
|
|
7217
|
+
body?: never;
|
|
7218
|
+
path: {
|
|
7219
|
+
/**
|
|
7220
|
+
* Project public ID
|
|
6500
7221
|
*/
|
|
6501
|
-
|
|
7222
|
+
id: string;
|
|
6502
7223
|
};
|
|
6503
|
-
|
|
7224
|
+
query?: never;
|
|
7225
|
+
url: '/project/{id}';
|
|
6504
7226
|
};
|
|
6505
|
-
type
|
|
6506
|
-
/**
|
|
6507
|
-
* 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`.
|
|
6508
|
-
*/
|
|
6509
|
-
400: ApiErrorResponse;
|
|
7227
|
+
type ProjectControllerGetErrors = {
|
|
6510
7228
|
/**
|
|
6511
7229
|
* 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.
|
|
6512
7230
|
*/
|
|
@@ -6515,6 +7233,10 @@ type CompanyDocumentControllerListErrors = {
|
|
|
6515
7233
|
* 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).
|
|
6516
7234
|
*/
|
|
6517
7235
|
403: ApiErrorResponse;
|
|
7236
|
+
/**
|
|
7237
|
+
* 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.
|
|
7238
|
+
*/
|
|
7239
|
+
404: ApiErrorResponse;
|
|
6518
7240
|
/**
|
|
6519
7241
|
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
6520
7242
|
*/
|
|
@@ -6524,23 +7246,29 @@ type CompanyDocumentControllerListErrors = {
|
|
|
6524
7246
|
*/
|
|
6525
7247
|
500: ApiErrorResponse;
|
|
6526
7248
|
};
|
|
6527
|
-
type
|
|
6528
|
-
type
|
|
6529
|
-
200:
|
|
7249
|
+
type ProjectControllerGetError = ProjectControllerGetErrors[keyof ProjectControllerGetErrors];
|
|
7250
|
+
type ProjectControllerGetResponses = {
|
|
7251
|
+
200: ProjectResponseDto;
|
|
6530
7252
|
};
|
|
6531
|
-
type
|
|
6532
|
-
type
|
|
6533
|
-
body
|
|
7253
|
+
type ProjectControllerGetResponse = ProjectControllerGetResponses[keyof ProjectControllerGetResponses];
|
|
7254
|
+
type ProjectControllerUpdateData = {
|
|
7255
|
+
body: UpdateProjectDto;
|
|
7256
|
+
headers?: {
|
|
7257
|
+
/**
|
|
7258
|
+
* 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.
|
|
7259
|
+
*/
|
|
7260
|
+
'Idempotency-Key'?: string;
|
|
7261
|
+
};
|
|
6534
7262
|
path: {
|
|
6535
7263
|
/**
|
|
6536
|
-
*
|
|
7264
|
+
* Project public ID
|
|
6537
7265
|
*/
|
|
6538
7266
|
id: string;
|
|
6539
7267
|
};
|
|
6540
7268
|
query?: never;
|
|
6541
|
-
url: '/
|
|
7269
|
+
url: '/project/{id}';
|
|
6542
7270
|
};
|
|
6543
|
-
type
|
|
7271
|
+
type ProjectControllerUpdateErrors = {
|
|
6544
7272
|
/**
|
|
6545
7273
|
* 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`.
|
|
6546
7274
|
*/
|
|
@@ -6557,6 +7285,10 @@ type CompanyDocumentControllerRemoveErrors = {
|
|
|
6557
7285
|
* 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.
|
|
6558
7286
|
*/
|
|
6559
7287
|
404: ApiErrorResponse;
|
|
7288
|
+
/**
|
|
7289
|
+
* 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`).
|
|
7290
|
+
*/
|
|
7291
|
+
409: ApiErrorResponse;
|
|
6560
7292
|
/**
|
|
6561
7293
|
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
6562
7294
|
*/
|
|
@@ -6566,23 +7298,41 @@ type CompanyDocumentControllerRemoveErrors = {
|
|
|
6566
7298
|
*/
|
|
6567
7299
|
500: ApiErrorResponse;
|
|
6568
7300
|
};
|
|
6569
|
-
type
|
|
6570
|
-
type
|
|
6571
|
-
200:
|
|
7301
|
+
type ProjectControllerUpdateError = ProjectControllerUpdateErrors[keyof ProjectControllerUpdateErrors];
|
|
7302
|
+
type ProjectControllerUpdateResponses = {
|
|
7303
|
+
200: ProjectResponseDto;
|
|
6572
7304
|
};
|
|
6573
|
-
type
|
|
6574
|
-
type
|
|
7305
|
+
type ProjectControllerUpdateResponse = ProjectControllerUpdateResponses[keyof ProjectControllerUpdateResponses];
|
|
7306
|
+
type ProjectControllerListAssetsData = {
|
|
6575
7307
|
body?: never;
|
|
6576
7308
|
path: {
|
|
6577
7309
|
/**
|
|
6578
|
-
*
|
|
7310
|
+
* Project public ID
|
|
6579
7311
|
*/
|
|
6580
7312
|
id: string;
|
|
6581
7313
|
};
|
|
6582
|
-
query?:
|
|
6583
|
-
|
|
7314
|
+
query?: {
|
|
7315
|
+
/**
|
|
7316
|
+
* Results per page
|
|
7317
|
+
*/
|
|
7318
|
+
per_page?: number;
|
|
7319
|
+
/**
|
|
7320
|
+
* Page number
|
|
7321
|
+
*/
|
|
7322
|
+
page?: number;
|
|
7323
|
+
direction?: 'asc' | 'desc';
|
|
7324
|
+
/**
|
|
7325
|
+
* Sort field: approval_date, expiry_date, approval_status, created_at, updated_at, id (default updated_at)
|
|
7326
|
+
*/
|
|
7327
|
+
sort?: string;
|
|
7328
|
+
/**
|
|
7329
|
+
* Filter by approval status (e.g. approved)
|
|
7330
|
+
*/
|
|
7331
|
+
approval_status?: 'pending' | 'in_review' | 'approved' | 'rejected' | 'expired' | 'returned';
|
|
7332
|
+
};
|
|
7333
|
+
url: '/project/{id}/assets';
|
|
6584
7334
|
};
|
|
6585
|
-
type
|
|
7335
|
+
type ProjectControllerListAssetsErrors = {
|
|
6586
7336
|
/**
|
|
6587
7337
|
* 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`.
|
|
6588
7338
|
*/
|
|
@@ -6608,29 +7358,41 @@ type CompanyDocumentControllerGetErrors = {
|
|
|
6608
7358
|
*/
|
|
6609
7359
|
500: ApiErrorResponse;
|
|
6610
7360
|
};
|
|
6611
|
-
type
|
|
6612
|
-
type
|
|
6613
|
-
200:
|
|
7361
|
+
type ProjectControllerListAssetsError = ProjectControllerListAssetsErrors[keyof ProjectControllerListAssetsErrors];
|
|
7362
|
+
type ProjectControllerListAssetsResponses = {
|
|
7363
|
+
200: ListProjectAssetsResponseDto;
|
|
6614
7364
|
};
|
|
6615
|
-
type
|
|
6616
|
-
type
|
|
6617
|
-
body
|
|
6618
|
-
|
|
7365
|
+
type ProjectControllerListAssetsResponse = ProjectControllerListAssetsResponses[keyof ProjectControllerListAssetsResponses];
|
|
7366
|
+
type ProjectControllerListUsersData = {
|
|
7367
|
+
body?: never;
|
|
7368
|
+
path: {
|
|
6619
7369
|
/**
|
|
6620
|
-
*
|
|
7370
|
+
* Project public ID
|
|
6621
7371
|
*/
|
|
6622
|
-
|
|
7372
|
+
id: string;
|
|
6623
7373
|
};
|
|
6624
|
-
|
|
7374
|
+
query?: {
|
|
6625
7375
|
/**
|
|
6626
|
-
*
|
|
7376
|
+
* Results per page
|
|
6627
7377
|
*/
|
|
6628
|
-
|
|
7378
|
+
per_page?: number;
|
|
7379
|
+
/**
|
|
7380
|
+
* Page number
|
|
7381
|
+
*/
|
|
7382
|
+
page?: number;
|
|
7383
|
+
direction?: 'asc' | 'desc';
|
|
7384
|
+
/**
|
|
7385
|
+
* Sort field: approval_date, expiry_date, approval_status, created_at, updated_at, id (default updated_at)
|
|
7386
|
+
*/
|
|
7387
|
+
sort?: string;
|
|
7388
|
+
/**
|
|
7389
|
+
* Filter by approval status (e.g. approved)
|
|
7390
|
+
*/
|
|
7391
|
+
approval_status?: 'pending' | 'in_review' | 'approved' | 'rejected' | 'expired' | 'returned';
|
|
6629
7392
|
};
|
|
6630
|
-
|
|
6631
|
-
url: '/company-document/{id}';
|
|
7393
|
+
url: '/project/{id}/users';
|
|
6632
7394
|
};
|
|
6633
|
-
type
|
|
7395
|
+
type ProjectControllerListUsersErrors = {
|
|
6634
7396
|
/**
|
|
6635
7397
|
* 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`.
|
|
6636
7398
|
*/
|
|
@@ -6656,13 +7418,13 @@ type CompanyDocumentControllerUpdateErrors = {
|
|
|
6656
7418
|
*/
|
|
6657
7419
|
500: ApiErrorResponse;
|
|
6658
7420
|
};
|
|
6659
|
-
type
|
|
6660
|
-
type
|
|
6661
|
-
200:
|
|
7421
|
+
type ProjectControllerListUsersError = ProjectControllerListUsersErrors[keyof ProjectControllerListUsersErrors];
|
|
7422
|
+
type ProjectControllerListUsersResponses = {
|
|
7423
|
+
200: ListProjectUsersResponseDto;
|
|
6662
7424
|
};
|
|
6663
|
-
type
|
|
6664
|
-
type
|
|
6665
|
-
body:
|
|
7425
|
+
type ProjectControllerListUsersResponse = ProjectControllerListUsersResponses[keyof ProjectControllerListUsersResponses];
|
|
7426
|
+
type ProjectControllerCreateData = {
|
|
7427
|
+
body: CreateProjectDto;
|
|
6666
7428
|
headers?: {
|
|
6667
7429
|
/**
|
|
6668
7430
|
* 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.
|
|
@@ -6671,9 +7433,9 @@ type CompanyDocumentControllerCreateData = {
|
|
|
6671
7433
|
};
|
|
6672
7434
|
path?: never;
|
|
6673
7435
|
query?: never;
|
|
6674
|
-
url: '/
|
|
7436
|
+
url: '/project';
|
|
6675
7437
|
};
|
|
6676
|
-
type
|
|
7438
|
+
type ProjectControllerCreateErrors = {
|
|
6677
7439
|
/**
|
|
6678
7440
|
* 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`.
|
|
6679
7441
|
*/
|
|
@@ -6703,12 +7465,12 @@ type CompanyDocumentControllerCreateErrors = {
|
|
|
6703
7465
|
*/
|
|
6704
7466
|
500: ApiErrorResponse;
|
|
6705
7467
|
};
|
|
6706
|
-
type
|
|
6707
|
-
type
|
|
6708
|
-
201:
|
|
7468
|
+
type ProjectControllerCreateError = ProjectControllerCreateErrors[keyof ProjectControllerCreateErrors];
|
|
7469
|
+
type ProjectControllerCreateResponses = {
|
|
7470
|
+
201: ProjectResponseDto;
|
|
6709
7471
|
};
|
|
6710
|
-
type
|
|
6711
|
-
type
|
|
7472
|
+
type ProjectControllerCreateResponse = ProjectControllerCreateResponses[keyof ProjectControllerCreateResponses];
|
|
7473
|
+
type JobControllerListData = {
|
|
6712
7474
|
body?: never;
|
|
6713
7475
|
path?: never;
|
|
6714
7476
|
query?: {
|
|
@@ -6722,37 +7484,45 @@ type ProjectControllerListData = {
|
|
|
6722
7484
|
page?: number;
|
|
6723
7485
|
direction?: 'asc' | 'desc';
|
|
6724
7486
|
/**
|
|
6725
|
-
* Sort field:
|
|
7487
|
+
* Sort field: title, job_number, status, start_date, created_at, updated_at, id (default updated_at)
|
|
6726
7488
|
*/
|
|
6727
7489
|
sort?: string;
|
|
6728
7490
|
/**
|
|
6729
|
-
* Filter by
|
|
7491
|
+
* Filter by title (case-insensitive partial)
|
|
6730
7492
|
*/
|
|
6731
|
-
|
|
7493
|
+
title?: string;
|
|
6732
7494
|
/**
|
|
6733
|
-
* Filter by
|
|
7495
|
+
* Filter by job number (case-insensitive partial)
|
|
6734
7496
|
*/
|
|
6735
|
-
|
|
7497
|
+
job_number?: string;
|
|
6736
7498
|
/**
|
|
6737
7499
|
* Filter by status
|
|
6738
7500
|
*/
|
|
6739
|
-
status?:
|
|
7501
|
+
status?: string;
|
|
6740
7502
|
/**
|
|
6741
|
-
* Filter to one
|
|
7503
|
+
* Filter to one customer by its publicId (UUID)
|
|
6742
7504
|
*/
|
|
6743
|
-
|
|
7505
|
+
customer_id?: string;
|
|
7506
|
+
/**
|
|
7507
|
+
* Filter: start_date >= (ISO date)
|
|
7508
|
+
*/
|
|
7509
|
+
start_date_from?: string;
|
|
7510
|
+
/**
|
|
7511
|
+
* Filter: start_date <= (ISO date)
|
|
7512
|
+
*/
|
|
7513
|
+
start_date_to?: string;
|
|
6744
7514
|
/**
|
|
6745
7515
|
* Filter: updated_at >= (ISO) — incremental sync watermark
|
|
6746
7516
|
*/
|
|
6747
|
-
|
|
7517
|
+
job_date_updated_from?: string;
|
|
6748
7518
|
/**
|
|
6749
7519
|
* Filter: updated_at <= (ISO)
|
|
6750
7520
|
*/
|
|
6751
|
-
|
|
7521
|
+
job_date_updated_to?: string;
|
|
6752
7522
|
};
|
|
6753
|
-
url: '/
|
|
7523
|
+
url: '/job/list';
|
|
6754
7524
|
};
|
|
6755
|
-
type
|
|
7525
|
+
type JobControllerListErrors = {
|
|
6756
7526
|
/**
|
|
6757
7527
|
* 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
7528
|
*/
|
|
@@ -6774,23 +7544,23 @@ type ProjectControllerListErrors = {
|
|
|
6774
7544
|
*/
|
|
6775
7545
|
500: ApiErrorResponse;
|
|
6776
7546
|
};
|
|
6777
|
-
type
|
|
6778
|
-
type
|
|
6779
|
-
200:
|
|
7547
|
+
type JobControllerListError = JobControllerListErrors[keyof JobControllerListErrors];
|
|
7548
|
+
type JobControllerListResponses = {
|
|
7549
|
+
200: ListJobsResponseDto;
|
|
6780
7550
|
};
|
|
6781
|
-
type
|
|
6782
|
-
type
|
|
7551
|
+
type JobControllerListResponse = JobControllerListResponses[keyof JobControllerListResponses];
|
|
7552
|
+
type JobControllerDeleteData = {
|
|
6783
7553
|
body?: never;
|
|
6784
7554
|
path: {
|
|
6785
7555
|
/**
|
|
6786
|
-
*
|
|
7556
|
+
* Job public ID
|
|
6787
7557
|
*/
|
|
6788
7558
|
id: string;
|
|
6789
7559
|
};
|
|
6790
7560
|
query?: never;
|
|
6791
|
-
url: '/
|
|
7561
|
+
url: '/job/{id}';
|
|
6792
7562
|
};
|
|
6793
|
-
type
|
|
7563
|
+
type JobControllerDeleteErrors = {
|
|
6794
7564
|
/**
|
|
6795
7565
|
* 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
7566
|
*/
|
|
@@ -6812,23 +7582,23 @@ type ProjectControllerDeleteErrors = {
|
|
|
6812
7582
|
*/
|
|
6813
7583
|
500: ApiErrorResponse;
|
|
6814
7584
|
};
|
|
6815
|
-
type
|
|
6816
|
-
type
|
|
6817
|
-
200:
|
|
7585
|
+
type JobControllerDeleteError = JobControllerDeleteErrors[keyof JobControllerDeleteErrors];
|
|
7586
|
+
type JobControllerDeleteResponses = {
|
|
7587
|
+
200: DeleteJobResponseDto;
|
|
6818
7588
|
};
|
|
6819
|
-
type
|
|
6820
|
-
type
|
|
7589
|
+
type JobControllerDeleteResponse = JobControllerDeleteResponses[keyof JobControllerDeleteResponses];
|
|
7590
|
+
type JobControllerGetData = {
|
|
6821
7591
|
body?: never;
|
|
6822
7592
|
path: {
|
|
6823
7593
|
/**
|
|
6824
|
-
*
|
|
7594
|
+
* Job public ID
|
|
6825
7595
|
*/
|
|
6826
7596
|
id: string;
|
|
6827
7597
|
};
|
|
6828
7598
|
query?: never;
|
|
6829
|
-
url: '/
|
|
7599
|
+
url: '/job/{id}';
|
|
6830
7600
|
};
|
|
6831
|
-
type
|
|
7601
|
+
type JobControllerGetErrors = {
|
|
6832
7602
|
/**
|
|
6833
7603
|
* 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
7604
|
*/
|
|
@@ -6850,13 +7620,13 @@ type ProjectControllerGetErrors = {
|
|
|
6850
7620
|
*/
|
|
6851
7621
|
500: ApiErrorResponse;
|
|
6852
7622
|
};
|
|
6853
|
-
type
|
|
6854
|
-
type
|
|
6855
|
-
200:
|
|
7623
|
+
type JobControllerGetError = JobControllerGetErrors[keyof JobControllerGetErrors];
|
|
7624
|
+
type JobControllerGetResponses = {
|
|
7625
|
+
200: JobResponseDto;
|
|
6856
7626
|
};
|
|
6857
|
-
type
|
|
6858
|
-
type
|
|
6859
|
-
body:
|
|
7627
|
+
type JobControllerGetResponse = JobControllerGetResponses[keyof JobControllerGetResponses];
|
|
7628
|
+
type JobControllerUpdateData = {
|
|
7629
|
+
body: UpdateJobDto;
|
|
6860
7630
|
headers?: {
|
|
6861
7631
|
/**
|
|
6862
7632
|
* 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.
|
|
@@ -6865,14 +7635,14 @@ type ProjectControllerUpdateData = {
|
|
|
6865
7635
|
};
|
|
6866
7636
|
path: {
|
|
6867
7637
|
/**
|
|
6868
|
-
*
|
|
7638
|
+
* Job public ID
|
|
6869
7639
|
*/
|
|
6870
7640
|
id: string;
|
|
6871
7641
|
};
|
|
6872
7642
|
query?: never;
|
|
6873
|
-
url: '/
|
|
7643
|
+
url: '/job/{id}';
|
|
6874
7644
|
};
|
|
6875
|
-
type
|
|
7645
|
+
type JobControllerUpdateErrors = {
|
|
6876
7646
|
/**
|
|
6877
7647
|
* 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
7648
|
*/
|
|
@@ -6889,10 +7659,6 @@ type ProjectControllerUpdateErrors = {
|
|
|
6889
7659
|
* 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
7660
|
*/
|
|
6891
7661
|
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
7662
|
/**
|
|
6897
7663
|
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
6898
7664
|
*/
|
|
@@ -6902,16 +7668,16 @@ type ProjectControllerUpdateErrors = {
|
|
|
6902
7668
|
*/
|
|
6903
7669
|
500: ApiErrorResponse;
|
|
6904
7670
|
};
|
|
6905
|
-
type
|
|
6906
|
-
type
|
|
6907
|
-
200:
|
|
7671
|
+
type JobControllerUpdateError = JobControllerUpdateErrors[keyof JobControllerUpdateErrors];
|
|
7672
|
+
type JobControllerUpdateResponses = {
|
|
7673
|
+
200: JobResponseDto;
|
|
6908
7674
|
};
|
|
6909
|
-
type
|
|
6910
|
-
type
|
|
7675
|
+
type JobControllerUpdateResponse = JobControllerUpdateResponses[keyof JobControllerUpdateResponses];
|
|
7676
|
+
type JobControllerListAssignmentsData = {
|
|
6911
7677
|
body?: never;
|
|
6912
7678
|
path: {
|
|
6913
7679
|
/**
|
|
6914
|
-
*
|
|
7680
|
+
* Job public ID
|
|
6915
7681
|
*/
|
|
6916
7682
|
id: string;
|
|
6917
7683
|
};
|
|
@@ -6926,17 +7692,17 @@ type ProjectControllerListAssetsData = {
|
|
|
6926
7692
|
page?: number;
|
|
6927
7693
|
direction?: 'asc' | 'desc';
|
|
6928
7694
|
/**
|
|
6929
|
-
* Sort field:
|
|
7695
|
+
* Sort field: assignment_date, status, created_at, updated_at, id (default assignment_date)
|
|
6930
7696
|
*/
|
|
6931
7697
|
sort?: string;
|
|
6932
7698
|
/**
|
|
6933
|
-
* Filter by
|
|
7699
|
+
* Filter by assignment status (e.g. assigned)
|
|
6934
7700
|
*/
|
|
6935
|
-
|
|
7701
|
+
status?: string;
|
|
6936
7702
|
};
|
|
6937
|
-
url: '/
|
|
7703
|
+
url: '/job/{id}/assignments';
|
|
6938
7704
|
};
|
|
6939
|
-
type
|
|
7705
|
+
type JobControllerListAssignmentsErrors = {
|
|
6940
7706
|
/**
|
|
6941
7707
|
* 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
7708
|
*/
|
|
@@ -6962,16 +7728,16 @@ type ProjectControllerListAssetsErrors = {
|
|
|
6962
7728
|
*/
|
|
6963
7729
|
500: ApiErrorResponse;
|
|
6964
7730
|
};
|
|
6965
|
-
type
|
|
6966
|
-
type
|
|
6967
|
-
200:
|
|
7731
|
+
type JobControllerListAssignmentsError = JobControllerListAssignmentsErrors[keyof JobControllerListAssignmentsErrors];
|
|
7732
|
+
type JobControllerListAssignmentsResponses = {
|
|
7733
|
+
200: ListJobAssignmentsResponseDto;
|
|
6968
7734
|
};
|
|
6969
|
-
type
|
|
6970
|
-
type
|
|
7735
|
+
type JobControllerListAssignmentsResponse = JobControllerListAssignmentsResponses[keyof JobControllerListAssignmentsResponses];
|
|
7736
|
+
type JobControllerListRequirementsData = {
|
|
6971
7737
|
body?: never;
|
|
6972
7738
|
path: {
|
|
6973
7739
|
/**
|
|
6974
|
-
*
|
|
7740
|
+
* Job public ID
|
|
6975
7741
|
*/
|
|
6976
7742
|
id: string;
|
|
6977
7743
|
};
|
|
@@ -6986,17 +7752,13 @@ type ProjectControllerListUsersData = {
|
|
|
6986
7752
|
page?: number;
|
|
6987
7753
|
direction?: 'asc' | 'desc';
|
|
6988
7754
|
/**
|
|
6989
|
-
* Sort field:
|
|
7755
|
+
* Sort field: created_at, updated_at, id (default created_at)
|
|
6990
7756
|
*/
|
|
6991
7757
|
sort?: string;
|
|
6992
|
-
/**
|
|
6993
|
-
* Filter by approval status (e.g. approved)
|
|
6994
|
-
*/
|
|
6995
|
-
approval_status?: 'pending' | 'in_review' | 'approved' | 'rejected' | 'expired' | 'returned';
|
|
6996
7758
|
};
|
|
6997
|
-
url: '/
|
|
7759
|
+
url: '/job/{id}/requirements';
|
|
6998
7760
|
};
|
|
6999
|
-
type
|
|
7761
|
+
type JobControllerListRequirementsErrors = {
|
|
7000
7762
|
/**
|
|
7001
7763
|
* 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
7764
|
*/
|
|
@@ -7022,13 +7784,13 @@ type ProjectControllerListUsersErrors = {
|
|
|
7022
7784
|
*/
|
|
7023
7785
|
500: ApiErrorResponse;
|
|
7024
7786
|
};
|
|
7025
|
-
type
|
|
7026
|
-
type
|
|
7027
|
-
200:
|
|
7787
|
+
type JobControllerListRequirementsError = JobControllerListRequirementsErrors[keyof JobControllerListRequirementsErrors];
|
|
7788
|
+
type JobControllerListRequirementsResponses = {
|
|
7789
|
+
200: ListJobRequirementsResponseDto;
|
|
7028
7790
|
};
|
|
7029
|
-
type
|
|
7030
|
-
type
|
|
7031
|
-
body:
|
|
7791
|
+
type JobControllerListRequirementsResponse = JobControllerListRequirementsResponses[keyof JobControllerListRequirementsResponses];
|
|
7792
|
+
type JobControllerCreateData = {
|
|
7793
|
+
body: CreateJobDto;
|
|
7032
7794
|
headers?: {
|
|
7033
7795
|
/**
|
|
7034
7796
|
* 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.
|
|
@@ -7037,9 +7799,9 @@ type ProjectControllerCreateData = {
|
|
|
7037
7799
|
};
|
|
7038
7800
|
path?: never;
|
|
7039
7801
|
query?: never;
|
|
7040
|
-
url: '/
|
|
7802
|
+
url: '/job';
|
|
7041
7803
|
};
|
|
7042
|
-
type
|
|
7804
|
+
type JobControllerCreateErrors = {
|
|
7043
7805
|
/**
|
|
7044
7806
|
* 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
7807
|
*/
|
|
@@ -7056,10 +7818,6 @@ type ProjectControllerCreateErrors = {
|
|
|
7056
7818
|
* 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
7819
|
*/
|
|
7058
7820
|
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
7821
|
/**
|
|
7064
7822
|
* Rate limit exceeded for this API key. Inspect `X-RateLimit-Reset` and `Retry-After` to find out when the window resets.
|
|
7065
7823
|
*/
|
|
@@ -7069,11 +7827,11 @@ type ProjectControllerCreateErrors = {
|
|
|
7069
7827
|
*/
|
|
7070
7828
|
500: ApiErrorResponse;
|
|
7071
7829
|
};
|
|
7072
|
-
type
|
|
7073
|
-
type
|
|
7074
|
-
201:
|
|
7830
|
+
type JobControllerCreateError = JobControllerCreateErrors[keyof JobControllerCreateErrors];
|
|
7831
|
+
type JobControllerCreateResponses = {
|
|
7832
|
+
201: JobResponseDto;
|
|
7075
7833
|
};
|
|
7076
|
-
type
|
|
7834
|
+
type JobControllerCreateResponse = JobControllerCreateResponses[keyof JobControllerCreateResponses];
|
|
7077
7835
|
type CustomerControllerListData = {
|
|
7078
7836
|
body?: never;
|
|
7079
7837
|
path?: never;
|
|
@@ -8253,11 +9011,7 @@ declare const assetControllerListAssets: <ThrowOnError extends boolean = false>(
|
|
|
8253
9011
|
data?: Array<{
|
|
8254
9012
|
id?: string;
|
|
8255
9013
|
publicId?: string;
|
|
8256
|
-
assetNumber
|
|
8257
|
-
/**
|
|
8258
|
-
* Get a company document
|
|
8259
|
-
*/
|
|
8260
|
-
?: string;
|
|
9014
|
+
assetNumber?: string;
|
|
8261
9015
|
assetClassId?: string;
|
|
8262
9016
|
siteId?: string;
|
|
8263
9017
|
companyId?: string;
|
|
@@ -8632,6 +9386,41 @@ declare const projectControllerListUsers: <ThrowOnError extends boolean = false>
|
|
|
8632
9386
|
* 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
9387
|
*/
|
|
8634
9388
|
declare const projectControllerCreate: <ThrowOnError extends boolean = false>(options: Options<ProjectControllerCreateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ProjectResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
9389
|
+
/**
|
|
9390
|
+
* List jobs
|
|
9391
|
+
* Returns a paginated list of jobs for the authenticated company. Filter by title, job_number, status, customer (publicId), start_date range, and an incremental `updated_at` watermark. Each row includes assignment_count / requirement_count. Requires job:read.
|
|
9392
|
+
*/
|
|
9393
|
+
declare const jobControllerList: <ThrowOnError extends boolean = false>(options?: Options<JobControllerListData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListJobsResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
9394
|
+
/**
|
|
9395
|
+
* Delete a job
|
|
9396
|
+
* Soft-deletes a job by its public_id (UUID). Requires job:delete.
|
|
9397
|
+
*/
|
|
9398
|
+
declare const jobControllerDelete: <ThrowOnError extends boolean = false>(options: Options<JobControllerDeleteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteJobResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
9399
|
+
/**
|
|
9400
|
+
* Get a job by public ID
|
|
9401
|
+
* Returns one job (with embedded job_properties[] and assignment/requirement counts) by its public_id (UUID). Requires job:read.
|
|
9402
|
+
*/
|
|
9403
|
+
declare const jobControllerGet: <ThrowOnError extends boolean = false>(options: Options<JobControllerGetData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<JobResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
9404
|
+
/**
|
|
9405
|
+
* Update a job
|
|
9406
|
+
* Updates a job by its public_id (UUID). Only provided fields are changed; job_number is immutable. Requires job:create (the permission that gates job mutations). Supports `Idempotency-Key`.
|
|
9407
|
+
*/
|
|
9408
|
+
declare const jobControllerUpdate: <ThrowOnError extends boolean = false>(options: Options<JobControllerUpdateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<JobResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
9409
|
+
/**
|
|
9410
|
+
* List assignments for a job
|
|
9411
|
+
* Returns the crew/asset assignments for a job (read-only). Each row is a user or asset assigned on a date, with status. Filter by status. The assign workflow happens in the app. Requires job:read.
|
|
9412
|
+
*/
|
|
9413
|
+
declare const jobControllerListAssignments: <ThrowOnError extends boolean = false>(options: Options<JobControllerListAssignmentsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListJobAssignmentsResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
9414
|
+
/**
|
|
9415
|
+
* List asset requirements for a job
|
|
9416
|
+
* Returns the asset requirements for a job (read-only): the asset category/class, sub-class, quantity and whether mandatory. Requires job:read.
|
|
9417
|
+
*/
|
|
9418
|
+
declare const jobControllerListRequirements: <ThrowOnError extends boolean = false>(options: Options<JobControllerListRequirementsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListJobRequirementsResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
9419
|
+
/**
|
|
9420
|
+
* Create a job
|
|
9421
|
+
* Creates a job for a customer (by publicId). The job_number is generated automatically (PREFIX-00001) — do not supply it. Requires job:create. Supports `Idempotency-Key`.
|
|
9422
|
+
*/
|
|
9423
|
+
declare const jobControllerCreate: <ThrowOnError extends boolean = false>(options: Options<JobControllerCreateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<JobResponseDto, ApiErrorResponse, ThrowOnError>;
|
|
8635
9424
|
/**
|
|
8636
9425
|
* List customers
|
|
8637
9426
|
* Returns a paginated list of customers for the authenticated company. Supports name/status filters and an incremental `updated_at` watermark. Requires customer:read.
|
|
@@ -8874,6 +9663,17 @@ interface ProjectsResource {
|
|
|
8874
9663
|
/** Read the user assignments for a project (filter by approval_status). */
|
|
8875
9664
|
users: (options: WakataMethodOptions<Parameters<typeof projectControllerListUsers>[0]>) => Promise<Awaited<ReturnType<typeof projectControllerListUsers>>['data']>;
|
|
8876
9665
|
}
|
|
9666
|
+
interface JobsResource {
|
|
9667
|
+
list: (options?: WakataMethodOptions<Parameters<typeof jobControllerList>[0] extends infer O ? O : never>) => Promise<Awaited<ReturnType<typeof jobControllerList>>['data']>;
|
|
9668
|
+
get: (options: WakataMethodOptions<Parameters<typeof jobControllerGet>[0]>) => Promise<Awaited<ReturnType<typeof jobControllerGet>>['data']>;
|
|
9669
|
+
create: (options: WakataMethodOptions<Parameters<typeof jobControllerCreate>[0]>) => Promise<Awaited<ReturnType<typeof jobControllerCreate>>['data']>;
|
|
9670
|
+
update: (options: WakataMethodOptions<Parameters<typeof jobControllerUpdate>[0]>) => Promise<Awaited<ReturnType<typeof jobControllerUpdate>>['data']>;
|
|
9671
|
+
delete: (options: WakataMethodOptions<Parameters<typeof jobControllerDelete>[0]>) => Promise<Awaited<ReturnType<typeof jobControllerDelete>>['data']>;
|
|
9672
|
+
/** Read crew/asset assignments for a job (filter by status). */
|
|
9673
|
+
assignments: (options: WakataMethodOptions<Parameters<typeof jobControllerListAssignments>[0]>) => Promise<Awaited<ReturnType<typeof jobControllerListAssignments>>['data']>;
|
|
9674
|
+
/** Read asset requirements (needs spec) for a job. */
|
|
9675
|
+
requirements: (options: WakataMethodOptions<Parameters<typeof jobControllerListRequirements>[0]>) => Promise<Awaited<ReturnType<typeof jobControllerListRequirements>>['data']>;
|
|
9676
|
+
}
|
|
8877
9677
|
/**
|
|
8878
9678
|
* One entity-document type's CRUD. All document types share the same DTOs, so
|
|
8879
9679
|
* the shape is typed against the asset-document operations (structurally
|
|
@@ -8934,6 +9734,7 @@ declare class WakataClient {
|
|
|
8934
9734
|
readonly devices: DevicesResource;
|
|
8935
9735
|
readonly timesheets: TimesheetsResource;
|
|
8936
9736
|
readonly projects: ProjectsResource;
|
|
9737
|
+
readonly jobs: JobsResource;
|
|
8937
9738
|
constructor(options: WakataClientOptions);
|
|
8938
9739
|
}
|
|
8939
9740
|
|
|
@@ -9107,4 +9908,4 @@ declare const PACKAGE_VERSION = "0.3.3";
|
|
|
9107
9908
|
/** Default base URL for the Wakata Public API (production). */
|
|
9108
9909
|
declare const DEFAULT_BASE_URL = "https://api.wakata.ai/api/v1";
|
|
9109
9910
|
|
|
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 };
|
|
9911
|
+
export { type ApiErrorBody, type ApiErrorDetail, type ApiErrorResponse, type AssetClassControllerCreateAssetClassData, type AssetClassControllerCreateAssetClassError, type AssetClassControllerCreateAssetClassErrors, type AssetClassControllerCreateAssetClassResponse, type AssetClassControllerCreateAssetClassResponses, type AssetClassControllerGetAssetClassListData, type AssetClassControllerGetAssetClassListError, type AssetClassControllerGetAssetClassListErrors, type AssetClassControllerGetAssetClassListResponse, type AssetClassControllerGetAssetClassListResponses, type AssetClassControllerUpdateAssetClassData, type AssetClassControllerUpdateAssetClassError, type AssetClassControllerUpdateAssetClassErrors, type AssetClassControllerUpdateAssetClassResponse, type AssetClassControllerUpdateAssetClassResponses, type AssetClassDocumentControllerCreateData, type AssetClassDocumentControllerCreateError, type AssetClassDocumentControllerCreateErrors, type AssetClassDocumentControllerCreateResponse, type AssetClassDocumentControllerCreateResponses, type AssetClassDocumentControllerGetData, type AssetClassDocumentControllerGetError, type AssetClassDocumentControllerGetErrors, type AssetClassDocumentControllerGetResponse, type AssetClassDocumentControllerGetResponses, type AssetClassDocumentControllerListData, type AssetClassDocumentControllerListError, type AssetClassDocumentControllerListErrors, type AssetClassDocumentControllerListResponse, type AssetClassDocumentControllerListResponses, type AssetClassDocumentControllerRemoveData, type AssetClassDocumentControllerRemoveError, type AssetClassDocumentControllerRemoveErrors, type AssetClassDocumentControllerRemoveResponse, type AssetClassDocumentControllerRemoveResponses, type AssetClassDocumentControllerUpdateData, type AssetClassDocumentControllerUpdateError, type AssetClassDocumentControllerUpdateErrors, type AssetClassDocumentControllerUpdateResponse, type AssetClassDocumentControllerUpdateResponses, type AssetClassListResponseDto, type AssetClassPropertyControllerRemoveData, type AssetClassPropertyControllerRemoveError, type AssetClassPropertyControllerRemoveErrors, type AssetClassPropertyControllerRemoveResponse, type AssetClassPropertyControllerRemoveResponses, type AssetClassPropertyControllerUpdateData, type AssetClassPropertyControllerUpdateError, type AssetClassPropertyControllerUpdateErrors, type AssetClassPropertyControllerUpdateResponse, type AssetClassPropertyControllerUpdateResponses, type AssetClassPropertyResponseDto, type AssetClassResponseDto, type AssetControllerCreateAssetPublicData, type AssetControllerCreateAssetPublicError, type AssetControllerCreateAssetPublicErrors, type AssetControllerCreateAssetPublicResponse, type AssetControllerCreateAssetPublicResponses, type AssetControllerGetAssetData, type AssetControllerGetAssetError, type AssetControllerGetAssetErrors, type AssetControllerGetAssetResponse, type AssetControllerGetAssetResponses, type AssetControllerListAssetsData, type AssetControllerListAssetsError, type AssetControllerListAssetsErrors, type AssetControllerListAssetsResponse, type AssetControllerListAssetsResponses, type AssetControllerUpdateAssetData, type AssetControllerUpdateAssetError, type AssetControllerUpdateAssetErrors, type AssetControllerUpdateAssetResponse, type AssetControllerUpdateAssetResponses, type AssetDocumentControllerCreateData, type AssetDocumentControllerCreateError, type AssetDocumentControllerCreateErrors, type AssetDocumentControllerCreateResponse, type AssetDocumentControllerCreateResponses, type AssetDocumentControllerGetData, type AssetDocumentControllerGetError, type AssetDocumentControllerGetErrors, type AssetDocumentControllerGetResponse, type AssetDocumentControllerGetResponses, type AssetDocumentControllerListData, type AssetDocumentControllerListError, type AssetDocumentControllerListErrors, type AssetDocumentControllerListResponse, type AssetDocumentControllerListResponses, type AssetDocumentControllerRemoveData, type AssetDocumentControllerRemoveError, type AssetDocumentControllerRemoveErrors, type AssetDocumentControllerRemoveResponse, type AssetDocumentControllerRemoveResponses, type AssetDocumentControllerUpdateData, type AssetDocumentControllerUpdateError, type AssetDocumentControllerUpdateErrors, type AssetDocumentControllerUpdateResponse, type AssetDocumentControllerUpdateResponses, type AssetPropertyControllerDeleteAssetPropertyData, type AssetPropertyControllerDeleteAssetPropertyError, type AssetPropertyControllerDeleteAssetPropertyErrors, type AssetPropertyControllerDeleteAssetPropertyResponse, type AssetPropertyControllerDeleteAssetPropertyResponses, type AssetPropertyControllerUpdateAssetPropertyData, type AssetPropertyControllerUpdateAssetPropertyError, type AssetPropertyControllerUpdateAssetPropertyErrors, type AssetPropertyControllerUpdateAssetPropertyResponse, type AssetPropertyControllerUpdateAssetPropertyResponses, type AssetPropertyResponseDto, type AssetsResource, type ChecklistControllerGetChecklistData, type ChecklistControllerGetChecklistError, type ChecklistControllerGetChecklistErrors, type ChecklistControllerGetChecklistResponse, type ChecklistControllerGetChecklistResponses, type ChecklistControllerListChecklistsData, type ChecklistControllerListChecklistsError, type ChecklistControllerListChecklistsErrors, type ChecklistControllerListChecklistsResponse, type ChecklistControllerListChecklistsResponses, type ChecklistSummaryDto, type ClientOptions, type CompanyDocumentControllerCreateData, type CompanyDocumentControllerCreateError, type CompanyDocumentControllerCreateErrors, type CompanyDocumentControllerCreateResponse, type CompanyDocumentControllerCreateResponses, type CompanyDocumentControllerGetData, type CompanyDocumentControllerGetError, type CompanyDocumentControllerGetErrors, type CompanyDocumentControllerGetResponse, type CompanyDocumentControllerGetResponses, type CompanyDocumentControllerListData, type CompanyDocumentControllerListError, type CompanyDocumentControllerListErrors, type CompanyDocumentControllerListResponse, type CompanyDocumentControllerListResponses, type CompanyDocumentControllerRemoveData, type CompanyDocumentControllerRemoveError, type CompanyDocumentControllerRemoveErrors, type CompanyDocumentControllerRemoveResponse, type CompanyDocumentControllerRemoveResponses, type CompanyDocumentControllerUpdateData, type CompanyDocumentControllerUpdateError, type CompanyDocumentControllerUpdateErrors, type CompanyDocumentControllerUpdateResponse, type CompanyDocumentControllerUpdateResponses, type ConfigItemDto, type ConfigTableDto, type CreateAssetClassDto, type CreateConfigItemDto, type CreateCustomerDto, type CreateDocumentDto, type CreateGroupDto, type CreateJobDto, type CreateProjectDto, type CreateSiteDto, type CreateZoneDto, type CustomerControllerCreateData, type CustomerControllerCreateError, type CustomerControllerCreateErrors, type CustomerControllerCreateResponse, type CustomerControllerCreateResponses, type CustomerControllerDeleteData, type CustomerControllerDeleteError, type CustomerControllerDeleteErrors, type CustomerControllerDeleteResponse, type CustomerControllerDeleteResponses, type CustomerControllerGetData, type CustomerControllerGetError, type CustomerControllerGetErrors, type CustomerControllerGetResponse, type CustomerControllerGetResponses, type CustomerControllerListData, type CustomerControllerListError, type CustomerControllerListErrors, type CustomerControllerListResponse, type CustomerControllerListResponses, type CustomerControllerUpdateData, type CustomerControllerUpdateError, type CustomerControllerUpdateErrors, type CustomerControllerUpdateResponse, type CustomerControllerUpdateResponses, type CustomerDocumentControllerCreateData, type CustomerDocumentControllerCreateError, type CustomerDocumentControllerCreateErrors, type CustomerDocumentControllerCreateResponse, type CustomerDocumentControllerCreateResponses, type CustomerDocumentControllerGetData, type CustomerDocumentControllerGetError, type CustomerDocumentControllerGetErrors, type CustomerDocumentControllerGetResponse, type CustomerDocumentControllerGetResponses, type CustomerDocumentControllerListData, type CustomerDocumentControllerListError, type CustomerDocumentControllerListErrors, type CustomerDocumentControllerListResponse, type CustomerDocumentControllerListResponses, type CustomerDocumentControllerRemoveData, type CustomerDocumentControllerRemoveError, type CustomerDocumentControllerRemoveErrors, type CustomerDocumentControllerRemoveResponse, type CustomerDocumentControllerRemoveResponses, type CustomerDocumentControllerUpdateData, type CustomerDocumentControllerUpdateError, type CustomerDocumentControllerUpdateErrors, type CustomerDocumentControllerUpdateResponse, type CustomerDocumentControllerUpdateResponses, type CustomerResponseDto, DEFAULT_BASE_URL, type DeleteAssetClassPropertyResponseDto, type DeleteAssetPropertyResponseDto, type DeleteCustomerResponseDto, type DeleteDocumentResponseDto, type DeleteGroupResponseDto, type DeleteJobResponseDto, type DeleteProjectResponseDto, type DeleteSiteResponseDto, type DeleteUserPropertyResponseDto, type DeleteZoneResponseDto, type DevicePublicControllerGetData, type DevicePublicControllerGetError, type DevicePublicControllerGetErrors, type DevicePublicControllerGetResponse, type DevicePublicControllerGetResponses, type DevicePublicControllerListData, type DevicePublicControllerListError, type DevicePublicControllerListErrors, type DevicePublicControllerListResponse, type DevicePublicControllerListResponses, type DeviceResponseDto, type DocumentResponseDto, type DocumentUploadControllerUploadUrlData, type DocumentUploadControllerUploadUrlError, type DocumentUploadControllerUploadUrlErrors, type DocumentUploadControllerUploadUrlResponse, type DocumentUploadControllerUploadUrlResponses, type DocumentUploadUrlDto, type DocumentUploadUrlResponseDto, type EmbeddedAssetClassPropertyDto, type EmbeddedAssetPropertyDto, type EmbeddedCustomerPropertyDto, type EmbeddedJobPropertyDto, type EmbeddedProjectPropertyDto, type EmbeddedUserPropertyDto, type ErrorDetail, type GroupControllerCreateData, type GroupControllerCreateError, type GroupControllerCreateErrors, type GroupControllerCreateResponse, type GroupControllerCreateResponses, type GroupControllerDeleteData, type GroupControllerDeleteError, type GroupControllerDeleteErrors, type GroupControllerDeleteResponse, type GroupControllerDeleteResponses, type GroupControllerGetData, type GroupControllerGetError, type GroupControllerGetErrors, type GroupControllerGetResponse, type GroupControllerGetResponses, type GroupControllerListData, type GroupControllerListError, type GroupControllerListErrors, type GroupControllerListResponse, type GroupControllerListResponses, type GroupControllerUpdateData, type GroupControllerUpdateError, type GroupControllerUpdateErrors, type GroupControllerUpdateResponse, type GroupControllerUpdateResponses, type GroupResponseDto, type InspectionControllerGetPublicInspectionData, type InspectionControllerGetPublicInspectionError, type InspectionControllerGetPublicInspectionErrors, type InspectionControllerGetPublicInspectionResponse, type InspectionControllerGetPublicInspectionResponses, type InspectionControllerListInspectionsData, type InspectionControllerListInspectionsError, type InspectionControllerListInspectionsErrors, type InspectionControllerListInspectionsResponse, type InspectionControllerListInspectionsResponses, type InspectionResponseDto, type InspectionsResource, type IssueControllerGetIssueHistoryPublicData, type IssueControllerGetIssueHistoryPublicError, type IssueControllerGetIssueHistoryPublicErrors, type IssueControllerGetIssueHistoryPublicResponse, type IssueControllerGetIssueHistoryPublicResponses, type IssueControllerGetIssuePublicData, type IssueControllerGetIssuePublicError, type IssueControllerGetIssuePublicErrors, type IssueControllerGetIssuePublicResponse, type IssueControllerGetIssuePublicResponses, type IssueControllerListIssuesData, type IssueControllerListIssuesError, type IssueControllerListIssuesErrors, type IssueControllerListIssuesResponse, type IssueControllerListIssuesResponses, type IssueControllerUpdateIssuePublicData, type IssueControllerUpdateIssuePublicError, type IssueControllerUpdateIssuePublicErrors, type IssueControllerUpdateIssuePublicResponse, type IssueControllerUpdateIssuePublicResponses, type IssueHistoryDto, type IssueHistoryResponseDto, type IssueResponseDto, type IssuesResource, type JobAssignmentDto, type JobControllerCreateData, type JobControllerCreateError, type JobControllerCreateErrors, type JobControllerCreateResponse, type JobControllerCreateResponses, type JobControllerDeleteData, type JobControllerDeleteError, type JobControllerDeleteErrors, type JobControllerDeleteResponse, type JobControllerDeleteResponses, type JobControllerGetData, type JobControllerGetError, type JobControllerGetErrors, type JobControllerGetResponse, type JobControllerGetResponses, type JobControllerListAssignmentsData, type JobControllerListAssignmentsError, type JobControllerListAssignmentsErrors, type JobControllerListAssignmentsResponse, type JobControllerListAssignmentsResponses, type JobControllerListData, type JobControllerListError, type JobControllerListErrors, type JobControllerListRequirementsData, type JobControllerListRequirementsError, type JobControllerListRequirementsErrors, type JobControllerListRequirementsResponse, type JobControllerListRequirementsResponses, type JobControllerListResponse, type JobControllerListResponses, type JobControllerUpdateData, type JobControllerUpdateError, type JobControllerUpdateErrors, type JobControllerUpdateResponse, type JobControllerUpdateResponses, type JobDocumentControllerCreateData, type JobDocumentControllerCreateError, type JobDocumentControllerCreateErrors, type JobDocumentControllerCreateResponse, type JobDocumentControllerCreateResponses, type JobDocumentControllerGetData, type JobDocumentControllerGetError, type JobDocumentControllerGetErrors, type JobDocumentControllerGetResponse, type JobDocumentControllerGetResponses, type JobDocumentControllerListData, type JobDocumentControllerListError, type JobDocumentControllerListErrors, type JobDocumentControllerListResponse, type JobDocumentControllerListResponses, type JobDocumentControllerRemoveData, type JobDocumentControllerRemoveError, type JobDocumentControllerRemoveErrors, type JobDocumentControllerRemoveResponse, type JobDocumentControllerRemoveResponses, type JobDocumentControllerUpdateData, type JobDocumentControllerUpdateError, type JobDocumentControllerUpdateErrors, type JobDocumentControllerUpdateResponse, type JobDocumentControllerUpdateResponses, type JobRequirementDto, type JobResponseDto, type ListChecklistsResponseDto, type ListConfigItemsResponseDto, type ListConfigTablesResponseDto, type ListCustomersResponseDto, type ListDevicesResponseDto, type ListDocumentsResponseDto, type ListGroupsResponseDto, type ListInspectionsResponseDto, type ListIssuesResponseDto, type ListJobAssignmentsResponseDto, type ListJobRequirementsResponseDto, type ListJobsResponseDto, type ListProjectAssetsResponseDto, type ListProjectUsersResponseDto, type ListProjectsResponseDto, type ListSitesResponseDto, type ListTimesheetsResponseDto, type ListZonesResponseDto, PACKAGE_NAME, PACKAGE_VERSION, type ProjectAssetDto, type ProjectControllerCreateData, type ProjectControllerCreateError, type ProjectControllerCreateErrors, type ProjectControllerCreateResponse, type ProjectControllerCreateResponses, type ProjectControllerDeleteData, type ProjectControllerDeleteError, type ProjectControllerDeleteErrors, type ProjectControllerDeleteResponse, type ProjectControllerDeleteResponses, type ProjectControllerGetData, type ProjectControllerGetError, type ProjectControllerGetErrors, type ProjectControllerGetResponse, type ProjectControllerGetResponses, type ProjectControllerListAssetsData, type ProjectControllerListAssetsError, type ProjectControllerListAssetsErrors, type ProjectControllerListAssetsResponse, type ProjectControllerListAssetsResponses, type ProjectControllerListData, type ProjectControllerListError, type ProjectControllerListErrors, type ProjectControllerListResponse, type ProjectControllerListResponses, type ProjectControllerListUsersData, type ProjectControllerListUsersError, type ProjectControllerListUsersErrors, type ProjectControllerListUsersResponse, type ProjectControllerListUsersResponses, type ProjectControllerUpdateData, type ProjectControllerUpdateError, type ProjectControllerUpdateErrors, type ProjectControllerUpdateResponse, type ProjectControllerUpdateResponses, type ProjectDocumentControllerCreateData, type ProjectDocumentControllerCreateError, type ProjectDocumentControllerCreateErrors, type ProjectDocumentControllerCreateResponse, type ProjectDocumentControllerCreateResponses, type ProjectDocumentControllerGetData, type ProjectDocumentControllerGetError, type ProjectDocumentControllerGetErrors, type ProjectDocumentControllerGetResponse, type ProjectDocumentControllerGetResponses, type ProjectDocumentControllerListData, type ProjectDocumentControllerListError, type ProjectDocumentControllerListErrors, type ProjectDocumentControllerListResponse, type ProjectDocumentControllerListResponses, type ProjectDocumentControllerRemoveData, type ProjectDocumentControllerRemoveError, type ProjectDocumentControllerRemoveErrors, type ProjectDocumentControllerRemoveResponse, type ProjectDocumentControllerRemoveResponses, type ProjectDocumentControllerUpdateData, type ProjectDocumentControllerUpdateError, type ProjectDocumentControllerUpdateErrors, type ProjectDocumentControllerUpdateResponse, type ProjectDocumentControllerUpdateResponses, type ProjectResponseDto, type ProjectUserDto, type PublicConfigControllerCreateConfigItemData, type PublicConfigControllerCreateConfigItemError, type PublicConfigControllerCreateConfigItemErrors, type PublicConfigControllerCreateConfigItemResponse, type PublicConfigControllerCreateConfigItemResponses, type PublicConfigControllerDeleteConfigItemData, type PublicConfigControllerDeleteConfigItemError, type PublicConfigControllerDeleteConfigItemErrors, type PublicConfigControllerDeleteConfigItemResponse, type PublicConfigControllerDeleteConfigItemResponses, type PublicConfigControllerGetConfigItemData, type PublicConfigControllerGetConfigItemError, type PublicConfigControllerGetConfigItemErrors, type PublicConfigControllerGetConfigItemResponse, type PublicConfigControllerGetConfigItemResponses, type PublicConfigControllerListConfigItemsData, type PublicConfigControllerListConfigItemsError, type PublicConfigControllerListConfigItemsErrors, type PublicConfigControllerListConfigItemsResponse, type PublicConfigControllerListConfigItemsResponses, type PublicConfigControllerListConfigTablesData, type PublicConfigControllerListConfigTablesError, type PublicConfigControllerListConfigTablesErrors, type PublicConfigControllerListConfigTablesResponse, type PublicConfigControllerListConfigTablesResponses, type PublicConfigControllerUpdateConfigItemData, type PublicConfigControllerUpdateConfigItemError, type PublicConfigControllerUpdateConfigItemErrors, type PublicConfigControllerUpdateConfigItemResponse, type PublicConfigControllerUpdateConfigItemResponses, type PublicCreateAssetDto, type SiteControllerCreateSiteData, type SiteControllerCreateSiteError, type SiteControllerCreateSiteErrors, type SiteControllerCreateSiteResponse, type SiteControllerCreateSiteResponses, type SiteControllerDeleteSiteData, type SiteControllerDeleteSiteError, type SiteControllerDeleteSiteErrors, type SiteControllerDeleteSiteResponse, type SiteControllerDeleteSiteResponses, type SiteControllerListSitesData, type SiteControllerListSitesError, type SiteControllerListSitesErrors, type SiteControllerListSitesResponse, type SiteControllerListSitesResponses, type SiteControllerUpdateSiteData, type SiteControllerUpdateSiteError, type SiteControllerUpdateSiteErrors, type SiteControllerUpdateSiteResponse, type SiteControllerUpdateSiteResponses, type SiteDocumentControllerCreateData, type SiteDocumentControllerCreateError, type SiteDocumentControllerCreateErrors, type SiteDocumentControllerCreateResponse, type SiteDocumentControllerCreateResponses, type SiteDocumentControllerGetData, type SiteDocumentControllerGetError, type SiteDocumentControllerGetErrors, type SiteDocumentControllerGetResponse, type SiteDocumentControllerGetResponses, type SiteDocumentControllerListData, type SiteDocumentControllerListError, type SiteDocumentControllerListErrors, type SiteDocumentControllerListResponse, type SiteDocumentControllerListResponses, type SiteDocumentControllerRemoveData, type SiteDocumentControllerRemoveError, type SiteDocumentControllerRemoveErrors, type SiteDocumentControllerRemoveResponse, type SiteDocumentControllerRemoveResponses, type SiteDocumentControllerUpdateData, type SiteDocumentControllerUpdateError, type SiteDocumentControllerUpdateErrors, type SiteDocumentControllerUpdateResponse, type SiteDocumentControllerUpdateResponses, type SiteResponseDto, type SitesResource, type TimesheetDetailDto, type TimesheetLineDto, type TimesheetPublicControllerGetData, type TimesheetPublicControllerGetError, type TimesheetPublicControllerGetErrors, type TimesheetPublicControllerGetResponse, type TimesheetPublicControllerGetResponses, type TimesheetPublicControllerListData, type TimesheetPublicControllerListError, type TimesheetPublicControllerListErrors, type TimesheetPublicControllerListResponse, type TimesheetPublicControllerListResponses, type TimesheetSummaryDto, type UpdateAssetClassDto, type UpdateAssetClassPropertyDto, type UpdateAssetDto, type UpdateAssetPropertyDto, type UpdateConfigItemDto, type UpdateCustomerDto, type UpdateDocumentDto, type UpdateGroupDto, type UpdateIssueDto, type UpdateJobDto, type UpdateProjectDto, type UpdateSiteDto, type UpdateUserPropertyDto, type UpdateZoneDto, type UserControllerCreateUserData, type UserControllerCreateUserError, type UserControllerCreateUserErrors, type UserControllerCreateUserResponse, type UserControllerCreateUserResponses, type UserControllerGetUserData, type UserControllerGetUserError, type UserControllerGetUserErrors, type UserControllerGetUserResponse, type UserControllerGetUserResponses, type UserControllerListUsersData, type UserControllerListUsersError, type UserControllerListUsersErrors, type UserControllerListUsersResponse, type UserControllerListUsersResponses, type UserControllerUpdateUserData, type UserControllerUpdateUserError, type UserControllerUpdateUserErrors, type UserControllerUpdateUserResponse, type UserControllerUpdateUserResponses, type UserDocumentControllerCreateData, type UserDocumentControllerCreateError, type UserDocumentControllerCreateErrors, type UserDocumentControllerCreateResponse, type UserDocumentControllerCreateResponses, type UserDocumentControllerGetData, type UserDocumentControllerGetError, type UserDocumentControllerGetErrors, type UserDocumentControllerGetResponse, type UserDocumentControllerGetResponses, type UserDocumentControllerListData, type UserDocumentControllerListError, type UserDocumentControllerListErrors, type UserDocumentControllerListResponse, type UserDocumentControllerListResponses, type UserDocumentControllerRemoveData, type UserDocumentControllerRemoveError, type UserDocumentControllerRemoveErrors, type UserDocumentControllerRemoveResponse, type UserDocumentControllerRemoveResponses, type UserDocumentControllerUpdateData, type UserDocumentControllerUpdateError, type UserDocumentControllerUpdateErrors, type UserDocumentControllerUpdateResponse, type UserDocumentControllerUpdateResponses, type UserPropertiesResource, type UserPropertyControllerDeleteUserPropertyData, type UserPropertyControllerDeleteUserPropertyError, type UserPropertyControllerDeleteUserPropertyErrors, type UserPropertyControllerDeleteUserPropertyResponse, type UserPropertyControllerDeleteUserPropertyResponses, type UserPropertyControllerUpdateUserPropertyData, type UserPropertyControllerUpdateUserPropertyError, type UserPropertyControllerUpdateUserPropertyErrors, type UserPropertyControllerUpdateUserPropertyResponse, type UserPropertyControllerUpdateUserPropertyResponses, type UserPropertyResponseDto, type UserResponseDto, type UsersResource, WakataApiError, WakataAuthError, WakataClient, type WakataClientOptions, WakataConflictError, type WakataErrorEnvelope, WakataNotFoundError, WakataPermissionError, WakataRateLimitError, WakataServerError, WakataValidationError, type ZoneControllerCreateData, type ZoneControllerCreateError, type ZoneControllerCreateErrors, type ZoneControllerCreateResponse, type ZoneControllerCreateResponses, type ZoneControllerDeleteData, type ZoneControllerDeleteError, type ZoneControllerDeleteErrors, type ZoneControllerDeleteResponse, type ZoneControllerDeleteResponses, type ZoneControllerGetData, type ZoneControllerGetError, type ZoneControllerGetErrors, type ZoneControllerGetResponse, type ZoneControllerGetResponses, type ZoneControllerListData, type ZoneControllerListError, type ZoneControllerListErrors, type ZoneControllerListResponse, type ZoneControllerListResponses, type ZoneControllerUpdateData, type ZoneControllerUpdateError, type ZoneControllerUpdateErrors, type ZoneControllerUpdateResponse, type ZoneControllerUpdateResponses, type ZoneResponseDto, generateIdempotencyKey, mapApiError };
|