@closerplatform/spinner-openapi 0.11.350 → 0.12.1

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.
Files changed (3) hide show
  1. package/dist/api.d.ts +435 -758
  2. package/dist/api.js +754 -1105
  3. 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
@@ -332,10 +318,10 @@ export interface AgentCtx {
332
318
  pendingEmail?: string;
333
319
  /**
334
320
  *
335
- * @type {string}
321
+ * @type {AppPresence}
336
322
  * @memberof AgentCtx
337
323
  */
338
- presence: string;
324
+ presence: AppPresence;
339
325
  /**
340
326
  *
341
327
  * @type {string}
@@ -344,10 +330,10 @@ export interface AgentCtx {
344
330
  unavailabilityReason?: string;
345
331
  /**
346
332
  *
347
- * @type {string}
333
+ * @type {UserRole}
348
334
  * @memberof AgentCtx
349
335
  */
350
- role: AgentCtx.RoleEnum;
336
+ role: UserRole;
351
337
  /**
352
338
  *
353
339
  * @type {Array<string>}
@@ -397,20 +383,6 @@ export interface AgentCtx {
397
383
  */
398
384
  tags: Array<string>;
399
385
  }
400
- /**
401
- * @export
402
- * @namespace AgentCtx
403
- */
404
- export declare namespace AgentCtx {
405
- /**
406
- * @export
407
- * @enum {string}
408
- */
409
- enum RoleEnum {
410
- ADMIN = "ADMIN",
411
- AGENT = "AGENT"
412
- }
413
- }
414
386
  /**
415
387
  *
416
388
  * @export
@@ -537,24 +509,10 @@ export interface AgentPreferences {
537
509
  notifications: AgentPreferencesNotifications;
538
510
  /**
539
511
  *
540
- * @type {string}
512
+ * @type {InboxSorting}
541
513
  * @memberof AgentPreferences
542
514
  */
543
- inboxSorting?: AgentPreferences.InboxSortingEnum;
544
- }
545
- /**
546
- * @export
547
- * @namespace AgentPreferences
548
- */
549
- export declare namespace AgentPreferences {
550
- /**
551
- * @export
552
- * @enum {string}
553
- */
554
- enum InboxSortingEnum {
555
- Newest = "newest",
556
- Oldest = "oldest"
557
- }
515
+ inboxSorting?: InboxSorting;
558
516
  }
559
517
  /**
560
518
  *
@@ -589,10 +547,10 @@ export interface AgentPreferencesNotifications {
589
547
  export interface AgentPresence {
590
548
  /**
591
549
  *
592
- * @type {string}
550
+ * @type {AppPresence}
593
551
  * @memberof AgentPresence
594
552
  */
595
- presence: AgentPresence.PresenceEnum;
553
+ presence: AppPresence;
596
554
  /**
597
555
  *
598
556
  * @type {string}
@@ -600,22 +558,6 @@ export interface AgentPresence {
600
558
  */
601
559
  reason?: string;
602
560
  }
603
- /**
604
- * @export
605
- * @namespace AgentPresence
606
- */
607
- export declare namespace AgentPresence {
608
- /**
609
- * @export
610
- * @enum {string}
611
- */
612
- enum PresenceEnum {
613
- Available = "available",
614
- Away = "away",
615
- Unavailable = "unavailable",
616
- Unready = "unready"
617
- }
618
- }
619
561
  /**
620
562
  *
621
563
  * @export
@@ -660,10 +602,10 @@ export interface AgentProfile {
660
602
  email: string;
661
603
  /**
662
604
  *
663
- * @type {string}
605
+ * @type {AppPresence}
664
606
  * @memberof AgentProfile
665
607
  */
666
- presence: string;
608
+ presence: AppPresence;
667
609
  /**
668
610
  *
669
611
  * @type {boolean}
@@ -829,6 +771,17 @@ export declare enum AppPermission {
829
771
  MeetingsPageVisibility = "meetings_page_visibility",
830
772
  HelpPageVisibility = "help_page_visibility"
831
773
  }
774
+ /**
775
+ *
776
+ * @export
777
+ * @enum {string}
778
+ */
779
+ export declare enum AppPresence {
780
+ Available = "available",
781
+ Away = "away",
782
+ Unavailable = "unavailable",
783
+ Unready = "unready"
784
+ }
832
785
  /**
833
786
  *
834
787
  * @export
@@ -1478,38 +1431,33 @@ export interface ContactEnquiryConfigContextGdpr {
1478
1431
  /**
1479
1432
  *
1480
1433
  * @export
1481
- * @interface ConversationStatus
1434
+ * @enum {string}
1435
+ */
1436
+ export declare enum ConversationStatus {
1437
+ Waiting = "waiting",
1438
+ InProgress = "inProgress",
1439
+ Solved = "solved",
1440
+ Unsolved = "unsolved"
1441
+ }
1442
+ /**
1443
+ *
1444
+ * @export
1445
+ * @interface ConversationStatusForm
1482
1446
  */
1483
- export interface ConversationStatus {
1447
+ export interface ConversationStatusForm {
1484
1448
  /**
1485
1449
  *
1486
- * @type {string}
1487
- * @memberof ConversationStatus
1450
+ * @type {ConversationStatus}
1451
+ * @memberof ConversationStatusForm
1488
1452
  */
1489
- status: ConversationStatus.StatusEnum;
1453
+ status: ConversationStatus;
1490
1454
  /**
1491
1455
  *
1492
1456
  * @type {string}
1493
- * @memberof ConversationStatus
1457
+ * @memberof ConversationStatusForm
1494
1458
  */
1495
1459
  agentId?: string;
1496
1460
  }
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
1461
  /**
1514
1462
  *
1515
1463
  * @export
@@ -1563,10 +1511,10 @@ export interface CreateCall {
1563
1511
  export interface CreateEventActionConfigForm {
1564
1512
  /**
1565
1513
  *
1566
- * @type {string}
1514
+ * @type {EventActionEvent}
1567
1515
  * @memberof CreateEventActionConfigForm
1568
1516
  */
1569
- event: CreateEventActionConfigForm.EventEnum;
1517
+ event: EventActionEvent;
1570
1518
  /**
1571
1519
  *
1572
1520
  * @type {boolean}
@@ -1604,25 +1552,6 @@ export interface CreateEventActionConfigForm {
1604
1552
  */
1605
1553
  widgetBlockInput?: boolean;
1606
1554
  }
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
1555
  /**
1627
1556
  *
1628
1557
  * @export
@@ -1731,10 +1660,10 @@ export interface CreateTagMappingForm {
1731
1660
  urlPattern: string;
1732
1661
  /**
1733
1662
  *
1734
- * @type {string}
1663
+ * @type {MatchingStrategy}
1735
1664
  * @memberof CreateTagMappingForm
1736
1665
  */
1737
- matchingStrategy: CreateTagMappingForm.MatchingStrategyEnum;
1666
+ matchingStrategy: MatchingStrategy;
1738
1667
  /**
1739
1668
  *
1740
1669
  * @type {string}
@@ -1742,22 +1671,6 @@ export interface CreateTagMappingForm {
1742
1671
  */
1743
1672
  tagId: string;
1744
1673
  }
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
1674
  /**
1762
1675
  *
1763
1676
  * @export
@@ -2223,10 +2136,10 @@ export interface EventActionConfig {
2223
2136
  orgId: string;
2224
2137
  /**
2225
2138
  *
2226
- * @type {string}
2139
+ * @type {EventActionEvent}
2227
2140
  * @memberof EventActionConfig
2228
2141
  */
