@solibo/home-api 1.9.15 → 1.9.16
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/kotlin-kotlin-stdlib.mjs +11 -11
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +8 -8
- package/kotlinx-coroutines-core.mjs.map +1 -1
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.d.mts +213 -2
- package/solibo-sdk-sdk-home-api.mjs +41544 -40109
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
package/ktor-ktor-websockets.mjs
CHANGED
|
@@ -72,8 +72,8 @@ import {
|
|
|
72
72
|
_ChannelResult___get_isClosed__impl__mg7kuu1g5u2zmbzbfb4 as _ChannelResult___get_isClosed__impl__mg7kuu,
|
|
73
73
|
close$default1evna6yun3t5h as close$default,
|
|
74
74
|
cancel$default1fq6eekptkf7a as cancel$default,
|
|
75
|
-
SendChannel38sllbxw662ws as SendChannel,
|
|
76
75
|
ReceiveChannel24wu5e2tj9lbp as ReceiveChannel,
|
|
76
|
+
SendChannel38sllbxw662ws as SendChannel,
|
|
77
77
|
} from './kotlinx-coroutines-core.mjs';
|
|
78
78
|
import {
|
|
79
79
|
get_isTraceEnabled82xibuu04nxp as get_isTraceEnabled,
|
|
@@ -138,7 +138,7 @@ initMetadataForCompanion(Companion_3);
|
|
|
138
138
|
initMetadataForClass(ChannelConfig, 'ChannelConfig');
|
|
139
139
|
initMetadataForClass(ChannelOverflow, 'ChannelOverflow', VOID, Enum);
|
|
140
140
|
initMetadataForCompanion(Companion_4);
|
|
141
|
-
initMetadataForClass(BoundedChannel, 'BoundedChannel', VOID, VOID, [
|
|
141
|
+
initMetadataForClass(BoundedChannel, 'BoundedChannel', VOID, VOID, [ReceiveChannel, SendChannel], [1, 0]);
|
|
142
142
|
initMetadataForClass(ChannelOverflowException, 'ChannelOverflowException', VOID, RuntimeException);
|
|
143
143
|
initMetadataForInterface(WebSocketExtension, 'WebSocketExtension');
|
|
144
144
|
initMetadataForClass(WebSocketExtensionsConfig, 'WebSocketExtensionsConfig', WebSocketExtensionsConfig);
|
package/package.json
CHANGED
|
@@ -3784,6 +3784,66 @@ export declare namespace ConversationParticipantMeta {
|
|
|
3784
3784
|
const constructor: abstract new () => ConversationParticipantMeta;
|
|
3785
3785
|
}
|
|
3786
3786
|
}
|
|
3787
|
+
export declare class ConversationPushFallbackCadence {
|
|
3788
|
+
constructor(expiresAt: Nullable<any>/* Nullable<Instant> */ | undefined, minimumDigestIntervalHours: bigint, preset: ConversationPushFallbackCadencePreset, reminderDelayHours: bigint);
|
|
3789
|
+
get expiresAt(): Nullable<any>/* Nullable<Instant> */;
|
|
3790
|
+
get minimumDigestIntervalHours(): bigint;
|
|
3791
|
+
get preset(): ConversationPushFallbackCadencePreset;
|
|
3792
|
+
get reminderDelayHours(): bigint;
|
|
3793
|
+
copy(expiresAt?: Nullable<any>/* Nullable<Instant> */, minimumDigestIntervalHours?: bigint, preset?: ConversationPushFallbackCadencePreset, reminderDelayHours?: bigint): ConversationPushFallbackCadence;
|
|
3794
|
+
toString(): string;
|
|
3795
|
+
hashCode(): number;
|
|
3796
|
+
equals(other: Nullable<any>): boolean;
|
|
3797
|
+
}
|
|
3798
|
+
export declare namespace ConversationPushFallbackCadence {
|
|
3799
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3800
|
+
namespace $metadata$ {
|
|
3801
|
+
const constructor: abstract new () => ConversationPushFallbackCadence;
|
|
3802
|
+
}
|
|
3803
|
+
}
|
|
3804
|
+
export declare abstract class ConversationPushFallbackCadencePreset {
|
|
3805
|
+
private constructor();
|
|
3806
|
+
static get STANDARD(): ConversationPushFallbackCadencePreset & {
|
|
3807
|
+
get name(): "STANDARD";
|
|
3808
|
+
get ordinal(): 0;
|
|
3809
|
+
};
|
|
3810
|
+
static get ACTIVE_PROJECT(): ConversationPushFallbackCadencePreset & {
|
|
3811
|
+
get name(): "ACTIVE_PROJECT";
|
|
3812
|
+
get ordinal(): 1;
|
|
3813
|
+
};
|
|
3814
|
+
static get Standard(): ConversationPushFallbackCadencePreset & {
|
|
3815
|
+
get name(): "STANDARD";
|
|
3816
|
+
get ordinal(): 0;
|
|
3817
|
+
};
|
|
3818
|
+
static get ActiveProject(): ConversationPushFallbackCadencePreset & {
|
|
3819
|
+
get name(): "ACTIVE_PROJECT";
|
|
3820
|
+
get ordinal(): 1;
|
|
3821
|
+
};
|
|
3822
|
+
static values(): [typeof ConversationPushFallbackCadencePreset.STANDARD, typeof ConversationPushFallbackCadencePreset.ACTIVE_PROJECT];
|
|
3823
|
+
static valueOf(value: string): ConversationPushFallbackCadencePreset;
|
|
3824
|
+
get name(): "STANDARD" | "ACTIVE_PROJECT";
|
|
3825
|
+
get ordinal(): 0 | 1;
|
|
3826
|
+
get value(): string;
|
|
3827
|
+
toString(): string;
|
|
3828
|
+
}
|
|
3829
|
+
export declare namespace ConversationPushFallbackCadencePreset {
|
|
3830
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3831
|
+
namespace $metadata$ {
|
|
3832
|
+
const constructor: abstract new () => ConversationPushFallbackCadencePreset;
|
|
3833
|
+
}
|
|
3834
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
3835
|
+
private constructor();
|
|
3836
|
+
}
|
|
3837
|
+
namespace Companion {
|
|
3838
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3839
|
+
namespace $metadata$ {
|
|
3840
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
3841
|
+
fromValue(value: string): Nullable<ConversationPushFallbackCadencePreset>;
|
|
3842
|
+
private constructor();
|
|
3843
|
+
}
|
|
3844
|
+
}
|
|
3845
|
+
}
|
|
3846
|
+
}
|
|
3787
3847
|
export declare abstract class ConversationStatus {
|
|
3788
3848
|
private constructor();
|
|
3789
3849
|
static get DRAFT(): ConversationStatus & {
|
|
@@ -5776,7 +5836,7 @@ export declare namespace DialogSystemLabel {
|
|
|
5776
5836
|
}
|
|
5777
5837
|
}
|
|
5778
5838
|
export declare class Document {
|
|
5779
|
-
constructor(belongsToId: Nullable<bigint> | undefined, children: Nullable<KtList<Document>> | undefined, companyId: bigint, createdAt: any/* Instant */, createdBy: Nullable<bigint> | undefined, createdByClientUserId: Nullable<bigint> | undefined, createdByClientUserName: Nullable<string> | undefined, createdByName: Nullable<string> | undefined, deletedAt: Nullable<any>/* Nullable<Instant> */ | undefined, deletedBy: Nullable<bigint> | undefined, deletedByClientUserId: Nullable<bigint> | undefined, deletedByClientUserName: Nullable<string> | undefined, deletedByName: Nullable<string> | undefined, fileName: string, historicPath: Nullable<string> | undefined, historicType: Nullable<DocumentType> | undefined, id: bigint, isDirectory: Nullable<boolean> | undefined, ownedByUser: Nullable<boolean> | undefined, parentId: Nullable<bigint> | undefined, sourceDocumentId: Nullable<bigint> | undefined, type: DocumentType, updatedAt?: Nullable<any>/* Nullable<Instant> */, updatedBy?: Nullable<bigint>, updatedByClientUserId?: Nullable<bigint>, updatedByClientUserName?: Nullable<string>, updatedByName?: Nullable<string>);
|
|
5839
|
+
constructor(belongsToId: Nullable<bigint> | undefined, children: Nullable<KtList<Document>> | undefined, companyId: bigint, createdAt: any/* Instant */, createdBy: Nullable<bigint> | undefined, createdByClientUserId: Nullable<bigint> | undefined, createdByClientUserName: Nullable<string> | undefined, createdByName: Nullable<string> | undefined, deletedAt: Nullable<any>/* Nullable<Instant> */ | undefined, deletedBy: Nullable<bigint> | undefined, deletedByClientUserId: Nullable<bigint> | undefined, deletedByClientUserName: Nullable<string> | undefined, deletedByName: Nullable<string> | undefined, fileName: string, historicPath: Nullable<string> | undefined, historicType: Nullable<DocumentType> | undefined, id: bigint, isDirectory: Nullable<boolean> | undefined, ownedByUser: Nullable<boolean> | undefined, parentId: Nullable<bigint> | undefined, sizeBytes: Nullable<bigint> | undefined, sourceDocumentId: Nullable<bigint> | undefined, type: DocumentType, updatedAt?: Nullable<any>/* Nullable<Instant> */, updatedBy?: Nullable<bigint>, updatedByClientUserId?: Nullable<bigint>, updatedByClientUserName?: Nullable<string>, updatedByName?: Nullable<string>);
|
|
5780
5840
|
get belongsToId(): Nullable<bigint>;
|
|
5781
5841
|
get children(): Nullable<KtList<Document>>;
|
|
5782
5842
|
get companyId(): bigint;
|
|
@@ -5797,6 +5857,7 @@ export declare class Document {
|
|
|
5797
5857
|
get isDirectory(): Nullable<boolean>;
|
|
5798
5858
|
get ownedByUser(): Nullable<boolean>;
|
|
5799
5859
|
get parentId(): Nullable<bigint>;
|
|
5860
|
+
get sizeBytes(): Nullable<bigint>;
|
|
5800
5861
|
get sourceDocumentId(): Nullable<bigint>;
|
|
5801
5862
|
get type(): DocumentType;
|
|
5802
5863
|
get updatedAt(): Nullable<any>/* Nullable<Instant> */;
|
|
@@ -5804,7 +5865,7 @@ export declare class Document {
|
|
|
5804
5865
|
get updatedByClientUserId(): Nullable<bigint>;
|
|
5805
5866
|
get updatedByClientUserName(): Nullable<string>;
|
|
5806
5867
|
get updatedByName(): Nullable<string>;
|
|
5807
|
-
copy(belongsToId?: Nullable<bigint>, children?: Nullable<KtList<Document>>, companyId?: bigint, createdAt?: any/* Instant */, createdBy?: Nullable<bigint>, createdByClientUserId?: Nullable<bigint>, createdByClientUserName?: Nullable<string>, createdByName?: Nullable<string>, deletedAt?: Nullable<any>/* Nullable<Instant> */, deletedBy?: Nullable<bigint>, deletedByClientUserId?: Nullable<bigint>, deletedByClientUserName?: Nullable<string>, deletedByName?: Nullable<string>, fileName?: string, historicPath?: Nullable<string>, historicType?: Nullable<DocumentType>, id?: bigint, isDirectory?: Nullable<boolean>, ownedByUser?: Nullable<boolean>, parentId?: Nullable<bigint>, sourceDocumentId?: Nullable<bigint>, type?: DocumentType, updatedAt?: Nullable<any>/* Nullable<Instant> */, updatedBy?: Nullable<bigint>, updatedByClientUserId?: Nullable<bigint>, updatedByClientUserName?: Nullable<string>, updatedByName?: Nullable<string>): Document;
|
|
5868
|
+
copy(belongsToId?: Nullable<bigint>, children?: Nullable<KtList<Document>>, companyId?: bigint, createdAt?: any/* Instant */, createdBy?: Nullable<bigint>, createdByClientUserId?: Nullable<bigint>, createdByClientUserName?: Nullable<string>, createdByName?: Nullable<string>, deletedAt?: Nullable<any>/* Nullable<Instant> */, deletedBy?: Nullable<bigint>, deletedByClientUserId?: Nullable<bigint>, deletedByClientUserName?: Nullable<string>, deletedByName?: Nullable<string>, fileName?: string, historicPath?: Nullable<string>, historicType?: Nullable<DocumentType>, id?: bigint, isDirectory?: Nullable<boolean>, ownedByUser?: Nullable<boolean>, parentId?: Nullable<bigint>, sizeBytes?: Nullable<bigint>, sourceDocumentId?: Nullable<bigint>, type?: DocumentType, updatedAt?: Nullable<any>/* Nullable<Instant> */, updatedBy?: Nullable<bigint>, updatedByClientUserId?: Nullable<bigint>, updatedByClientUserName?: Nullable<string>, updatedByName?: Nullable<string>): Document;
|
|
5808
5869
|
toString(): string;
|
|
5809
5870
|
hashCode(): number;
|
|
5810
5871
|
equals(other: Nullable<any>): boolean;
|
|
@@ -5815,6 +5876,116 @@ export declare namespace Document {
|
|
|
5815
5876
|
const constructor: abstract new () => Document;
|
|
5816
5877
|
}
|
|
5817
5878
|
}
|
|
5879
|
+
export declare abstract class DocumentContentSearchBackfillReason {
|
|
5880
|
+
private constructor();
|
|
5881
|
+
static get BACKFILL(): DocumentContentSearchBackfillReason & {
|
|
5882
|
+
get name(): "BACKFILL";
|
|
5883
|
+
get ordinal(): 0;
|
|
5884
|
+
};
|
|
5885
|
+
static get REINDEX(): DocumentContentSearchBackfillReason & {
|
|
5886
|
+
get name(): "REINDEX";
|
|
5887
|
+
get ordinal(): 1;
|
|
5888
|
+
};
|
|
5889
|
+
static get Backfill(): DocumentContentSearchBackfillReason & {
|
|
5890
|
+
get name(): "BACKFILL";
|
|
5891
|
+
get ordinal(): 0;
|
|
5892
|
+
};
|
|
5893
|
+
static get Reindex(): DocumentContentSearchBackfillReason & {
|
|
5894
|
+
get name(): "REINDEX";
|
|
5895
|
+
get ordinal(): 1;
|
|
5896
|
+
};
|
|
5897
|
+
static values(): [typeof DocumentContentSearchBackfillReason.BACKFILL, typeof DocumentContentSearchBackfillReason.REINDEX];
|
|
5898
|
+
static valueOf(value: string): DocumentContentSearchBackfillReason;
|
|
5899
|
+
get name(): "BACKFILL" | "REINDEX";
|
|
5900
|
+
get ordinal(): 0 | 1;
|
|
5901
|
+
get value(): string;
|
|
5902
|
+
toString(): string;
|
|
5903
|
+
}
|
|
5904
|
+
export declare namespace DocumentContentSearchBackfillReason {
|
|
5905
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
5906
|
+
namespace $metadata$ {
|
|
5907
|
+
const constructor: abstract new () => DocumentContentSearchBackfillReason;
|
|
5908
|
+
}
|
|
5909
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
5910
|
+
private constructor();
|
|
5911
|
+
}
|
|
5912
|
+
namespace Companion {
|
|
5913
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
5914
|
+
namespace $metadata$ {
|
|
5915
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
5916
|
+
fromValue(value: string): Nullable<DocumentContentSearchBackfillReason>;
|
|
5917
|
+
private constructor();
|
|
5918
|
+
}
|
|
5919
|
+
}
|
|
5920
|
+
}
|
|
5921
|
+
}
|
|
5922
|
+
export declare abstract class DocumentContentSearchBackfillStatus {
|
|
5923
|
+
private constructor();
|
|
5924
|
+
static get DISABLED(): DocumentContentSearchBackfillStatus & {
|
|
5925
|
+
get name(): "DISABLED";
|
|
5926
|
+
get ordinal(): 0;
|
|
5927
|
+
};
|
|
5928
|
+
static get PENDING(): DocumentContentSearchBackfillStatus & {
|
|
5929
|
+
get name(): "PENDING";
|
|
5930
|
+
get ordinal(): 1;
|
|
5931
|
+
};
|
|
5932
|
+
static get RUNNING(): DocumentContentSearchBackfillStatus & {
|
|
5933
|
+
get name(): "RUNNING";
|
|
5934
|
+
get ordinal(): 2;
|
|
5935
|
+
};
|
|
5936
|
+
static get COMPLETE(): DocumentContentSearchBackfillStatus & {
|
|
5937
|
+
get name(): "COMPLETE";
|
|
5938
|
+
get ordinal(): 3;
|
|
5939
|
+
};
|
|
5940
|
+
static get FAILED(): DocumentContentSearchBackfillStatus & {
|
|
5941
|
+
get name(): "FAILED";
|
|
5942
|
+
get ordinal(): 4;
|
|
5943
|
+
};
|
|
5944
|
+
static get Disabled(): DocumentContentSearchBackfillStatus & {
|
|
5945
|
+
get name(): "DISABLED";
|
|
5946
|
+
get ordinal(): 0;
|
|
5947
|
+
};
|
|
5948
|
+
static get Pending(): DocumentContentSearchBackfillStatus & {
|
|
5949
|
+
get name(): "PENDING";
|
|
5950
|
+
get ordinal(): 1;
|
|
5951
|
+
};
|
|
5952
|
+
static get Running(): DocumentContentSearchBackfillStatus & {
|
|
5953
|
+
get name(): "RUNNING";
|
|
5954
|
+
get ordinal(): 2;
|
|
5955
|
+
};
|
|
5956
|
+
static get Complete(): DocumentContentSearchBackfillStatus & {
|
|
5957
|
+
get name(): "COMPLETE";
|
|
5958
|
+
get ordinal(): 3;
|
|
5959
|
+
};
|
|
5960
|
+
static get Failed(): DocumentContentSearchBackfillStatus & {
|
|
5961
|
+
get name(): "FAILED";
|
|
5962
|
+
get ordinal(): 4;
|
|
5963
|
+
};
|
|
5964
|
+
static values(): [typeof DocumentContentSearchBackfillStatus.DISABLED, typeof DocumentContentSearchBackfillStatus.PENDING, typeof DocumentContentSearchBackfillStatus.RUNNING, typeof DocumentContentSearchBackfillStatus.COMPLETE, typeof DocumentContentSearchBackfillStatus.FAILED];
|
|
5965
|
+
static valueOf(value: string): DocumentContentSearchBackfillStatus;
|
|
5966
|
+
get name(): "DISABLED" | "PENDING" | "RUNNING" | "COMPLETE" | "FAILED";
|
|
5967
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
5968
|
+
get value(): string;
|
|
5969
|
+
toString(): string;
|
|
5970
|
+
}
|
|
5971
|
+
export declare namespace DocumentContentSearchBackfillStatus {
|
|
5972
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
5973
|
+
namespace $metadata$ {
|
|
5974
|
+
const constructor: abstract new () => DocumentContentSearchBackfillStatus;
|
|
5975
|
+
}
|
|
5976
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
5977
|
+
private constructor();
|
|
5978
|
+
}
|
|
5979
|
+
namespace Companion {
|
|
5980
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
5981
|
+
namespace $metadata$ {
|
|
5982
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
5983
|
+
fromValue(value: string): Nullable<DocumentContentSearchBackfillStatus>;
|
|
5984
|
+
private constructor();
|
|
5985
|
+
}
|
|
5986
|
+
}
|
|
5987
|
+
}
|
|
5988
|
+
}
|
|
5818
5989
|
export declare abstract class DocumentType {
|
|
5819
5990
|
private constructor();
|
|
5820
5991
|
static get ISSUE(): DocumentType & {
|
|
@@ -18330,6 +18501,21 @@ export declare namespace UpdateConversationCommand {
|
|
|
18330
18501
|
const constructor: abstract new () => UpdateConversationCommand;
|
|
18331
18502
|
}
|
|
18332
18503
|
}
|
|
18504
|
+
export declare class UpdateConversationPushFallbackCadenceCommand {
|
|
18505
|
+
constructor(expiresAt: Nullable<any>/* Nullable<Instant> */ | undefined, preset: ConversationPushFallbackCadencePreset);
|
|
18506
|
+
get expiresAt(): Nullable<any>/* Nullable<Instant> */;
|
|
18507
|
+
get preset(): ConversationPushFallbackCadencePreset;
|
|
18508
|
+
copy(expiresAt?: Nullable<any>/* Nullable<Instant> */, preset?: ConversationPushFallbackCadencePreset): UpdateConversationPushFallbackCadenceCommand;
|
|
18509
|
+
toString(): string;
|
|
18510
|
+
hashCode(): number;
|
|
18511
|
+
equals(other: Nullable<any>): boolean;
|
|
18512
|
+
}
|
|
18513
|
+
export declare namespace UpdateConversationPushFallbackCadenceCommand {
|
|
18514
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
18515
|
+
namespace $metadata$ {
|
|
18516
|
+
const constructor: abstract new () => UpdateConversationPushFallbackCadenceCommand;
|
|
18517
|
+
}
|
|
18518
|
+
}
|
|
18333
18519
|
export declare class UpdateEmployeeCommand {
|
|
18334
18520
|
constructor(email: Nullable<string> | undefined, mobile: Nullable<string> | undefined, name: Name, nationality?: Nullable<bigint>, preferredLanguage?: Nullable<bigint>);
|
|
18335
18521
|
get email(): Nullable<string>;
|
|
@@ -18598,6 +18784,28 @@ export declare namespace UpdateLegalObligationsCommand {
|
|
|
18598
18784
|
const constructor: abstract new () => UpdateLegalObligationsCommand;
|
|
18599
18785
|
}
|
|
18600
18786
|
}
|
|
18787
|
+
export declare class UpdateLoanCommand {
|
|
18788
|
+
constructor(completesAt: any/* Instant */, inAgreement: boolean, initialSum: bigint, interest: number, loanNumber: string, raisedAt: any/* Instant */, supplierId: bigint, tripletexAccount: Nullable<string> | undefined, type: string);
|
|
18789
|
+
get completesAt(): any/* Instant */;
|
|
18790
|
+
get inAgreement(): boolean;
|
|
18791
|
+
get initialSum(): bigint;
|
|
18792
|
+
get interest(): number;
|
|
18793
|
+
get loanNumber(): string;
|
|
18794
|
+
get raisedAt(): any/* Instant */;
|
|
18795
|
+
get supplierId(): bigint;
|
|
18796
|
+
get tripletexAccount(): Nullable<string>;
|
|
18797
|
+
get type(): string;
|
|
18798
|
+
copy(completesAt?: any/* Instant */, inAgreement?: boolean, initialSum?: bigint, interest?: number, loanNumber?: string, raisedAt?: any/* Instant */, supplierId?: bigint, tripletexAccount?: Nullable<string>, type?: string): UpdateLoanCommand;
|
|
18799
|
+
toString(): string;
|
|
18800
|
+
hashCode(): number;
|
|
18801
|
+
equals(other: Nullable<any>): boolean;
|
|
18802
|
+
}
|
|
18803
|
+
export declare namespace UpdateLoanCommand {
|
|
18804
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
18805
|
+
namespace $metadata$ {
|
|
18806
|
+
const constructor: abstract new () => UpdateLoanCommand;
|
|
18807
|
+
}
|
|
18808
|
+
}
|
|
18601
18809
|
export declare class UpdateLoanInterestCommand {
|
|
18602
18810
|
constructor(interest: number, validFrom?: Nullable<any>/* Nullable<Instant> */);
|
|
18603
18811
|
get interest(): number;
|
|
@@ -19716,6 +19924,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
|
|
|
19716
19924
|
showConversation(companyId: bigint, conversationId: bigint, translateToCountryId?: Nullable<bigint>, fields?: Nullable<string>): Promise<HttpResponse<Conversation>>;
|
|
19717
19925
|
showConversationFolder(companyId: bigint, folderId: bigint, fields?: Nullable<string>): Promise<HttpResponse<ConversationFolder>>;
|
|
19718
19926
|
showConversationPublic(companySlug: string, conversationId: bigint, fields?: Nullable<string>): Promise<HttpResponse<PublicConversation>>;
|
|
19927
|
+
showConversationPushFallbackSettings(companyId: bigint, fields?: Nullable<string>): Promise<HttpResponse<ConversationPushFallbackCadence>>;
|
|
19719
19928
|
showDocumentPublicConversation(companySlug: string, conversationId: bigint, documentId: bigint, redirect?: Nullable<boolean>, size?: Nullable<string>, fields?: Nullable<string>): Promise<HttpResponse<UrlWrapper>>;
|
|
19720
19929
|
trashConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<void>>;
|
|
19721
19930
|
trashMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
|
|
@@ -19725,6 +19934,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
|
|
|
19725
19934
|
updateConversationCategories(companyId: bigint, secureConversationCategory: KtList<SecureConversationCategory>): Promise<HttpResponse<KtList<SecureConversationCategory>>>;
|
|
19726
19935
|
updateConversationCategory(companyId: bigint, categoryId: bigint, updateConversationCategoryCommand: UpdateConversationCategoryCommand): Promise<HttpResponse<SecureConversationCategory>>;
|
|
19727
19936
|
updateConversationMessage(companyId: bigint, conversationId: bigint, messageId: bigint, updateMessageCommand: UpdateMessageCommand): Promise<HttpResponse<void>>;
|
|
19937
|
+
updateConversationPushFallbackSettings(companyId: bigint, updateConversationPushFallbackCadenceCommand: UpdateConversationPushFallbackCadenceCommand): Promise<HttpResponse<ConversationPushFallbackCadence>>;
|
|
19728
19938
|
updateFolder(companyId: bigint, folderId: bigint, updateFolderCommand: UpdateFolderCommand): Promise<HttpResponse<ConversationFolder>>;
|
|
19729
19939
|
}
|
|
19730
19940
|
export declare namespace ConversationApi {
|
|
@@ -20067,6 +20277,7 @@ export declare class LoanApi extends ApiClient.$metadata$.constructor {
|
|
|
20067
20277
|
private constructor();
|
|
20068
20278
|
static create(baseUrl?: string, httpClientEngine?: Nullable<any>/* Nullable<HttpClientEngine> */, httpClientConfig?: Nullable<(p0: any/* HttpClientConfig<UnknownType *> */) => void>, jsonSerializer?: any/* Json */): LoanApi;
|
|
20069
20279
|
static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): LoanApi;
|
|
20280
|
+
correctLoanDetails(companyId: bigint, loanId: bigint, updateLoanCommand: UpdateLoanCommand): Promise<HttpResponse<Loan>>;
|
|
20070
20281
|
createLoan(companyId: bigint, createLoanCommand: CreateLoanCommand): Promise<HttpResponse<Loan>>;
|
|
20071
20282
|
deleteLoan(companyId: bigint, loanId: bigint): Promise<HttpResponse<void>>;
|
|
20072
20283
|
indexLoanAccounts(companyId: bigint, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListAccount>>;
|