@closerplatform/spinner-openapi 0.12.954 → 0.12.957
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 -14
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1277,6 +1277,19 @@ export interface Call {
|
|
|
1277
1277
|
*/
|
|
1278
1278
|
orgId?: string;
|
|
1279
1279
|
}
|
|
1280
|
+
/**
|
|
1281
|
+
*
|
|
1282
|
+
* @export
|
|
1283
|
+
* @interface CallProposalConfigContext
|
|
1284
|
+
*/
|
|
1285
|
+
export interface CallProposalConfigContext {
|
|
1286
|
+
/**
|
|
1287
|
+
*
|
|
1288
|
+
* @type {MessageWidgetConfigContextType}
|
|
1289
|
+
* @memberof CallProposalConfigContext
|
|
1290
|
+
*/
|
|
1291
|
+
type: MessageWidgetConfigContextType;
|
|
1292
|
+
}
|
|
1280
1293
|
/**
|
|
1281
1294
|
*
|
|
1282
1295
|
* @export
|
|
@@ -4026,10 +4039,10 @@ export interface MessageWidgetConfig {
|
|
|
4026
4039
|
name: string;
|
|
4027
4040
|
/**
|
|
4028
4041
|
*
|
|
4029
|
-
* @type {OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext}
|
|
4042
|
+
* @type {OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | CallProposalConfigContext | PredefinedMessageConfigContext}
|
|
4030
4043
|
* @memberof MessageWidgetConfig
|
|
4031
4044
|
*/
|
|
4032
|
-
config: OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext;
|
|
4045
|
+
config: OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | CallProposalConfigContext | PredefinedMessageConfigContext;
|
|
4033
4046
|
/**
|
|
4034
4047
|
*
|
|
4035
4048
|
* @type {boolean}
|
|
@@ -4038,10 +4051,10 @@ export interface MessageWidgetConfig {
|
|
|
4038
4051
|
availableForAgents: boolean;
|
|
4039
4052
|
/**
|
|
4040
4053
|
*
|
|
4041
|
-
* @type {string}
|
|
4054
|
+
* @type {Array<string>}
|
|
4042
4055
|
* @memberof MessageWidgetConfig
|
|
4043
4056
|
*/
|
|
4044
|
-
|
|
4057
|
+
tagGroupIds?: Array<string>;
|
|
4045
4058
|
}
|
|
4046
4059
|
/**
|
|
4047
4060
|
*
|
|
@@ -4063,10 +4076,10 @@ export declare enum MessageWidgetConfigContextType {
|
|
|
4063
4076
|
export interface MessageWidgetForm {
|
|
4064
4077
|
/**
|
|
4065
4078
|
*
|
|
4066
|
-
* @type {OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | PredefinedMessageConfigContext}
|
|
4079
|
+
* @type {OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | CallProposalConfigContext | PredefinedMessageConfigContext}
|
|
4067
4080
|
* @memberof MessageWidgetForm
|
|
4068
4081
|
*/
|
|
4069
|
-
config: OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | PredefinedMessageConfigContext;
|
|
4082
|
+
config: OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | CallProposalConfigContext | PredefinedMessageConfigContext;
|
|
4070
4083
|
/**
|
|
4071
4084
|
*
|
|
4072
4085
|
* @type {boolean}
|
|
@@ -4079,12 +4092,6 @@ export interface MessageWidgetForm {
|
|
|
4079
4092
|
* @memberof MessageWidgetForm
|
|
4080
4093
|
*/
|
|
4081
4094
|
name: string;
|
|
4082
|
-
/**
|
|
4083
|
-
*
|
|
4084
|
-
* @type {string}
|
|
4085
|
-
* @memberof MessageWidgetForm
|
|
4086
|
-
*/
|
|
4087
|
-
tagGroupId?: string;
|
|
4088
4095
|
}
|
|
4089
4096
|
/**
|
|
4090
4097
|
*
|
|
@@ -6097,6 +6104,12 @@ export interface TagGroupDto {
|
|
|
6097
6104
|
* @memberof TagGroupDto
|
|
6098
6105
|
*/
|
|
6099
6106
|
tags: Array<string>;
|
|
6107
|
+
/**
|
|
6108
|
+
*
|
|
6109
|
+
* @type {Array<string>}
|
|
6110
|
+
* @memberof TagGroupDto
|
|
6111
|
+
*/
|
|
6112
|
+
widgets: Array<string>;
|
|
6100
6113
|
/**
|
|
6101
6114
|
*
|
|
6102
6115
|
* @type {boolean}
|
|
@@ -6733,6 +6746,12 @@ export interface UpdateTagGroupForm {
|
|
|
6733
6746
|
* @memberof UpdateTagGroupForm
|
|
6734
6747
|
*/
|
|
6735
6748
|
tagIds: Array<string>;
|
|
6749
|
+
/**
|
|
6750
|
+
*
|
|
6751
|
+
* @type {Array<string>}
|
|
6752
|
+
* @memberof UpdateTagGroupForm
|
|
6753
|
+
*/
|
|
6754
|
+
widgetIds: Array<string>;
|
|
6736
6755
|
/**
|
|
6737
6756
|
*
|
|
6738
6757
|
* @type {boolean}
|
|
@@ -7072,10 +7091,10 @@ export interface WidgetFormSubmissionWithWidget {
|
|
|
7072
7091
|
userInputs?: Array<InputValue>;
|
|
7073
7092
|
/**
|
|
7074
7093
|
*
|
|
7075
|
-
* @type {OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | PredefinedMessageConfigContext}
|
|
7094
|
+
* @type {OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | CallProposalConfigContext | PredefinedMessageConfigContext}
|
|
7076
7095
|
* @memberof WidgetFormSubmissionWithWidget
|
|
7077
7096
|
*/
|
|
7078
|
-
widgetConfig: OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | PredefinedMessageConfigContext;
|
|
7097
|
+
widgetConfig: OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | CallProposalConfigContext | PredefinedMessageConfigContext;
|
|
7079
7098
|
/**
|
|
7080
7099
|
*
|
|
7081
7100
|
* @type {string}
|