2229
- event: EventActionConfig.EventEnum;
2142
+ event: EventActionEvent;
2230
2143
  /**
2231
2144
  *
2232
2145
  * @type {boolean}
@@ -2265,23 +2178,18 @@ export interface EventActionConfig {
2265
2178
  widgetBlockInput?: boolean;
2266
2179
  }
2267
2180
  /**
2181
+ *
2268
2182
  * @export
2269
- * @namespace EventActionConfig
2183
+ * @enum {string}
2270
2184
  */
2271
- export declare namespace EventActionConfig {
2272
- /**
2273
- * @export
2274
- * @enum {string}
2275
- */
2276
- enum EventEnum {
2277
- ThreadOpenedOutsideWorkingHours = "thread_opened_outside_working_hours",
2278
- ClosedSolvedThreadAction = "closed_solved_thread_action",
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
- }
2185
+ export declare enum EventActionEvent {
2186
+ ThreadOpenedOutsideWorkingHours = "thread_opened_outside_working_hours",
2187
+ ClosedSolvedThreadAction = "closed_solved_thread_action",
2188
+ ClosedUnsolvedThreadAction = "closed_unsolved_thread_action",
2189
+ ThreadOpened = "thread_opened",
2190
+ AssignedConversationAction = "assigned_conversation_action",
2191
+ ThreadOpenedAgentsUnavailable = "thread_opened_agents_unavailable",
2192
+ WidgetOpenedNoOpenThread = "widget_opened_no_open_thread"
2285
2193
  }
2286
2194
  /**
2287
2195
  *
@@ -2678,10 +2586,10 @@ export interface InboxEntry {
2678
2586
  profile: InboxEntryProfile;
2679
2587
  /**
2680
2588
  *
2681
- * @type {string}
2589
+ * @type {ConversationStatus}
2682
2590
  * @memberof InboxEntry
2683
2591
  */
2684
- status: InboxEntry.StatusEnum;
2592
+ status: ConversationStatus;
2685
2593
  /**
2686
2594
  *
2687
2595
  * @type {Array<string>}
@@ -2696,10 +2604,10 @@ export interface InboxEntry {
2696
2604
  assignee?: string;
2697
2605
  /**
2698
2606
  *
2699
- * @type {string}
2607
+ * @type {InboxEntryType}
2700
2608
  * @memberof InboxEntry
2701
2609
  */
2702
- type: InboxEntry.TypeEnum;
2610
+ type: InboxEntryType;
2703
2611
  /**
2704
2612
  *
2705
2613
  * @type {string}
@@ -2762,10 +2670,10 @@ export interface InboxEntry {
2762
2670
  unreadCount: number;
2763
2671
  /**
2764
2672
  *
2765
- * @type {string}
2673
+ * @type {Presence}
2766
2674
  * @memberof InboxEntry
2767
2675
  */
2768
- ownerPresence: InboxEntry.OwnerPresenceEnum;
2676
+ ownerPresence: Presence;
2769
2677
  /**
2770
2678
  *
2771
2679
  * @type {Array<string>}
@@ -2786,10 +2694,10 @@ export interface InboxEntry {
2786
2694
  threadsClosedTimestamps: Array<number>;
2787
2695
  /**
2788
2696
  *
2789
- * @type {string}
2697
+ * @type {SnoozedStatus}
2790
2698
  * @memberof InboxEntry
2791
2699
  */
2792
- snoozedStatus?: InboxEntry.SnoozedStatusEnum;
2700
+ snoozedStatus?: SnoozedStatus;
2793
2701
  /**
2794
2702
  *
2795
2703
  * @type {string}
@@ -2797,53 +2705,6 @@ export interface InboxEntry {
2797
2705
  */
2798
2706
  tagGroupId?: string;
2799
2707
  }
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
2708
  /**
2848
2709
  *
2849
2710
  * @export
@@ -2887,6 +2748,31 @@ export interface InboxEntryProfile {
2887
2748
  */
2888
2749
  searchableField?: string;
2889
2750
  }
2751
+ /**
2752
+ *
2753
+ * @export
2754
+ * @enum {string}
2755
+ */
2756
+ export declare enum InboxEntryType {
2757
+ MESSAGE = "MESSAGE",
2758
+ NOTE = "NOTE",
2759
+ FILES = "FILES",
2760
+ MEETINGSCHEDULED = "MEETING_SCHEDULED",
2761
+ MEETINGRESCHEDULED = "MEETING_RESCHEDULED",
2762
+ MEETINGCANCELLED = "MEETING_CANCELLED",
2763
+ CALLSTARTED = "CALL_STARTED",
2764
+ CALLENDED = "CALL_ENDED",
2765
+ FORM = "FORM"
2766
+ }
2767
+ /**
2768
+ *
2769
+ * @export
2770
+ * @enum {string}
2771
+ */
2772
+ export declare enum InboxSorting {
2773
+ Newest = "newest",
2774
+ Oldest = "oldest"
2775
+ }
2890
2776
  /**
2891
2777
  *
2892
2778
  * @export
@@ -3455,10 +3341,10 @@ export interface LimitedAgentProfile {
3455
3341
  avatarUrl?: string;
3456
3342
  /**
3457
3343
  *
3458
- * @type {string}
3344
+ * @type {AppPresence}
3459
3345
  * @memberof LimitedAgentProfile
3460
3346
  */
3461
- presence: string;
3347
+ presence: AppPresence;
3462
3348
  /**
3463
3349
  *
3464
3350
  * @type {boolean}
@@ -3610,6 +3496,17 @@ export interface MagicLinkForm {
3610
3496
  */
3611
3497
  email: string;
3612
3498
  }
3499
+ /**
3500
+ *
3501
+ * @export
3502
+ * @enum {string}
3503
+ */
3504
+ export declare enum MatchingStrategy {
3505
+ WholeDomain = "whole_domain",
3506
+ PathRecursively = "path_recursively",
3507
+ ExactUrl = "exact_url",
3508
+ PathArgs = "path_args"
3509
+ }
3613
3510
  /**
3614
3511
  *
3615
3512
  * @export
@@ -3836,6 +3733,16 @@ export interface MessageWidgetsList {
3836
3733
  */
3837
3734
  textInputs?: Array<TextInput>;
3838
3735
  }
3736
+ /**
3737
+ *
3738
+ * @export
3739
+ * @enum {string}
3740
+ */
3741
+ export declare enum ModelTrainingStatus {
3742
+ TrainingInProgress = "TrainingInProgress",
3743
+ TrainingDone = "TrainingDone",
3744
+ TrainingNeverDone = "TrainingNeverDone"
3745
+ }
3839
3746
  /**
3840
3747
  *
3841
3748
  * @export
@@ -4928,56 +4835,10 @@ export interface PasswordResetForm {
4928
4835
  export interface PermissionForm {
4929
4836
  /**
4930
4837
  *
4931
- * @type {Array<string>}
4838
+ * @type {Array<AppPermission>}
4932
4839
  * @memberof PermissionForm
4933
4840
  */
4934
- permissions: Array<PermissionForm.PermissionsEnum>;
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
- }
4841
+ permissions: Array<AppPermission>;
4981
4842
  }
4982
4843
  /**
4983
4844
  *
@@ -5120,24 +4981,10 @@ export interface PreferencesForm {
5120
4981
  notifications?: PreferencesFormNotifications;
5121
4982
  /**
5122
4983
  *
5123
- * @type {string}
4984
+ * @type {InboxSorting}
5124
4985
  * @memberof PreferencesForm
5125
4986
  */
