@closerplatform/spinner-openapi 0.12.619 → 0.12.621
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/api.d.ts +60 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1674,6 +1674,36 @@ export interface CreateTagForm {
|
|
|
1674
1674
|
* @memberof CreateTagForm
|
|
1675
1675
|
*/
|
|
1676
1676
|
tag: string;
|
|
1677
|
+
/**
|
|
1678
|
+
*
|
|
1679
|
+
* @type {boolean}
|
|
1680
|
+
* @memberof CreateTagForm
|
|
1681
|
+
*/
|
|
1682
|
+
enabled?: boolean;
|
|
1683
|
+
/**
|
|
1684
|
+
*
|
|
1685
|
+
* @type {boolean}
|
|
1686
|
+
* @memberof CreateTagForm
|
|
1687
|
+
*/
|
|
1688
|
+
required?: boolean;
|
|
1689
|
+
/**
|
|
1690
|
+
*
|
|
1691
|
+
* @type {boolean}
|
|
1692
|
+
* @memberof CreateTagForm
|
|
1693
|
+
*/
|
|
1694
|
+
priority?: boolean;
|
|
1695
|
+
/**
|
|
1696
|
+
*
|
|
1697
|
+
* @type {boolean}
|
|
1698
|
+
* @memberof CreateTagForm
|
|
1699
|
+
*/
|
|
1700
|
+
showInConversationDetails?: boolean;
|
|
1701
|
+
/**
|
|
1702
|
+
*
|
|
1703
|
+
* @type {string}
|
|
1704
|
+
* @memberof CreateTagForm
|
|
1705
|
+
*/
|
|
1706
|
+
description?: string;
|
|
1677
1707
|
}
|
|
1678
1708
|
/**
|
|
1679
1709
|
*
|
|
@@ -1705,6 +1735,12 @@ export interface CreateTagGroupForm {
|
|
|
1705
1735
|
* @memberof CreateTagGroupForm
|
|
1706
1736
|
*/
|
|
1707
1737
|
activeHours?: Array<WorkingHours>;
|
|
1738
|
+
/**
|
|
1739
|
+
*
|
|
1740
|
+
* @type {string}
|
|
1741
|
+
* @memberof CreateTagGroupForm
|
|
1742
|
+
*/
|
|
1743
|
+
description?: string;
|
|
1708
1744
|
/**
|
|
1709
1745
|
*
|
|
1710
1746
|
* @type {number}
|
|
@@ -6160,6 +6196,12 @@ export interface TagDto {
|
|
|
6160
6196
|
* @memberof TagDto
|
|
6161
6197
|
*/
|
|
6162
6198
|
showInConversationDetails: boolean;
|
|
6199
|
+
/**
|
|
6200
|
+
*
|
|
6201
|
+
* @type {string}
|
|
6202
|
+
* @memberof TagDto
|
|
6203
|
+
*/
|
|
6204
|
+
description?: string;
|
|
6163
6205
|
}
|
|
6164
6206
|
/**
|
|
6165
6207
|
*
|
|
@@ -6215,6 +6257,12 @@ export interface TagGroupDto {
|
|
|
6215
6257
|
* @memberof TagGroupDto
|
|
6216
6258
|
*/
|
|
6217
6259
|
showInConversationDetails: boolean;
|
|
6260
|
+
/**
|
|
6261
|
+
*
|
|
6262
|
+
* @type {string}
|
|
6263
|
+
* @memberof TagGroupDto
|
|
6264
|
+
*/
|
|
6265
|
+
description?: string;
|
|
6218
6266
|
/**
|
|
6219
6267
|
*
|
|
6220
6268
|
* @type {number}
|
|
@@ -6802,6 +6850,12 @@ export interface UpdateTagForm {
|
|
|
6802
6850
|
* @memberof UpdateTagForm
|
|
6803
6851
|
*/
|
|
6804
6852
|
showInConversationDetails: boolean;
|
|
6853
|
+
/**
|
|
6854
|
+
*
|
|
6855
|
+
* @type {string}
|
|
6856
|
+
* @memberof UpdateTagForm
|
|
6857
|
+
*/
|
|
6858
|
+
description?: string;
|
|
6805
6859
|
}
|
|
6806
6860
|
/**
|
|
6807
6861
|
*
|
|
@@ -6845,6 +6899,12 @@ export interface UpdateTagGroupForm {
|
|
|
6845
6899
|
* @memberof UpdateTagGroupForm
|
|
6846
6900
|
*/
|
|
6847
6901
|
activeHours: Array<WorkingHours>;
|
|
6902
|
+
/**
|
|
6903
|
+
*
|
|
6904
|
+
* @type {string}
|
|
6905
|
+
* @memberof UpdateTagGroupForm
|
|
6906
|
+
*/
|
|
6907
|
+
description?: string;
|
|
6848
6908
|
/**
|
|
6849
6909
|
*
|
|
6850
6910
|
* @type {number}
|