@solibo/solibo-query 1.8.3 → 1.8.4

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.
@@ -0,0 +1,8 @@
1
+ import { SoliboSDK } from "@solibo/solibo-sdk";
2
+ import { Id } from "../../../utils/kt-bridge.js";
3
+ export declare function reportPushNotificationReceivedMutationOptions(sdk: SoliboSDK): {
4
+ mutationFn: (params: {
5
+ companyId: Id;
6
+ trackingId: Id;
7
+ }) => Promise<void>;
8
+ };
@@ -0,0 +1,9 @@
1
+ import { toLong } from "../../../utils/kt-bridge.js";
2
+ export function reportPushNotificationReceivedMutationOptions(sdk) {
3
+ return {
4
+ mutationFn: (params) => sdk.api.communication
5
+ .reportPushNotificationReceived(toLong(params.companyId), toLong(params.trackingId))
6
+ .then((res) => res.body()),
7
+ };
8
+ }
9
+ //# sourceMappingURL=reportPushNotificationReceived.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reportPushNotificationReceived.js","sourceRoot":"","sources":["../../../../src/api/commands/communication/reportPushNotificationReceived.ts"],"names":[],"mappings":"AACA,OAAO,EAAM,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAEzD,MAAM,UAAU,6CAA6C,CAAC,GAAc;IAC1E,OAAO;QACL,UAAU,EAAE,CAAC,MAAyC,EAAE,EAAE,CACxD,GAAG,CAAC,GAAG,CAAC,aAAa;aAClB,8BAA8B,CAC7B,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,EACxB,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,CAC1B;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;KAC/B,CAAC;AACJ,CAAC","sourcesContent":["import { SoliboSDK } from \"@solibo/solibo-sdk\";\nimport { Id, toLong } from \"../../../utils/kt-bridge.js\";\n\nexport function reportPushNotificationReceivedMutationOptions(sdk: SoliboSDK) {\n return {\n mutationFn: (params: { companyId: Id; trackingId: Id }) =>\n sdk.api.communication\n .reportPushNotificationReceived(\n toLong(params.companyId),\n toLong(params.trackingId),\n )\n .then((res) => res.body()),\n };\n}\n"]}
@@ -0,0 +1,52 @@
1
+ import type { QueryClient } from "@tanstack/query-core";
2
+ import { BatchConversationStateCommandProps, BatchMoveConversationsToFolderCommandProps, SoliboSDK } from "@solibo/solibo-sdk";
3
+ import { Id, JsProps } from "../../../utils/kt-bridge.js";
4
+ export type BatchConversationStateCommandInput = Omit<JsProps<BatchConversationStateCommandProps>, "conversationIds"> & {
5
+ conversationIds: readonly Id[];
6
+ };
7
+ export type BatchMoveConversationsToFolderCommandInput = Omit<JsProps<BatchMoveConversationsToFolderCommandProps>, "conversationIds" | "folderId"> & {
8
+ conversationIds: readonly Id[];
9
+ folderId?: Id | null | undefined;
10
+ };
11
+ export declare function createMultipleConversationFlagsMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
12
+ mutationFn: (params: {
13
+ companyId: Id;
14
+ cmd: BatchConversationStateCommandInput;
15
+ }) => Promise<void>;
16
+ onSuccess: (_: any, params: any) => Promise<void>;
17
+ };
18
+ export declare function createMultipleConversationReadsMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
19
+ mutationFn: (params: {
20
+ companyId: Id;
21
+ cmd: BatchConversationStateCommandInput;
22
+ }) => Promise<void>;
23
+ onSuccess: (_: any, params: any) => Promise<[void, void]>;
24
+ };
25
+ export declare function createMultipleConversationUnreadsMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
26
+ mutationFn: (params: {
27
+ companyId: Id;
28
+ cmd: BatchConversationStateCommandInput;
29
+ }) => Promise<void>;
30
+ onSuccess: (_: any, params: any) => Promise<[void, void]>;
31
+ };
32
+ export declare function deleteMultipleConversationFlagsMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
33
+ mutationFn: (params: {
34
+ companyId: Id;
35
+ cmd: BatchConversationStateCommandInput;
36
+ }) => Promise<void>;
37
+ onSuccess: (_: any, params: any) => Promise<void>;
38
+ };
39
+ export declare function deleteMultipleConversationsMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
40
+ mutationFn: (params: {
41
+ companyId: Id;
42
+ cmd: BatchConversationStateCommandInput;
43
+ }) => Promise<void>;
44
+ onSuccess: (_: any, params: any) => Promise<[void, void, void]>;
45
+ };
46
+ export declare function moveMultipleConversationsMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
47
+ mutationFn: (params: {
48
+ companyId: Id;
49
+ cmd: BatchMoveConversationsToFolderCommandInput;
50
+ }) => Promise<void>;
51
+ onSuccess: (_: any, params: any) => Promise<void>;
52
+ };
@@ -0,0 +1,79 @@
1
+ import { BatchConversationStateCommand, BatchMoveConversationsToFolderCommand, } from "@solibo/solibo-sdk";
2
+ import { toKtProps, toLong } from "../../../utils/kt-bridge.js";
3
+ import { conversationKeys } from "../../queries/conversation/conversations.js";
4
+ const toOptionalLong = (id) => (id == null ? id : toLong(id));
5
+ const toBatchConversationStateCommand = (cmd) => new BatchConversationStateCommand(toKtProps({
6
+ conversationIds: cmd.conversationIds.map(toLong),
7
+ }));
8
+ const toBatchMoveConversationsToFolderCommand = (cmd) => new BatchMoveConversationsToFolderCommand(toKtProps({
9
+ conversationIds: cmd.conversationIds.map(toLong),
10
+ folderId: toOptionalLong(cmd.folderId),
11
+ }));
12
+ const invalidateConversationList = (queryClient, companyId) => queryClient.invalidateQueries({
13
+ queryKey: [conversationKeys.list(companyId)],
14
+ });
15
+ const invalidateUnreadCount = (queryClient, companyId) => queryClient.invalidateQueries({
16
+ queryKey: [conversationKeys.unreadCount(companyId)],
17
+ });
18
+ const invalidateConversationCount = (queryClient, companyId) => queryClient.invalidateQueries({
19
+ queryKey: [conversationKeys.countInCompany(companyId)],
20
+ });
21
+ export function createMultipleConversationFlagsMutationOptions(sdk, queryClient) {
22
+ return {
23
+ mutationFn: (params) => sdk.api.conversations
24
+ .createMultipleConversationFlags(toLong(params.companyId), toBatchConversationStateCommand(params.cmd))
25
+ .then((res) => res.body()),
26
+ onSuccess: (_, params) => invalidateConversationList(queryClient, params.companyId),
27
+ };
28
+ }
29
+ export function createMultipleConversationReadsMutationOptions(sdk, queryClient) {
30
+ return {
31
+ mutationFn: (params) => sdk.api.conversations
32
+ .createMultipleConversationReads(toLong(params.companyId), toBatchConversationStateCommand(params.cmd))
33
+ .then((res) => res.body()),
34
+ onSuccess: (_, params) => Promise.all([
35
+ invalidateConversationList(queryClient, params.companyId),
36
+ invalidateUnreadCount(queryClient, params.companyId),
37
+ ]),
38
+ };
39
+ }
40
+ export function createMultipleConversationUnreadsMutationOptions(sdk, queryClient) {
41
+ return {
42
+ mutationFn: (params) => sdk.api.conversations
43
+ .createMultipleConversationUnreads(toLong(params.companyId), toBatchConversationStateCommand(params.cmd))
44
+ .then((res) => res.body()),
45
+ onSuccess: (_, params) => Promise.all([
46
+ invalidateConversationList(queryClient, params.companyId),
47
+ invalidateUnreadCount(queryClient, params.companyId),
48
+ ]),
49
+ };
50
+ }
51
+ export function deleteMultipleConversationFlagsMutationOptions(sdk, queryClient) {
52
+ return {
53
+ mutationFn: (params) => sdk.api.conversations
54
+ .deleteMultipleConversationFlags(toLong(params.companyId), toBatchConversationStateCommand(params.cmd))
55
+ .then((res) => res.body()),
56
+ onSuccess: (_, params) => invalidateConversationList(queryClient, params.companyId),
57
+ };
58
+ }
59
+ export function deleteMultipleConversationsMutationOptions(sdk, queryClient) {
60
+ return {
61
+ mutationFn: (params) => sdk.api.conversations
62
+ .deleteMultipleConversations(toLong(params.companyId), toBatchConversationStateCommand(params.cmd))
63
+ .then((res) => res.body()),
64
+ onSuccess: (_, params) => Promise.all([
65
+ invalidateConversationList(queryClient, params.companyId),
66
+ invalidateUnreadCount(queryClient, params.companyId),
67
+ invalidateConversationCount(queryClient, params.companyId),
68
+ ]),
69
+ };
70
+ }
71
+ export function moveMultipleConversationsMutationOptions(sdk, queryClient) {
72
+ return {
73
+ mutationFn: (params) => sdk.api.conversations
74
+ .moveMultipleConversations(toLong(params.companyId), toBatchMoveConversationsToFolderCommand(params.cmd))
75
+ .then((res) => res.body()),
76
+ onSuccess: (_, params) => invalidateConversationList(queryClient, params.companyId),
77
+ };
78
+ }
79
+ //# sourceMappingURL=multipleConversationMutations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"multipleConversationMutations.js","sourceRoot":"","sources":["../../../../src/api/commands/conversation/multipleConversationMutations.ts"],"names":[],"mappings":"AACA,OAAO,EACL,6BAA6B,EAE7B,qCAAqC,GAGtC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAe,SAAS,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAE7E,OAAO,EAAE,gBAAgB,EAAE,MAAM,6CAA6C,CAAC;AAiB/E,MAAM,cAAc,GAAG,CAAC,EAAc,EAAE,EAAE,CAAC,CAAC,EAAE,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC;AAE1E,MAAM,+BAA+B,GAAG,CACtC,GAAuC,EACvC,EAAE,CACF,IAAI,6BAA6B,CAC/B,SAAS,CAAC;IACR,eAAe,EAAE,GAAG,CAAC,eAAe,CAAC,GAAG,CAAC,MAAM,CAAC;CACjD,CAAC,CACH,CAAC;AAEJ,MAAM,uCAAuC,GAAG,CAC9C,GAA+C,EAC/C,EAAE,CACF,IAAI,qCAAqC,CACvC,SAAS,CAAC;IACR,eAAe,EAAE,GAAG,CAAC,eAAe,CAAC,GAAG,CAAC,MAAM,CAAC;IAChD,QAAQ,EAAE,cAAc,CAAC,GAAG,CAAC,QAAQ,CAAC;CACvC,CAAC,CACH,CAAC;AAEJ,MAAM,0BAA0B,GAAG,CAAC,WAAwB,EAAE,SAAa,EAAE,EAAE,CAC7E,WAAW,CAAC,iBAAiB,CAAC;IAC5B,QAAQ,EAAE,CAAC,gBAAgB,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;CAC7C,CAAC,CAAC;AAEL,MAAM,qBAAqB,GAAG,CAAC,WAAwB,EAAE,SAAa,EAAE,EAAE,CACxE,WAAW,CAAC,iBAAiB,CAAC;IAC5B,QAAQ,EAAE,CAAC,gBAAgB,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;CACpD,CAAC,CAAC;AAEL,MAAM,2BAA2B,GAAG,CAAC,WAAwB,EAAE,SAAa,EAAE,EAAE,CAC9E,WAAW,CAAC,iBAAiB,CAAC;IAC5B,QAAQ,EAAE,CAAC,gBAAgB,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC;CACvD,CAAC,CAAC;AAEL,MAAM,UAAU,8CAA8C,CAC5D,GAAc,EACd,WAAwB;IAExB,OAAO;QACL,UAAU,EAAE,CAAC,MAGZ,EAAE,EAAE,CACH,GAAG,CAAC,GAAG,CAAC,aAAa;aAClB,+BAA+B,CAC9B,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,EACxB,+BAA+B,CAAC,MAAM,CAAC,GAAG,CAAC,CAC5C;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;QAE9B,SAAS,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CACvB,0BAA0B,CAAC,WAAW,EAAE,MAAM,CAAC,SAAS,CAAC;KAC5D,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,8CAA8C,CAC5D,GAAc,EACd,WAAwB;IAExB,OAAO;QACL,UAAU,EAAE,CAAC,MAGZ,EAAE,EAAE,CACH,GAAG,CAAC,GAAG,CAAC,aAAa;aAClB,+BAA+B,CAC9B,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,EACxB,+BAA+B,CAAC,MAAM,CAAC,GAAG,CAAC,CAC5C;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;QAE9B,SAAS,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CACvB,OAAO,CAAC,GAAG,CAAC;YACV,0BAA0B,CAAC,WAAW,EAAE,MAAM,CAAC,SAAS,CAAC;YACzD,qBAAqB,CAAC,WAAW,EAAE,MAAM,CAAC,SAAS,CAAC;SACrD,CAAC;KACL,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,gDAAgD,CAC9D,GAAc,EACd,WAAwB;IAExB,OAAO;QACL,UAAU,EAAE,CAAC,MAGZ,EAAE,EAAE,CACH,GAAG,CAAC,GAAG,CAAC,aAAa;aAClB,iCAAiC,CAChC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,EACxB,+BAA+B,CAAC,MAAM,CAAC,GAAG,CAAC,CAC5C;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;QAE9B,SAAS,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CACvB,OAAO,CAAC,GAAG,CAAC;YACV,0BAA0B,CAAC,WAAW,EAAE,MAAM,CAAC,SAAS,CAAC;YACzD,qBAAqB,CAAC,WAAW,EAAE,MAAM,CAAC,SAAS,CAAC;SACrD,CAAC;KACL,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,8CAA8C,CAC5D,GAAc,EACd,WAAwB;IAExB,OAAO;QACL,UAAU,EAAE,CAAC,MAGZ,EAAE,EAAE,CACH,GAAG,CAAC,GAAG,CAAC,aAAa;aAClB,+BAA+B,CAC9B,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,EACxB,+BAA+B,CAAC,MAAM,CAAC,GAAG,CAAC,CAC5C;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;QAE9B,SAAS,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CACvB,0BAA0B,CAAC,WAAW,EAAE,MAAM,CAAC,SAAS,CAAC;KAC5D,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,0CAA0C,CACxD,GAAc,EACd,WAAwB;IAExB,OAAO;QACL,UAAU,EAAE,CAAC,MAGZ,EAAE,EAAE,CACH,GAAG,CAAC,GAAG,CAAC,aAAa;aAClB,2BAA2B,CAC1B,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,EACxB,+BAA+B,CAAC,MAAM,CAAC,GAAG,CAAC,CAC5C;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;QAE9B,SAAS,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CACvB,OAAO,CAAC,GAAG,CAAC;YACV,0BAA0B,CAAC,WAAW,EAAE,MAAM,CAAC,SAAS,CAAC;YACzD,qBAAqB,CAAC,WAAW,EAAE,MAAM,CAAC,SAAS,CAAC;YACpD,2BAA2B,CAAC,WAAW,EAAE,MAAM,CAAC,SAAS,CAAC;SAC3D,CAAC;KACL,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,wCAAwC,CACtD,GAAc,EACd,WAAwB;IAExB,OAAO;QACL,UAAU,EAAE,CAAC,MAGZ,EAAE,EAAE,CACH,GAAG,CAAC,GAAG,CAAC,aAAa;aAClB,yBAAyB,CACxB,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,EACxB,uCAAuC,CAAC,MAAM,CAAC,GAAG,CAAC,CACpD;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;QAE9B,SAAS,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CACvB,0BAA0B,CAAC,WAAW,EAAE,MAAM,CAAC,SAAS,CAAC;KAC5D,CAAC;AACJ,CAAC","sourcesContent":["import type { QueryClient } from \"@tanstack/query-core\";\nimport {\n BatchConversationStateCommand,\n BatchConversationStateCommandProps,\n BatchMoveConversationsToFolderCommand,\n BatchMoveConversationsToFolderCommandProps,\n SoliboSDK,\n} from \"@solibo/solibo-sdk\";\nimport { Id, JsProps, toKtProps, toLong } from \"../../../utils/kt-bridge.js\";\n\nimport { conversationKeys } from \"../../queries/conversation/conversations.js\";\n\nexport type BatchConversationStateCommandInput = Omit<\n JsProps<BatchConversationStateCommandProps>,\n \"conversationIds\"\n> & {\n conversationIds: readonly Id[];\n};\n\nexport type BatchMoveConversationsToFolderCommandInput = Omit<\n JsProps<BatchMoveConversationsToFolderCommandProps>,\n \"conversationIds\" | \"folderId\"\n> & {\n conversationIds: readonly Id[];\n folderId?: Id | null | undefined;\n};\n\nconst toOptionalLong = (id?: Id | null) => (id == null ? id : toLong(id));\n\nconst toBatchConversationStateCommand = (\n cmd: BatchConversationStateCommandInput,\n) =>\n new BatchConversationStateCommand(\n toKtProps({\n conversationIds: cmd.conversationIds.map(toLong),\n }),\n );\n\nconst toBatchMoveConversationsToFolderCommand = (\n cmd: BatchMoveConversationsToFolderCommandInput,\n) =>\n new BatchMoveConversationsToFolderCommand(\n toKtProps({\n conversationIds: cmd.conversationIds.map(toLong),\n folderId: toOptionalLong(cmd.folderId),\n }),\n );\n\nconst invalidateConversationList = (queryClient: QueryClient, companyId: Id) =>\n queryClient.invalidateQueries({\n queryKey: [conversationKeys.list(companyId)],\n });\n\nconst invalidateUnreadCount = (queryClient: QueryClient, companyId: Id) =>\n queryClient.invalidateQueries({\n queryKey: [conversationKeys.unreadCount(companyId)],\n });\n\nconst invalidateConversationCount = (queryClient: QueryClient, companyId: Id) =>\n queryClient.invalidateQueries({\n queryKey: [conversationKeys.countInCompany(companyId)],\n });\n\nexport function createMultipleConversationFlagsMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n cmd: BatchConversationStateCommandInput;\n }) =>\n sdk.api.conversations\n .createMultipleConversationFlags(\n toLong(params.companyId),\n toBatchConversationStateCommand(params.cmd),\n )\n .then((res) => res.body()),\n\n onSuccess: (_, params) =>\n invalidateConversationList(queryClient, params.companyId),\n };\n}\n\nexport function createMultipleConversationReadsMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n cmd: BatchConversationStateCommandInput;\n }) =>\n sdk.api.conversations\n .createMultipleConversationReads(\n toLong(params.companyId),\n toBatchConversationStateCommand(params.cmd),\n )\n .then((res) => res.body()),\n\n onSuccess: (_, params) =>\n Promise.all([\n invalidateConversationList(queryClient, params.companyId),\n invalidateUnreadCount(queryClient, params.companyId),\n ]),\n };\n}\n\nexport function createMultipleConversationUnreadsMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n cmd: BatchConversationStateCommandInput;\n }) =>\n sdk.api.conversations\n .createMultipleConversationUnreads(\n toLong(params.companyId),\n toBatchConversationStateCommand(params.cmd),\n )\n .then((res) => res.body()),\n\n onSuccess: (_, params) =>\n Promise.all([\n invalidateConversationList(queryClient, params.companyId),\n invalidateUnreadCount(queryClient, params.companyId),\n ]),\n };\n}\n\nexport function deleteMultipleConversationFlagsMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n cmd: BatchConversationStateCommandInput;\n }) =>\n sdk.api.conversations\n .deleteMultipleConversationFlags(\n toLong(params.companyId),\n toBatchConversationStateCommand(params.cmd),\n )\n .then((res) => res.body()),\n\n onSuccess: (_, params) =>\n invalidateConversationList(queryClient, params.companyId),\n };\n}\n\nexport function deleteMultipleConversationsMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n cmd: BatchConversationStateCommandInput;\n }) =>\n sdk.api.conversations\n .deleteMultipleConversations(\n toLong(params.companyId),\n toBatchConversationStateCommand(params.cmd),\n )\n .then((res) => res.body()),\n\n onSuccess: (_, params) =>\n Promise.all([\n invalidateConversationList(queryClient, params.companyId),\n invalidateUnreadCount(queryClient, params.companyId),\n invalidateConversationCount(queryClient, params.companyId),\n ]),\n };\n}\n\nexport function moveMultipleConversationsMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n cmd: BatchMoveConversationsToFolderCommandInput;\n }) =>\n sdk.api.conversations\n .moveMultipleConversations(\n toLong(params.companyId),\n toBatchMoveConversationsToFolderCommand(params.cmd),\n )\n .then((res) => res.body()),\n\n onSuccess: (_, params) =>\n invalidateConversationList(queryClient, params.companyId),\n };\n}\n"]}
@@ -0,0 +1,35 @@
1
+ import type { QueryClient } from "@tanstack/query-core";
2
+ import { BatchMoveDocumentsCommandProps, BatchRestoreDocumentsCommandProps, BatchTrashDocumentsCommandProps, SoliboSDK } from "@solibo/solibo-sdk";
3
+ import { Id, JsProps } from "../../../utils/kt-bridge.js";
4
+ export type BatchMoveDocumentsCommandInput = Omit<JsProps<BatchMoveDocumentsCommandProps>, "documentIds"> & {
5
+ documentIds: readonly Id[];
6
+ };
7
+ export type BatchRestoreDocumentsCommandInput = Omit<JsProps<BatchRestoreDocumentsCommandProps>, "documentIds" | "parentId"> & {
8
+ documentIds: readonly Id[];
9
+ parentId?: Id | null | undefined;
10
+ };
11
+ export type BatchTrashDocumentsCommandInput = Omit<JsProps<BatchTrashDocumentsCommandProps>, "documentIds"> & {
12
+ documentIds: readonly Id[];
13
+ };
14
+ export declare function moveMultipleDocumentsMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
15
+ mutationFn: (params: {
16
+ companyId: Id;
17
+ parentId: string;
18
+ cmd: BatchMoveDocumentsCommandInput;
19
+ }) => Promise<import("@solibo/solibo-sdk").Document[]>;
20
+ onSuccess: (_: any, params: any) => Promise<void>;
21
+ };
22
+ export declare function restoreMultipleDocumentsMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
23
+ mutationFn: (params: {
24
+ companyId: Id;
25
+ cmd: BatchRestoreDocumentsCommandInput;
26
+ }) => Promise<void>;
27
+ onSuccess: (_: any, params: any) => Promise<[void, void]>;
28
+ };
29
+ export declare function trashMultipleDocumentsMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
30
+ mutationFn: (params: {
31
+ companyId: Id;
32
+ cmd: BatchTrashDocumentsCommandInput;
33
+ }) => Promise<void>;
34
+ onSuccess: (_: any, params: any) => Promise<void>;
35
+ };
@@ -0,0 +1,50 @@
1
+ import { BatchMoveDocumentsCommand, BatchRestoreDocumentsCommand, BatchTrashDocumentsCommand, DocumentType, } from "@solibo/solibo-sdk";
2
+ import { fromKt, toKtProps, toLong, } from "../../../utils/kt-bridge.js";
3
+ import { documentKeys } from "../../queries/document/documents.js";
4
+ const toOptionalLong = (id) => (id == null ? id : toLong(id));
5
+ const toBatchMoveDocumentsCommand = (cmd) => new BatchMoveDocumentsCommand(toKtProps({
6
+ documentIds: cmd.documentIds.map(toLong),
7
+ }));
8
+ const toBatchRestoreDocumentsCommand = (cmd) => new BatchRestoreDocumentsCommand(toKtProps({
9
+ ...cmd,
10
+ documentIds: cmd.documentIds.map(toLong),
11
+ parentId: toOptionalLong(cmd.parentId),
12
+ }));
13
+ const toBatchTrashDocumentsCommand = (cmd) => new BatchTrashDocumentsCommand(toKtProps({
14
+ documentIds: cmd.documentIds.map(toLong),
15
+ }));
16
+ const invalidateDocumentLists = (queryClient, companyId) => queryClient.invalidateQueries({
17
+ queryKey: [documentKeys.ofType(undefined, companyId)],
18
+ exact: false,
19
+ });
20
+ export function moveMultipleDocumentsMutationOptions(sdk, queryClient) {
21
+ return {
22
+ mutationFn: (params) => sdk.api.documents
23
+ .moveMultipleDocuments(toLong(params.companyId), params.parentId, toBatchMoveDocumentsCommand(params.cmd))
24
+ .then((res) => res.body())
25
+ .then((body) => fromKt(body)),
26
+ onSuccess: (_, params) => invalidateDocumentLists(queryClient, params.companyId),
27
+ };
28
+ }
29
+ export function restoreMultipleDocumentsMutationOptions(sdk, queryClient) {
30
+ return {
31
+ mutationFn: (params) => sdk.api.documents
32
+ .restoreMultipleDocuments(toLong(params.companyId), toBatchRestoreDocumentsCommand(params.cmd))
33
+ .then((res) => res.body()),
34
+ onSuccess: (_, params) => Promise.all([
35
+ queryClient.invalidateQueries({
36
+ queryKey: [documentKeys.ofType(DocumentType.Trash, params.companyId)],
37
+ }),
38
+ invalidateDocumentLists(queryClient, params.companyId),
39
+ ]),
40
+ };
41
+ }
42
+ export function trashMultipleDocumentsMutationOptions(sdk, queryClient) {
43
+ return {
44
+ mutationFn: (params) => sdk.api.documents
45
+ .trashMultipleDocuments(toLong(params.companyId), toBatchTrashDocumentsCommand(params.cmd))
46
+ .then((res) => res.body()),
47
+ onSuccess: (_, params) => invalidateDocumentLists(queryClient, params.companyId),
48
+ };
49
+ }
50
+ //# sourceMappingURL=multipleDocumentMutations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"multipleDocumentMutations.js","sourceRoot":"","sources":["../../../../src/api/commands/document/multipleDocumentMutations.ts"],"names":[],"mappings":"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","sourcesContent":["import type { QueryClient } from \"@tanstack/query-core\";\nimport {\n BatchMoveDocumentsCommand,\n BatchMoveDocumentsCommandProps,\n BatchRestoreDocumentsCommand,\n BatchRestoreDocumentsCommandProps,\n BatchTrashDocumentsCommand,\n BatchTrashDocumentsCommandProps,\n DocumentType,\n SoliboSDK,\n} from \"@solibo/solibo-sdk\";\nimport {\n fromKt,\n Id,\n JsProps,\n toKtProps,\n toLong,\n} from \"../../../utils/kt-bridge.js\";\n\nimport { documentKeys } from \"../../queries/document/documents.js\";\n\nexport type BatchMoveDocumentsCommandInput = Omit<\n JsProps<BatchMoveDocumentsCommandProps>,\n \"documentIds\"\n> & {\n documentIds: readonly Id[];\n};\n\nexport type BatchRestoreDocumentsCommandInput = Omit<\n JsProps<BatchRestoreDocumentsCommandProps>,\n \"documentIds\" | \"parentId\"\n> & {\n documentIds: readonly Id[];\n parentId?: Id | null | undefined;\n};\n\nexport type BatchTrashDocumentsCommandInput = Omit<\n JsProps<BatchTrashDocumentsCommandProps>,\n \"documentIds\"\n> & {\n documentIds: readonly Id[];\n};\n\nconst toOptionalLong = (id?: Id | null) => (id == null ? id : toLong(id));\n\nconst toBatchMoveDocumentsCommand = (cmd: BatchMoveDocumentsCommandInput) =>\n new BatchMoveDocumentsCommand(\n toKtProps({\n documentIds: cmd.documentIds.map(toLong),\n }),\n );\n\nconst toBatchRestoreDocumentsCommand = (\n cmd: BatchRestoreDocumentsCommandInput,\n) =>\n new BatchRestoreDocumentsCommand(\n toKtProps({\n ...cmd,\n documentIds: cmd.documentIds.map(toLong),\n parentId: toOptionalLong(cmd.parentId),\n }),\n );\n\nconst toBatchTrashDocumentsCommand = (cmd: BatchTrashDocumentsCommandInput) =>\n new BatchTrashDocumentsCommand(\n toKtProps({\n documentIds: cmd.documentIds.map(toLong),\n }),\n );\n\nconst invalidateDocumentLists = (queryClient: QueryClient, companyId: Id) =>\n queryClient.invalidateQueries({\n queryKey: [documentKeys.ofType(undefined, companyId)],\n exact: false,\n });\n\nexport function moveMultipleDocumentsMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n parentId: string;\n cmd: BatchMoveDocumentsCommandInput;\n }) =>\n sdk.api.documents\n .moveMultipleDocuments(\n toLong(params.companyId),\n params.parentId,\n toBatchMoveDocumentsCommand(params.cmd),\n )\n .then((res) => res.body())\n .then((body) => fromKt(body)),\n\n onSuccess: (_, params) =>\n invalidateDocumentLists(queryClient, params.companyId),\n };\n}\n\nexport function restoreMultipleDocumentsMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n cmd: BatchRestoreDocumentsCommandInput;\n }) =>\n sdk.api.documents\n .restoreMultipleDocuments(\n toLong(params.companyId),\n toBatchRestoreDocumentsCommand(params.cmd),\n )\n .then((res) => res.body()),\n\n onSuccess: (_, params) =>\n Promise.all([\n queryClient.invalidateQueries({\n queryKey: [documentKeys.ofType(DocumentType.Trash, params.companyId)],\n }),\n invalidateDocumentLists(queryClient, params.companyId),\n ]),\n };\n}\n\nexport function trashMultipleDocumentsMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n cmd: BatchTrashDocumentsCommandInput;\n }) =>\n sdk.api.documents\n .trashMultipleDocuments(\n toLong(params.companyId),\n toBatchTrashDocumentsCommand(params.cmd),\n )\n .then((res) => res.body()),\n\n onSuccess: (_, params) =>\n invalidateDocumentLists(queryClient, params.companyId),\n };\n}\n"]}
@@ -10,6 +10,7 @@ export declare const communicationKeys: {
10
10
  availableSms: (companyId?: Id | null | undefined) => readonly ["communication", "availableSms", string | number | null | undefined];
11
11
  availableBundles: (companyId?: Id | null | undefined) => readonly ["communication", "availableBundles", string | number | null | undefined];
12
12
  smsPurchases: (companyId?: Id | null | undefined) => readonly ["communication", "smsPurchases", string | number | null | undefined];
13
+ pushNotificationInbox: (companyId?: Id | null | undefined) => readonly ["communication", "pushNotificationInbox", string | number | null | undefined];
13
14
  report: (companyId?: Id | null | undefined, communicationType?: string | null | undefined, communicationId?: Id | null | undefined, reportType?: string | null | undefined) => readonly ["communication", "report", string | number | null | undefined, string | null | undefined, string | number | null | undefined, string | null | undefined];
14
15
  notificationGroupsEmail: (companyId?: Id | null | undefined) => readonly ["communication", "notificationGroupsEmail", string | number | null | undefined];
15
16
  notificationGroupsSms: (companyId?: Id | null | undefined) => readonly ["communication", "notificationGroupsSms", string | number | null | undefined];
@@ -19,6 +19,11 @@ export const communicationKeys = {
19
19
  availableSms: (companyId) => [...communicationKeys.all, "availableSms", toKeyId(companyId)],
20
20
  availableBundles: (companyId) => [...communicationKeys.all, "availableBundles", toKeyId(companyId)],
21
21
  smsPurchases: (companyId) => [...communicationKeys.all, "smsPurchases", toKeyId(companyId)],
22
+ pushNotificationInbox: (companyId) => [
23
+ ...communicationKeys.all,
24
+ "pushNotificationInbox",
25
+ toKeyId(companyId),
26
+ ],
22
27
  report: (companyId, communicationType, communicationId, reportType) => [
23
28
  ...communicationKeys.all,
24
29
  "report",
@@ -1 +1 @@
1
- {"version":3,"file":"newsletters.js","sourceRoot":"","sources":["../../../../src/api/queries/communication/newsletters.ts"],"names":[],"mappings":"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","sourcesContent":["import { SoliboSDK } from \"@solibo/solibo-sdk\";\nimport { fromKt, Id, toKeyId } from \"../../../utils/kt-bridge.js\";\nimport { nextPageParam, prevPageParam } from \"../../../utils/pageUtils.js\";\n\nexport const communicationKeys = {\n all: [\"communication\"] as const,\n newsletters: (companyId?: Id | null | undefined) =>\n [...communicationKeys.all, \"newsletters\", toKeyId(companyId)] as const,\n newsletterDetail: (\n newsletterId?: Id | null | undefined,\n companyId?: Id | null | undefined,\n ) =>\n [\n ...communicationKeys.all,\n \"newsletterDetail\",\n toKeyId(companyId),\n toKeyId(newsletterId),\n ] as const,\n broadcasts: (companyId?: Id | null | undefined) =>\n [...communicationKeys.all, \"broadcasts\", toKeyId(companyId)] as const,\n broadcastDetail: (\n broadcastId?: Id | null | undefined,\n companyId?: Id | null | undefined,\n ) =>\n [\n ...communicationKeys.all,\n \"broadcastDetail\",\n toKeyId(companyId),\n toKeyId(broadcastId),\n ] as const,\n availableSms: (companyId?: Id | null | undefined) =>\n [...communicationKeys.all, \"availableSms\", toKeyId(companyId)] as const,\n availableBundles: (companyId?: Id | null | undefined) =>\n [...communicationKeys.all, \"availableBundles\", toKeyId(companyId)] as const,\n smsPurchases: (companyId?: Id | null | undefined) =>\n [...communicationKeys.all, \"smsPurchases\", toKeyId(companyId)] as const,\n report: (\n companyId?: Id | null | undefined,\n communicationType?: string | null | undefined,\n communicationId?: Id | null | undefined,\n reportType?: string | null | undefined,\n ) =>\n [\n ...communicationKeys.all,\n \"report\",\n toKeyId(companyId),\n communicationType,\n toKeyId(communicationId),\n reportType,\n ] as const,\n notificationGroupsEmail: (companyId?: Id | null | undefined) =>\n [\n ...communicationKeys.all,\n \"notificationGroupsEmail\",\n toKeyId(companyId),\n ] as const,\n notificationGroupsSms: (companyId?: Id | null | undefined) =>\n [\n ...communicationKeys.all,\n \"notificationGroupsSms\",\n toKeyId(companyId),\n ] as const,\n smsAvailableBroadcast: (\n companyId?: Id | null | undefined,\n broadcastId?: Id | null | undefined,\n ) =>\n [\n ...communicationKeys.all,\n \"smsAvailableBroadcast\",\n toKeyId(companyId),\n toKeyId(broadcastId),\n ] as const,\n};\n\nexport function newslettersQueryOptions(\n sdk: SoliboSDK,\n params: {\n companyId?: Id | null | undefined;\n search?: string | null | undefined;\n published?: boolean | null | undefined;\n publishedAtFrom?: number | null | undefined;\n publishedAtTo?: number | null | undefined;\n fields?: string;\n pageToken?: string;\n autoPaginate?: boolean | null;\n count?: number;\n },\n) {\n return {\n initialPageParam: params.pageToken,\n queryKey: [\n communicationKeys.newsletters(params.companyId),\n params.search,\n params.published,\n params.publishedAtFrom,\n params.publishedAtTo,\n params.fields,\n params.count,\n ],\n queryFn: ({ pageParam }: { pageParam: any }) =>\n sdk.api.communication\n .indexEmailNewsletters(\n BigInt(params.companyId!).valueOf(),\n params.search,\n params.published,\n params.publishedAtFrom != null\n ? BigInt(params.publishedAtFrom).valueOf()\n : undefined,\n params.publishedAtTo != null\n ? BigInt(params.publishedAtTo).valueOf()\n : undefined,\n params.fields,\n pageParam,\n params.autoPaginate,\n params.count,\n )\n .then((res) => res.body())\n .then((body) => fromKt(body)),\n\n enabled: !!params.companyId,\n getNextPageParam: nextPageParam,\n getPreviousPageParam: prevPageParam,\n };\n}\n"]}
1
+ {"version":3,"file":"newsletters.js","sourceRoot":"","sources":["../../../../src/api/queries/communication/newsletters.ts"],"names":[],"mappings":"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","sourcesContent":["import { SoliboSDK } from \"@solibo/solibo-sdk\";\nimport { fromKt, Id, toKeyId } from \"../../../utils/kt-bridge.js\";\nimport { nextPageParam, prevPageParam } from \"../../../utils/pageUtils.js\";\n\nexport const communicationKeys = {\n all: [\"communication\"] as const,\n newsletters: (companyId?: Id | null | undefined) =>\n [...communicationKeys.all, \"newsletters\", toKeyId(companyId)] as const,\n newsletterDetail: (\n newsletterId?: Id | null | undefined,\n companyId?: Id | null | undefined,\n ) =>\n [\n ...communicationKeys.all,\n \"newsletterDetail\",\n toKeyId(companyId),\n toKeyId(newsletterId),\n ] as const,\n broadcasts: (companyId?: Id | null | undefined) =>\n [...communicationKeys.all, \"broadcasts\", toKeyId(companyId)] as const,\n broadcastDetail: (\n broadcastId?: Id | null | undefined,\n companyId?: Id | null | undefined,\n ) =>\n [\n ...communicationKeys.all,\n \"broadcastDetail\",\n toKeyId(companyId),\n toKeyId(broadcastId),\n ] as const,\n availableSms: (companyId?: Id | null | undefined) =>\n [...communicationKeys.all, \"availableSms\", toKeyId(companyId)] as const,\n availableBundles: (companyId?: Id | null | undefined) =>\n [...communicationKeys.all, \"availableBundles\", toKeyId(companyId)] as const,\n smsPurchases: (companyId?: Id | null | undefined) =>\n [...communicationKeys.all, \"smsPurchases\", toKeyId(companyId)] as const,\n pushNotificationInbox: (companyId?: Id | null | undefined) =>\n [\n ...communicationKeys.all,\n \"pushNotificationInbox\",\n toKeyId(companyId),\n ] as const,\n report: (\n companyId?: Id | null | undefined,\n communicationType?: string | null | undefined,\n communicationId?: Id | null | undefined,\n reportType?: string | null | undefined,\n ) =>\n [\n ...communicationKeys.all,\n \"report\",\n toKeyId(companyId),\n communicationType,\n toKeyId(communicationId),\n reportType,\n ] as const,\n notificationGroupsEmail: (companyId?: Id | null | undefined) =>\n [\n ...communicationKeys.all,\n \"notificationGroupsEmail\",\n toKeyId(companyId),\n ] as const,\n notificationGroupsSms: (companyId?: Id | null | undefined) =>\n [\n ...communicationKeys.all,\n \"notificationGroupsSms\",\n toKeyId(companyId),\n ] as const,\n smsAvailableBroadcast: (\n companyId?: Id | null | undefined,\n broadcastId?: Id | null | undefined,\n ) =>\n [\n ...communicationKeys.all,\n \"smsAvailableBroadcast\",\n toKeyId(companyId),\n toKeyId(broadcastId),\n ] as const,\n};\n\nexport function newslettersQueryOptions(\n sdk: SoliboSDK,\n params: {\n companyId?: Id | null | undefined;\n search?: string | null | undefined;\n published?: boolean | null | undefined;\n publishedAtFrom?: number | null | undefined;\n publishedAtTo?: number | null | undefined;\n fields?: string;\n pageToken?: string;\n autoPaginate?: boolean | null;\n count?: number;\n },\n) {\n return {\n initialPageParam: params.pageToken,\n queryKey: [\n communicationKeys.newsletters(params.companyId),\n params.search,\n params.published,\n params.publishedAtFrom,\n params.publishedAtTo,\n params.fields,\n params.count,\n ],\n queryFn: ({ pageParam }: { pageParam: any }) =>\n sdk.api.communication\n .indexEmailNewsletters(\n BigInt(params.companyId!).valueOf(),\n params.search,\n params.published,\n params.publishedAtFrom != null\n ? BigInt(params.publishedAtFrom).valueOf()\n : undefined,\n params.publishedAtTo != null\n ? BigInt(params.publishedAtTo).valueOf()\n : undefined,\n params.fields,\n pageParam,\n params.autoPaginate,\n params.count,\n )\n .then((res) => res.body())\n .then((body) => fromKt(body)),\n\n enabled: !!params.companyId,\n getNextPageParam: nextPageParam,\n getPreviousPageParam: prevPageParam,\n };\n}\n"]}
@@ -0,0 +1,19 @@
1
+ import { SoliboSDK } from "@solibo/solibo-sdk";
2
+ import { Id } from "../../../utils/kt-bridge.js";
3
+ import { nextPageParam, prevPageParam } from "../../../utils/pageUtils.js";
4
+ export declare function pushNotificationInboxQueryOptions(sdk: SoliboSDK, params: {
5
+ companyId?: Id | null | undefined;
6
+ fields?: string;
7
+ pageToken?: string;
8
+ autoPaginate?: boolean | null | undefined;
9
+ count?: number | null | undefined;
10
+ }): {
11
+ initialPageParam: string | undefined;
12
+ queryKey: (string | number | boolean | readonly ["communication", "pushNotificationInbox", string | number | null | undefined] | null | undefined)[];
13
+ queryFn: ({ pageParam }: {
14
+ pageParam: any;
15
+ }) => Promise<import("@solibo/solibo-sdk").PagedListPushNotificationInboxItem>;
16
+ enabled: boolean;
17
+ getNextPageParam: typeof nextPageParam;
18
+ getPreviousPageParam: typeof prevPageParam;
19
+ };
@@ -0,0 +1,23 @@
1
+ import { fromKt } from "../../../utils/kt-bridge.js";
2
+ import { nextPageParam, prevPageParam } from "../../../utils/pageUtils.js";
3
+ import { communicationKeys } from "./newsletters.js";
4
+ export function pushNotificationInboxQueryOptions(sdk, params) {
5
+ return {
6
+ initialPageParam: params.pageToken,
7
+ queryKey: [
8
+ communicationKeys.pushNotificationInbox(params.companyId),
9
+ params.fields,
10
+ params.pageToken,
11
+ params.autoPaginate,
12
+ params.count,
13
+ ],
14
+ queryFn: ({ pageParam }) => sdk.api.communication
15
+ .indexPushNotificationInbox(BigInt(params.companyId).valueOf(), params.fields, pageParam, params.autoPaginate, params.count)
16
+ .then((res) => res.body())
17
+ .then((body) => fromKt(body)),
18
+ enabled: !!params.companyId,
19
+ getNextPageParam: nextPageParam,
20
+ getPreviousPageParam: prevPageParam,
21
+ };
22
+ }
23
+ //# sourceMappingURL=pushNotificationInbox.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pushNotificationInbox.js","sourceRoot":"","sources":["../../../../src/api/queries/communication/pushNotificationInbox.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAM,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAE3E,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAErD,MAAM,UAAU,iCAAiC,CAC/C,GAAc,EACd,MAMC;IAED,OAAO;QACL,gBAAgB,EAAE,MAAM,CAAC,SAAS;QAClC,QAAQ,EAAE;YACR,iBAAiB,CAAC,qBAAqB,CAAC,MAAM,CAAC,SAAS,CAAC;YACzD,MAAM,CAAC,MAAM;YACb,MAAM,CAAC,SAAS;YAChB,MAAM,CAAC,YAAY;YACnB,MAAM,CAAC,KAAK;SACb;QACD,OAAO,EAAE,CAAC,EAAE,SAAS,EAAsB,EAAE,EAAE,CAC7C,GAAG,CAAC,GAAG,CAAC,aAAa;aAClB,0BAA0B,CACzB,MAAM,CAAC,MAAM,CAAC,SAAU,CAAC,CAAC,OAAO,EAAE,EACnC,MAAM,CAAC,MAAM,EACb,SAAS,EACT,MAAM,CAAC,YAAY,EACnB,MAAM,CAAC,KAAK,CACb;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;aACzB,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QACjC,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC,SAAS;QAC3B,gBAAgB,EAAE,aAAa;QAC/B,oBAAoB,EAAE,aAAa;KACpC,CAAC;AACJ,CAAC","sourcesContent":["import { SoliboSDK } from \"@solibo/solibo-sdk\";\nimport { fromKt, Id } from \"../../../utils/kt-bridge.js\";\nimport { nextPageParam, prevPageParam } from \"../../../utils/pageUtils.js\";\n\nimport { communicationKeys } from \"./newsletters.js\";\n\nexport function pushNotificationInboxQueryOptions(\n sdk: SoliboSDK,\n params: {\n companyId?: Id | null | undefined;\n fields?: string;\n pageToken?: string;\n autoPaginate?: boolean | null | undefined;\n count?: number | null | undefined;\n },\n) {\n return {\n initialPageParam: params.pageToken,\n queryKey: [\n communicationKeys.pushNotificationInbox(params.companyId),\n params.fields,\n params.pageToken,\n params.autoPaginate,\n params.count,\n ],\n queryFn: ({ pageParam }: { pageParam: any }) =>\n sdk.api.communication\n .indexPushNotificationInbox(\n BigInt(params.companyId!).valueOf(),\n params.fields,\n pageParam,\n params.autoPaginate,\n params.count,\n )\n .then((res) => res.body())\n .then((body) => fromKt(body)),\n enabled: !!params.companyId,\n getNextPageParam: nextPageParam,\n getPreviousPageParam: prevPageParam,\n };\n}\n"]}
package/dist/index.d.ts CHANGED
@@ -23,6 +23,7 @@ export * from "./api/commands/communication/deleteSMSBroadcast.js";
23
23
  export * from "./api/commands/communication/publishNewsletter.js";
24
24
  export * from "./api/commands/communication/publishSMSBroadcast.js";
25
25
  export * from "./api/commands/communication/reportPushNotificationRead.js";
26
+ export * from "./api/commands/communication/reportPushNotificationReceived.js";
26
27
  export * from "./api/commands/communication/signupNewsletter.js";
27
28
  export * from "./api/commands/communication/updateNewsletter.js";
28
29
  export * from "./api/commands/communication/updateSMSBroadcast.js";
@@ -59,6 +60,7 @@ export * from "./api/commands/conversation/deleteConversationCategory.js";
59
60
  export * from "./api/commands/conversation/deleteConversationParticipant.js";
60
61
  export * from "./api/commands/conversation/markConversationRead.js";
61
62
  export * from "./api/commands/conversation/moveConversation.js";
63
+ export * from "./api/commands/conversation/multipleConversationMutations.js";
62
64
  export * from "./api/commands/conversation/publicUploadDocumentToConversation.js";
63
65
  export * from "./api/commands/conversation/publishDraftConversation.js";
64
66
  export * from "./api/commands/conversation/updateConversation.js";
@@ -69,6 +71,7 @@ export * from "./api/commands/document/createDocumentReference.js";
69
71
  export * from "./api/commands/document/deleteDocument.js";
70
72
  export * from "./api/commands/document/moveDocument.js";
71
73
  export * from "./api/commands/document/moveDocumentToTrash.js";
74
+ export * from "./api/commands/document/multipleDocumentMutations.js";
72
75
  export * from "./api/commands/document/removeDocumentFromTrash.js";
73
76
  export * from "./api/commands/document/renameDocument.js";
74
77
  export * from "./api/commands/document/uploadDocument.js";
@@ -292,6 +295,7 @@ export * from "./api/queries/communication/newsletter.js";
292
295
  export * from "./api/queries/communication/newsletters.js";
293
296
  export * from "./api/queries/communication/notificationgroupsEmail.js";
294
297
  export * from "./api/queries/communication/notificationgroupsSms.js";
298
+ export * from "./api/queries/communication/pushNotificationInbox.js";
295
299
  export * from "./api/queries/communication/sMSAvailableForSMSBroadcastPost.js";
296
300
  export * from "./api/queries/communication/sMSBroadcast.js";
297
301
  export * from "./api/queries/communication/sMSBroadcasts.js";
package/dist/index.js CHANGED
@@ -20,6 +20,7 @@ export * from "./api/commands/communication/deleteSMSBroadcast.js";
20
20
  export * from "./api/commands/communication/publishNewsletter.js";
21
21
  export * from "./api/commands/communication/publishSMSBroadcast.js";
22
22
  export * from "./api/commands/communication/reportPushNotificationRead.js";
23
+ export * from "./api/commands/communication/reportPushNotificationReceived.js";
23
24
  export * from "./api/commands/communication/signupNewsletter.js";
24
25
  export * from "./api/commands/communication/updateNewsletter.js";
25
26
  export * from "./api/commands/communication/updateSMSBroadcast.js";
@@ -56,6 +57,7 @@ export * from "./api/commands/conversation/deleteConversationCategory.js";
56
57
  export * from "./api/commands/conversation/deleteConversationParticipant.js";
57
58
  export * from "./api/commands/conversation/markConversationRead.js";
58
59
  export * from "./api/commands/conversation/moveConversation.js";
60
+ export * from "./api/commands/conversation/multipleConversationMutations.js";
59
61
  export * from "./api/commands/conversation/publicUploadDocumentToConversation.js";
60
62
  export * from "./api/commands/conversation/publishDraftConversation.js";
61
63
  export * from "./api/commands/conversation/updateConversation.js";
@@ -66,6 +68,7 @@ export * from "./api/commands/document/createDocumentReference.js";
66
68
  export * from "./api/commands/document/deleteDocument.js";
67
69
  export * from "./api/commands/document/moveDocument.js";
68
70
  export * from "./api/commands/document/moveDocumentToTrash.js";
71
+ export * from "./api/commands/document/multipleDocumentMutations.js";
69
72
  export * from "./api/commands/document/removeDocumentFromTrash.js";
70
73
  export * from "./api/commands/document/renameDocument.js";
71
74
  export * from "./api/commands/document/uploadDocument.js";
@@ -289,6 +292,7 @@ export * from "./api/queries/communication/newsletter.js";
289
292
  export * from "./api/queries/communication/newsletters.js";
290
293
  export * from "./api/queries/communication/notificationgroupsEmail.js";
291
294
  export * from "./api/queries/communication/notificationgroupsSms.js";
295
+ export * from "./api/queries/communication/pushNotificationInbox.js";
292
296
  export * from "./api/queries/communication/sMSAvailableForSMSBroadcastPost.js";
293
297
  export * from "./api/queries/communication/sMSBroadcast.js";
294
298
  export * from "./api/queries/communication/sMSBroadcasts.js";
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["import \"./utils/bigint-polyfill.js\";\n\n// Re-export everything from @solibo/solibo-sdk — consumers only need @solibo/solibo-query.\nexport * from \"@solibo/solibo-sdk\";\n\n// Utilities\nexport {\n fromKt,\n toKtProps,\n toLong,\n toKtList,\n toIdList,\n toKeyId,\n} from \"./utils/kt-bridge.js\";\nexport type { Id, JsProps, FromKt } from \"./utils/kt-bridge.js\";\nexport {\n nextPageParam,\n prevPageParam,\n totalCountFromPages,\n} from \"./utils/pageUtils.js\";\nexport type { PagedPage } from \"./utils/pageUtils.js\";\nexport { seconds, minutes, hours } from \"./utils/dateTime.js\";\nexport {\n completeSignedUpload,\n createUploadHeaders,\n fileToBytes,\n toKotlinUploadHeaders,\n toUploadBinaryRequest,\n} from \"./api/documentApi.js\";\nexport type {\n FileSlingShotParams,\n SignedUploadCompleter,\n UploadHeaderFactory,\n UploadProgressListener,\n} from \"./api/documentApi.js\";\nexport {\n prepareIntegratedDocumentSources,\n toIntegratedDocumentInput,\n} from \"./api/integratedDocumentApi.js\";\nexport {\n openApiOperationMutationOptions,\n openApiOperationQueryOptions,\n} from \"./api/openApiOperation.js\";\nexport type {\n OpenApiMutationDefinition,\n OpenApiOperationArgs,\n OpenApiQueryDefinition,\n} from \"./api/openApiOperation.js\";\nexport type {\n ExistingIntegratedDocumentInput,\n InlineDocumentSources,\n IntegratedDocumentSource,\n IntegratedDocumentSources,\n IntegratedUploadProgress,\n PreparedIntegratedDocumentSources,\n UploadIntegratedDocumentInput,\n UploadIntegratedDocumentBytesInput,\n} from \"./api/integratedDocumentApi.js\";\n\nexport * from \"./api/commands/board/createBoardMember.js\";\nexport * from \"./api/commands/board/deleteBoardMember.js\";\nexport * from \"./api/commands/board/inviteBoardMemberToSoliboHome.js\";\nexport * from \"./api/commands/communication/buySMSBundle.js\";\nexport * from \"./api/commands/communication/createNewsletter.js\";\nexport * from \"./api/commands/communication/createSMSBroadcast.js\";\nexport * from \"./api/commands/communication/deleteDocumentFromNewsletter.js\";\nexport * from \"./api/commands/communication/deleteNewsletter.js\";\nexport * from \"./api/commands/communication/deleteSMSBroadcast.js\";\nexport * from \"./api/commands/communication/publishNewsletter.js\";\nexport * from \"./api/commands/communication/publishSMSBroadcast.js\";\nexport * from \"./api/commands/communication/reportPushNotificationRead.js\";\nexport * from \"./api/commands/communication/signupNewsletter.js\";\nexport * from \"./api/commands/communication/updateNewsletter.js\";\nexport * from \"./api/commands/communication/updateSMSBroadcast.js\";\nexport * from \"./api/commands/company/createCompanyCustomerClaim.js\";\nexport * from \"./api/commands/company/deleteFractions.js\";\nexport * from \"./api/commands/company/importCompanies.js\";\nexport * from \"./api/commands/company/importDraft.js\";\nexport * from \"./api/commands/company/importHousingAssociation.js\";\nexport * from \"./api/commands/company/importHousingCooperative.js\";\nexport * from \"./api/commands/company/importHousingCooperativeByAddress.js\";\nexport * from \"./api/commands/company/offboardCompany.js\";\nexport * from \"./api/commands/company/resetSales.js\";\nexport * from \"./api/commands/company/saveCompanyDetailed.js\";\nexport * from \"./api/commands/company/saveImportDraft.js\";\nexport * from \"./api/commands/company/updateActiveAdministrators.js\";\nexport * from \"./api/commands/company/updateAdministratorsForCompany.js\";\nexport * from \"./api/commands/company/updateCompanyDetailed.js\";\nexport * from \"./api/commands/company/updateCompanyOrdinances.js\";\nexport * from \"./api/commands/company/updateFractions.js\";\nexport * from \"./api/commands/conversation/completeConversation.js\";\nexport * from \"./api/commands/conversation/conversationBackInProgress.js\";\nexport * from \"./api/commands/conversation/conversationFolders.js\";\nexport * from \"./api/commands/conversation/createConversation.js\";\nexport * from \"./api/commands/conversation/createConversationCategory.js\";\nexport * from \"./api/commands/conversation/createConversationMessage.js\";\nexport * from \"./api/commands/conversation/createConversationParticipant.js\";\nexport * from \"./api/commands/conversation/createExternalConversationParticipant.js\";\nexport * from \"./api/commands/conversation/createInquiry.js\";\nexport * from \"./api/commands/conversation/createInquiryOpen.js\";\nexport * from \"./api/commands/conversation/createInternalConversationMessage.js\";\nexport * from \"./api/commands/conversation/createPublicConversationMessage.js\";\nexport * from \"./api/commands/conversation/deleteConversation.js\";\nexport * from \"./api/commands/conversation/deleteConversationCategory.js\";\nexport * from \"./api/commands/conversation/deleteConversationParticipant.js\";\nexport * from \"./api/commands/conversation/markConversationRead.js\";\nexport * from \"./api/commands/conversation/moveConversation.js\";\nexport * from \"./api/commands/conversation/publicUploadDocumentToConversation.js\";\nexport * from \"./api/commands/conversation/publishDraftConversation.js\";\nexport * from \"./api/commands/conversation/updateConversation.js\";\nexport * from \"./api/commands/conversation/updateConversationCategories.js\";\nexport * from \"./api/commands/conversation/updateConversationCategory.js\";\nexport * from \"./api/commands/document/createDocumentDirectory.js\";\nexport * from \"./api/commands/document/createDocumentReference.js\";\nexport * from \"./api/commands/document/deleteDocument.js\";\nexport * from \"./api/commands/document/moveDocument.js\";\nexport * from \"./api/commands/document/moveDocumentToTrash.js\";\nexport * from \"./api/commands/document/removeDocumentFromTrash.js\";\nexport * from \"./api/commands/document/renameDocument.js\";\nexport * from \"./api/commands/document/uploadDocument.js\";\nexport * from \"./api/commands/document/integratedDocumentMutations.js\";\nexport * from \"./api/commands/economy/approveInvoice.js\";\nexport * from \"./api/commands/economy/attachDocumentToEconomicReport.js\";\nexport * from \"./api/commands/economy/createInvoiceNotice.js\";\nexport * from \"./api/commands/economy/orderEconomicReport.js\";\nexport * from \"./api/commands/economy/rejectInvoice.js\";\nexport * from \"./api/commands/economy/updateInvoiceNotification.js\";\nexport * from \"./api/commands/economy/updateRealtimeInvoiceNotification.js\";\nexport * from \"./api/commands/expense/approveExpense.js\";\nexport * from \"./api/commands/expense/createExpense.js\";\nexport * from \"./api/commands/expense/deleteExpense.js\";\nexport * from \"./api/commands/expense/rejectExpense.js\";\nexport * from \"./api/commands/hms/setupHMSSettings.js\";\nexport * from \"./api/commands/hms/updateHMSSettings.js\";\nexport * from \"./api/commands/homepage/createPost.js\";\nexport * from \"./api/commands/homepage/createPracticalInfo.js\";\nexport * from \"./api/commands/homepage/deletePost.js\";\nexport * from \"./api/commands/homepage/deletePracticalInfo.js\";\nexport * from \"./api/commands/homepage/updateFeedWeighting.js\";\nexport * from \"./api/commands/homepage/updatePost.js\";\nexport * from \"./api/commands/homepage/updatePracticalInfo.js\";\nexport * from \"./api/commands/homepage/uploadHomepageImage.js\";\nexport * from \"./api/commands/insurance/closeInsurance.js\";\nexport * from \"./api/commands/insurance/createInsurance.js\";\nexport * from \"./api/commands/insurance/deleteInsurance.js\";\nexport * from \"./api/commands/invoicing/activateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/activateInvoicingPlan.js\";\nexport * from \"./api/commands/invoicing/activateTriplewin.js\";\nexport * from \"./api/commands/invoicing/closeInvoice.js\";\nexport * from \"./api/commands/invoicing/createAdhocLinesForCompany.js\";\nexport * from \"./api/commands/invoicing/createAllocationKey.js\";\nexport * from \"./api/commands/invoicing/createCreditNote.js\";\nexport * from \"./api/commands/invoicing/createCustomer.js\";\nexport * from \"./api/commands/invoicing/createCustomerById.js\";\nexport * from \"./api/commands/invoicing/createCustomerComment.js\";\nexport * from \"./api/commands/invoicing/createInvoicePlanLine.js\";\nexport * from \"./api/commands/invoicing/createInvoiceRecipient.js\";\nexport * from \"./api/commands/invoicing/createInvoicingPlan.js\";\nexport * from \"./api/commands/invoicing/deactivateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocInvoicingLine.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocLineGroup.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocLines.js\";\nexport * from \"./api/commands/invoicing/deleteDistribution.js\";\nexport * from \"./api/commands/invoicing/deleteInvoiceRecipient.js\";\nexport * from \"./api/commands/invoicing/deletePlannedInvoiceLineChanges.js\";\nexport * from \"./api/commands/invoicing/invoicingMutations.js\";\nexport * from \"./api/commands/invoicing/registerPayment.js\";\nexport * from \"./api/commands/invoicing/toggleInvoicingPlanTransactionOverdue.js\";\nexport * from \"./api/commands/invoicing/toggleOverdue.js\";\nexport * from \"./api/commands/invoicing/toggleOverdues.js\";\nexport * from \"./api/commands/invoicing/updateAdhocGroup.js\";\nexport * from \"./api/commands/invoicing/updateAdhocLinesForCompany.js\";\nexport * from \"./api/commands/invoicing/updateAllocationKey.js\";\nexport * from \"./api/commands/invoicing/updateCommonExpensesSettings.js\";\nexport * from \"./api/commands/invoicing/updateCustomerMeta.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceDelivery.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceLineName.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceSettings.js\";\nexport * from \"./api/commands/invoicing/updateSectionInvoiceRecipient.js\";\nexport * from \"./api/commands/issue/changeResponsible.js\";\nexport * from \"./api/commands/issue/closeIssue.js\";\nexport * from \"./api/commands/issue/createConversationToIssue.js\";\nexport * from \"./api/commands/issue/createIssue.js\";\nexport * from \"./api/commands/issue/createIssueComment.js\";\nexport * from \"./api/commands/issue/createIssueToMeeting.js\";\nexport * from \"./api/commands/issue/createSectionToIssue.js\";\nexport * from \"./api/commands/issue/deleteSectionFromIssue.js\";\nexport * from \"./api/commands/issue/reOpenIssue.js\";\nexport * from \"./api/commands/issue/removeConversationFromIssue.js\";\nexport * from \"./api/commands/issue/removeIssueFromMeeting.js\";\nexport * from \"./api/commands/issue/reorderIssueInMeeting.js\";\nexport * from \"./api/commands/issue/updateIssue.js\";\nexport * from \"./api/commands/issue/updateIssueConclusion.js\";\nexport * from \"./api/commands/issue/updateIssueReport.js\";\nexport * from \"./api/commands/loan/createLoan.js\";\nexport * from \"./api/commands/loan/deleteLoan.js\";\nexport * from \"./api/commands/loan/setMainDocumentId.js\";\nexport * from \"./api/commands/loan/updateLoan.js\";\nexport * from \"./api/commands/meeting/closeMeeting.js\";\nexport * from \"./api/commands/meeting/createMeeting.js\";\nexport * from \"./api/commands/meeting/createMeetingSummons.js\";\nexport * from \"./api/commands/meeting/createSignatureReminder.js\";\nexport * from \"./api/commands/meeting/deleteMeeting.js\";\nexport * from \"./api/commands/meeting/followUpIssueLater.js\";\nexport * from \"./api/commands/meeting/issueTreated.js\";\nexport * from \"./api/commands/meeting/reOpenMeeting.js\";\nexport * from \"./api/commands/meeting/registerAttendance.js\";\nexport * from \"./api/commands/meeting/rsvp.js\";\nexport * from \"./api/commands/meeting/sign.js\";\nexport * from \"./api/commands/meeting/signatureUnobtainable.js\";\nexport * from \"./api/commands/meeting/startMeeting.js\";\nexport * from \"./api/commands/meeting/updateMeeting.js\";\nexport * from \"./api/commands/meeting/updateMeetingParticipants.js\";\nexport * from \"./api/commands/organization/assignParkingSpaceToOrganization.js\";\nexport * from \"./api/commands/organization/assignStorageRoomToOrganization.js\";\nexport * from \"./api/commands/organization/createEmployee.js\";\nexport * from \"./api/commands/organization/createEmployeeCompanyContactRole.js\";\nexport * from \"./api/commands/organization/createEmployeeSectionContactRole.js\";\nexport * from \"./api/commands/organization/deleteEmployee.js\";\nexport * from \"./api/commands/organization/deleteOrganizationFromSAM.js\";\nexport * from \"./api/commands/organization/massUpdateOrganizations.js\";\nexport * from \"./api/commands/organization/removeCompanyContactRole.js\";\nexport * from \"./api/commands/organization/removeOrganizationRole.js\";\nexport * from \"./api/commands/organization/removeSectionContactRole.js\";\nexport * from \"./api/commands/organization/unAssignParkingSpaceToOrganization.js\";\nexport * from \"./api/commands/organization/unAssignStorageRoomToOrganization.js\";\nexport * from \"./api/commands/organization/updateEmployee.js\";\nexport * from \"./api/commands/organization/updateOrganization.js\";\nexport * from \"./api/commands/parkingSpaces/createParkingSpace.js\";\nexport * from \"./api/commands/parkingSpaces/deleteParkingSpace.js\";\nexport * from \"./api/commands/parkingSpaces/exportParkingSpaceAssets.js\";\nexport * from \"./api/commands/parkingSpaces/updateParkingSpace.js\";\nexport * from \"./api/commands/person/assignParkingSpaceToPerson.js\";\nexport * from \"./api/commands/person/assignStorageRoomToPerson.js\";\nexport * from \"./api/commands/person/deletePersonRole.js\";\nexport * from \"./api/commands/person/massUpdatePerson.js\";\nexport * from \"./api/commands/person/massUpdateRoles.js\";\nexport * from \"./api/commands/person/mergePerson.js\";\nexport * from \"./api/commands/person/personalIdentityNumberSearch.js\";\nexport * from \"./api/commands/person/unAssignParkingSpaceToPerson.js\";\nexport * from \"./api/commands/person/unAssignStorageRoomToPerson.js\";\nexport * from \"./api/commands/person/updatePerson.js\";\nexport * from \"./api/commands/person/updateResidency.js\";\nexport * from \"./api/commands/resident/createOccupancyRecord.js\";\nexport * from \"./api/commands/resident/createPhysicalLetterToResidentInCompany.js\";\nexport * from \"./api/commands/resident/createResident.js\";\nexport * from \"./api/commands/resident/deleteOccupancyRecord.js\";\nexport * from \"./api/commands/resident/removePersonFromCompany.js\";\nexport * from \"./api/commands/resident/requestResidentChange.js\";\nexport * from \"./api/commands/resident/residentActions.js\";\nexport * from \"./api/commands/resident/updateOccupancyRecord.js\";\nexport * from \"./api/commands/resident/updateOrganizationReservations.js\";\nexport * from \"./api/commands/resident/updatePersonReservations.js\";\nexport * from \"./api/commands/resident/updateResident.js\";\nexport * from \"./api/commands/resident/updateResidentNote.js\";\nexport * from \"./api/commands/routines/createRoutine.js\";\nexport * from \"./api/commands/routines/deleteRoutine.js\";\nexport * from \"./api/commands/routines/updateRoutine.js\";\nexport * from \"./api/commands/scopedContact/createScopedContact.js\";\nexport * from \"./api/commands/scopedContact/deleteScopedContact.js\";\nexport * from \"./api/commands/scopedContact/expireScopedContact.js\";\nexport * from \"./api/commands/scopedContact/resolveUserContact.js\";\nexport * from \"./api/commands/scopedContact/updateScopedContact.js\";\nexport * from \"./api/commands/section/assignParkingSpaceToSection.js\";\nexport * from \"./api/commands/section/assignStorageRoomToSection.js\";\nexport * from \"./api/commands/section/createSection.js\";\nexport * from \"./api/commands/section/createSectionStatus.js\";\nexport * from \"./api/commands/section/createSubSection.js\";\nexport * from \"./api/commands/section/deleteSection.js\";\nexport * from \"./api/commands/section/exportSectionAssets.js\";\nexport * from \"./api/commands/section/massUpdateSection.js\";\nexport * from \"./api/commands/section/ownershipTransferSection.js\";\nexport * from \"./api/commands/section/removeSectionStatus.js\";\nexport * from \"./api/commands/section/tagOnSection.js\";\nexport * from \"./api/commands/section/unAssignParkingSpaceToSection.js\";\nexport * from \"./api/commands/section/unAssignStorageRoomToSection.js\";\nexport * from \"./api/commands/section/updateSection.js\";\nexport * from \"./api/commands/section/updateSectionNote.js\";\nexport * from \"./api/commands/section/updateTagsOnSection.js\";\nexport * from \"./api/commands/settlement/closeSettlement.js\";\nexport * from \"./api/commands/settlement/createSettlement.js\";\nexport * from \"./api/commands/settlement/createSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/createSettlementProviderConfiguration.js\";\nexport * from \"./api/commands/settlement/deleteSettlement.js\";\nexport * from \"./api/commands/settlement/deleteSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/updateSettlement.js\";\nexport * from \"./api/commands/settlement/updateSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/updateSettlementProviderConfiguration.js\";\nexport * from \"./api/commands/settlement/upsertSettlementProviderCredentials.js\";\nexport * from \"./api/commands/storageRoom/createStorageRoom.js\";\nexport * from \"./api/commands/storageRoom/deleteStorageRoom.js\";\nexport * from \"./api/commands/storageRoom/exportStorageRooms.js\";\nexport * from \"./api/commands/storageRoom/updateStorageRoom.js\";\nexport * from \"./api/commands/supplier/createSupplier.js\";\nexport * from \"./api/commands/supplier/createSupplierComment.js\";\nexport * from \"./api/commands/supplier/createSupplierContact.js\";\nexport * from \"./api/commands/supplier/createSupplierForCompany.js\";\nexport * from \"./api/commands/supplier/deleteCompanySupplier.js\";\nexport * from \"./api/commands/supplier/deleteSupplierContactPerson.js\";\nexport * from \"./api/commands/supplier/editSupplierContact.js\";\nexport * from \"./api/commands/supplier/editSupplierForCompany.js\";\nexport * from \"./api/commands/supplier/supplierMutations.js\";\nexport * from \"./api/commands/supplier/updateServiceCategories.js\";\nexport * from \"./api/commands/supplier/updateSupplier.js\";\nexport * from \"./api/commands/supplier/updateSupplierContactImage.js\";\nexport * from \"./api/commands/supplier/uploadSupplierLogo.js\";\nexport * from \"./api/commands/task/completeTask.js\";\nexport * from \"./api/commands/task/createTask.js\";\nexport * from \"./api/commands/task/deleteTask.js\";\nexport * from \"./api/commands/task/undoCompleteTask.js\";\nexport * from \"./api/commands/task/updateTask.js\";\nexport * from \"./api/commands/thirdPartyInformation/completeThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/createDuplicateLetter.js\";\nexport * from \"./api/commands/thirdPartyInformation/createThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/createThreePOToSkatteetaten.js\";\nexport * from \"./api/commands/thirdPartyInformation/overrideThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/reopenThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/updateThirdPartyInformation.js\";\nexport * from \"./api/commands/user/contactHooks.js\";\nexport * from \"./api/commands/user/deleteProfilePicture.js\";\nexport * from \"./api/commands/user/fCMDevice.js\";\nexport * from \"./api/commands/user/mfa.js\";\nexport * from \"./api/commands/user/resetPassword.js\";\nexport * from \"./api/commands/user/updateUser.js\";\nexport * from \"./api/commands/user/uploadProfilePicture.js\";\nexport * from \"./api/queries/administration/agreementDetails.js\";\nexport * from \"./api/queries/administration/insuranceAgreements.js\";\nexport * from \"./api/queries/administration/loanAgreements.js\";\nexport * from \"./api/queries/administration/loanChangeLog.js\";\nexport * from \"./api/queries/administration/tripletexDetails.js\";\nexport * from \"./api/queries/board/boardMembers.js\";\nexport * from \"./api/queries/board/showPersonalIdentityNumberOnBoardMember.js\";\nexport * from \"./api/queries/communication/availableBundles.js\";\nexport * from \"./api/queries/communication/availableSMS.js\";\nexport * from \"./api/queries/communication/communicationReport.js\";\nexport * from \"./api/queries/communication/newsletter.js\";\nexport * from \"./api/queries/communication/newsletters.js\";\nexport * from \"./api/queries/communication/notificationgroupsEmail.js\";\nexport * from \"./api/queries/communication/notificationgroupsSms.js\";\nexport * from \"./api/queries/communication/sMSAvailableForSMSBroadcastPost.js\";\nexport * from \"./api/queries/communication/sMSBroadcast.js\";\nexport * from \"./api/queries/communication/sMSBroadcasts.js\";\nexport * from \"./api/queries/communication/sMSPurchases.js\";\nexport * from \"./api/queries/company/activeAdministrators.js\";\nexport * from \"./api/queries/company/administratorsForCompany.js\";\nexport * from \"./api/queries/company/availableAdministrators.js\";\nexport * from \"./api/queries/company/availableAdministratorsForCompany.js\";\nexport * from \"./api/queries/company/companies.js\";\nexport * from \"./api/queries/company/companyAddresses.js\";\nexport * from \"./api/queries/company/companyById.js\";\nexport * from \"./api/queries/company/companyDetailed.js\";\nexport * from \"./api/queries/company/companyDraft.js\";\nexport * from \"./api/queries/company/companyDrafts.js\";\nexport * from \"./api/queries/company/companyOrdinances.js\";\nexport * from \"./api/queries/company/companyTypes.js\";\nexport * from \"./api/queries/company/fractions.js\";\nexport * from \"./api/queries/company/newlyManagedCompanies.js\";\nexport * from \"./api/queries/conversation/companyConversationCategoriesForRequests.js\";\nexport * from \"./api/queries/conversation/conversation.js\";\nexport * from \"./api/queries/conversation/conversationCategories.js\";\nexport * from \"./api/queries/conversation/conversationCategoriesOpen.js\";\nexport * from \"./api/queries/conversation/conversationCount.js\";\nexport * from \"./api/queries/conversation/conversationFolders.js\";\nexport * from \"./api/queries/conversation/conversations.js\";\nexport * from \"./api/queries/conversation/conversationsByParticipant.js\";\nexport * from \"./api/queries/conversation/publicConversation.js\";\nexport * from \"./api/queries/conversation/publicConversationAuth.js\";\nexport * from \"./api/queries/conversation/unreadConversationsCount.js\";\nexport * from \"./api/queries/countries/countries.js\";\nexport * from \"./api/queries/document/documentActions.js\";\nexport * from \"./api/queries/document/documents.js\";\nexport * from \"./api/queries/document/documentsOfTypeForCompany.js\";\nexport * from \"./api/queries/document/getDocumentURL.js\";\nexport * from \"./api/queries/document/searchDocumentsForCompany.js\";\nexport * from \"./api/queries/economy/checkIfAccountingAvailable.js\";\nexport * from \"./api/queries/economy/companiesEconomyStatus.js\";\nexport * from \"./api/queries/economy/economicReports.js\";\nexport * from \"./api/queries/economy/invoiceArchive.js\";\nexport * from \"./api/queries/economy/invoiceForApprovalCount.js\";\nexport * from \"./api/queries/economy/invoiceNotification.js\";\nexport * from \"./api/queries/economy/invoices.js\";\nexport * from \"./api/queries/economy/status.js\";\nexport * from \"./api/queries/economy/supplierInvoiceApprovalCounts.js\";\nexport * from \"./api/queries/economy/unattestedCounts.js\";\nexport * from \"./api/queries/expense/expense.js\";\nexport * from \"./api/queries/expense/expenseList.js\";\nexport * from \"./api/queries/expense/expenseTypes.js\";\nexport * from \"./api/queries/hms/hMSReportRoutines.js\";\nexport * from \"./api/queries/hms/hMSSettings.js\";\nexport * from \"./api/queries/homepage/homepage.js\";\nexport * from \"./api/queries/homepage/homepageFeed.js\";\nexport * from \"./api/queries/homepage/homepageRss.js\";\nexport * from \"./api/queries/homepage/openHomepage.js\";\nexport * from \"./api/queries/homepage/openHomepageDocument.js\";\nexport * from \"./api/queries/homepage/openHomepageFeed.js\";\nexport * from \"./api/queries/homepage/postDocuments.js\";\nexport * from \"./api/queries/homepage/postNotificationgroups.js\";\nexport * from \"./api/queries/homepage/sMSAvailableForPost.js\";\nexport * from \"./api/queries/invoicing/adHocGroupById.js\";\nexport * from \"./api/queries/invoicing/adHocGroups.js\";\nexport * from \"./api/queries/invoicing/checkTriplewinActivated.js\";\nexport * from \"./api/queries/invoicing/creditNotes.js\";\nexport * from \"./api/queries/invoicing/customer.js\";\nexport * from \"./api/queries/invoicing/customerInvoices.js\";\nexport * from \"./api/queries/invoicing/customerMetadata.js\";\nexport * from \"./api/queries/invoicing/customerRecipient.js\";\nexport * from \"./api/queries/invoicing/customers.js\";\nexport * from \"./api/queries/invoicing/expiredInvoices.js\";\nexport * from \"./api/queries/invoicing/historicInvoices.js\";\nexport * from \"./api/queries/invoicing/invoicePlan.js\";\nexport * from \"./api/queries/invoicing/invoicePlanDistributions.js\";\nexport * from \"./api/queries/invoicing/invoicePlanLine.js\";\nexport * from \"./api/queries/invoicing/invoicePlanLines.js\";\nexport * from \"./api/queries/invoicing/invoicePlanTransactions.js\";\nexport * from \"./api/queries/invoicing/invoicePlans.js\";\nexport * from \"./api/queries/invoicing/invoicePlansForSection.js\";\nexport * from \"./api/queries/invoicing/invoiceSettings.js\";\nexport * from \"./api/queries/invoicing/invoicingAdHocLines.js\";\nexport * from \"./api/queries/invoicing/invoicingExpiredByCustomer.js\";\nexport * from \"./api/queries/invoicing/invoicingExpiredTypes.js\";\nexport * from \"./api/queries/invoicing/invoicingInvoiceDetails.js\";\nexport * from \"./api/queries/invoicing/invoicingKeys.js\";\nexport * from \"./api/queries/invoicing/invoicingPlanTypes.js\";\nexport * from \"./api/queries/invoicing/massInvoiceForCompany.js\";\nexport * from \"./api/queries/invoicing/massInvoicePdfPreview.js\";\nexport * from \"./api/queries/invoicing/massInvoicePreview.js\";\nexport * from \"./api/queries/invoicing/overdueInvoices.js\";\nexport * from \"./api/queries/invoicing/planSettings.js\";\nexport * from \"./api/queries/invoicing/preview.js\";\nexport * from \"./api/queries/invoicing/previewPdf.js\";\nexport * from \"./api/queries/invoicing/processedPayments.js\";\nexport * from \"./api/queries/invoicing/queuedInvoicePdf.js\";\nexport * from \"./api/queries/invoicing/queuedInvoices.js\";\nexport * from \"./api/queries/invoicing/recipient.js\";\nexport * from \"./api/queries/invoicing/sectionInvoices.js\";\nexport * from \"./api/queries/invoicing/unprocessedPayments.js\";\nexport * from \"./api/queries/invoicing/upcomingInvoicing.js\";\nexport * from \"./api/queries/issue/issue.js\";\nexport * from \"./api/queries/issue/issues.js\";\nexport * from \"./api/queries/meeting/meetings.js\";\nexport * from \"./api/queries/organization/organization.js\";\nexport * from \"./api/queries/organization/organizationByOrgnr.js\";\nexport * from \"./api/queries/organization/organizations.js\";\nexport * from \"./api/queries/organization/organizationsInCompany.js\";\nexport * from \"./api/queries/organization/otherOrganizations.js\";\nexport * from \"./api/queries/parkingSpaces/parkingSpaces.js\";\nexport * from \"./api/queries/person/otherPersons.js\";\nexport * from \"./api/queries/person/person.js\";\nexport * from \"./api/queries/person/personSearch.js\";\nexport * from \"./api/queries/person/persons.js\";\nexport * from \"./api/queries/residentsAndSections/domain.js\";\nexport * from \"./api/queries/residentsAndSections/existingSectionTagsInCompany.js\";\nexport * from \"./api/queries/residentsAndSections/loansByFraction.js\";\nexport * from \"./api/queries/residentsAndSections/ownershipChanges.js\";\nexport * from \"./api/queries/residentsAndSections/personalID.js\";\nexport * from \"./api/queries/residentsAndSections/residentHistory.js\";\nexport * from \"./api/queries/residentsAndSections/residentOccupancy.js\";\nexport * from \"./api/queries/residentsAndSections/residentSearch.js\";\nexport * from \"./api/queries/residentsAndSections/residentTypes.js\";\nexport * from \"./api/queries/residentsAndSections/residents.js\";\nexport * from \"./api/queries/residentsAndSections/sectionOccupancy.js\";\nexport * from \"./api/queries/residentsAndSections/sectionStatus.js\";\nexport * from \"./api/queries/residentsAndSections/sectionTags.js\";\nexport * from \"./api/queries/residentsAndSections/sectionTenants.js\";\nexport * from \"./api/queries/residentsAndSections/sections.js\";\nexport * from \"./api/queries/residentsAndSections/sectionsSearch.js\";\nexport * from \"./api/queries/residentsAndSections/sectionsTags.js\";\nexport * from \"./api/queries/routines/availableRoutineTypes.js\";\nexport * from \"./api/queries/routines/companyFeatures.js\";\nexport * from \"./api/queries/routines/routine.js\";\nexport * from \"./api/queries/routines/routineGroupDrafts.js\";\nexport * from \"./api/queries/routines/routines.js\";\nexport * from \"./api/queries/scopedContact/scopedContacts.js\";\nexport * from \"./api/queries/settlement/settlement.js\";\nexport * from \"./api/queries/settlement/settlementCustomCost.js\";\nexport * from \"./api/queries/settlement/settlementCustomCosts.js\";\nexport * from \"./api/queries/settlement/settlementInvoices.js\";\nexport * from \"./api/queries/settlement/settlementProviderConfiguration.js\";\nexport * from \"./api/queries/settlement/settlementProviderConfigurations.js\";\nexport * from \"./api/queries/settlement/settlementProviders.js\";\nexport * from \"./api/queries/settlement/settlementTypes.js\";\nexport * from \"./api/queries/settlement/settlements.js\";\nexport * from \"./api/queries/storageRoom/storageRooms.js\";\nexport * from \"./api/queries/supplier/domain.js\";\nexport * from \"./api/queries/supplier/supplierDetails.js\";\nexport * from \"./api/queries/supplier/suppliers.js\";\nexport * from \"./api/queries/supplier/suppliersAndContacts.js\";\nexport * from \"./api/queries/supplier/suppliersLogo.js\";\nexport * from \"./api/queries/task/tasks.js\";\nexport * from \"./api/queries/thirdPartyInformation/singleThirdPartyInformation.js\";\nexport * from \"./api/queries/thirdPartyInformation/skatteetatenDialog.js\";\nexport * from \"./api/queries/thirdPartyInformation/thirdPartyInformation.js\";\nexport * from \"./api/queries/thirdPartyInformation/thirdPartyInformationLetters.js\";\nexport * from \"./api/queries/thirdPartyInformation/totalsForThirdPartyInformation.js\";\nexport * from \"./api/queries/user/authedUser.js\";\nexport * from \"./api/queries/user/user.js\";\nexport * from \"./api/queries/user/userActions.js\";\nexport * from \"./api/queries/user/userConversations.js\";\nexport * from \"./api/queries/user/userDevices.js\";\nexport * from \"./api/queries/user/userImage.js\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["import \"./utils/bigint-polyfill.js\";\n\n// Re-export everything from @solibo/solibo-sdk — consumers only need @solibo/solibo-query.\nexport * from \"@solibo/solibo-sdk\";\n\n// Utilities\nexport {\n fromKt,\n toKtProps,\n toLong,\n toKtList,\n toIdList,\n toKeyId,\n} from \"./utils/kt-bridge.js\";\nexport type { Id, JsProps, FromKt } from \"./utils/kt-bridge.js\";\nexport {\n nextPageParam,\n prevPageParam,\n totalCountFromPages,\n} from \"./utils/pageUtils.js\";\nexport type { PagedPage } from \"./utils/pageUtils.js\";\nexport { seconds, minutes, hours } from \"./utils/dateTime.js\";\nexport {\n completeSignedUpload,\n createUploadHeaders,\n fileToBytes,\n toKotlinUploadHeaders,\n toUploadBinaryRequest,\n} from \"./api/documentApi.js\";\nexport type {\n FileSlingShotParams,\n SignedUploadCompleter,\n UploadHeaderFactory,\n UploadProgressListener,\n} from \"./api/documentApi.js\";\nexport {\n prepareIntegratedDocumentSources,\n toIntegratedDocumentInput,\n} from \"./api/integratedDocumentApi.js\";\nexport {\n openApiOperationMutationOptions,\n openApiOperationQueryOptions,\n} from \"./api/openApiOperation.js\";\nexport type {\n OpenApiMutationDefinition,\n OpenApiOperationArgs,\n OpenApiQueryDefinition,\n} from \"./api/openApiOperation.js\";\nexport type {\n ExistingIntegratedDocumentInput,\n InlineDocumentSources,\n IntegratedDocumentSource,\n IntegratedDocumentSources,\n IntegratedUploadProgress,\n PreparedIntegratedDocumentSources,\n UploadIntegratedDocumentInput,\n UploadIntegratedDocumentBytesInput,\n} from \"./api/integratedDocumentApi.js\";\n\nexport * from \"./api/commands/board/createBoardMember.js\";\nexport * from \"./api/commands/board/deleteBoardMember.js\";\nexport * from \"./api/commands/board/inviteBoardMemberToSoliboHome.js\";\nexport * from \"./api/commands/communication/buySMSBundle.js\";\nexport * from \"./api/commands/communication/createNewsletter.js\";\nexport * from \"./api/commands/communication/createSMSBroadcast.js\";\nexport * from \"./api/commands/communication/deleteDocumentFromNewsletter.js\";\nexport * from \"./api/commands/communication/deleteNewsletter.js\";\nexport * from \"./api/commands/communication/deleteSMSBroadcast.js\";\nexport * from \"./api/commands/communication/publishNewsletter.js\";\nexport * from \"./api/commands/communication/publishSMSBroadcast.js\";\nexport * from \"./api/commands/communication/reportPushNotificationRead.js\";\nexport * from \"./api/commands/communication/reportPushNotificationReceived.js\";\nexport * from \"./api/commands/communication/signupNewsletter.js\";\nexport * from \"./api/commands/communication/updateNewsletter.js\";\nexport * from \"./api/commands/communication/updateSMSBroadcast.js\";\nexport * from \"./api/commands/company/createCompanyCustomerClaim.js\";\nexport * from \"./api/commands/company/deleteFractions.js\";\nexport * from \"./api/commands/company/importCompanies.js\";\nexport * from \"./api/commands/company/importDraft.js\";\nexport * from \"./api/commands/company/importHousingAssociation.js\";\nexport * from \"./api/commands/company/importHousingCooperative.js\";\nexport * from \"./api/commands/company/importHousingCooperativeByAddress.js\";\nexport * from \"./api/commands/company/offboardCompany.js\";\nexport * from \"./api/commands/company/resetSales.js\";\nexport * from \"./api/commands/company/saveCompanyDetailed.js\";\nexport * from \"./api/commands/company/saveImportDraft.js\";\nexport * from \"./api/commands/company/updateActiveAdministrators.js\";\nexport * from \"./api/commands/company/updateAdministratorsForCompany.js\";\nexport * from \"./api/commands/company/updateCompanyDetailed.js\";\nexport * from \"./api/commands/company/updateCompanyOrdinances.js\";\nexport * from \"./api/commands/company/updateFractions.js\";\nexport * from \"./api/commands/conversation/completeConversation.js\";\nexport * from \"./api/commands/conversation/conversationBackInProgress.js\";\nexport * from \"./api/commands/conversation/conversationFolders.js\";\nexport * from \"./api/commands/conversation/createConversation.js\";\nexport * from \"./api/commands/conversation/createConversationCategory.js\";\nexport * from \"./api/commands/conversation/createConversationMessage.js\";\nexport * from \"./api/commands/conversation/createConversationParticipant.js\";\nexport * from \"./api/commands/conversation/createExternalConversationParticipant.js\";\nexport * from \"./api/commands/conversation/createInquiry.js\";\nexport * from \"./api/commands/conversation/createInquiryOpen.js\";\nexport * from \"./api/commands/conversation/createInternalConversationMessage.js\";\nexport * from \"./api/commands/conversation/createPublicConversationMessage.js\";\nexport * from \"./api/commands/conversation/deleteConversation.js\";\nexport * from \"./api/commands/conversation/deleteConversationCategory.js\";\nexport * from \"./api/commands/conversation/deleteConversationParticipant.js\";\nexport * from \"./api/commands/conversation/markConversationRead.js\";\nexport * from \"./api/commands/conversation/moveConversation.js\";\nexport * from \"./api/commands/conversation/multipleConversationMutations.js\";\nexport * from \"./api/commands/conversation/publicUploadDocumentToConversation.js\";\nexport * from \"./api/commands/conversation/publishDraftConversation.js\";\nexport * from \"./api/commands/conversation/updateConversation.js\";\nexport * from \"./api/commands/conversation/updateConversationCategories.js\";\nexport * from \"./api/commands/conversation/updateConversationCategory.js\";\nexport * from \"./api/commands/document/createDocumentDirectory.js\";\nexport * from \"./api/commands/document/createDocumentReference.js\";\nexport * from \"./api/commands/document/deleteDocument.js\";\nexport * from \"./api/commands/document/moveDocument.js\";\nexport * from \"./api/commands/document/moveDocumentToTrash.js\";\nexport * from \"./api/commands/document/multipleDocumentMutations.js\";\nexport * from \"./api/commands/document/removeDocumentFromTrash.js\";\nexport * from \"./api/commands/document/renameDocument.js\";\nexport * from \"./api/commands/document/uploadDocument.js\";\nexport * from \"./api/commands/document/integratedDocumentMutations.js\";\nexport * from \"./api/commands/economy/approveInvoice.js\";\nexport * from \"./api/commands/economy/attachDocumentToEconomicReport.js\";\nexport * from \"./api/commands/economy/createInvoiceNotice.js\";\nexport * from \"./api/commands/economy/orderEconomicReport.js\";\nexport * from \"./api/commands/economy/rejectInvoice.js\";\nexport * from \"./api/commands/economy/updateInvoiceNotification.js\";\nexport * from \"./api/commands/economy/updateRealtimeInvoiceNotification.js\";\nexport * from \"./api/commands/expense/approveExpense.js\";\nexport * from \"./api/commands/expense/createExpense.js\";\nexport * from \"./api/commands/expense/deleteExpense.js\";\nexport * from \"./api/commands/expense/rejectExpense.js\";\nexport * from \"./api/commands/hms/setupHMSSettings.js\";\nexport * from \"./api/commands/hms/updateHMSSettings.js\";\nexport * from \"./api/commands/homepage/createPost.js\";\nexport * from \"./api/commands/homepage/createPracticalInfo.js\";\nexport * from \"./api/commands/homepage/deletePost.js\";\nexport * from \"./api/commands/homepage/deletePracticalInfo.js\";\nexport * from \"./api/commands/homepage/updateFeedWeighting.js\";\nexport * from \"./api/commands/homepage/updatePost.js\";\nexport * from \"./api/commands/homepage/updatePracticalInfo.js\";\nexport * from \"./api/commands/homepage/uploadHomepageImage.js\";\nexport * from \"./api/commands/insurance/closeInsurance.js\";\nexport * from \"./api/commands/insurance/createInsurance.js\";\nexport * from \"./api/commands/insurance/deleteInsurance.js\";\nexport * from \"./api/commands/invoicing/activateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/activateInvoicingPlan.js\";\nexport * from \"./api/commands/invoicing/activateTriplewin.js\";\nexport * from \"./api/commands/invoicing/closeInvoice.js\";\nexport * from \"./api/commands/invoicing/createAdhocLinesForCompany.js\";\nexport * from \"./api/commands/invoicing/createAllocationKey.js\";\nexport * from \"./api/commands/invoicing/createCreditNote.js\";\nexport * from \"./api/commands/invoicing/createCustomer.js\";\nexport * from \"./api/commands/invoicing/createCustomerById.js\";\nexport * from \"./api/commands/invoicing/createCustomerComment.js\";\nexport * from \"./api/commands/invoicing/createInvoicePlanLine.js\";\nexport * from \"./api/commands/invoicing/createInvoiceRecipient.js\";\nexport * from \"./api/commands/invoicing/createInvoicingPlan.js\";\nexport * from \"./api/commands/invoicing/deactivateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocInvoicingLine.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocLineGroup.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocLines.js\";\nexport * from \"./api/commands/invoicing/deleteDistribution.js\";\nexport * from \"./api/commands/invoicing/deleteInvoiceRecipient.js\";\nexport * from \"./api/commands/invoicing/deletePlannedInvoiceLineChanges.js\";\nexport * from \"./api/commands/invoicing/invoicingMutations.js\";\nexport * from \"./api/commands/invoicing/registerPayment.js\";\nexport * from \"./api/commands/invoicing/toggleInvoicingPlanTransactionOverdue.js\";\nexport * from \"./api/commands/invoicing/toggleOverdue.js\";\nexport * from \"./api/commands/invoicing/toggleOverdues.js\";\nexport * from \"./api/commands/invoicing/updateAdhocGroup.js\";\nexport * from \"./api/commands/invoicing/updateAdhocLinesForCompany.js\";\nexport * from \"./api/commands/invoicing/updateAllocationKey.js\";\nexport * from \"./api/commands/invoicing/updateCommonExpensesSettings.js\";\nexport * from \"./api/commands/invoicing/updateCustomerMeta.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceDelivery.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceLineName.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceSettings.js\";\nexport * from \"./api/commands/invoicing/updateSectionInvoiceRecipient.js\";\nexport * from \"./api/commands/issue/changeResponsible.js\";\nexport * from \"./api/commands/issue/closeIssue.js\";\nexport * from \"./api/commands/issue/createConversationToIssue.js\";\nexport * from \"./api/commands/issue/createIssue.js\";\nexport * from \"./api/commands/issue/createIssueComment.js\";\nexport * from \"./api/commands/issue/createIssueToMeeting.js\";\nexport * from \"./api/commands/issue/createSectionToIssue.js\";\nexport * from \"./api/commands/issue/deleteSectionFromIssue.js\";\nexport * from \"./api/commands/issue/reOpenIssue.js\";\nexport * from \"./api/commands/issue/removeConversationFromIssue.js\";\nexport * from \"./api/commands/issue/removeIssueFromMeeting.js\";\nexport * from \"./api/commands/issue/reorderIssueInMeeting.js\";\nexport * from \"./api/commands/issue/updateIssue.js\";\nexport * from \"./api/commands/issue/updateIssueConclusion.js\";\nexport * from \"./api/commands/issue/updateIssueReport.js\";\nexport * from \"./api/commands/loan/createLoan.js\";\nexport * from \"./api/commands/loan/deleteLoan.js\";\nexport * from \"./api/commands/loan/setMainDocumentId.js\";\nexport * from \"./api/commands/loan/updateLoan.js\";\nexport * from \"./api/commands/meeting/closeMeeting.js\";\nexport * from \"./api/commands/meeting/createMeeting.js\";\nexport * from \"./api/commands/meeting/createMeetingSummons.js\";\nexport * from \"./api/commands/meeting/createSignatureReminder.js\";\nexport * from \"./api/commands/meeting/deleteMeeting.js\";\nexport * from \"./api/commands/meeting/followUpIssueLater.js\";\nexport * from \"./api/commands/meeting/issueTreated.js\";\nexport * from \"./api/commands/meeting/reOpenMeeting.js\";\nexport * from \"./api/commands/meeting/registerAttendance.js\";\nexport * from \"./api/commands/meeting/rsvp.js\";\nexport * from \"./api/commands/meeting/sign.js\";\nexport * from \"./api/commands/meeting/signatureUnobtainable.js\";\nexport * from \"./api/commands/meeting/startMeeting.js\";\nexport * from \"./api/commands/meeting/updateMeeting.js\";\nexport * from \"./api/commands/meeting/updateMeetingParticipants.js\";\nexport * from \"./api/commands/organization/assignParkingSpaceToOrganization.js\";\nexport * from \"./api/commands/organization/assignStorageRoomToOrganization.js\";\nexport * from \"./api/commands/organization/createEmployee.js\";\nexport * from \"./api/commands/organization/createEmployeeCompanyContactRole.js\";\nexport * from \"./api/commands/organization/createEmployeeSectionContactRole.js\";\nexport * from \"./api/commands/organization/deleteEmployee.js\";\nexport * from \"./api/commands/organization/deleteOrganizationFromSAM.js\";\nexport * from \"./api/commands/organization/massUpdateOrganizations.js\";\nexport * from \"./api/commands/organization/removeCompanyContactRole.js\";\nexport * from \"./api/commands/organization/removeOrganizationRole.js\";\nexport * from \"./api/commands/organization/removeSectionContactRole.js\";\nexport * from \"./api/commands/organization/unAssignParkingSpaceToOrganization.js\";\nexport * from \"./api/commands/organization/unAssignStorageRoomToOrganization.js\";\nexport * from \"./api/commands/organization/updateEmployee.js\";\nexport * from \"./api/commands/organization/updateOrganization.js\";\nexport * from \"./api/commands/parkingSpaces/createParkingSpace.js\";\nexport * from \"./api/commands/parkingSpaces/deleteParkingSpace.js\";\nexport * from \"./api/commands/parkingSpaces/exportParkingSpaceAssets.js\";\nexport * from \"./api/commands/parkingSpaces/updateParkingSpace.js\";\nexport * from \"./api/commands/person/assignParkingSpaceToPerson.js\";\nexport * from \"./api/commands/person/assignStorageRoomToPerson.js\";\nexport * from \"./api/commands/person/deletePersonRole.js\";\nexport * from \"./api/commands/person/massUpdatePerson.js\";\nexport * from \"./api/commands/person/massUpdateRoles.js\";\nexport * from \"./api/commands/person/mergePerson.js\";\nexport * from \"./api/commands/person/personalIdentityNumberSearch.js\";\nexport * from \"./api/commands/person/unAssignParkingSpaceToPerson.js\";\nexport * from \"./api/commands/person/unAssignStorageRoomToPerson.js\";\nexport * from \"./api/commands/person/updatePerson.js\";\nexport * from \"./api/commands/person/updateResidency.js\";\nexport * from \"./api/commands/resident/createOccupancyRecord.js\";\nexport * from \"./api/commands/resident/createPhysicalLetterToResidentInCompany.js\";\nexport * from \"./api/commands/resident/createResident.js\";\nexport * from \"./api/commands/resident/deleteOccupancyRecord.js\";\nexport * from \"./api/commands/resident/removePersonFromCompany.js\";\nexport * from \"./api/commands/resident/requestResidentChange.js\";\nexport * from \"./api/commands/resident/residentActions.js\";\nexport * from \"./api/commands/resident/updateOccupancyRecord.js\";\nexport * from \"./api/commands/resident/updateOrganizationReservations.js\";\nexport * from \"./api/commands/resident/updatePersonReservations.js\";\nexport * from \"./api/commands/resident/updateResident.js\";\nexport * from \"./api/commands/resident/updateResidentNote.js\";\nexport * from \"./api/commands/routines/createRoutine.js\";\nexport * from \"./api/commands/routines/deleteRoutine.js\";\nexport * from \"./api/commands/routines/updateRoutine.js\";\nexport * from \"./api/commands/scopedContact/createScopedContact.js\";\nexport * from \"./api/commands/scopedContact/deleteScopedContact.js\";\nexport * from \"./api/commands/scopedContact/expireScopedContact.js\";\nexport * from \"./api/commands/scopedContact/resolveUserContact.js\";\nexport * from \"./api/commands/scopedContact/updateScopedContact.js\";\nexport * from \"./api/commands/section/assignParkingSpaceToSection.js\";\nexport * from \"./api/commands/section/assignStorageRoomToSection.js\";\nexport * from \"./api/commands/section/createSection.js\";\nexport * from \"./api/commands/section/createSectionStatus.js\";\nexport * from \"./api/commands/section/createSubSection.js\";\nexport * from \"./api/commands/section/deleteSection.js\";\nexport * from \"./api/commands/section/exportSectionAssets.js\";\nexport * from \"./api/commands/section/massUpdateSection.js\";\nexport * from \"./api/commands/section/ownershipTransferSection.js\";\nexport * from \"./api/commands/section/removeSectionStatus.js\";\nexport * from \"./api/commands/section/tagOnSection.js\";\nexport * from \"./api/commands/section/unAssignParkingSpaceToSection.js\";\nexport * from \"./api/commands/section/unAssignStorageRoomToSection.js\";\nexport * from \"./api/commands/section/updateSection.js\";\nexport * from \"./api/commands/section/updateSectionNote.js\";\nexport * from \"./api/commands/section/updateTagsOnSection.js\";\nexport * from \"./api/commands/settlement/closeSettlement.js\";\nexport * from \"./api/commands/settlement/createSettlement.js\";\nexport * from \"./api/commands/settlement/createSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/createSettlementProviderConfiguration.js\";\nexport * from \"./api/commands/settlement/deleteSettlement.js\";\nexport * from \"./api/commands/settlement/deleteSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/updateSettlement.js\";\nexport * from \"./api/commands/settlement/updateSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/updateSettlementProviderConfiguration.js\";\nexport * from \"./api/commands/settlement/upsertSettlementProviderCredentials.js\";\nexport * from \"./api/commands/storageRoom/createStorageRoom.js\";\nexport * from \"./api/commands/storageRoom/deleteStorageRoom.js\";\nexport * from \"./api/commands/storageRoom/exportStorageRooms.js\";\nexport * from \"./api/commands/storageRoom/updateStorageRoom.js\";\nexport * from \"./api/commands/supplier/createSupplier.js\";\nexport * from \"./api/commands/supplier/createSupplierComment.js\";\nexport * from \"./api/commands/supplier/createSupplierContact.js\";\nexport * from \"./api/commands/supplier/createSupplierForCompany.js\";\nexport * from \"./api/commands/supplier/deleteCompanySupplier.js\";\nexport * from \"./api/commands/supplier/deleteSupplierContactPerson.js\";\nexport * from \"./api/commands/supplier/editSupplierContact.js\";\nexport * from \"./api/commands/supplier/editSupplierForCompany.js\";\nexport * from \"./api/commands/supplier/supplierMutations.js\";\nexport * from \"./api/commands/supplier/updateServiceCategories.js\";\nexport * from \"./api/commands/supplier/updateSupplier.js\";\nexport * from \"./api/commands/supplier/updateSupplierContactImage.js\";\nexport * from \"./api/commands/supplier/uploadSupplierLogo.js\";\nexport * from \"./api/commands/task/completeTask.js\";\nexport * from \"./api/commands/task/createTask.js\";\nexport * from \"./api/commands/task/deleteTask.js\";\nexport * from \"./api/commands/task/undoCompleteTask.js\";\nexport * from \"./api/commands/task/updateTask.js\";\nexport * from \"./api/commands/thirdPartyInformation/completeThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/createDuplicateLetter.js\";\nexport * from \"./api/commands/thirdPartyInformation/createThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/createThreePOToSkatteetaten.js\";\nexport * from \"./api/commands/thirdPartyInformation/overrideThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/reopenThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/updateThirdPartyInformation.js\";\nexport * from \"./api/commands/user/contactHooks.js\";\nexport * from \"./api/commands/user/deleteProfilePicture.js\";\nexport * from \"./api/commands/user/fCMDevice.js\";\nexport * from \"./api/commands/user/mfa.js\";\nexport * from \"./api/commands/user/resetPassword.js\";\nexport * from \"./api/commands/user/updateUser.js\";\nexport * from \"./api/commands/user/uploadProfilePicture.js\";\nexport * from \"./api/queries/administration/agreementDetails.js\";\nexport * from \"./api/queries/administration/insuranceAgreements.js\";\nexport * from \"./api/queries/administration/loanAgreements.js\";\nexport * from \"./api/queries/administration/loanChangeLog.js\";\nexport * from \"./api/queries/administration/tripletexDetails.js\";\nexport * from \"./api/queries/board/boardMembers.js\";\nexport * from \"./api/queries/board/showPersonalIdentityNumberOnBoardMember.js\";\nexport * from \"./api/queries/communication/availableBundles.js\";\nexport * from \"./api/queries/communication/availableSMS.js\";\nexport * from \"./api/queries/communication/communicationReport.js\";\nexport * from \"./api/queries/communication/newsletter.js\";\nexport * from \"./api/queries/communication/newsletters.js\";\nexport * from \"./api/queries/communication/notificationgroupsEmail.js\";\nexport * from \"./api/queries/communication/notificationgroupsSms.js\";\nexport * from \"./api/queries/communication/pushNotificationInbox.js\";\nexport * from \"./api/queries/communication/sMSAvailableForSMSBroadcastPost.js\";\nexport * from \"./api/queries/communication/sMSBroadcast.js\";\nexport * from \"./api/queries/communication/sMSBroadcasts.js\";\nexport * from \"./api/queries/communication/sMSPurchases.js\";\nexport * from \"./api/queries/company/activeAdministrators.js\";\nexport * from \"./api/queries/company/administratorsForCompany.js\";\nexport * from \"./api/queries/company/availableAdministrators.js\";\nexport * from \"./api/queries/company/availableAdministratorsForCompany.js\";\nexport * from \"./api/queries/company/companies.js\";\nexport * from \"./api/queries/company/companyAddresses.js\";\nexport * from \"./api/queries/company/companyById.js\";\nexport * from \"./api/queries/company/companyDetailed.js\";\nexport * from \"./api/queries/company/companyDraft.js\";\nexport * from \"./api/queries/company/companyDrafts.js\";\nexport * from \"./api/queries/company/companyOrdinances.js\";\nexport * from \"./api/queries/company/companyTypes.js\";\nexport * from \"./api/queries/company/fractions.js\";\nexport * from \"./api/queries/company/newlyManagedCompanies.js\";\nexport * from \"./api/queries/conversation/companyConversationCategoriesForRequests.js\";\nexport * from \"./api/queries/conversation/conversation.js\";\nexport * from \"./api/queries/conversation/conversationCategories.js\";\nexport * from \"./api/queries/conversation/conversationCategoriesOpen.js\";\nexport * from \"./api/queries/conversation/conversationCount.js\";\nexport * from \"./api/queries/conversation/conversationFolders.js\";\nexport * from \"./api/queries/conversation/conversations.js\";\nexport * from \"./api/queries/conversation/conversationsByParticipant.js\";\nexport * from \"./api/queries/conversation/publicConversation.js\";\nexport * from \"./api/queries/conversation/publicConversationAuth.js\";\nexport * from \"./api/queries/conversation/unreadConversationsCount.js\";\nexport * from \"./api/queries/countries/countries.js\";\nexport * from \"./api/queries/document/documentActions.js\";\nexport * from \"./api/queries/document/documents.js\";\nexport * from \"./api/queries/document/documentsOfTypeForCompany.js\";\nexport * from \"./api/queries/document/getDocumentURL.js\";\nexport * from \"./api/queries/document/searchDocumentsForCompany.js\";\nexport * from \"./api/queries/economy/checkIfAccountingAvailable.js\";\nexport * from \"./api/queries/economy/companiesEconomyStatus.js\";\nexport * from \"./api/queries/economy/economicReports.js\";\nexport * from \"./api/queries/economy/invoiceArchive.js\";\nexport * from \"./api/queries/economy/invoiceForApprovalCount.js\";\nexport * from \"./api/queries/economy/invoiceNotification.js\";\nexport * from \"./api/queries/economy/invoices.js\";\nexport * from \"./api/queries/economy/status.js\";\nexport * from \"./api/queries/economy/supplierInvoiceApprovalCounts.js\";\nexport * from \"./api/queries/economy/unattestedCounts.js\";\nexport * from \"./api/queries/expense/expense.js\";\nexport * from \"./api/queries/expense/expenseList.js\";\nexport * from \"./api/queries/expense/expenseTypes.js\";\nexport * from \"./api/queries/hms/hMSReportRoutines.js\";\nexport * from \"./api/queries/hms/hMSSettings.js\";\nexport * from \"./api/queries/homepage/homepage.js\";\nexport * from \"./api/queries/homepage/homepageFeed.js\";\nexport * from \"./api/queries/homepage/homepageRss.js\";\nexport * from \"./api/queries/homepage/openHomepage.js\";\nexport * from \"./api/queries/homepage/openHomepageDocument.js\";\nexport * from \"./api/queries/homepage/openHomepageFeed.js\";\nexport * from \"./api/queries/homepage/postDocuments.js\";\nexport * from \"./api/queries/homepage/postNotificationgroups.js\";\nexport * from \"./api/queries/homepage/sMSAvailableForPost.js\";\nexport * from \"./api/queries/invoicing/adHocGroupById.js\";\nexport * from \"./api/queries/invoicing/adHocGroups.js\";\nexport * from \"./api/queries/invoicing/checkTriplewinActivated.js\";\nexport * from \"./api/queries/invoicing/creditNotes.js\";\nexport * from \"./api/queries/invoicing/customer.js\";\nexport * from \"./api/queries/invoicing/customerInvoices.js\";\nexport * from \"./api/queries/invoicing/customerMetadata.js\";\nexport * from \"./api/queries/invoicing/customerRecipient.js\";\nexport * from \"./api/queries/invoicing/customers.js\";\nexport * from \"./api/queries/invoicing/expiredInvoices.js\";\nexport * from \"./api/queries/invoicing/historicInvoices.js\";\nexport * from \"./api/queries/invoicing/invoicePlan.js\";\nexport * from \"./api/queries/invoicing/invoicePlanDistributions.js\";\nexport * from \"./api/queries/invoicing/invoicePlanLine.js\";\nexport * from \"./api/queries/invoicing/invoicePlanLines.js\";\nexport * from \"./api/queries/invoicing/invoicePlanTransactions.js\";\nexport * from \"./api/queries/invoicing/invoicePlans.js\";\nexport * from \"./api/queries/invoicing/invoicePlansForSection.js\";\nexport * from \"./api/queries/invoicing/invoiceSettings.js\";\nexport * from \"./api/queries/invoicing/invoicingAdHocLines.js\";\nexport * from \"./api/queries/invoicing/invoicingExpiredByCustomer.js\";\nexport * from \"./api/queries/invoicing/invoicingExpiredTypes.js\";\nexport * from \"./api/queries/invoicing/invoicingInvoiceDetails.js\";\nexport * from \"./api/queries/invoicing/invoicingKeys.js\";\nexport * from \"./api/queries/invoicing/invoicingPlanTypes.js\";\nexport * from \"./api/queries/invoicing/massInvoiceForCompany.js\";\nexport * from \"./api/queries/invoicing/massInvoicePdfPreview.js\";\nexport * from \"./api/queries/invoicing/massInvoicePreview.js\";\nexport * from \"./api/queries/invoicing/overdueInvoices.js\";\nexport * from \"./api/queries/invoicing/planSettings.js\";\nexport * from \"./api/queries/invoicing/preview.js\";\nexport * from \"./api/queries/invoicing/previewPdf.js\";\nexport * from \"./api/queries/invoicing/processedPayments.js\";\nexport * from \"./api/queries/invoicing/queuedInvoicePdf.js\";\nexport * from \"./api/queries/invoicing/queuedInvoices.js\";\nexport * from \"./api/queries/invoicing/recipient.js\";\nexport * from \"./api/queries/invoicing/sectionInvoices.js\";\nexport * from \"./api/queries/invoicing/unprocessedPayments.js\";\nexport * from \"./api/queries/invoicing/upcomingInvoicing.js\";\nexport * from \"./api/queries/issue/issue.js\";\nexport * from \"./api/queries/issue/issues.js\";\nexport * from \"./api/queries/meeting/meetings.js\";\nexport * from \"./api/queries/organization/organization.js\";\nexport * from \"./api/queries/organization/organizationByOrgnr.js\";\nexport * from \"./api/queries/organization/organizations.js\";\nexport * from \"./api/queries/organization/organizationsInCompany.js\";\nexport * from \"./api/queries/organization/otherOrganizations.js\";\nexport * from \"./api/queries/parkingSpaces/parkingSpaces.js\";\nexport * from \"./api/queries/person/otherPersons.js\";\nexport * from \"./api/queries/person/person.js\";\nexport * from \"./api/queries/person/personSearch.js\";\nexport * from \"./api/queries/person/persons.js\";\nexport * from \"./api/queries/residentsAndSections/domain.js\";\nexport * from \"./api/queries/residentsAndSections/existingSectionTagsInCompany.js\";\nexport * from \"./api/queries/residentsAndSections/loansByFraction.js\";\nexport * from \"./api/queries/residentsAndSections/ownershipChanges.js\";\nexport * from \"./api/queries/residentsAndSections/personalID.js\";\nexport * from \"./api/queries/residentsAndSections/residentHistory.js\";\nexport * from \"./api/queries/residentsAndSections/residentOccupancy.js\";\nexport * from \"./api/queries/residentsAndSections/residentSearch.js\";\nexport * from \"./api/queries/residentsAndSections/residentTypes.js\";\nexport * from \"./api/queries/residentsAndSections/residents.js\";\nexport * from \"./api/queries/residentsAndSections/sectionOccupancy.js\";\nexport * from \"./api/queries/residentsAndSections/sectionStatus.js\";\nexport * from \"./api/queries/residentsAndSections/sectionTags.js\";\nexport * from \"./api/queries/residentsAndSections/sectionTenants.js\";\nexport * from \"./api/queries/residentsAndSections/sections.js\";\nexport * from \"./api/queries/residentsAndSections/sectionsSearch.js\";\nexport * from \"./api/queries/residentsAndSections/sectionsTags.js\";\nexport * from \"./api/queries/routines/availableRoutineTypes.js\";\nexport * from \"./api/queries/routines/companyFeatures.js\";\nexport * from \"./api/queries/routines/routine.js\";\nexport * from \"./api/queries/routines/routineGroupDrafts.js\";\nexport * from \"./api/queries/routines/routines.js\";\nexport * from \"./api/queries/scopedContact/scopedContacts.js\";\nexport * from \"./api/queries/settlement/settlement.js\";\nexport * from \"./api/queries/settlement/settlementCustomCost.js\";\nexport * from \"./api/queries/settlement/settlementCustomCosts.js\";\nexport * from \"./api/queries/settlement/settlementInvoices.js\";\nexport * from \"./api/queries/settlement/settlementProviderConfiguration.js\";\nexport * from \"./api/queries/settlement/settlementProviderConfigurations.js\";\nexport * from \"./api/queries/settlement/settlementProviders.js\";\nexport * from \"./api/queries/settlement/settlementTypes.js\";\nexport * from \"./api/queries/settlement/settlements.js\";\nexport * from \"./api/queries/storageRoom/storageRooms.js\";\nexport * from \"./api/queries/supplier/domain.js\";\nexport * from \"./api/queries/supplier/supplierDetails.js\";\nexport * from \"./api/queries/supplier/suppliers.js\";\nexport * from \"./api/queries/supplier/suppliersAndContacts.js\";\nexport * from \"./api/queries/supplier/suppliersLogo.js\";\nexport * from \"./api/queries/task/tasks.js\";\nexport * from \"./api/queries/thirdPartyInformation/singleThirdPartyInformation.js\";\nexport * from \"./api/queries/thirdPartyInformation/skatteetatenDialog.js\";\nexport * from \"./api/queries/thirdPartyInformation/thirdPartyInformation.js\";\nexport * from \"./api/queries/thirdPartyInformation/thirdPartyInformationLetters.js\";\nexport * from \"./api/queries/thirdPartyInformation/totalsForThirdPartyInformation.js\";\nexport * from \"./api/queries/user/authedUser.js\";\nexport * from \"./api/queries/user/user.js\";\nexport * from \"./api/queries/user/userActions.js\";\nexport * from \"./api/queries/user/userConversations.js\";\nexport * from \"./api/queries/user/userDevices.js\";\nexport * from \"./api/queries/user/userImage.js\";\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solibo/solibo-query",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
4
4
  "description": "Framework-agnostic TanStack Query options for Solibo SDK",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -20,7 +20,7 @@
20
20
  "buffer": "^6.0.3",
21
21
  "hash-wasm": "^4.12.0",
22
22
  "mime-types": "^3.0.2",
23
- "@solibo/solibo-sdk": "1.8.3"
23
+ "@solibo/solibo-sdk": "1.8.4"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@eslint/js": "^10.0.1",