5126
- inboxSorting?: PreferencesForm.InboxSortingEnum;
5127
- }
5128
- /**
5129
- * @export
5130
- * @namespace PreferencesForm
5131
- */
5132
- export declare namespace PreferencesForm {
5133
- /**
5134
- * @export
5135
- * @enum {string}
5136
- */
5137
- enum InboxSortingEnum {
5138
- Newest = "newest",
5139
- Oldest = "oldest"
5140
- }
4987
+ inboxSorting?: InboxSorting;
5141
4988
  }
5142
4989
  /**
5143
4990
  *
@@ -5164,6 +5011,15 @@ export interface PreferencesFormNotifications {
5164
5011
  */
5165
5012
  upcomingMeeting?: boolean;
5166
5013
  }
5014
+ /**
5015
+ *
5016
+ * @export
5017
+ * @enum {string}
5018
+ */
5019
+ export declare enum Presence {
5020
+ Available = "available",
5021
+ Unavailable = "unavailable"
5022
+ }
5167
5023
  /**
5168
5024
  *
5169
5025
  * @export
@@ -5479,56 +5335,10 @@ export interface Role {
5479
5335
  isDefaultAdminRole: boolean;
5480
5336
  /**
5481
5337
  *
5482
- * @type {Array<string>}
5338
+ * @type {Array<AppPermission>}
5483
5339
  * @memberof Role
5484
5340
  */
5485
- permissions?: Array<Role.PermissionsEnum>;
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
- }
5341
+ permissions?: Array<AppPermission>;
5532
5342
  }
5533
5343
  /**
5534
5344
  *
@@ -5670,6 +5480,15 @@ export interface SkillsForm {
5670
5480
  */
5671
5481
  skills: Array<string>;
5672
5482
  }
5483
+ /**
5484
+ *
5485
+ * @export
5486
+ * @enum {string}
5487
+ */
5488
+ export declare enum SnoozedStatus {
5489
+ Snoozed = "snoozed",
5490
+ Unsnoozed = "unsnoozed"
5491
+ }
5673
5492
  /**
5674
5493
  *
5675
5494
  * @export
@@ -5930,10 +5749,10 @@ export interface TagMappingDto {
5930
5749
  urlPattern: string;
5931
5750
  /**
5932
5751
  *
5933
- * @type {string}
5752
+ * @type {MatchingStrategy}
5934
5753
  * @memberof TagMappingDto
5935
5754
  */
5936
- matchingStrategy: TagMappingDto.MatchingStrategyEnum;
5755
+ matchingStrategy: MatchingStrategy;
5937
5756
  /**
5938
5757
  *
5939
5758
  * @type {boolean}
@@ -5947,22 +5766,6 @@ export interface TagMappingDto {
5947
5766
  */
5948
5767
  tag: TagDto;
5949
5768
  }
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
5769
  /**
5967
5770
  *
5968
5771
  * @export
@@ -6102,25 +5905,10 @@ export interface TrainingInfo {
6102
5905
  stamp: string;
6103
5906
  /**
6104
5907
  *
6105
- * @type {string}
5908
+ * @type {ModelTrainingStatus}
6106
5909
  * @memberof TrainingInfo
6107
5910
  */
6108
- status: TrainingInfo.StatusEnum;
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
- }
5911
+ status: ModelTrainingStatus;
6124
5912
  }
6125
5913
  /**
6126
5914
  *
@@ -6280,10 +6068,10 @@ export interface UpdateAgentGroupConfigurationForm {
6280
6068
  export interface UpdateEventActionConfigForm {
6281
6069
  /**
6282
6070
  *
6283
- * @type {string}
6071
+ * @type {EventActionEvent}
6284
6072
  * @memberof UpdateEventActionConfigForm
6285
6073
  */
6286
- event: UpdateEventActionConfigForm.EventEnum;
6074
+ event: EventActionEvent;
6287
6075
  /**
6288
6076
  *
6289
6077
  * @type {boolean}
@@ -6315,25 +6103,6 @@ export interface UpdateEventActionConfigForm {
6315
6103
  */
6316
6104
  widgetBlockInput?: boolean;
6317
6105
  }
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
6106
  /**
6338
6107
  *
6339
6108
  * @export
@@ -6385,56 +6154,10 @@ export interface UpdateRoleForm {
6385
6154
  name: string;
6386
6155
  /**
6387
6156
  *
6388
- * @type {Array<string>}
6157
+ * @type {Array<AppPermission>}
6389
6158
  * @memberof UpdateRoleForm
6390
6159
  */
6391
- permissions?: Array<UpdateRoleForm.PermissionsEnum>;
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
- }
6160
+ permissions?: Array<AppPermission>;
6438
6161
  }
6439
6162
  /**
6440
6163
  *
@@ -6536,10 +6259,10 @@ export interface UpdateTagMappingForm {
6536
6259
  urlPattern: string;
6537
6260
  /**
6538
6261
  *
6539
- * @type {string}
6262
+ * @type {MatchingStrategy}
6540
6263
  * @memberof UpdateTagMappingForm
6541
6264
  */
6542
- matchingStrategy: UpdateTagMappingForm.MatchingStrategyEnum;
6265
+ matchingStrategy: MatchingStrategy;
6543
6266
  /**
6544
6267
  *
6545
6268
  * @type {string}
@@ -6553,22 +6276,6 @@ export interface UpdateTagMappingForm {
6553
6276
  */
6554
6277
  enabled: boolean;
6555
6278
  }
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
6279
  /**
6573
6280
  *
6574
6281
  * @export
@@ -6620,10 +6327,10 @@ export interface UrlTagMappingDto {
6620
6327
  urlPattern: string;
6621
6328
  /**
6622
6329
  *
6623
- * @type {string}
6330
+ * @type {MatchingStrategy}
6624
6331
  * @memberof UrlTagMappingDto
6625
6332
  */
6626
- matchingStrategy: UrlTagMappingDto.MatchingStrategyEnum;
6333
+ matchingStrategy: MatchingStrategy;
6627
6334
  /**
6628
6335
  *
6629
6336
  * @type {string}
@@ -6632,20 +6339,16 @@ export interface UrlTagMappingDto {
6632
6339
  tag: string;
6633
6340
  }
6634
6341
  /**
6342
+ *
6635
6343
  * @export
6636
- * @namespace UrlTagMappingDto
6344
+ * @enum {string}
6637
6345
  */
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
- }
6346
+ export declare enum UserRole {
6347
+ AGENT = "AGENT",
6348
+ LEKTA = "LEKTA",
6349
+ CUSTOMER = "CUSTOMER",
6350
+ ORGANIZATION = "ORGANIZATION",
6351
+ MASTER = "MASTER"
6649
6352
  }
6650
6353
  /**
6651
6354
  *
@@ -9522,98 +9225,6 @@ export declare class InviteesApi extends BaseAPI {
9522
9225
  */
9523
9226
  revokeInvitation(body: RevokeInvitationForm, options?: any): Promise<Response>;
9524
9227
  }
