@closerplatform/spinner-openapi 0.11.351 → 0.12.0
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 +411 -708
- package/dist/api.js +701 -1021
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -85,20 +85,6 @@ export interface AcceptInvitationForm {
|
|
|
85
85
|
*/
|
|
86
86
|
password: string;
|
|
87
87
|
}
|
|
88
|
-
/**
|
|
89
|
-
*
|
|
90
|
-
* @export
|
|
91
|
-
* @enum {string}
|
|
92
|
-
*/
|
|
93
|
-
export declare enum ActionEvent {
|
|
94
|
-
ThreadOpenedOutsideWorkingHours = "thread_opened_outside_working_hours",
|
|
95
|
-
ClosedSolvedThreadAction = "closed_solved_thread_action",
|
|
96
|
-
ClosedUnsolvedThreadAction = "closed_unsolved_thread_action",
|
|
97
|
-
ThreadOpened = "thread_opened",
|
|
98
|
-
AssignedConversationAction = "assigned_conversation_action",
|
|
99
|
-
ThreadOpenedAgentsUnavailable = "thread_opened_agents_unavailable",
|
|
100
|
-
WidgetOpenedNoOpenThread = "widget_opened_no_open_thread"
|
|
101
|
-
}
|
|
102
88
|
/**
|
|
103
89
|
*
|
|
104
90
|
* @export
|
|
@@ -1478,38 +1464,33 @@ export interface ContactEnquiryConfigContextGdpr {
|
|
|
1478
1464
|
/**
|
|
1479
1465
|
*
|
|
1480
1466
|
* @export
|
|
1481
|
-
* @
|
|
1467
|
+
* @enum {string}
|
|
1468
|
+
*/
|
|
1469
|
+
export declare enum ConversationStatus {
|
|
1470
|
+
Waiting = "waiting",
|
|
1471
|
+
InProgress = "inProgress",
|
|
1472
|
+
Solved = "solved",
|
|
1473
|
+
Unsolved = "unsolved"
|
|
1474
|
+
}
|
|
1475
|
+
/**
|
|
1476
|
+
*
|
|
1477
|
+
* @export
|
|
1478
|
+
* @interface ConversationStatusForm
|
|
1482
1479
|
*/
|
|
1483
|
-
export interface
|
|
1480
|
+
export interface ConversationStatusForm {
|
|
1484
1481
|
/**
|
|
1485
1482
|
*
|
|
1486
|
-
* @type {
|
|
1487
|
-
* @memberof
|
|
1483
|
+
* @type {ConversationStatus}
|
|
1484
|
+
* @memberof ConversationStatusForm
|
|
1488
1485
|
*/
|
|
1489
|
-
status: ConversationStatus
|
|
1486
|
+
status: ConversationStatus;
|
|
1490
1487
|
/**
|
|
1491
1488
|
*
|
|
1492
1489
|
* @type {string}
|
|
1493
|
-
* @memberof
|
|
1490
|
+
* @memberof ConversationStatusForm
|
|
1494
1491
|
*/
|
|
1495
1492
|
agentId?: string;
|
|
1496
1493
|
}
|
|
1497
|
-
/**
|
|
1498
|
-
* @export
|
|
1499
|
-
* @namespace ConversationStatus
|
|
1500
|
-
*/
|
|
1501
|
-
export declare namespace ConversationStatus {
|
|
1502
|
-
/**
|
|
1503
|
-
* @export
|
|
1504
|
-
* @enum {string}
|
|
1505
|
-
*/
|
|
1506
|
-
enum StatusEnum {
|
|
1507
|
-
Waiting = "waiting",
|
|
1508
|
-
InProgress = "inProgress",
|
|
1509
|
-
Solved = "solved",
|
|
1510
|
-
Unsolved = "unsolved"
|
|
1511
|
-
}
|
|
1512
|
-
}
|
|
1513
1494
|
/**
|
|
1514
1495
|
*
|
|
1515
1496
|
* @export
|
|
@@ -1563,10 +1544,10 @@ export interface CreateCall {
|
|
|
1563
1544
|
export interface CreateEventActionConfigForm {
|
|
1564
1545
|
/**
|
|
1565
1546
|
*
|
|
1566
|
-
* @type {
|
|
1547
|
+
* @type {EventActionEvent}
|
|
1567
1548
|
* @memberof CreateEventActionConfigForm
|
|
1568
1549
|
*/
|
|
1569
|
-
event:
|
|
1550
|
+
event: EventActionEvent;
|
|
1570
1551
|
/**
|
|
1571
1552
|
*
|
|
1572
1553
|
* @type {boolean}
|
|
@@ -1604,25 +1585,6 @@ export interface CreateEventActionConfigForm {
|
|
|
1604
1585
|
*/
|
|
1605
1586
|
widgetBlockInput?: boolean;
|
|
1606
1587
|
}
|
|
1607
|
-
/**
|
|
1608
|
-
* @export
|
|
1609
|
-
* @namespace CreateEventActionConfigForm
|
|
1610
|
-
*/
|
|
1611
|
-
export declare namespace CreateEventActionConfigForm {
|
|
1612
|
-
/**
|
|
1613
|
-
* @export
|
|
1614
|
-
* @enum {string}
|
|
1615
|
-
*/
|
|
1616
|
-
enum EventEnum {
|
|
1617
|
-
ThreadOpenedOutsideWorkingHours = "thread_opened_outside_working_hours",
|
|
1618
|
-
ClosedSolvedThreadAction = "closed_solved_thread_action",
|
|
1619
|
-
ClosedUnsolvedThreadAction = "closed_unsolved_thread_action",
|
|
1620
|
-
ThreadOpened = "thread_opened",
|
|
1621
|
-
AssignedConversationAction = "assigned_conversation_action",
|
|
1622
|
-
ThreadOpenedAgentsUnavailable = "thread_opened_agents_unavailable",
|
|
1623
|
-
WidgetOpenedNoOpenThread = "widget_opened_no_open_thread"
|
|
1624
|
-
}
|
|
1625
|
-
}
|
|
1626
1588
|
/**
|
|
1627
1589
|
*
|
|
1628
1590
|
* @export
|
|
@@ -1731,10 +1693,10 @@ export interface CreateTagMappingForm {
|
|
|
1731
1693
|
urlPattern: string;
|
|
1732
1694
|
/**
|
|
1733
1695
|
*
|
|
1734
|
-
* @type {
|
|
1696
|
+
* @type {MatchingStrategy}
|
|
1735
1697
|
* @memberof CreateTagMappingForm
|
|
1736
1698
|
*/
|
|
1737
|
-
matchingStrategy:
|
|
1699
|
+
matchingStrategy: MatchingStrategy;
|
|
1738
1700
|
/**
|
|
1739
1701
|
*
|
|
1740
1702
|
* @type {string}
|
|
@@ -1742,22 +1704,6 @@ export interface CreateTagMappingForm {
|
|
|
1742
1704
|
*/
|
|
1743
1705
|
tagId: string;
|
|
1744
1706
|
}
|
|
1745
|
-
/**
|
|
1746
|
-
* @export
|
|
1747
|
-
* @namespace CreateTagMappingForm
|
|
1748
|
-
*/
|
|
1749
|
-
export declare namespace CreateTagMappingForm {
|
|
1750
|
-
/**
|
|
1751
|
-
* @export
|
|
1752
|
-
* @enum {string}
|
|
1753
|
-
*/
|
|
1754
|
-
enum MatchingStrategyEnum {
|
|
1755
|
-
WholeDomain = "whole_domain",
|
|
1756
|
-
PathRecursively = "path_recursively",
|
|
1757
|
-
ExactUrl = "exact_url",
|
|
1758
|
-
PathArgs = "path_args"
|
|
1759
|
-
}
|
|
1760
|
-
}
|
|
1761
1707
|
/**
|
|
1762
1708
|
*
|
|
1763
1709
|
* @export
|
|
@@ -2223,10 +2169,10 @@ export interface EventActionConfig {
|
|
|
2223
2169
|
orgId: string;
|
|
2224
2170
|
/**
|
|
2225
2171
|
*
|
|
2226
|
-
* @type {
|
|
2172
|
+
* @type {EventActionEvent}
|
|
2227
2173
|
* @memberof EventActionConfig
|
|
2228
2174
|
*/
|
|
2229
|
-
event:
|
|
2175
|
+
event: EventActionEvent;
|
|
2230
2176
|
/**
|
|
2231
2177
|
*
|
|
2232
2178
|
* @type {boolean}
|
|
@@ -2265,23 +2211,18 @@ export interface EventActionConfig {
|
|
|
2265
2211
|
widgetBlockInput?: boolean;
|
|
2266
2212
|
}
|
|
2267
2213
|
/**
|
|
2214
|
+
*
|
|
2268
2215
|
* @export
|
|
2269
|
-
* @
|
|
2216
|
+
* @enum {string}
|
|
2270
2217
|
*/
|
|
2271
|
-
export declare
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
ClosedUnsolvedThreadAction = "closed_unsolved_thread_action",
|
|
2280
|
-
ThreadOpened = "thread_opened",
|
|
2281
|
-
AssignedConversationAction = "assigned_conversation_action",
|
|
2282
|
-
ThreadOpenedAgentsUnavailable = "thread_opened_agents_unavailable",
|
|
2283
|
-
WidgetOpenedNoOpenThread = "widget_opened_no_open_thread"
|
|
2284
|
-
}
|
|
2218
|
+
export declare enum EventActionEvent {
|
|
2219
|
+
ThreadOpenedOutsideWorkingHours = "thread_opened_outside_working_hours",
|
|
2220
|
+
ClosedSolvedThreadAction = "closed_solved_thread_action",
|
|
2221
|
+
ClosedUnsolvedThreadAction = "closed_unsolved_thread_action",
|
|
2222
|
+
ThreadOpened = "thread_opened",
|
|
2223
|
+
AssignedConversationAction = "assigned_conversation_action",
|
|
2224
|
+
ThreadOpenedAgentsUnavailable = "thread_opened_agents_unavailable",
|
|
2225
|
+
WidgetOpenedNoOpenThread = "widget_opened_no_open_thread"
|
|
2285
2226
|
}
|
|
2286
2227
|
/**
|
|
2287
2228
|
*
|
|
@@ -2678,10 +2619,10 @@ export interface InboxEntry {
|
|
|
2678
2619
|
profile: InboxEntryProfile;
|
|
2679
2620
|
/**
|
|
2680
2621
|
*
|
|
2681
|
-
* @type {
|
|
2622
|
+
* @type {ConversationStatus}
|
|
2682
2623
|
* @memberof InboxEntry
|
|
2683
2624
|
*/
|
|
2684
|
-
status:
|
|
2625
|
+
status: ConversationStatus;
|
|
2685
2626
|
/**
|
|
2686
2627
|
*
|
|
2687
2628
|
* @type {Array<string>}
|
|
@@ -2696,10 +2637,10 @@ export interface InboxEntry {
|
|
|
2696
2637
|
assignee?: string;
|
|
2697
2638
|
/**
|
|
2698
2639
|
*
|
|
2699
|
-
* @type {
|
|
2640
|
+
* @type {InboxEntryType}
|
|
2700
2641
|
* @memberof InboxEntry
|
|
2701
2642
|
*/
|
|
2702
|
-
type:
|
|
2643
|
+
type: InboxEntryType;
|
|
2703
2644
|
/**
|
|
2704
2645
|
*
|
|
2705
2646
|
* @type {string}
|
|
@@ -2762,10 +2703,10 @@ export interface InboxEntry {
|
|
|
2762
2703
|
unreadCount: number;
|
|
2763
2704
|
/**
|
|
2764
2705
|
*
|
|
2765
|
-
* @type {
|
|
2706
|
+
* @type {Presence}
|
|
2766
2707
|
* @memberof InboxEntry
|
|
2767
2708
|
*/
|
|
2768
|
-
ownerPresence:
|
|
2709
|
+
ownerPresence: Presence;
|
|
2769
2710
|
/**
|
|
2770
2711
|
*
|
|
2771
2712
|
* @type {Array<string>}
|
|
@@ -2786,10 +2727,10 @@ export interface InboxEntry {
|
|
|
2786
2727
|
threadsClosedTimestamps: Array<number>;
|
|
2787
2728
|
/**
|
|
2788
2729
|
*
|
|
2789
|
-
* @type {
|
|
2730
|
+
* @type {SnoozedStatus}
|
|
2790
2731
|
* @memberof InboxEntry
|
|
2791
2732
|
*/
|
|
2792
|
-
snoozedStatus?:
|
|
2733
|
+
snoozedStatus?: SnoozedStatus;
|
|
2793
2734
|
/**
|
|
2794
2735
|
*
|
|
2795
2736
|
* @type {string}
|
|
@@ -2797,53 +2738,6 @@ export interface InboxEntry {
|
|
|
2797
2738
|
*/
|
|
2798
2739
|
tagGroupId?: string;
|
|
2799
2740
|
}
|
|
2800
|
-
/**
|
|
2801
|
-
* @export
|
|
2802
|
-
* @namespace InboxEntry
|
|
2803
|
-
*/
|
|
2804
|
-
export declare namespace InboxEntry {
|
|
2805
|
-
/**
|
|
2806
|
-
* @export
|
|
2807
|
-
* @enum {string}
|
|
2808
|
-
*/
|
|
2809
|
-
enum StatusEnum {
|
|
2810
|
-
Waiting = "waiting",
|
|
2811
|
-
InProgress = "inProgress",
|
|
2812
|
-
Solved = "solved",
|
|
2813
|
-
Unsolved = "unsolved"
|
|
2814
|
-
}
|
|
2815
|
-
/**
|
|
2816
|
-
* @export
|
|
2817
|
-
* @enum {string}
|
|
2818
|
-
*/
|
|
2819
|
-
enum TypeEnum {
|
|
2820
|
-
MESSAGE = "MESSAGE",
|
|
2821
|
-
NOTE = "NOTE",
|
|
2822
|
-
FILES = "FILES",
|
|
2823
|
-
MEETINGSCHEDULED = "MEETING_SCHEDULED",
|
|
2824
|
-
MEETINGRESCHEDULED = "MEETING_RESCHEDULED",
|
|
2825
|
-
MEETINGCANCELLED = "MEETING_CANCELLED",
|
|
2826
|
-
CALLSTARTED = "CALL_STARTED",
|
|
2827
|
-
CALLENDED = "CALL_ENDED",
|
|
2828
|
-
FORM = "FORM"
|
|
2829
|
-
}
|
|
2830
|
-
/**
|
|
2831
|
-
* @export
|
|
2832
|
-
* @enum {string}
|
|
2833
|
-
*/
|
|
2834
|
-
enum OwnerPresenceEnum {
|
|
2835
|
-
Available = "available",
|
|
2836
|
-
Unavailable = "unavailable"
|
|
2837
|
-
}
|
|
2838
|
-
/**
|
|
2839
|
-
* @export
|
|
2840
|
-
* @enum {string}
|
|
2841
|
-
*/
|
|
2842
|
-
enum SnoozedStatusEnum {
|
|
2843
|
-
Snoozed = "snoozed",
|
|
2844
|
-
Unsnoozed = "unsnoozed"
|
|
2845
|
-
}
|
|
2846
|
-
}
|
|
2847
2741
|
/**
|
|
2848
2742
|
*
|
|
2849
2743
|
* @export
|
|
@@ -2887,6 +2781,22 @@ export interface InboxEntryProfile {
|
|
|
2887
2781
|
*/
|
|
2888
2782
|
searchableField?: string;
|
|
2889
2783
|
}
|
|
2784
|
+
/**
|
|
2785
|
+
*
|
|
2786
|
+
* @export
|
|
2787
|
+
* @enum {string}
|
|
2788
|
+
*/
|
|
2789
|
+
export declare enum InboxEntryType {
|
|
2790
|
+
MESSAGE = "MESSAGE",
|
|
2791
|
+
NOTE = "NOTE",
|
|
2792
|
+
FILES = "FILES",
|
|
2793
|
+
MEETINGSCHEDULED = "MEETING_SCHEDULED",
|
|
2794
|
+
MEETINGRESCHEDULED = "MEETING_RESCHEDULED",
|
|
2795
|
+
MEETINGCANCELLED = "MEETING_CANCELLED",
|
|
2796
|
+
CALLSTARTED = "CALL_STARTED",
|
|
2797
|
+
CALLENDED = "CALL_ENDED",
|
|
2798
|
+
FORM = "FORM"
|
|
2799
|
+
}
|
|
2890
2800
|
/**
|
|
2891
2801
|
*
|
|
2892
2802
|
* @export
|
|
@@ -3610,6 +3520,17 @@ export interface MagicLinkForm {
|
|
|
3610
3520
|
*/
|
|
3611
3521
|
email: string;
|
|
3612
3522
|
}
|
|
3523
|
+
/**
|
|
3524
|
+
*
|
|
3525
|
+
* @export
|
|
3526
|
+
* @enum {string}
|
|
3527
|
+
*/
|
|
3528
|
+
export declare enum MatchingStrategy {
|
|
3529
|
+
WholeDomain = "whole_domain",
|
|
3530
|
+
PathRecursively = "path_recursively",
|
|
3531
|
+
ExactUrl = "exact_url",
|
|
3532
|
+
PathArgs = "path_args"
|
|
3533
|
+
}
|
|
3613
3534
|
/**
|
|
3614
3535
|
*
|
|
3615
3536
|
* @export
|
|
@@ -3836,6 +3757,16 @@ export interface MessageWidgetsList {
|
|
|
3836
3757
|
*/
|
|
3837
3758
|
textInputs?: Array<TextInput>;
|
|
3838
3759
|
}
|
|
3760
|
+
/**
|
|
3761
|
+
*
|
|
3762
|
+
* @export
|
|
3763
|
+
* @enum {string}
|
|
3764
|
+
*/
|
|
3765
|
+
export declare enum ModelTrainingStatus {
|
|
3766
|
+
TrainingInProgress = "TrainingInProgress",
|
|
3767
|
+
TrainingDone = "TrainingDone",
|
|
3768
|
+
TrainingNeverDone = "TrainingNeverDone"
|
|
3769
|
+
}
|
|
3839
3770
|
/**
|
|
3840
3771
|
*
|
|
3841
3772
|
* @export
|
|
@@ -4928,56 +4859,10 @@ export interface PasswordResetForm {
|
|
|
4928
4859
|
export interface PermissionForm {
|
|
4929
4860
|
/**
|
|
4930
4861
|
*
|
|
4931
|
-
* @type {Array<
|
|
4862
|
+
* @type {Array<AppPermission>}
|
|
4932
4863
|
* @memberof PermissionForm
|
|
4933
4864
|
*/
|
|
4934
|
-
permissions: Array<
|
|
4935
|
-
}
|
|
4936
|
-
/**
|
|
4937
|
-
* @export
|
|
4938
|
-
* @namespace PermissionForm
|
|
4939
|
-
*/
|
|
4940
|
-
export declare namespace PermissionForm {
|
|
4941
|
-
/**
|
|
4942
|
-
* @export
|
|
4943
|
-
* @enum {string}
|
|
4944
|
-
*/
|
|
4945
|
-
enum PermissionsEnum {
|
|
4946
|
-
AdminPermission = "admin_permission",
|
|
4947
|
-
DisplayClosedConversations = "display_closed_conversations",
|
|
4948
|
-
DisplayWaitingConversations = "display_waiting_conversations",
|
|
4949
|
-
DisplayFollowedConversations = "display_followed_conversations",
|
|
4950
|
-
DisplayInProgressConversations = "display_in_progress_conversations",
|
|
4951
|
-
DisplayYoursConversations = "display_yours_conversations",
|
|
4952
|
-
SettingsProactiveMessages = "settings_proactive_messages",
|
|
4953
|
-
SettingsTags = "settings_tags",
|
|
4954
|
-
SettingsAiSuggestions = "settings_ai_suggestions",
|
|
4955
|
-
SettingsWebhooks = "settings_webhooks",
|
|
4956
|
-
SettingsAdvisersConfiguration = "settings_advisers_configuration",
|
|
4957
|
-
SettingsAgentGroupsConfiguration = "settings_agent_groups_configuration",
|
|
4958
|
-
SettingsAdvisersAssignments = "settings_advisers_assignments",
|
|
4959
|
-
SettingsAdvisersAvatar = "settings_advisers_avatar",
|
|
4960
|
-
SettingsActionForms = "settings_action_forms",
|
|
4961
|
-
SettingsStatuses = "settings_statuses",
|
|
4962
|
-
SettingsRoles = "settings_roles",
|
|
4963
|
-
SettingsGeneral = "settings_general",
|
|
4964
|
-
ReportsYours = "reports_yours",
|
|
4965
|
-
ReportsGroups = "reports_groups",
|
|
4966
|
-
ReportsOrg = "reports_org",
|
|
4967
|
-
LeadDeleteProfile = "lead_delete_profile",
|
|
4968
|
-
LeadUpdateProfile = "lead_update_profile",
|
|
4969
|
-
UpdatePersonalData = "update_personal_data",
|
|
4970
|
-
RoomAssignSelf = "room_assign_self",
|
|
4971
|
-
RoomAssignAgent = "room_assign_agent",
|
|
4972
|
-
RoomAssignQueue = "room_assign_queue",
|
|
4973
|
-
RoomCloseNotOwn = "room_close_not_own",
|
|
4974
|
-
AiIntentsClassify = "ai_intents_classify",
|
|
4975
|
-
DisplayOwnTagGroupsConversations = "display_own_tag_groups_conversations",
|
|
4976
|
-
SettingsPasswordChange = "settings_password_change",
|
|
4977
|
-
SettingsPersonal = "settings_personal",
|
|
4978
|
-
MeetingsPageVisibility = "meetings_page_visibility",
|
|
4979
|
-
HelpPageVisibility = "help_page_visibility"
|
|
4980
|
-
}
|
|
4865
|
+
permissions: Array<AppPermission>;
|
|
4981
4866
|
}
|
|
4982
4867
|
/**
|
|
4983
4868
|
*
|
|
@@ -5164,6 +5049,15 @@ export interface PreferencesFormNotifications {
|
|
|
5164
5049
|
*/
|
|
5165
5050
|
upcomingMeeting?: boolean;
|
|
5166
5051
|
}
|
|
5052
|
+
/**
|
|
5053
|
+
*
|
|
5054
|
+
* @export
|
|
5055
|
+
* @enum {string}
|
|
5056
|
+
*/
|
|
5057
|
+
export declare enum Presence {
|
|
5058
|
+
Available = "available",
|
|
5059
|
+
Unavailable = "unavailable"
|
|
5060
|
+
}
|
|
5167
5061
|
/**
|
|
5168
5062
|
*
|
|
5169
5063
|
* @export
|
|
@@ -5479,56 +5373,10 @@ export interface Role {
|
|
|
5479
5373
|
isDefaultAdminRole: boolean;
|
|
5480
5374
|
/**
|
|
5481
5375
|
*
|
|
5482
|
-
* @type {Array<
|
|
5376
|
+
* @type {Array<AppPermission>}
|
|
5483
5377
|
* @memberof Role
|
|
5484
5378
|
*/
|
|
5485
|
-
permissions?: Array<
|
|
5486
|
-
}
|
|
5487
|
-
/**
|
|
5488
|
-
* @export
|
|
5489
|
-
* @namespace Role
|
|
5490
|
-
*/
|
|
5491
|
-
export declare namespace Role {
|
|
5492
|
-
/**
|
|
5493
|
-
* @export
|
|
5494
|
-
* @enum {string}
|
|
5495
|
-
*/
|
|
5496
|
-
enum PermissionsEnum {
|
|
5497
|
-
AdminPermission = "admin_permission",
|
|
5498
|
-
DisplayClosedConversations = "display_closed_conversations",
|
|
5499
|
-
DisplayWaitingConversations = "display_waiting_conversations",
|
|
5500
|
-
DisplayFollowedConversations = "display_followed_conversations",
|
|
5501
|
-
DisplayInProgressConversations = "display_in_progress_conversations",
|
|
5502
|
-
DisplayYoursConversations = "display_yours_conversations",
|
|
5503
|
-
SettingsProactiveMessages = "settings_proactive_messages",
|
|
5504
|
-
SettingsTags = "settings_tags",
|
|
5505
|
-
SettingsAiSuggestions = "settings_ai_suggestions",
|
|
5506
|
-
SettingsWebhooks = "settings_webhooks",
|
|
5507
|
-
SettingsAdvisersConfiguration = "settings_advisers_configuration",
|
|
5508
|
-
SettingsAgentGroupsConfiguration = "settings_agent_groups_configuration",
|
|
5509
|
-
SettingsAdvisersAssignments = "settings_advisers_assignments",
|
|
5510
|
-
SettingsAdvisersAvatar = "settings_advisers_avatar",
|
|
5511
|
-
SettingsActionForms = "settings_action_forms",
|
|
5512
|
-
SettingsStatuses = "settings_statuses",
|
|
5513
|
-
SettingsRoles = "settings_roles",
|
|
5514
|
-
SettingsGeneral = "settings_general",
|
|
5515
|
-
ReportsYours = "reports_yours",
|
|
5516
|
-
ReportsGroups = "reports_groups",
|
|
5517
|
-
ReportsOrg = "reports_org",
|
|
5518
|
-
LeadDeleteProfile = "lead_delete_profile",
|
|
5519
|
-
LeadUpdateProfile = "lead_update_profile",
|
|
5520
|
-
UpdatePersonalData = "update_personal_data",
|
|
5521
|
-
RoomAssignSelf = "room_assign_self",
|
|
5522
|
-
RoomAssignAgent = "room_assign_agent",
|
|
5523
|
-
RoomAssignQueue = "room_assign_queue",
|
|
5524
|
-
RoomCloseNotOwn = "room_close_not_own",
|
|
5525
|
-
AiIntentsClassify = "ai_intents_classify",
|
|
5526
|
-
DisplayOwnTagGroupsConversations = "display_own_tag_groups_conversations",
|
|
5527
|
-
SettingsPasswordChange = "settings_password_change",
|
|
5528
|
-
SettingsPersonal = "settings_personal",
|
|
5529
|
-
MeetingsPageVisibility = "meetings_page_visibility",
|
|
5530
|
-
HelpPageVisibility = "help_page_visibility"
|
|
5531
|
-
}
|
|
5379
|
+
permissions?: Array<AppPermission>;
|
|
5532
5380
|
}
|
|
5533
5381
|
/**
|
|
5534
5382
|
*
|
|
@@ -5670,6 +5518,15 @@ export interface SkillsForm {
|
|
|
5670
5518
|
*/
|
|
5671
5519
|
skills: Array<string>;
|
|
5672
5520
|
}
|
|
5521
|
+
/**
|
|
5522
|
+
*
|
|
5523
|
+
* @export
|
|
5524
|
+
* @enum {string}
|
|
5525
|
+
*/
|
|
5526
|
+
export declare enum SnoozedStatus {
|
|
5527
|
+
Snoozed = "snoozed",
|
|
5528
|
+
Unsnoozed = "unsnoozed"
|
|
5529
|
+
}
|
|
5673
5530
|
/**
|
|
5674
5531
|
*
|
|
5675
5532
|
* @export
|
|
@@ -5930,10 +5787,10 @@ export interface TagMappingDto {
|
|
|
5930
5787
|
urlPattern: string;
|
|
5931
5788
|
/**
|
|
5932
5789
|
*
|
|
5933
|
-
* @type {
|
|
5790
|
+
* @type {MatchingStrategy}
|
|
5934
5791
|
* @memberof TagMappingDto
|
|
5935
5792
|
*/
|
|
5936
|
-
matchingStrategy:
|
|
5793
|
+
matchingStrategy: MatchingStrategy;
|
|
5937
5794
|
/**
|
|
5938
5795
|
*
|
|
5939
5796
|
* @type {boolean}
|
|
@@ -5947,22 +5804,6 @@ export interface TagMappingDto {
|
|
|
5947
5804
|
*/
|
|
5948
5805
|
tag: TagDto;
|
|
5949
5806
|
}
|
|
5950
|
-
/**
|
|
5951
|
-
* @export
|
|
5952
|
-
* @namespace TagMappingDto
|
|
5953
|
-
*/
|
|
5954
|
-
export declare namespace TagMappingDto {
|
|
5955
|
-
/**
|
|
5956
|
-
* @export
|
|
5957
|
-
* @enum {string}
|
|
5958
|
-
*/
|
|
5959
|
-
enum MatchingStrategyEnum {
|
|
5960
|
-
WholeDomain = "whole_domain",
|
|
5961
|
-
PathRecursively = "path_recursively",
|
|
5962
|
-
ExactUrl = "exact_url",
|
|
5963
|
-
PathArgs = "path_args"
|
|
5964
|
-
}
|
|
5965
|
-
}
|
|
5966
5807
|
/**
|
|
5967
5808
|
*
|
|
5968
5809
|
* @export
|
|
@@ -6102,25 +5943,10 @@ export interface TrainingInfo {
|
|
|
6102
5943
|
stamp: string;
|
|
6103
5944
|
/**
|
|
6104
5945
|
*
|
|
6105
|
-
* @type {
|
|
5946
|
+
* @type {ModelTrainingStatus}
|
|
6106
5947
|
* @memberof TrainingInfo
|
|
6107
5948
|
*/
|
|
6108
|
-
status:
|
|
6109
|
-
}
|
|
6110
|
-
/**
|
|
6111
|
-
* @export
|
|
6112
|
-
* @namespace TrainingInfo
|
|
6113
|
-
*/
|
|
6114
|
-
export declare namespace TrainingInfo {
|
|
6115
|
-
/**
|
|
6116
|
-
* @export
|
|
6117
|
-
* @enum {string}
|
|
6118
|
-
*/
|
|
6119
|
-
enum StatusEnum {
|
|
6120
|
-
TrainingInProgress = "TrainingInProgress",
|
|
6121
|
-
TrainingDone = "TrainingDone",
|
|
6122
|
-
TrainingNeverDone = "TrainingNeverDone"
|
|
6123
|
-
}
|
|
5949
|
+
status: ModelTrainingStatus;
|
|
6124
5950
|
}
|
|
6125
5951
|
/**
|
|
6126
5952
|
*
|
|
@@ -6280,10 +6106,10 @@ export interface UpdateAgentGroupConfigurationForm {
|
|
|
6280
6106
|
export interface UpdateEventActionConfigForm {
|
|
6281
6107
|
/**
|
|
6282
6108
|
*
|
|
6283
|
-
* @type {
|
|
6109
|
+
* @type {EventActionEvent}
|
|
6284
6110
|
* @memberof UpdateEventActionConfigForm
|
|
6285
6111
|
*/
|
|
6286
|
-
event:
|
|
6112
|
+
event: EventActionEvent;
|
|
6287
6113
|
/**
|
|
6288
6114
|
*
|
|
6289
6115
|
* @type {boolean}
|
|
@@ -6315,25 +6141,6 @@ export interface UpdateEventActionConfigForm {
|
|
|
6315
6141
|
*/
|
|
6316
6142
|
widgetBlockInput?: boolean;
|
|
6317
6143
|
}
|
|
6318
|
-
/**
|
|
6319
|
-
* @export
|
|
6320
|
-
* @namespace UpdateEventActionConfigForm
|
|
6321
|
-
*/
|
|
6322
|
-
export declare namespace UpdateEventActionConfigForm {
|
|
6323
|
-
/**
|
|
6324
|
-
* @export
|
|
6325
|
-
* @enum {string}
|
|
6326
|
-
*/
|
|
6327
|
-
enum EventEnum {
|
|
6328
|
-
ThreadOpenedOutsideWorkingHours = "thread_opened_outside_working_hours",
|
|
6329
|
-
ClosedSolvedThreadAction = "closed_solved_thread_action",
|
|
6330
|
-
ClosedUnsolvedThreadAction = "closed_unsolved_thread_action",
|
|
6331
|
-
ThreadOpened = "thread_opened",
|
|
6332
|
-
AssignedConversationAction = "assigned_conversation_action",
|
|
6333
|
-
ThreadOpenedAgentsUnavailable = "thread_opened_agents_unavailable",
|
|
6334
|
-
WidgetOpenedNoOpenThread = "widget_opened_no_open_thread"
|
|
6335
|
-
}
|
|
6336
|
-
}
|
|
6337
6144
|
/**
|
|
6338
6145
|
*
|
|
6339
6146
|
* @export
|
|
@@ -6385,56 +6192,10 @@ export interface UpdateRoleForm {
|
|
|
6385
6192
|
name: string;
|
|
6386
6193
|
/**
|
|
6387
6194
|
*
|
|
6388
|
-
* @type {Array<
|
|
6195
|
+
* @type {Array<AppPermission>}
|
|
6389
6196
|
* @memberof UpdateRoleForm
|
|
6390
6197
|
*/
|
|
6391
|
-
permissions?: Array<
|
|
6392
|
-
}
|
|
6393
|
-
/**
|
|
6394
|
-
* @export
|
|
6395
|
-
* @namespace UpdateRoleForm
|
|
6396
|
-
*/
|
|
6397
|
-
export declare namespace UpdateRoleForm {
|
|
6398
|
-
/**
|
|
6399
|
-
* @export
|
|
6400
|
-
* @enum {string}
|
|
6401
|
-
*/
|
|
6402
|
-
enum PermissionsEnum {
|
|
6403
|
-
AdminPermission = "admin_permission",
|
|
6404
|
-
DisplayClosedConversations = "display_closed_conversations",
|
|
6405
|
-
DisplayWaitingConversations = "display_waiting_conversations",
|
|
6406
|
-
DisplayFollowedConversations = "display_followed_conversations",
|
|
6407
|
-
DisplayInProgressConversations = "display_in_progress_conversations",
|
|
6408
|
-
DisplayYoursConversations = "display_yours_conversations",
|
|
6409
|
-
SettingsProactiveMessages = "settings_proactive_messages",
|
|
6410
|
-
SettingsTags = "settings_tags",
|
|
6411
|
-
SettingsAiSuggestions = "settings_ai_suggestions",
|
|
6412
|
-
SettingsWebhooks = "settings_webhooks",
|
|
6413
|
-
SettingsAdvisersConfiguration = "settings_advisers_configuration",
|
|
6414
|
-
SettingsAgentGroupsConfiguration = "settings_agent_groups_configuration",
|
|
6415
|
-
SettingsAdvisersAssignments = "settings_advisers_assignments",
|
|
6416
|
-
SettingsAdvisersAvatar = "settings_advisers_avatar",
|
|
6417
|
-
SettingsActionForms = "settings_action_forms",
|
|
6418
|
-
SettingsStatuses = "settings_statuses",
|
|
6419
|
-
SettingsRoles = "settings_roles",
|
|
6420
|
-
SettingsGeneral = "settings_general",
|
|
6421
|
-
ReportsYours = "reports_yours",
|
|
6422
|
-
ReportsGroups = "reports_groups",
|
|
6423
|
-
ReportsOrg = "reports_org",
|
|
6424
|
-
LeadDeleteProfile = "lead_delete_profile",
|
|
6425
|
-
LeadUpdateProfile = "lead_update_profile",
|
|
6426
|
-
UpdatePersonalData = "update_personal_data",
|
|
6427
|
-
RoomAssignSelf = "room_assign_self",
|
|
6428
|
-
RoomAssignAgent = "room_assign_agent",
|
|
6429
|
-
RoomAssignQueue = "room_assign_queue",
|
|
6430
|
-
RoomCloseNotOwn = "room_close_not_own",
|
|
6431
|
-
AiIntentsClassify = "ai_intents_classify",
|
|
6432
|
-
DisplayOwnTagGroupsConversations = "display_own_tag_groups_conversations",
|
|
6433
|
-
SettingsPasswordChange = "settings_password_change",
|
|
6434
|
-
SettingsPersonal = "settings_personal",
|
|
6435
|
-
MeetingsPageVisibility = "meetings_page_visibility",
|
|
6436
|
-
HelpPageVisibility = "help_page_visibility"
|
|
6437
|
-
}
|
|
6198
|
+
permissions?: Array<AppPermission>;
|
|
6438
6199
|
}
|
|
6439
6200
|
/**
|
|
6440
6201
|
*
|
|
@@ -6536,10 +6297,10 @@ export interface UpdateTagMappingForm {
|
|
|
6536
6297
|
urlPattern: string;
|
|
6537
6298
|
/**
|
|
6538
6299
|
*
|
|
6539
|
-
* @type {
|
|
6300
|
+
* @type {MatchingStrategy}
|
|
6540
6301
|
* @memberof UpdateTagMappingForm
|
|
6541
6302
|
*/
|
|
6542
|
-
matchingStrategy:
|
|
6303
|
+
matchingStrategy: MatchingStrategy;
|
|
6543
6304
|
/**
|
|
6544
6305
|
*
|
|
6545
6306
|
* @type {string}
|
|
@@ -6553,22 +6314,6 @@ export interface UpdateTagMappingForm {
|
|
|
6553
6314
|
*/
|
|
6554
6315
|
enabled: boolean;
|
|
6555
6316
|
}
|
|
6556
|
-
/**
|
|
6557
|
-
* @export
|
|
6558
|
-
* @namespace UpdateTagMappingForm
|
|
6559
|
-
*/
|
|
6560
|
-
export declare namespace UpdateTagMappingForm {
|
|
6561
|
-
/**
|
|
6562
|
-
* @export
|
|
6563
|
-
* @enum {string}
|
|
6564
|
-
*/
|
|
6565
|
-
enum MatchingStrategyEnum {
|
|
6566
|
-
WholeDomain = "whole_domain",
|
|
6567
|
-
PathRecursively = "path_recursively",
|
|
6568
|
-
ExactUrl = "exact_url",
|
|
6569
|
-
PathArgs = "path_args"
|
|
6570
|
-
}
|
|
6571
|
-
}
|
|
6572
6317
|
/**
|
|
6573
6318
|
*
|
|
6574
6319
|
* @export
|
|
@@ -6620,10 +6365,10 @@ export interface UrlTagMappingDto {
|
|
|
6620
6365
|
urlPattern: string;
|
|
6621
6366
|
/**
|
|
6622
6367
|
*
|
|
6623
|
-
* @type {
|
|
6368
|
+
* @type {MatchingStrategy}
|
|
6624
6369
|
* @memberof UrlTagMappingDto
|
|
6625
6370
|
*/
|
|
6626
|
-
matchingStrategy:
|
|
6371
|
+
matchingStrategy: MatchingStrategy;
|
|
6627
6372
|
/**
|
|
6628
6373
|
*
|
|
6629
6374
|
* @type {string}
|
|
@@ -6631,22 +6376,6 @@ export interface UrlTagMappingDto {
|
|
|
6631
6376
|
*/
|
|
6632
6377
|
tag: string;
|
|
6633
6378
|
}
|
|
6634
|
-
/**
|
|
6635
|
-
* @export
|
|
6636
|
-
* @namespace UrlTagMappingDto
|
|
6637
|
-
*/
|
|
6638
|
-
export declare namespace UrlTagMappingDto {
|
|
6639
|
-
/**
|
|
6640
|
-
* @export
|
|
6641
|
-
* @enum {string}
|
|
6642
|
-
*/
|
|
6643
|
-
enum MatchingStrategyEnum {
|
|
6644
|
-
WholeDomain = "whole_domain",
|
|
6645
|
-
PathRecursively = "path_recursively",
|
|
6646
|
-
ExactUrl = "exact_url",
|
|
6647
|
-
PathArgs = "path_args"
|
|
6648
|
-
}
|
|
6649
|
-
}
|
|
6650
6379
|
/**
|
|
6651
6380
|
*
|
|
6652
6381
|
* @export
|
|
@@ -9523,160 +9252,76 @@ export declare class InviteesApi extends BaseAPI {
|
|
|
9523
9252
|
revokeInvitation(body: RevokeInvitationForm, options?: any): Promise<Response>;
|
|
9524
9253
|
}
|
|
9525
9254
|
/**
|
|
9526
|
-
*
|
|
9255
|
+
* MeetingsApi - fetch parameter creator
|
|
9527
9256
|
* @export
|
|
9528
9257
|
*/
|
|
9529
|
-
export declare const
|
|
9258
|
+
export declare const MeetingsApiFetchParamCreator: (configuration?: Configuration) => {
|
|
9530
9259
|
/**
|
|
9531
9260
|
*
|
|
9532
|
-
* @summary
|
|
9533
|
-
* @param {
|
|
9261
|
+
* @summary Cancel a meeting
|
|
9262
|
+
* @param {CancelMeeting} body
|
|
9534
9263
|
* @param {*} [options] Override http request option.
|
|
9535
9264
|
* @throws {RequiredError}
|
|
9536
9265
|
*/
|
|
9537
|
-
|
|
9266
|
+
cancelMeeting(body: CancelMeeting, options?: any): FetchArgs;
|
|
9538
9267
|
/**
|
|
9539
9268
|
*
|
|
9540
|
-
* @
|
|
9541
|
-
* @param {string} roomId
|
|
9269
|
+
* @param {LureCancel} body
|
|
9542
9270
|
* @param {*} [options] Override http request option.
|
|
9543
9271
|
* @throws {RequiredError}
|
|
9544
9272
|
*/
|
|
9545
|
-
|
|
9546
|
-
};
|
|
9547
|
-
/**
|
|
9548
|
-
* MeetingBotApi - functional programming interface
|
|
9549
|
-
* @export
|
|
9550
|
-
*/
|
|
9551
|
-
export declare const MeetingBotApiFp: (configuration?: Configuration) => {
|
|
9273
|
+
customerCancel(body: LureCancel, options?: any): FetchArgs;
|
|
9552
9274
|
/**
|
|
9553
9275
|
*
|
|
9554
|
-
* @
|
|
9555
|
-
* @param {string} roomId
|
|
9276
|
+
* @param {LureSchedule} body
|
|
9556
9277
|
* @param {*} [options] Override http request option.
|
|
9557
9278
|
* @throws {RequiredError}
|
|
9558
9279
|
*/
|
|
9559
|
-
|
|
9280
|
+
customerSchedule(body: LureSchedule, options?: any): FetchArgs;
|
|
9560
9281
|
/**
|
|
9561
9282
|
*
|
|
9562
|
-
* @
|
|
9563
|
-
* @param {string} roomId
|
|
9283
|
+
* @param {LureSlots} body
|
|
9564
9284
|
* @param {*} [options] Override http request option.
|
|
9565
9285
|
* @throws {RequiredError}
|
|
9566
9286
|
*/
|
|
9567
|
-
|
|
9568
|
-
};
|
|
9569
|
-
/**
|
|
9570
|
-
* MeetingBotApi - factory interface
|
|
9571
|
-
* @export
|
|
9572
|
-
*/
|
|
9573
|
-
export declare const MeetingBotApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
|
|
9287
|
+
getBotSlots(body: LureSlots, options?: any): FetchArgs;
|
|
9574
9288
|
/**
|
|
9575
9289
|
*
|
|
9576
|
-
* @summary
|
|
9577
|
-
* @param {
|
|
9290
|
+
* @summary Get free meeting slots
|
|
9291
|
+
* @param {number} start The lowest timestamp to be taken into account (starting time).
|
|
9292
|
+
* @param {number} stop The highest timestamp to be taken into account (ending time).
|
|
9293
|
+
* @param {string} [agentId] If this field is present, it'll only include slots of the specified agent.
|
|
9294
|
+
* @param {string} [meetingId] If this field is present, then slot for this meeting is not counted as occupied.
|
|
9295
|
+
* @param {number} [duration] Slots duration in miliseconds.
|
|
9578
9296
|
* @param {*} [options] Override http request option.
|
|
9579
9297
|
* @throws {RequiredError}
|
|
9580
9298
|
*/
|
|
9581
|
-
|
|
9299
|
+
getFreeSlots(start: number, stop: number, agentId?: string, meetingId?: string, duration?: number, options?: any): FetchArgs;
|
|
9582
9300
|
/**
|
|
9583
9301
|
*
|
|
9584
|
-
* @summary
|
|
9585
|
-
* @param {
|
|
9302
|
+
* @summary Get your meetings
|
|
9303
|
+
* @param {number} [from] If this field is present along with `to`, then only meetings in the period are returned
|
|
9304
|
+
* @param {number} [to] If this field is present along with `from`, then only meetings in the period are returned
|
|
9586
9305
|
* @param {*} [options] Override http request option.
|
|
9587
9306
|
* @throws {RequiredError}
|
|
9588
9307
|
*/
|
|
9589
|
-
|
|
9590
|
-
};
|
|
9591
|
-
/**
|
|
9592
|
-
* MeetingBotApi - object-oriented interface
|
|
9593
|
-
* @export
|
|
9594
|
-
* @class MeetingBotApi
|
|
9595
|
-
* @extends {BaseAPI}
|
|
9596
|
-
*/
|
|
9597
|
-
export declare class MeetingBotApi extends BaseAPI {
|
|
9598
|
-
/**
|
|
9599
|
-
*
|
|
9600
|
-
* @summary Recall meeting bot rom room
|
|
9601
|
-
* @param {string} roomId
|
|
9602
|
-
* @param {*} [options] Override http request option.
|
|
9603
|
-
* @throws {RequiredError}
|
|
9604
|
-
* @memberof MeetingBotApi
|
|
9605
|
-
*/
|
|
9606
|
-
recallMeetingLure(roomId: string, options?: any): Promise<Response>;
|
|
9308
|
+
getMeetings(from?: number, to?: number, options?: any): FetchArgs;
|
|
9607
9309
|
/**
|
|
9608
9310
|
*
|
|
9609
|
-
* @summary
|
|
9311
|
+
* @summary Get meetings in room
|
|
9610
9312
|
* @param {string} roomId
|
|
9611
9313
|
* @param {*} [options] Override http request option.
|
|
9612
9314
|
* @throws {RequiredError}
|
|
9613
|
-
* @memberof MeetingBotApi
|
|
9614
|
-
*/
|
|
9615
|
-
sendMeetingLure(roomId: string, options?: any): Promise<Response>;
|
|
9616
|
-
}
|
|
9617
|
-
/**
|
|
9618
|
-
* MeetingsApi - fetch parameter creator
|
|
9619
|
-
* @export
|
|
9620
|
-
*/
|
|
9621
|
-
export declare const MeetingsApiFetchParamCreator: (configuration?: Configuration) => {
|
|
9622
|
-
/**
|
|
9623
|
-
*
|
|
9624
|
-
* @summary Cancel a meeting
|
|
9625
|
-
* @param {CancelMeeting} body
|
|
9626
|
-
* @param {*} [options] Override http request option.
|
|
9627
|
-
* @throws {RequiredError}
|
|
9628
|
-
*/
|
|
9629
|
-
cancelMeeting(body: CancelMeeting, options?: any): FetchArgs;
|
|
9630
|
-
/**
|
|
9631
|
-
*
|
|
9632
|
-
* @param {LureCancel} body
|
|
9633
|
-
* @param {*} [options] Override http request option.
|
|
9634
|
-
* @throws {RequiredError}
|
|
9635
9315
|
*/
|
|
9636
|
-
|
|
9637
|
-
/**
|
|
9638
|
-
*
|
|
9639
|
-
* @param {LureSchedule} body
|
|
9640
|
-
* @param {*} [options] Override http request option.
|
|
9641
|
-
* @throws {RequiredError}
|
|
9642
|
-
*/
|
|
9643
|
-
customerSchedule(body: LureSchedule, options?: any): FetchArgs;
|
|
9644
|
-
/**
|
|
9645
|
-
*
|
|
9646
|
-
* @param {LureSlots} body
|
|
9647
|
-
* @param {*} [options] Override http request option.
|
|
9648
|
-
* @throws {RequiredError}
|
|
9649
|
-
*/
|
|
9650
|
-
getBotSlots(body: LureSlots, options?: any): FetchArgs;
|
|
9651
|
-
/**
|
|
9652
|
-
*
|
|
9653
|
-
* @summary Get free meeting slots
|
|
9654
|
-
* @param {number} start The lowest timestamp to be taken into account (starting time).
|
|
9655
|
-
* @param {number} stop The highest timestamp to be taken into account (ending time).
|
|
9656
|
-
* @param {string} [agentId] If this field is present, it'll only include slots of the specified agent.
|
|
9657
|
-
* @param {string} [meetingId] If this field is present, then slot for this meeting is not counted as occupied.
|
|
9658
|
-
* @param {number} [duration] Slots duration in miliseconds.
|
|
9659
|
-
* @param {*} [options] Override http request option.
|
|
9660
|
-
* @throws {RequiredError}
|
|
9661
|
-
*/
|
|
9662
|
-
getFreeSlots(start: number, stop: number, agentId?: string, meetingId?: string, duration?: number, options?: any): FetchArgs;
|
|
9663
|
-
/**
|
|
9664
|
-
*
|
|
9665
|
-
* @summary Get your meetings
|
|
9666
|
-
* @param {number} [from] If this field is present along with `to`, then only meetings in the period are returned
|
|
9667
|
-
* @param {number} [to] If this field is present along with `from`, then only meetings in the period are returned
|
|
9668
|
-
* @param {*} [options] Override http request option.
|
|
9669
|
-
* @throws {RequiredError}
|
|
9670
|
-
*/
|
|
9671
|
-
getMeetings(from?: number, to?: number, options?: any): FetchArgs;
|
|
9316
|
+
getRoomMeetings(roomId: string, options?: any): FetchArgs;
|
|
9672
9317
|
/**
|
|
9673
9318
|
*
|
|
9674
|
-
* @summary
|
|
9319
|
+
* @summary Recall meeting bot rom room
|
|
9675
9320
|
* @param {string} roomId
|
|
9676
9321
|
* @param {*} [options] Override http request option.
|
|
9677
9322
|
* @throws {RequiredError}
|
|
9678
9323
|
*/
|
|
9679
|
-
|
|
9324
|
+
recallMeetingLure(roomId: string, options?: any): FetchArgs;
|
|
9680
9325
|
/**
|
|
9681
9326
|
*
|
|
9682
9327
|
* @summary Reschedule a meeting
|
|
@@ -9709,6 +9354,14 @@ export declare const MeetingsApiFetchParamCreator: (configuration?: Configuratio
|
|
|
9709
9354
|
* @throws {RequiredError}
|
|
9710
9355
|
*/
|
|
9711
9356
|
scheduleMeetingExternal(body: ScheduleMeetingExternal, options?: any): FetchArgs;
|
|
9357
|
+
/**
|
|
9358
|
+
*
|
|
9359
|
+
* @summary Send meeting bot to room
|
|
9360
|
+
* @param {string} roomId
|
|
9361
|
+
* @param {*} [options] Override http request option.
|
|
9362
|
+
* @throws {RequiredError}
|
|
9363
|
+
*/
|
|
9364
|
+
sendMeetingLure(roomId: string, options?: any): FetchArgs;
|
|
9712
9365
|
};
|
|
9713
9366
|
/**
|
|
9714
9367
|
* MeetingsApi - functional programming interface
|
|
@@ -9773,6 +9426,14 @@ export declare const MeetingsApiFp: (configuration?: Configuration) => {
|
|
|
9773
9426
|
* @throws {RequiredError}
|
|
9774
9427
|
*/
|
|
9775
9428
|
getRoomMeetings(roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<Meeting>>;
|
|
9429
|
+
/**
|
|
9430
|
+
*
|
|
9431
|
+
* @summary Recall meeting bot rom room
|
|
9432
|
+
* @param {string} roomId
|
|
9433
|
+
* @param {*} [options] Override http request option.
|
|
9434
|
+
* @throws {RequiredError}
|
|
9435
|
+
*/
|
|
9436
|
+
recallMeetingLure(roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
9776
9437
|
/**
|
|
9777
9438
|
*
|
|
9778
9439
|
* @summary Reschedule a meeting
|
|
@@ -9805,6 +9466,14 @@ export declare const MeetingsApiFp: (configuration?: Configuration) => {
|
|
|
9805
9466
|
* @throws {RequiredError}
|
|
9806
9467
|
*/
|
|
9807
9468
|
scheduleMeetingExternal(body: ScheduleMeetingExternal, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Meeting>;
|
|
9469
|
+
/**
|
|
9470
|
+
*
|
|
9471
|
+
* @summary Send meeting bot to room
|
|
9472
|
+
* @param {string} roomId
|
|
9473
|
+
* @param {*} [options] Override http request option.
|
|
9474
|
+
* @throws {RequiredError}
|
|
9475
|
+
*/
|
|
9476
|
+
sendMeetingLure(roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
9808
9477
|
};
|
|
9809
9478
|
/**
|
|
9810
9479
|
* MeetingsApi - factory interface
|
|
@@ -9869,6 +9538,14 @@ export declare const MeetingsApiFactory: (configuration?: Configuration, fetch?:
|
|
|
9869
9538
|
* @throws {RequiredError}
|
|
9870
9539
|
*/
|
|
9871
9540
|
getRoomMeetings(roomId: string, options?: any): Promise<Meeting[]>;
|
|
9541
|
+
/**
|
|
9542
|
+
*
|
|
9543
|
+
* @summary Recall meeting bot rom room
|
|
9544
|
+
* @param {string} roomId
|
|
9545
|
+
* @param {*} [options] Override http request option.
|
|
9546
|
+
* @throws {RequiredError}
|
|
9547
|
+
*/
|
|
9548
|
+
recallMeetingLure(roomId: string, options?: any): Promise<Response>;
|
|
9872
9549
|
/**
|
|
9873
9550
|
*
|
|
9874
9551
|
* @summary Reschedule a meeting
|
|
@@ -9901,6 +9578,14 @@ export declare const MeetingsApiFactory: (configuration?: Configuration, fetch?:
|
|
|
9901
9578
|
* @throws {RequiredError}
|
|
9902
9579
|
*/
|
|
9903
9580
|
scheduleMeetingExternal(body: ScheduleMeetingExternal, options?: any): Promise<Meeting>;
|
|
9581
|
+
/**
|
|
9582
|
+
*
|
|
9583
|
+
* @summary Send meeting bot to room
|
|
9584
|
+
* @param {string} roomId
|
|
9585
|
+
* @param {*} [options] Override http request option.
|
|
9586
|
+
* @throws {RequiredError}
|
|
9587
|
+
*/
|
|
9588
|
+
sendMeetingLure(roomId: string, options?: any): Promise<Response>;
|
|
9904
9589
|
};
|
|
9905
9590
|
/**
|
|
9906
9591
|
* MeetingsApi - object-oriented interface
|
|
@@ -9974,6 +9659,15 @@ export declare class MeetingsApi extends BaseAPI {
|
|
|
9974
9659
|
* @memberof MeetingsApi
|
|
9975
9660
|
*/
|
|
9976
9661
|
getRoomMeetings(roomId: string, options?: any): Promise<Meeting[]>;
|
|
9662
|
+
/**
|
|
9663
|
+
*
|
|
9664
|
+
* @summary Recall meeting bot rom room
|
|
9665
|
+
* @param {string} roomId
|
|
9666
|
+
* @param {*} [options] Override http request option.
|
|
9667
|
+
* @throws {RequiredError}
|
|
9668
|
+
* @memberof MeetingsApi
|
|
9669
|
+
*/
|
|
9670
|
+
recallMeetingLure(roomId: string, options?: any): Promise<Response>;
|
|
9977
9671
|
/**
|
|
9978
9672
|
*
|
|
9979
9673
|
* @summary Reschedule a meeting
|
|
@@ -10010,6 +9704,15 @@ export declare class MeetingsApi extends BaseAPI {
|
|
|
10010
9704
|
* @memberof MeetingsApi
|
|
10011
9705
|
*/
|
|
10012
9706
|
scheduleMeetingExternal(body: ScheduleMeetingExternal, options?: any): Promise<Meeting>;
|
|
9707
|
+
/**
|
|
9708
|
+
*
|
|
9709
|
+
* @summary Send meeting bot to room
|
|
9710
|
+
* @param {string} roomId
|
|
9711
|
+
* @param {*} [options] Override http request option.
|
|
9712
|
+
* @throws {RequiredError}
|
|
9713
|
+
* @memberof MeetingsApi
|
|
9714
|
+
*/
|
|
9715
|
+
sendMeetingLure(roomId: string, options?: any): Promise<Response>;
|
|
10013
9716
|
}
|
|
10014
9717
|
/**
|
|
10015
9718
|
* MessageWidgetsApi - fetch parameter creator
|
|
@@ -10694,275 +10397,275 @@ export declare class NLUApi extends BaseAPI {
|
|
|
10694
10397
|
updateIntent(body: IntentForm, intentId: string, options?: any): Promise<IntentDto>;
|
|
10695
10398
|
}
|
|
10696
10399
|
/**
|
|
10697
|
-
*
|
|
10400
|
+
* OAuthApi - fetch parameter creator
|
|
10698
10401
|
* @export
|
|
10699
10402
|
*/
|
|
10700
|
-
export declare const
|
|
10403
|
+
export declare const OAuthApiFetchParamCreator: (configuration?: Configuration) => {
|
|
10701
10404
|
/**
|
|
10702
10405
|
*
|
|
10703
|
-
* @summary
|
|
10704
|
-
* @param {
|
|
10406
|
+
* @summary Create oauth config
|
|
10407
|
+
* @param {OauthConfigCreateForm} body
|
|
10705
10408
|
* @param {*} [options] Override http request option.
|
|
10706
10409
|
* @throws {RequiredError}
|
|
10707
10410
|
*/
|
|
10708
|
-
|
|
10411
|
+
createOAuthConfig(body: OauthConfigCreateForm, options?: any): FetchArgs;
|
|
10709
10412
|
/**
|
|
10710
10413
|
*
|
|
10711
|
-
* @summary
|
|
10414
|
+
* @summary Delete oauth config
|
|
10712
10415
|
* @param {*} [options] Override http request option.
|
|
10713
10416
|
* @throws {RequiredError}
|
|
10714
10417
|
*/
|
|
10715
|
-
|
|
10418
|
+
deleteOAuthConfig(options?: any): FetchArgs;
|
|
10716
10419
|
/**
|
|
10717
10420
|
*
|
|
10718
|
-
* @summary
|
|
10719
|
-
* @param {string} orgId orgId
|
|
10421
|
+
* @summary Get oauth config
|
|
10720
10422
|
* @param {*} [options] Override http request option.
|
|
10721
10423
|
* @throws {RequiredError}
|
|
10722
10424
|
*/
|
|
10723
|
-
|
|
10724
|
-
};
|
|
10725
|
-
/**
|
|
10726
|
-
* OIDCApi - functional programming interface
|
|
10727
|
-
* @export
|
|
10728
|
-
*/
|
|
10729
|
-
export declare const OIDCApiFp: (configuration?: Configuration) => {
|
|
10425
|
+
getOAuthConfig(options?: any): FetchArgs;
|
|
10730
10426
|
/**
|
|
10731
10427
|
*
|
|
10732
|
-
* @summary
|
|
10733
|
-
* @param {
|
|
10428
|
+
* @summary Patch oauth config
|
|
10429
|
+
* @param {OauthConfigPatchForm} body
|
|
10734
10430
|
* @param {*} [options] Override http request option.
|
|
10735
10431
|
* @throws {RequiredError}
|
|
10736
10432
|
*/
|
|
10737
|
-
|
|
10433
|
+
patchOAuthConfig(body: OauthConfigPatchForm, options?: any): FetchArgs;
|
|
10434
|
+
};
|
|
10435
|
+
/**
|
|
10436
|
+
* OAuthApi - functional programming interface
|
|
10437
|
+
* @export
|
|
10438
|
+
*/
|
|
10439
|
+
export declare const OAuthApiFp: (configuration?: Configuration) => {
|
|
10738
10440
|
/**
|
|
10739
10441
|
*
|
|
10740
|
-
* @summary
|
|
10442
|
+
* @summary Create oauth config
|
|
10443
|
+
* @param {OauthConfigCreateForm} body
|
|
10741
10444
|
* @param {*} [options] Override http request option.
|
|
10742
10445
|
* @throws {RequiredError}
|
|
10743
10446
|
*/
|
|
10744
|
-
|
|
10447
|
+
createOAuthConfig(body: OauthConfigCreateForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
10745
10448
|
/**
|
|
10746
10449
|
*
|
|
10747
|
-
* @summary
|
|
10748
|
-
* @param {string} orgId orgId
|
|
10450
|
+
* @summary Delete oauth config
|
|
10749
10451
|
* @param {*} [options] Override http request option.
|
|
10750
10452
|
* @throws {RequiredError}
|
|
10751
10453
|
*/
|
|
10752
|
-
|
|
10753
|
-
};
|
|
10754
|
-
/**
|
|
10755
|
-
* OIDCApi - factory interface
|
|
10756
|
-
* @export
|
|
10757
|
-
*/
|
|
10758
|
-
export declare const OIDCApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
|
|
10454
|
+
deleteOAuthConfig(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
10759
10455
|
/**
|
|
10760
10456
|
*
|
|
10761
|
-
* @summary
|
|
10762
|
-
* @param {CodeAuthorizationForm} body
|
|
10457
|
+
* @summary Get oauth config
|
|
10763
10458
|
* @param {*} [options] Override http request option.
|
|
10764
10459
|
* @throws {RequiredError}
|
|
10765
10460
|
*/
|
|
10766
|
-
|
|
10461
|
+
getOAuthConfig(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OauthConfigResponse>;
|
|
10767
10462
|
/**
|
|
10768
10463
|
*
|
|
10769
|
-
* @summary
|
|
10464
|
+
* @summary Patch oauth config
|
|
10465
|
+
* @param {OauthConfigPatchForm} body
|
|
10770
10466
|
* @param {*} [options] Override http request option.
|
|
10771
10467
|
* @throws {RequiredError}
|
|
10772
10468
|
*/
|
|
10773
|
-
|
|
10469
|
+
patchOAuthConfig(body: OauthConfigPatchForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
10470
|
+
};
|
|
10471
|
+
/**
|
|
10472
|
+
* OAuthApi - factory interface
|
|
10473
|
+
* @export
|
|
10474
|
+
*/
|
|
10475
|
+
export declare const OAuthApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
|
|
10774
10476
|
/**
|
|
10775
10477
|
*
|
|
10776
|
-
* @summary
|
|
10777
|
-
* @param {
|
|
10478
|
+
* @summary Create oauth config
|
|
10479
|
+
* @param {OauthConfigCreateForm} body
|
|
10778
10480
|
* @param {*} [options] Override http request option.
|
|
10779
10481
|
* @throws {RequiredError}
|
|
10780
10482
|
*/
|
|
10781
|
-
|
|
10782
|
-
};
|
|
10783
|
-
/**
|
|
10784
|
-
* OIDCApi - object-oriented interface
|
|
10785
|
-
* @export
|
|
10786
|
-
* @class OIDCApi
|
|
10787
|
-
* @extends {BaseAPI}
|
|
10788
|
-
*/
|
|
10789
|
-
export declare class OIDCApi extends BaseAPI {
|
|
10483
|
+
createOAuthConfig(body: OauthConfigCreateForm, options?: any): Promise<Response>;
|
|
10790
10484
|
/**
|
|
10791
10485
|
*
|
|
10792
|
-
* @summary
|
|
10793
|
-
* @param {CodeAuthorizationForm} body
|
|
10486
|
+
* @summary Delete oauth config
|
|
10794
10487
|
* @param {*} [options] Override http request option.
|
|
10795
10488
|
* @throws {RequiredError}
|
|
10796
|
-
* @memberof OIDCApi
|
|
10797
10489
|
*/
|
|
10798
|
-
|
|
10490
|
+
deleteOAuthConfig(options?: any): Promise<Response>;
|
|
10799
10491
|
/**
|
|
10800
10492
|
*
|
|
10801
|
-
* @summary
|
|
10493
|
+
* @summary Get oauth config
|
|
10802
10494
|
* @param {*} [options] Override http request option.
|
|
10803
10495
|
* @throws {RequiredError}
|
|
10804
|
-
* @memberof OIDCApi
|
|
10805
10496
|
*/
|
|
10806
|
-
|
|
10497
|
+
getOAuthConfig(options?: any): Promise<OauthConfigResponse>;
|
|
10807
10498
|
/**
|
|
10808
10499
|
*
|
|
10809
|
-
* @summary
|
|
10810
|
-
* @param {
|
|
10500
|
+
* @summary Patch oauth config
|
|
10501
|
+
* @param {OauthConfigPatchForm} body
|
|
10811
10502
|
* @param {*} [options] Override http request option.
|
|
10812
10503
|
* @throws {RequiredError}
|
|
10813
|
-
* @memberof OIDCApi
|
|
10814
10504
|
*/
|
|
10815
|
-
|
|
10816
|
-
}
|
|
10505
|
+
patchOAuthConfig(body: OauthConfigPatchForm, options?: any): Promise<Response>;
|
|
10506
|
+
};
|
|
10817
10507
|
/**
|
|
10818
|
-
*
|
|
10508
|
+
* OAuthApi - object-oriented interface
|
|
10819
10509
|
* @export
|
|
10510
|
+
* @class OAuthApi
|
|
10511
|
+
* @extends {BaseAPI}
|
|
10820
10512
|
*/
|
|
10821
|
-
export declare
|
|
10513
|
+
export declare class OAuthApi extends BaseAPI {
|
|
10822
10514
|
/**
|
|
10823
10515
|
*
|
|
10824
10516
|
* @summary Create oauth config
|
|
10825
10517
|
* @param {OauthConfigCreateForm} body
|
|
10826
10518
|
* @param {*} [options] Override http request option.
|
|
10827
10519
|
* @throws {RequiredError}
|
|
10520
|
+
* @memberof OAuthApi
|
|
10828
10521
|
*/
|
|
10829
|
-
createOAuthConfig(body: OauthConfigCreateForm, options?: any):
|
|
10522
|
+
createOAuthConfig(body: OauthConfigCreateForm, options?: any): Promise<Response>;
|
|
10830
10523
|
/**
|
|
10831
10524
|
*
|
|
10832
10525
|
* @summary Delete oauth config
|
|
10833
10526
|
* @param {*} [options] Override http request option.
|
|
10834
10527
|
* @throws {RequiredError}
|
|
10528
|
+
* @memberof OAuthApi
|
|
10835
10529
|
*/
|
|
10836
|
-
deleteOAuthConfig(options?: any):
|
|
10530
|
+
deleteOAuthConfig(options?: any): Promise<Response>;
|
|
10837
10531
|
/**
|
|
10838
10532
|
*
|
|
10839
10533
|
* @summary Get oauth config
|
|
10840
10534
|
* @param {*} [options] Override http request option.
|
|
10841
10535
|
* @throws {RequiredError}
|
|
10536
|
+
* @memberof OAuthApi
|
|
10842
10537
|
*/
|
|
10843
|
-
getOAuthConfig(options?: any):
|
|
10538
|
+
getOAuthConfig(options?: any): Promise<OauthConfigResponse>;
|
|
10844
10539
|
/**
|
|
10845
10540
|
*
|
|
10846
10541
|
* @summary Patch oauth config
|
|
10847
10542
|
* @param {OauthConfigPatchForm} body
|
|
10848
10543
|
* @param {*} [options] Override http request option.
|
|
10849
10544
|
* @throws {RequiredError}
|
|
10545
|
+
* @memberof OAuthApi
|
|
10850
10546
|
*/
|
|
10851
|
-
patchOAuthConfig(body: OauthConfigPatchForm, options?: any):
|
|
10852
|
-
}
|
|
10547
|
+
patchOAuthConfig(body: OauthConfigPatchForm, options?: any): Promise<Response>;
|
|
10548
|
+
}
|
|
10853
10549
|
/**
|
|
10854
|
-
*
|
|
10550
|
+
* OIDCApi - fetch parameter creator
|
|
10855
10551
|
* @export
|
|
10856
10552
|
*/
|
|
10857
|
-
export declare const
|
|
10553
|
+
export declare const OIDCApiFetchParamCreator: (configuration?: Configuration) => {
|
|
10858
10554
|
/**
|
|
10859
10555
|
*
|
|
10860
|
-
* @summary
|
|
10861
|
-
* @param {
|
|
10556
|
+
* @summary authorize with code
|
|
10557
|
+
* @param {CodeAuthorizationForm} body
|
|
10862
10558
|
* @param {*} [options] Override http request option.
|
|
10863
10559
|
* @throws {RequiredError}
|
|
10864
10560
|
*/
|
|
10865
|
-
|
|
10561
|
+
authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): FetchArgs;
|
|
10562
|
+
/**
|
|
10563
|
+
*
|
|
10564
|
+
* @summary get nonce
|
|
10565
|
+
* @param {*} [options] Override http request option.
|
|
10566
|
+
* @throws {RequiredError}
|
|
10567
|
+
*/
|
|
10568
|
+
getNonce(options?: any): FetchArgs;
|
|
10569
|
+
/**
|
|
10570
|
+
*
|
|
10571
|
+
* @summary unauthorized endpoint for org's oidc configuration
|
|
10572
|
+
* @param {string} orgId orgId
|
|
10573
|
+
* @param {*} [options] Override http request option.
|
|
10574
|
+
* @throws {RequiredError}
|
|
10575
|
+
*/
|
|
10576
|
+
getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): FetchArgs;
|
|
10577
|
+
};
|
|
10578
|
+
/**
|
|
10579
|
+
* OIDCApi - functional programming interface
|
|
10580
|
+
* @export
|
|
10581
|
+
*/
|
|
10582
|
+
export declare const OIDCApiFp: (configuration?: Configuration) => {
|
|
10866
10583
|
/**
|
|
10867
10584
|
*
|
|
10868
|
-
* @summary
|
|
10585
|
+
* @summary authorize with code
|
|
10586
|
+
* @param {CodeAuthorizationForm} body
|
|
10869
10587
|
* @param {*} [options] Override http request option.
|
|
10870
10588
|
* @throws {RequiredError}
|
|
10871
10589
|
*/
|
|
10872
|
-
|
|
10590
|
+
authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<AgentCtx>;
|
|
10873
10591
|
/**
|
|
10874
10592
|
*
|
|
10875
|
-
* @summary
|
|
10593
|
+
* @summary get nonce
|
|
10876
10594
|
* @param {*} [options] Override http request option.
|
|
10877
10595
|
* @throws {RequiredError}
|
|
10878
10596
|
*/
|
|
10879
|
-
|
|
10597
|
+
getNonce(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Nonce>;
|
|
10880
10598
|
/**
|
|
10881
10599
|
*
|
|
10882
|
-
* @summary
|
|
10883
|
-
* @param {
|
|
10600
|
+
* @summary unauthorized endpoint for org's oidc configuration
|
|
10601
|
+
* @param {string} orgId orgId
|
|
10884
10602
|
* @param {*} [options] Override http request option.
|
|
10885
10603
|
* @throws {RequiredError}
|
|
10886
10604
|
*/
|
|
10887
|
-
|
|
10605
|
+
getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OpenIDConnectConfig>;
|
|
10888
10606
|
};
|
|
10889
10607
|
/**
|
|
10890
|
-
*
|
|
10608
|
+
* OIDCApi - factory interface
|
|
10891
10609
|
* @export
|
|
10892
10610
|
*/
|
|
10893
|
-
export declare const
|
|
10894
|
-
/**
|
|
10895
|
-
*
|
|
10896
|
-
* @summary Create oauth config
|
|
10897
|
-
* @param {OauthConfigCreateForm} body
|
|
10898
|
-
* @param {*} [options] Override http request option.
|
|
10899
|
-
* @throws {RequiredError}
|
|
10900
|
-
*/
|
|
10901
|
-
createOAuthConfig(body: OauthConfigCreateForm, options?: any): Promise<Response>;
|
|
10611
|
+
export declare const OIDCApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
|
|
10902
10612
|
/**
|
|
10903
10613
|
*
|
|
10904
|
-
* @summary
|
|
10614
|
+
* @summary authorize with code
|
|
10615
|
+
* @param {CodeAuthorizationForm} body
|
|
10905
10616
|
* @param {*} [options] Override http request option.
|
|
10906
10617
|
* @throws {RequiredError}
|
|
10907
10618
|
*/
|
|
10908
|
-
|
|
10619
|
+
authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): Promise<AgentCtx>;
|
|
10909
10620
|
/**
|
|
10910
10621
|
*
|
|
10911
|
-
* @summary
|
|
10622
|
+
* @summary get nonce
|
|
10912
10623
|
* @param {*} [options] Override http request option.
|
|
10913
10624
|
* @throws {RequiredError}
|
|
10914
10625
|
*/
|
|
10915
|
-
|
|
10626
|
+
getNonce(options?: any): Promise<Nonce>;
|
|
10916
10627
|
/**
|
|
10917
10628
|
*
|
|
10918
|
-
* @summary
|
|
10919
|
-
* @param {
|
|
10629
|
+
* @summary unauthorized endpoint for org's oidc configuration
|
|
10630
|
+
* @param {string} orgId orgId
|
|
10920
10631
|
* @param {*} [options] Override http request option.
|
|
10921
10632
|
* @throws {RequiredError}
|
|
10922
10633
|
*/
|
|
10923
|
-
|
|
10634
|
+
getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): Promise<OpenIDConnectConfig>;
|
|
10924
10635
|
};
|
|
10925
10636
|
/**
|
|
10926
|
-
*
|
|
10637
|
+
* OIDCApi - object-oriented interface
|
|
10927
10638
|
* @export
|
|
10928
|
-
* @class
|
|
10639
|
+
* @class OIDCApi
|
|
10929
10640
|
* @extends {BaseAPI}
|
|
10930
10641
|
*/
|
|
10931
|
-
export declare class
|
|
10932
|
-
/**
|
|
10933
|
-
*
|
|
10934
|
-
* @summary Create oauth config
|
|
10935
|
-
* @param {OauthConfigCreateForm} body
|
|
10936
|
-
* @param {*} [options] Override http request option.
|
|
10937
|
-
* @throws {RequiredError}
|
|
10938
|
-
* @memberof OauthApi
|
|
10939
|
-
*/
|
|
10940
|
-
createOAuthConfig(body: OauthConfigCreateForm, options?: any): Promise<Response>;
|
|
10642
|
+
export declare class OIDCApi extends BaseAPI {
|
|
10941
10643
|
/**
|
|
10942
10644
|
*
|
|
10943
|
-
* @summary
|
|
10645
|
+
* @summary authorize with code
|
|
10646
|
+
* @param {CodeAuthorizationForm} body
|
|
10944
10647
|
* @param {*} [options] Override http request option.
|
|
10945
10648
|
* @throws {RequiredError}
|
|
10946
|
-
* @memberof
|
|
10649
|
+
* @memberof OIDCApi
|
|
10947
10650
|
*/
|
|
10948
|
-
|
|
10651
|
+
authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): Promise<AgentCtx>;
|
|
10949
10652
|
/**
|
|
10950
10653
|
*
|
|
10951
|
-
* @summary
|
|
10654
|
+
* @summary get nonce
|
|
10952
10655
|
* @param {*} [options] Override http request option.
|
|
10953
10656
|
* @throws {RequiredError}
|
|
10954
|
-
* @memberof
|
|
10657
|
+
* @memberof OIDCApi
|
|
10955
10658
|
*/
|
|
10956
|
-
|
|
10659
|
+
getNonce(options?: any): Promise<Nonce>;
|
|
10957
10660
|
/**
|
|
10958
10661
|
*
|
|
10959
|
-
* @summary
|
|
10960
|
-
* @param {
|
|
10662
|
+
* @summary unauthorized endpoint for org's oidc configuration
|
|
10663
|
+
* @param {string} orgId orgId
|
|
10961
10664
|
* @param {*} [options] Override http request option.
|
|
10962
10665
|
* @throws {RequiredError}
|
|
10963
|
-
* @memberof
|
|
10666
|
+
* @memberof OIDCApi
|
|
10964
10667
|
*/
|
|
10965
|
-
|
|
10668
|
+
getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): Promise<OpenIDConnectConfig>;
|
|
10966
10669
|
}
|
|
10967
10670
|
/**
|
|
10968
10671
|
* OplAddressApi - fetch parameter creator
|
|
@@ -12758,6 +12461,14 @@ export declare const RoomsApiFetchParamCreator: (configuration?: Configuration)
|
|
|
12758
12461
|
* @throws {RequiredError}
|
|
12759
12462
|
*/
|
|
12760
12463
|
getHistory(roomId: string, options?: any): FetchArgs;
|
|
12464
|
+
/**
|
|
12465
|
+
*
|
|
12466
|
+
* @summary Search for a room by lead query.
|
|
12467
|
+
* @param {string} query
|
|
12468
|
+
* @param {*} [options] Override http request option.
|
|
12469
|
+
* @throws {RequiredError}
|
|
12470
|
+
*/
|
|
12471
|
+
getInboxEntriesByQuery(query: string, options?: any): FetchArgs;
|
|
12761
12472
|
/**
|
|
12762
12473
|
*
|
|
12763
12474
|
* @summary Get ids of agents not following the room
|
|
@@ -12778,12 +12489,12 @@ export declare const RoomsApiFetchParamCreator: (configuration?: Configuration)
|
|
|
12778
12489
|
/**
|
|
12779
12490
|
*
|
|
12780
12491
|
* @summary Set conversation status
|
|
12781
|
-
* @param {
|
|
12492
|
+
* @param {ConversationStatusForm} body
|
|
12782
12493
|
* @param {string} roomId The ID of the room of the conversation.
|
|
12783
12494
|
* @param {*} [options] Override http request option.
|
|
12784
12495
|
* @throws {RequiredError}
|
|
12785
12496
|
*/
|
|
12786
|
-
setConversationStatus(body:
|
|
12497
|
+
setConversationStatus(body: ConversationStatusForm, roomId: string, options?: any): FetchArgs;
|
|
12787
12498
|
/**
|
|
12788
12499
|
*
|
|
12789
12500
|
* @summary Snooze conversation
|
|
@@ -12872,6 +12583,14 @@ export declare const RoomsApiFp: (configuration?: Configuration) => {
|
|
|
12872
12583
|
* @throws {RequiredError}
|
|
12873
12584
|
*/
|
|
12874
12585
|
getHistory(roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<ChatEvent>>;
|
|
12586
|
+
/**
|
|
12587
|
+
*
|
|
12588
|
+
* @summary Search for a room by lead query.
|
|
12589
|
+
* @param {string} query
|
|
12590
|
+
* @param {*} [options] Override http request option.
|
|
12591
|
+
* @throws {RequiredError}
|
|
12592
|
+
*/
|
|
12593
|
+
getInboxEntriesByQuery(query: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<InboxEntry>>;
|
|
12875
12594
|
/**
|
|
12876
12595
|
*
|
|
12877
12596
|
* @summary Get ids of agents not following the room
|
|
@@ -12892,12 +12611,12 @@ export declare const RoomsApiFp: (configuration?: Configuration) => {
|
|
|
12892
12611
|
/**
|
|
12893
12612
|
*
|
|
12894
12613
|
* @summary Set conversation status
|
|
12895
|
-
* @param {
|
|
12614
|
+
* @param {ConversationStatusForm} body
|
|
12896
12615
|
* @param {string} roomId The ID of the room of the conversation.
|
|
12897
12616
|
* @param {*} [options] Override http request option.
|
|
12898
12617
|
* @throws {RequiredError}
|
|
12899
12618
|
*/
|
|
12900
|
-
setConversationStatus(body:
|
|
12619
|
+
setConversationStatus(body: ConversationStatusForm, roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
12901
12620
|
/**
|
|
12902
12621
|
*
|
|
12903
12622
|
* @summary Snooze conversation
|
|
@@ -12986,6 +12705,14 @@ export declare const RoomsApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
12986
12705
|
* @throws {RequiredError}
|
|
12987
12706
|
*/
|
|
12988
12707
|
getHistory(roomId: string, options?: any): Promise<ChatEvent[]>;
|
|
12708
|
+
/**
|
|
12709
|
+
*
|
|
12710
|
+
* @summary Search for a room by lead query.
|
|
12711
|
+
* @param {string} query
|
|
12712
|
+
* @param {*} [options] Override http request option.
|
|
12713
|
+
* @throws {RequiredError}
|
|
12714
|
+
*/
|
|
12715
|
+
getInboxEntriesByQuery(query: string, options?: any): Promise<InboxEntry[]>;
|
|
12989
12716
|
/**
|
|
12990
12717
|
*
|
|
12991
12718
|
* @summary Get ids of agents not following the room
|
|
@@ -13006,12 +12733,12 @@ export declare const RoomsApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
13006
12733
|
/**
|
|
13007
12734
|
*
|
|
13008
12735
|
* @summary Set conversation status
|
|
13009
|
-
* @param {
|
|
12736
|
+
* @param {ConversationStatusForm} body
|
|
13010
12737
|
* @param {string} roomId The ID of the room of the conversation.
|
|
13011
12738
|
* @param {*} [options] Override http request option.
|
|
13012
12739
|
* @throws {RequiredError}
|
|
13013
12740
|
*/
|
|
13014
|
-
setConversationStatus(body:
|
|
12741
|
+
setConversationStatus(body: ConversationStatusForm, roomId: string, options?: any): Promise<Response>;
|
|
13015
12742
|
/**
|
|
13016
12743
|
*
|
|
13017
12744
|
* @summary Snooze conversation
|
|
@@ -13109,6 +12836,15 @@ export declare class RoomsApi extends BaseAPI {
|
|
|
13109
12836
|
* @memberof RoomsApi
|
|
13110
12837
|
*/
|
|
13111
12838
|
getHistory(roomId: string, options?: any): Promise<ChatEvent[]>;
|
|
12839
|
+
/**
|
|
12840
|
+
*
|
|
12841
|
+
* @summary Search for a room by lead query.
|
|
12842
|
+
* @param {string} query
|
|
12843
|
+
* @param {*} [options] Override http request option.
|
|
12844
|
+
* @throws {RequiredError}
|
|
12845
|
+
* @memberof RoomsApi
|
|
12846
|
+
*/
|
|
12847
|
+
getInboxEntriesByQuery(query: string, options?: any): Promise<InboxEntry[]>;
|
|
13112
12848
|
/**
|
|
13113
12849
|
*
|
|
13114
12850
|
* @summary Get ids of agents not following the room
|
|
@@ -13131,13 +12867,13 @@ export declare class RoomsApi extends BaseAPI {
|
|
|
13131
12867
|
/**
|
|
13132
12868
|
*
|
|
13133
12869
|
* @summary Set conversation status
|
|
13134
|
-
* @param {
|
|
12870
|
+
* @param {ConversationStatusForm} body
|
|
13135
12871
|
* @param {string} roomId The ID of the room of the conversation.
|
|
13136
12872
|
* @param {*} [options] Override http request option.
|
|
13137
12873
|
* @throws {RequiredError}
|
|
13138
12874
|
* @memberof RoomsApi
|
|
13139
12875
|
*/
|
|
13140
|
-
setConversationStatus(body:
|
|
12876
|
+
setConversationStatus(body: ConversationStatusForm, roomId: string, options?: any): Promise<Response>;
|
|
13141
12877
|
/**
|
|
13142
12878
|
*
|
|
13143
12879
|
* @summary Snooze conversation
|
|
@@ -13499,6 +13235,13 @@ export declare const TagGroupsApiFetchParamCreator: (configuration?: Configurati
|
|
|
13499
13235
|
* @throws {RequiredError}
|
|
13500
13236
|
*/
|
|
13501
13237
|
getTagGroup(id: string, options?: any): FetchArgs;
|
|
13238
|
+
/**
|
|
13239
|
+
*
|
|
13240
|
+
* @summary endpoint to retrieve tag groups
|
|
13241
|
+
* @param {*} [options] Override http request option.
|
|
13242
|
+
* @throws {RequiredError}
|
|
13243
|
+
*/
|
|
13244
|
+
getTagGroups(options?: any): FetchArgs;
|
|
13502
13245
|
/**
|
|
13503
13246
|
*
|
|
13504
13247
|
* @summary endpoint to update tag group
|
|
@@ -13546,6 +13289,13 @@ export declare const TagGroupsApiFp: (configuration?: Configuration) => {
|
|
|
13546
13289
|
* @throws {RequiredError}
|
|
13547
13290
|
*/
|
|
13548
13291
|
getTagGroup(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<TagGroupDto>;
|
|
13292
|
+
/**
|
|
13293
|
+
*
|
|
13294
|
+
* @summary endpoint to retrieve tag groups
|
|
13295
|
+
* @param {*} [options] Override http request option.
|
|
13296
|
+
* @throws {RequiredError}
|
|
13297
|
+
*/
|
|
13298
|
+
getTagGroups(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<TagGroupDto>>;
|
|
13549
13299
|
/**
|
|
13550
13300
|
*
|
|
13551
13301
|
* @summary endpoint to update tag group
|
|
@@ -13593,6 +13343,13 @@ export declare const TagGroupsApiFactory: (configuration?: Configuration, fetch?
|
|
|
13593
13343
|
* @throws {RequiredError}
|
|
13594
13344
|
*/
|
|
13595
13345
|
getTagGroup(id: string, options?: any): Promise<TagGroupDto>;
|
|
13346
|
+
/**
|
|
13347
|
+
*
|
|
13348
|
+
* @summary endpoint to retrieve tag groups
|
|
13349
|
+
* @param {*} [options] Override http request option.
|
|
13350
|
+
* @throws {RequiredError}
|
|
13351
|
+
*/
|
|
13352
|
+
getTagGroups(options?: any): Promise<TagGroupDto[]>;
|
|
13596
13353
|
/**
|
|
13597
13354
|
*
|
|
13598
13355
|
* @summary endpoint to update tag group
|
|
@@ -13645,6 +13402,14 @@ export declare class TagGroupsApi extends BaseAPI {
|
|
|
13645
13402
|
* @memberof TagGroupsApi
|
|
13646
13403
|
*/
|
|
13647
13404
|
getTagGroup(id: string, options?: any): Promise<TagGroupDto>;
|
|
13405
|
+
/**
|
|
13406
|
+
*
|
|
13407
|
+
* @summary endpoint to retrieve tag groups
|
|
13408
|
+
* @param {*} [options] Override http request option.
|
|
13409
|
+
* @throws {RequiredError}
|
|
13410
|
+
* @memberof TagGroupsApi
|
|
13411
|
+
*/
|
|
13412
|
+
getTagGroups(options?: any): Promise<TagGroupDto[]>;
|
|
13648
13413
|
/**
|
|
13649
13414
|
*
|
|
13650
13415
|
* @summary endpoint to update tag group
|
|
@@ -13686,6 +13451,13 @@ export declare const TagMappingsApiFetchParamCreator: (configuration?: Configura
|
|
|
13686
13451
|
* @throws {RequiredError}
|
|
13687
13452
|
*/
|
|
13688
13453
|
deleteTagMapping(id: string, options?: any): FetchArgs;
|
|
13454
|
+
/**
|
|
13455
|
+
*
|
|
13456
|
+
* @summary secured endpoint to retrieve data about url-tag mappings
|
|
13457
|
+
* @param {*} [options] Override http request option.
|
|
13458
|
+
* @throws {RequiredError}
|
|
13459
|
+
*/
|
|
13460
|
+
getTagMappings(options?: any): FetchArgs;
|
|
13689
13461
|
/**
|
|
13690
13462
|
*
|
|
13691
13463
|
* @summary authorized endpoint to update tag mapping
|
|
@@ -13717,6 +13489,13 @@ export declare const TagMappingsApiFp: (configuration?: Configuration) => {
|
|
|
13717
13489
|
* @throws {RequiredError}
|
|
13718
13490
|
*/
|
|
13719
13491
|
deleteTagMapping(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
13492
|
+
/**
|
|
13493
|
+
*
|
|
13494
|
+
* @summary secured endpoint to retrieve data about url-tag mappings
|
|
13495
|
+
* @param {*} [options] Override http request option.
|
|
13496
|
+
* @throws {RequiredError}
|
|
13497
|
+
*/
|
|
13498
|
+
getTagMappings(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<TagMappingDto>>;
|
|
13720
13499
|
/**
|
|
13721
13500
|
*
|
|
13722
13501
|
* @summary authorized endpoint to update tag mapping
|
|
@@ -13748,6 +13527,13 @@ export declare const TagMappingsApiFactory: (configuration?: Configuration, fetc
|
|
|
13748
13527
|
* @throws {RequiredError}
|
|
13749
13528
|
*/
|
|
13750
13529
|
deleteTagMapping(id: string, options?: any): Promise<Response>;
|
|
13530
|
+
/**
|
|
13531
|
+
*
|
|
13532
|
+
* @summary secured endpoint to retrieve data about url-tag mappings
|
|
13533
|
+
* @param {*} [options] Override http request option.
|
|
13534
|
+
* @throws {RequiredError}
|
|
13535
|
+
*/
|
|
13536
|
+
getTagMappings(options?: any): Promise<TagMappingDto[]>;
|
|
13751
13537
|
/**
|
|
13752
13538
|
*
|
|
13753
13539
|
* @summary authorized endpoint to update tag mapping
|
|
@@ -13783,6 +13569,14 @@ export declare class TagMappingsApi extends BaseAPI {
|
|
|
13783
13569
|
* @memberof TagMappingsApi
|
|
13784
13570
|
*/
|
|
13785
13571
|
deleteTagMapping(id: string, options?: any): Promise<Response>;
|
|
13572
|
+
/**
|
|
13573
|
+
*
|
|
13574
|
+
* @summary secured endpoint to retrieve data about url-tag mappings
|
|
13575
|
+
* @param {*} [options] Override http request option.
|
|
13576
|
+
* @throws {RequiredError}
|
|
13577
|
+
* @memberof TagMappingsApi
|
|
13578
|
+
*/
|
|
13579
|
+
getTagMappings(options?: any): Promise<TagMappingDto[]>;
|
|
13786
13580
|
/**
|
|
13787
13581
|
*
|
|
13788
13582
|
* @summary authorized endpoint to update tag mapping
|
|
@@ -13815,20 +13609,6 @@ export declare const TagsApiFetchParamCreator: (configuration?: Configuration) =
|
|
|
13815
13609
|
* @throws {RequiredError}
|
|
13816
13610
|
*/
|
|
13817
13611
|
deleteTag(id: string, options?: any): FetchArgs;
|
|
13818
|
-
/**
|
|
13819
|
-
*
|
|
13820
|
-
* @summary endpoint to retrieve tag groups
|
|
13821
|
-
* @param {*} [options] Override http request option.
|
|
13822
|
-
* @throws {RequiredError}
|
|
13823
|
-
*/
|
|
13824
|
-
getTagGroups(options?: any): FetchArgs;
|
|
13825
|
-
/**
|
|
13826
|
-
*
|
|
13827
|
-
* @summary secured endpoint to retrieve data about url-tag mappings
|
|
13828
|
-
* @param {*} [options] Override http request option.
|
|
13829
|
-
* @throws {RequiredError}
|
|
13830
|
-
*/
|
|
13831
|
-
getTagMappings(options?: any): FetchArgs;
|
|
13832
13612
|
/**
|
|
13833
13613
|
*
|
|
13834
13614
|
* @summary secured endpoint to retrieve tags
|
|
@@ -13867,20 +13647,6 @@ export declare const TagsApiFp: (configuration?: Configuration) => {
|
|
|
13867
13647
|
* @throws {RequiredError}
|
|
13868
13648
|
*/
|
|
13869
13649
|
deleteTag(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
13870
|
-
/**
|
|
13871
|
-
*
|
|
13872
|
-
* @summary endpoint to retrieve tag groups
|
|
13873
|
-
* @param {*} [options] Override http request option.
|
|
13874
|
-
* @throws {RequiredError}
|
|
13875
|
-
*/
|
|
13876
|
-
getTagGroups(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<TagGroupDto>>;
|
|
13877
|
-
/**
|
|
13878
|
-
*
|
|
13879
|
-
* @summary secured endpoint to retrieve data about url-tag mappings
|
|
13880
|
-
* @param {*} [options] Override http request option.
|
|
13881
|
-
* @throws {RequiredError}
|
|
13882
|
-
*/
|
|
13883
|
-
getTagMappings(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<TagMappingDto>>;
|
|
13884
13650
|
/**
|
|
13885
13651
|
*
|
|
13886
13652
|
* @summary secured endpoint to retrieve tags
|
|
@@ -13919,20 +13685,6 @@ export declare const TagsApiFactory: (configuration?: Configuration, fetch?: Fet
|
|
|
13919
13685
|
* @throws {RequiredError}
|
|
13920
13686
|
*/
|
|
13921
13687
|
deleteTag(id: string, options?: any): Promise<Response>;
|
|
13922
|
-
/**
|
|
13923
|
-
*
|
|
13924
|
-
* @summary endpoint to retrieve tag groups
|
|
13925
|
-
* @param {*} [options] Override http request option.
|
|
13926
|
-
* @throws {RequiredError}
|
|
13927
|
-
*/
|
|
13928
|
-
getTagGroups(options?: any): Promise<TagGroupDto[]>;
|
|
13929
|
-
/**
|
|
13930
|
-
*
|
|
13931
|
-
* @summary secured endpoint to retrieve data about url-tag mappings
|
|
13932
|
-
* @param {*} [options] Override http request option.
|
|
13933
|
-
* @throws {RequiredError}
|
|
13934
|
-
*/
|
|
13935
|
-
getTagMappings(options?: any): Promise<TagMappingDto[]>;
|
|
13936
13688
|
/**
|
|
13937
13689
|
*
|
|
13938
13690
|
* @summary secured endpoint to retrieve tags
|
|
@@ -13975,22 +13727,6 @@ export declare class TagsApi extends BaseAPI {
|
|
|
13975
13727
|
* @memberof TagsApi
|
|
13976
13728
|
*/
|
|
13977
13729
|
deleteTag(id: string, options?: any): Promise<Response>;
|
|
13978
|
-
/**
|
|
13979
|
-
*
|
|
13980
|
-
* @summary endpoint to retrieve tag groups
|
|
13981
|
-
* @param {*} [options] Override http request option.
|
|
13982
|
-
* @throws {RequiredError}
|
|
13983
|
-
* @memberof TagsApi
|
|
13984
|
-
*/
|
|
13985
|
-
getTagGroups(options?: any): Promise<TagGroupDto[]>;
|
|
13986
|
-
/**
|
|
13987
|
-
*
|
|
13988
|
-
* @summary secured endpoint to retrieve data about url-tag mappings
|
|
13989
|
-
* @param {*} [options] Override http request option.
|
|
13990
|
-
* @throws {RequiredError}
|
|
13991
|
-
* @memberof TagsApi
|
|
13992
|
-
*/
|
|
13993
|
-
getTagMappings(options?: any): Promise<TagMappingDto[]>;
|
|
13994
13730
|
/**
|
|
13995
13731
|
*
|
|
13996
13732
|
* @summary secured endpoint to retrieve tags
|
|
@@ -14450,14 +14186,6 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
|
|
|
14450
14186
|
* @throws {RequiredError}
|
|
14451
14187
|
*/
|
|
14452
14188
|
getGuestProfileByApiKey(orgId: string, options?: any): FetchArgs;
|
|
14453
|
-
/**
|
|
14454
|
-
*
|
|
14455
|
-
* @summary Search for a room by lead query.
|
|
14456
|
-
* @param {string} query
|
|
14457
|
-
* @param {*} [options] Override http request option.
|
|
14458
|
-
* @throws {RequiredError}
|
|
14459
|
-
*/
|
|
14460
|
-
getInboxEntriesByQuery(query: string, options?: any): FetchArgs;
|
|
14461
14189
|
/**
|
|
14462
14190
|
*
|
|
14463
14191
|
* @summary Get limited adviser profile.
|
|
@@ -14886,14 +14614,6 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
14886
14614
|
* @throws {RequiredError}
|
|
14887
14615
|
*/
|
|
14888
14616
|
getGuestProfileByApiKey(orgId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<LeadCtx>;
|
|
14889
|
-
/**
|
|
14890
|
-
*
|
|
14891
|
-
* @summary Search for a room by lead query.
|
|
14892
|
-
* @param {string} query
|
|
14893
|
-
* @param {*} [options] Override http request option.
|
|
14894
|
-
* @throws {RequiredError}
|
|
14895
|
-
*/
|
|
14896
|
-
getInboxEntriesByQuery(query: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<InboxEntry>>;
|
|
14897
14617
|
/**
|
|
14898
14618
|
*
|
|
14899
14619
|
* @summary Get limited adviser profile.
|
|
@@ -15322,14 +15042,6 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
15322
15042
|
* @throws {RequiredError}
|
|
15323
15043
|
*/
|
|
15324
15044
|
getGuestProfileByApiKey(orgId: string, options?: any): Promise<LeadCtx>;
|
|
15325
|
-
/**
|
|
15326
|
-
*
|
|
15327
|
-
* @summary Search for a room by lead query.
|
|
15328
|
-
* @param {string} query
|
|
15329
|
-
* @param {*} [options] Override http request option.
|
|
15330
|
-
* @throws {RequiredError}
|
|
15331
|
-
*/
|
|
15332
|
-
getInboxEntriesByQuery(query: string, options?: any): Promise<InboxEntry[]>;
|
|
15333
15045
|
/**
|
|
15334
15046
|
*
|
|
15335
15047
|
* @summary Get limited adviser profile.
|
|
@@ -15781,15 +15493,6 @@ export declare class UsersApi extends BaseAPI {
|
|
|
15781
15493
|
* @memberof UsersApi
|
|
15782
15494
|
*/
|
|
15783
15495
|
getGuestProfileByApiKey(orgId: string, options?: any): Promise<LeadCtx>;
|
|
15784
|
-
/**
|
|
15785
|
-
*
|
|
15786
|
-
* @summary Search for a room by lead query.
|
|
15787
|
-
* @param {string} query
|
|
15788
|
-
* @param {*} [options] Override http request option.
|
|
15789
|
-
* @throws {RequiredError}
|
|
15790
|
-
* @memberof UsersApi
|
|
15791
|
-
*/
|
|
15792
|
-
getInboxEntriesByQuery(query: string, options?: any): Promise<InboxEntry[]>;
|
|
15793
15496
|
/**
|
|
15794
15497
|
*
|
|
15795
15498
|
* @summary Get limited adviser profile.
|