@snugdesk/core 0.2.22 → 0.2.24

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
@@ -540,6 +540,62 @@ type ModelEntityTypeFilterInput = {
540
540
  not?: ModelEntityTypeFilterInput | null;
541
541
  };
542
542
 
543
+ declare enum TenantComplianceDocumentStatus {
544
+ ACTIVE = "ACTIVE",
545
+ EXPIRED = "EXPIRED",
546
+ REVOKED = "REVOKED",
547
+ PENDING_VERIFICATION = "PENDING_VERIFICATION"
548
+ }
549
+ declare enum TenantComplianceDocumentType {
550
+ PAN_CARD = "PAN_CARD",
551
+ GST_CERTIFICATE = "GST_CERTIFICATE",
552
+ TDS_REGISTRATION = "TDS_REGISTRATION",
553
+ GOVT_CERTIFICATE = "GOVT_CERTIFICATE",
554
+ OTHER = "OTHER"
555
+ }
556
+ declare enum TenantSSOConfigurationProtocol {
557
+ SAML = "SAML",
558
+ OIDC = "OIDC"
559
+ }
560
+ type Tenant = {
561
+ id: string;
562
+ externalId?: string | null;
563
+ tenantDomain: string;
564
+ organizationName: string;
565
+ websiteURL?: string | null;
566
+ image?: S3Object | null;
567
+ billingInformation?: TenantBillingInformation | null;
568
+ contactInformation?: TenantContactInformation | null;
569
+ preferences?: TenantPreferences | null;
570
+ ssoConfiguration?: TenantSSOConfiguration | null;
571
+ security?: TenantSecurity | null;
572
+ activatedAt?: number | null;
573
+ blockedAt?: number | null;
574
+ createdAt: number;
575
+ updatedAt: number;
576
+ deletedAt?: number | null;
577
+ updatedByUserId: string;
578
+ updatedByUserSessionId?: string | null;
579
+ };
580
+ type TenantComplianceDocument = {
581
+ id: string;
582
+ tenantId: string;
583
+ documentName?: string | null;
584
+ documentType: TenantComplianceDocumentType;
585
+ documentNumber?: string | null;
586
+ legalEntityName?: string | null;
587
+ issuedBy?: string | null;
588
+ issueDate?: number | null;
589
+ expiryDate?: number | null;
590
+ status: TenantComplianceDocumentStatus;
591
+ notes?: string | null;
592
+ file: S3Object;
593
+ createdAt: number;
594
+ updatedAt: number;
595
+ deletedAt?: number | null;
596
+ updatedByUserId: string;
597
+ updatedByUserSessionId?: string | null;
598
+ };
543
599
  type TenantBillingInformation = {
544
600
  companyName: string;
545
601
  address?: string | null;
@@ -580,24 +636,151 @@ type TenantSSOConfiguration = {
580
636
  isEnabled?: boolean | null;
581
637
  isDefaultLoginMode?: boolean | null;
582
638
  };
583
- declare enum TenantSSOConfigurationProtocol {
584
- SAML = "SAML",
585
- OIDC = "OIDC"
586
- }
587
- type Tenant = {
588
- id: string;
639
+ type CreateTenantInput = {
640
+ id?: string | null;
589
641
  externalId?: string | null;
590
642
  tenantDomain: string;
591
643
  organizationName: string;
592
644
  websiteURL?: string | null;
593
645
  image?: S3Object | null;
646
+ billingInformation?: TenantBillingInformation | null;
647
+ contactInformation?: TenantContactInformation | null;
594
648
  preferences?: TenantPreferences | null;
649
+ ssoConfiguration?: TenantSSOConfiguration | null;
595
650
  security?: TenantSecurity | null;
651
+ temp_activationToken?: string | null;
596
652
  activatedAt?: number | null;
597
653
  blockedAt?: number | null;
598
654
  createdAt: number;
599
655
  updatedAt: number;
600
656
  deletedAt?: number | null;
657
+ updatedByUserId: string;
658
+ updatedByUserSessionId?: string | null;
659
+ };
660
+ type UpdateTenantInput = {
661
+ id: string;
662
+ externalId?: string | null;
663
+ tenantDomain?: string | null;
664
+ organizationName?: string | null;
665
+ websiteURL?: string | null;
666
+ image?: S3Object | null;
667
+ billingInformation?: TenantBillingInformation | null;
668
+ contactInformation?: TenantContactInformation | null;
669
+ preferences?: TenantPreferences | null;
670
+ ssoConfiguration?: TenantSSOConfiguration | null;
671
+ security?: TenantSecurity | null;
672
+ temp_activationToken?: string | null;
673
+ activatedAt?: number | null;
674
+ blockedAt?: number | null;
675
+ createdAt?: number | null;
676
+ updatedAt?: number | null;
677
+ deletedAt?: number | null;
678
+ updatedByUserId?: string | null;
679
+ updatedByUserSessionId?: string | null;
680
+ };
681
+ type ModelTenantConditionInput = {
682
+ externalId?: ModelStringInput | null;
683
+ tenantDomain?: ModelStringInput | null;
684
+ organizationName?: ModelStringInput | null;
685
+ websiteURL?: ModelStringInput | null;
686
+ temp_activationToken?: ModelStringInput | null;
687
+ activatedAt?: ModelIntInput | null;
688
+ blockedAt?: ModelIntInput | null;
689
+ createdAt?: ModelIntInput | null;
690
+ updatedAt?: ModelIntInput | null;
691
+ deletedAt?: ModelIntInput | null;
692
+ updatedByUserId?: ModelIDInput | null;
693
+ updatedByUserSessionId?: ModelIDInput | null;
694
+ and?: Array<ModelTenantConditionInput | null> | null;
695
+ or?: Array<ModelTenantConditionInput | null> | null;
696
+ not?: ModelTenantConditionInput | null;
697
+ };
698
+ type CreateTenantComplianceDocumentInput = {
699
+ id?: string | null;
700
+ tenantId: string;
701
+ documentName?: string | null;
702
+ documentType: TenantComplianceDocumentType;
703
+ documentNumber?: string | null;
704
+ legalEntityName?: string | null;
705
+ issuedBy?: string | null;
706
+ issueDate?: number | null;
707
+ expiryDate?: number | null;
708
+ status: TenantComplianceDocumentStatus;
709
+ notes?: string | null;
710
+ file: S3Object;
711
+ createdAt: number;
712
+ updatedAt: number;
713
+ deletedAt?: number | null;
714
+ updatedByUserId: string;
715
+ updatedByUserSessionId?: string | null;
716
+ };
717
+ type UpdateTenantComplianceDocumentInput = {
718
+ id: string;
719
+ tenantId?: string | null;
720
+ documentName?: string | null;
721
+ documentType?: TenantComplianceDocumentType | null;
722
+ documentNumber?: string | null;
723
+ legalEntityName?: string | null;
724
+ issuedBy?: string | null;
725
+ issueDate?: number | null;
726
+ expiryDate?: number | null;
727
+ status?: TenantComplianceDocumentStatus | null;
728
+ notes?: string | null;
729
+ file?: S3Object | null;
730
+ createdAt?: number | null;
731
+ updatedAt?: number | null;
732
+ deletedAt?: number | null;
733
+ updatedByUserId?: string | null;
734
+ updatedByUserSessionId?: string | null;
735
+ };
736
+ type ModelTenantComplianceDocumentConditionInput = {
737
+ tenantId?: ModelIDInput | null;
738
+ documentName?: ModelStringInput | null;
739
+ documentType?: ModelTenantComplianceDocumentTypeInput | null;
740
+ documentNumber?: ModelStringInput | null;
741
+ legalEntityName?: ModelStringInput | null;
742
+ issuedBy?: ModelStringInput | null;
743
+ issueDate?: ModelIntInput | null;
744
+ expiryDate?: ModelIntInput | null;
745
+ status?: ModelTenantComplianceDocumentStatusInput | null;
746
+ notes?: ModelStringInput | null;
747
+ createdAt?: ModelIntInput | null;
748
+ updatedAt?: ModelIntInput | null;
749
+ deletedAt?: ModelIntInput | null;
750
+ updatedByUserId?: ModelIDInput | null;
751
+ updatedByUserSessionId?: ModelIDInput | null;
752
+ and?: Array<ModelTenantComplianceDocumentConditionInput | null> | null;
753
+ or?: Array<ModelTenantComplianceDocumentConditionInput | null> | null;
754
+ not?: ModelTenantComplianceDocumentConditionInput | null;
755
+ };
756
+ type ModelTenantComplianceDocumentFilterInput = {
757
+ id?: ModelIDInput | null;
758
+ tenantId?: ModelIDInput | null;
759
+ documentName?: ModelStringInput | null;
760
+ documentType?: ModelTenantComplianceDocumentTypeInput | null;
761
+ documentNumber?: ModelStringInput | null;
762
+ legalEntityName?: ModelStringInput | null;
763
+ issuedBy?: ModelStringInput | null;
764
+ issueDate?: ModelIntInput | null;
765
+ expiryDate?: ModelIntInput | null;
766
+ status?: ModelTenantComplianceDocumentStatusInput | null;
767
+ notes?: ModelStringInput | null;
768
+ createdAt?: ModelIntInput | null;
769
+ updatedAt?: ModelIntInput | null;
770
+ deletedAt?: ModelIntInput | null;
771
+ updatedByUserId?: ModelIDInput | null;
772
+ updatedByUserSessionId?: ModelIDInput | null;
773
+ and?: Array<ModelTenantComplianceDocumentFilterInput | null> | null;
774
+ or?: Array<ModelTenantComplianceDocumentFilterInput | null> | null;
775
+ not?: ModelTenantComplianceDocumentFilterInput | null;
776
+ };
777
+ type ModelTenantComplianceDocumentTypeInput = {
778
+ eq?: TenantComplianceDocumentType | null;
779
+ ne?: TenantComplianceDocumentType | null;
780
+ };
781
+ type ModelTenantComplianceDocumentStatusInput = {
782
+ eq?: TenantComplianceDocumentStatus | null;
783
+ ne?: TenantComplianceDocumentStatus | null;
601
784
  };
602
785
 
603
786
  type InteractionWidget = {
@@ -717,6 +900,69 @@ type InteractionEndpointRegulatoryComplianceDocument = {
717
900
  contentType?: string | null;
718
901
  file?: S3Object | null;
719
902
  };
903
+ type CreateInteractionEndpointInput = {
904
+ id?: string | null;
905
+ externalId: string;
906
+ tenantId: string;
907
+ widgetId: string;
908
+ address: string;
909
+ configuration?: string | null;
910
+ buyPrice?: InteractionEndpointPriceDetails | null;
911
+ sellPrice?: InteractionEndpointPriceDetails | null;
912
+ documents?: Array<InteractionEndpointRegulatoryComplianceDocument | null> | null;
913
+ createdAt: number;
914
+ updatedAt: number;
915
+ deletedAt?: number | null;
916
+ updatedByUserId: string;
917
+ updatedByUserSessionId?: string | null;
918
+ };
919
+ type UpdateInteractionEndpointInput = {
920
+ id: string;
921
+ externalId?: string | null;
922
+ tenantId?: string | null;
923
+ widgetId?: string | null;
924
+ address?: string | null;
925
+ configuration?: string | null;
926
+ buyPrice?: InteractionEndpointPriceDetails | null;
927
+ sellPrice?: InteractionEndpointPriceDetails | null;
928
+ documents?: Array<InteractionEndpointRegulatoryComplianceDocument | null> | null;
929
+ createdAt?: number | null;
930
+ updatedAt?: number | null;
931
+ deletedAt?: number | null;
932
+ updatedByUserId?: string | null;
933
+ updatedByUserSessionId?: string | null;
934
+ };
935
+ type ModelInteractionEndpointConditionInput = {
936
+ externalId?: ModelStringInput | null;
937
+ tenantId?: ModelIDInput | null;
938
+ widgetId?: ModelIDInput | null;
939
+ address?: ModelStringInput | null;
940
+ configuration?: ModelStringInput | null;
941
+ createdAt?: ModelIntInput | null;
942
+ updatedAt?: ModelIntInput | null;
943
+ deletedAt?: ModelIntInput | null;
944
+ updatedByUserId?: ModelIDInput | null;
945
+ updatedByUserSessionId?: ModelIDInput | null;
946
+ and?: Array<ModelInteractionEndpointConditionInput | null> | null;
947
+ or?: Array<ModelInteractionEndpointConditionInput | null> | null;
948
+ not?: ModelInteractionEndpointConditionInput | null;
949
+ };
950
+ type ModelInteractionEndpointFilterInput = {
951
+ id?: ModelIDInput | null;
952
+ externalId?: ModelStringInput | null;
953
+ tenantId?: ModelIDInput | null;
954
+ widgetId?: ModelIDInput | null;
955
+ address?: ModelStringInput | null;
956
+ configuration?: ModelStringInput | null;
957
+ createdAt?: ModelIntInput | null;
958
+ updatedAt?: ModelIntInput | null;
959
+ deletedAt?: ModelIntInput | null;
960
+ updatedByUserId?: ModelIDInput | null;
961
+ updatedByUserSessionId?: ModelIDInput | null;
962
+ and?: Array<ModelInteractionEndpointFilterInput | null> | null;
963
+ or?: Array<ModelInteractionEndpointFilterInput | null> | null;
964
+ not?: ModelInteractionEndpointFilterInput | null;
965
+ };
720
966
 
721
967
  type User = {
722
968
  id: string;
@@ -1915,8 +2161,16 @@ declare class EntityService {
1915
2161
  static ɵprov: i0.ɵɵInjectableDeclaration<EntityService>;
1916
2162
  }
1917
2163
 
1918
- declare const FIELDS_INTERACTION_ENDPOINT = "\n id\n externalId\n tenantId\n widgetId\n address\n configuration\n createdAt\n updatedAt\n deletedAt\n";
2164
+ declare const FIELDS_INTERACTION_ENDPOINT = "\n id\n externalId\n tenantId\n widgetId\n address\n configuration\n sellPrice {\n currency\n upfrontCost\n monthlyCost\n inboundCost\n outboundCost\n }\n documents {\n fileName\n documentType\n contentType\n }\n createdAt\n updatedAt\n deletedAt\n updatedByUserId\n updatedByUserSessionId\n";
2165
+ declare const FIELDS_INTERACTION_ENDPOINT_MINIMAL = "\n id\n externalId\n tenantId\n widgetId\n address\n configuration\n createdAt\n updatedAt\n deletedAt\n";
1919
2166
  declare class InteractionEndpointService {
2167
+ private readonly appSyncService;
2168
+ constructor(appSyncService: AppSyncHelperService);
2169
+ GetInteractionEndpoint(id: string): Promise<InteractionEndpoint>;
2170
+ CreateInteractionEndpoint(input: CreateInteractionEndpointInput, condition?: ModelInteractionEndpointConditionInput): Promise<InteractionEndpoint>;
2171
+ UpdateInteractionEndpoint(input: UpdateInteractionEndpointInput, condition?: ModelInteractionEndpointConditionInput): Promise<InteractionEndpoint>;
2172
+ ListInteractionEndpointsByTenantId(tenantId: string, address?: ModelStringKeyConditionInput, sortDirection?: ModelSortDirection, filter?: ModelInteractionEndpointFilterInput, limit?: number, nextToken?: string): Promise<List<InteractionEndpoint>>;
2173
+ ListInteractionEndpointsByWidgetId(widgetId: string, address?: ModelStringKeyConditionInput, sortDirection?: ModelSortDirection, filter?: ModelInteractionEndpointFilterInput, limit?: number, nextToken?: string): Promise<List<InteractionEndpoint>>;
1920
2174
  static ɵfac: i0.ɵɵFactoryDeclaration<InteractionEndpointService, never>;
1921
2175
  static ɵprov: i0.ɵɵInjectableDeclaration<InteractionEndpointService>;
1922
2176
  }
@@ -1988,7 +2242,10 @@ declare class TeamService {
1988
2242
  static ɵprov: i0.ɵɵInjectableDeclaration<TeamService>;
1989
2243
  }
1990
2244
 
1991
- declare const FIELDS_TENANT = "\n id\n externalId\n tenantDomain\n organizationName\n websiteURL\n image {\n key\n bucket\n location\n }\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n allowUserToChangePreferences\n }\n security {\n domainValidationTokenExpiry\n userValidationTokenExpiry\n secretTokenExpiry\n sessionTokenExpiry\n sessionIdleTimeout\n }\n activatedAt\n blockedAt\n createdAt\n updatedAt\n deletedAt\n";
2245
+ declare const FIELDS_TENANT = "\n id\n externalId\n tenantDomain\n organizationName\n websiteURL\n image {\n key\n bucket\n location\n }\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n allowUserToChangePreferences\n }\n security {\n domainValidationTokenExpiry\n userValidationTokenExpiry\n secretTokenExpiry\n sessionTokenExpiry\n sessionIdleTimeout\n }\n activatedAt\n blockedAt\n createdAt\n updatedAt\n deletedAt\n updatedByUserId\n updatedByUserSessionId\n";
2246
+ declare const FIELDS_TENANT_MINIMAL = "\n id\n externalId\n tenantDomain\n organizationName\n websiteURL\n image {\n location\n }\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n allowUserToChangePreferences\n }\n activatedAt\n blockedAt\n createdAt\n updatedAt\n deletedAt\n updatedByUserId\n updatedByUserSessionId\n";
2247
+ declare const FIELDS_TENANT_EXPANDED = "\n id\n externalId\n tenantDomain\n organizationName\n websiteURL\n image {\n key\n bucket\n location\n }\n billingInformation {\n companyName\n address\n state\n city\n postalCode\n companyIdentificationNumber\n taxIdentificationNumber\n }\n contactInformation {\n name\n email\n address\n state\n city\n postalCode\n }\n preferences {\n timezoneName\n language {\n code\n nameEn\n nameLocal\n }\n allowUserToChangePreferences\n }\n ssoConfiguration {\n provider\n protocol\n displayName\n configuration\n isEnabled\n isDefaultLoginMode\n }\n security {\n domainValidationTokenExpiry\n userValidationTokenExpiry\n secretTokenExpiry\n sessionTokenExpiry\n sessionIdleTimeout\n }\n activatedAt\n blockedAt\n createdAt\n updatedAt\n deletedAt\n updatedByUserId\n updatedByUserSessionId\n";
2248
+ declare const FIELDS_TENANT_COMPLIANCE_DOCUMENT = "\n id\n tenantId\n documentName\n documentType\n documentNumber\n legalEntityName\n issuedBy\n issueDate\n expiryDate\n status\n notes\n file {\n key\n bucket\n location\n }\n createdAt\n updatedAt\n deletedAt\n updatedByUserId\n updatedByUserSessionId\n";
1992
2249
  type __SubscriptionContainer$2 = {
1993
2250
  OnTenantById: Tenant;
1994
2251
  };
@@ -1996,6 +2253,12 @@ declare class TenantService {
1996
2253
  private readonly appSyncService;
1997
2254
  constructor(appSyncService: AppSyncHelperService);
1998
2255
  GetTenant(id: string): Promise<Tenant>;
2256
+ GetTenantExpanded(id: string): Promise<Tenant>;
2257
+ CreateTenant(input: CreateTenantInput, condition?: ModelTenantConditionInput): Promise<Tenant>;
2258
+ UpdateTenant(input: UpdateTenantInput, condition?: ModelTenantConditionInput): Promise<Tenant>;
2259
+ CreateTenantComplianceDocument(input: CreateTenantComplianceDocumentInput, condition?: ModelTenantComplianceDocumentConditionInput): Promise<TenantComplianceDocument>;
2260
+ UpdateTenantComplianceDocument(input: UpdateTenantComplianceDocumentInput, condition?: ModelTenantComplianceDocumentConditionInput): Promise<TenantComplianceDocument>;
2261
+ ListTenantComplianceDocumentsByTenantId(tenantId: string, updatedAt?: ModelIntKeyConditionInput, sortDirection?: ModelSortDirection, filter?: ModelTenantComplianceDocumentFilterInput, limit?: number, nextToken?: string): Promise<List<TenantComplianceDocument>>;
1999
2262
  OnTenantByIdListener(id: string): Observable<SubscriptionResponse<Pick<__SubscriptionContainer$2, 'OnTenantById'>>>;
2000
2263
  static ɵfac: i0.ɵɵFactoryDeclaration<TenantService, never>;
2001
2264
  static ɵprov: i0.ɵɵInjectableDeclaration<TenantService>;
@@ -2109,5 +2372,5 @@ declare class CustomValidators {
2109
2372
  static trimLength(minLength: number): ValidatorFn;
2110
2373
  }
2111
2374
 
2112
- export { AMPLIFY_CONFIG, AppSyncHelperService, CleanDeep, CustomPipesModule, CustomValidators, DomainNamePipe, EncryptedStorageService, EntityConversationService, EntityService, ErrorComponent, 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_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_TEAM, FIELDS_TEAM_MEMBER, FIELDS_TENANT, 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, TenantSSOConfigurationProtocol, TenantService, TicketService, UserService, UserSessionService, UserStatus, UserType, provideAmplifyConfig };
2113
- export type { AmplifyConfig, Country, CountryCurrency, CreateEntityConversationInput, CreateEntityInput, CreateInteractionAttendeeInput, CreateInteractionHostInput, CreateInteractionInput, CreateInteractionInviteeInput, CreateInteractionMessageAttachmentInput, CreateInteractionMessageInput, CreateTeamInput, CreateTeamMemberInput, 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, ModelInteractionFilterInput, ModelInteractionHostConditionInput, ModelInteractionHostFilterInput, ModelInteractionInviteeConditionInput, ModelInteractionInviteeFilterInput, ModelInteractionMessageAttachmentConditionInput, ModelInteractionMessageAttachmentFilterInput, ModelInteractionMessageConditionInput, ModelInteractionMessageFilterInput, ModelInteractionProviderInput, ModelInteractionStatusInput, ModelInteractionWidgetConditionInput, ModelInteractionWidgetFilterInput, ModelInteractionWidgetUserSettingFilterInput, ModelProcessingStatusInput, ModelSizeInput, ModelStringInput, ModelStringKeyConditionInput, ModelTeamConditionInput, ModelTeamFilterInput, ModelTeamMemberConditionInput, ModelTeamMemberFilterInput, ModelTicketConditionInput, ModelTicketFilterInput, ModelTicketPriorityConditionInput, ModelTicketPriorityFilterInput, ModelTicketStatusConditionInput, ModelTicketStatusFilterInput, ModelTicketTypeConditionInput, ModelTicketTypeFilterInput, ModelUserSessionConditionInput, ModelUserSessionFilterInput, ModelUserStatusInput, OpenSearchHit, OpenSearchResponse, PhoneNumber, S3Config, S3Credentials, S3Object, SubscriptionResponse, Team, TeamMember, Tenant, TenantBillingInformation, TenantContactInformation, TenantPreferences, TenantSSOConfiguration, TenantSecurity, Ticket, TicketPriority, TicketStatus, TicketType, UpdateEntityConversationInput, UpdateEntityInput, UpdateInteractionAttendeeInput, UpdateInteractionHostInput, UpdateInteractionInput, UpdateInteractionInviteeInput, UpdateTeamInput, UpdateTeamMemberInput, UpdateUserSessionInput, User, UserNotificationSettings, UserPreferences, UserSession };
2375
+ export { AMPLIFY_CONFIG, AppSyncHelperService, CleanDeep, CustomPipesModule, CustomValidators, DomainNamePipe, EncryptedStorageService, EntityConversationService, EntityService, ErrorComponent, 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_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 };
2376
+ export type { AmplifyConfig, Country, CountryCurrency, CreateEntityConversationInput, CreateEntityInput, CreateInteractionAttendeeInput, CreateInteractionEndpointInput, CreateInteractionHostInput, CreateInteractionInput, CreateInteractionInviteeInput, CreateInteractionMessageAttachmentInput, CreateInteractionMessageInput, CreateTeamInput, CreateTeamMemberInput, CreateTenantComplianceDocumentInput, CreateTenantInput, 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, ModelUserSessionConditionInput, ModelUserSessionFilterInput, ModelUserStatusInput, 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, UpdateUserSessionInput, User, UserNotificationSettings, UserPreferences, UserSession };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snugdesk/core",
3
- "version": "0.2.22",
3
+ "version": "0.2.24",
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",