9525
- /**
9526
- * MeetingBotApi - fetch parameter creator
9527
- * @export
9528
- */
9529
- export declare const MeetingBotApiFetchParamCreator: (configuration?: Configuration) => {
9530
- /**
9531
- *
9532
- * @summary Recall meeting bot rom room
9533
- * @param {string} roomId
9534
- * @param {*} [options] Override http request option.
9535
- * @throws {RequiredError}
9536
- */
9537
- recallMeetingLure(roomId: string, options?: any): FetchArgs;
9538
- /**
9539
- *
9540
- * @summary Send meeting bot to room
9541
- * @param {string} roomId
9542
- * @param {*} [options] Override http request option.
9543
- * @throws {RequiredError}
9544
- */
9545
- sendMeetingLure(roomId: string, options?: any): FetchArgs;
9546
- };
9547
- /**
9548
- * MeetingBotApi - functional programming interface
9549
- * @export
9550
- */
9551
- export declare const MeetingBotApiFp: (configuration?: Configuration) => {
9552
- /**
9553
- *
9554
- * @summary Recall meeting bot rom room
9555
- * @param {string} roomId
9556
- * @param {*} [options] Override http request option.
9557
- * @throws {RequiredError}
9558
- */
9559
- recallMeetingLure(roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
9560
- /**
9561
- *
9562
- * @summary Send meeting bot to room
9563
- * @param {string} roomId
9564
- * @param {*} [options] Override http request option.
9565
- * @throws {RequiredError}
9566
- */
9567
- sendMeetingLure(roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
9568
- };
9569
- /**
9570
- * MeetingBotApi - factory interface
9571
- * @export
9572
- */
9573
- export declare const MeetingBotApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
9574
- /**
9575
- *
9576
- * @summary Recall meeting bot rom room
9577
- * @param {string} roomId
9578
- * @param {*} [options] Override http request option.
9579
- * @throws {RequiredError}
9580
- */
9581
- recallMeetingLure(roomId: string, options?: any): Promise<Response>;
9582
- /**
9583
- *
9584
- * @summary Send meeting bot to room
9585
- * @param {string} roomId
9586
- * @param {*} [options] Override http request option.
9587
- * @throws {RequiredError}
9588
- */
9589
- sendMeetingLure(roomId: string, options?: any): Promise<Response>;
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>;
9607
- /**
9608
- *
9609
- * @summary Send meeting bot to room
9610
- * @param {string} roomId
9611
- * @param {*} [options] Override http request option.
9612
- * @throws {RequiredError}
9613
- * @memberof MeetingBotApi
9614
- */
9615
- sendMeetingLure(roomId: string, options?: any): Promise<Response>;
9616
- }
9617
9228
  /**
9618
9229
  * MeetingsApi - fetch parameter creator
9619
9230
  * @export
@@ -9677,6 +9288,14 @@ export declare const MeetingsApiFetchParamCreator: (configuration?: Configuratio
9677
9288
  * @throws {RequiredError}
9678
9289
  */
9679
9290
  getRoomMeetings(roomId: string, options?: any): FetchArgs;
9291
+ /**
9292
+ *
9293
+ * @summary Recall meeting bot rom room
9294
+ * @param {string} roomId
9295
+ * @param {*} [options] Override http request option.
9296
+ * @throws {RequiredError}
9297
+ */
9298
+ recallMeetingLure(roomId: string, options?: any): FetchArgs;
9680
9299
  /**
9681
9300
  *
9682
9301
  * @summary Reschedule a meeting
@@ -9709,6 +9328,14 @@ export declare const MeetingsApiFetchParamCreator: (configuration?: Configuratio
9709
9328
  * @throws {RequiredError}
9710
9329
  */
9711
9330
  scheduleMeetingExternal(body: ScheduleMeetingExternal, options?: any): FetchArgs;
9331
+ /**
9332
+ *
9333
+ * @summary Send meeting bot to room
9334
+ * @param {string} roomId
9335
+ * @param {*} [options] Override http request option.
9336
+ * @throws {RequiredError}
9337
+ */
9338
+ sendMeetingLure(roomId: string, options?: any): FetchArgs;
9712
9339
  };
9713
9340
  /**
9714
9341
  * MeetingsApi - functional programming interface
@@ -9773,6 +9400,14 @@ export declare const MeetingsApiFp: (configuration?: Configuration) => {
9773
9400
  * @throws {RequiredError}
9774
9401
  */
