@workbuddy/sdk-js-vnext 1.0.33 → 1.0.34
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/index.d.ts +18 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1524,7 +1524,15 @@ export interface WorkBuddySettingsItemsUpsertParams extends WorkBuddyRequestPara
|
|
|
1524
1524
|
*/
|
|
1525
1525
|
description?: string;
|
|
1526
1526
|
|
|
1527
|
-
category?: {
|
|
1527
|
+
category?: {
|
|
1528
|
+
categoryId?: string;
|
|
1529
|
+
categoryName?: string;
|
|
1530
|
+
subCategoryId?: string;
|
|
1531
|
+
subCategoryName?: string;
|
|
1532
|
+
workCategoryId?: string;
|
|
1533
|
+
workCategoryName?: string;
|
|
1534
|
+
createMissingCategory?: boolean;
|
|
1535
|
+
};
|
|
1528
1536
|
/**
|
|
1529
1537
|
* Whether the entity is active
|
|
1530
1538
|
*/
|
|
@@ -1620,7 +1628,15 @@ export interface WorkBuddySettingsItemsUpdateParams extends WorkBuddyRequestPara
|
|
|
1620
1628
|
*/
|
|
1621
1629
|
description?: string;
|
|
1622
1630
|
|
|
1623
|
-
category?: {
|
|
1631
|
+
category?: {
|
|
1632
|
+
categoryId?: string;
|
|
1633
|
+
categoryName?: string;
|
|
1634
|
+
subCategoryId?: string;
|
|
1635
|
+
subCategoryName?: string;
|
|
1636
|
+
workCategoryId?: string;
|
|
1637
|
+
workCategoryName?: string;
|
|
1638
|
+
createMissingCategory?: boolean;
|
|
1639
|
+
};
|
|
1624
1640
|
/**
|
|
1625
1641
|
* Whether the entity is active
|
|
1626
1642
|
*/
|