@solibo/solibo-sdk 1.8.1 → 1.8.2
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/KmLogging-logging.mjs +98 -98
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- package/KotlinBigInteger-bignum.mjs +1114 -1114
- package/MultiplatformSettings-multiplatform-settings-test.mjs +18 -18
- package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
- package/Stately-stately-concurrency.mjs +3 -3
- package/bitops-library-bits.mjs +33 -33
- package/bitops-library-endian.mjs +3 -3
- package/core-library-digest.mjs +29 -29
- package/cryptography-kotlin-cryptography-bigint.mjs +27 -27
- package/cryptography-kotlin-cryptography-core.mjs +47 -47
- package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
- package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +135 -135
- package/cryptography-kotlin-cryptography-random.mjs +15 -15
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +112 -112
- package/cryptography-kotlin-cryptography-serialization-asn1.mjs +237 -237
- package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
- package/hash-library-md.mjs +30 -30
- package/kotlin-kotlin-stdlib.mjs +18 -18
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/ktor-ktor-client-auth.mjs +224 -224
- package/ktor-ktor-client-encoding.mjs +75 -75
- package/ktor-ktor-client-logging.mjs +520 -520
- package/ktor-ktor-client-mock.mjs +39 -39
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +25639 -24707
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +54 -0
- package/solibo-sdk-sdk.mjs +3791 -3787
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -13639,6 +13639,24 @@ export declare namespace PagedListPublicConversationCategory {
|
|
|
13639
13639
|
const constructor: abstract new () => PagedListPublicConversationCategory;
|
|
13640
13640
|
}
|
|
13641
13641
|
}
|
|
13642
|
+
export interface PagedListPushNotificationInboxItemProps {
|
|
13643
|
+
items: PushNotificationInboxItemProps[];
|
|
13644
|
+
meta: MetaProps;
|
|
13645
|
+
paging: PagingProps;
|
|
13646
|
+
}
|
|
13647
|
+
export declare class PagedListPushNotificationInboxItem {
|
|
13648
|
+
constructor(props: PagedListPushNotificationInboxItemProps);
|
|
13649
|
+
constructor(items: PushNotificationInboxItem[], meta: Meta, paging: Paging);
|
|
13650
|
+
get items(): PushNotificationInboxItem[];
|
|
13651
|
+
get meta(): Meta;
|
|
13652
|
+
get paging(): Paging;
|
|
13653
|
+
}
|
|
13654
|
+
export declare namespace PagedListPushNotificationInboxItem {
|
|
13655
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
13656
|
+
namespace $metadata$ {
|
|
13657
|
+
const constructor: abstract new () => PagedListPushNotificationInboxItem;
|
|
13658
|
+
}
|
|
13659
|
+
}
|
|
13642
13660
|
export interface PagedListQueuedInvoiceProps {
|
|
13643
13661
|
items: QueuedInvoiceProps[];
|
|
13644
13662
|
meta: MetaProps;
|
|
@@ -15912,6 +15930,40 @@ export declare namespace PublicMessage {
|
|
|
15912
15930
|
const constructor: abstract new () => PublicMessage;
|
|
15913
15931
|
}
|
|
15914
15932
|
}
|
|
15933
|
+
export interface PushNotificationInboxItemProps {
|
|
15934
|
+
body?: string | null | undefined;
|
|
15935
|
+
companyId: bigint;
|
|
15936
|
+
data?: Map<string, string | null | undefined> | null | undefined;
|
|
15937
|
+
notificationType?: string | null | undefined;
|
|
15938
|
+
openedAt?: SoliboInstant /* Instant */ | null | undefined;
|
|
15939
|
+
receivedAt?: SoliboInstant /* Instant */ | null | undefined;
|
|
15940
|
+
sentAt: SoliboInstant /* Instant */;
|
|
15941
|
+
state?: CommunicationStateProps | null | undefined;
|
|
15942
|
+
title?: string | null | undefined;
|
|
15943
|
+
trackingId: string;
|
|
15944
|
+
updatedAt: SoliboInstant /* Instant */;
|
|
15945
|
+
}
|
|
15946
|
+
export declare class PushNotificationInboxItem {
|
|
15947
|
+
constructor(props: PushNotificationInboxItemProps);
|
|
15948
|
+
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 */);
|
|
15949
|
+
get body(): string | null | undefined;
|
|
15950
|
+
get companyId(): bigint;
|
|
15951
|
+
get data(): Map<string, string | null | undefined> | null | undefined;
|
|
15952
|
+
get notificationType(): string | null | undefined;
|
|
15953
|
+
get openedAt(): SoliboInstant /* Instant */ | null | undefined;
|
|
15954
|
+
get receivedAt(): SoliboInstant /* Instant */ | null | undefined;
|
|
15955
|
+
get sentAt(): SoliboInstant /* Instant */;
|
|
15956
|
+
get state(): CommunicationState | null | undefined;
|
|
15957
|
+
get title(): string | null | undefined;
|
|
15958
|
+
get trackingId(): string;
|
|
15959
|
+
get updatedAt(): SoliboInstant /* Instant */;
|
|
15960
|
+
}
|
|
15961
|
+
export declare namespace PushNotificationInboxItem {
|
|
15962
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
15963
|
+
namespace $metadata$ {
|
|
15964
|
+
const constructor: abstract new () => PushNotificationInboxItem;
|
|
15965
|
+
}
|
|
15966
|
+
}
|
|
15915
15967
|
export interface QueuedInvoiceProps {
|
|
15916
15968
|
companyId: bigint;
|
|
15917
15969
|
invoice: InvoiceInputProps;
|
|
@@ -21909,6 +21961,7 @@ export declare class CommunicationApi extends ApiClient.$metadata$.constructor {
|
|
|
21909
21961
|
indexEmailNewsletterNotificationGroups(companyId: bigint, fields?: string | null | undefined): Promise<HttpResponse<MassCommunicationGroups>>;
|
|
21910
21962
|
indexEmailNewsletters(companyId: bigint, search?: string | null | undefined, published?: boolean | null | undefined, publishedAtFrom?: bigint | null | undefined, publishedAtTo?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListNewsletter>>;
|
|
21911
21963
|
indexNewslettersUser(search?: string | null | undefined, companyIds?: KtList<bigint> | null | undefined, published?: boolean | null | undefined, publishedAtFrom?: bigint | null | undefined, publishedAtTo?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListNewsletter>>;
|
|
21964
|
+
indexPushNotificationInbox(companyId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListPushNotificationInboxItem>>;
|
|
21912
21965
|
indexSMSBroadcasts(companyId: bigint, search?: string | null | undefined, published?: boolean | null | undefined, publishedAtFrom?: bigint | null | undefined, publishedAtTo?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListSMSBroadcast>>;
|
|
21913
21966
|
indexSMSBundleAvailable(companyId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListSMSBundle>>;
|
|
21914
21967
|
indexSMSNotificationGroups(companyId: bigint, fields?: string | null | undefined): Promise<HttpResponse<MassCommunicationGroups>>;
|
|
@@ -21918,6 +21971,7 @@ export declare class CommunicationApi extends ApiClient.$metadata$.constructor {
|
|
|
21918
21971
|
publishMultipleSMSBroadcasts(bulkPublishSMSBroadcastsCommand: BulkPublishSMSBroadcastsCommand): Promise<HttpResponse<BulkPublishSMSBroadcastsResult>>;
|
|
21919
21972
|
publishSMSBroadcast(companyId: bigint, broadcastId: bigint, purchaseBundleId?: bigint | null | undefined): Promise<HttpResponse<SMSBroadcast>>;
|
|
21920
21973
|
reportPushNotificationRead(companyId: bigint, trackingId: string): Promise<HttpResponse<void>>;
|
|
21974
|
+
reportPushNotificationReceived(companyId: bigint, trackingId: bigint): Promise<HttpResponse<void>>;
|
|
21921
21975
|
showCommunicationReport(companyId: bigint, communicationType: string, communicationId: bigint, reportChannel: string, reportType?: CommunicationMessageType | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<CommunicationReport>>;
|
|
21922
21976
|
showEmailNewsletter(companyId: bigint, newsletterId: bigint, fields?: string | null | undefined): Promise<HttpResponse<Newsletter>>;
|
|
21923
21977
|
showSMSAvailable(companyId: bigint, fields?: string | null | undefined): Promise<HttpResponse<SMSCount>>;
|