9775
9402
  getRoomMeetings(roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<Meeting>>;
9403
+ /**
9404
+ *
9405
+ * @summary Recall meeting bot rom room
9406
+ * @param {string} roomId
9407
+ * @param {*} [options] Override http request option.
9408
+ * @throws {RequiredError}
9409
+ */
9410
+ recallMeetingLure(roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
9776
9411
  /**
9777
9412
  *
9778
9413
  * @summary Reschedule a meeting
@@ -9805,6 +9440,14 @@ export declare const MeetingsApiFp: (configuration?: Configuration) => {
9805
9440
  * @throws {RequiredError}
9806
9441
  */
9807
9442
  scheduleMeetingExternal(body: ScheduleMeetingExternal, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Meeting>;
9443
+ /**
9444
+ *
9445
+ * @summary Send meeting bot to room
9446
+ * @param {string} roomId
9447
+ * @param {*} [options] Override http request option.
9448
+ * @throws {RequiredError}
9449
+ */
9450
+ sendMeetingLure(roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
9808
9451
  };
9809
9452
  /**
9810
9453
  * MeetingsApi - factory interface
@@ -9869,6 +9512,14 @@ export declare const MeetingsApiFactory: (configuration?: Configuration, fetch?:
9869
9512
  * @throws {RequiredError}
9870
9513
  */
9871
9514
  getRoomMeetings(roomId: string, options?: any): Promise<Meeting[]>;
9515
+ /**
9516
+ *
9517
+ * @summary Recall meeting bot rom room
9518
+ * @param {string} roomId
9519
+ * @param {*} [options] Override http request option.
9520
+ * @throws {RequiredError}
9521
+ */
9522
+ recallMeetingLure(roomId: string, options?: any): Promise<Response>;
9872
9523
  /**
9873
9524
  *
9874
9525
  * @summary Reschedule a meeting
@@ -9901,6 +9552,14 @@ export declare const MeetingsApiFactory: (configuration?: Configuration, fetch?:
9901
9552
  * @throws {RequiredError}
9902
9553
  */
9903
9554
  scheduleMeetingExternal(body: ScheduleMeetingExternal, options?: any): Promise<Meeting>;
9555
+ /**
9556
+ *
9557
+ * @summary Send meeting bot to room
9558
+ * @param {string} roomId
9559
+ * @param {*} [options] Override http request option.
9560
+ * @throws {RequiredError}
9561
+ */
9562
+ sendMeetingLure(roomId: string, options?: any): Promise<Response>;
9904
9563
  };
9905
9564
  /**
9906
9565
  * MeetingsApi - object-oriented interface
@@ -9974,6 +9633,15 @@ export declare class MeetingsApi extends BaseAPI {
9974
9633
  * @memberof MeetingsApi
9975
9634
  */
9976
9635
  getRoomMeetings(roomId: string, options?: any): Promise<Meeting[]>;
9636
+ /**
9637
+ *
9638
+ * @summary Recall meeting bot rom room
9639
+ * @param {string} roomId
9640
+ * @param {*} [options] Override http request option.
9641
+ * @throws {RequiredError}
9642
+ * @memberof MeetingsApi
9643
+ */
9644
+ recallMeetingLure(roomId: string, options?: any): Promise<Response>;
9977
9645
  /**
9978
9646
  *
9979
9647
  * @summary Reschedule a meeting
@@ -10010,6 +9678,15 @@ export declare class MeetingsApi extends BaseAPI {
10010
9678
  * @memberof MeetingsApi
10011
9679
  */
10012
9680
  scheduleMeetingExternal(body: ScheduleMeetingExternal, options?: any): Promise<Meeting>;
9681
+ /**
9682
+ *
9683
+ * @summary Send meeting bot to room
9684
+ * @param {string} roomId
9685
+ * @param {*} [options] Override http request option.
9686
+ * @throws {RequiredError}
9687
+ * @memberof MeetingsApi
9688
+ */
9689
+ sendMeetingLure(roomId: string, options?: any): Promise<Response>;
10013
9690
  }
10014
9691
  /**
10015
9692
  * MessageWidgetsApi - fetch parameter creator
@@ -10694,275 +10371,275 @@ export declare class NLUApi extends BaseAPI {
10694
10371
  updateIntent(body: IntentForm, intentId: string, options?: any): Promise<IntentDto>;
10695
10372
  }
10696
10373
  /**
10697
- * OIDCApi - fetch parameter creator
10374
+ * OAuthApi - fetch parameter creator
10698
10375
  * @export
10699
10376
  */
10700
- export declare const OIDCApiFetchParamCreator: (configuration?: Configuration) => {
10377
+ export declare const OAuthApiFetchParamCreator: (configuration?: Configuration) => {
10701
10378
  /**
10702
10379
  *
10703
- * @summary authorize with code
10704
- * @param {CodeAuthorizationForm} body
10380
+ * @summary Create oauth config
10381
+ * @param {OauthConfigCreateForm} body
10705
10382
  * @param {*} [options] Override http request option.
10706
10383
  * @throws {RequiredError}
10707
10384
  */
10708
- authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): FetchArgs;
10385
+ createOAuthConfig(body: OauthConfigCreateForm, options?: any): FetchArgs;
10709
10386
  /**
10710
10387
  *
10711
- * @summary get nonce
10388
+ * @summary Delete oauth config
10712
10389
  * @param {*} [options] Override http request option.
10713
10390
  * @throws {RequiredError}
10714
10391
  */
10715
- getNonce(options?: any): FetchArgs;
10392
+ deleteOAuthConfig(options?: any): FetchArgs;
10716
10393
  /**
10717
10394
  *
10718
- * @summary unauthorized endpoint for org's oidc configuration
10719
- * @param {string} orgId orgId
10395
+ * @summary Get oauth config
10720
10396
  * @param {*} [options] Override http request option.
10721
10397
  * @throws {RequiredError}
10722
10398
  */
10723
- getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): FetchArgs;
10724
- };
10725
- /**
10726
- * OIDCApi - functional programming interface
10727
- * @export
10728
- */
10729
- export declare const OIDCApiFp: (configuration?: Configuration) => {
10399
+ getOAuthConfig(options?: any): FetchArgs;
10730
10400
  /**
10731
10401
  *
10732
- * @summary authorize with code
10733
- * @param {CodeAuthorizationForm} body
10402
+ * @summary Patch oauth config
10403
+ * @param {OauthConfigPatchForm} body
10734
10404
  * @param {*} [options] Override http request option.
10735
10405
  * @throws {RequiredError}
10736
10406
  */
10737
- authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<AgentCtx>;
10407
+ patchOAuthConfig(body: OauthConfigPatchForm, options?: any): FetchArgs;
10408
+ };
10409
+ /**
10410
+ * OAuthApi - functional programming interface
10411
+ * @export
10412
+ */
10413
+ export declare const OAuthApiFp: (configuration?: Configuration) => {
10738
10414
  /**
10739
10415
  *
10740
- * @summary get nonce
10416
+ * @summary Create oauth config
10417
+ * @param {OauthConfigCreateForm} body
10741
10418
  * @param {*} [options] Override http request option.
10742
10419
  * @throws {RequiredError}
10743
10420
  */
10744
- getNonce(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Nonce>;
10421
+ createOAuthConfig(body: OauthConfigCreateForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
10745
10422
  /**
10746
10423
  *
10747
- * @summary unauthorized endpoint for org's oidc configuration
10748
- * @param {string} orgId orgId
10424
+ * @summary Delete oauth config
10749
10425
  * @param {*} [options] Override http request option.
10750
10426
  * @throws {RequiredError}
10751
10427
  */
10752
- getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OpenIDConnectConfig>;
10753
- };
10754
- /**
10755
- * OIDCApi - factory interface
10756
- * @export
10757
- */
10758
- export declare const OIDCApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
10428
+ deleteOAuthConfig(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
10759
10429
  /**
10760
10430
  *
10761
- * @summary authorize with code
10762
- * @param {CodeAuthorizationForm} body
10431
+ * @summary Get oauth config
10763
10432
  * @param {*} [options] Override http request option.
10764
10433
  * @throws {RequiredError}
10765
10434
  */
10766
- authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): Promise<AgentCtx>;
10435
+ getOAuthConfig(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OauthConfigResponse>;
10767
10436
  /**
10768
10437
  *
10769
- * @summary get nonce
10438
+ * @summary Patch oauth config
10439
+ * @param {OauthConfigPatchForm} body
10770
10440
  * @param {*} [options] Override http request option.
10771
10441
  * @throws {RequiredError}
10772
10442
  */
10773
- getNonce(options?: any): Promise<Nonce>;
10443
+ patchOAuthConfig(body: OauthConfigPatchForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
10444
+ };
10445
+ /**
10446
+ * OAuthApi - factory interface
10447
+ * @export
10448
+ */
10449
+ export declare const OAuthApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
10774
10450
  /**
10775
10451
  *
10776
- * @summary unauthorized endpoint for org's oidc configuration
10777
- * @param {string} orgId orgId
10452
+ * @summary Create oauth config
10453
+ * @param {OauthConfigCreateForm} body
10778
10454
  * @param {*} [options] Override http request option.
10779
10455
  * @throws {RequiredError}
10780
10456
  */
10781
- getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): Promise<OpenIDConnectConfig>;
10782
- };
10783
- /**
10784
- * OIDCApi - object-oriented interface
10785
- * @export
10786
- * @class OIDCApi
10787
- * @extends {BaseAPI}
10788
- */
10789
- export declare class OIDCApi extends BaseAPI {
10457
+ createOAuthConfig(body: OauthConfigCreateForm, options?: any): Promise<Response>;
10790
10458
  /**
10791
10459
  *
10792
- * @summary authorize with code
10793
- * @param {CodeAuthorizationForm} body
10460
+ * @summary Delete oauth config
10794
10461
  * @param {*} [options] Override http request option.
10795
10462
  * @throws {RequiredError}
10796
- * @memberof OIDCApi
10797
10463
  */
10798
- authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): Promise<AgentCtx>;
10464
+ deleteOAuthConfig(options?: any): Promise<Response>;
10799
10465
  /**
10800
10466
  *
10801
- * @summary get nonce
10467
+ * @summary Get oauth config
10802
10468
  * @param {*} [options] Override http request option.
10803
10469
  * @throws {RequiredError}
10804
- * @memberof OIDCApi
10805
10470
  */
10806
- getNonce(options?: any): Promise<Nonce>;
10471
+ getOAuthConfig(options?: any): Promise<OauthConfigResponse>;
10807
10472
  /**
10808
10473
  *
10809
- * @summary unauthorized endpoint for org's oidc configuration
10810
- * @param {string} orgId orgId
10474
+ * @summary Patch oauth config
10475
+ * @param {OauthConfigPatchForm} body
10811
10476
  * @param {*} [options] Override http request option.
10812
10477
  * @throws {RequiredError}
10813
- * @memberof OIDCApi
10814
10478
  */
10815
- getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): Promise<OpenIDConnectConfig>;
10816
- }
10479
+ patchOAuthConfig(body: OauthConfigPatchForm, options?: any): Promise<Response>;
10480
+ };
10817
10481
  /**
10818
- * OauthApi - fetch parameter creator
10482
+ * OAuthApi - object-oriented interface
10819
10483
  * @export
10484
+ * @class OAuthApi
10485
+ * @extends {BaseAPI}
10820
10486
  */
