@solibo/solibo-sdk 1.7.19 → 1.7.20
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/index.mjs +18 -0
- package/kotlin-kotlin-stdlib.mjs +20 -20
- 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 +53891 -40711
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +1361 -13
- package/solibo-sdk-sdk.mjs +3327 -3154
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -759,6 +759,944 @@ export declare namespace BuildingFloor {
|
|
|
759
759
|
const constructor: abstract new () => BuildingFloor;
|
|
760
760
|
}
|
|
761
761
|
}
|
|
762
|
+
export interface BulkCreateConversationCommandProps {
|
|
763
|
+
clientReference?: string | null | undefined;
|
|
764
|
+
command: CreateConversationCommandProps;
|
|
765
|
+
companyId: bigint;
|
|
766
|
+
}
|
|
767
|
+
export declare class BulkCreateConversationCommand {
|
|
768
|
+
constructor(props: BulkCreateConversationCommandProps);
|
|
769
|
+
constructor(clientReference: string | null | undefined, command: CreateConversationCommand, companyId: bigint);
|
|
770
|
+
get clientReference(): string | null | undefined;
|
|
771
|
+
get command(): CreateConversationCommand;
|
|
772
|
+
get companyId(): bigint;
|
|
773
|
+
}
|
|
774
|
+
export declare namespace BulkCreateConversationCommand {
|
|
775
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
776
|
+
namespace $metadata$ {
|
|
777
|
+
const constructor: abstract new () => BulkCreateConversationCommand;
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
export interface BulkCreateConversationItemResultProps {
|
|
781
|
+
clientReference?: string | null | undefined;
|
|
782
|
+
companyId: bigint;
|
|
783
|
+
conversationId?: bigint | null | undefined;
|
|
784
|
+
index: bigint;
|
|
785
|
+
status: BulkCreateConversationItemStatusProps;
|
|
786
|
+
}
|
|
787
|
+
export declare class BulkCreateConversationItemResult {
|
|
788
|
+
constructor(props: BulkCreateConversationItemResultProps);
|
|
789
|
+
constructor(clientReference: string | null | undefined, companyId: bigint, conversationId: bigint | null | undefined, index: bigint, status: BulkCreateConversationItemStatus);
|
|
790
|
+
get clientReference(): string | null | undefined;
|
|
791
|
+
get companyId(): bigint;
|
|
792
|
+
get conversationId(): bigint | null | undefined;
|
|
793
|
+
get index(): bigint;
|
|
794
|
+
get status(): BulkCreateConversationItemStatus;
|
|
795
|
+
}
|
|
796
|
+
export declare namespace BulkCreateConversationItemResult {
|
|
797
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
798
|
+
namespace $metadata$ {
|
|
799
|
+
const constructor: abstract new () => BulkCreateConversationItemResult;
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
export declare abstract class BulkCreateConversationItemStatus {
|
|
803
|
+
private constructor();
|
|
804
|
+
static get CREATED(): BulkCreateConversationItemStatus & {
|
|
805
|
+
get name(): "CREATED";
|
|
806
|
+
get ordinal(): 0;
|
|
807
|
+
};
|
|
808
|
+
static get VALIDATED(): BulkCreateConversationItemStatus & {
|
|
809
|
+
get name(): "VALIDATED";
|
|
810
|
+
get ordinal(): 1;
|
|
811
|
+
};
|
|
812
|
+
static get Created(): BulkCreateConversationItemStatus & {
|
|
813
|
+
get name(): "CREATED";
|
|
814
|
+
get ordinal(): 0;
|
|
815
|
+
};
|
|
816
|
+
static get Validated(): BulkCreateConversationItemStatus & {
|
|
817
|
+
get name(): "VALIDATED";
|
|
818
|
+
get ordinal(): 1;
|
|
819
|
+
};
|
|
820
|
+
static values(): [typeof BulkCreateConversationItemStatus.CREATED, typeof BulkCreateConversationItemStatus.VALIDATED];
|
|
821
|
+
static valueOf(value: string): BulkCreateConversationItemStatus;
|
|
822
|
+
get name(): "CREATED" | "VALIDATED";
|
|
823
|
+
get ordinal(): 0 | 1;
|
|
824
|
+
get value(): string;
|
|
825
|
+
}
|
|
826
|
+
export declare namespace BulkCreateConversationItemStatus {
|
|
827
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
828
|
+
namespace $metadata$ {
|
|
829
|
+
const constructor: abstract new () => BulkCreateConversationItemStatus;
|
|
830
|
+
}
|
|
831
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
832
|
+
private constructor();
|
|
833
|
+
}
|
|
834
|
+
namespace Companion {
|
|
835
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
836
|
+
namespace $metadata$ {
|
|
837
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
838
|
+
fromValue(value: string): BulkCreateConversationItemStatus | null | undefined;
|
|
839
|
+
private constructor();
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
}
|
|
843
|
+
}
|
|
844
|
+
export interface BulkCreateConversationsCommandProps {
|
|
845
|
+
dryRun?: boolean | null | undefined;
|
|
846
|
+
items: BulkCreateConversationCommandProps[];
|
|
847
|
+
}
|
|
848
|
+
export declare class BulkCreateConversationsCommand {
|
|
849
|
+
constructor(props: BulkCreateConversationsCommandProps);
|
|
850
|
+
constructor(dryRun: boolean | null | undefined, items: BulkCreateConversationCommand[]);
|
|
851
|
+
get dryRun(): boolean | null | undefined;
|
|
852
|
+
get items(): BulkCreateConversationCommand[];
|
|
853
|
+
}
|
|
854
|
+
export declare namespace BulkCreateConversationsCommand {
|
|
855
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
856
|
+
namespace $metadata$ {
|
|
857
|
+
const constructor: abstract new () => BulkCreateConversationsCommand;
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
export interface BulkCreateConversationsResultProps {
|
|
861
|
+
items: BulkCreateConversationItemResultProps[];
|
|
862
|
+
summary?: BulkCreateConversationsSummaryProps | null | undefined;
|
|
863
|
+
}
|
|
864
|
+
export declare class BulkCreateConversationsResult {
|
|
865
|
+
constructor(props: BulkCreateConversationsResultProps);
|
|
866
|
+
constructor(items: BulkCreateConversationItemResult[], summary?: BulkCreateConversationsSummary | null | undefined);
|
|
867
|
+
get items(): BulkCreateConversationItemResult[];
|
|
868
|
+
get summary(): BulkCreateConversationsSummary | null | undefined;
|
|
869
|
+
}
|
|
870
|
+
export declare namespace BulkCreateConversationsResult {
|
|
871
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
872
|
+
namespace $metadata$ {
|
|
873
|
+
const constructor: abstract new () => BulkCreateConversationsResult;
|
|
874
|
+
}
|
|
875
|
+
}
|
|
876
|
+
export interface BulkCreateConversationsSummaryProps {
|
|
877
|
+
created: bigint;
|
|
878
|
+
dryRun: boolean;
|
|
879
|
+
total: bigint;
|
|
880
|
+
validated: bigint;
|
|
881
|
+
}
|
|
882
|
+
export declare class BulkCreateConversationsSummary {
|
|
883
|
+
constructor(props: BulkCreateConversationsSummaryProps);
|
|
884
|
+
constructor(created: bigint, dryRun: boolean, total: bigint, validated: bigint);
|
|
885
|
+
get created(): bigint;
|
|
886
|
+
get dryRun(): boolean;
|
|
887
|
+
get total(): bigint;
|
|
888
|
+
get validated(): bigint;
|
|
889
|
+
}
|
|
890
|
+
export declare namespace BulkCreateConversationsSummary {
|
|
891
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
892
|
+
namespace $metadata$ {
|
|
893
|
+
const constructor: abstract new () => BulkCreateConversationsSummary;
|
|
894
|
+
}
|
|
895
|
+
}
|
|
896
|
+
export interface BulkCreateHomepagePostCommandProps {
|
|
897
|
+
clientReference?: string | null | undefined;
|
|
898
|
+
command: CreatePostCommandProps;
|
|
899
|
+
companyId: bigint;
|
|
900
|
+
}
|
|
901
|
+
export declare class BulkCreateHomepagePostCommand {
|
|
902
|
+
constructor(props: BulkCreateHomepagePostCommandProps);
|
|
903
|
+
constructor(clientReference: string | null | undefined, command: CreatePostCommand, companyId: bigint);
|
|
904
|
+
get clientReference(): string | null | undefined;
|
|
905
|
+
get command(): CreatePostCommand;
|
|
906
|
+
get companyId(): bigint;
|
|
907
|
+
}
|
|
908
|
+
export declare namespace BulkCreateHomepagePostCommand {
|
|
909
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
910
|
+
namespace $metadata$ {
|
|
911
|
+
const constructor: abstract new () => BulkCreateHomepagePostCommand;
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
export interface BulkCreateHomepagePostItemResultProps {
|
|
915
|
+
clientReference?: string | null | undefined;
|
|
916
|
+
companyId: bigint;
|
|
917
|
+
index: bigint;
|
|
918
|
+
postId?: bigint | null | undefined;
|
|
919
|
+
status: BulkCreateHomepagePostItemStatusProps;
|
|
920
|
+
}
|
|
921
|
+
export declare class BulkCreateHomepagePostItemResult {
|
|
922
|
+
constructor(props: BulkCreateHomepagePostItemResultProps);
|
|
923
|
+
constructor(clientReference: string | null | undefined, companyId: bigint, index: bigint, postId: bigint | null | undefined, status: BulkCreateHomepagePostItemStatus);
|
|
924
|
+
get clientReference(): string | null | undefined;
|
|
925
|
+
get companyId(): bigint;
|
|
926
|
+
get index(): bigint;
|
|
927
|
+
get postId(): bigint | null | undefined;
|
|
928
|
+
get status(): BulkCreateHomepagePostItemStatus;
|
|
929
|
+
}
|
|
930
|
+
export declare namespace BulkCreateHomepagePostItemResult {
|
|
931
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
932
|
+
namespace $metadata$ {
|
|
933
|
+
const constructor: abstract new () => BulkCreateHomepagePostItemResult;
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
export declare abstract class BulkCreateHomepagePostItemStatus {
|
|
937
|
+
private constructor();
|
|
938
|
+
static get CREATED(): BulkCreateHomepagePostItemStatus & {
|
|
939
|
+
get name(): "CREATED";
|
|
940
|
+
get ordinal(): 0;
|
|
941
|
+
};
|
|
942
|
+
static get VALIDATED(): BulkCreateHomepagePostItemStatus & {
|
|
943
|
+
get name(): "VALIDATED";
|
|
944
|
+
get ordinal(): 1;
|
|
945
|
+
};
|
|
946
|
+
static get Created(): BulkCreateHomepagePostItemStatus & {
|
|
947
|
+
get name(): "CREATED";
|
|
948
|
+
get ordinal(): 0;
|
|
949
|
+
};
|
|
950
|
+
static get Validated(): BulkCreateHomepagePostItemStatus & {
|
|
951
|
+
get name(): "VALIDATED";
|
|
952
|
+
get ordinal(): 1;
|
|
953
|
+
};
|
|
954
|
+
static values(): [typeof BulkCreateHomepagePostItemStatus.CREATED, typeof BulkCreateHomepagePostItemStatus.VALIDATED];
|
|
955
|
+
static valueOf(value: string): BulkCreateHomepagePostItemStatus;
|
|
956
|
+
get name(): "CREATED" | "VALIDATED";
|
|
957
|
+
get ordinal(): 0 | 1;
|
|
958
|
+
get value(): string;
|
|
959
|
+
}
|
|
960
|
+
export declare namespace BulkCreateHomepagePostItemStatus {
|
|
961
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
962
|
+
namespace $metadata$ {
|
|
963
|
+
const constructor: abstract new () => BulkCreateHomepagePostItemStatus;
|
|
964
|
+
}
|
|
965
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
966
|
+
private constructor();
|
|
967
|
+
}
|
|
968
|
+
namespace Companion {
|
|
969
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
970
|
+
namespace $metadata$ {
|
|
971
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
972
|
+
fromValue(value: string): BulkCreateHomepagePostItemStatus | null | undefined;
|
|
973
|
+
private constructor();
|
|
974
|
+
}
|
|
975
|
+
}
|
|
976
|
+
}
|
|
977
|
+
}
|
|
978
|
+
export interface BulkCreateHomepagePostsCommandProps {
|
|
979
|
+
dryRun?: boolean | null | undefined;
|
|
980
|
+
items: BulkCreateHomepagePostCommandProps[];
|
|
981
|
+
}
|
|
982
|
+
export declare class BulkCreateHomepagePostsCommand {
|
|
983
|
+
constructor(props: BulkCreateHomepagePostsCommandProps);
|
|
984
|
+
constructor(dryRun: boolean | null | undefined, items: BulkCreateHomepagePostCommand[]);
|
|
985
|
+
get dryRun(): boolean | null | undefined;
|
|
986
|
+
get items(): BulkCreateHomepagePostCommand[];
|
|
987
|
+
}
|
|
988
|
+
export declare namespace BulkCreateHomepagePostsCommand {
|
|
989
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
990
|
+
namespace $metadata$ {
|
|
991
|
+
const constructor: abstract new () => BulkCreateHomepagePostsCommand;
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
export interface BulkCreateHomepagePostsResultProps {
|
|
995
|
+
items: BulkCreateHomepagePostItemResultProps[];
|
|
996
|
+
summary?: BulkCreateHomepagePostsSummaryProps | null | undefined;
|
|
997
|
+
}
|
|
998
|
+
export declare class BulkCreateHomepagePostsResult {
|
|
999
|
+
constructor(props: BulkCreateHomepagePostsResultProps);
|
|
1000
|
+
constructor(items: BulkCreateHomepagePostItemResult[], summary?: BulkCreateHomepagePostsSummary | null | undefined);
|
|
1001
|
+
get items(): BulkCreateHomepagePostItemResult[];
|
|
1002
|
+
get summary(): BulkCreateHomepagePostsSummary | null | undefined;
|
|
1003
|
+
}
|
|
1004
|
+
export declare namespace BulkCreateHomepagePostsResult {
|
|
1005
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1006
|
+
namespace $metadata$ {
|
|
1007
|
+
const constructor: abstract new () => BulkCreateHomepagePostsResult;
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
export interface BulkCreateHomepagePostsSummaryProps {
|
|
1011
|
+
created: bigint;
|
|
1012
|
+
dryRun: boolean;
|
|
1013
|
+
total: bigint;
|
|
1014
|
+
validated: bigint;
|
|
1015
|
+
}
|
|
1016
|
+
export declare class BulkCreateHomepagePostsSummary {
|
|
1017
|
+
constructor(props: BulkCreateHomepagePostsSummaryProps);
|
|
1018
|
+
constructor(created: bigint, dryRun: boolean, total: bigint, validated: bigint);
|
|
1019
|
+
get created(): bigint;
|
|
1020
|
+
get dryRun(): boolean;
|
|
1021
|
+
get total(): bigint;
|
|
1022
|
+
get validated(): bigint;
|
|
1023
|
+
}
|
|
1024
|
+
export declare namespace BulkCreateHomepagePostsSummary {
|
|
1025
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1026
|
+
namespace $metadata$ {
|
|
1027
|
+
const constructor: abstract new () => BulkCreateHomepagePostsSummary;
|
|
1028
|
+
}
|
|
1029
|
+
}
|
|
1030
|
+
export interface BulkCreateHomepagePracticalInfoCommandProps {
|
|
1031
|
+
dryRun?: boolean | null | undefined;
|
|
1032
|
+
items: BulkCreateHomepagePracticalInfoItemCommandProps[];
|
|
1033
|
+
}
|
|
1034
|
+
export declare class BulkCreateHomepagePracticalInfoCommand {
|
|
1035
|
+
constructor(props: BulkCreateHomepagePracticalInfoCommandProps);
|
|
1036
|
+
constructor(dryRun: boolean | null | undefined, items: BulkCreateHomepagePracticalInfoItemCommand[]);
|
|
1037
|
+
get dryRun(): boolean | null | undefined;
|
|
1038
|
+
get items(): BulkCreateHomepagePracticalInfoItemCommand[];
|
|
1039
|
+
}
|
|
1040
|
+
export declare namespace BulkCreateHomepagePracticalInfoCommand {
|
|
1041
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1042
|
+
namespace $metadata$ {
|
|
1043
|
+
const constructor: abstract new () => BulkCreateHomepagePracticalInfoCommand;
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
export interface BulkCreateHomepagePracticalInfoItemCommandProps {
|
|
1047
|
+
clientReference?: string | null | undefined;
|
|
1048
|
+
command: CreatePostCommandProps;
|
|
1049
|
+
companyId: bigint;
|
|
1050
|
+
}
|
|
1051
|
+
export declare class BulkCreateHomepagePracticalInfoItemCommand {
|
|
1052
|
+
constructor(props: BulkCreateHomepagePracticalInfoItemCommandProps);
|
|
1053
|
+
constructor(clientReference: string | null | undefined, command: CreatePostCommand, companyId: bigint);
|
|
1054
|
+
get clientReference(): string | null | undefined;
|
|
1055
|
+
get command(): CreatePostCommand;
|
|
1056
|
+
get companyId(): bigint;
|
|
1057
|
+
}
|
|
1058
|
+
export declare namespace BulkCreateHomepagePracticalInfoItemCommand {
|
|
1059
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1060
|
+
namespace $metadata$ {
|
|
1061
|
+
const constructor: abstract new () => BulkCreateHomepagePracticalInfoItemCommand;
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
export interface BulkCreateHomepagePracticalInfoItemResultProps {
|
|
1065
|
+
clientReference?: string | null | undefined;
|
|
1066
|
+
companyId: bigint;
|
|
1067
|
+
index: bigint;
|
|
1068
|
+
practicalInfoId?: bigint | null | undefined;
|
|
1069
|
+
status: BulkCreateHomepagePracticalInfoItemStatusProps;
|
|
1070
|
+
}
|
|
1071
|
+
export declare class BulkCreateHomepagePracticalInfoItemResult {
|
|
1072
|
+
constructor(props: BulkCreateHomepagePracticalInfoItemResultProps);
|
|
1073
|
+
constructor(clientReference: string | null | undefined, companyId: bigint, index: bigint, practicalInfoId: bigint | null | undefined, status: BulkCreateHomepagePracticalInfoItemStatus);
|
|
1074
|
+
get clientReference(): string | null | undefined;
|
|
1075
|
+
get companyId(): bigint;
|
|
1076
|
+
get index(): bigint;
|
|
1077
|
+
get practicalInfoId(): bigint | null | undefined;
|
|
1078
|
+
get status(): BulkCreateHomepagePracticalInfoItemStatus;
|
|
1079
|
+
}
|
|
1080
|
+
export declare namespace BulkCreateHomepagePracticalInfoItemResult {
|
|
1081
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1082
|
+
namespace $metadata$ {
|
|
1083
|
+
const constructor: abstract new () => BulkCreateHomepagePracticalInfoItemResult;
|
|
1084
|
+
}
|
|
1085
|
+
}
|
|
1086
|
+
export declare abstract class BulkCreateHomepagePracticalInfoItemStatus {
|
|
1087
|
+
private constructor();
|
|
1088
|
+
static get CREATED(): BulkCreateHomepagePracticalInfoItemStatus & {
|
|
1089
|
+
get name(): "CREATED";
|
|
1090
|
+
get ordinal(): 0;
|
|
1091
|
+
};
|
|
1092
|
+
static get VALIDATED(): BulkCreateHomepagePracticalInfoItemStatus & {
|
|
1093
|
+
get name(): "VALIDATED";
|
|
1094
|
+
get ordinal(): 1;
|
|
1095
|
+
};
|
|
1096
|
+
static get Created(): BulkCreateHomepagePracticalInfoItemStatus & {
|
|
1097
|
+
get name(): "CREATED";
|
|
1098
|
+
get ordinal(): 0;
|
|
1099
|
+
};
|
|
1100
|
+
static get Validated(): BulkCreateHomepagePracticalInfoItemStatus & {
|
|
1101
|
+
get name(): "VALIDATED";
|
|
1102
|
+
get ordinal(): 1;
|
|
1103
|
+
};
|
|
1104
|
+
static values(): [typeof BulkCreateHomepagePracticalInfoItemStatus.CREATED, typeof BulkCreateHomepagePracticalInfoItemStatus.VALIDATED];
|
|
1105
|
+
static valueOf(value: string): BulkCreateHomepagePracticalInfoItemStatus;
|
|
1106
|
+
get name(): "CREATED" | "VALIDATED";
|
|
1107
|
+
get ordinal(): 0 | 1;
|
|
1108
|
+
get value(): string;
|
|
1109
|
+
}
|
|
1110
|
+
export declare namespace BulkCreateHomepagePracticalInfoItemStatus {
|
|
1111
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1112
|
+
namespace $metadata$ {
|
|
1113
|
+
const constructor: abstract new () => BulkCreateHomepagePracticalInfoItemStatus;
|
|
1114
|
+
}
|
|
1115
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1116
|
+
private constructor();
|
|
1117
|
+
}
|
|
1118
|
+
namespace Companion {
|
|
1119
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1120
|
+
namespace $metadata$ {
|
|
1121
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
1122
|
+
fromValue(value: string): BulkCreateHomepagePracticalInfoItemStatus | null | undefined;
|
|
1123
|
+
private constructor();
|
|
1124
|
+
}
|
|
1125
|
+
}
|
|
1126
|
+
}
|
|
1127
|
+
}
|
|
1128
|
+
export interface BulkCreateHomepagePracticalInfoResultProps {
|
|
1129
|
+
items: BulkCreateHomepagePracticalInfoItemResultProps[];
|
|
1130
|
+
summary?: BulkCreateHomepagePracticalInfoSummaryProps | null | undefined;
|
|
1131
|
+
}
|
|
1132
|
+
export declare class BulkCreateHomepagePracticalInfoResult {
|
|
1133
|
+
constructor(props: BulkCreateHomepagePracticalInfoResultProps);
|
|
1134
|
+
constructor(items: BulkCreateHomepagePracticalInfoItemResult[], summary?: BulkCreateHomepagePracticalInfoSummary | null | undefined);
|
|
1135
|
+
get items(): BulkCreateHomepagePracticalInfoItemResult[];
|
|
1136
|
+
get summary(): BulkCreateHomepagePracticalInfoSummary | null | undefined;
|
|
1137
|
+
}
|
|
1138
|
+
export declare namespace BulkCreateHomepagePracticalInfoResult {
|
|
1139
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1140
|
+
namespace $metadata$ {
|
|
1141
|
+
const constructor: abstract new () => BulkCreateHomepagePracticalInfoResult;
|
|
1142
|
+
}
|
|
1143
|
+
}
|
|
1144
|
+
export interface BulkCreateHomepagePracticalInfoSummaryProps {
|
|
1145
|
+
created: bigint;
|
|
1146
|
+
dryRun: boolean;
|
|
1147
|
+
total: bigint;
|
|
1148
|
+
validated: bigint;
|
|
1149
|
+
}
|
|
1150
|
+
export declare class BulkCreateHomepagePracticalInfoSummary {
|
|
1151
|
+
constructor(props: BulkCreateHomepagePracticalInfoSummaryProps);
|
|
1152
|
+
constructor(created: bigint, dryRun: boolean, total: bigint, validated: bigint);
|
|
1153
|
+
get created(): bigint;
|
|
1154
|
+
get dryRun(): boolean;
|
|
1155
|
+
get total(): bigint;
|
|
1156
|
+
get validated(): bigint;
|
|
1157
|
+
}
|
|
1158
|
+
export declare namespace BulkCreateHomepagePracticalInfoSummary {
|
|
1159
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1160
|
+
namespace $metadata$ {
|
|
1161
|
+
const constructor: abstract new () => BulkCreateHomepagePracticalInfoSummary;
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
export interface BulkCreateIssueCommandProps {
|
|
1165
|
+
clientReference?: string | null | undefined;
|
|
1166
|
+
command: CreateIssueCommandProps;
|
|
1167
|
+
companyId: bigint;
|
|
1168
|
+
}
|
|
1169
|
+
export declare class BulkCreateIssueCommand {
|
|
1170
|
+
constructor(props: BulkCreateIssueCommandProps);
|
|
1171
|
+
constructor(clientReference: string | null | undefined, command: CreateIssueCommand, companyId: bigint);
|
|
1172
|
+
get clientReference(): string | null | undefined;
|
|
1173
|
+
get command(): CreateIssueCommand;
|
|
1174
|
+
get companyId(): bigint;
|
|
1175
|
+
}
|
|
1176
|
+
export declare namespace BulkCreateIssueCommand {
|
|
1177
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1178
|
+
namespace $metadata$ {
|
|
1179
|
+
const constructor: abstract new () => BulkCreateIssueCommand;
|
|
1180
|
+
}
|
|
1181
|
+
}
|
|
1182
|
+
export interface BulkCreateIssueItemResultProps {
|
|
1183
|
+
clientReference?: string | null | undefined;
|
|
1184
|
+
companyId: bigint;
|
|
1185
|
+
index: bigint;
|
|
1186
|
+
issueId?: bigint | null | undefined;
|
|
1187
|
+
status: BulkCreateIssueItemStatusProps;
|
|
1188
|
+
}
|
|
1189
|
+
export declare class BulkCreateIssueItemResult {
|
|
1190
|
+
constructor(props: BulkCreateIssueItemResultProps);
|
|
1191
|
+
constructor(clientReference: string | null | undefined, companyId: bigint, index: bigint, issueId: bigint | null | undefined, status: BulkCreateIssueItemStatus);
|
|
1192
|
+
get clientReference(): string | null | undefined;
|
|
1193
|
+
get companyId(): bigint;
|
|
1194
|
+
get index(): bigint;
|
|
1195
|
+
get issueId(): bigint | null | undefined;
|
|
1196
|
+
get status(): BulkCreateIssueItemStatus;
|
|
1197
|
+
}
|
|
1198
|
+
export declare namespace BulkCreateIssueItemResult {
|
|
1199
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1200
|
+
namespace $metadata$ {
|
|
1201
|
+
const constructor: abstract new () => BulkCreateIssueItemResult;
|
|
1202
|
+
}
|
|
1203
|
+
}
|
|
1204
|
+
export declare abstract class BulkCreateIssueItemStatus {
|
|
1205
|
+
private constructor();
|
|
1206
|
+
static get CREATED(): BulkCreateIssueItemStatus & {
|
|
1207
|
+
get name(): "CREATED";
|
|
1208
|
+
get ordinal(): 0;
|
|
1209
|
+
};
|
|
1210
|
+
static get VALIDATED(): BulkCreateIssueItemStatus & {
|
|
1211
|
+
get name(): "VALIDATED";
|
|
1212
|
+
get ordinal(): 1;
|
|
1213
|
+
};
|
|
1214
|
+
static get Created(): BulkCreateIssueItemStatus & {
|
|
1215
|
+
get name(): "CREATED";
|
|
1216
|
+
get ordinal(): 0;
|
|
1217
|
+
};
|
|
1218
|
+
static get Validated(): BulkCreateIssueItemStatus & {
|
|
1219
|
+
get name(): "VALIDATED";
|
|
1220
|
+
get ordinal(): 1;
|
|
1221
|
+
};
|
|
1222
|
+
static values(): [typeof BulkCreateIssueItemStatus.CREATED, typeof BulkCreateIssueItemStatus.VALIDATED];
|
|
1223
|
+
static valueOf(value: string): BulkCreateIssueItemStatus;
|
|
1224
|
+
get name(): "CREATED" | "VALIDATED";
|
|
1225
|
+
get ordinal(): 0 | 1;
|
|
1226
|
+
get value(): string;
|
|
1227
|
+
}
|
|
1228
|
+
export declare namespace BulkCreateIssueItemStatus {
|
|
1229
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1230
|
+
namespace $metadata$ {
|
|
1231
|
+
const constructor: abstract new () => BulkCreateIssueItemStatus;
|
|
1232
|
+
}
|
|
1233
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1234
|
+
private constructor();
|
|
1235
|
+
}
|
|
1236
|
+
namespace Companion {
|
|
1237
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1238
|
+
namespace $metadata$ {
|
|
1239
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
1240
|
+
fromValue(value: string): BulkCreateIssueItemStatus | null | undefined;
|
|
1241
|
+
private constructor();
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
export interface BulkCreateIssuesCommandProps {
|
|
1247
|
+
dryRun?: boolean | null | undefined;
|
|
1248
|
+
items: BulkCreateIssueCommandProps[];
|
|
1249
|
+
}
|
|
1250
|
+
export declare class BulkCreateIssuesCommand {
|
|
1251
|
+
constructor(props: BulkCreateIssuesCommandProps);
|
|
1252
|
+
constructor(dryRun: boolean | null | undefined, items: BulkCreateIssueCommand[]);
|
|
1253
|
+
get dryRun(): boolean | null | undefined;
|
|
1254
|
+
get items(): BulkCreateIssueCommand[];
|
|
1255
|
+
}
|
|
1256
|
+
export declare namespace BulkCreateIssuesCommand {
|
|
1257
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1258
|
+
namespace $metadata$ {
|
|
1259
|
+
const constructor: abstract new () => BulkCreateIssuesCommand;
|
|
1260
|
+
}
|
|
1261
|
+
}
|
|
1262
|
+
export interface BulkCreateIssuesResultProps {
|
|
1263
|
+
items: BulkCreateIssueItemResultProps[];
|
|
1264
|
+
summary?: BulkCreateIssuesSummaryProps | null | undefined;
|
|
1265
|
+
}
|
|
1266
|
+
export declare class BulkCreateIssuesResult {
|
|
1267
|
+
constructor(props: BulkCreateIssuesResultProps);
|
|
1268
|
+
constructor(items: BulkCreateIssueItemResult[], summary?: BulkCreateIssuesSummary | null | undefined);
|
|
1269
|
+
get items(): BulkCreateIssueItemResult[];
|
|
1270
|
+
get summary(): BulkCreateIssuesSummary | null | undefined;
|
|
1271
|
+
}
|
|
1272
|
+
export declare namespace BulkCreateIssuesResult {
|
|
1273
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1274
|
+
namespace $metadata$ {
|
|
1275
|
+
const constructor: abstract new () => BulkCreateIssuesResult;
|
|
1276
|
+
}
|
|
1277
|
+
}
|
|
1278
|
+
export interface BulkCreateIssuesSummaryProps {
|
|
1279
|
+
created: bigint;
|
|
1280
|
+
dryRun: boolean;
|
|
1281
|
+
total: bigint;
|
|
1282
|
+
validated: bigint;
|
|
1283
|
+
}
|
|
1284
|
+
export declare class BulkCreateIssuesSummary {
|
|
1285
|
+
constructor(props: BulkCreateIssuesSummaryProps);
|
|
1286
|
+
constructor(created: bigint, dryRun: boolean, total: bigint, validated: bigint);
|
|
1287
|
+
get created(): bigint;
|
|
1288
|
+
get dryRun(): boolean;
|
|
1289
|
+
get total(): bigint;
|
|
1290
|
+
get validated(): bigint;
|
|
1291
|
+
}
|
|
1292
|
+
export declare namespace BulkCreateIssuesSummary {
|
|
1293
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1294
|
+
namespace $metadata$ {
|
|
1295
|
+
const constructor: abstract new () => BulkCreateIssuesSummary;
|
|
1296
|
+
}
|
|
1297
|
+
}
|
|
1298
|
+
export interface BulkCreateMeetingCommandProps {
|
|
1299
|
+
clientReference?: string | null | undefined;
|
|
1300
|
+
command: CreateMeetingCommandProps;
|
|
1301
|
+
companyId: bigint;
|
|
1302
|
+
}
|
|
1303
|
+
export declare class BulkCreateMeetingCommand {
|
|
1304
|
+
constructor(props: BulkCreateMeetingCommandProps);
|
|
1305
|
+
constructor(clientReference: string | null | undefined, command: CreateMeetingCommand, companyId: bigint);
|
|
1306
|
+
get clientReference(): string | null | undefined;
|
|
1307
|
+
get command(): CreateMeetingCommand;
|
|
1308
|
+
get companyId(): bigint;
|
|
1309
|
+
}
|
|
1310
|
+
export declare namespace BulkCreateMeetingCommand {
|
|
1311
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1312
|
+
namespace $metadata$ {
|
|
1313
|
+
const constructor: abstract new () => BulkCreateMeetingCommand;
|
|
1314
|
+
}
|
|
1315
|
+
}
|
|
1316
|
+
export interface BulkCreateMeetingItemResultProps {
|
|
1317
|
+
clientReference?: string | null | undefined;
|
|
1318
|
+
companyId: bigint;
|
|
1319
|
+
index: bigint;
|
|
1320
|
+
meetingId?: bigint | null | undefined;
|
|
1321
|
+
status: BulkCreateMeetingItemStatusProps;
|
|
1322
|
+
}
|
|
1323
|
+
export declare class BulkCreateMeetingItemResult {
|
|
1324
|
+
constructor(props: BulkCreateMeetingItemResultProps);
|
|
1325
|
+
constructor(clientReference: string | null | undefined, companyId: bigint, index: bigint, meetingId: bigint | null | undefined, status: BulkCreateMeetingItemStatus);
|
|
1326
|
+
get clientReference(): string | null | undefined;
|
|
1327
|
+
get companyId(): bigint;
|
|
1328
|
+
get index(): bigint;
|
|
1329
|
+
get meetingId(): bigint | null | undefined;
|
|
1330
|
+
get status(): BulkCreateMeetingItemStatus;
|
|
1331
|
+
}
|
|
1332
|
+
export declare namespace BulkCreateMeetingItemResult {
|
|
1333
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1334
|
+
namespace $metadata$ {
|
|
1335
|
+
const constructor: abstract new () => BulkCreateMeetingItemResult;
|
|
1336
|
+
}
|
|
1337
|
+
}
|
|
1338
|
+
export declare abstract class BulkCreateMeetingItemStatus {
|
|
1339
|
+
private constructor();
|
|
1340
|
+
static get CREATED(): BulkCreateMeetingItemStatus & {
|
|
1341
|
+
get name(): "CREATED";
|
|
1342
|
+
get ordinal(): 0;
|
|
1343
|
+
};
|
|
1344
|
+
static get VALIDATED(): BulkCreateMeetingItemStatus & {
|
|
1345
|
+
get name(): "VALIDATED";
|
|
1346
|
+
get ordinal(): 1;
|
|
1347
|
+
};
|
|
1348
|
+
static get Created(): BulkCreateMeetingItemStatus & {
|
|
1349
|
+
get name(): "CREATED";
|
|
1350
|
+
get ordinal(): 0;
|
|
1351
|
+
};
|
|
1352
|
+
static get Validated(): BulkCreateMeetingItemStatus & {
|
|
1353
|
+
get name(): "VALIDATED";
|
|
1354
|
+
get ordinal(): 1;
|
|
1355
|
+
};
|
|
1356
|
+
static values(): [typeof BulkCreateMeetingItemStatus.CREATED, typeof BulkCreateMeetingItemStatus.VALIDATED];
|
|
1357
|
+
static valueOf(value: string): BulkCreateMeetingItemStatus;
|
|
1358
|
+
get name(): "CREATED" | "VALIDATED";
|
|
1359
|
+
get ordinal(): 0 | 1;
|
|
1360
|
+
get value(): string;
|
|
1361
|
+
}
|
|
1362
|
+
export declare namespace BulkCreateMeetingItemStatus {
|
|
1363
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1364
|
+
namespace $metadata$ {
|
|
1365
|
+
const constructor: abstract new () => BulkCreateMeetingItemStatus;
|
|
1366
|
+
}
|
|
1367
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1368
|
+
private constructor();
|
|
1369
|
+
}
|
|
1370
|
+
namespace Companion {
|
|
1371
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1372
|
+
namespace $metadata$ {
|
|
1373
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
1374
|
+
fromValue(value: string): BulkCreateMeetingItemStatus | null | undefined;
|
|
1375
|
+
private constructor();
|
|
1376
|
+
}
|
|
1377
|
+
}
|
|
1378
|
+
}
|
|
1379
|
+
}
|
|
1380
|
+
export interface BulkCreateMeetingsCommandProps {
|
|
1381
|
+
dryRun?: boolean | null | undefined;
|
|
1382
|
+
items: BulkCreateMeetingCommandProps[];
|
|
1383
|
+
}
|
|
1384
|
+
export declare class BulkCreateMeetingsCommand {
|
|
1385
|
+
constructor(props: BulkCreateMeetingsCommandProps);
|
|
1386
|
+
constructor(dryRun: boolean | null | undefined, items: BulkCreateMeetingCommand[]);
|
|
1387
|
+
get dryRun(): boolean | null | undefined;
|
|
1388
|
+
get items(): BulkCreateMeetingCommand[];
|
|
1389
|
+
}
|
|
1390
|
+
export declare namespace BulkCreateMeetingsCommand {
|
|
1391
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1392
|
+
namespace $metadata$ {
|
|
1393
|
+
const constructor: abstract new () => BulkCreateMeetingsCommand;
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
export interface BulkCreateMeetingsResultProps {
|
|
1397
|
+
items: BulkCreateMeetingItemResultProps[];
|
|
1398
|
+
summary?: BulkCreateMeetingsSummaryProps | null | undefined;
|
|
1399
|
+
}
|
|
1400
|
+
export declare class BulkCreateMeetingsResult {
|
|
1401
|
+
constructor(props: BulkCreateMeetingsResultProps);
|
|
1402
|
+
constructor(items: BulkCreateMeetingItemResult[], summary?: BulkCreateMeetingsSummary | null | undefined);
|
|
1403
|
+
get items(): BulkCreateMeetingItemResult[];
|
|
1404
|
+
get summary(): BulkCreateMeetingsSummary | null | undefined;
|
|
1405
|
+
}
|
|
1406
|
+
export declare namespace BulkCreateMeetingsResult {
|
|
1407
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1408
|
+
namespace $metadata$ {
|
|
1409
|
+
const constructor: abstract new () => BulkCreateMeetingsResult;
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1412
|
+
export interface BulkCreateMeetingsSummaryProps {
|
|
1413
|
+
created: bigint;
|
|
1414
|
+
dryRun: boolean;
|
|
1415
|
+
total: bigint;
|
|
1416
|
+
validated: bigint;
|
|
1417
|
+
}
|
|
1418
|
+
export declare class BulkCreateMeetingsSummary {
|
|
1419
|
+
constructor(props: BulkCreateMeetingsSummaryProps);
|
|
1420
|
+
constructor(created: bigint, dryRun: boolean, total: bigint, validated: bigint);
|
|
1421
|
+
get created(): bigint;
|
|
1422
|
+
get dryRun(): boolean;
|
|
1423
|
+
get total(): bigint;
|
|
1424
|
+
get validated(): bigint;
|
|
1425
|
+
}
|
|
1426
|
+
export declare namespace BulkCreateMeetingsSummary {
|
|
1427
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1428
|
+
namespace $metadata$ {
|
|
1429
|
+
const constructor: abstract new () => BulkCreateMeetingsSummary;
|
|
1430
|
+
}
|
|
1431
|
+
}
|
|
1432
|
+
export interface BulkCreateNewsletterCommandProps {
|
|
1433
|
+
clientReference?: string | null | undefined;
|
|
1434
|
+
command: CreateNewsletterCommandProps;
|
|
1435
|
+
companyId: bigint;
|
|
1436
|
+
}
|
|
1437
|
+
export declare class BulkCreateNewsletterCommand {
|
|
1438
|
+
constructor(props: BulkCreateNewsletterCommandProps);
|
|
1439
|
+
constructor(clientReference: string | null | undefined, command: CreateNewsletterCommand, companyId: bigint);
|
|
1440
|
+
get clientReference(): string | null | undefined;
|
|
1441
|
+
get command(): CreateNewsletterCommand;
|
|
1442
|
+
get companyId(): bigint;
|
|
1443
|
+
}
|
|
1444
|
+
export declare namespace BulkCreateNewsletterCommand {
|
|
1445
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1446
|
+
namespace $metadata$ {
|
|
1447
|
+
const constructor: abstract new () => BulkCreateNewsletterCommand;
|
|
1448
|
+
}
|
|
1449
|
+
}
|
|
1450
|
+
export interface BulkCreateNewsletterItemResultProps {
|
|
1451
|
+
clientReference?: string | null | undefined;
|
|
1452
|
+
companyId: bigint;
|
|
1453
|
+
index: bigint;
|
|
1454
|
+
newsletterId?: bigint | null | undefined;
|
|
1455
|
+
status: BulkCreateNewsletterItemStatusProps;
|
|
1456
|
+
}
|
|
1457
|
+
export declare class BulkCreateNewsletterItemResult {
|
|
1458
|
+
constructor(props: BulkCreateNewsletterItemResultProps);
|
|
1459
|
+
constructor(clientReference: string | null | undefined, companyId: bigint, index: bigint, newsletterId: bigint | null | undefined, status: BulkCreateNewsletterItemStatus);
|
|
1460
|
+
get clientReference(): string | null | undefined;
|
|
1461
|
+
get companyId(): bigint;
|
|
1462
|
+
get index(): bigint;
|
|
1463
|
+
get newsletterId(): bigint | null | undefined;
|
|
1464
|
+
get status(): BulkCreateNewsletterItemStatus;
|
|
1465
|
+
}
|
|
1466
|
+
export declare namespace BulkCreateNewsletterItemResult {
|
|
1467
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1468
|
+
namespace $metadata$ {
|
|
1469
|
+
const constructor: abstract new () => BulkCreateNewsletterItemResult;
|
|
1470
|
+
}
|
|
1471
|
+
}
|
|
1472
|
+
export declare abstract class BulkCreateNewsletterItemStatus {
|
|
1473
|
+
private constructor();
|
|
1474
|
+
static get CREATED(): BulkCreateNewsletterItemStatus & {
|
|
1475
|
+
get name(): "CREATED";
|
|
1476
|
+
get ordinal(): 0;
|
|
1477
|
+
};
|
|
1478
|
+
static get VALIDATED(): BulkCreateNewsletterItemStatus & {
|
|
1479
|
+
get name(): "VALIDATED";
|
|
1480
|
+
get ordinal(): 1;
|
|
1481
|
+
};
|
|
1482
|
+
static get Created(): BulkCreateNewsletterItemStatus & {
|
|
1483
|
+
get name(): "CREATED";
|
|
1484
|
+
get ordinal(): 0;
|
|
1485
|
+
};
|
|
1486
|
+
static get Validated(): BulkCreateNewsletterItemStatus & {
|
|
1487
|
+
get name(): "VALIDATED";
|
|
1488
|
+
get ordinal(): 1;
|
|
1489
|
+
};
|
|
1490
|
+
static values(): [typeof BulkCreateNewsletterItemStatus.CREATED, typeof BulkCreateNewsletterItemStatus.VALIDATED];
|
|
1491
|
+
static valueOf(value: string): BulkCreateNewsletterItemStatus;
|
|
1492
|
+
get name(): "CREATED" | "VALIDATED";
|
|
1493
|
+
get ordinal(): 0 | 1;
|
|
1494
|
+
get value(): string;
|
|
1495
|
+
}
|
|
1496
|
+
export declare namespace BulkCreateNewsletterItemStatus {
|
|
1497
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1498
|
+
namespace $metadata$ {
|
|
1499
|
+
const constructor: abstract new () => BulkCreateNewsletterItemStatus;
|
|
1500
|
+
}
|
|
1501
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1502
|
+
private constructor();
|
|
1503
|
+
}
|
|
1504
|
+
namespace Companion {
|
|
1505
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1506
|
+
namespace $metadata$ {
|
|
1507
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
1508
|
+
fromValue(value: string): BulkCreateNewsletterItemStatus | null | undefined;
|
|
1509
|
+
private constructor();
|
|
1510
|
+
}
|
|
1511
|
+
}
|
|
1512
|
+
}
|
|
1513
|
+
}
|
|
1514
|
+
export interface BulkCreateNewslettersCommandProps {
|
|
1515
|
+
dryRun?: boolean | null | undefined;
|
|
1516
|
+
items: BulkCreateNewsletterCommandProps[];
|
|
1517
|
+
}
|
|
1518
|
+
export declare class BulkCreateNewslettersCommand {
|
|
1519
|
+
constructor(props: BulkCreateNewslettersCommandProps);
|
|
1520
|
+
constructor(dryRun: boolean | null | undefined, items: BulkCreateNewsletterCommand[]);
|
|
1521
|
+
get dryRun(): boolean | null | undefined;
|
|
1522
|
+
get items(): BulkCreateNewsletterCommand[];
|
|
1523
|
+
}
|
|
1524
|
+
export declare namespace BulkCreateNewslettersCommand {
|
|
1525
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1526
|
+
namespace $metadata$ {
|
|
1527
|
+
const constructor: abstract new () => BulkCreateNewslettersCommand;
|
|
1528
|
+
}
|
|
1529
|
+
}
|
|
1530
|
+
export interface BulkCreateNewslettersResultProps {
|
|
1531
|
+
items: BulkCreateNewsletterItemResultProps[];
|
|
1532
|
+
summary?: BulkCreateNewslettersSummaryProps | null | undefined;
|
|
1533
|
+
}
|
|
1534
|
+
export declare class BulkCreateNewslettersResult {
|
|
1535
|
+
constructor(props: BulkCreateNewslettersResultProps);
|
|
1536
|
+
constructor(items: BulkCreateNewsletterItemResult[], summary?: BulkCreateNewslettersSummary | null | undefined);
|
|
1537
|
+
get items(): BulkCreateNewsletterItemResult[];
|
|
1538
|
+
get summary(): BulkCreateNewslettersSummary | null | undefined;
|
|
1539
|
+
}
|
|
1540
|
+
export declare namespace BulkCreateNewslettersResult {
|
|
1541
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1542
|
+
namespace $metadata$ {
|
|
1543
|
+
const constructor: abstract new () => BulkCreateNewslettersResult;
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
export interface BulkCreateNewslettersSummaryProps {
|
|
1547
|
+
created: bigint;
|
|
1548
|
+
dryRun: boolean;
|
|
1549
|
+
total: bigint;
|
|
1550
|
+
validated: bigint;
|
|
1551
|
+
}
|
|
1552
|
+
export declare class BulkCreateNewslettersSummary {
|
|
1553
|
+
constructor(props: BulkCreateNewslettersSummaryProps);
|
|
1554
|
+
constructor(created: bigint, dryRun: boolean, total: bigint, validated: bigint);
|
|
1555
|
+
get created(): bigint;
|
|
1556
|
+
get dryRun(): boolean;
|
|
1557
|
+
get total(): bigint;
|
|
1558
|
+
get validated(): bigint;
|
|
1559
|
+
}
|
|
1560
|
+
export declare namespace BulkCreateNewslettersSummary {
|
|
1561
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1562
|
+
namespace $metadata$ {
|
|
1563
|
+
const constructor: abstract new () => BulkCreateNewslettersSummary;
|
|
1564
|
+
}
|
|
1565
|
+
}
|
|
1566
|
+
export interface BulkCreateSMSBroadcastCommandProps {
|
|
1567
|
+
clientReference?: string | null | undefined;
|
|
1568
|
+
command: CreateSMSBroadcastCommandProps;
|
|
1569
|
+
companyId: bigint;
|
|
1570
|
+
}
|
|
1571
|
+
export declare class BulkCreateSMSBroadcastCommand {
|
|
1572
|
+
constructor(props: BulkCreateSMSBroadcastCommandProps);
|
|
1573
|
+
constructor(clientReference: string | null | undefined, command: CreateSMSBroadcastCommand, companyId: bigint);
|
|
1574
|
+
get clientReference(): string | null | undefined;
|
|
1575
|
+
get command(): CreateSMSBroadcastCommand;
|
|
1576
|
+
get companyId(): bigint;
|
|
1577
|
+
}
|
|
1578
|
+
export declare namespace BulkCreateSMSBroadcastCommand {
|
|
1579
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1580
|
+
namespace $metadata$ {
|
|
1581
|
+
const constructor: abstract new () => BulkCreateSMSBroadcastCommand;
|
|
1582
|
+
}
|
|
1583
|
+
}
|
|
1584
|
+
export interface BulkCreateSMSBroadcastItemResultProps {
|
|
1585
|
+
broadcastId?: bigint | null | undefined;
|
|
1586
|
+
clientReference?: string | null | undefined;
|
|
1587
|
+
companyId: bigint;
|
|
1588
|
+
index: bigint;
|
|
1589
|
+
status: BulkCreateSMSBroadcastItemStatusProps;
|
|
1590
|
+
}
|
|
1591
|
+
export declare class BulkCreateSMSBroadcastItemResult {
|
|
1592
|
+
constructor(props: BulkCreateSMSBroadcastItemResultProps);
|
|
1593
|
+
constructor(broadcastId: bigint | null | undefined, clientReference: string | null | undefined, companyId: bigint, index: bigint, status: BulkCreateSMSBroadcastItemStatus);
|
|
1594
|
+
get broadcastId(): bigint | null | undefined;
|
|
1595
|
+
get clientReference(): string | null | undefined;
|
|
1596
|
+
get companyId(): bigint;
|
|
1597
|
+
get index(): bigint;
|
|
1598
|
+
get status(): BulkCreateSMSBroadcastItemStatus;
|
|
1599
|
+
}
|
|
1600
|
+
export declare namespace BulkCreateSMSBroadcastItemResult {
|
|
1601
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1602
|
+
namespace $metadata$ {
|
|
1603
|
+
const constructor: abstract new () => BulkCreateSMSBroadcastItemResult;
|
|
1604
|
+
}
|
|
1605
|
+
}
|
|
1606
|
+
export declare abstract class BulkCreateSMSBroadcastItemStatus {
|
|
1607
|
+
private constructor();
|
|
1608
|
+
static get CREATED(): BulkCreateSMSBroadcastItemStatus & {
|
|
1609
|
+
get name(): "CREATED";
|
|
1610
|
+
get ordinal(): 0;
|
|
1611
|
+
};
|
|
1612
|
+
static get VALIDATED(): BulkCreateSMSBroadcastItemStatus & {
|
|
1613
|
+
get name(): "VALIDATED";
|
|
1614
|
+
get ordinal(): 1;
|
|
1615
|
+
};
|
|
1616
|
+
static get Created(): BulkCreateSMSBroadcastItemStatus & {
|
|
1617
|
+
get name(): "CREATED";
|
|
1618
|
+
get ordinal(): 0;
|
|
1619
|
+
};
|
|
1620
|
+
static get Validated(): BulkCreateSMSBroadcastItemStatus & {
|
|
1621
|
+
get name(): "VALIDATED";
|
|
1622
|
+
get ordinal(): 1;
|
|
1623
|
+
};
|
|
1624
|
+
static values(): [typeof BulkCreateSMSBroadcastItemStatus.CREATED, typeof BulkCreateSMSBroadcastItemStatus.VALIDATED];
|
|
1625
|
+
static valueOf(value: string): BulkCreateSMSBroadcastItemStatus;
|
|
1626
|
+
get name(): "CREATED" | "VALIDATED";
|
|
1627
|
+
get ordinal(): 0 | 1;
|
|
1628
|
+
get value(): string;
|
|
1629
|
+
}
|
|
1630
|
+
export declare namespace BulkCreateSMSBroadcastItemStatus {
|
|
1631
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1632
|
+
namespace $metadata$ {
|
|
1633
|
+
const constructor: abstract new () => BulkCreateSMSBroadcastItemStatus;
|
|
1634
|
+
}
|
|
1635
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1636
|
+
private constructor();
|
|
1637
|
+
}
|
|
1638
|
+
namespace Companion {
|
|
1639
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1640
|
+
namespace $metadata$ {
|
|
1641
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
1642
|
+
fromValue(value: string): BulkCreateSMSBroadcastItemStatus | null | undefined;
|
|
1643
|
+
private constructor();
|
|
1644
|
+
}
|
|
1645
|
+
}
|
|
1646
|
+
}
|
|
1647
|
+
}
|
|
1648
|
+
export interface BulkCreateSMSBroadcastsCommandProps {
|
|
1649
|
+
dryRun?: boolean | null | undefined;
|
|
1650
|
+
items: BulkCreateSMSBroadcastCommandProps[];
|
|
1651
|
+
}
|
|
1652
|
+
export declare class BulkCreateSMSBroadcastsCommand {
|
|
1653
|
+
constructor(props: BulkCreateSMSBroadcastsCommandProps);
|
|
1654
|
+
constructor(dryRun: boolean | null | undefined, items: BulkCreateSMSBroadcastCommand[]);
|
|
1655
|
+
get dryRun(): boolean | null | undefined;
|
|
1656
|
+
get items(): BulkCreateSMSBroadcastCommand[];
|
|
1657
|
+
}
|
|
1658
|
+
export declare namespace BulkCreateSMSBroadcastsCommand {
|
|
1659
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1660
|
+
namespace $metadata$ {
|
|
1661
|
+
const constructor: abstract new () => BulkCreateSMSBroadcastsCommand;
|
|
1662
|
+
}
|
|
1663
|
+
}
|
|
1664
|
+
export interface BulkCreateSMSBroadcastsResultProps {
|
|
1665
|
+
items: BulkCreateSMSBroadcastItemResultProps[];
|
|
1666
|
+
summary?: BulkCreateSMSBroadcastsSummaryProps | null | undefined;
|
|
1667
|
+
}
|
|
1668
|
+
export declare class BulkCreateSMSBroadcastsResult {
|
|
1669
|
+
constructor(props: BulkCreateSMSBroadcastsResultProps);
|
|
1670
|
+
constructor(items: BulkCreateSMSBroadcastItemResult[], summary?: BulkCreateSMSBroadcastsSummary | null | undefined);
|
|
1671
|
+
get items(): BulkCreateSMSBroadcastItemResult[];
|
|
1672
|
+
get summary(): BulkCreateSMSBroadcastsSummary | null | undefined;
|
|
1673
|
+
}
|
|
1674
|
+
export declare namespace BulkCreateSMSBroadcastsResult {
|
|
1675
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1676
|
+
namespace $metadata$ {
|
|
1677
|
+
const constructor: abstract new () => BulkCreateSMSBroadcastsResult;
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
export interface BulkCreateSMSBroadcastsSummaryProps {
|
|
1681
|
+
created: bigint;
|
|
1682
|
+
dryRun: boolean;
|
|
1683
|
+
total: bigint;
|
|
1684
|
+
validated: bigint;
|
|
1685
|
+
}
|
|
1686
|
+
export declare class BulkCreateSMSBroadcastsSummary {
|
|
1687
|
+
constructor(props: BulkCreateSMSBroadcastsSummaryProps);
|
|
1688
|
+
constructor(created: bigint, dryRun: boolean, total: bigint, validated: bigint);
|
|
1689
|
+
get created(): bigint;
|
|
1690
|
+
get dryRun(): boolean;
|
|
1691
|
+
get total(): bigint;
|
|
1692
|
+
get validated(): bigint;
|
|
1693
|
+
}
|
|
1694
|
+
export declare namespace BulkCreateSMSBroadcastsSummary {
|
|
1695
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1696
|
+
namespace $metadata$ {
|
|
1697
|
+
const constructor: abstract new () => BulkCreateSMSBroadcastsSummary;
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
762
1700
|
export interface BulkImportTaskCommandProps {
|
|
763
1701
|
clientReference?: string | null | undefined;
|
|
764
1702
|
command: CreateTaskCommandProps;
|
|
@@ -893,6 +1831,288 @@ export declare namespace BulkImportTasksSummary {
|
|
|
893
1831
|
const constructor: abstract new () => BulkImportTasksSummary;
|
|
894
1832
|
}
|
|
895
1833
|
}
|
|
1834
|
+
export interface BulkPublishNewsletterCommandProps {
|
|
1835
|
+
clientReference?: string | null | undefined;
|
|
1836
|
+
companyId: bigint;
|
|
1837
|
+
newsletterId: bigint;
|
|
1838
|
+
}
|
|
1839
|
+
export declare class BulkPublishNewsletterCommand {
|
|
1840
|
+
constructor(props: BulkPublishNewsletterCommandProps);
|
|
1841
|
+
constructor(clientReference: string | null | undefined, companyId: bigint, newsletterId: bigint);
|
|
1842
|
+
get clientReference(): string | null | undefined;
|
|
1843
|
+
get companyId(): bigint;
|
|
1844
|
+
get newsletterId(): bigint;
|
|
1845
|
+
}
|
|
1846
|
+
export declare namespace BulkPublishNewsletterCommand {
|
|
1847
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1848
|
+
namespace $metadata$ {
|
|
1849
|
+
const constructor: abstract new () => BulkPublishNewsletterCommand;
|
|
1850
|
+
}
|
|
1851
|
+
}
|
|
1852
|
+
export interface BulkPublishNewsletterItemResultProps {
|
|
1853
|
+
clientReference?: string | null | undefined;
|
|
1854
|
+
companyId: bigint;
|
|
1855
|
+
index: bigint;
|
|
1856
|
+
newsletterId: bigint;
|
|
1857
|
+
status: BulkPublishNewsletterItemStatusProps;
|
|
1858
|
+
}
|
|
1859
|
+
export declare class BulkPublishNewsletterItemResult {
|
|
1860
|
+
constructor(props: BulkPublishNewsletterItemResultProps);
|
|
1861
|
+
constructor(clientReference: string | null | undefined, companyId: bigint, index: bigint, newsletterId: bigint, status: BulkPublishNewsletterItemStatus);
|
|
1862
|
+
get clientReference(): string | null | undefined;
|
|
1863
|
+
get companyId(): bigint;
|
|
1864
|
+
get index(): bigint;
|
|
1865
|
+
get newsletterId(): bigint;
|
|
1866
|
+
get status(): BulkPublishNewsletterItemStatus;
|
|
1867
|
+
}
|
|
1868
|
+
export declare namespace BulkPublishNewsletterItemResult {
|
|
1869
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1870
|
+
namespace $metadata$ {
|
|
1871
|
+
const constructor: abstract new () => BulkPublishNewsletterItemResult;
|
|
1872
|
+
}
|
|
1873
|
+
}
|
|
1874
|
+
export declare abstract class BulkPublishNewsletterItemStatus {
|
|
1875
|
+
private constructor();
|
|
1876
|
+
static get PUBLISHED(): BulkPublishNewsletterItemStatus & {
|
|
1877
|
+
get name(): "PUBLISHED";
|
|
1878
|
+
get ordinal(): 0;
|
|
1879
|
+
};
|
|
1880
|
+
static get VALIDATED(): BulkPublishNewsletterItemStatus & {
|
|
1881
|
+
get name(): "VALIDATED";
|
|
1882
|
+
get ordinal(): 1;
|
|
1883
|
+
};
|
|
1884
|
+
static get Published(): BulkPublishNewsletterItemStatus & {
|
|
1885
|
+
get name(): "PUBLISHED";
|
|
1886
|
+
get ordinal(): 0;
|
|
1887
|
+
};
|
|
1888
|
+
static get Validated(): BulkPublishNewsletterItemStatus & {
|
|
1889
|
+
get name(): "VALIDATED";
|
|
1890
|
+
get ordinal(): 1;
|
|
1891
|
+
};
|
|
1892
|
+
static values(): [typeof BulkPublishNewsletterItemStatus.PUBLISHED, typeof BulkPublishNewsletterItemStatus.VALIDATED];
|
|
1893
|
+
static valueOf(value: string): BulkPublishNewsletterItemStatus;
|
|
1894
|
+
get name(): "PUBLISHED" | "VALIDATED";
|
|
1895
|
+
get ordinal(): 0 | 1;
|
|
1896
|
+
get value(): string;
|
|
1897
|
+
}
|
|
1898
|
+
export declare namespace BulkPublishNewsletterItemStatus {
|
|
1899
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1900
|
+
namespace $metadata$ {
|
|
1901
|
+
const constructor: abstract new () => BulkPublishNewsletterItemStatus;
|
|
1902
|
+
}
|
|
1903
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1904
|
+
private constructor();
|
|
1905
|
+
}
|
|
1906
|
+
namespace Companion {
|
|
1907
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1908
|
+
namespace $metadata$ {
|
|
1909
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
1910
|
+
fromValue(value: string): BulkPublishNewsletterItemStatus | null | undefined;
|
|
1911
|
+
private constructor();
|
|
1912
|
+
}
|
|
1913
|
+
}
|
|
1914
|
+
}
|
|
1915
|
+
}
|
|
1916
|
+
export interface BulkPublishNewslettersCommandProps {
|
|
1917
|
+
dryRun?: boolean | null | undefined;
|
|
1918
|
+
items: BulkPublishNewsletterCommandProps[];
|
|
1919
|
+
}
|
|
1920
|
+
export declare class BulkPublishNewslettersCommand {
|
|
1921
|
+
constructor(props: BulkPublishNewslettersCommandProps);
|
|
1922
|
+
constructor(dryRun: boolean | null | undefined, items: BulkPublishNewsletterCommand[]);
|
|
1923
|
+
get dryRun(): boolean | null | undefined;
|
|
1924
|
+
get items(): BulkPublishNewsletterCommand[];
|
|
1925
|
+
}
|
|
1926
|
+
export declare namespace BulkPublishNewslettersCommand {
|
|
1927
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1928
|
+
namespace $metadata$ {
|
|
1929
|
+
const constructor: abstract new () => BulkPublishNewslettersCommand;
|
|
1930
|
+
}
|
|
1931
|
+
}
|
|
1932
|
+
export interface BulkPublishNewslettersResultProps {
|
|
1933
|
+
items: BulkPublishNewsletterItemResultProps[];
|
|
1934
|
+
summary?: BulkPublishNewslettersSummaryProps | null | undefined;
|
|
1935
|
+
}
|
|
1936
|
+
export declare class BulkPublishNewslettersResult {
|
|
1937
|
+
constructor(props: BulkPublishNewslettersResultProps);
|
|
1938
|
+
constructor(items: BulkPublishNewsletterItemResult[], summary?: BulkPublishNewslettersSummary | null | undefined);
|
|
1939
|
+
get items(): BulkPublishNewsletterItemResult[];
|
|
1940
|
+
get summary(): BulkPublishNewslettersSummary | null | undefined;
|
|
1941
|
+
}
|
|
1942
|
+
export declare namespace BulkPublishNewslettersResult {
|
|
1943
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1944
|
+
namespace $metadata$ {
|
|
1945
|
+
const constructor: abstract new () => BulkPublishNewslettersResult;
|
|
1946
|
+
}
|
|
1947
|
+
}
|
|
1948
|
+
export interface BulkPublishNewslettersSummaryProps {
|
|
1949
|
+
dryRun: boolean;
|
|
1950
|
+
published: bigint;
|
|
1951
|
+
total: bigint;
|
|
1952
|
+
validated: bigint;
|
|
1953
|
+
}
|
|
1954
|
+
export declare class BulkPublishNewslettersSummary {
|
|
1955
|
+
constructor(props: BulkPublishNewslettersSummaryProps);
|
|
1956
|
+
constructor(dryRun: boolean, published: bigint, total: bigint, validated: bigint);
|
|
1957
|
+
get dryRun(): boolean;
|
|
1958
|
+
get published(): bigint;
|
|
1959
|
+
get total(): bigint;
|
|
1960
|
+
get validated(): bigint;
|
|
1961
|
+
}
|
|
1962
|
+
export declare namespace BulkPublishNewslettersSummary {
|
|
1963
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1964
|
+
namespace $metadata$ {
|
|
1965
|
+
const constructor: abstract new () => BulkPublishNewslettersSummary;
|
|
1966
|
+
}
|
|
1967
|
+
}
|
|
1968
|
+
export interface BulkPublishSMSBroadcastCommandProps {
|
|
1969
|
+
broadcastId: bigint;
|
|
1970
|
+
clientReference?: string | null | undefined;
|
|
1971
|
+
companyId: bigint;
|
|
1972
|
+
}
|
|
1973
|
+
export declare class BulkPublishSMSBroadcastCommand {
|
|
1974
|
+
constructor(props: BulkPublishSMSBroadcastCommandProps);
|
|
1975
|
+
constructor(broadcastId: bigint, clientReference: string | null | undefined, companyId: bigint);
|
|
1976
|
+
get broadcastId(): bigint;
|
|
1977
|
+
get clientReference(): string | null | undefined;
|
|
1978
|
+
get companyId(): bigint;
|
|
1979
|
+
}
|
|
1980
|
+
export declare namespace BulkPublishSMSBroadcastCommand {
|
|
1981
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1982
|
+
namespace $metadata$ {
|
|
1983
|
+
const constructor: abstract new () => BulkPublishSMSBroadcastCommand;
|
|
1984
|
+
}
|
|
1985
|
+
}
|
|
1986
|
+
export interface BulkPublishSMSBroadcastItemResultProps {
|
|
1987
|
+
broadcastId: bigint;
|
|
1988
|
+
clientReference?: string | null | undefined;
|
|
1989
|
+
companyId: bigint;
|
|
1990
|
+
index: bigint;
|
|
1991
|
+
status: BulkPublishSMSBroadcastItemStatusProps;
|
|
1992
|
+
}
|
|
1993
|
+
export declare class BulkPublishSMSBroadcastItemResult {
|
|
1994
|
+
constructor(props: BulkPublishSMSBroadcastItemResultProps);
|
|
1995
|
+
constructor(broadcastId: bigint, clientReference: string | null | undefined, companyId: bigint, index: bigint, status: BulkPublishSMSBroadcastItemStatus);
|
|
1996
|
+
get broadcastId(): bigint;
|
|
1997
|
+
get clientReference(): string | null | undefined;
|
|
1998
|
+
get companyId(): bigint;
|
|
1999
|
+
get index(): bigint;
|
|
2000
|
+
get status(): BulkPublishSMSBroadcastItemStatus;
|
|
2001
|
+
}
|
|
2002
|
+
export declare namespace BulkPublishSMSBroadcastItemResult {
|
|
2003
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2004
|
+
namespace $metadata$ {
|
|
2005
|
+
const constructor: abstract new () => BulkPublishSMSBroadcastItemResult;
|
|
2006
|
+
}
|
|
2007
|
+
}
|
|
2008
|
+
export declare abstract class BulkPublishSMSBroadcastItemStatus {
|
|
2009
|
+
private constructor();
|
|
2010
|
+
static get PUBLISHED(): BulkPublishSMSBroadcastItemStatus & {
|
|
2011
|
+
get name(): "PUBLISHED";
|
|
2012
|
+
get ordinal(): 0;
|
|
2013
|
+
};
|
|
2014
|
+
static get VALIDATED(): BulkPublishSMSBroadcastItemStatus & {
|
|
2015
|
+
get name(): "VALIDATED";
|
|
2016
|
+
get ordinal(): 1;
|
|
2017
|
+
};
|
|
2018
|
+
static get Published(): BulkPublishSMSBroadcastItemStatus & {
|
|
2019
|
+
get name(): "PUBLISHED";
|
|
2020
|
+
get ordinal(): 0;
|
|
2021
|
+
};
|
|
2022
|
+
static get Validated(): BulkPublishSMSBroadcastItemStatus & {
|
|
2023
|
+
get name(): "VALIDATED";
|
|
2024
|
+
get ordinal(): 1;
|
|
2025
|
+
};
|
|
2026
|
+
static values(): [typeof BulkPublishSMSBroadcastItemStatus.PUBLISHED, typeof BulkPublishSMSBroadcastItemStatus.VALIDATED];
|
|
2027
|
+
static valueOf(value: string): BulkPublishSMSBroadcastItemStatus;
|
|
2028
|
+
get name(): "PUBLISHED" | "VALIDATED";
|
|
2029
|
+
get ordinal(): 0 | 1;
|
|
2030
|
+
get value(): string;
|
|
2031
|
+
}
|
|
2032
|
+
export declare namespace BulkPublishSMSBroadcastItemStatus {
|
|
2033
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2034
|
+
namespace $metadata$ {
|
|
2035
|
+
const constructor: abstract new () => BulkPublishSMSBroadcastItemStatus;
|
|
2036
|
+
}
|
|
2037
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2038
|
+
private constructor();
|
|
2039
|
+
}
|
|
2040
|
+
namespace Companion {
|
|
2041
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2042
|
+
namespace $metadata$ {
|
|
2043
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
2044
|
+
fromValue(value: string): BulkPublishSMSBroadcastItemStatus | null | undefined;
|
|
2045
|
+
private constructor();
|
|
2046
|
+
}
|
|
2047
|
+
}
|
|
2048
|
+
}
|
|
2049
|
+
}
|
|
2050
|
+
export interface BulkPublishSMSBroadcastsCommandProps {
|
|
2051
|
+
dryRun?: boolean | null | undefined;
|
|
2052
|
+
items: BulkPublishSMSBroadcastCommandProps[];
|
|
2053
|
+
}
|
|
2054
|
+
export declare class BulkPublishSMSBroadcastsCommand {
|
|
2055
|
+
constructor(props: BulkPublishSMSBroadcastsCommandProps);
|
|
2056
|
+
constructor(dryRun: boolean | null | undefined, items: BulkPublishSMSBroadcastCommand[]);
|
|
2057
|
+
get dryRun(): boolean | null | undefined;
|
|
2058
|
+
get items(): BulkPublishSMSBroadcastCommand[];
|
|
2059
|
+
}
|
|
2060
|
+
export declare namespace BulkPublishSMSBroadcastsCommand {
|
|
2061
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2062
|
+
namespace $metadata$ {
|
|
2063
|
+
const constructor: abstract new () => BulkPublishSMSBroadcastsCommand;
|
|
2064
|
+
}
|
|
2065
|
+
}
|
|
2066
|
+
export interface BulkPublishSMSBroadcastsResultProps {
|
|
2067
|
+
items: BulkPublishSMSBroadcastItemResultProps[];
|
|
2068
|
+
summary?: BulkPublishSMSBroadcastsSummaryProps | null | undefined;
|
|
2069
|
+
}
|
|
2070
|
+
export declare class BulkPublishSMSBroadcastsResult {
|
|
2071
|
+
constructor(props: BulkPublishSMSBroadcastsResultProps);
|
|
2072
|
+
constructor(items: BulkPublishSMSBroadcastItemResult[], summary?: BulkPublishSMSBroadcastsSummary | null | undefined);
|
|
2073
|
+
get items(): BulkPublishSMSBroadcastItemResult[];
|
|
2074
|
+
get summary(): BulkPublishSMSBroadcastsSummary | null | undefined;
|
|
2075
|
+
}
|
|
2076
|
+
export declare namespace BulkPublishSMSBroadcastsResult {
|
|
2077
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2078
|
+
namespace $metadata$ {
|
|
2079
|
+
const constructor: abstract new () => BulkPublishSMSBroadcastsResult;
|
|
2080
|
+
}
|
|
2081
|
+
}
|
|
2082
|
+
export interface BulkPublishSMSBroadcastsSummaryProps {
|
|
2083
|
+
dryRun: boolean;
|
|
2084
|
+
published: bigint;
|
|
2085
|
+
total: bigint;
|
|
2086
|
+
validated: bigint;
|
|
2087
|
+
}
|
|
2088
|
+
export declare class BulkPublishSMSBroadcastsSummary {
|
|
2089
|
+
constructor(props: BulkPublishSMSBroadcastsSummaryProps);
|
|
2090
|
+
constructor(dryRun: boolean, published: bigint, total: bigint, validated: bigint);
|
|
2091
|
+
get dryRun(): boolean;
|
|
2092
|
+
get published(): bigint;
|
|
2093
|
+
get total(): bigint;
|
|
2094
|
+
get validated(): bigint;
|
|
2095
|
+
}
|
|
2096
|
+
export declare namespace BulkPublishSMSBroadcastsSummary {
|
|
2097
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2098
|
+
namespace $metadata$ {
|
|
2099
|
+
const constructor: abstract new () => BulkPublishSMSBroadcastsSummary;
|
|
2100
|
+
}
|
|
2101
|
+
}
|
|
2102
|
+
export interface BulkUserActionsProps {
|
|
2103
|
+
items: UserActionsByCompanyProps[];
|
|
2104
|
+
}
|
|
2105
|
+
export declare class BulkUserActions {
|
|
2106
|
+
constructor(props: BulkUserActionsProps);
|
|
2107
|
+
constructor(items: UserActionsByCompany[]);
|
|
2108
|
+
get items(): UserActionsByCompany[];
|
|
2109
|
+
}
|
|
2110
|
+
export declare namespace BulkUserActions {
|
|
2111
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2112
|
+
namespace $metadata$ {
|
|
2113
|
+
const constructor: abstract new () => BulkUserActions;
|
|
2114
|
+
}
|
|
2115
|
+
}
|
|
896
2116
|
export interface BusinessAddressProps {
|
|
897
2117
|
address?: AddressSpecificsProps | null | undefined;
|
|
898
2118
|
country?: bigint | null | undefined;
|
|
@@ -7401,6 +8621,34 @@ export declare namespace InvoicePlanTransaction {
|
|
|
7401
8621
|
const constructor: abstract new () => InvoicePlanTransaction;
|
|
7402
8622
|
}
|
|
7403
8623
|
}
|
|
8624
|
+
export interface InvoicePlanTransactionOverviewProps {
|
|
8625
|
+
companyId: bigint;
|
|
8626
|
+
createdAt: SoliboInstant /* Instant */;
|
|
8627
|
+
id: bigint;
|
|
8628
|
+
invoicePlanActive: boolean;
|
|
8629
|
+
invoicePlanId: bigint;
|
|
8630
|
+
invoicePlanName: string;
|
|
8631
|
+
invoicePlanType: InvoicePlanTypeProps;
|
|
8632
|
+
overdueEnabled: boolean;
|
|
8633
|
+
}
|
|
8634
|
+
export declare class InvoicePlanTransactionOverview {
|
|
8635
|
+
constructor(props: InvoicePlanTransactionOverviewProps);
|
|
8636
|
+
constructor(companyId: bigint, createdAt: SoliboInstant /* Instant */, id: bigint, invoicePlanActive: boolean, invoicePlanId: bigint, invoicePlanName: string, invoicePlanType: InvoicePlanType, overdueEnabled: boolean);
|
|
8637
|
+
get companyId(): bigint;
|
|
8638
|
+
get createdAt(): SoliboInstant /* Instant */;
|
|
8639
|
+
get id(): bigint;
|
|
8640
|
+
get invoicePlanActive(): boolean;
|
|
8641
|
+
get invoicePlanId(): bigint;
|
|
8642
|
+
get invoicePlanName(): string;
|
|
8643
|
+
get invoicePlanType(): InvoicePlanType;
|
|
8644
|
+
get overdueEnabled(): boolean;
|
|
8645
|
+
}
|
|
8646
|
+
export declare namespace InvoicePlanTransactionOverview {
|
|
8647
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
8648
|
+
namespace $metadata$ {
|
|
8649
|
+
const constructor: abstract new () => InvoicePlanTransactionOverview;
|
|
8650
|
+
}
|
|
8651
|
+
}
|
|
7404
8652
|
export declare abstract class InvoicePlanType {
|
|
7405
8653
|
private constructor();
|
|
7406
8654
|
static get FELLESKOSTNADER(): InvoicePlanType & {
|
|
@@ -11419,6 +12667,24 @@ export declare namespace PagedListInvoicePlanTransaction {
|
|
|
11419
12667
|
const constructor: abstract new () => PagedListInvoicePlanTransaction;
|
|
11420
12668
|
}
|
|
11421
12669
|
}
|
|
12670
|
+
export interface PagedListInvoicePlanTransactionOverviewProps {
|
|
12671
|
+
items: InvoicePlanTransactionOverviewProps[];
|
|
12672
|
+
meta: MetaProps;
|
|
12673
|
+
paging: PagingProps;
|
|
12674
|
+
}
|
|
12675
|
+
export declare class PagedListInvoicePlanTransactionOverview {
|
|
12676
|
+
constructor(props: PagedListInvoicePlanTransactionOverviewProps);
|
|
12677
|
+
constructor(items: InvoicePlanTransactionOverview[], meta: Meta, paging: Paging);
|
|
12678
|
+
get items(): InvoicePlanTransactionOverview[];
|
|
12679
|
+
get meta(): Meta;
|
|
12680
|
+
get paging(): Paging;
|
|
12681
|
+
}
|
|
12682
|
+
export declare namespace PagedListInvoicePlanTransactionOverview {
|
|
12683
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12684
|
+
namespace $metadata$ {
|
|
12685
|
+
const constructor: abstract new () => PagedListInvoicePlanTransactionOverview;
|
|
12686
|
+
}
|
|
12687
|
+
}
|
|
11422
12688
|
export interface PagedListInvoicePlanTypeProps {
|
|
11423
12689
|
items: InvoicePlanTypeProps[];
|
|
11424
12690
|
meta: MetaProps;
|
|
@@ -11455,6 +12721,24 @@ export declare namespace PagedListInvoicePreview {
|
|
|
11455
12721
|
const constructor: abstract new () => PagedListInvoicePreview;
|
|
11456
12722
|
}
|
|
11457
12723
|
}
|
|
12724
|
+
export interface PagedListInvoiceSettingsProps {
|
|
12725
|
+
items: InvoiceSettingsProps[];
|
|
12726
|
+
meta: MetaProps;
|
|
12727
|
+
paging: PagingProps;
|
|
12728
|
+
}
|
|
12729
|
+
export declare class PagedListInvoiceSettings {
|
|
12730
|
+
constructor(props: PagedListInvoiceSettingsProps);
|
|
12731
|
+
constructor(items: InvoiceSettings[], meta: Meta, paging: Paging);
|
|
12732
|
+
get items(): InvoiceSettings[];
|
|
12733
|
+
get meta(): Meta;
|
|
12734
|
+
get paging(): Paging;
|
|
12735
|
+
}
|
|
12736
|
+
export declare namespace PagedListInvoiceSettings {
|
|
12737
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12738
|
+
namespace $metadata$ {
|
|
12739
|
+
const constructor: abstract new () => PagedListInvoiceSettings;
|
|
12740
|
+
}
|
|
12741
|
+
}
|
|
11458
12742
|
export interface PagedListIssueProps {
|
|
11459
12743
|
items: IssueProps[];
|
|
11460
12744
|
meta: MetaProps;
|
|
@@ -11725,6 +13009,24 @@ export declare namespace PagedListPost {
|
|
|
11725
13009
|
const constructor: abstract new () => PagedListPost;
|
|
11726
13010
|
}
|
|
11727
13011
|
}
|
|
13012
|
+
export interface PagedListQueuedInvoiceProps {
|
|
13013
|
+
items: QueuedInvoiceProps[];
|
|
13014
|
+
meta: MetaProps;
|
|
13015
|
+
paging: PagingProps;
|
|
13016
|
+
}
|
|
13017
|
+
export declare class PagedListQueuedInvoice {
|
|
13018
|
+
constructor(props: PagedListQueuedInvoiceProps);
|
|
13019
|
+
constructor(items: QueuedInvoice[], meta: Meta, paging: Paging);
|
|
13020
|
+
get items(): QueuedInvoice[];
|
|
13021
|
+
get meta(): Meta;
|
|
13022
|
+
get paging(): Paging;
|
|
13023
|
+
}
|
|
13024
|
+
export declare namespace PagedListQueuedInvoice {
|
|
13025
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
13026
|
+
namespace $metadata$ {
|
|
13027
|
+
const constructor: abstract new () => PagedListQueuedInvoice;
|
|
13028
|
+
}
|
|
13029
|
+
}
|
|
11728
13030
|
export interface PagedListResidentProps {
|
|
11729
13031
|
items: ResidentProps[];
|
|
11730
13032
|
meta: MetaProps;
|
|
@@ -12881,34 +14183,32 @@ export declare namespace PaymentHandlingStatus {
|
|
|
12881
14183
|
export interface PaymentRecordProps {
|
|
12882
14184
|
amount?: number | null | undefined;
|
|
12883
14185
|
currency?: string | null | undefined;
|
|
12884
|
-
id
|
|
14186
|
+
id: string;
|
|
12885
14187
|
invoiceId?: string | null | undefined;
|
|
12886
14188
|
kid?: string | null | undefined;
|
|
12887
14189
|
note?: string | null | undefined;
|
|
12888
14190
|
origin?: string | null | undefined;
|
|
12889
|
-
payee
|
|
12890
|
-
payer
|
|
14191
|
+
payee: string;
|
|
14192
|
+
payer: string;
|
|
12891
14193
|
payerName?: string | null | undefined;
|
|
12892
|
-
paymentDate
|
|
12893
|
-
|
|
12894
|
-
tenant?: string | null | undefined;
|
|
14194
|
+
paymentDate: bigint;
|
|
14195
|
+
tenant: string;
|
|
12895
14196
|
}
|
|
12896
14197
|
export declare class PaymentRecord {
|
|
12897
14198
|
constructor(props: PaymentRecordProps);
|
|
12898
|
-
constructor(amount
|
|
14199
|
+
constructor(amount: number | null | undefined, currency: string | null | undefined, id: string, invoiceId: string | null | undefined, kid: string | null | undefined, note: string | null | undefined, origin: string | null | undefined, payee: string, payer: string, payerName: string | null | undefined, paymentDate: bigint, tenant: string);
|
|
12899
14200
|
get amount(): number | null | undefined;
|
|
12900
14201
|
get currency(): string | null | undefined;
|
|
12901
|
-
get id(): string
|
|
14202
|
+
get id(): string;
|
|
12902
14203
|
get invoiceId(): string | null | undefined;
|
|
12903
14204
|
get kid(): string | null | undefined;
|
|
12904
14205
|
get note(): string | null | undefined;
|
|
12905
14206
|
get origin(): string | null | undefined;
|
|
12906
|
-
get payee(): string
|
|
12907
|
-
get payer(): string
|
|
14207
|
+
get payee(): string;
|
|
14208
|
+
get payer(): string;
|
|
12908
14209
|
get payerName(): string | null | undefined;
|
|
12909
|
-
get paymentDate(): bigint
|
|
12910
|
-
get
|
|
12911
|
-
get tenant(): string | null | undefined;
|
|
14210
|
+
get paymentDate(): bigint;
|
|
14211
|
+
get tenant(): string;
|
|
12912
14212
|
}
|
|
12913
14213
|
export declare namespace PaymentRecord {
|
|
12914
14214
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
@@ -13924,6 +15224,22 @@ export declare namespace PublicMessage {
|
|
|
13924
15224
|
const constructor: abstract new () => PublicMessage;
|
|
13925
15225
|
}
|
|
13926
15226
|
}
|
|
15227
|
+
export interface QueuedInvoiceProps {
|
|
15228
|
+
companyId: bigint;
|
|
15229
|
+
invoice: InvoiceInputProps;
|
|
15230
|
+
}
|
|
15231
|
+
export declare class QueuedInvoice {
|
|
15232
|
+
constructor(props: QueuedInvoiceProps);
|
|
15233
|
+
constructor(companyId: bigint, invoice: InvoiceInput);
|
|
15234
|
+
get companyId(): bigint;
|
|
15235
|
+
get invoice(): InvoiceInput;
|
|
15236
|
+
}
|
|
15237
|
+
export declare namespace QueuedInvoice {
|
|
15238
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
15239
|
+
namespace $metadata$ {
|
|
15240
|
+
const constructor: abstract new () => QueuedInvoice;
|
|
15241
|
+
}
|
|
15242
|
+
}
|
|
13927
15243
|
export interface ReceiverFractionProps {
|
|
13928
15244
|
denominator: bigint;
|
|
13929
15245
|
numerator: bigint;
|
|
@@ -19538,6 +20854,22 @@ export declare namespace UrlWrapper {
|
|
|
19538
20854
|
const constructor: abstract new () => UrlWrapper;
|
|
19539
20855
|
}
|
|
19540
20856
|
}
|
|
20857
|
+
export interface UserActionsByCompanyProps {
|
|
20858
|
+
actions: string[];
|
|
20859
|
+
companyId: bigint;
|
|
20860
|
+
}
|
|
20861
|
+
export declare class UserActionsByCompany {
|
|
20862
|
+
constructor(props: UserActionsByCompanyProps);
|
|
20863
|
+
constructor(actions: string[], companyId: bigint);
|
|
20864
|
+
get actions(): string[];
|
|
20865
|
+
get companyId(): bigint;
|
|
20866
|
+
}
|
|
20867
|
+
export declare namespace UserActionsByCompany {
|
|
20868
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
20869
|
+
namespace $metadata$ {
|
|
20870
|
+
const constructor: abstract new () => UserActionsByCompany;
|
|
20871
|
+
}
|
|
20872
|
+
}
|
|
19541
20873
|
export interface UserConversationsProps {
|
|
19542
20874
|
company: CompanyProps;
|
|
19543
20875
|
conversations: ConversationProps[];
|
|
@@ -19807,6 +21139,8 @@ export declare class CommunicationApi extends ApiClient.$metadata$.constructor {
|
|
|
19807
21139
|
createEmailNewsletter(companyId: bigint, createNewsletterCommand: CreateNewsletterCommand): Promise<HttpResponse<Newsletter>>;
|
|
19808
21140
|
createLetter(sendLetterCommand: SendLetterCommand): Promise<HttpResponse<SentLetter>>;
|
|
19809
21141
|
createLetterInCompany(companyId: bigint, sendLetterCommand: SendLetterCommand): Promise<HttpResponse<SentLetter>>;
|
|
21142
|
+
createMultipleEmailNewsletters(bulkCreateNewslettersCommand: BulkCreateNewslettersCommand): Promise<HttpResponse<BulkCreateNewslettersResult>>;
|
|
21143
|
+
createMultipleSMSBroadcasts(bulkCreateSMSBroadcastsCommand: BulkCreateSMSBroadcastsCommand): Promise<HttpResponse<BulkCreateSMSBroadcastsResult>>;
|
|
19810
21144
|
createSMSBroadcast(companyId: bigint, createSMSBroadcastCommand: CreateSMSBroadcastCommand): Promise<HttpResponse<SMSBroadcast>>;
|
|
19811
21145
|
createSMSPurchase(companyId: bigint, bundleId: bigint): Promise<HttpResponse<void>>;
|
|
19812
21146
|
deleteEmailNewsletter(companyId: bigint, newsletterId: bigint): Promise<HttpResponse<void>>;
|
|
@@ -19820,6 +21154,8 @@ export declare class CommunicationApi extends ApiClient.$metadata$.constructor {
|
|
|
19820
21154
|
indexSMSNotificationGroups(companyId: bigint, fields?: string | null | undefined): Promise<HttpResponse<MassCommunicationGroups>>;
|
|
19821
21155
|
indexSMSPurchases(companyId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListSMSBundlePurchase>>;
|
|
19822
21156
|
publishEmailNewsletter(companyId: bigint, newsletterId: bigint): Promise<HttpResponse<Newsletter>>;
|
|
21157
|
+
publishMultipleEmailNewsletters(bulkPublishNewslettersCommand: BulkPublishNewslettersCommand): Promise<HttpResponse<BulkPublishNewslettersResult>>;
|
|
21158
|
+
publishMultipleSMSBroadcasts(bulkPublishSMSBroadcastsCommand: BulkPublishSMSBroadcastsCommand): Promise<HttpResponse<BulkPublishSMSBroadcastsResult>>;
|
|
19823
21159
|
publishSMSBroadcast(companyId: bigint, broadcastId: bigint, purchaseBundleId?: bigint | null | undefined): Promise<HttpResponse<SMSBroadcast>>;
|
|
19824
21160
|
reportPushNotificationRead(companyId: bigint, trackingId: string): Promise<HttpResponse<void>>;
|
|
19825
21161
|
showCommunicationReport(companyId: bigint, communicationType: string, communicationId: bigint, reportType: string, fields?: string | null | undefined): Promise<HttpResponse<CommunicationReport>>;
|
|
@@ -19897,6 +21233,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
|
|
|
19897
21233
|
createInternalMessage(companyId: bigint, conversationId: bigint, createInternalMessageCommand: CreateInternalMessageCommand): Promise<HttpResponse<MessageInConversation>>;
|
|
19898
21234
|
createMessage(companyId: bigint, conversationId: bigint, createMessageCommand: CreateMessageCommand): Promise<HttpResponse<MessageInConversation>>;
|
|
19899
21235
|
createMessagePublicConversation(companySlug: string, conversationId: bigint, createMessageCommand: CreateMessageCommand): Promise<HttpResponse<void>>;
|
|
21236
|
+
createMultipleConversations(bulkCreateConversationsCommand: BulkCreateConversationsCommand): Promise<HttpResponse<BulkCreateConversationsResult>>;
|
|
19900
21237
|
deleteConversation(companyId: bigint, conversationId: bigint, translateToCountryId?: bigint | null | undefined): Promise<HttpResponse<void>>;
|
|
19901
21238
|
deleteConversationCategory(companyId: bigint, categoryId: bigint): Promise<HttpResponse<void>>;
|
|
19902
21239
|
deleteConversationFlag(companyId: bigint, conversationId: bigint): Promise<HttpResponse<void>>;
|
|
@@ -20020,6 +21357,8 @@ export declare class HomepageApi extends ApiClient.$metadata$.constructor {
|
|
|
20020
21357
|
static create(baseUrl?: string, httpClientEngine?: any | null | undefined/* HttpClientEngine | null | undefined */, httpClientConfig?: (p0: any/* HttpClientConfig<UnknownType *> */) => void | null | undefined, jsonSerializer?: any/* Json */): HomepageApi;
|
|
20021
21358
|
static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): HomepageApi;
|
|
20022
21359
|
checkSMSForPost(companyId: bigint, validateSMSCommand: ValidateSMSCommand, postId?: bigint | null | undefined): Promise<HttpResponse<SMSBundle>>;
|
|
21360
|
+
createMultipleHomepagePosts(bulkCreateHomepagePostsCommand: BulkCreateHomepagePostsCommand): Promise<HttpResponse<BulkCreateHomepagePostsResult>>;
|
|
21361
|
+
createMultipleHomepagePracticalInfo(bulkCreateHomepagePracticalInfoCommand: BulkCreateHomepagePracticalInfoCommand): Promise<HttpResponse<BulkCreateHomepagePracticalInfoResult>>;
|
|
20023
21362
|
createPost(companyId: bigint, createPostCommand: CreatePostCommand, purchaseBundleId?: bigint | null | undefined): Promise<HttpResponse<Post>>;
|
|
20024
21363
|
createPracticalInfo(companyId: bigint, createPostCommand: CreatePostCommand, purchaseBundleId?: bigint | null | undefined): Promise<HttpResponse<Post>>;
|
|
20025
21364
|
deletePost(companyId: bigint, postId: bigint, purchaseBundleId?: bigint | null | undefined, publishChanges?: boolean | null | undefined): Promise<HttpResponse<void>>;
|
|
@@ -20123,6 +21462,7 @@ export declare class InvoicingApi extends ApiClient.$metadata$.constructor {
|
|
|
20123
21462
|
indexInvoicingCustomerInvoices(companyId: bigint, customerType: string, customerId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoice>>;
|
|
20124
21463
|
indexInvoicingCustomerMetadata(companyId: bigint, customerType: string, customerId: bigint, fields?: string | null | undefined): Promise<HttpResponse<CustomerMetadata>>;
|
|
20125
21464
|
indexInvoicingCustomers(companyId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListCustomer>>;
|
|
21465
|
+
indexInvoicingCustomersForCompanies(companyIds?: KtList<bigint> | null | undefined, search?: string | null | undefined, active?: boolean | null | undefined, external?: boolean | null | undefined, isRecipient?: boolean | null | undefined, customerType?: CustomerType | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListCustomer>>;
|
|
20126
21466
|
indexInvoicingForCompaniesExpired(fields?: string | null | undefined): Promise<HttpResponse<TriplewinOverdueInvoiceOverview>>;
|
|
20127
21467
|
indexInvoicingForCompaniesExpiredTypes(fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListExpiredType>>;
|
|
20128
21468
|
indexInvoicingForCompaniesOverdue(expiredType: ExpiredType, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoice>>;
|
|
@@ -20131,14 +21471,19 @@ export declare class InvoicingApi extends ApiClient.$metadata$.constructor {
|
|
|
20131
21471
|
indexInvoicingForCompanyHistory(companyId: bigint, periodStart: bigint, periodEnd: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoice>>;
|
|
20132
21472
|
indexInvoicingForCompanyQueued(companyId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoiceInput>>;
|
|
20133
21473
|
indexInvoicingForCompanyQueuedPreview(companyId: bigint, invoiceId: string, fields?: string | null | undefined): Promise<HttpResponse<InvoiceResultPreview>>;
|
|
21474
|
+
indexInvoicingHistoryForCompanies(periodStart: bigint, periodEnd: bigint, companyIds?: KtList<bigint> | null | undefined, search?: string | null | undefined, payerType?: PayerType | null | undefined, open?: boolean | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoice>>;
|
|
20134
21475
|
indexInvoicingInvoiceCredits(companyId: bigint, invoiceId: string, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoice>>;
|
|
20135
21476
|
indexInvoicingInvoicePayments(companyId: bigint, invoiceId: string, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListPaymentRecord>>;
|
|
20136
21477
|
indexInvoicingInvoicePdfs(companyId: bigint, ids: KtList<string>): Promise<HttpResponse<Base64ByteArray>>;
|
|
21478
|
+
indexInvoicingPlanTransactionsForCompanies(companyIds?: KtList<bigint> | null | undefined, invoicePlanIds?: KtList<bigint> | null | undefined, search?: string | null | undefined, active?: boolean | null | undefined, type?: InvoicePlanType | null | undefined, overdueEnabled?: boolean | null | undefined, createdAtFrom?: bigint | null | undefined, createdAtTo?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoicePlanTransactionOverview>>;
|
|
20137
21479
|
indexInvoicingPlanTypes(companyId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoicePlanType>>;
|
|
20138
21480
|
indexInvoicingPlans(companyId: bigint, active?: boolean | null | undefined, type?: InvoicePlanType | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoicePlan>>;
|
|
21481
|
+
indexInvoicingPlansForCompanies(companyIds?: KtList<bigint> | null | undefined, search?: string | null | undefined, active?: boolean | null | undefined, type?: InvoicePlanType | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoicePlan>>;
|
|
20139
21482
|
indexInvoicingSectionInvoiceRecipients(companyId: bigint, sectionId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListSectionInvoiceRecipientOverview>>;
|
|
20140
21483
|
indexInvoicingSectionInvoices(companyId: bigint, sectionId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoice>>;
|
|
20141
21484
|
indexInvoicingSectionPlans(companyId: bigint, sectionId: bigint, active?: boolean | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoicePlan>>;
|
|
21485
|
+
indexInvoicingSettingsForCompanies(companyIds?: KtList<bigint> | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListInvoiceSettings>>;
|
|
21486
|
+
indexQueuedInvoicingForCompanies(companyIds?: KtList<bigint> | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListQueuedInvoice>>;
|
|
20142
21487
|
indexUpcomingInvoicing(fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListGlobalPreview>>;
|
|
20143
21488
|
lossInvoice(companyId: bigint, customerType: string, customerId: bigint, invoiceId: string): Promise<HttpResponse<void>>;
|
|
20144
21489
|
putCompanyInvoiceClose(companyId: bigint, invoiceId: string, closeInvoiceCommand: CloseInvoiceCommand): Promise<HttpResponse<void>>;
|
|
@@ -20202,6 +21547,7 @@ export declare class IssueApi extends ApiClient.$metadata$.constructor {
|
|
|
20202
21547
|
createIssueComment(companyId: bigint, issueId: bigint, createIssueCommentCommand: CreateIssueCommentCommand): Promise<HttpResponse<IssueDetails>>;
|
|
20203
21548
|
createIssueConversation(companyId: bigint, issueId: bigint, conversationId: bigint): Promise<HttpResponse<IssueDetails>>;
|
|
20204
21549
|
createIssueSection(companyId: bigint, issueId: bigint, sectionId: bigint): Promise<HttpResponse<IssueDetails>>;
|
|
21550
|
+
createMultipleIssues(bulkCreateIssuesCommand: BulkCreateIssuesCommand): Promise<HttpResponse<BulkCreateIssuesResult>>;
|
|
20205
21551
|
deleteIssue(companyId: bigint, issueId: bigint): Promise<HttpResponse<void>>;
|
|
20206
21552
|
deleteIssueConversation(companyId: bigint, issueId: bigint, conversationId: bigint): Promise<HttpResponse<void>>;
|
|
20207
21553
|
deleteIssueSection(companyId: bigint, issueId: bigint, sectionId: bigint): Promise<HttpResponse<void>>;
|
|
@@ -20279,6 +21625,7 @@ export declare class MeetingApi extends ApiClient.$metadata$.constructor {
|
|
|
20279
21625
|
closeMeeting(companyId: bigint, meetingId: bigint, closeMeetingCommand: CloseMeetingCommand): Promise<HttpResponse<void>>;
|
|
20280
21626
|
createMeeting(companyId: bigint, createMeetingCommand: CreateMeetingCommand): Promise<HttpResponse<MeetingDetails>>;
|
|
20281
21627
|
createMeetingIssue(companyId: bigint, meetingId: bigint, issueId: bigint, attachIssueToMeetingCommand: AttachIssueToMeetingCommand): Promise<HttpResponse<IssueDetails>>;
|
|
21628
|
+
createMultipleMeetings(bulkCreateMeetingsCommand: BulkCreateMeetingsCommand): Promise<HttpResponse<BulkCreateMeetingsResult>>;
|
|
20282
21629
|
deleteMeeting(companyId: bigint, meetingId: bigint): Promise<HttpResponse<void>>;
|
|
20283
21630
|
deleteMeetingIssue(companyId: bigint, meetingId: bigint, issueId: bigint): Promise<HttpResponse<void>>;
|
|
20284
21631
|
finalizeMeetingSigning(companyId: bigint, meetingId: bigint): Promise<HttpResponse<void>>;
|
|
@@ -20649,6 +21996,7 @@ export declare class UserApi extends ApiClient.$metadata$.constructor {
|
|
|
20649
21996
|
indexUserConversations(unread?: boolean | null | undefined, search?: string | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListUserConversations>>;
|
|
20650
21997
|
me(fields?: string | null | undefined): Promise<HttpResponse<AuthUser>>;
|
|
20651
21998
|
showAuthedUser(fields?: string | null | undefined): Promise<HttpResponse<AuthUser>>;
|
|
21999
|
+
showBulkUserActions(companyIds: KtList<bigint>, fields?: string | null | undefined): Promise<HttpResponse<BulkUserActions>>;
|
|
20652
22000
|
showUser(fields?: string | null | undefined): Promise<HttpResponse<PersonUser>>;
|
|
20653
22001
|
showUserActions(companyId?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListString>>;
|
|
20654
22002
|
showUserImage(personId: bigint, fileName: string, size?: string | null | undefined): Promise<HttpResponse<void>>;
|