@closerplatform/spinner-openapi 0.12.952 → 0.12.955
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 +20 -6
- package/dist/api.js +1 -0
- 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}
|
|
@@ -4051,6 +4064,7 @@ export interface MessageWidgetConfig {
|
|
|
4051
4064
|
export declare enum MessageWidgetConfigContextType {
|
|
4052
4065
|
AutoAssignForm = "auto_assign_form",
|
|
4053
4066
|
ContactEnquiry = "contact_enquiry",
|
|
4067
|
+
CallProposal = "call_proposal",
|
|
4054
4068
|
OplShowAddressForm = "opl_show_address_form",
|
|
4055
4069
|
PredefinedMessageForm = "predefined_message_form"
|
|
4056
4070
|
}
|
|
@@ -4062,10 +4076,10 @@ export declare enum MessageWidgetConfigContextType {
|
|
|
4062
4076
|
export interface MessageWidgetForm {
|
|
4063
4077
|
/**
|
|
4064
4078
|
*
|
|
4065
|
-
* @type {OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | PredefinedMessageConfigContext}
|
|
4079
|
+
* @type {OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | CallProposalConfigContext | PredefinedMessageConfigContext}
|
|
4066
4080
|
* @memberof MessageWidgetForm
|
|
4067
4081
|
*/
|
|
4068
|
-
config: OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | PredefinedMessageConfigContext;
|
|
4082
|
+
config: OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | CallProposalConfigContext | PredefinedMessageConfigContext;
|
|
4069
4083
|
/**
|
|
4070
4084
|
*
|
|
4071
4085
|
* @type {boolean}
|
|
@@ -7071,10 +7085,10 @@ export interface WidgetFormSubmissionWithWidget {
|
|
|
7071
7085
|
userInputs?: Array<InputValue>;
|
|
7072
7086
|
/**
|
|
7073
7087
|
*
|
|
7074
|
-
* @type {OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | PredefinedMessageConfigContext}
|
|
7088
|
+
* @type {OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | CallProposalConfigContext | PredefinedMessageConfigContext}
|
|
7075
7089
|
* @memberof WidgetFormSubmissionWithWidget
|
|
7076
7090
|
*/
|
|
7077
|
-
widgetConfig: OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | PredefinedMessageConfigContext;
|
|
7091
|
+
widgetConfig: OrdinaryConfigContext | AutoAssignConfigContext | OplShowAddressConfigContext | ContactEnquiryConfigContext | CallProposalConfigContext | PredefinedMessageConfigContext;
|
|
7078
7092
|
/**
|
|
7079
7093
|
*
|
|
7080
7094
|
* @type {string}
|
package/dist/api.js
CHANGED
|
@@ -269,6 +269,7 @@ var MessageWidgetConfigContextType;
|
|
|
269
269
|
(function (MessageWidgetConfigContextType) {
|
|
270
270
|
MessageWidgetConfigContextType["AutoAssignForm"] = "auto_assign_form";
|
|
271
271
|
MessageWidgetConfigContextType["ContactEnquiry"] = "contact_enquiry";
|
|
272
|
+
MessageWidgetConfigContextType["CallProposal"] = "call_proposal";
|
|
272
273
|
MessageWidgetConfigContextType["OplShowAddressForm"] = "opl_show_address_form";
|
|
273
274
|
MessageWidgetConfigContextType["PredefinedMessageForm"] = "predefined_message_form";
|
|
274
275
|
})(MessageWidgetConfigContextType = exports.MessageWidgetConfigContextType || (exports.MessageWidgetConfigContextType = {}));
|