10821
- export declare const OauthApiFetchParamCreator: (configuration?: Configuration) => {
10487
+ export declare class OAuthApi extends BaseAPI {
10822
10488
  /**
10823
10489
  *
10824
10490
  * @summary Create oauth config
10825
10491
  * @param {OauthConfigCreateForm} body
10826
10492
  * @param {*} [options] Override http request option.
10827
10493
  * @throws {RequiredError}
10494
+ * @memberof OAuthApi
10828
10495
  */
10829
- createOAuthConfig(body: OauthConfigCreateForm, options?: any): FetchArgs;
10496
+ createOAuthConfig(body: OauthConfigCreateForm, options?: any): Promise<Response>;
10830
10497
  /**
10831
10498
  *
10832
10499
  * @summary Delete oauth config
10833
10500
  * @param {*} [options] Override http request option.
10834
10501
  * @throws {RequiredError}
10502
+ * @memberof OAuthApi
10835
10503
  */
10836
- deleteOAuthConfig(options?: any): FetchArgs;
10504
+ deleteOAuthConfig(options?: any): Promise<Response>;
10837
10505
  /**
10838
10506
  *
10839
10507
  * @summary Get oauth config
10840
10508
  * @param {*} [options] Override http request option.
10841
10509
  * @throws {RequiredError}
10510
+ * @memberof OAuthApi
10842
10511
  */
10843
- getOAuthConfig(options?: any): FetchArgs;
10512
+ getOAuthConfig(options?: any): Promise<OauthConfigResponse>;
10844
10513
  /**
10845
10514
  *
10846
10515
  * @summary Patch oauth config
10847
10516
  * @param {OauthConfigPatchForm} body
10848
10517
  * @param {*} [options] Override http request option.
10849
10518
  * @throws {RequiredError}
10519
+ * @memberof OAuthApi
10850
10520
  */
10851
- patchOAuthConfig(body: OauthConfigPatchForm, options?: any): FetchArgs;
10852
- };
10521
+ patchOAuthConfig(body: OauthConfigPatchForm, options?: any): Promise<Response>;
10522
+ }
10853
10523
  /**
10854
- * OauthApi - functional programming interface
10524
+ * OIDCApi - fetch parameter creator
10855
10525
  * @export
10856
10526
  */
