@closerplatform/spinner-openapi 0.12.299 → 0.12.301
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 +33 -21
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -6120,6 +6120,25 @@ export interface TagGroupDto {
|
|
|
6120
6120
|
*/
|
|
6121
6121
|
autoCloseTimeoutSeconds?: number;
|
|
6122
6122
|
}
|
|
6123
|
+
/**
|
|
6124
|
+
*
|
|
6125
|
+
* @export
|
|
6126
|
+
* @interface TagGroupMappingItem
|
|
6127
|
+
*/
|
|
6128
|
+
export interface TagGroupMappingItem {
|
|
6129
|
+
/**
|
|
6130
|
+
*
|
|
6131
|
+
* @type {string}
|
|
6132
|
+
* @memberof TagGroupMappingItem
|
|
6133
|
+
*/
|
|
6134
|
+
tagGroupId: string;
|
|
6135
|
+
/**
|
|
6136
|
+
*
|
|
6137
|
+
* @type {number}
|
|
6138
|
+
* @memberof TagGroupMappingItem
|
|
6139
|
+
*/
|
|
6140
|
+
count: number;
|
|
6141
|
+
}
|
|
6123
6142
|
/**
|
|
6124
6143
|
*
|
|
6125
6144
|
* @export
|
|
@@ -6445,6 +6464,18 @@ export interface UnreadState {
|
|
|
6445
6464
|
* @memberof UnreadState
|
|
6446
6465
|
*/
|
|
6447
6466
|
unassigned: number;
|
|
6467
|
+
/**
|
|
6468
|
+
*
|
|
6469
|
+
* @type {number}
|
|
6470
|
+
* @memberof UnreadState
|
|
6471
|
+
*/
|
|
6472
|
+
unassignedWithNoTagGroup: number;
|
|
6473
|
+
/**
|
|
6474
|
+
*
|
|
6475
|
+
* @type {Array<TagGroupMappingItem>}
|
|
6476
|
+
* @memberof UnreadState
|
|
6477
|
+
*/
|
|
6478
|
+
unassignedByTagGroup: Array<TagGroupMappingItem>;
|
|
6448
6479
|
/**
|
|
6449
6480
|
*
|
|
6450
6481
|
* @type {number}
|
|
@@ -6453,10 +6484,10 @@ export interface UnreadState {
|
|
|
6453
6484
|
waitingWithNoTagGroup: number;
|
|
6454
6485
|
/**
|
|
6455
6486
|
*
|
|
6456
|
-
* @type {Array<
|
|
6487
|
+
* @type {Array<TagGroupMappingItem>}
|
|
6457
6488
|
* @memberof UnreadState
|
|
6458
6489
|
*/
|
|
6459
|
-
waitingByTagGroup: Array<
|
|
6490
|
+
waitingByTagGroup: Array<TagGroupMappingItem>;
|
|
6460
6491
|
}
|
|
6461
6492
|
/**
|
|
6462
6493
|
*
|
|
@@ -6839,25 +6870,6 @@ export interface VatResponse {
|
|
|
6839
6870
|
*/
|
|
6840
6871
|
valid: boolean;
|
|
6841
6872
|
}
|
|
6842
|
-
/**
|
|
6843
|
-
*
|
|
6844
|
-
* @export
|
|
6845
|
-
* @interface WaitingByTagGroupItem
|
|
6846
|
-
*/
|
|
6847
|
-
export interface WaitingByTagGroupItem {
|
|
6848
|
-
/**
|
|
6849
|
-
*
|
|
6850
|
-
* @type {string}
|
|
6851
|
-
* @memberof WaitingByTagGroupItem
|
|
6852
|
-
*/
|
|
6853
|
-
tagGroupId: string;
|
|
6854
|
-
/**
|
|
6855
|
-
*
|
|
6856
|
-
* @type {number}
|
|
6857
|
-
* @memberof WaitingByTagGroupItem
|
|
6858
|
-
*/
|
|
6859
|
-
count: number;
|
|
6860
|
-
}
|
|
6861
6873
|
/**
|
|
6862
6874
|
*
|
|
6863
6875
|
* @export
|