@solibo/solibo-sdk 1.8.10 → 1.8.11

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.
@@ -16012,6 +16012,8 @@ export interface PushNotificationInboxItemProps {
16012
16012
  data?: Map<string, string | null | undefined> | null | undefined;
16013
16013
  notificationType?: string | null | undefined;
16014
16014
  openedAt?: SoliboInstant /* Instant */ | null | undefined;
16015
+ read?: boolean | null | undefined;
16016
+ readAt?: SoliboInstant /* Instant */ | null | undefined;
16015
16017
  receivedAt?: SoliboInstant /* Instant */ | null | undefined;
16016
16018
  sentAt: SoliboInstant /* Instant */;
16017
16019
  state?: CommunicationStateProps | null | undefined;
@@ -16021,12 +16023,14 @@ export interface PushNotificationInboxItemProps {
16021
16023
  }
16022
16024
  export declare class PushNotificationInboxItem {
16023
16025
  constructor(props: PushNotificationInboxItemProps);
16024
- constructor(body: string | null | undefined, companyId: bigint, data: Map<string, string | null | undefined> | null | undefined, notificationType: string | null | undefined, openedAt: SoliboInstant /* Instant */ | null | undefined, receivedAt: SoliboInstant /* Instant */ | null | undefined, sentAt: SoliboInstant /* Instant */, state: CommunicationState | null | undefined, title: string | null | undefined, trackingId: string, updatedAt: SoliboInstant /* Instant */);
16026
+ constructor(body: string | null | undefined, companyId: bigint, data: Map<string, string | null | undefined> | null | undefined, notificationType: string | null | undefined, openedAt: SoliboInstant /* Instant */ | null | undefined, read: boolean | null | undefined, readAt: SoliboInstant /* Instant */ | null | undefined, receivedAt: SoliboInstant /* Instant */ | null | undefined, sentAt: SoliboInstant /* Instant */, state: CommunicationState | null | undefined, title: string | null | undefined, trackingId: string, updatedAt: SoliboInstant /* Instant */);
16025
16027
  get body(): string | null | undefined;
16026
16028
  get companyId(): bigint;
16027
16029
  get data(): Map<string, string | null | undefined> | null | undefined;
16028
16030
  get notificationType(): string | null | undefined;
16029
16031
  get openedAt(): SoliboInstant /* Instant */ | null | undefined;
16032
+ get read(): boolean | null | undefined;
16033
+ get readAt(): SoliboInstant /* Instant */ | null | undefined;
16030
16034
  get receivedAt(): SoliboInstant /* Instant */ | null | undefined;
16031
16035
  get sentAt(): SoliboInstant /* Instant */;
16032
16036
  get state(): CommunicationState | null | undefined;
@@ -22027,6 +22031,7 @@ export declare class CommunicationApi extends ApiClient.$metadata$.constructor {
22027
22031
  createLetterInCompany(companyId: bigint, sendLetterCommand: SendLetterCommand): Promise<HttpResponse<SentLetter>>;
22028
22032
  createMultipleEmailNewsletters(bulkCreateNewslettersCommand: BulkCreateNewslettersCommand): Promise<HttpResponse<BulkCreateNewslettersResult>>;
22029
22033
  createMultipleSMSBroadcasts(bulkCreateSMSBroadcastsCommand: BulkCreateSMSBroadcastsCommand): Promise<HttpResponse<BulkCreateSMSBroadcastsResult>>;
22034
+ createPushNotificationRead(companyId: bigint, trackingId: bigint): Promise<HttpResponse<void>>;
22030
22035
  createSMSBroadcast(companyId: bigint, createSMSBroadcastCommand: CreateSMSBroadcastCommand): Promise<HttpResponse<SMSBroadcast>>;
22031
22036
  createSMSPurchase(companyId: bigint, bundleId: bigint): Promise<HttpResponse<void>>;
22032
22037
  deleteEmailNewsletter(companyId: bigint, newsletterId: bigint): Promise<HttpResponse<void>>;