@snugdesk/core 0.2.29 → 0.2.31

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/index.d.ts CHANGED
@@ -1300,6 +1300,8 @@ declare enum InteractionStatus {
1300
1300
  }
1301
1301
  declare enum InteractionProvider {
1302
1302
  AVAYA_IPO = "AVAYA_IPO",
1303
+ EMAIL_SMTP = "EMAIL_SMTP",
1304
+ EMAIL_SES = "EMAIL_SES",
1303
1305
  FACEBOOK = "FACEBOOK",
1304
1306
  INSTAGRAM = "INSTAGRAM",
1305
1307
  OZONETEL = "OZONETEL",
@@ -1901,115 +1903,6 @@ type InteractionRouteConfigurationInput = {
1901
1903
  maxWaitTimeoutSeconds?: number | null;
1902
1904
  };
1903
1905
 
1904
- type EntityConversation = {
1905
- id: string;
1906
- tenantId: string;
1907
- entityId?: string | null;
1908
- entity?: Entity | null;
1909
- entityAddress: string;
1910
- interactionChannel: InteractionChannel;
1911
- interactionProvider: InteractionProvider;
1912
- isCampaignEngaged: boolean;
1913
- campaignId?: string | null;
1914
- lastCampaignFlowNodeId?: string | null;
1915
- lastInteractionMessageId?: string | null;
1916
- metadata?: string | null;
1917
- lastActivityAt?: number | null;
1918
- lastMessageAt?: number | null;
1919
- archivedAt?: number | null;
1920
- blockedAt?: number | null;
1921
- createdAt: number;
1922
- updatedAt: number;
1923
- deletedAt?: number | null;
1924
- interactions?: List<Interaction> | null;
1925
- messages?: List<InteractionMessage> | null;
1926
- };
1927
- type CreateEntityConversationInput = {
1928
- id?: string | null;
1929
- tenantId: string;
1930
- entityId?: string | null;
1931
- entityAddress: string;
1932
- interactionChannel: InteractionChannel;
1933
- interactionProvider: InteractionProvider;
1934
- isCampaignEngaged: boolean;
1935
- campaignId?: string | null;
1936
- lastCampaignFlowNodeId?: string | null;
1937
- lastInteractionMessageId?: string | null;
1938
- metadata?: string | null;
1939
- lastActivityAt?: number | null;
1940
- lastMessageAt?: number | null;
1941
- archivedAt?: number | null;
1942
- blockedAt?: number | null;
1943
- createdAt: number;
1944
- updatedAt: number;
1945
- deletedAt?: number | null;
1946
- };
1947
- type UpdateEntityConversationInput = {
1948
- id: string;
1949
- tenantId?: string | null;
1950
- entityId?: string | null;
1951
- entityAddress?: string | null;
1952
- interactionChannel?: InteractionChannel | null;
1953
- interactionProvider?: InteractionProvider | null;
1954
- isCampaignEngaged?: boolean | null;
1955
- campaignId?: string | null;
1956
- lastCampaignFlowNodeId?: string | null;
1957
- lastInteractionMessageId?: string | null;
1958
- metadata?: string | null;
1959
- lastActivityAt?: number | null;
1960
- lastMessageAt?: number | null;
1961
- archivedAt?: number | null;
1962
- blockedAt?: number | null;
1963
- createdAt?: number | null;
1964
- updatedAt?: number | null;
1965
- deletedAt?: number | null;
1966
- };
1967
- type ModelEntityConversationConditionInput = {
1968
- tenantId?: ModelIDInput | null;
1969
- entityId?: ModelIDInput | null;
1970
- entityAddress?: ModelStringInput | null;
1971
- interactionChannel?: ModelInteractionChannelInput | null;
1972
- interactionProvider?: ModelInteractionProviderInput | null;
1973
- isCampaignEngaged?: ModelBooleanInput | null;
1974
- campaignId?: ModelIDInput | null;
1975
- lastCampaignFlowNodeId?: ModelIDInput | null;
1976
- lastInteractionMessageId?: ModelIDInput | null;
1977
- metadata?: ModelStringInput | null;
1978
- lastActivityAt?: ModelIntInput | null;
1979
- lastMessageAt?: ModelIntInput | null;
1980
- archivedAt?: ModelIntInput | null;
1981
- blockedAt?: ModelIntInput | null;
1982
- createdAt?: ModelIntInput | null;
1983
- updatedAt?: ModelIntInput | null;
1984
- deletedAt?: ModelIntInput | null;
1985
- and?: Array<ModelEntityConversationConditionInput | null> | null;
1986
- or?: Array<ModelEntityConversationConditionInput | null> | null;
1987
- not?: ModelEntityConversationConditionInput | null;
1988
- };
1989
- type ModelEntityConversationFilterInput = {
1990
- id?: ModelIDInput | null;
1991
- tenantId?: ModelIDInput | null;
1992
- entityId?: ModelIDInput | null;
1993
- entityAddress?: ModelStringInput | null;
1994
- interactionChannel?: ModelInteractionChannelInput | null;
1995
- interactionProvider?: ModelInteractionProviderInput | null;
1996
- isCampaignEngaged?: ModelBooleanInput | null;
1997
- campaignId?: ModelIDInput | null;
1998
- lastCampaignFlowNodeId?: ModelIDInput | null;
1999
- lastInteractionMessageId?: ModelIDInput | null;
2000
- metadata?: ModelStringInput | null;
2001
- lastActivityAt?: ModelIntInput | null;
2002
- lastMessageAt?: ModelIntInput | null;
2003
- archivedAt?: ModelIntInput | null;
2004
- blockedAt?: ModelIntInput | null;
2005
- createdAt?: ModelIntInput | null;
2006
- updatedAt?: ModelIntInput | null;
2007
- deletedAt?: ModelIntInput | null;
2008
- and?: Array<ModelEntityConversationFilterInput | null> | null;
2009
- or?: Array<ModelEntityConversationFilterInput | null> | null;
2010
- not?: ModelEntityConversationFilterInput | null;
2011
- };
2012
-
2013
1906
  type Ticket = {
2014
1907
  id: string;
2015
1908
  externalId?: string | null;
@@ -2205,6 +2098,126 @@ type ModelTicketTypeFilterInput = {
2205
2098
  not?: ModelTicketTypeFilterInput | null;
2206
2099
  };
2207
2100
 
2101
+ type EntityConversation = {
2102
+ id: string;
2103
+ tenantId: string;
2104
+ entityId?: string | null;
2105
+ entity?: Entity | null;
2106
+ entityAddress: string;
2107
+ interactionChannel: InteractionChannel;
2108
+ interactionProvider: InteractionProvider;
2109
+ isCampaignEngaged: boolean;
2110
+ campaignId?: string | null;
2111
+ lastCampaignFlowNodeId?: string | null;
2112
+ lastInteractionMessageId?: string | null;
2113
+ metadata?: string | null;
2114
+ lastActivityAt?: number | null;
2115
+ lastMessageAt?: number | null;
2116
+ archivedAt?: number | null;
2117
+ blockedAt?: number | null;
2118
+ isTicketCreated: boolean;
2119
+ ticketId?: string | null;
2120
+ ticket?: Ticket | null;
2121
+ createdAt: number;
2122
+ updatedAt: number;
2123
+ deletedAt?: number | null;
2124
+ interactions?: List<Interaction> | null;
2125
+ messages?: List<InteractionMessage> | null;
2126
+ };
2127
+ type CreateEntityConversationInput = {
2128
+ id?: string | null;
2129
+ tenantId: string;
2130
+ entityId?: string | null;
2131
+ entityAddress: string;
2132
+ interactionChannel: InteractionChannel;
2133
+ interactionProvider: InteractionProvider;
2134
+ isCampaignEngaged: boolean;
2135
+ campaignId?: string | null;
2136
+ lastCampaignFlowNodeId?: string | null;
2137
+ lastInteractionMessageId?: string | null;
2138
+ metadata?: string | null;
2139
+ lastActivityAt?: number | null;
2140
+ lastMessageAt?: number | null;
2141
+ archivedAt?: number | null;
2142
+ blockedAt?: number | null;
2143
+ isTicketCreated: boolean;
2144
+ ticketId?: string | null;
2145
+ createdAt: number;
2146
+ updatedAt: number;
2147
+ deletedAt?: number | null;
2148
+ };
2149
+ type UpdateEntityConversationInput = {
2150
+ id: string;
2151
+ tenantId?: string | null;
2152
+ entityId?: string | null;
2153
+ entityAddress?: string | null;
2154
+ interactionChannel?: InteractionChannel | null;
2155
+ interactionProvider?: InteractionProvider | null;
2156
+ isCampaignEngaged?: boolean | null;
2157
+ campaignId?: string | null;
2158
+ lastCampaignFlowNodeId?: string | null;
2159
+ lastInteractionMessageId?: string | null;
2160
+ metadata?: string | null;
2161
+ lastActivityAt?: number | null;
2162
+ lastMessageAt?: number | null;
2163
+ archivedAt?: number | null;
2164
+ blockedAt?: number | null;
2165
+ isTicketCreated?: boolean | null;
2166
+ ticketId?: string | null;
2167
+ createdAt?: number | null;
2168
+ updatedAt?: number | null;
2169
+ deletedAt?: number | null;
2170
+ };
2171
+ type ModelEntityConversationConditionInput = {
2172
+ tenantId?: ModelIDInput | null;
2173
+ entityId?: ModelIDInput | null;
2174
+ entityAddress?: ModelStringInput | null;
2175
+ interactionChannel?: ModelInteractionChannelInput | null;
2176
+ interactionProvider?: ModelInteractionProviderInput | null;
2177
+ isCampaignEngaged?: ModelBooleanInput | null;
2178
+ campaignId?: ModelIDInput | null;
2179
+ lastCampaignFlowNodeId?: ModelIDInput | null;
2180
+ lastInteractionMessageId?: ModelIDInput | null;
2181
+ metadata?: ModelStringInput | null;
2182
+ lastActivityAt?: ModelIntInput | null;
2183
+ lastMessageAt?: ModelIntInput | null;
2184
+ archivedAt?: ModelIntInput | null;
2185
+ blockedAt?: ModelIntInput | null;
2186
+ isTicketCreated?: ModelBooleanInput | null;
2187
+ ticketId?: ModelIDInput | null;
2188
+ createdAt?: ModelIntInput | null;
2189
+ updatedAt?: ModelIntInput | null;
2190
+ deletedAt?: ModelIntInput | null;
2191
+ and?: Array<ModelEntityConversationConditionInput | null> | null;
2192
+ or?: Array<ModelEntityConversationConditionInput | null> | null;
2193
+ not?: ModelEntityConversationConditionInput | null;
2194
+ };
2195
+ type ModelEntityConversationFilterInput = {
2196
+ id?: ModelIDInput | null;
2197
+ tenantId?: ModelIDInput | null;
2198
+ entityId?: ModelIDInput | null;
2199
+ entityAddress?: ModelStringInput | null;
2200
+ interactionChannel?: ModelInteractionChannelInput | null;
2201
+ interactionProvider?: ModelInteractionProviderInput | null;
2202
+ isCampaignEngaged?: ModelBooleanInput | null;
2203
+ campaignId?: ModelIDInput | null;
2204
+ lastCampaignFlowNodeId?: ModelIDInput | null;
2205
+ lastInteractionMessageId?: ModelIDInput | null;
2206
+ metadata?: ModelStringInput | null;
2207
+ lastActivityAt?: ModelIntInput | null;
2208
+ lastMessageAt?: ModelIntInput | null;
2209
+ archivedAt?: ModelIntInput | null;
2210
+ blockedAt?: ModelIntInput | null;
2211
+ isTicketCreated?: ModelBooleanInput | null;
2212
+ ticketId?: ModelIDInput | null;
2213
+ createdAt?: ModelIntInput | null;
2214
+ updatedAt?: ModelIntInput | null;
2215
+ deletedAt?: ModelIntInput | null;
2216
+ and?: Array<ModelEntityConversationFilterInput | null> | null;
2217
+ or?: Array<ModelEntityConversationFilterInput | null> | null;
2218
+ not?: ModelEntityConversationFilterInput | null;
2219
+ };
2220
+
2208
2221
  declare const FIELDS_LANGUAGE = "\n code\n nameEn\n nameLocal\n";
2209
2222
  declare const FIELDS_COUNTRY = "\n code\n nameEn\n nameLocal\n currency {\n code\n nameEn\n }\n officialLanguage {\n \n code\n nameEn\n nameLocal\n\n }\n callingCode\n region\n flag\n";
2210
2223
  declare const FIELDS_PHONE_NUMBER = "\n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n";
@@ -2249,9 +2262,9 @@ declare class EntityService {
2249
2262
  type __SubscriptionContainer$4 = {
2250
2263
  OnEntityConversationByTenantId: EntityConversation;
2251
2264
  };
2252
- declare const FIELDS_ENTITY_CONVERSATION = "\n id\n tenantId\n entityId\n entity {\n \n id\n externalId\n tenantId\n entityTypeId\n entityType {\n \n id\n externalId\n tenantId\n name\n description\n image {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n parentId\n name\n image {\n key\n bucket\n location\n }\n email\n phoneNumber {\n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n }\n phoneNumberE164\n isOrganization\n customFields\n metadata\n notes\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n }\n contactPreferences {\n allowCall\n allowEmail\n allowSMS\n allowWhatsApp\n }\n createdAt\n updatedAt\n blockedAt\n deletedAt\n\n }\n entityAddress\n interactionChannel\n interactionProvider\n isCampaignEngaged\n campaignId\n lastCampaignFlowNodeId\n lastInteractionMessageId\n metadata\n lastActivityAt\n lastMessageAt\n archivedAt\n blockedAt\n createdAt\n updatedAt\n deletedAt\n";
2253
- declare const FIELDS_ENTITY_CONVERSATION_MINIMAL = "\n id\n tenantId\n entityId\n entityAddress\n interactionChannel\n interactionProvider\n isCampaignEngaged\n campaignId\n lastCampaignFlowNodeId\n lastInteractionMessageId\n metadata\n lastActivityAt\n lastMessageAt\n archivedAt\n blockedAt\n createdAt\n updatedAt\n deletedAt\n";
2254
- declare const FIELDS_ENTITY_CONVERSATION_EXPANDED = "\n id\n tenantId\n entityId\n entity {\n \n id\n externalId\n tenantId\n entityTypeId\n entityType {\n \n id\n externalId\n tenantId\n name\n description\n image {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n parentId\n name\n image {\n key\n bucket\n location\n }\n email\n phoneNumber {\n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n }\n phoneNumberE164\n isOrganization\n customFields\n metadata\n notes\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n }\n contactPreferences {\n allowCall\n allowEmail\n allowSMS\n allowWhatsApp\n }\n createdAt\n updatedAt\n blockedAt\n deletedAt\n\n }\n entityAddress\n interactionChannel\n interactionProvider\n isCampaignEngaged\n campaignId\n lastCampaignFlowNodeId\n lastInteractionMessageId\n metadata\n lastActivityAt\n lastMessageAt\n archivedAt\n blockedAt\n createdAt\n updatedAt\n deletedAt\n interactions (limit: 1, sortDirection: DESC) {\n items {\n \n id\n tenantId\n widgetId\n endpointId\n entityConversationId\n entityId\n teamId\n hostId\n host {\n \n id\n interactionId\n entityId\n teamId\n userId\n createdAt\n updatedAt\n deletedAt\n\n }\n providerInteractionId\n channel\n provider\n context\n direction\n status\n last_status\n subject\n metadata\n notes\n summary\n transcription {\n key\n bucket\n location\n }\n recording {\n key\n bucket\n location\n }\n routeConfiguration {\n teamId\n routingLogic\n maxWaitTimeoutSeconds\n }\n startedAt\n completedAt\n duration\n aiProcessingStatus\n aiProcessingCompletedAt\n postProcessingStatus\n postProcessingCompletedAt\n reportProcessingStatus\n reportProcessingCompletedAt\n temp_isLocked\n temp_isAvailableTenantIdUnion\n createdAt\n updatedAt\n deletedAt\n\n }\n nextToken\n }\n messages (limit: 1, sortDirection: DESC) {\n items {\n \n id\n externalId\n endpointId\n campaignId\n campaignFlowNodeId\n entityConversationId\n interactionId\n interactionAttendeeId\n body\n metadata\n referenceMessageId\n createdAt\n updatedAt\n deletedAt\n messageAttachments {\n items {\n \n id\n externalId\n interactionId\n interactionMessageId\n name\n size\n type\n file {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n nextToken\n }\n\n }\n nextToken\n }\n";
2265
+ declare const FIELDS_ENTITY_CONVERSATION = "\n id\n tenantId\n entityId\n entity {\n \n id\n externalId\n tenantId\n entityTypeId\n entityType {\n \n id\n externalId\n tenantId\n name\n description\n image {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n parentId\n name\n image {\n key\n bucket\n location\n }\n email\n phoneNumber {\n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n }\n phoneNumberE164\n isOrganization\n customFields\n metadata\n notes\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n }\n contactPreferences {\n allowCall\n allowEmail\n allowSMS\n allowWhatsApp\n }\n createdAt\n updatedAt\n blockedAt\n deletedAt\n\n }\n entityAddress\n interactionChannel\n interactionProvider\n isCampaignEngaged\n campaignId\n lastCampaignFlowNodeId\n lastInteractionMessageId\n metadata\n lastActivityAt\n lastMessageAt\n archivedAt\n blockedAt\n isTicketCreated\n ticketId\n createdAt\n updatedAt\n deletedAt\n";
2266
+ declare const FIELDS_ENTITY_CONVERSATION_MINIMAL = "\n id\n tenantId\n entityId\n entityAddress\n interactionChannel\n interactionProvider\n isCampaignEngaged\n campaignId\n lastCampaignFlowNodeId\n lastInteractionMessageId\n metadata\n lastActivityAt\n lastMessageAt\n archivedAt\n blockedAt\n isTicketCreated\n ticketId\n createdAt\n updatedAt\n deletedAt\n";
2267
+ declare const FIELDS_ENTITY_CONVERSATION_EXPANDED = "\n id\n tenantId\n entityId\n entity {\n \n id\n externalId\n tenantId\n entityTypeId\n entityType {\n \n id\n externalId\n tenantId\n name\n description\n image {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n parentId\n name\n image {\n key\n bucket\n location\n }\n email\n phoneNumber {\n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n }\n phoneNumberE164\n isOrganization\n customFields\n metadata\n notes\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n }\n contactPreferences {\n allowCall\n allowEmail\n allowSMS\n allowWhatsApp\n }\n createdAt\n updatedAt\n blockedAt\n deletedAt\n\n }\n entityAddress\n interactionChannel\n interactionProvider\n isCampaignEngaged\n campaignId\n lastCampaignFlowNodeId\n lastInteractionMessageId\n metadata\n lastActivityAt\n lastMessageAt\n archivedAt\n blockedAt\n isTicketCreated\n ticketId\n createdAt\n updatedAt\n deletedAt\n interactions (limit: 1, sortDirection: DESC) {\n items {\n \n id\n tenantId\n widgetId\n endpointId\n entityConversationId\n entityId\n teamId\n hostId\n host {\n \n id\n interactionId\n entityId\n teamId\n userId\n createdAt\n updatedAt\n deletedAt\n\n }\n providerInteractionId\n channel\n provider\n context\n direction\n status\n last_status\n subject\n metadata\n notes\n summary\n transcription {\n key\n bucket\n location\n }\n recording {\n key\n bucket\n location\n }\n routeConfiguration {\n teamId\n routingLogic\n maxWaitTimeoutSeconds\n }\n startedAt\n completedAt\n duration\n aiProcessingStatus\n aiProcessingCompletedAt\n postProcessingStatus\n postProcessingCompletedAt\n reportProcessingStatus\n reportProcessingCompletedAt\n temp_isLocked\n temp_isAvailableTenantIdUnion\n createdAt\n updatedAt\n deletedAt\n\n }\n nextToken\n }\n messages (limit: 1, sortDirection: DESC) {\n items {\n \n id\n externalId\n endpointId\n campaignId\n campaignFlowNodeId\n entityConversationId\n interactionId\n interactionAttendeeId\n body\n metadata\n referenceMessageId\n createdAt\n updatedAt\n deletedAt\n messageAttachments {\n items {\n \n id\n externalId\n interactionId\n interactionMessageId\n name\n size\n type\n file {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n nextToken\n }\n\n }\n nextToken\n }\n";
2255
2268
  declare class EntityConversationService {
2256
2269
  private readonly appSyncService;
2257
2270
  constructor(appSyncService: AppSyncHelperService);
@@ -2278,7 +2291,7 @@ declare const FIELDS_INTERACTION = "\n id\n tenantId\n widgetId\n en
2278
2291
  declare const FIELDS_INTERACTION_EXPANDED = "\n id\n tenantId\n widgetId\n widget {\n \n id\n tenantId\n channel\n provider\n providerAccountId\n name\n description\n configuration\n isRecordingEnabledByDefault\n isRecordingEnabledOnDemand\n isTranscriptionEnabledByDefault\n isTranscriptionEnabledOnDemand\n routeConfiguration {\n teamId\n routingLogic\n maxWaitTimeoutSeconds\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n endpointId\n endpoint {\n \n id\n externalId\n tenantId\n widgetId\n address\n configuration\n createdAt\n updatedAt\n deletedAt\n\n }\n entityConversationId\n entityConversation {\n id\n tenantId\n entityId\n entityAddress\n interactionChannel\n interactionProvider\n isCampaignEngaged\n campaignId\n lastCampaignFlowNodeId\n lastInteractionMessageId\n metadata\n lastActivityAt\n lastMessageAt\n archivedAt\n blockedAt\n createdAt\n updatedAt\n deletedAt\n }\n entityId\n entity {\n \n id\n externalId\n tenantId\n entityTypeId\n entityType {\n \n id\n externalId\n tenantId\n name\n description\n image {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n parentId\n name\n image {\n key\n bucket\n location\n }\n email\n phoneNumber {\n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n }\n phoneNumberE164\n isOrganization\n customFields\n metadata\n notes\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n }\n contactPreferences {\n allowCall\n allowEmail\n allowSMS\n allowWhatsApp\n }\n createdAt\n updatedAt\n blockedAt\n deletedAt\n\n }\n teamId\n team {\n \n id\n tenantId\n name\n description\n image {\n key\n bucket\n location\n }\n ticketFields\n createdAt\n updatedAt\n deletedAt\n\n }\n hostId\n host {\n \n id\n interactionId\n entityId\n teamId\n userId\n createdAt\n updatedAt\n deletedAt\n\n }\n providerInteractionId\n channel\n provider\n context\n direction\n status\n last_status\n subject\n metadata\n notes\n summary\n transcription {\n key\n bucket\n location\n }\n recording {\n key\n bucket\n location\n }\n routeConfiguration {\n teamId\n routingLogic\n maxWaitTimeoutSeconds\n }\n startedAt\n completedAt\n duration\n aiProcessingStatus\n aiProcessingCompletedAt\n postProcessingStatus\n postProcessingCompletedAt\n reportProcessingStatus\n reportProcessingCompletedAt\n temp_isLocked\n temp_isAvailableTenantIdUnion\n createdAt\n updatedAt\n deletedAt\n";
2279
2292
  declare const FIELDS_INTERACTION_INVITEE = "\n id\n interactionId\n interaction {\n \n id\n tenantId\n widgetId\n endpointId\n entityConversationId\n entityId\n teamId\n hostId\n host {\n \n id\n interactionId\n entityId\n teamId\n userId\n createdAt\n updatedAt\n deletedAt\n\n }\n providerInteractionId\n channel\n provider\n context\n direction\n status\n last_status\n subject\n metadata\n notes\n summary\n transcription {\n key\n bucket\n location\n }\n recording {\n key\n bucket\n location\n }\n routeConfiguration {\n teamId\n routingLogic\n maxWaitTimeoutSeconds\n }\n startedAt\n completedAt\n duration\n aiProcessingStatus\n aiProcessingCompletedAt\n postProcessingStatus\n postProcessingCompletedAt\n reportProcessingStatus\n reportProcessingCompletedAt\n temp_isLocked\n temp_isAvailableTenantIdUnion\n createdAt\n updatedAt\n deletedAt\n\n }\n entityId\n entity {\n \n id\n externalId\n tenantId\n entityTypeId\n metadata\n name\n image {\n key\n bucket\n location\n }\n email\n phoneNumber {\n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n }\n phoneNumberE164\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n }\n contactPreferences {\n allowCall\n allowEmail\n allowSMS\n allowWhatsApp\n }\n createdAt\n updatedAt\n blockedAt\n deletedAt\n\n }\n teamId\n userId\n isAdministrator\n temp_expiringAt\n expiredAt\n createdAt\n updatedAt\n deletedAt\n";
2280
2293
  declare const FIELDS_INTERACTION_ATTENDEE = "\n id\n interactionId\n entityId\n interactionWidgetSessionId\n teamId\n userId\n userSessionId\n name\n metadata\n customFields\n isAdministrator\n joinedAt\n exitedAt\n createdAt\n updatedAt\n deletedAt\n";
2281
- declare const FIELDS_INTERACTION_ATTENDEE_EXPANDED = "\n id\n interactionId\n entityId\n entity {\n \n id\n externalId\n tenantId\n entityTypeId\n entityType {\n \n id\n externalId\n tenantId\n name\n description\n image {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n parentId\n parent {\n id\n externalId\n tenantId\n entityTypeId\n name\n image {\n key\n bucket\n location\n }\n isOrganization\n email\n phoneNumber {\n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n }\n phoneNumberE164\n createdAt\n updatedAt\n blockedAt\n deletedAt\n }\n name\n image {\n key\n bucket\n location\n }\n isOrganization\n email\n phoneNumber {\n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n }\n phoneNumberE164\n customFields\n metadata\n notes\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n }\n contactPreferences {\n allowCall\n allowEmail\n allowSMS\n allowWhatsApp\n }\n createdAt\n updatedAt\n blockedAt\n deletedAt\n\n }\n interactionWidgetSessionId\n teamId\n team {\n \n id\n tenantId\n name\n description\n image {\n key\n bucket\n location\n }\n ticketFields\n createdAt\n updatedAt\n deletedAt\n\n }\n userId\n user {\n \n id\n externalId\n tenantId\n email\n name\n image {\n key\n bucket\n location\n }\n phoneNumber {\n \n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n\n }\n preferences {\n timezoneName\n language {\n \n code\n nameEn\n nameLocal\n\n }\n }\n notificationSettings {\n allowPush\n allowEmail\n allowSMS\n allowWhatsApp\n }\n type\n activatedAt\n blockedAt\n createdAt\n updatedAt\n deletedAt\n updatedByUserId\n updatedByUserSessionId\n\n }\n userSessionId\n name\n metadata\n customFields\n isAdministrator\n joinedAt\n exitedAt\n createdAt\n updatedAt\n deletedAt\n";
2294
+ declare const FIELDS_INTERACTION_ATTENDEE_EXPANDED = "\n id\n interactionId\n entityId\n entity {\n \n id\n externalId\n tenantId\n entityTypeId\n entityType {\n \n id\n externalId\n tenantId\n name\n description\n image {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n parentId\n name\n image {\n key\n bucket\n location\n }\n email\n phoneNumber {\n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n }\n phoneNumberE164\n isOrganization\n customFields\n metadata\n notes\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n }\n contactPreferences {\n allowCall\n allowEmail\n allowSMS\n allowWhatsApp\n }\n createdAt\n updatedAt\n blockedAt\n deletedAt\n\n }\n interactionWidgetSessionId\n teamId\n team {\n \n id\n tenantId\n name\n description\n image {\n key\n bucket\n location\n }\n ticketFields\n createdAt\n updatedAt\n deletedAt\n\n }\n userId\n user {\n \n id\n externalId\n tenantId\n email\n name\n image {\n key\n bucket\n location\n }\n phoneNumber {\n \n countryCode\n dialCode\n e164Number\n internationalNumber\n nationalNumber\n number\n\n }\n preferences {\n timezoneName\n language {\n \n code\n nameEn\n nameLocal\n\n }\n }\n notificationSettings {\n allowPush\n allowEmail\n allowSMS\n allowWhatsApp\n }\n type\n activatedAt\n blockedAt\n createdAt\n updatedAt\n deletedAt\n updatedByUserId\n updatedByUserSessionId\n\n }\n userSessionId\n name\n metadata\n customFields\n isAdministrator\n joinedAt\n exitedAt\n createdAt\n updatedAt\n deletedAt\n";
2282
2295
  declare const FIELDS_INTERACTION_MESSAGE_ATTACHMENT = "\n id\n externalId\n interactionId\n interactionMessageId\n name\n size\n type\n file {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n";
2283
2296
  declare const FIELDS_INTERACTION_MESSAGE = "\n id\n externalId\n endpointId\n campaignId\n campaignFlowNodeId\n entityConversationId\n interactionId\n interactionAttendeeId\n body\n metadata\n referenceMessageId\n createdAt\n updatedAt\n deletedAt\n messageAttachments {\n items {\n \n id\n externalId\n interactionId\n interactionMessageId\n name\n size\n type\n file {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n nextToken\n }\n";
2284
2297
  declare const FIELDS_INTERACTION_MESSAGE_EXPANDED = "\n id\n externalId\n endpointId\n endpoint {\n \n id\n externalId\n tenantId\n widgetId\n address\n configuration\n createdAt\n updatedAt\n deletedAt\n\n }\n campaignId\n campaignFlowNodeId\n entityConversationId\n interactionId\n interactionAttendeeId\n interactionAttendee {\n \n id\n interactionId\n entityId\n interactionWidgetSessionId\n teamId\n userId\n userSessionId\n name\n metadata\n customFields\n isAdministrator\n joinedAt\n exitedAt\n createdAt\n updatedAt\n deletedAt\n\n }\n body\n metadata\n referenceMessageId\n createdAt\n updatedAt\n deletedAt\n messageAttachments {\n items {\n \n id\n externalId\n interactionId\n interactionMessageId\n name\n size\n type\n file {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n\n }\n nextToken\n }\n";
@@ -2485,5 +2498,121 @@ declare class CustomValidators {
2485
2498
  static trimLength(minLength: number): ValidatorFn;
2486
2499
  }
2487
2500
 
2488
- export { AMPLIFY_CONFIG, AppSyncHelperService, CleanDeep, CommonService, CustomPipesModule, CustomValidators, DomainNamePipe, EncryptedStorageService, EntityConversationService, EntityService, ErrorComponent, FIELDS_COUNTRY, FIELDS_ENTITY, FIELDS_ENTITY_CONVERSATION, FIELDS_ENTITY_CONVERSATION_EXPANDED, FIELDS_ENTITY_CONVERSATION_MINIMAL, FIELDS_ENTITY_EXPANDED, FIELDS_ENTITY_MINIMAL, FIELDS_ENTITY_TYPE, FIELDS_INTERACTION, FIELDS_INTERACTION_ATTENDEE, FIELDS_INTERACTION_ATTENDEE_EXPANDED, FIELDS_INTERACTION_ENDPOINT, FIELDS_INTERACTION_ENDPOINT_MINIMAL, FIELDS_INTERACTION_EXPANDED, FIELDS_INTERACTION_HOST, FIELDS_INTERACTION_INVITEE, FIELDS_INTERACTION_MESSAGE, FIELDS_INTERACTION_MESSAGE_ATTACHMENT, FIELDS_INTERACTION_MESSAGE_EXPANDED, FIELDS_INTERACTION_MINIMAL, FIELDS_INTERACTION_WIDGET, FIELDS_INTERACTION_WIDGET_USER_SETTING, FIELDS_LANGUAGE, FIELDS_PHONE_NUMBER, FIELDS_TEAM, FIELDS_TEAM_MEMBER, FIELDS_TENANT, FIELDS_TENANT_COMPLIANCE_DOCUMENT, FIELDS_TENANT_EXPANDED, FIELDS_TENANT_MINIMAL, FIELDS_TICKET, FIELDS_TICKET_PRIORITY, FIELDS_TICKET_STATUS, FIELDS_TICKET_TYPE, FIELDS_USER, FIELDS_USER_SESSION, FooterComponent, FormatEpochTimestampPipe, InteractionChannel, InteractionContext, InteractionDirection, InteractionEndpointService, InteractionProvider, InteractionRouteLogic, InteractionService, InteractionStatus, InteractionWidgetService, LoaderComponent, ModelAttributeTypes, ModelSortDirection, OpenSearchHelperService, ProcessingStatus, S3HelperService, SafeHtmlPipe, SearchInnerFieldPipe, SearchPipe, SingularizePipe, SnugdeskAuthenticationService, SnugdeskCoreModule, SnugdeskIPRegistryService, StorageType, TeamService, TenantComplianceDocumentStatus, TenantComplianceDocumentType, TenantSSOConfigurationProtocol, TenantService, TicketService, UserService, UserSessionService, UserStatus, UserType, provideAmplifyConfig };
2489
- export type { AmplifyConfig, Country, CreateEntityConversationInput, CreateEntityInput, CreateInteractionAttendeeInput, CreateInteractionEndpointInput, CreateInteractionHostInput, CreateInteractionInput, CreateInteractionInviteeInput, CreateInteractionMessageAttachmentInput, CreateInteractionMessageInput, CreateTeamInput, CreateTeamMemberInput, CreateTenantComplianceDocumentInput, CreateTenantInput, CreateUserInput, Currency, EncryptedStorageKeys, Entity, EntityContactPreferences, EntityConversation, EntityPreferences, EntityType, Interaction, InteractionAttendee, InteractionEndpoint, InteractionEndpointPriceDetails, InteractionEndpointRegulatoryComplianceDocument, InteractionHost, InteractionInvitee, InteractionMessage, InteractionMessageAttachment, InteractionRouteConfiguration, InteractionRouteConfigurationInput, InteractionWidget, InteractionWidgetUserSetting, Language, List, ModelBooleanInput, ModelEntityConditionInput, ModelEntityConversationConditionInput, ModelEntityConversationFilterInput, ModelEntityFilterInput, ModelEntityTypeConditionInput, ModelEntityTypeFilterInput, ModelIDInput, ModelIDKeyConditionInput, ModelIntInput, ModelIntKeyConditionInput, ModelInteractionAttendeeConditionInput, ModelInteractionAttendeeFilterInput, ModelInteractionChannelInput, ModelInteractionConditionInput, ModelInteractionContextInput, ModelInteractionDirectionInput, ModelInteractionEndpointConditionInput, ModelInteractionEndpointFilterInput, ModelInteractionFilterInput, ModelInteractionHostConditionInput, ModelInteractionHostFilterInput, ModelInteractionInviteeConditionInput, ModelInteractionInviteeFilterInput, ModelInteractionMessageAttachmentConditionInput, ModelInteractionMessageAttachmentFilterInput, ModelInteractionMessageConditionInput, ModelInteractionMessageFilterInput, ModelInteractionProviderInput, ModelInteractionStatusInput, ModelInteractionWidgetConditionInput, ModelInteractionWidgetFilterInput, ModelInteractionWidgetUserSettingFilterInput, ModelProcessingStatusInput, ModelSizeInput, ModelStringInput, ModelStringKeyConditionInput, ModelTeamConditionInput, ModelTeamFilterInput, ModelTeamMemberConditionInput, ModelTeamMemberFilterInput, ModelTenantComplianceDocumentConditionInput, ModelTenantComplianceDocumentFilterInput, ModelTenantComplianceDocumentStatusInput, ModelTenantComplianceDocumentTypeInput, ModelTenantConditionInput, ModelTicketConditionInput, ModelTicketFilterInput, ModelTicketPriorityConditionInput, ModelTicketPriorityFilterInput, ModelTicketStatusConditionInput, ModelTicketStatusFilterInput, ModelTicketTypeConditionInput, ModelTicketTypeFilterInput, ModelUserConditionInput, ModelUserFilterInput, ModelUserSessionConditionInput, ModelUserSessionFilterInput, ModelUserStatusInput, ModelUserTypeInput, OpenSearchHit, OpenSearchResponse, PhoneNumber, S3Config, S3Credentials, S3Object, SubscriptionResponse, Team, TeamMember, Tenant, TenantBillingInformation, TenantComplianceDocument, TenantContactInformation, TenantPreferences, TenantSSOConfiguration, TenantSecurity, Ticket, TicketPriority, TicketStatus, TicketType, UpdateEntityConversationInput, UpdateEntityInput, UpdateInteractionAttendeeInput, UpdateInteractionEndpointInput, UpdateInteractionHostInput, UpdateInteractionInput, UpdateInteractionInviteeInput, UpdateTeamInput, UpdateTeamMemberInput, UpdateTenantComplianceDocumentInput, UpdateTenantInput, UpdateUserInput, UpdateUserSessionInput, User, UserNotificationSettings, UserPreferences, UserSession };
2501
+ interface OAuthConfig {
2502
+ clientId: string;
2503
+ clientSecret: string;
2504
+ refreshToken: string;
2505
+ accessToken?: string;
2506
+ tokenExpiry?: number;
2507
+ }
2508
+ interface MailboxConfig {
2509
+ displayName: string;
2510
+ sendingMethod: 'SMTP' | 'SES';
2511
+ smtpHost?: string;
2512
+ smtpPort?: number;
2513
+ smtpUsername?: string;
2514
+ smtpPassword?: string;
2515
+ smtpEncryption?: 'TLS' | 'SSL';
2516
+ oauthConfig?: OAuthConfig;
2517
+ signature?: string;
2518
+ isDefault: boolean;
2519
+ isActive: boolean;
2520
+ replyToAddress?: string;
2521
+ sesConfigurationSetName?: string;
2522
+ }
2523
+
2524
+ interface EmailMessageMetadata {
2525
+ emailMessageId: string;
2526
+ inReplyTo?: string;
2527
+ references?: string[];
2528
+ cc?: string[];
2529
+ bcc?: string[];
2530
+ subject: string;
2531
+ from: string;
2532
+ to: string[];
2533
+ direction: 'INBOUND' | 'OUTBOUND';
2534
+ sesMessageId?: string;
2535
+ deliveryStatus?: 'SENT' | 'DELIVERED' | 'BOUNCED' | 'FAILED';
2536
+ isSpam?: boolean;
2537
+ spamReason?: string;
2538
+ }
2539
+
2540
+ interface EmailTemplate {
2541
+ id: string;
2542
+ tenantId: string;
2543
+ name: string;
2544
+ subject?: string;
2545
+ body: string;
2546
+ variables?: Record<string, any>[];
2547
+ category?: string;
2548
+ isActive: boolean;
2549
+ createdByUserId: string;
2550
+ createdAt: number;
2551
+ updatedAt: number;
2552
+ deletedAt?: number;
2553
+ }
2554
+
2555
+ interface EmailConversationFilters {
2556
+ endpointId?: string;
2557
+ isRead?: boolean;
2558
+ hasTicket?: boolean;
2559
+ isSpam?: boolean;
2560
+ dateFrom?: number;
2561
+ dateTo?: number;
2562
+ searchQuery?: string;
2563
+ }
2564
+
2565
+ declare function sanitizeHtmlBody(html: string): string;
2566
+
2567
+ declare class EmailEntityResolverService {
2568
+ private entityService;
2569
+ constructor(entityService: EntityService);
2570
+ resolveEntity(tenantId: string, senderEmail: string, senderName?: string): Promise<Entity | null>;
2571
+ static ɵfac: i0.ɵɵFactoryDeclaration<EmailEntityResolverService, never>;
2572
+ static ɵprov: i0.ɵɵInjectableDeclaration<EmailEntityResolverService>;
2573
+ }
2574
+
2575
+ interface EmailHeaders {
2576
+ messageId: string;
2577
+ inReplyTo?: string;
2578
+ references?: string[];
2579
+ subject: string;
2580
+ to?: string[];
2581
+ cc?: string[];
2582
+ }
2583
+ declare class EmailConversationResolverService {
2584
+ private entityConversationService;
2585
+ private interactionService;
2586
+ constructor(entityConversationService: EntityConversationService, interactionService: InteractionService);
2587
+ /**
2588
+ * Resolves an existing conversation or returns null if no match found.
2589
+ * 5-step matching:
2590
+ * 1. Parse encoded reply address (reply+{tenantId}_{conversationId}@reply.platform.com)
2591
+ * 2. Match In-Reply-To header → InteractionMessage.metadata.emailMessageId
2592
+ * 3. Match References header → conversation metadata.threadReferences
2593
+ * 4. Normalize subject (remove Re:, Fwd:, FW:) → match conversation metadata.subject
2594
+ * 5. No match → return null (caller creates new EntityConversation)
2595
+ */
2596
+ resolveConversation(tenantId: string, entityId: string, emailHeaders: EmailHeaders, endpointId: string): Promise<EntityConversation | null>;
2597
+ parseReplyAddress(recipients: string[]): string | null;
2598
+ normalizeSubject(subject: string): string;
2599
+ private matchByInReplyTo;
2600
+ private matchByReferences;
2601
+ private matchBySubject;
2602
+ static ɵfac: i0.ɵɵFactoryDeclaration<EmailConversationResolverService, never>;
2603
+ static ɵprov: i0.ɵɵInjectableDeclaration<EmailConversationResolverService>;
2604
+ }
2605
+
2606
+ declare const FIELDS_EMAIL_TEMPLATE = "\n id\n tenantId\n name\n subject\n body\n variables\n category\n isActive\n createdByUserId\n createdAt\n updatedAt\n deletedAt\n";
2607
+ declare class EmailTemplateService {
2608
+ private appSyncHelperService;
2609
+ constructor(appSyncHelperService: AppSyncHelperService);
2610
+ listTemplates(tenantId: string, category?: string): Promise<List<EmailTemplate>>;
2611
+ getTemplate(templateId: string): Promise<EmailTemplate | null>;
2612
+ renderTemplate(body: string, variables: Record<string, any>): string;
2613
+ static ɵfac: i0.ɵɵFactoryDeclaration<EmailTemplateService, never>;
2614
+ static ɵprov: i0.ɵɵInjectableDeclaration<EmailTemplateService>;
2615
+ }
2616
+
2617
+ export { AMPLIFY_CONFIG, AppSyncHelperService, CleanDeep, CommonService, CustomPipesModule, CustomValidators, DomainNamePipe, EmailConversationResolverService, EmailEntityResolverService, EmailTemplateService, EncryptedStorageService, EntityConversationService, EntityService, ErrorComponent, FIELDS_COUNTRY, FIELDS_EMAIL_TEMPLATE, FIELDS_ENTITY, FIELDS_ENTITY_CONVERSATION, FIELDS_ENTITY_CONVERSATION_EXPANDED, FIELDS_ENTITY_CONVERSATION_MINIMAL, FIELDS_ENTITY_EXPANDED, FIELDS_ENTITY_MINIMAL, FIELDS_ENTITY_TYPE, FIELDS_INTERACTION, FIELDS_INTERACTION_ATTENDEE, FIELDS_INTERACTION_ATTENDEE_EXPANDED, FIELDS_INTERACTION_ENDPOINT, FIELDS_INTERACTION_ENDPOINT_MINIMAL, FIELDS_INTERACTION_EXPANDED, FIELDS_INTERACTION_HOST, FIELDS_INTERACTION_INVITEE, FIELDS_INTERACTION_MESSAGE, FIELDS_INTERACTION_MESSAGE_ATTACHMENT, FIELDS_INTERACTION_MESSAGE_EXPANDED, FIELDS_INTERACTION_MINIMAL, FIELDS_INTERACTION_WIDGET, FIELDS_INTERACTION_WIDGET_USER_SETTING, FIELDS_LANGUAGE, FIELDS_PHONE_NUMBER, FIELDS_TEAM, FIELDS_TEAM_MEMBER, FIELDS_TENANT, FIELDS_TENANT_COMPLIANCE_DOCUMENT, FIELDS_TENANT_EXPANDED, FIELDS_TENANT_MINIMAL, FIELDS_TICKET, FIELDS_TICKET_PRIORITY, FIELDS_TICKET_STATUS, FIELDS_TICKET_TYPE, FIELDS_USER, FIELDS_USER_SESSION, FooterComponent, FormatEpochTimestampPipe, InteractionChannel, InteractionContext, InteractionDirection, InteractionEndpointService, InteractionProvider, InteractionRouteLogic, InteractionService, InteractionStatus, InteractionWidgetService, LoaderComponent, ModelAttributeTypes, ModelSortDirection, OpenSearchHelperService, ProcessingStatus, S3HelperService, SafeHtmlPipe, SearchInnerFieldPipe, SearchPipe, SingularizePipe, SnugdeskAuthenticationService, SnugdeskCoreModule, SnugdeskIPRegistryService, StorageType, TeamService, TenantComplianceDocumentStatus, TenantComplianceDocumentType, TenantSSOConfigurationProtocol, TenantService, TicketService, UserService, UserSessionService, UserStatus, UserType, provideAmplifyConfig, sanitizeHtmlBody };
2618
+ export type { AmplifyConfig, Country, CreateEntityConversationInput, CreateEntityInput, CreateInteractionAttendeeInput, CreateInteractionEndpointInput, CreateInteractionHostInput, CreateInteractionInput, CreateInteractionInviteeInput, CreateInteractionMessageAttachmentInput, CreateInteractionMessageInput, CreateTeamInput, CreateTeamMemberInput, CreateTenantComplianceDocumentInput, CreateTenantInput, CreateUserInput, Currency, EmailConversationFilters, EmailHeaders, EmailMessageMetadata, EmailTemplate, EncryptedStorageKeys, Entity, EntityContactPreferences, EntityConversation, EntityPreferences, EntityType, Interaction, InteractionAttendee, InteractionEndpoint, InteractionEndpointPriceDetails, InteractionEndpointRegulatoryComplianceDocument, InteractionHost, InteractionInvitee, InteractionMessage, InteractionMessageAttachment, InteractionRouteConfiguration, InteractionRouteConfigurationInput, InteractionWidget, InteractionWidgetUserSetting, Language, List, MailboxConfig, ModelBooleanInput, ModelEntityConditionInput, ModelEntityConversationConditionInput, ModelEntityConversationFilterInput, ModelEntityFilterInput, ModelEntityTypeConditionInput, ModelEntityTypeFilterInput, ModelIDInput, ModelIDKeyConditionInput, ModelIntInput, ModelIntKeyConditionInput, ModelInteractionAttendeeConditionInput, ModelInteractionAttendeeFilterInput, ModelInteractionChannelInput, ModelInteractionConditionInput, ModelInteractionContextInput, ModelInteractionDirectionInput, ModelInteractionEndpointConditionInput, ModelInteractionEndpointFilterInput, ModelInteractionFilterInput, ModelInteractionHostConditionInput, ModelInteractionHostFilterInput, ModelInteractionInviteeConditionInput, ModelInteractionInviteeFilterInput, ModelInteractionMessageAttachmentConditionInput, ModelInteractionMessageAttachmentFilterInput, ModelInteractionMessageConditionInput, ModelInteractionMessageFilterInput, ModelInteractionProviderInput, ModelInteractionStatusInput, ModelInteractionWidgetConditionInput, ModelInteractionWidgetFilterInput, ModelInteractionWidgetUserSettingFilterInput, ModelProcessingStatusInput, ModelSizeInput, ModelStringInput, ModelStringKeyConditionInput, ModelTeamConditionInput, ModelTeamFilterInput, ModelTeamMemberConditionInput, ModelTeamMemberFilterInput, ModelTenantComplianceDocumentConditionInput, ModelTenantComplianceDocumentFilterInput, ModelTenantComplianceDocumentStatusInput, ModelTenantComplianceDocumentTypeInput, ModelTenantConditionInput, ModelTicketConditionInput, ModelTicketFilterInput, ModelTicketPriorityConditionInput, ModelTicketPriorityFilterInput, ModelTicketStatusConditionInput, ModelTicketStatusFilterInput, ModelTicketTypeConditionInput, ModelTicketTypeFilterInput, ModelUserConditionInput, ModelUserFilterInput, ModelUserSessionConditionInput, ModelUserSessionFilterInput, ModelUserStatusInput, ModelUserTypeInput, OAuthConfig, OpenSearchHit, OpenSearchResponse, PhoneNumber, S3Config, S3Credentials, S3Object, SubscriptionResponse, Team, TeamMember, Tenant, TenantBillingInformation, TenantComplianceDocument, TenantContactInformation, TenantPreferences, TenantSSOConfiguration, TenantSecurity, Ticket, TicketPriority, TicketStatus, TicketType, UpdateEntityConversationInput, UpdateEntityInput, UpdateInteractionAttendeeInput, UpdateInteractionEndpointInput, UpdateInteractionHostInput, UpdateInteractionInput, UpdateInteractionInviteeInput, UpdateTeamInput, UpdateTeamMemberInput, UpdateTenantComplianceDocumentInput, UpdateTenantInput, UpdateUserInput, UpdateUserSessionInput, User, UserNotificationSettings, UserPreferences, UserSession };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snugdesk/core",
3
- "version": "0.2.29",
3
+ "version": "0.2.31",
4
4
  "description": "Core utility and session management library required for all Snugdesk widgets. Handles authentication, configuration, and shared services.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=19.0.0",