@snugdesk/core 0.2.23 → 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 = {
@@ -2059,7 +2242,10 @@ declare class TeamService {
2059
2242
  static ɵprov: i0.ɵɵInjectableDeclaration<TeamService>;
2060
2243
  }
2061
2244
 
2062
- 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";
2063
2249
  type __SubscriptionContainer$2 = {
2064
2250
  OnTenantById: Tenant;
2065
2251
  };
@@ -2067,6 +2253,12 @@ declare class TenantService {
2067
2253
  private readonly appSyncService;
2068
2254
  constructor(appSyncService: AppSyncHelperService);
2069
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>>;
2070
2262
  OnTenantByIdListener(id: string): Observable<SubscriptionResponse<Pick<__SubscriptionContainer$2, 'OnTenantById'>>>;
2071
2263
  static ɵfac: i0.ɵɵFactoryDeclaration<TenantService, never>;
2072
2264
  static ɵprov: i0.ɵɵInjectableDeclaration<TenantService>;
@@ -2180,5 +2372,5 @@ declare class CustomValidators {
2180
2372
  static trimLength(minLength: number): ValidatorFn;
2181
2373
  }
2182
2374
 
2183
- 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_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 };
2184
- export type { AmplifyConfig, Country, CountryCurrency, CreateEntityConversationInput, CreateEntityInput, CreateInteractionAttendeeInput, CreateInteractionEndpointInput, 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, ModelInteractionEndpointConditionInput, ModelInteractionEndpointFilterInput, 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, UpdateInteractionEndpointInput, 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.23",
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",