10857
- export declare const OauthApiFp: (configuration?: Configuration) => {
10527
+ export declare const OIDCApiFetchParamCreator: (configuration?: Configuration) => {
10858
10528
  /**
10859
10529
  *
10860
- * @summary Create oauth config
10861
- * @param {OauthConfigCreateForm} body
10530
+ * @summary authorize with code
10531
+ * @param {CodeAuthorizationForm} body
10862
10532
  * @param {*} [options] Override http request option.
10863
10533
  * @throws {RequiredError}
10864
10534
  */
10865
- createOAuthConfig(body: OauthConfigCreateForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
10535
+ authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): FetchArgs;
10536
+ /**
10537
+ *
10538
+ * @summary get nonce
10539
+ * @param {*} [options] Override http request option.
10540
+ * @throws {RequiredError}
10541
+ */
10542
+ getNonce(options?: any): FetchArgs;
10543
+ /**
10544
+ *
10545
+ * @summary unauthorized endpoint for org's oidc configuration
10546
+ * @param {string} orgId orgId
10547
+ * @param {*} [options] Override http request option.
10548
+ * @throws {RequiredError}
10549
+ */
10550
+ getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): FetchArgs;
10551
+ };
10552
+ /**
10553
+ * OIDCApi - functional programming interface
10554
+ * @export
10555
+ */
10556
+ export declare const OIDCApiFp: (configuration?: Configuration) => {
10866
10557
  /**
10867
10558
  *
10868
- * @summary Delete oauth config
10559
+ * @summary authorize with code
10560
+ * @param {CodeAuthorizationForm} body
10869
10561
  * @param {*} [options] Override http request option.
10870
10562
  * @throws {RequiredError}
10871
10563
  */
10872
- deleteOAuthConfig(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
10564
+ authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<AgentCtx>;
10873
10565
  /**
10874
10566
  *
10875
- * @summary Get oauth config
10567
+ * @summary get nonce
10876
10568
  * @param {*} [options] Override http request option.
10877
10569
  * @throws {RequiredError}
10878
10570
  */
10879
- getOAuthConfig(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OauthConfigResponse>;
10571
+ getNonce(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Nonce>;
10880
10572
  /**
10881
10573
  *
10882
- * @summary Patch oauth config
10883
- * @param {OauthConfigPatchForm} body
10574
+ * @summary unauthorized endpoint for org's oidc configuration
10575
+ * @param {string} orgId orgId
10884
10576
  * @param {*} [options] Override http request option.
10885
10577
  * @throws {RequiredError}
10886
10578
  */
10887
- patchOAuthConfig(body: OauthConfigPatchForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
10579
+ getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OpenIDConnectConfig>;
10888
10580
  };
10889
10581
  /**
10890
- * OauthApi - factory interface
10582
+ * OIDCApi - factory interface
10891
10583
  * @export
10892
10584
  */
10893
- export declare const OauthApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
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>;
10585
+ export declare const OIDCApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
10902
10586
  /**
10903
10587
  *
10904
- * @summary Delete oauth config
10588
+ * @summary authorize with code
10589
+ * @param {CodeAuthorizationForm} body
10905
10590
  * @param {*} [options] Override http request option.
10906
10591
  * @throws {RequiredError}
10907
10592
  */
10908
- deleteOAuthConfig(options?: any): Promise<Response>;
10593
+ authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): Promise<AgentCtx>;
10909
10594
  /**
10910
10595
  *
10911
- * @summary Get oauth config
10596
+ * @summary get nonce
10912
10597
  * @param {*} [options] Override http request option.
10913
10598
  * @throws {RequiredError}
10914
10599
  */
10915
- getOAuthConfig(options?: any): Promise<OauthConfigResponse>;
10600
+ getNonce(options?: any): Promise<Nonce>;
10916
10601
  /**
10917
10602
  *
10918
- * @summary Patch oauth config
10919
- * @param {OauthConfigPatchForm} body
10603
+ * @summary unauthorized endpoint for org's oidc configuration
10604
+ * @param {string} orgId orgId
10920
10605
  * @param {*} [options] Override http request option.
10921
10606
  * @throws {RequiredError}
10922
10607
  */
10923
- patchOAuthConfig(body: OauthConfigPatchForm, options?: any): Promise<Response>;
10608
+ getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): Promise<OpenIDConnectConfig>;
10924
10609
  };
10925
10610
  /**
10926
- * OauthApi - object-oriented interface
10611
+ * OIDCApi - object-oriented interface
10927
10612
  * @export
10928
- * @class OauthApi
10613
+ * @class OIDCApi
10929
10614
  * @extends {BaseAPI}
10930
10615
  */
10931
- export declare class OauthApi extends BaseAPI {
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>;
10616
+ export declare class OIDCApi extends BaseAPI {
10941
10617
  /**
10942
10618
  *
10943
- * @summary Delete oauth config
10619
+ * @summary authorize with code
10620
+ * @param {CodeAuthorizationForm} body
10944
10621
  * @param {*} [options] Override http request option.
10945
10622
  * @throws {RequiredError}
10946
- * @memberof OauthApi
10623
+ * @memberof OIDCApi
10947
10624
  */
10948
- deleteOAuthConfig(options?: any): Promise<Response>;
10625
+ authorizeOpenIdConnect(body: CodeAuthorizationForm, options?: any): Promise<AgentCtx>;
10949
10626
  /**
10950
10627
  *
10951
- * @summary Get oauth config
10628
+ * @summary get nonce
10952
10629
  * @param {*} [options] Override http request option.
10953
10630
  * @throws {RequiredError}
10954
- * @memberof OauthApi
10631
+ * @memberof OIDCApi
10955
10632
  */
10956
- getOAuthConfig(options?: any): Promise<OauthConfigResponse>;
10633
+ getNonce(options?: any): Promise<Nonce>;
10957
10634
  /**
10958
10635
  *
10959
- * @summary Patch oauth config
10960
- * @param {OauthConfigPatchForm} body
10636
+ * @summary unauthorized endpoint for org's oidc configuration
10637
+ * @param {string} orgId orgId
10961
10638
  * @param {*} [options] Override http request option.
10962
10639
  * @throws {RequiredError}
10963
- * @memberof OauthApi
10640
+ * @memberof OIDCApi
10964
10641
  */
10965
- patchOAuthConfig(body: OauthConfigPatchForm, options?: any): Promise<Response>;
10642
+ getOpenIDConnectConfigUnauthorized(orgId: string, options?: any): Promise<OpenIDConnectConfig>;
10966
10643
  }
10967
10644
  /**
10968
10645
  * OplAddressApi - fetch parameter creator
@@ -12758,6 +12435,14 @@ export declare const RoomsApiFetchParamCreator: (configuration?: Configuration)
12758
12435
  * @throws {RequiredError}
12759
12436
  */
12760
12437
  getHistory(roomId: string, options?: any): FetchArgs;
12438
+ /**
12439
+ *
12440
+ * @summary Search for a room by lead query.
12441
+ * @param {string} query
12442
+ * @param {*} [options] Override http request option.
12443
+ * @throws {RequiredError}
12444
+ */
12445
+ getInboxEntriesByQuery(query: string, options?: any): FetchArgs;
12761
12446
  /**
12762
12447
  *
12763
12448
  * @summary Get ids of agents not following the room
@@ -12778,12 +12463,12 @@ export declare const RoomsApiFetchParamCreator: (configuration?: Configuration)
12778
12463
  /**
12779
12464
  *
12780
12465
  * @summary Set conversation status
12781
- * @param {ConversationStatus} body
12466
+ * @param {ConversationStatusForm} body
12782
12467
  * @param {string} roomId The ID of the room of the conversation.
12783
12468
  * @param {*} [options] Override http request option.
12784
12469
  * @throws {RequiredError}
12785
12470
  */
12786
- setConversationStatus(body: ConversationStatus, roomId: string, options?: any): FetchArgs;
12471
+ setConversationStatus(body: ConversationStatusForm, roomId: string, options?: any): FetchArgs;
12787
12472
  /**
12788
12473
  *
12789
12474
  * @summary Snooze conversation
@@ -12872,6 +12557,14 @@ export declare const RoomsApiFp: (configuration?: Configuration) => {
12872
12557
  * @throws {RequiredError}
12873
12558
  */
12874
12559
  getHistory(roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<ChatEvent>>;
12560
+ /**
12561
+ *
12562
+ * @summary Search for a room by lead query.
12563
+ * @param {string} query
12564
+ * @param {*} [options] Override http request option.
12565
+ * @throws {RequiredError}
12566
+ */
12567
+ getInboxEntriesByQuery(query: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<InboxEntry>>;
12875
12568
  /**
12876
12569
  *
12877
12570
  * @summary Get ids of agents not following the room
@@ -12892,12 +12585,12 @@ export declare const RoomsApiFp: (configuration?: Configuration) => {
12892
12585
  /**
12893
12586
  *
12894
12587
  * @summary Set conversation status
12895
- * @param {ConversationStatus} body
12588
+ * @param {ConversationStatusForm} body
12896
12589
  * @param {string} roomId The ID of the room of the conversation.
12897
12590
  * @param {*} [options] Override http request option.
12898
12591
  * @throws {RequiredError}
12899
12592
  */
12900
- setConversationStatus(body: ConversationStatus, roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
12593
+ setConversationStatus(body: ConversationStatusForm, roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
12901
12594
  /**
12902
12595
  *
12903
12596
  * @summary Snooze conversation
@@ -12986,6 +12679,14 @@ export declare const RoomsApiFactory: (configuration?: Configuration, fetch?: Fe
12986
12679
  * @throws {RequiredError}
12987
12680
  */
12988
12681
  getHistory(roomId: string, options?: any): Promise<ChatEvent[]>;
12682
+ /**
12683
+ *
12684
+ * @summary Search for a room by lead query.
12685
+ * @param {string} query
12686
+ * @param {*} [options] Override http request option.
12687
+ * @throws {RequiredError}
12688
+ */
12689
+ getInboxEntriesByQuery(query: string, options?: any): Promise<InboxEntry[]>;
12989
12690
  /**
12990
12691
  *
12991
12692
  * @summary Get ids of agents not following the room
@@ -13006,12 +12707,12 @@ export declare const RoomsApiFactory: (configuration?: Configuration, fetch?: Fe
13006
12707
  /**
13007
12708
  *
13008
12709
  * @summary Set conversation status
13009
- * @param {ConversationStatus} body
12710
+ * @param {ConversationStatusForm} body
13010
12711
  * @param {string} roomId The ID of the room of the conversation.
13011
12712
  * @param {*} [options] Override http request option.
13012
12713
  * @throws {RequiredError}
13013
12714
  */
13014
- setConversationStatus(body: ConversationStatus, roomId: string, options?: any): Promise<Response>;
12715
+ setConversationStatus(body: ConversationStatusForm, roomId: string, options?: any): Promise<Response>;
13015
12716
  /**
13016
12717
  *
13017
12718
  * @summary Snooze conversation
@@ -13109,6 +12810,15 @@ export declare class RoomsApi extends BaseAPI {
13109
12810
  * @memberof RoomsApi
13110
12811
  */
13111
12812
  getHistory(roomId: string, options?: any): Promise<ChatEvent[]>;
12813
+ /**
12814
+ *
12815
+ * @summary Search for a room by lead query.
12816
+ * @param {string} query
12817
+ * @param {*} [options] Override http request option.
12818
+ * @throws {RequiredError}
12819
+ * @memberof RoomsApi
12820
+ */
12821
+ getInboxEntriesByQuery(query: string, options?: any): Promise<InboxEntry[]>;
13112
12822
  /**
13113
12823
  *
13114
12824
  * @summary Get ids of agents not following the room
@@ -13131,13 +12841,13 @@ export declare class RoomsApi extends BaseAPI {
13131
12841
  /**
13132
12842
  *
13133
12843
  * @summary Set conversation status
13134
- * @param {ConversationStatus} body
12844
+ * @param {ConversationStatusForm} body
13135
12845
  * @param {string} roomId The ID of the room of the conversation.
13136
12846
  * @param {*} [options] Override http request option.
13137
12847
  * @throws {RequiredError}
13138
12848
  * @memberof RoomsApi
13139
12849
  */
13140
- setConversationStatus(body: ConversationStatus, roomId: string, options?: any): Promise<Response>;
12850
+ setConversationStatus(body: ConversationStatusForm, roomId: string, options?: any): Promise<Response>;
13141
12851
  /**
13142
12852
  *
13143
12853
  * @summary Snooze conversation
@@ -13499,6 +13209,13 @@ export declare const TagGroupsApiFetchParamCreator: (configuration?: Configurati
13499
13209
  * @throws {RequiredError}
13500
13210
  */
13501
13211
  getTagGroup(id: string, options?: any): FetchArgs;
13212
+ /**
13213
+ *
13214
+ * @summary endpoint to retrieve tag groups
13215
+ * @param {*} [options] Override http request option.
13216
+ * @throws {RequiredError}
13217
+ */
13218
+ getTagGroups(options?: any): FetchArgs;
13502
13219
  /**
13503
13220
  *
13504
13221
  * @summary endpoint to update tag group
@@ -13546,6 +13263,13 @@ export declare const TagGroupsApiFp: (configuration?: Configuration) => {
13546
13263
  * @throws {RequiredError}
13547
13264
  */
13548
13265
  getTagGroup(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<TagGroupDto>;
13266
+ /**
13267
+ *
13268
+ * @summary endpoint to retrieve tag groups
13269
+ * @param {*} [options] Override http request option.
13270
+ * @throws {RequiredError}
13271
+ */
13272
+ getTagGroups(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<TagGroupDto>>;
13549
13273
  /**
13550
13274
  *
13551
13275
  * @summary endpoint to update tag group
@@ -13593,6 +13317,13 @@ export declare const TagGroupsApiFactory: (configuration?: Configuration, fetch?
13593
13317
  * @throws {RequiredError}
13594
13318
  */
13595
13319
  getTagGroup(id: string, options?: any): Promise<TagGroupDto>;
13320
+ /**
13321
+ *
13322
+ * @summary endpoint to retrieve tag groups
13323
+ * @param {*} [options] Override http request option.
13324
+ * @throws {RequiredError}
13325
+ */
13326
+ getTagGroups(options?: any): Promise<TagGroupDto[]>;
13596
13327
  /**
13597
13328
  *
13598
13329
  * @summary endpoint to update tag group
@@ -13645,6 +13376,14 @@ export declare class TagGroupsApi extends BaseAPI {
13645
13376
  * @memberof TagGroupsApi
13646
13377
  */
13647
13378
  getTagGroup(id: string, options?: any): Promise<TagGroupDto>;
13379
+ /**
13380
+ *
13381
+ * @summary endpoint to retrieve tag groups
13382
+ * @param {*} [options] Override http request option.
13383
+ * @throws {RequiredError}
13384
+ * @memberof TagGroupsApi
13385
+ */
13386
+ getTagGroups(options?: any): Promise<TagGroupDto[]>;
13648
13387
  /**
13649
13388
  *
13650
13389
  * @summary endpoint to update tag group
@@ -13686,6 +13425,13 @@ export declare const TagMappingsApiFetchParamCreator: (configuration?: Configura
13686
13425
  * @throws {RequiredError}
13687
13426
  */
13688
13427
  deleteTagMapping(id: string, options?: any): FetchArgs;
13428
+ /**
13429
+ *
13430
+ * @summary secured endpoint to retrieve data about url-tag mappings
13431
+ * @param {*} [options] Override http request option.
13432
+ * @throws {RequiredError}
13433
+ */
13434
+ getTagMappings(options?: any): FetchArgs;
13689
13435
  /**
13690
13436
  *
13691
13437
  * @summary authorized endpoint to update tag mapping
@@ -13717,6 +13463,13 @@ export declare const TagMappingsApiFp: (configuration?: Configuration) => {
13717
13463
  * @throws {RequiredError}
13718
13464
  */
13719
13465
  deleteTagMapping(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
13466
+ /**
13467
+ *
13468
+ * @summary secured endpoint to retrieve data about url-tag mappings
13469
+ * @param {*} [options] Override http request option.
13470
+ * @throws {RequiredError}
13471
+ */
13472
+ getTagMappings(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<TagMappingDto>>;
13720
13473
  /**
13721
13474
  *
13722
13475
  * @summary authorized endpoint to update tag mapping
@@ -13748,6 +13501,13 @@ export declare const TagMappingsApiFactory: (configuration?: Configuration, fetc
13748
13501
  * @throws {RequiredError}
13749
13502
  */
13750
13503
  deleteTagMapping(id: string, options?: any): Promise<Response>;
13504
+ /**
13505
+ *
13506
+ * @summary secured endpoint to retrieve data about url-tag mappings
13507
+ * @param {*} [options] Override http request option.
13508
+ * @throws {RequiredError}
13509
+ */
13510
+ getTagMappings(options?: any): Promise<TagMappingDto[]>;
13751
13511
  /**
13752
13512
  *
13753
13513
  * @summary authorized endpoint to update tag mapping
@@ -13783,6 +13543,14 @@ export declare class TagMappingsApi extends BaseAPI {
13783
13543
  * @memberof TagMappingsApi
13784
13544
  */
13785
13545
  deleteTagMapping(id: string, options?: any): Promise<Response>;
13546
+ /**
13547
+ *
13548
+ * @summary secured endpoint to retrieve data about url-tag mappings
13549
+ * @param {*} [options] Override http request option.
13550
+ * @throws {RequiredError}
13551
+ * @memberof TagMappingsApi
13552
+ */
13553
+ getTagMappings(options?: any): Promise<TagMappingDto[]>;
13786
13554
  /**
13787
13555
  *
13788
13556
  * @summary authorized endpoint to update tag mapping
@@ -13815,20 +13583,6 @@ export declare const TagsApiFetchParamCreator: (configuration?: Configuration) =
13815
13583
  * @throws {RequiredError}
13816
13584
  */
13817
13585
  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
13586
  /**
13833
13587
  *
13834
13588
  * @summary secured endpoint to retrieve tags
@@ -13867,20 +13621,6 @@ export declare const TagsApiFp: (configuration?: Configuration) => {
13867
13621
  * @throws {RequiredError}
13868
13622
  */
13869
13623
  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
13624
  /**
13885
13625
  *
13886
13626
  * @summary secured endpoint to retrieve tags
@@ -13919,20 +13659,6 @@ export declare const TagsApiFactory: (configuration?: Configuration, fetch?: Fet
13919
13659
  * @throws {RequiredError}
13920
13660
  */
13921
13661
  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
13662
  /**
13937
13663
  *
13938
13664
  * @summary secured endpoint to retrieve tags
@@ -13975,22 +13701,6 @@ export declare class TagsApi extends BaseAPI {
13975
13701
  * @memberof TagsApi
13976
13702
  */
13977
13703
  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
13704
  /**
13995
13705
  *
13996
13706
  * @summary secured endpoint to retrieve tags
@@ -14450,14 +14160,6 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
14450
14160
  * @throws {RequiredError}
14451
14161
  */
14452
14162
  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
14163
  /**
14462
14164
  *
14463
14165
  * @summary Get limited adviser profile.
@@ -14886,14 +14588,6 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
14886
14588
  * @throws {RequiredError}
14887
14589
  */
14888
14590
  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
14591
  /**
14898
14592
  *
14899
14593
  * @summary Get limited adviser profile.
@@ -15322,14 +15016,6 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
15322
15016
  * @throws {RequiredError}
15323
15017
  */
15324
15018
  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
15019
  /**
15334
15020
  *
15335
15021
  * @summary Get limited adviser profile.
@@ -15781,15 +15467,6 @@ export declare class UsersApi extends BaseAPI {
15781
15467
  * @memberof UsersApi
15782
15468
  */
15783
15469
  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
15470
  /**
15794
15471
  *
15795
15472
  * @summary Get limited adviser profile.