@solibo/solibo-query 1.9.16 → 1.9.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/commands/conversation/pushFallbackSettings.d.ts +9 -0
- package/dist/api/commands/conversation/pushFallbackSettings.js +13 -0
- package/dist/api/commands/conversation/pushFallbackSettings.js.map +1 -0
- package/dist/api/commands/loan/updateLoan.d.ts +9 -1
- package/dist/api/commands/loan/updateLoan.js +12 -0
- package/dist/api/commands/loan/updateLoan.js.map +1 -1
- package/dist/api/queries/conversation/conversations.d.ts +1 -0
- package/dist/api/queries/conversation/conversations.js +5 -0
- package/dist/api/queries/conversation/conversations.js.map +1 -1
- package/dist/api/queries/conversation/pushFallbackSettings.d.ts +9 -0
- package/dist/api/queries/conversation/pushFallbackSettings.js +15 -0
- package/dist/api/queries/conversation/pushFallbackSettings.js.map +1 -0
- package/dist/api/queries/residentsAndSections/ownershipChanges.d.ts +2 -1
- package/dist/api/queries/residentsAndSections/ownershipChanges.js +22 -11
- package/dist/api/queries/residentsAndSections/ownershipChanges.js.map +1 -1
- package/dist/api/queries/residentsAndSections/sections.d.ts +1 -1
- package/dist/api/queries/residentsAndSections/sections.js +6 -1
- package/dist/api/queries/residentsAndSections/sections.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Id, SdkInput, SoliboClient, UpdateConversationPushFallbackCadenceCommandProps } from "@solibo/solibo-sdk";
|
|
2
|
+
import type { QueryClient } from "@tanstack/query-core";
|
|
3
|
+
export declare function updateConversationPushFallbackSettingsMutationOptions(sdk: SoliboClient, queryClient: QueryClient): {
|
|
4
|
+
mutationFn: (params: {
|
|
5
|
+
companyId: Id;
|
|
6
|
+
cmd: SdkInput<UpdateConversationPushFallbackCadenceCommandProps>;
|
|
7
|
+
}) => Promise<import("@solibo/solibo-sdk").ConversationPushFallbackCadence>;
|
|
8
|
+
onSuccess: (_: any, params: any) => Promise<void>;
|
|
9
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { conversationKeys } from "../../queries/conversation/conversations.js";
|
|
2
|
+
export function updateConversationPushFallbackSettingsMutationOptions(sdk, queryClient) {
|
|
3
|
+
return {
|
|
4
|
+
mutationFn: (params) => sdk.api.conversations.updateConversationPushFallbackSettings({
|
|
5
|
+
companyId: params.companyId,
|
|
6
|
+
input: params.cmd,
|
|
7
|
+
}),
|
|
8
|
+
onSuccess: (_, params) => queryClient.invalidateQueries({
|
|
9
|
+
queryKey: [conversationKeys.pushFallbackSettings(params.companyId)],
|
|
10
|
+
}),
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=pushFallbackSettings.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pushFallbackSettings.js","sourceRoot":"","sources":["../../../../src/api/commands/conversation/pushFallbackSettings.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,gBAAgB,EAAE,MAAM,6CAA6C,CAAC;AAE/E,MAAM,UAAU,qDAAqD,CACnE,GAAiB,EACjB,WAAwB;IAExB,OAAO;QACL,UAAU,EAAE,CAAC,MAGZ,EAAE,EAAE,CACH,GAAG,CAAC,GAAG,CAAC,aAAa,CAAC,sCAAsC,CAAC;YAC3D,SAAS,EAAE,MAAM,CAAC,SAAS;YAC3B,KAAK,EAAE,MAAM,CAAC,GAAG;SAClB,CAAC;QACJ,SAAS,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CACvB,WAAW,CAAC,iBAAiB,CAAC;YAC5B,QAAQ,EAAE,CAAC,gBAAgB,CAAC,oBAAoB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;SACpE,CAAC;KACL,CAAC;AACJ,CAAC","sourcesContent":["import {\n Id,\n SdkInput,\n SoliboClient,\n UpdateConversationPushFallbackCadenceCommandProps,\n} from \"@solibo/solibo-sdk\";\nimport type { QueryClient } from \"@tanstack/query-core\";\nimport { conversationKeys } from \"../../queries/conversation/conversations.js\";\n\nexport function updateConversationPushFallbackSettingsMutationOptions(\n sdk: SoliboClient,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n cmd: SdkInput<UpdateConversationPushFallbackCadenceCommandProps>;\n }) =>\n sdk.api.conversations.updateConversationPushFallbackSettings({\n companyId: params.companyId,\n input: params.cmd,\n }),\n onSuccess: (_, params) =>\n queryClient.invalidateQueries({\n queryKey: [conversationKeys.pushFallbackSettings(params.companyId)],\n }),\n };\n}\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CloseLoanCommandProps, Id, SdkInput, SoliboClient, UpdateINAgreementCommandProps, UpdateLoanInterestCommandProps } from "@solibo/solibo-sdk";
|
|
1
|
+
import { CloseLoanCommandProps, Id, SdkInput, SoliboClient, UpdateLoanCommandProps, UpdateINAgreementCommandProps, UpdateLoanInterestCommandProps } from "@solibo/solibo-sdk";
|
|
2
2
|
import type { QueryClient } from "@tanstack/query-core";
|
|
3
3
|
export declare function changeToINLoanMutationOptions(sdk: SoliboClient, queryClient: QueryClient): {
|
|
4
4
|
mutationFn: (params: {
|
|
@@ -31,3 +31,11 @@ export declare function updateLoanMutationOptions(sdk: SoliboClient, queryClient
|
|
|
31
31
|
}) => Promise<import("@solibo/solibo-sdk").Loan>;
|
|
32
32
|
onSuccess: (_: any, params: any) => Promise<void>;
|
|
33
33
|
};
|
|
34
|
+
export declare function correctLoanDetailsMutationOptions(sdk: SoliboClient, queryClient: QueryClient): {
|
|
35
|
+
mutationFn: (params: {
|
|
36
|
+
companyId: Id;
|
|
37
|
+
loanId: Id;
|
|
38
|
+
cmd: SdkInput<UpdateLoanCommandProps>;
|
|
39
|
+
}) => Promise<import("@solibo/solibo-sdk").Loan>;
|
|
40
|
+
onSuccess: (_: any, params: any) => Promise<void>;
|
|
41
|
+
};
|
|
@@ -46,4 +46,16 @@ export function updateLoanMutationOptions(sdk, queryClient) {
|
|
|
46
46
|
}),
|
|
47
47
|
};
|
|
48
48
|
}
|
|
49
|
+
export function correctLoanDetailsMutationOptions(sdk, queryClient) {
|
|
50
|
+
return {
|
|
51
|
+
mutationFn: (params) => sdk.api.loan.correctLoanDetails({
|
|
52
|
+
companyId: params.companyId,
|
|
53
|
+
loanId: params.loanId,
|
|
54
|
+
input: params.cmd,
|
|
55
|
+
}),
|
|
56
|
+
onSuccess: (_, params) => queryClient.invalidateQueries({
|
|
57
|
+
queryKey: [loanKeys.list(true, params.companyId)],
|
|
58
|
+
}),
|
|
59
|
+
};
|
|
60
|
+
}
|
|
49
61
|
//# sourceMappingURL=updateLoan.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updateLoan.js","sourceRoot":"","sources":["../../../../src/api/commands/loan/updateLoan.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"updateLoan.js","sourceRoot":"","sources":["../../../../src/api/commands/loan/updateLoan.ts"],"names":[],"mappings":"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","sourcesContent":["import {\n CloseLoanCommandProps,\n Id,\n SdkInput,\n SoliboClient,\n UpdateLoanCommandProps,\n UpdateINAgreementCommandProps,\n UpdateLoanInterestCommandProps,\n} from \"@solibo/solibo-sdk\";\nimport type { QueryClient } from \"@tanstack/query-core\";\nimport { loanKeys } from \"../../queries/administration/loanAgreements.js\";\nexport function changeToINLoanMutationOptions(\n sdk: SoliboClient,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n loanId: Id;\n cmd: SdkInput<UpdateINAgreementCommandProps>;\n }) =>\n sdk.api.loan.updateLoanIN({\n companyId: params.companyId,\n loanId: params.loanId,\n input: params.cmd,\n }),\n onSuccess: (_, params) =>\n queryClient.invalidateQueries({\n queryKey: [loanKeys.list(true, params.companyId)],\n }),\n };\n}\nexport function updateInterestRateMutationOptions(\n sdk: SoliboClient,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n loanId: Id;\n cmd: SdkInput<UpdateLoanInterestCommandProps>;\n }) =>\n sdk.api.loan.updateLoanInterest({\n companyId: params.companyId,\n loanId: params.loanId,\n input: params.cmd,\n }),\n onSuccess: (_, params) =>\n queryClient.invalidateQueries({\n queryKey: [loanKeys.list(true, params.companyId)],\n }),\n };\n}\nexport function closeLoanMutationOptions(\n sdk: SoliboClient,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: { companyId: Id; loanId: Id }) =>\n sdk.api.loan.deleteLoan({\n companyId: params.companyId,\n loanId: params.loanId,\n }),\n onSuccess: (_, params) =>\n queryClient.invalidateQueries({\n queryKey: [loanKeys.list(true, params.companyId)],\n }),\n };\n}\nexport function updateLoanMutationOptions(\n sdk: SoliboClient,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n loanId: Id;\n cmd: SdkInput<CloseLoanCommandProps>;\n }) =>\n sdk.api.loan.updateLoan({\n companyId: params.companyId,\n loanId: params.loanId,\n input: params.cmd,\n }),\n onSuccess: (_, params) =>\n queryClient.invalidateQueries({\n queryKey: [loanKeys.list(true, params.companyId)],\n }),\n };\n}\n\nexport function correctLoanDetailsMutationOptions(\n sdk: SoliboClient,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n companyId: Id;\n loanId: Id;\n cmd: SdkInput<UpdateLoanCommandProps>;\n }) =>\n sdk.api.loan.correctLoanDetails({\n companyId: params.companyId,\n loanId: params.loanId,\n input: params.cmd,\n }),\n onSuccess: (_, params) =>\n queryClient.invalidateQueries({\n queryKey: [loanKeys.list(true, params.companyId)],\n }),\n };\n}\n"]}
|
|
@@ -18,6 +18,7 @@ export declare const conversationKeys: {
|
|
|
18
18
|
publicDocument: (conversationId?: Id | null | undefined, documentId?: Id | null | undefined) => readonly ["conversations", "publicDocument", string | number | null | undefined, string | number | null | undefined];
|
|
19
19
|
publicAuth: (companySlug?: string, conversationId?: Id | null | undefined) => readonly ["conversations", "publicAuth", string | undefined, string | number | null | undefined];
|
|
20
20
|
categoriesOpen: (companySlug?: string) => readonly ["conversations", "categoriesOpen", string | undefined];
|
|
21
|
+
pushFallbackSettings: (companyId?: Id | null | undefined) => readonly ["conversations", "pushFallbackSettings", string | number | null | undefined];
|
|
21
22
|
};
|
|
22
23
|
export declare function conversationsQueryOptions(sdk: SoliboClient, params: {
|
|
23
24
|
companyId?: Id | null | undefined;
|
|
@@ -45,6 +45,11 @@ export const conversationKeys = {
|
|
|
45
45
|
toKeyId(conversationId),
|
|
46
46
|
],
|
|
47
47
|
categoriesOpen: (companySlug) => [...conversationKeys.all, "categoriesOpen", companySlug],
|
|
48
|
+
pushFallbackSettings: (companyId) => [
|
|
49
|
+
...conversationKeys.all,
|
|
50
|
+
"pushFallbackSettings",
|
|
51
|
+
toKeyId(companyId),
|
|
52
|
+
],
|
|
48
53
|
};
|
|
49
54
|
export function conversationsQueryOptions(sdk, params) {
|
|
50
55
|
return {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversations.js","sourceRoot":"","sources":["../../../../src/api/queries/conversation/conversations.ts"],"names":[],"mappings":"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","sourcesContent":["import { Id, ParticipantType, SoliboClient } from \"@solibo/solibo-sdk\";\nimport { toKeyId } from \"../../../utils/kt-bridge.js\";\nimport { nextPageParam, prevPageParam } from \"../../../utils/pageUtils.js\";\nfunction emptyAsUndefined<T extends string>(\n value: T | null | undefined,\n): T | undefined {\n return value ? value : undefined;\n}\nexport const conversationKeys = {\n all: [\"conversations\"] as const,\n list: (companyId?: Id | null | undefined) =>\n [...conversationKeys.all, \"list\", toKeyId(companyId)] as const,\n global: () => [...conversationKeys.all, \"global\"] as const,\n detail: (conversationId?: Id | null | undefined) =>\n [...conversationKeys.all, \"detail\", toKeyId(conversationId)] as const,\n categories: (companyId?: Id | null | undefined) =>\n [...conversationKeys.all, \"categories\", toKeyId(companyId)] as const,\n categoriesForRequests: (companyId?: Id | null | undefined) =>\n [\n ...conversationKeys.all,\n \"categoriesForRequests\",\n toKeyId(companyId),\n ] as const,\n count: () => [...conversationKeys.all, \"count\"] as const,\n countByCompany: () => [...conversationKeys.all, \"countByCompany\"] as const,\n countInCompany: (companyId?: Id | null | undefined) =>\n [...conversationKeys.all, \"countInCompany\", toKeyId(companyId)] as const,\n folders: (companyId?: Id | null | undefined) =>\n [...conversationKeys.all, \"folders\", toKeyId(companyId)] as const,\n folder: (\n companyId?: Id | null | undefined,\n folderId?: Id | null | undefined,\n ) =>\n [\n ...conversationKeys.all,\n \"folder\",\n toKeyId(companyId),\n toKeyId(folderId),\n ] as const,\n byParticipant: (\n participantId?: Id | null | undefined,\n participantType?: ParticipantType,\n ) =>\n [\n ...conversationKeys.all,\n \"byParticipant\",\n toKeyId(participantId),\n participantType,\n ] as const,\n unreadCount: (companyId?: Id | null | undefined) =>\n [...conversationKeys.all, \"unreadCount\", toKeyId(companyId)] as const,\n public: (conversationId?: Id | null | undefined) =>\n [...conversationKeys.all, \"public\", toKeyId(conversationId)] as const,\n publicDocument: (\n conversationId?: Id | null | undefined,\n documentId?: Id | null | undefined,\n ) =>\n [\n ...conversationKeys.all,\n \"publicDocument\",\n toKeyId(conversationId),\n toKeyId(documentId),\n ] as const,\n publicAuth: (companySlug?: string, conversationId?: Id | null | undefined) =>\n [\n ...conversationKeys.all,\n \"publicAuth\",\n companySlug,\n toKeyId(conversationId),\n ] as const,\n categoriesOpen: (companySlug?: string) =>\n [...conversationKeys.all, \"categoriesOpen\", companySlug] as const,\n};\nexport function conversationsQueryOptions(\n sdk: SoliboClient,\n params: {\n companyId?: Id | null | undefined;\n fields?: string;\n pageToken?: string;\n count?: number;\n autoPaginate?: boolean;\n searchString?: string | null | undefined;\n category?: number | null | undefined;\n status?: string | null | undefined;\n folder?: Id | null | undefined;\n onlyRoot?: boolean | null | undefined;\n byParticipant?: number | null | undefined;\n byParticipantType?: string | null | undefined;\n assignedToUserId?: Id | null | undefined;\n createdSince?: number | null | undefined;\n flaggedByCurrentUser?: boolean | null | undefined;\n readByCurrentUser?: boolean | null | undefined;\n },\n) {\n return {\n initialPageParam: params.pageToken,\n queryKey: [\n conversationKeys.list(params.companyId),\n params.fields,\n params.pageToken,\n params.count,\n params.autoPaginate,\n params.searchString,\n params.category,\n params.folder,\n params.onlyRoot,\n params.status,\n params.byParticipant,\n params.byParticipantType,\n params.assignedToUserId,\n params.createdSince,\n params.flaggedByCurrentUser,\n params.readByCurrentUser,\n ],\n queryFn: ({ pageParam }: { pageParam: any }) =>\n sdk.api.conversations.indexConversation({\n companyId: params.companyId!,\n search: params.searchString,\n category: params.category ? params.category : undefined,\n folder: params.folder ? params.folder : undefined,\n onlyRoot: params.onlyRoot,\n status: emptyAsUndefined(params.status) as any,\n byParticipant: params.byParticipant ? params.byParticipant : undefined,\n byParticipantType: emptyAsUndefined(params.byParticipantType) as any,\n assignedToUserId: params.assignedToUserId\n ? params.assignedToUserId\n : undefined,\n createdSince:\n params.createdSince != null ? params.createdSince : undefined,\n flaggedByCurrentUser: params.flaggedByCurrentUser,\n readByCurrentUser: params.readByCurrentUser,\n fields: params.fields,\n pageToken: pageParam,\n autoPaginate: params.autoPaginate,\n count: params.count,\n }),\n enabled: !!params.companyId,\n getNextPageParam: nextPageParam,\n getPreviousPageParam: prevPageParam,\n };\n}\nexport function indexConversationsQueryOptions(\n sdk: SoliboClient,\n params: {\n search?: string | null | undefined;\n companyIds?: Id[] | null | undefined;\n categoryIds?: Id[] | null | undefined;\n status?: string | null | undefined;\n byParticipants?: Id[] | null | undefined;\n byParticipantTypes?: string[] | null | undefined;\n folderId?: Id | null | undefined;\n assignedToUserId?: Id | null | undefined;\n createdSince?: number | null | undefined;\n updatedSince?: number | null | undefined;\n flaggedByCurrentUser?: boolean | null | undefined;\n readByCurrentUser?: boolean | 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 conversationKeys.global(),\n params.search,\n params.companyIds,\n params.categoryIds,\n params.status,\n params.byParticipants,\n params.byParticipantTypes,\n params.folderId,\n params.assignedToUserId,\n params.createdSince,\n params.updatedSince,\n params.flaggedByCurrentUser,\n params.readByCurrentUser,\n params.fields,\n params.pageToken,\n params.autoPaginate,\n params.count,\n ],\n queryFn: ({ pageParam }: { pageParam: any }) =>\n sdk.api.conversations.indexConversations({\n search: params.search,\n companyIds: params.companyIds\n ? params.companyIds.map((id) => id)\n : undefined,\n categoryIds: params.categoryIds\n ? params.categoryIds.map((id) => id)\n : undefined,\n status: emptyAsUndefined(params.status) as any,\n byParticipants: params.byParticipants\n ? params.byParticipants.map((id) => id)\n : undefined,\n byParticipantTypes: params.byParticipantTypes\n ? (params.byParticipantTypes as any[])\n : undefined,\n folderId: params.folderId ? params.folderId : undefined,\n assignedToUserId: params.assignedToUserId\n ? params.assignedToUserId\n : undefined,\n createdSince:\n params.createdSince != null ? params.createdSince : undefined,\n updatedSince:\n params.updatedSince != null ? params.updatedSince : undefined,\n flaggedByCurrentUser: params.flaggedByCurrentUser,\n readByCurrentUser: params.readByCurrentUser,\n fields: params.fields,\n pageToken: pageParam,\n autoPaginate: params.autoPaginate,\n count: params.count,\n }),\n getNextPageParam: nextPageParam,\n getPreviousPageParam: prevPageParam,\n };\n}\n"]}
|
|
1
|
+
{"version":3,"file":"conversations.js","sourceRoot":"","sources":["../../../../src/api/queries/conversation/conversations.ts"],"names":[],"mappings":"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","sourcesContent":["import { Id, ParticipantType, SoliboClient } from \"@solibo/solibo-sdk\";\nimport { toKeyId } from \"../../../utils/kt-bridge.js\";\nimport { nextPageParam, prevPageParam } from \"../../../utils/pageUtils.js\";\nfunction emptyAsUndefined<T extends string>(\n value: T | null | undefined,\n): T | undefined {\n return value ? value : undefined;\n}\nexport const conversationKeys = {\n all: [\"conversations\"] as const,\n list: (companyId?: Id | null | undefined) =>\n [...conversationKeys.all, \"list\", toKeyId(companyId)] as const,\n global: () => [...conversationKeys.all, \"global\"] as const,\n detail: (conversationId?: Id | null | undefined) =>\n [...conversationKeys.all, \"detail\", toKeyId(conversationId)] as const,\n categories: (companyId?: Id | null | undefined) =>\n [...conversationKeys.all, \"categories\", toKeyId(companyId)] as const,\n categoriesForRequests: (companyId?: Id | null | undefined) =>\n [\n ...conversationKeys.all,\n \"categoriesForRequests\",\n toKeyId(companyId),\n ] as const,\n count: () => [...conversationKeys.all, \"count\"] as const,\n countByCompany: () => [...conversationKeys.all, \"countByCompany\"] as const,\n countInCompany: (companyId?: Id | null | undefined) =>\n [...conversationKeys.all, \"countInCompany\", toKeyId(companyId)] as const,\n folders: (companyId?: Id | null | undefined) =>\n [...conversationKeys.all, \"folders\", toKeyId(companyId)] as const,\n folder: (\n companyId?: Id | null | undefined,\n folderId?: Id | null | undefined,\n ) =>\n [\n ...conversationKeys.all,\n \"folder\",\n toKeyId(companyId),\n toKeyId(folderId),\n ] as const,\n byParticipant: (\n participantId?: Id | null | undefined,\n participantType?: ParticipantType,\n ) =>\n [\n ...conversationKeys.all,\n \"byParticipant\",\n toKeyId(participantId),\n participantType,\n ] as const,\n unreadCount: (companyId?: Id | null | undefined) =>\n [...conversationKeys.all, \"unreadCount\", toKeyId(companyId)] as const,\n public: (conversationId?: Id | null | undefined) =>\n [...conversationKeys.all, \"public\", toKeyId(conversationId)] as const,\n publicDocument: (\n conversationId?: Id | null | undefined,\n documentId?: Id | null | undefined,\n ) =>\n [\n ...conversationKeys.all,\n \"publicDocument\",\n toKeyId(conversationId),\n toKeyId(documentId),\n ] as const,\n publicAuth: (companySlug?: string, conversationId?: Id | null | undefined) =>\n [\n ...conversationKeys.all,\n \"publicAuth\",\n companySlug,\n toKeyId(conversationId),\n ] as const,\n categoriesOpen: (companySlug?: string) =>\n [...conversationKeys.all, \"categoriesOpen\", companySlug] as const,\n pushFallbackSettings: (companyId?: Id | null | undefined) =>\n [\n ...conversationKeys.all,\n \"pushFallbackSettings\",\n toKeyId(companyId),\n ] as const,\n};\nexport function conversationsQueryOptions(\n sdk: SoliboClient,\n params: {\n companyId?: Id | null | undefined;\n fields?: string;\n pageToken?: string;\n count?: number;\n autoPaginate?: boolean;\n searchString?: string | null | undefined;\n category?: number | null | undefined;\n status?: string | null | undefined;\n folder?: Id | null | undefined;\n onlyRoot?: boolean | null | undefined;\n byParticipant?: number | null | undefined;\n byParticipantType?: string | null | undefined;\n assignedToUserId?: Id | null | undefined;\n createdSince?: number | null | undefined;\n flaggedByCurrentUser?: boolean | null | undefined;\n readByCurrentUser?: boolean | null | undefined;\n },\n) {\n return {\n initialPageParam: params.pageToken,\n queryKey: [\n conversationKeys.list(params.companyId),\n params.fields,\n params.pageToken,\n params.count,\n params.autoPaginate,\n params.searchString,\n params.category,\n params.folder,\n params.onlyRoot,\n params.status,\n params.byParticipant,\n params.byParticipantType,\n params.assignedToUserId,\n params.createdSince,\n params.flaggedByCurrentUser,\n params.readByCurrentUser,\n ],\n queryFn: ({ pageParam }: { pageParam: any }) =>\n sdk.api.conversations.indexConversation({\n companyId: params.companyId!,\n search: params.searchString,\n category: params.category ? params.category : undefined,\n folder: params.folder ? params.folder : undefined,\n onlyRoot: params.onlyRoot,\n status: emptyAsUndefined(params.status) as any,\n byParticipant: params.byParticipant ? params.byParticipant : undefined,\n byParticipantType: emptyAsUndefined(params.byParticipantType) as any,\n assignedToUserId: params.assignedToUserId\n ? params.assignedToUserId\n : undefined,\n createdSince:\n params.createdSince != null ? params.createdSince : undefined,\n flaggedByCurrentUser: params.flaggedByCurrentUser,\n readByCurrentUser: params.readByCurrentUser,\n fields: params.fields,\n pageToken: pageParam,\n autoPaginate: params.autoPaginate,\n count: params.count,\n }),\n enabled: !!params.companyId,\n getNextPageParam: nextPageParam,\n getPreviousPageParam: prevPageParam,\n };\n}\nexport function indexConversationsQueryOptions(\n sdk: SoliboClient,\n params: {\n search?: string | null | undefined;\n companyIds?: Id[] | null | undefined;\n categoryIds?: Id[] | null | undefined;\n status?: string | null | undefined;\n byParticipants?: Id[] | null | undefined;\n byParticipantTypes?: string[] | null | undefined;\n folderId?: Id | null | undefined;\n assignedToUserId?: Id | null | undefined;\n createdSince?: number | null | undefined;\n updatedSince?: number | null | undefined;\n flaggedByCurrentUser?: boolean | null | undefined;\n readByCurrentUser?: boolean | 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 conversationKeys.global(),\n params.search,\n params.companyIds,\n params.categoryIds,\n params.status,\n params.byParticipants,\n params.byParticipantTypes,\n params.folderId,\n params.assignedToUserId,\n params.createdSince,\n params.updatedSince,\n params.flaggedByCurrentUser,\n params.readByCurrentUser,\n params.fields,\n params.pageToken,\n params.autoPaginate,\n params.count,\n ],\n queryFn: ({ pageParam }: { pageParam: any }) =>\n sdk.api.conversations.indexConversations({\n search: params.search,\n companyIds: params.companyIds\n ? params.companyIds.map((id) => id)\n : undefined,\n categoryIds: params.categoryIds\n ? params.categoryIds.map((id) => id)\n : undefined,\n status: emptyAsUndefined(params.status) as any,\n byParticipants: params.byParticipants\n ? params.byParticipants.map((id) => id)\n : undefined,\n byParticipantTypes: params.byParticipantTypes\n ? (params.byParticipantTypes as any[])\n : undefined,\n folderId: params.folderId ? params.folderId : undefined,\n assignedToUserId: params.assignedToUserId\n ? params.assignedToUserId\n : undefined,\n createdSince:\n params.createdSince != null ? params.createdSince : undefined,\n updatedSince:\n params.updatedSince != null ? params.updatedSince : undefined,\n flaggedByCurrentUser: params.flaggedByCurrentUser,\n readByCurrentUser: params.readByCurrentUser,\n fields: params.fields,\n pageToken: pageParam,\n autoPaginate: params.autoPaginate,\n count: params.count,\n }),\n getNextPageParam: nextPageParam,\n getPreviousPageParam: prevPageParam,\n };\n}\n"]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Id, SoliboClient } from "@solibo/solibo-sdk";
|
|
2
|
+
export declare function conversationPushFallbackSettingsQueryOptions(sdk: SoliboClient, params: {
|
|
3
|
+
companyId?: Id | null | undefined;
|
|
4
|
+
fields?: string;
|
|
5
|
+
}): {
|
|
6
|
+
queryKey: (string | readonly ["conversations", "pushFallbackSettings", string | number | null | undefined] | undefined)[];
|
|
7
|
+
queryFn: () => Promise<import("@solibo/solibo-sdk").ConversationPushFallbackCadence>;
|
|
8
|
+
enabled: boolean;
|
|
9
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { conversationKeys } from "./conversations.js";
|
|
2
|
+
export function conversationPushFallbackSettingsQueryOptions(sdk, params) {
|
|
3
|
+
return {
|
|
4
|
+
queryKey: [
|
|
5
|
+
conversationKeys.pushFallbackSettings(params.companyId),
|
|
6
|
+
params.fields,
|
|
7
|
+
],
|
|
8
|
+
queryFn: () => sdk.api.conversations.showConversationPushFallbackSettings({
|
|
9
|
+
companyId: params.companyId,
|
|
10
|
+
fields: params.fields,
|
|
11
|
+
}),
|
|
12
|
+
enabled: !!params.companyId,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=pushFallbackSettings.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pushFallbackSettings.js","sourceRoot":"","sources":["../../../../src/api/queries/conversation/pushFallbackSettings.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEtD,MAAM,UAAU,4CAA4C,CAC1D,GAAiB,EACjB,MAA8D;IAE9D,OAAO;QACL,QAAQ,EAAE;YACR,gBAAgB,CAAC,oBAAoB,CAAC,MAAM,CAAC,SAAS,CAAC;YACvD,MAAM,CAAC,MAAM;SACd;QACD,OAAO,EAAE,GAAG,EAAE,CACZ,GAAG,CAAC,GAAG,CAAC,aAAa,CAAC,oCAAoC,CAAC;YACzD,SAAS,EAAE,MAAM,CAAC,SAAU;YAC5B,MAAM,EAAE,MAAM,CAAC,MAAM;SACtB,CAAC;QACJ,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC,SAAS;KAC5B,CAAC;AACJ,CAAC","sourcesContent":["import { Id, SoliboClient } from \"@solibo/solibo-sdk\";\nimport { conversationKeys } from \"./conversations.js\";\n\nexport function conversationPushFallbackSettingsQueryOptions(\n sdk: SoliboClient,\n params: { companyId?: Id | null | undefined; fields?: string },\n) {\n return {\n queryKey: [\n conversationKeys.pushFallbackSettings(params.companyId),\n params.fields,\n ],\n queryFn: () =>\n sdk.api.conversations.showConversationPushFallbackSettings({\n companyId: params.companyId!,\n fields: params.fields,\n }),\n enabled: !!params.companyId,\n };\n}\n"]}
|
|
@@ -2,6 +2,7 @@ import { Id, SoliboClient } from "@solibo/solibo-sdk";
|
|
|
2
2
|
import { nextPageParam, prevPageParam } from "../../../utils/pageUtils.js";
|
|
3
3
|
export declare function ownershipChangesQueryOptions(sdk: SoliboClient, params?: {
|
|
4
4
|
companyId?: Id | null | undefined;
|
|
5
|
+
sectionId?: Id | null | undefined;
|
|
5
6
|
changeAtFrom?: number | null | undefined;
|
|
6
7
|
changeAtTo?: number | null | undefined;
|
|
7
8
|
fields?: string;
|
|
@@ -10,7 +11,7 @@ export declare function ownershipChangesQueryOptions(sdk: SoliboClient, params?:
|
|
|
10
11
|
count?: number;
|
|
11
12
|
}): {
|
|
12
13
|
initialPageParam: string | undefined;
|
|
13
|
-
queryKey: (string | number | readonly ["sections", "ownershipChanges", string | number | null | undefined] | null | undefined)[];
|
|
14
|
+
queryKey: (string | number | readonly ["sections", "ownershipChanges", string | number | null | undefined, string | number | null | undefined] | null | undefined)[];
|
|
14
15
|
queryFn: ({ pageParam }: {
|
|
15
16
|
pageParam: any;
|
|
16
17
|
}) => Promise<import("@solibo/solibo-sdk").PagedListOwnershipChange>;
|
|
@@ -4,15 +4,16 @@ export function ownershipChangesQueryOptions(sdk, params = {}) {
|
|
|
4
4
|
return {
|
|
5
5
|
initialPageParam: params.pageToken,
|
|
6
6
|
queryKey: [
|
|
7
|
-
sectionKeys.ownershipChanges(params.companyId),
|
|
7
|
+
sectionKeys.ownershipChanges(params.companyId, params.sectionId),
|
|
8
8
|
params.changeAtFrom,
|
|
9
9
|
params.changeAtTo,
|
|
10
10
|
params.fields,
|
|
11
11
|
params.count,
|
|
12
12
|
],
|
|
13
|
-
queryFn: ({ pageParam }) => params.companyId
|
|
14
|
-
? sdk.api.sections.
|
|
13
|
+
queryFn: ({ pageParam }) => params.companyId && params.sectionId
|
|
14
|
+
? sdk.api.sections.indexCompanyOwnershipChangesBySection({
|
|
15
15
|
companyId: params.companyId,
|
|
16
|
+
sectionId: params.sectionId,
|
|
16
17
|
changeAtFrom: params.changeAtFrom != null ? params.changeAtFrom : undefined,
|
|
17
18
|
changeAtTo: params.changeAtTo != null ? params.changeAtTo : undefined,
|
|
18
19
|
fields: params.fields,
|
|
@@ -20,14 +21,24 @@ export function ownershipChangesQueryOptions(sdk, params = {}) {
|
|
|
20
21
|
autoPaginate: params.autoPaginate,
|
|
21
22
|
count: params.count,
|
|
22
23
|
})
|
|
23
|
-
:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
24
|
+
: params.companyId
|
|
25
|
+
? sdk.api.sections.indexCompanyOwnershipChanges({
|
|
26
|
+
companyId: params.companyId,
|
|
27
|
+
changeAtFrom: params.changeAtFrom != null ? params.changeAtFrom : undefined,
|
|
28
|
+
changeAtTo: params.changeAtTo != null ? params.changeAtTo : undefined,
|
|
29
|
+
fields: params.fields,
|
|
30
|
+
pageToken: pageParam,
|
|
31
|
+
autoPaginate: params.autoPaginate,
|
|
32
|
+
count: params.count,
|
|
33
|
+
})
|
|
34
|
+
: sdk.api.sections.indexOwnershipChanges({
|
|
35
|
+
changeAtFrom: params.changeAtFrom != null ? params.changeAtFrom : undefined,
|
|
36
|
+
changeAtTo: params.changeAtTo != null ? params.changeAtTo : undefined,
|
|
37
|
+
fields: params.fields,
|
|
38
|
+
pageToken: pageParam,
|
|
39
|
+
autoPaginate: params.autoPaginate,
|
|
40
|
+
count: params.count,
|
|
41
|
+
}),
|
|
31
42
|
getNextPageParam: nextPageParam,
|
|
32
43
|
getPreviousPageParam: prevPageParam,
|
|
33
44
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ownershipChanges.js","sourceRoot":"","sources":["../../../../src/api/queries/residentsAndSections/ownershipChanges.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC3E,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,MAAM,UAAU,4BAA4B,CAC1C,GAAiB,EACjB,
|
|
1
|
+
{"version":3,"file":"ownershipChanges.js","sourceRoot":"","sources":["../../../../src/api/queries/residentsAndSections/ownershipChanges.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC3E,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,MAAM,UAAU,4BAA4B,CAC1C,GAAiB,EACjB,SASI,EAAE;IAEN,OAAO;QACL,gBAAgB,EAAE,MAAM,CAAC,SAAS;QAClC,QAAQ,EAAE;YACR,WAAW,CAAC,gBAAgB,CAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,SAAS,CAAC;YAChE,MAAM,CAAC,YAAY;YACnB,MAAM,CAAC,UAAU;YACjB,MAAM,CAAC,MAAM;YACb,MAAM,CAAC,KAAK;SACb;QACD,OAAO,EAAE,CAAC,EAAE,SAAS,EAAsB,EAAE,EAAE,CAC7C,MAAM,CAAC,SAAS,IAAI,MAAM,CAAC,SAAS;YAClC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,QAAQ,CAAC,qCAAqC,CAAC;gBACrD,SAAS,EAAE,MAAM,CAAC,SAAS;gBAC3B,SAAS,EAAE,MAAM,CAAC,SAAS;gBAC3B,YAAY,EACV,MAAM,CAAC,YAAY,IAAI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS;gBAC/D,UAAU,EACR,MAAM,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS;gBAC3D,MAAM,EAAE,MAAM,CAAC,MAAM;gBACrB,SAAS,EAAE,SAAS;gBACpB,YAAY,EAAE,MAAM,CAAC,YAAY;gBACjC,KAAK,EAAE,MAAM,CAAC,KAAK;aACpB,CAAC;YACJ,CAAC,CAAC,MAAM,CAAC,SAAS;gBAChB,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,QAAQ,CAAC,4BAA4B,CAAC;oBAC5C,SAAS,EAAE,MAAM,CAAC,SAAS;oBAC3B,YAAY,EACV,MAAM,CAAC,YAAY,IAAI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS;oBAC/D,UAAU,EACR,MAAM,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS;oBAC3D,MAAM,EAAE,MAAM,CAAC,MAAM;oBACrB,SAAS,EAAE,SAAS;oBACpB,YAAY,EAAE,MAAM,CAAC,YAAY;oBACjC,KAAK,EAAE,MAAM,CAAC,KAAK;iBACpB,CAAC;gBACJ,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,QAAQ,CAAC,qBAAqB,CAAC;oBACrC,YAAY,EACV,MAAM,CAAC,YAAY,IAAI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS;oBAC/D,UAAU,EACR,MAAM,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS;oBAC3D,MAAM,EAAE,MAAM,CAAC,MAAM;oBACrB,SAAS,EAAE,SAAS;oBACpB,YAAY,EAAE,MAAM,CAAC,YAAY;oBACjC,KAAK,EAAE,MAAM,CAAC,KAAK;iBACpB,CAAC;QACV,gBAAgB,EAAE,aAAa;QAC/B,oBAAoB,EAAE,aAAa;KACpC,CAAC;AACJ,CAAC","sourcesContent":["import { Id, SoliboClient } from \"@solibo/solibo-sdk\";\nimport { nextPageParam, prevPageParam } from \"../../../utils/pageUtils.js\";\nimport { sectionKeys } from \"./sections.js\";\nexport function ownershipChangesQueryOptions(\n sdk: SoliboClient,\n params: {\n companyId?: Id | null | undefined;\n sectionId?: Id | null | undefined;\n changeAtFrom?: number | null | undefined;\n changeAtTo?: 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 sectionKeys.ownershipChanges(params.companyId, params.sectionId),\n params.changeAtFrom,\n params.changeAtTo,\n params.fields,\n params.count,\n ],\n queryFn: ({ pageParam }: { pageParam: any }) =>\n params.companyId && params.sectionId\n ? sdk.api.sections.indexCompanyOwnershipChangesBySection({\n companyId: params.companyId,\n sectionId: params.sectionId,\n changeAtFrom:\n params.changeAtFrom != null ? params.changeAtFrom : undefined,\n changeAtTo:\n params.changeAtTo != null ? params.changeAtTo : undefined,\n fields: params.fields,\n pageToken: pageParam,\n autoPaginate: params.autoPaginate,\n count: params.count,\n })\n : params.companyId\n ? sdk.api.sections.indexCompanyOwnershipChanges({\n companyId: params.companyId,\n changeAtFrom:\n params.changeAtFrom != null ? params.changeAtFrom : undefined,\n changeAtTo:\n params.changeAtTo != null ? params.changeAtTo : undefined,\n fields: params.fields,\n pageToken: pageParam,\n autoPaginate: params.autoPaginate,\n count: params.count,\n })\n : sdk.api.sections.indexOwnershipChanges({\n changeAtFrom:\n params.changeAtFrom != null ? params.changeAtFrom : undefined,\n changeAtTo:\n params.changeAtTo != null ? params.changeAtTo : undefined,\n fields: params.fields,\n pageToken: pageParam,\n autoPaginate: params.autoPaginate,\n count: params.count,\n }),\n getNextPageParam: nextPageParam,\n getPreviousPageParam: prevPageParam,\n };\n}\n"]}
|
|
@@ -9,7 +9,7 @@ export declare const sectionKeys: {
|
|
|
9
9
|
tags: (companyId?: Id | null | undefined, sectionId?: Id | null | undefined) => readonly ["sections", "tags", string | number | null | undefined, string | number | null | undefined];
|
|
10
10
|
tagsBySection: (companyId?: Id | null | undefined) => readonly ["sections", "tagsBySection", string | number | null | undefined];
|
|
11
11
|
tenants: (companyId?: Id | null | undefined, sectionId?: Id | null | undefined) => readonly ["sections", "tenants", string | number | null | undefined, string | number | null | undefined];
|
|
12
|
-
ownershipChanges: (companyId?: Id | null | undefined) => readonly ["sections", "ownershipChanges", string | number | null | undefined];
|
|
12
|
+
ownershipChanges: (companyId?: Id | null | undefined, sectionId?: Id | null | undefined) => readonly ["sections", "ownershipChanges", string | number | null | undefined, string | number | null | undefined];
|
|
13
13
|
loansByFraction: (companyId?: Id | null | undefined, sectionId?: Id | null | undefined, at?: Id | null | undefined) => readonly ["sections", "loansByFraction", string | number | null | undefined, string | number | null | undefined, string | number | null | undefined];
|
|
14
14
|
existingTags: (companyId?: Id | null | undefined) => readonly ["sections", "existingTags", string | number | null | undefined];
|
|
15
15
|
search: (query?: string) => readonly ["sections", "search", {
|
|
@@ -30,7 +30,12 @@ export const sectionKeys = {
|
|
|
30
30
|
toKeyId(companyId),
|
|
31
31
|
toKeyId(sectionId),
|
|
32
32
|
],
|
|
33
|
-
ownershipChanges: (companyId) => [
|
|
33
|
+
ownershipChanges: (companyId, sectionId) => [
|
|
34
|
+
...sectionKeys.all,
|
|
35
|
+
"ownershipChanges",
|
|
36
|
+
toKeyId(companyId),
|
|
37
|
+
toKeyId(sectionId),
|
|
38
|
+
],
|
|
34
39
|
loansByFraction: (companyId, sectionId, at) => [
|
|
35
40
|
...sectionKeys.all,
|
|
36
41
|
"loansByFraction",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sections.js","sourceRoot":"","sources":["../../../../src/api/queries/residentsAndSections/sections.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC3E,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,GAAG,EAAE,CAAC,UAAU,CAAU;IAC1B,IAAI,EAAE,CAAC,SAAiC,EAAE,EAAE,CAC1C,CAAC,GAAG,WAAW,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,SAAS,CAAC,CAAU;IAC3D,SAAS,EAAE,CACT,SAAiC,EACjC,SAAiC,EACjC,EAAE,CACF;QACE,GAAG,WAAW,CAAC,GAAG;QAClB,WAAW;QACX,OAAO,CAAC,SAAS,CAAC;QAClB,OAAO,CAAC,SAAS,CAAC;KACV;IACZ,MAAM,EAAE,CACN,SAAiC,EACjC,SAAiC,EACjC,EAAE,CACF;QACE,GAAG,WAAW,CAAC,GAAG;QAClB,QAAQ;QACR,OAAO,CAAC,SAAS,CAAC;QAClB,OAAO,CAAC,SAAS,CAAC;KACV;IACZ,QAAQ,EAAE,CAAC,SAAiC,EAAE,EAAE,CAC9C,CAAC,GAAG,WAAW,CAAC,GAAG,EAAE,UAAU,EAAE,OAAO,CAAC,SAAS,CAAC,CAAU;IAC/D,IAAI,EAAE,CACJ,SAAiC,EACjC,SAAiC,EACjC,EAAE,CACF;QACE,GAAG,WAAW,CAAC,GAAG;QAClB,MAAM;QACN,OAAO,CAAC,SAAS,CAAC;QAClB,OAAO,CAAC,SAAS,CAAC;KACV;IACZ,aAAa,EAAE,CAAC,SAAiC,EAAE,EAAE,CACnD,CAAC,GAAG,WAAW,CAAC,GAAG,EAAE,eAAe,EAAE,OAAO,CAAC,SAAS,CAAC,CAAU;IACpE,OAAO,EAAE,CACP,SAAiC,EACjC,SAAiC,EACjC,EAAE,CACF;QACE,GAAG,WAAW,CAAC,GAAG;QAClB,SAAS;QACT,OAAO,CAAC,SAAS,CAAC;QAClB,OAAO,CAAC,SAAS,CAAC;KACV;IACZ,gBAAgB,EAAE,
|
|
1
|
+
{"version":3,"file":"sections.js","sourceRoot":"","sources":["../../../../src/api/queries/residentsAndSections/sections.ts"],"names":[],"mappings":"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","sourcesContent":["import { Id, SectionState, SoliboClient } from \"@solibo/solibo-sdk\";\nimport { minutes } from \"../../../utils/dateTime.js\";\nimport { toKeyId } from \"../../../utils/kt-bridge.js\";\nimport { nextPageParam, prevPageParam } from \"../../../utils/pageUtils.js\";\nexport const sectionKeys = {\n all: [\"sections\"] as const,\n list: (companyId?: Id | null | undefined) =>\n [...sectionKeys.all, \"list\", toKeyId(companyId)] as const,\n occupancy: (\n companyId?: Id | null | undefined,\n sectionId?: Id | null | undefined,\n ) =>\n [\n ...sectionKeys.all,\n \"occupancy\",\n toKeyId(companyId),\n toKeyId(sectionId),\n ] as const,\n status: (\n companyId?: Id | null | undefined,\n sectionId?: Id | null | undefined,\n ) =>\n [\n ...sectionKeys.all,\n \"status\",\n toKeyId(companyId),\n toKeyId(sectionId),\n ] as const,\n statuses: (companyId?: Id | null | undefined) =>\n [...sectionKeys.all, \"statuses\", toKeyId(companyId)] as const,\n tags: (\n companyId?: Id | null | undefined,\n sectionId?: Id | null | undefined,\n ) =>\n [\n ...sectionKeys.all,\n \"tags\",\n toKeyId(companyId),\n toKeyId(sectionId),\n ] as const,\n tagsBySection: (companyId?: Id | null | undefined) =>\n [...sectionKeys.all, \"tagsBySection\", toKeyId(companyId)] as const,\n tenants: (\n companyId?: Id | null | undefined,\n sectionId?: Id | null | undefined,\n ) =>\n [\n ...sectionKeys.all,\n \"tenants\",\n toKeyId(companyId),\n toKeyId(sectionId),\n ] as const,\n ownershipChanges: (\n companyId?: Id | null | undefined,\n sectionId?: Id | null | undefined,\n ) =>\n [\n ...sectionKeys.all,\n \"ownershipChanges\",\n toKeyId(companyId),\n toKeyId(sectionId),\n ] as const,\n loansByFraction: (\n companyId?: Id | null | undefined,\n sectionId?: Id | null | undefined,\n at?: Id | null | undefined,\n ) =>\n [\n ...sectionKeys.all,\n \"loansByFraction\",\n toKeyId(companyId),\n toKeyId(sectionId),\n toKeyId(at),\n ] as const,\n existingTags: (companyId?: Id | null | undefined) =>\n [...sectionKeys.all, \"existingTags\", toKeyId(companyId)] as const,\n search: (query?: string) =>\n [...sectionKeys.all, \"search\", { query }] as const,\n};\nexport function sectionsQueryOptions(\n sdk: SoliboClient,\n params: {\n companyId?: Id | null | undefined;\n state?: SectionState | null;\n query?: string;\n fields?: string;\n pageToken?: string;\n count?: number;\n autoPaginate?: boolean | null;\n },\n) {\n return {\n initialPageParam: params.pageToken,\n queryKey: [\n sectionKeys.list(params.companyId),\n params.state,\n params.query,\n params.fields,\n params.count,\n ],\n queryFn: ({ pageParam }: { pageParam: any }) =>\n sdk.api.sections.indexSection({\n companyId: params.companyId!,\n status: params.state,\n query: params.query,\n fields: params.fields,\n pageToken: pageParam,\n autoPaginate: params.autoPaginate,\n count: params.count,\n }),\n enabled: !!params.companyId,\n staleTime: minutes(20),\n getNextPageParam: nextPageParam,\n getPreviousPageParam: prevPageParam,\n };\n}\n"]}
|
package/dist/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export * from "./api/commands/conversation/publishDraftConversation.js";
|
|
|
65
65
|
export * from "./api/commands/conversation/updateConversation.js";
|
|
66
66
|
export * from "./api/commands/conversation/updateConversationCategories.js";
|
|
67
67
|
export * from "./api/commands/conversation/updateConversationCategory.js";
|
|
68
|
+
export * from "./api/commands/conversation/pushFallbackSettings.js";
|
|
68
69
|
export * from "./api/commands/document/createDocumentDirectory.js";
|
|
69
70
|
export * from "./api/commands/document/createDocumentReference.js";
|
|
70
71
|
export * from "./api/commands/document/deleteDocument.js";
|
|
@@ -326,6 +327,7 @@ export * from "./api/queries/conversation/conversationsByParticipant.js";
|
|
|
326
327
|
export * from "./api/queries/conversation/publicConversation.js";
|
|
327
328
|
export * from "./api/queries/conversation/publicConversationAuth.js";
|
|
328
329
|
export * from "./api/queries/conversation/unreadConversationsCount.js";
|
|
330
|
+
export * from "./api/queries/conversation/pushFallbackSettings.js";
|
|
329
331
|
export * from "./api/queries/countries/countries.js";
|
|
330
332
|
export * from "./api/queries/document/documentActions.js";
|
|
331
333
|
export * from "./api/queries/document/documents.js";
|
package/dist/index.js
CHANGED
|
@@ -63,6 +63,7 @@ export * from "./api/commands/conversation/publishDraftConversation.js";
|
|
|
63
63
|
export * from "./api/commands/conversation/updateConversation.js";
|
|
64
64
|
export * from "./api/commands/conversation/updateConversationCategories.js";
|
|
65
65
|
export * from "./api/commands/conversation/updateConversationCategory.js";
|
|
66
|
+
export * from "./api/commands/conversation/pushFallbackSettings.js";
|
|
66
67
|
export * from "./api/commands/document/createDocumentDirectory.js";
|
|
67
68
|
export * from "./api/commands/document/createDocumentReference.js";
|
|
68
69
|
export * from "./api/commands/document/deleteDocument.js";
|
|
@@ -324,6 +325,7 @@ export * from "./api/queries/conversation/conversationsByParticipant.js";
|
|
|
324
325
|
export * from "./api/queries/conversation/publicConversation.js";
|
|
325
326
|
export * from "./api/queries/conversation/publicConversationAuth.js";
|
|
326
327
|
export * from "./api/queries/conversation/unreadConversationsCount.js";
|
|
328
|
+
export * from "./api/queries/conversation/pushFallbackSettings.js";
|
|
327
329
|
export * from "./api/queries/countries/countries.js";
|
|
328
330
|
export * from "./api/queries/document/documentActions.js";
|
|
329
331
|
export * from "./api/queries/document/documents.js";
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,4BAA4B,CAAC;AAEpC,4EAA4E;AAC5E,yEAAyE;AACzE,OAAO,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAC/C,OAAO,EACL,aAAa,EACb,aAAa,EACb,mBAAmB,GACpB,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAO9D,OAAO,EACL,+BAA+B,EAC/B,4BAA4B,GAC7B,MAAM,2BAA2B,CAAC;AAiBnC,cAAc,2CAA2C,CAAC;AAC1D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,uDAAuD,CAAC;AACtE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,kDAAkD,CAAC;AACjE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,oDAAoD,CAAC;AACnE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,kDAAkD,CAAC;AACjE,cAAc,oDAAoD,CAAC;AACnE,cAAc,mDAAmD,CAAC;AAClE,cAAc,qDAAqD,CAAC;AACpE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,gEAAgE,CAAC;AAC/E,cAAc,kDAAkD,CAAC;AACjE,cAAc,kDAAkD,CAAC;AACjE,cAAc,oDAAoD,CAAC;AACnE,cAAc,sDAAsD,CAAC;AACrE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,uCAAuC,CAAC;AACtD,cAAc,oDAAoD,CAAC;AACnE,cAAc,oDAAoD,CAAC;AACnE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,2CAA2C,CAAC;AAC1D,cAAc,sCAAsC,CAAC;AACrD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,sDAAsD,CAAC;AACrE,cAAc,0DAA0D,CAAC;AACzE,cAAc,iDAAiD,CAAC;AAChE,cAAc,mDAAmD,CAAC;AAClE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qDAAqD,CAAC;AACpE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,oDAAoD,CAAC;AACnE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,2DAA2D,CAAC;AAC1E,cAAc,mDAAmD,CAAC;AAClE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,0DAA0D,CAAC;AACzE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,sEAAsE,CAAC;AACrF,cAAc,8CAA8C,CAAC;AAC7D,cAAc,kDAAkD,CAAC;AACjE,cAAc,kEAAkE,CAAC;AACjF,cAAc,gEAAgE,CAAC;AAC/E,cAAc,mDAAmD,CAAC;AAClE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,8DAA8D,CAAC;AAC7E,cAAc,qDAAqD,CAAC;AACpE,cAAc,iDAAiD,CAAC;AAChE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,mEAAmE,CAAC;AAClF,cAAc,yDAAyD,CAAC;AACxE,cAAc,mDAAmD,CAAC;AAClE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,2DAA2D,CAAC;AAC1E,cAAc,oDAAoD,CAAC;AACnE,cAAc,oDAAoD,CAAC;AACnE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,yCAAyC,CAAC;AACxD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,sDAAsD,CAAC;AACrE,cAAc,oDAAoD,CAAC;AACnE,cAAc,oDAAoD,CAAC;AACnE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,wDAAwD,CAAC;AACvE,cAAc,0CAA0C,CAAC;AACzD,cAAc,0DAA0D,CAAC;AACzE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,yCAAyC,CAAC;AACxD,cAAc,qDAAqD,CAAC;AACpE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,0CAA0C,CAAC;AACzD,cAAc,yCAAyC,CAAC;AACxD,cAAc,yCAAyC,CAAC;AACxD,cAAc,yCAAyC,CAAC;AACxD,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,uCAAuC,CAAC;AACtD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,uCAAuC,CAAC;AACtD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,uCAAuC,CAAC;AACtD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,iDAAiD,CAAC;AAChE,cAAc,mDAAmD,CAAC;AAClE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,0CAA0C,CAAC;AACzD,cAAc,wDAAwD,CAAC;AACvE,cAAc,iDAAiD,CAAC;AAChE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,mDAAmD,CAAC;AAClE,cAAc,mDAAmD,CAAC;AAClE,cAAc,oDAAoD,CAAC;AACnE,cAAc,iDAAiD,CAAC;AAChE,cAAc,mDAAmD,CAAC;AAClE,cAAc,sDAAsD,CAAC;AACrE,cAAc,kDAAkD,CAAC;AACjE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,oDAAoD,CAAC;AACnE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,mEAAmE,CAAC;AAClF,cAAc,2CAA2C,CAAC;AAC1D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wDAAwD,CAAC;AACvE,cAAc,iDAAiD,CAAC;AAChE,cAAc,0DAA0D,CAAC;AACzE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,mDAAmD,CAAC;AAClE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,mDAAmD,CAAC;AAClE,cAAc,mDAAmD,CAAC;AAClE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,2CAA2C,CAAC;AAC1D,cAAc,oCAAoC,CAAC;AACnD,cAAc,mDAAmD,CAAC;AAClE,cAAc,qCAAqC,CAAC;AACpD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,qCAAqC,CAAC;AACpD,cAAc,qDAAqD,CAAC;AACpE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,qCAAqC,CAAC;AACpD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,mCAAmC,CAAC;AAClD,cAAc,mCAAmC,CAAC;AAClD,cAAc,0CAA0C,CAAC;AACzD,cAAc,mCAAmC,CAAC;AAClD,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,mDAAmD,CAAC;AAClE,cAAc,yCAAyC,CAAC;AACxD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,gCAAgC,CAAC;AAC/C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iDAAiD,CAAC;AAChE,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,qDAAqD,CAAC;AACpE,cAAc,iEAAiE,CAAC;AAChF,cAAc,gEAAgE,CAAC;AAC/E,cAAc,+CAA+C,CAAC;AAC9D,cAAc,iEAAiE,CAAC;AAChF,cAAc,iEAAiE,CAAC;AAChF,cAAc,+CAA+C,CAAC;AAC9D,cAAc,0DAA0D,CAAC;AACzE,cAAc,wDAAwD,CAAC;AACvE,cAAc,yDAAyD,CAAC;AACxE,cAAc,uDAAuD,CAAC;AACtE,cAAc,yDAAyD,CAAC;AACxE,cAAc,mEAAmE,CAAC;AAClF,cAAc,kEAAkE,CAAC;AACjF,cAAc,+CAA+C,CAAC;AAC9D,cAAc,mDAAmD,CAAC;AAClE,cAAc,oDAAoD,CAAC;AACnE,cAAc,oDAAoD,CAAC;AACnE,cAAc,0DAA0D,CAAC;AACzE,cAAc,oDAAoD,CAAC;AACnE,cAAc,qDAAqD,CAAC;AACpE,cAAc,oDAAoD,CAAC;AACnE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,0CAA0C,CAAC;AACzD,cAAc,sCAAsC,CAAC;AACrD,cAAc,uDAAuD,CAAC;AACtE,cAAc,uDAAuD,CAAC;AACtE,cAAc,sDAAsD,CAAC;AACrE,cAAc,uCAAuC,CAAC;AACtD,cAAc,0CAA0C,CAAC;AACzD,cAAc,kDAAkD,CAAC;AACjE,cAAc,oEAAoE,CAAC;AACnF,cAAc,2CAA2C,CAAC;AAC1D,cAAc,kDAAkD,CAAC;AACjE,cAAc,oDAAoD,CAAC;AACnE,cAAc,kDAAkD,CAAC;AACjE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kDAAkD,CAAC;AACjE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,qDAAqD,CAAC;AACpE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,qDAAqD,CAAC;AACpE,cAAc,qDAAqD,CAAC;AACpE,cAAc,qDAAqD,CAAC;AACpE,cAAc,oDAAoD,CAAC;AACnE,cAAc,qDAAqD,CAAC;AACpE,cAAc,uDAAuD,CAAC;AACtE,cAAc,sDAAsD,CAAC;AACrE,cAAc,yCAAyC,CAAC;AACxD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,yCAAyC,CAAC;AACxD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,oDAAoD,CAAC;AACnE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,wCAAwC,CAAC;AACvD,cAAc,yDAAyD,CAAC;AACxE,cAAc,wDAAwD,CAAC;AACvE,cAAc,yCAAyC,CAAC;AACxD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,yDAAyD,CAAC;AACxE,cAAc,oEAAoE,CAAC;AACnF,cAAc,+CAA+C,CAAC;AAC9D,cAAc,yDAAyD,CAAC;AACxE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,yDAAyD,CAAC;AACxE,cAAc,oEAAoE,CAAC;AACnF,cAAc,kEAAkE,CAAC;AACjF,cAAc,iDAAiD,CAAC;AAChE,cAAc,iDAAiD,CAAC;AAChE,cAAc,kDAAkD,CAAC;AACjE,cAAc,iDAAiD,CAAC;AAChE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,kDAAkD,CAAC;AACjE,cAAc,kDAAkD,CAAC;AACjE,cAAc,qDAAqD,CAAC;AACpE,cAAc,kDAAkD,CAAC;AACjE,cAAc,wDAAwD,CAAC;AACvE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,mDAAmD,CAAC;AAClE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,oDAAoD,CAAC;AACnE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,uDAAuD,CAAC;AACtE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,qCAAqC,CAAC;AACpD,cAAc,mCAAmC,CAAC;AAClD,cAAc,mCAAmC,CAAC;AAClD,cAAc,yCAAyC,CAAC;AACxD,cAAc,mCAAmC,CAAC;AAClD,cAAc,uEAAuE,CAAC;AACtF,cAAc,+DAA+D,CAAC;AAC9E,cAAc,qEAAqE,CAAC;AACpF,cAAc,qEAAqE,CAAC;AACpF,cAAc,uEAAuE,CAAC;AACtF,cAAc,qEAAqE,CAAC;AACpF,cAAc,qEAAqE,CAAC;AACpF,cAAc,qCAAqC,CAAC;AACpD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,kCAAkC,CAAC;AACjD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sCAAsC,CAAC;AACrD,cAAc,mCAAmC,CAAC;AAClD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,kDAAkD,CAAC;AACjE,cAAc,qDAAqD,CAAC;AACpE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,kDAAkD,CAAC;AACjE,cAAc,qCAAqC,CAAC;AACpD,cAAc,gEAAgE,CAAC;AAC/E,cAAc,iDAAiD,CAAC;AAChE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,oDAAoD,CAAC;AACnE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,wDAAwD,CAAC;AACvE,cAAc,sDAAsD,CAAC;AACrE,cAAc,sDAAsD,CAAC;AACrE,cAAc,gEAAgE,CAAC;AAC/E,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,mDAAmD,CAAC;AAClE,cAAc,kDAAkD,CAAC;AACjE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,oCAAoC,CAAC;AACnD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AACzD,cAAc,uCAAuC,CAAC;AACtD,cAAc,wCAAwC,CAAC;AACvD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,uCAAuC,CAAC;AACtD,cAAc,oCAAoC,CAAC;AACnD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,wEAAwE,CAAC;AACvF,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sDAAsD,CAAC;AACrE,cAAc,0DAA0D,CAAC;AACzE,cAAc,iDAAiD,CAAC;AAChE,cAAc,mDAAmD,CAAC;AAClE,cAAc,0DAA0D,CAAC;AACzE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,0DAA0D,CAAC;AACzE,cAAc,kDAAkD,CAAC;AACjE,cAAc,sDAAsD,CAAC;AACrE,cAAc,wDAAwD,CAAC;AACvE,cAAc,sCAAsC,CAAC;AACrD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qCAAqC,CAAC;AACpD,cAAc,qDAAqD,CAAC;AACpE,cAAc,0CAA0C,CAAC;AACzD,cAAc,oDAAoD,CAAC;AACnE,cAAc,qDAAqD,CAAC;AACpE,cAAc,qDAAqD,CAAC;AACpE,cAAc,iDAAiD,CAAC;AAChE,cAAc,0CAA0C,CAAC;AACzD,cAAc,yCAAyC,CAAC;AACxD,cAAc,kDAAkD,CAAC;AACjE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,mCAAmC,CAAC;AAClD,cAAc,iCAAiC,CAAC;AAChD,cAAc,wDAAwD,CAAC;AACvE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,kCAAkC,CAAC;AACjD,cAAc,sCAAsC,CAAC;AACrD,cAAc,uCAAuC,CAAC;AACtD,cAAc,wCAAwC,CAAC;AACvD,cAAc,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC;AACnD,cAAc,wCAAwC,CAAC;AACvD,cAAc,uCAAuC,CAAC;AACtD,cAAc,wCAAwC,CAAC;AACvD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,yCAAyC,CAAC;AACxD,cAAc,kDAAkD,CAAC;AACjE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,wCAAwC,CAAC;AACvD,cAAc,oDAAoD,CAAC;AACnE,cAAc,wCAAwC,CAAC;AACvD,cAAc,qCAAqC,CAAC;AACpD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,sCAAsC,CAAC;AACrD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,wCAAwC,CAAC;AACvD,cAAc,qDAAqD,CAAC;AACpE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,oDAAoD,CAAC;AACnE,cAAc,yCAAyC,CAAC;AACxD,cAAc,mDAAmD,CAAC;AAClE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,uDAAuD,CAAC;AACtE,cAAc,kDAAkD,CAAC;AACjE,cAAc,oDAAoD,CAAC;AACnE,cAAc,0CAA0C,CAAC;AACzD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,kDAAkD,CAAC;AACjE,cAAc,kDAAkD,CAAC;AACjE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,yCAAyC,CAAC;AACxD,cAAc,oCAAoC,CAAC;AACnD,cAAc,uCAAuC,CAAC;AACtD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,sCAAsC,CAAC;AACrD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mCAAmC,CAAC;AAClD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,mDAAmD,CAAC;AAClE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,sDAAsD,CAAC;AACrE,cAAc,kDAAkD,CAAC;AACjE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,sCAAsC,CAAC;AACrD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sCAAsC,CAAC;AACrD,cAAc,iCAAiC,CAAC;AAChD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,oEAAoE,CAAC;AACnF,cAAc,uDAAuD,CAAC;AACtE,cAAc,wDAAwD,CAAC;AACvE,cAAc,kDAAkD,CAAC;AACjE,cAAc,uDAAuD,CAAC;AACtE,cAAc,yDAAyD,CAAC;AACxE,cAAc,sDAAsD,CAAC;AACrE,cAAc,qDAAqD,CAAC;AACpE,cAAc,iDAAiD,CAAC;AAChE,cAAc,wDAAwD,CAAC;AACvE,cAAc,qDAAqD,CAAC;AACpE,cAAc,mDAAmD,CAAC;AAClE,cAAc,sDAAsD,CAAC;AACrE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,sDAAsD,CAAC;AACrE,cAAc,oDAAoD,CAAC;AACnE,cAAc,iDAAiD,CAAC;AAChE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,mCAAmC,CAAC;AAClD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,oCAAoC,CAAC;AACnD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,wCAAwC,CAAC;AACvD,cAAc,kDAAkD,CAAC;AACjE,cAAc,mDAAmD,CAAC;AAClE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6DAA6D,CAAC;AAC5E,cAAc,8DAA8D,CAAC;AAC7E,cAAc,iDAAiD,CAAC;AAChE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,yCAAyC,CAAC;AACxD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,kCAAkC,CAAC;AACjD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qCAAqC,CAAC;AACpD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,yCAAyC,CAAC;AACxD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oEAAoE,CAAC;AACnF,cAAc,2DAA2D,CAAC;AAC1E,cAAc,8DAA8D,CAAC;AAC7E,cAAc,qEAAqE,CAAC;AACpF,cAAc,uEAAuE,CAAC;AACtF,cAAc,kCAAkC,CAAC;AACjD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,mCAAmC,CAAC;AAClD,cAAc,yCAAyC,CAAC;AACxD,cAAc,mCAAmC,CAAC;AAClD,cAAc,iCAAiC,CAAC","sourcesContent":["import \"./utils/bigint-polyfill.js\";\n\n// TanStack Query utilities. SDK clients, models, and Kotlin interop stay in\n// @solibo/solibo-sdk so each package has one clear abstraction boundary.\nexport { toKeyId } 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 type {\n FileSlingShotParams,\n SignedUploadCompleter,\n UploadHeaderFactory,\n UploadProgressListener,\n} from \"./api/documentApi.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/createPushNotificationRead.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/conversationMessageMutations.js\";\nexport * from \"./api/commands/conversation/conversationTrashMutations.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/officeDocumentMutations.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/conversationMessageHistory.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/officeDocumentCandidates.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// TanStack Query utilities. SDK clients, models, and Kotlin interop stay in\n// @solibo/solibo-sdk so each package has one clear abstraction boundary.\nexport { toKeyId } 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 type {\n FileSlingShotParams,\n SignedUploadCompleter,\n UploadHeaderFactory,\n UploadProgressListener,\n} from \"./api/documentApi.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/createPushNotificationRead.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/conversationMessageMutations.js\";\nexport * from \"./api/commands/conversation/conversationTrashMutations.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/conversation/pushFallbackSettings.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/officeDocumentMutations.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/conversationMessageHistory.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/conversation/pushFallbackSettings.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/officeDocumentCandidates.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.9.
|
|
3
|
+
"version": "1.9.18",
|
|
4
4
|
"description": "Framework-agnostic TanStack Query options for Solibo SDK",
|
|
5
5
|
"homepage": "https://sdk.solibo.no",
|
|
6
6
|
"repository": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"buffer": "^6.0.3",
|
|
36
36
|
"hash-wasm": "^4.12.0",
|
|
37
37
|
"mime-types": "^3.0.2",
|
|
38
|
-
"@solibo/solibo-sdk": "1.9.
|
|
38
|
+
"@solibo/solibo-sdk": "1.9.18"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@eslint/js": "^10.0.1",
|