@solibo/solibo-query 1.1.60 → 1.1.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { AuthChallengeType, FcmDeviceType, MfaType, SoliboAuthentication } from '@solibo/solibo-sdk';
|
|
2
|
+
/**
|
|
3
|
+
* Hook to update MFA preference.
|
|
4
|
+
*/
|
|
5
|
+
export declare const useCreateMfaPreference: () => import("@tanstack/react-query").UseMutationResult<boolean, Error, {
|
|
6
|
+
mfaType: MfaType | null;
|
|
7
|
+
}, unknown> & {
|
|
8
|
+
onValidationError: (callback: (errors: import("@solibo/solibo-sdk").ValidationErrorJson[]) => void) => void;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Hook to remove MFA (sets preference to null).
|
|
12
|
+
*/
|
|
13
|
+
export declare const useRemoveMfa: () => import("@tanstack/react-query").UseMutationResult<boolean, Error, void, unknown> & {
|
|
14
|
+
onValidationError: (callback: (errors: import("@solibo/solibo-sdk").ValidationErrorJson[]) => void) => void;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Hook to answer an MFA challenge.
|
|
18
|
+
*/
|
|
19
|
+
export declare const useAnswerMfaChallenge: () => import("@tanstack/react-query").UseMutationResult<SoliboAuthentication, Error, {
|
|
20
|
+
code: string;
|
|
21
|
+
challengeType?: AuthChallengeType;
|
|
22
|
+
session?: string;
|
|
23
|
+
login?: string;
|
|
24
|
+
fcmDevice?: FcmDeviceType;
|
|
25
|
+
}, unknown> & {
|
|
26
|
+
onValidationError: (callback: (errors: import("@solibo/solibo-sdk").ValidationErrorJson[]) => void) => void;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Hook to initiate MFA selection.
|
|
30
|
+
*/
|
|
31
|
+
export declare const useCreateMfaSelection: () => import("@tanstack/react-query").UseMutationResult<boolean, Error, {
|
|
32
|
+
mfaType: MfaType;
|
|
33
|
+
session?: string;
|
|
34
|
+
login?: string;
|
|
35
|
+
}, unknown> & {
|
|
36
|
+
onValidationError: (callback: (errors: import("@solibo/solibo-sdk").ValidationErrorJson[]) => void) => void;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Hook to confirm MFA selection.
|
|
40
|
+
*/
|
|
41
|
+
export declare const useCreateMfaSelectionConfirmation: () => import("@tanstack/react-query").UseMutationResult<boolean, Error, {
|
|
42
|
+
session?: string;
|
|
43
|
+
login?: string;
|
|
44
|
+
}, unknown> & {
|
|
45
|
+
onValidationError: (callback: (errors: import("@solibo/solibo-sdk").ValidationErrorJson[]) => void) => void;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Hook to create/associate a TOTP MFA (starts the process).
|
|
49
|
+
*/
|
|
50
|
+
export declare const useCreateTOTPMfa: () => import("@tanstack/react-query").UseMutationResult<import("@solibo/solibo-sdk").SoftwareTokenAssociation, Error, void, unknown> & {
|
|
51
|
+
onValidationError: (callback: (errors: import("@solibo/solibo-sdk").ValidationErrorJson[]) => void) => void;
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* Hook to verify and complete TOTP MFA association.
|
|
55
|
+
*/
|
|
56
|
+
export declare const useVerifyCreateTOTPMfa: () => import("@tanstack/react-query").UseMutationResult<import("@solibo/solibo-sdk").SoftwareTokenAssociation, Error, {
|
|
57
|
+
code: string;
|
|
58
|
+
deviceName: string;
|
|
59
|
+
}, unknown> & {
|
|
60
|
+
onValidationError: (callback: (errors: import("@solibo/solibo-sdk").ValidationErrorJson[]) => void) => void;
|
|
61
|
+
};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { useMutation } from '../../../utils/useMutation.js';
|
|
2
|
+
import { useSdk } from '../../../sdkProvider.js';
|
|
3
|
+
/**
|
|
4
|
+
* Hook to update MFA preference.
|
|
5
|
+
*/
|
|
6
|
+
export const useCreateMfaPreference = () => {
|
|
7
|
+
const sdk = useSdk();
|
|
8
|
+
return useMutation({
|
|
9
|
+
mutationFn: (params) => sdk.auth.createMfaPreference(params.mfaType),
|
|
10
|
+
});
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* Hook to remove MFA (sets preference to null).
|
|
14
|
+
*/
|
|
15
|
+
export const useRemoveMfa = () => {
|
|
16
|
+
const sdk = useSdk();
|
|
17
|
+
return useMutation({
|
|
18
|
+
mutationFn: () => sdk.auth.removeMfa(),
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Hook to answer an MFA challenge.
|
|
23
|
+
*/
|
|
24
|
+
export const useAnswerMfaChallenge = () => {
|
|
25
|
+
const sdk = useSdk();
|
|
26
|
+
return useMutation({
|
|
27
|
+
mutationFn: (params) => sdk.auth.answerMfaChallenge(params.code, params.challengeType, params.session, params.login, params.fcmDevice),
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Hook to initiate MFA selection.
|
|
32
|
+
*/
|
|
33
|
+
export const useCreateMfaSelection = () => {
|
|
34
|
+
const sdk = useSdk();
|
|
35
|
+
return useMutation({
|
|
36
|
+
mutationFn: (params) => sdk.auth.createMfaSelection(params.mfaType, params.session, params.login),
|
|
37
|
+
});
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Hook to confirm MFA selection.
|
|
41
|
+
*/
|
|
42
|
+
export const useCreateMfaSelectionConfirmation = () => {
|
|
43
|
+
const sdk = useSdk();
|
|
44
|
+
return useMutation({
|
|
45
|
+
mutationFn: (params) => sdk.auth.createMfaSelectionConfirmation(params.session, params.login),
|
|
46
|
+
});
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Hook to create/associate a TOTP MFA (starts the process).
|
|
50
|
+
*/
|
|
51
|
+
export const useCreateTOTPMfa = () => {
|
|
52
|
+
const sdk = useSdk();
|
|
53
|
+
return useMutation({
|
|
54
|
+
mutationFn: () => sdk.auth.createTOTPMfa(),
|
|
55
|
+
});
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Hook to verify and complete TOTP MFA association.
|
|
59
|
+
*/
|
|
60
|
+
export const useVerifyCreateTOTPMfa = () => {
|
|
61
|
+
const sdk = useSdk();
|
|
62
|
+
return useMutation({
|
|
63
|
+
mutationFn: (params) => sdk.auth.verifyCreateTOTPMfa(params.code, params.deviceName),
|
|
64
|
+
});
|
|
65
|
+
};
|
|
66
|
+
//# sourceMappingURL=useMfa.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useMfa.js","sourceRoot":"","sources":["../../../../src/api/commands/user/useMfa.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AAQjD;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,GAAG,EAAE;IACvC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CAAC;QACf,UAAU,EAAE,CAAC,MAAmC,EAAE,EAAE,CAChD,GAAG,CAAC,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,OAAO,CAAC;KACnD,CAAC,CAAC;AACP,CAAC,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG,GAAG,EAAE;IAC7B,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CAAC;QACf,UAAU,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,EAAE;KACzC,CAAC,CAAC;AACP,CAAC,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,GAAG,EAAE;IACtC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CAAC;QACf,UAAU,EAAE,CAAC,MAMZ,EAAiC,EAAE,CAChC,GAAG,CAAC,IAAI,CAAC,kBAAkB,CACvB,MAAM,CAAC,IAAI,EACX,MAAM,CAAC,aAAa,EACpB,MAAM,CAAC,OAAO,EACd,MAAM,CAAC,KAAK,EACZ,MAAM,CAAC,SAAS,CACnB;KACR,CAAC,CAAC;AACP,CAAC,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,GAAG,EAAE;IACtC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CAAC;QACf,UAAU,EAAE,CAAC,MAIZ,EAAE,EAAE,CACD,GAAG,CAAC,IAAI,CAAC,kBAAkB,CACvB,MAAM,CAAC,OAAO,EACd,MAAM,CAAC,OAAO,EACd,MAAM,CAAC,KAAK,CACf;KACR,CAAC,CAAC;AACP,CAAC,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,iCAAiC,GAAG,GAAG,EAAE;IAClD,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CAAC;QACf,UAAU,EAAE,CAAC,MAA4C,EAAE,EAAE,CACzD,GAAG,CAAC,IAAI,CAAC,8BAA8B,CACnC,MAAM,CAAC,OAAO,EACd,MAAM,CAAC,KAAK,CACf;KACR,CAAC,CAAC;AACP,CAAC,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,GAAG,EAAE;IACjC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CAAC;QACf,UAAU,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,aAAa,EAAE;KAC7C,CAAC,CAAC;AACP,CAAC,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,GAAG,EAAE;IACvC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CAAC;QACf,UAAU,EAAE,CAAC,MAA4C,EAAE,EAAE,CACzD,GAAG,CAAC,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,UAAU,CAAC;KACnE,CAAC,CAAC;AACP,CAAC,CAAC","sourcesContent":["import { useMutation } from '../../../utils/useMutation.js';\nimport { useSdk } from '../../../sdkProvider.js';\nimport {\n AuthChallengeType,\n FcmDeviceType,\n MfaType,\n SoliboAuthentication,\n} from '@solibo/solibo-sdk';\n\n/**\n * Hook to update MFA preference.\n */\nexport const useCreateMfaPreference = () => {\n const sdk = useSdk();\n return useMutation({\n mutationFn: (params: { mfaType: MfaType | null }) =>\n sdk.auth.createMfaPreference(params.mfaType),\n });\n};\n\n/**\n * Hook to remove MFA (sets preference to null).\n */\nexport const useRemoveMfa = () => {\n const sdk = useSdk();\n return useMutation({\n mutationFn: () => sdk.auth.removeMfa(),\n });\n};\n\n/**\n * Hook to answer an MFA challenge.\n */\nexport const useAnswerMfaChallenge = () => {\n const sdk = useSdk();\n return useMutation({\n mutationFn: (params: {\n code: string;\n challengeType?: AuthChallengeType;\n session?: string;\n login?: string;\n fcmDevice?: FcmDeviceType;\n }): Promise<SoliboAuthentication> =>\n sdk.auth.answerMfaChallenge(\n params.code,\n params.challengeType,\n params.session,\n params.login,\n params.fcmDevice\n ),\n });\n};\n\n/**\n * Hook to initiate MFA selection.\n */\nexport const useCreateMfaSelection = () => {\n const sdk = useSdk();\n return useMutation({\n mutationFn: (params: {\n mfaType: MfaType;\n session?: string;\n login?: string;\n }) =>\n sdk.auth.createMfaSelection(\n params.mfaType,\n params.session,\n params.login\n ),\n });\n};\n\n/**\n * Hook to confirm MFA selection.\n */\nexport const useCreateMfaSelectionConfirmation = () => {\n const sdk = useSdk();\n return useMutation({\n mutationFn: (params: { session?: string; login?: string }) =>\n sdk.auth.createMfaSelectionConfirmation(\n params.session,\n params.login\n ),\n });\n};\n\n/**\n * Hook to create/associate a TOTP MFA (starts the process).\n */\nexport const useCreateTOTPMfa = () => {\n const sdk = useSdk();\n return useMutation({\n mutationFn: () => sdk.auth.createTOTPMfa(),\n });\n};\n\n/**\n * Hook to verify and complete TOTP MFA association.\n */\nexport const useVerifyCreateTOTPMfa = () => {\n const sdk = useSdk();\n return useMutation({\n mutationFn: (params: { code: string; deviceName: string }) =>\n sdk.auth.verifyCreateTOTPMfa(params.code, params.deviceName),\n });\n};\n"]}
|
package/dist/index.d.ts
CHANGED
|
@@ -234,6 +234,7 @@ export * from './api/commands/user/useContactHooks.js';
|
|
|
234
234
|
export * from './api/commands/user/useDeleteProfilePicture.js';
|
|
235
235
|
export * from './api/commands/user/useResetPassword.js';
|
|
236
236
|
export * from './api/commands/user/useUpdateUser.js';
|
|
237
|
+
export * from './api/commands/user/useMfa.js';
|
|
237
238
|
export * from './api/commands/user/useUploadProfilePicture.js';
|
|
238
239
|
export * from './api/commands/settlement/useCreateSettlement.js';
|
|
239
240
|
export * from './api/commands/settlement/useUpdateSettlement.js';
|
package/dist/index.js
CHANGED
|
@@ -234,6 +234,7 @@ export * from './api/commands/user/useContactHooks.js';
|
|
|
234
234
|
export * from './api/commands/user/useDeleteProfilePicture.js';
|
|
235
235
|
export * from './api/commands/user/useResetPassword.js';
|
|
236
236
|
export * from './api/commands/user/useUpdateUser.js';
|
|
237
|
+
export * from './api/commands/user/useMfa.js';
|
|
237
238
|
export * from './api/commands/user/useUploadProfilePicture.js';
|
|
238
239
|
export * from './api/commands/settlement/useCreateSettlement.js';
|
|
239
240
|
export * from './api/commands/settlement/useUpdateSettlement.js';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["import './utils/bigint-polyfill.js';\n\nexport * from './api/commands/board/useCreateBoardMember.js';\nexport * from './api/commands/board/useDeleteBoardMember.js';\nexport * from './api/commands/board/useInviteBoardMemberToSoliboHome.js';\nexport * from './api/commands/communication/useBuySMSBundle.js';\nexport * from './api/commands/communication/useCreateNewsletter.js';\nexport * from './api/commands/communication/useCreateSMSBroadcast.js';\nexport * from './api/commands/communication/useDeleteDocumentFromNewsletter.js';\nexport * from './api/commands/communication/useDeleteNewsletter.js';\nexport * from './api/commands/communication/useDeleteSMSBroadcast.js';\nexport * from './api/commands/communication/usePublishNewsletter.js';\nexport * from './api/commands/communication/usePublishSMSBroadcast.js';\nexport * from './api/commands/communication/useSignupNewsletter.js';\nexport * from './api/commands/communication/useUpdateNewsletter.js';\nexport * from './api/commands/communication/useUpdateSMSBroadcast.js';\nexport * from './api/commands/company/useCreateCompanyCustomerClaim.js';\nexport * from './api/commands/company/useDeleteFractions.js';\nexport * from './api/commands/company/useImportBorettslag.js';\nexport * from './api/commands/company/useImportCompanies.js';\nexport * from './api/commands/company/useImportDraft.js';\nexport * from './api/commands/company/useImportSameie.js';\nexport * from './api/commands/company/useImportSameieByAddress.js';\nexport * from './api/commands/company/useResetSales.js';\nexport * from './api/commands/company/useSaveCompanyDetailed.js';\nexport * from './api/commands/company/useSaveImportDraft.js';\nexport * from './api/commands/company/useUpdateActiveAdministrators.js';\nexport * from './api/commands/company/useUpdateAdministratorsForCompany.js';\nexport * from './api/commands/company/useUpdateCompanyDetailed.js';\nexport * from './api/commands/company/useUpdateCompanyOrdinances.js';\nexport * from './api/commands/company/useUpdateFractions.js';\nexport * from './api/commands/conversation/useCompleteConversation.js';\nexport * from './api/commands/conversation/useConversationBackInProgress.js';\nexport * from './api/commands/conversation/useCreateConversation.js';\nexport * from './api/commands/conversation/useCreateConversationCategory.js';\nexport * from './api/commands/conversation/useCreateConversationMessage.js';\nexport * from './api/commands/conversation/useCreateConversationParticipant.js';\nexport * from './api/commands/conversation/useCreateExternalConversationParticipant.js';\nexport * from './api/commands/conversation/useCreateInquiry.js';\nexport * from './api/commands/conversation/useCreateInquiryOpen.js';\nexport * from './api/commands/conversation/useCreateInternalConversationMessage.js';\nexport * from './api/commands/conversation/useCreatePublicConversationMessage.js';\nexport * from './api/commands/conversation/useDeleteConversation.js';\nexport * from './api/commands/conversation/useDeleteConversationCategory.js';\nexport * from './api/commands/conversation/useDeleteConversationParticipant.js';\nexport * from './api/commands/conversation/useMarkConversationRead.js';\nexport * from './api/commands/conversation/usePublicUploadDocumentToConversation.js';\nexport * from './api/commands/conversation/usePublishDraftConversation.js';\nexport * from './api/commands/conversation/useUpdateConversation.js';\nexport * from './api/commands/conversation/useUpdateConversationCategories.js';\nexport * from './api/commands/conversation/useUpdateConversationCategory.js';\nexport * from './api/commands/document/useCreateDocumentDirectory.js';\nexport * from './api/commands/document/useDeleteDocument.js';\nexport * from './api/commands/document/useMoveDocument.js';\nexport * from './api/commands/document/useMoveDocumentToTrash.js';\nexport * from './api/commands/document/useRemoveDocumentFromTrash.js';\nexport * from './api/commands/document/useRenameDocument.js';\nexport * from './api/commands/document/useUploadDocument.js';\nexport * from './api/commands/economy/useApproveInvoice.js';\nexport * from './api/commands/economy/useAttachDocumentToEconomicReport.js';\nexport * from './api/commands/economy/useCreateInvoiceNotice.js';\nexport * from './api/commands/economy/useOrderEconomicReport.js';\nexport * from './api/commands/economy/useRejectInvoice.js';\nexport * from './api/commands/economy/useUpdateInvoiceNotification.js';\nexport * from './api/commands/economy/useUpdateRealtimeInvoiceNotification.js';\nexport * from './api/commands/expense/useApproveExpense.js';\nexport * from './api/commands/expense/useCreateExpense.js';\nexport * from './api/commands/expense/useDeleteExpense.js';\nexport * from './api/commands/expense/useRejectExpense.js';\nexport * from './api/commands/hms/useSetupHMSSettings.js';\nexport * from './api/commands/hms/useUpdateHMSSettings.js';\nexport * from './api/commands/homepage/useCreatePost.js';\nexport * from './api/commands/homepage/useCreatePracticalInfo.js';\nexport * from './api/commands/homepage/useDeletePost.js';\nexport * from './api/commands/homepage/useDeletePracticalInfo.js';\nexport * from './api/commands/homepage/usePostContent.js';\nexport * from './api/commands/homepage/useUpdateFeedWeighting.js';\nexport * from './api/commands/homepage/useUpdatePost.js';\nexport * from './api/commands/homepage/useUpdatePracticalInfo.js';\nexport * from './api/commands/homepage/useUploadHomepageImage.js';\nexport * from './api/commands/insurance/useCloseInsurance.js';\nexport * from './api/commands/insurance/useCreateInsurance.js';\nexport * from './api/commands/insurance/useDeleteInsurance.js';\nexport * from './api/commands/invoicing/useActivateInvoiceLine.js';\nexport * from './api/commands/invoicing/useActivateInvoicingPlan.js';\nexport * from './api/commands/invoicing/useActivateTriplewin.js';\nexport * from './api/commands/invoicing/useCloseInvoice.js';\nexport * from './api/commands/invoicing/useCreateAdhocLinesForCompany.js';\nexport * from './api/commands/invoicing/useCreateCreditNote.js';\nexport * from './api/commands/invoicing/useCreateCustomer.js';\nexport * from './api/commands/invoicing/useCreateCustomerById.js';\nexport * from './api/commands/invoicing/useCreateCustomerComment.js';\nexport * from './api/commands/invoicing/useCreateFordelingsnokkel.js';\nexport * from './api/commands/invoicing/useCreateInvoicePlanLine.js';\nexport * from './api/commands/invoicing/useCreateInvoiceRecipient.js';\nexport * from './api/commands/invoicing/useCreateInvoicingPlan.js';\nexport * from './api/commands/invoicing/useDeactivateInvoiceLine.js';\nexport * from './api/commands/invoicing/useDeleteAdHocInvoicingLine.js';\nexport * from './api/commands/invoicing/useDeleteAdHocLineGroup.js';\nexport * from './api/commands/invoicing/useDeleteAdHocLines.js';\nexport * from './api/commands/invoicing/useDeleteDistribution.js';\nexport * from './api/commands/invoicing/useDeleteInvoiceRecipient.js';\nexport * from './api/commands/invoicing/useDeletePlannedInvoiceLineChanges.js';\nexport * from './api/commands/invoicing/useInvoicingMutations.js';\nexport * from './api/commands/invoicing/useRegisterPayment.js';\nexport * from './api/commands/invoicing/useToggleInvoicingPlanTransactionOverdue.js';\nexport * from './api/commands/invoicing/useUpdateAdhocLinesForCompany.js';\nexport * from './api/commands/invoicing/useUpdateCustomerMeta.js';\nexport * from './api/commands/invoicing/useUpdateFelleskostnaderSettings.js';\nexport * from './api/commands/invoicing/useUpdateFordelingsnokkel.js';\nexport * from './api/commands/invoicing/useUpdateInvoiceDelivery.js';\nexport * from './api/commands/invoicing/useUpdateInvoiceLine.js';\nexport * from './api/commands/invoicing/useUpdateInvoiceLineName.js';\nexport * from './api/commands/invoicing/useUpdateInvoiceSettings.js';\nexport * from './api/commands/issue/useChangeResponsible.js';\nexport * from './api/commands/issue/useCloseIssue.js';\nexport * from './api/commands/issue/useCreateConversationToIssue.js';\nexport * from './api/commands/issue/useCreateIssue.js';\nexport * from './api/commands/issue/useCreateIssueComment.js';\nexport * from './api/commands/issue/useCreateIssueToMeeting.js';\nexport * from './api/commands/issue/useCreateSectionToIssue.js';\nexport * from './api/commands/issue/useDeleteSectionFromIssue.js';\nexport * from './api/commands/issue/useReOpenIssue.js';\nexport * from './api/commands/issue/useRemoveConversationFromIssue.js';\nexport * from './api/commands/issue/useRemoveIssueFromMeeting.js';\nexport * from './api/commands/issue/useReorderIssueInMeeting.js';\nexport * from './api/commands/issue/useUpdateIssue.js';\nexport * from './api/commands/issue/useUpdateIssueConclusion.js';\nexport * from './api/commands/issue/useUpdateIssueReport.js';\nexport * from './api/commands/loan/useCreateLoan.js';\nexport * from './api/commands/loan/useDeleteLoan.js';\nexport * from './api/commands/loan/useSetMainDocumentId.js';\nexport * from './api/commands/loan/useUpdateLoan.js';\nexport * from './api/commands/meeting/useCloseMeeting.js';\nexport * from './api/commands/meeting/useCreateMeeting.js';\nexport * from './api/commands/meeting/useCreateMeetingSummons.js';\nexport * from './api/commands/meeting/useCreateSignatureReminder.js';\nexport * from './api/commands/meeting/useDeleteMeeting.js';\nexport * from './api/commands/meeting/useFollowUpIssueLater.js';\nexport * from './api/commands/meeting/useIssueTreated.js';\nexport * from './api/commands/meeting/useReOpenMeeting.js';\nexport * from './api/commands/meeting/useRegisterOppmote.js';\nexport * from './api/commands/meeting/useRsvp.js';\nexport * from './api/commands/meeting/useSign.js';\nexport * from './api/commands/meeting/useSignatureUnobtainable.js';\nexport * from './api/commands/meeting/useStartMeeting.js';\nexport * from './api/commands/meeting/useUpdateMeeting.js';\nexport * from './api/commands/meeting/useUpdateMeetingParticipants.js';\nexport * from './api/commands/organization/useAssignParkingSpaceToOrganization.js';\nexport * from './api/commands/organization/useAssignStorageRoomToOrganization.js';\nexport * from './api/commands/organization/useCreateEmployee.js';\nexport * from './api/commands/organization/useCreateEmployeeCompanyContactRole.js';\nexport * from './api/commands/organization/useCreateEmployeeSectionContactRole.js';\nexport * from './api/commands/organization/useDeleteEmployee.js';\nexport * from './api/commands/organization/useDeleteOrganizationFromSAM.js';\nexport * from './api/commands/organization/useMassUpdateOrganizations.js';\nexport * from './api/commands/organization/useRemoveCompanyContactRole.js';\nexport * from './api/commands/organization/useRemoveOrganizationRole.js';\nexport * from './api/commands/organization/useRemoveSectionContactRole.js';\nexport * from './api/commands/organization/useUnAssignParkingSpaceToOrganization.js';\nexport * from './api/commands/organization/useUnAssignStorageRoomToOrganization.js';\nexport * from './api/commands/organization/useUpdateEmployee.js';\nexport * from './api/commands/organization/useUpdateOrganization.js';\nexport * from './api/commands/parkingSpaces/useCreateParkingSpace.js';\nexport * from './api/commands/parkingSpaces/useDeleteParkingSpace.js';\nexport * from './api/commands/parkingSpaces/useUpdateParkingSpace.js';\nexport * from './api/commands/person/useAssignParkingSpaceToPerson.js';\nexport * from './api/commands/person/useAssignStorageRoomToPerson.js';\nexport * from './api/commands/person/useDeletePersonRole.js';\nexport * from './api/commands/person/useMassUpdatePerson.js';\nexport * from './api/commands/person/useMassUpdateRoles.js';\nexport * from './api/commands/person/useMergePerson.js';\nexport * from './api/commands/person/usePersonnummerSearch.js';\nexport * from './api/commands/person/useUnAssignParkingSpaceToPerson.js';\nexport * from './api/commands/person/useUnAssignStorageRoomToPerson.js';\nexport * from './api/commands/person/useUpdatePerson.js';\nexport * from './api/commands/person/useUpdateResidency.js';\nexport * from './api/commands/resident/useCreateOccupancyRecord.js';\nexport * from './api/commands/resident/useCreatePhysicalLetterToResidentInCompany.js';\nexport * from './api/commands/resident/useCreateResident.js';\nexport * from './api/commands/resident/useDeleteOccupancyRecord.js';\nexport * from './api/commands/resident/useRemovePersonFromCompany.js';\nexport * from './api/commands/resident/useRequestResidentChange.js';\nexport * from './api/commands/resident/useResidentActions.js';\nexport * from './api/commands/resident/useUpdateOccupancyRecord.js';\nexport * from './api/commands/resident/useUpdateOrganizationReservations.js';\nexport * from './api/commands/resident/useUpdatePersonReservations.js';\nexport * from './api/commands/resident/useUpdateResident.js';\nexport * from './api/commands/resident/useUpdateResidentNotat.js';\nexport * from './api/commands/routines/useCreateRoutine.js';\nexport * from './api/commands/routines/useDeleteRoutine.js';\nexport * from './api/commands/routines/useUpdateRoutine.js';\nexport * from './api/commands/section/useAssignParkingSpaceToSection.js';\nexport * from './api/commands/section/useAssignStorageRoomToSection.js';\nexport * from './api/commands/section/useCreateSection.js';\nexport * from './api/commands/section/useCreateSectionStatus.js';\nexport * from './api/commands/section/useCreateSubSection.js';\nexport * from './api/commands/section/useDeleteSection.js';\nexport * from './api/commands/section/useEierskifteSection.js';\nexport * from './api/commands/section/useMassUpdateSection.js';\nexport * from './api/commands/section/useRemoveSectionStatus.js';\nexport * from './api/commands/section/useTagOnSection.js';\nexport * from './api/commands/section/useUnAssignParkingSpaceToSection.js';\nexport * from './api/commands/section/useUnAssignStorageRoomToSection.js';\nexport * from './api/commands/section/useUpdateSection.js';\nexport * from './api/commands/section/useUpdateSectionNotat.js';\nexport * from './api/commands/section/useUpdateTagsOnSection.js';\nexport * from './api/commands/storageRoom/useCreateStorageRoom.js';\nexport * from './api/commands/storageRoom/useDeleteStorageRoom.js';\nexport * from './api/commands/storageRoom/useUpdateStorageRoom.js';\nexport * from './api/commands/supplier/useCreateSupplierComment.js';\nexport * from './api/commands/supplier/useCreateSupplierContact.js';\nexport * from './api/commands/supplier/useCreateSupplierForCompany.js';\nexport * from './api/commands/supplier/useDeleteCompanySupplier.js';\nexport * from './api/commands/supplier/useDeleteSupplierContactPerson.js';\nexport * from './api/commands/supplier/useEditSupplierContact.js';\nexport * from './api/commands/supplier/useEditSupplierForCompany.js';\nexport * from './api/commands/supplier/useSupplierMutations.js';\nexport * from './api/commands/supplier/useUpdateServiceCategories.js';\nexport * from './api/commands/supplier/useUpdateSupplierContactImage.js';\nexport * from './api/commands/supplier/useUploadSupplierLogo.js';\nexport * from './api/commands/task/useCreateTask.js';\nexport * from './api/commands/task/useDeleteTask.js';\nexport * from './api/commands/task/useCompleteTask.js';\nexport * from './api/commands/task/useUndoCompleteTask.js';\nexport * from './api/commands/task/useUpdateTask.js';\nexport * from './api/commands/thirdPartyInformation/useCompleteThirdPartyInformation.js';\nexport * from './api/commands/thirdPartyInformation/useCreateGjenpartsLetter.js';\nexport * from './api/commands/thirdPartyInformation/useCreateThirdPartyInformation.js';\nexport * from './api/commands/thirdPartyInformation/useCreateThreePOToSkatteetaten.js';\nexport * from './api/commands/thirdPartyInformation/useOverrideThirdPartyInformation.js';\nexport * from './api/commands/thirdPartyInformation/useReopenThirdPartyInformation.js';\nexport * from './api/commands/thirdPartyInformation/useUpdateThirdPartyInformation.js';\nexport * from './api/commands/user/useContactHooks.js';\nexport * from './api/commands/user/useDeleteProfilePicture.js';\nexport * from './api/commands/user/useResetPassword.js';\nexport * from './api/commands/user/useUpdateUser.js';\nexport * from './api/commands/user/useUploadProfilePicture.js';\nexport * from './api/commands/settlement/useCreateSettlement.js';\nexport * from './api/commands/settlement/useUpdateSettlement.js';\nexport * from './api/commands/settlement/useDeleteSettlement.js';\nexport * from './api/commands/settlement/useCloseSettlement.js';\nexport * from './api/commands/settlement/useCreateSettlementCustomCost.js';\nexport * from './api/commands/settlement/useUpdateSettlementCustomCost.js';\nexport * from './api/commands/settlement/useDeleteSettlementCustomCost.js';\nexport * from './api/commands/settlement/useCreateSettlementProviderConfiguration.js';\nexport * from './api/commands/settlement/useUpdateSettlementProviderConfiguration.js';\nexport * from './api/commands/settlement/useUpsertSettlementProviderCredentials.js';\nexport * from './api/queries/administration/useAgreementDetails.js';\nexport * from './api/queries/administration/useInsuranceAgreements.js';\nexport * from './api/queries/administration/useLoanAgreements.js';\nexport * from './api/queries/administration/useLoanChangeLog.js';\nexport * from './api/queries/administration/useTripletexDetails.js';\nexport * from './api/queries/board/useBoardMembers.js';\nexport * from './api/queries/board/useShowPersonnummerOnStyremedlem.js';\nexport * from './api/queries/communication/useAvailableBundles.js';\nexport * from './api/queries/communication/useAvailableSMS.js';\nexport * from './api/queries/communication/useNewsletter.js';\nexport * from './api/queries/communication/useNewsletters.js';\nexport * from './api/queries/communication/useNotificationgroupsEmail.js';\nexport * from './api/queries/communication/useNotificationgroupsSms.js';\nexport * from './api/queries/communication/useSMSAvailableForSMSBroadcastPost.js';\nexport * from './api/queries/communication/useSMSBroadcast.js';\nexport * from './api/queries/communication/useSMSBroadcasts.js';\nexport * from './api/queries/communication/useSMSPurchases.js';\nexport * from './api/queries/company/useActiveAdministrators.js';\nexport * from './api/queries/company/useAdministratorsForCompany.js';\nexport * from './api/queries/company/useAvailableAdministrators.js';\nexport * from './api/queries/company/useAvailableAdministratorsForCompany.js';\nexport * from './api/queries/company/useCompanies.js';\nexport * from './api/queries/company/useCompanyAddresses.js';\nexport * from './api/queries/company/useCompanyById.js';\nexport * from './api/queries/company/useCompanyDetailed.js';\nexport * from './api/queries/company/useCompanyDraft.js';\nexport * from './api/queries/company/useCompanyDrafts.js';\nexport * from './api/queries/company/useCompanyOrdinances.js';\nexport * from './api/queries/company/useCompanyTypes.js';\nexport * from './api/queries/company/useFractions.js';\nexport * from './api/queries/company/useNewlyManagedCompanies.js';\nexport * from './api/queries/conversation/useCompanyConversationCategoriesForRequests.js';\nexport * from './api/queries/conversation/useConversation.js';\nexport * from './api/queries/conversation/useConversationCategories.js';\nexport * from './api/queries/conversation/useConversationCategoriesOpen.js';\nexport * from './api/queries/conversation/useConversationCount.js';\nexport * from './api/queries/conversation/useConversations.js';\nexport * from './api/queries/conversation/useConversationsByParticipant.js';\nexport * from './api/queries/conversation/usePublicConversation.js';\nexport * from './api/queries/conversation/usePublicConversationAuth.js';\nexport * from './api/queries/conversation/useUnreadConversationsCount.js';\nexport * from './api/queries/countries/useCountries.js';\nexport * from './api/queries/document/useDocumentActions.js';\nexport * from './api/queries/document/useDocumenter.js';\nexport * from './api/queries/document/useDocumenterOfTypeForCompany.js';\nexport * from './api/queries/document/useDocuments.js';\nexport * from './api/queries/document/useGetDocumentURL.js';\nexport * from './api/queries/document/usePublicGetDocumentURL.js';\nexport * from './api/queries/document/useSearchDocumenterForCompany.js';\nexport * from './api/queries/economy/useCheckIfAccountingAvailable.js';\nexport * from './api/queries/economy/useCompaniesEconomyStatus.js';\nexport * from './api/queries/economy/useEconomicReports.js';\nexport * from './api/queries/economy/useInvoiceArchive.js';\nexport * from './api/queries/economy/useInvoiceForApprovalCount.js';\nexport * from './api/queries/economy/useInvoiceNotification.js';\nexport * from './api/queries/economy/useInvoices.js';\nexport * from './api/queries/economy/useStatus.js';\nexport * from './api/queries/economy/useUnattestedCounts.js';\nexport * from './api/queries/expense/useExpense.js';\nexport * from './api/queries/expense/useExpenseList.js';\nexport * from './api/queries/expense/useExpenseTypes.js';\nexport * from './api/queries/hms/useHMSReportRoutines.js';\nexport * from './api/queries/hms/useHMSSettings.js';\nexport * from './api/queries/homepage/useHomepage.js';\nexport * from './api/queries/homepage/useOpenHomepage.js';\nexport * from './api/queries/homepage/useOpenHomepageDocument.js';\nexport * from './api/queries/homepage/usePostDocuments.js';\nexport * from './api/queries/homepage/usePostNotificationgroups.js';\nexport * from './api/queries/homepage/useSMSAvailableForPost.js';\nexport * from './api/queries/invoicing/useAdHocGroupById.js';\nexport * from './api/queries/invoicing/useAdHocGroups.js';\nexport * from './api/queries/invoicing/useCheckTriplewinActivated.js';\nexport * from './api/queries/invoicing/useCreditNotes.js';\nexport * from './api/queries/invoicing/useCustomer.js';\nexport * from './api/queries/invoicing/useCustomerInvoices.js';\nexport * from './api/queries/invoicing/useCustomerMetadata.js';\nexport * from './api/queries/invoicing/useCustomerRecipient.js';\nexport * from './api/queries/invoicing/useCustomers.js';\nexport * from './api/queries/invoicing/useExpiredInvoices.js';\nexport * from './api/queries/invoicing/useHistoricInvoices.js';\nexport * from './api/queries/invoicing/useInvoicePlan.js';\nexport * from './api/queries/invoicing/useInvoicePlanDistributions.js';\nexport * from './api/queries/invoicing/useInvoicePlanLine.js';\nexport * from './api/queries/invoicing/useInvoicePlanLines.js';\nexport * from './api/queries/invoicing/useInvoicePlanTransactions.js';\nexport * from './api/queries/invoicing/useInvoicePlans.js';\nexport * from './api/queries/invoicing/useInvoicePlansForSection.js';\nexport * from './api/queries/invoicing/useInvoiceSettings.js';\nexport * from './api/queries/invoicing/useInvoicingAdHocLines.js';\nexport * from './api/queries/invoicing/useInvoicingExpiredByCustomer.js';\nexport * from './api/queries/invoicing/useInvoicingExpiredTypes.js';\nexport * from './api/queries/invoicing/useInvoicingInvoiceDetails.js';\nexport * from './api/queries/invoicing/useInvoicingPlanTypes.js';\nexport * from './api/queries/invoicing/useMassInvoiceForCompany.js';\nexport * from './api/queries/invoicing/useMassInvoicePdfPreview.js';\nexport * from './api/queries/invoicing/useMassInvoicePreview.js';\nexport * from './api/queries/invoicing/useOverdueInvoices.js';\nexport * from './api/queries/invoicing/usePlanSettings.js';\nexport * from './api/queries/invoicing/usePreview.js';\nexport * from './api/queries/invoicing/usePreviewPdf.js';\nexport * from './api/queries/invoicing/useProcessedPayments.js';\nexport * from './api/queries/invoicing/useQueuedInvoicePdf.js';\nexport * from './api/queries/invoicing/useQueuedInvoices.js';\nexport * from './api/queries/invoicing/useRecipient.js';\nexport * from './api/queries/invoicing/useSectionInvoices.js';\nexport * from './api/queries/invoicing/useUnprocessedPayments.js';\nexport * from './api/queries/invoicing/useUpcomingInvoicing.js';\nexport * from './api/queries/invoicing/useSectionInvoicesQueries.js';\nexport * from './api/queries/issue/useIssue.js';\nexport * from './api/queries/issue/useIssues.js';\nexport * from './api/queries/meeting/useMeetings.js';\nexport * from './api/queries/organization/useOrganization.js';\nexport * from './api/queries/organization/useOrganizationByOrgnr.js';\nexport * from './api/queries/organization/useOrganizations.js';\nexport * from './api/queries/organization/useOrganizationsInCompany.js';\nexport * from './api/queries/organization/useOtherOrganizations.js';\nexport * from './api/queries/parkingSpaces/useParkingSpaces.js';\nexport * from './api/queries/person/useOtherPersons.js';\nexport * from './api/queries/person/usePerson.js';\nexport * from './api/queries/person/usePersonSearch.js';\nexport * from './api/queries/person/usePersons.js';\nexport * from './api/queries/residentsAndSections/useDetailedPersonSearch.js';\nexport * from './api/queries/residentsAndSections/useExistingSectionTagsInCompany.js';\nexport * from './api/queries/residentsAndSections/useOwnershipChanges.js';\nexport * from './api/queries/residentsAndSections/usePersonalID.js';\nexport * from './api/queries/residentsAndSections/useResidentHistory.js';\nexport * from './api/queries/residentsAndSections/useResidentOccupancy.js';\nexport * from './api/queries/residentsAndSections/useResidentSearch.js';\nexport * from './api/queries/residentsAndSections/useResidentTypes.js';\nexport * from './api/queries/residentsAndSections/useResidents.js';\nexport * from './api/queries/residentsAndSections/useResidentsAndSections.js';\nexport * from './api/queries/residentsAndSections/useSectionOccupancy.js';\nexport * from './api/queries/residentsAndSections/useSectionStatus.js';\nexport * from './api/queries/residentsAndSections/useSectionTags.js';\nexport * from './api/queries/residentsAndSections/useSectionTenants.js';\nexport * from './api/queries/residentsAndSections/useSections.js';\nexport * from './api/queries/residentsAndSections/useSectionsSearch.js';\nexport * from './api/queries/residentsAndSections/useSectionsTags.js';\nexport * from './api/queries/routines/useAvailableRoutineTypes.js';\nexport * from './api/queries/routines/useCompanyFeatures.js';\nexport * from './api/queries/routines/useRoutine.js';\nexport * from './api/queries/routines/useRoutineGroupDrafts.js';\nexport * from './api/queries/routines/useRoutines.js';\nexport * from './api/queries/storageRoom/useStorageRooms.js';\nexport * from './api/queries/supplier/useSupplierContacts.js';\nexport * from './api/queries/supplier/useSupplierDetails.js';\nexport * from './api/queries/supplier/useSuppliers.js';\nexport * from './api/queries/supplier/useSuppliersAndContacts.js';\nexport * from './api/queries/supplier/useSuppliersLogo.js';\nexport * from './api/queries/task/useTasks.js';\nexport * from './api/queries/thirdPartyInformation/useSingleThirdPartyInformation.js';\nexport * from './api/queries/thirdPartyInformation/useSkatteetatenDialog.js';\nexport * from './api/queries/thirdPartyInformation/useThirdPartyInformation.js';\nexport * from './api/queries/thirdPartyInformation/useThirdPartyInformationLetters.js';\nexport * from './api/queries/thirdPartyInformation/useTotalsForThirdPartyInformation.js';\nexport * from './api/queries/user/useAuthedUser.js';\nexport * from './api/queries/user/useTranslation.js';\nexport * from './api/queries/user/useUser.js';\nexport * from './api/queries/user/useUserActions.js';\nexport * from './api/queries/user/useUserConversations.js';\nexport * from './api/queries/user/useUserDevices.js';\nexport * from './api/queries/user/useUserImage.js';\nexport * from './api/queries/settlement/useSettlements.js';\nexport * from './api/queries/settlement/useSettlement.js';\nexport * from './api/queries/settlement/useSettlementCustomCosts.js';\nexport * from './api/queries/settlement/useSettlementProviderConfigurations.js';\nexport * from './api/queries/settlement/useSettlementInvoices.js';\nexport * from './api/documentApi.js';\nexport * from './sdkProvider.js';\nexport * from './utils/dateTime.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\nexport * from './api/commands/board/useCreateBoardMember.js';\nexport * from './api/commands/board/useDeleteBoardMember.js';\nexport * from './api/commands/board/useInviteBoardMemberToSoliboHome.js';\nexport * from './api/commands/communication/useBuySMSBundle.js';\nexport * from './api/commands/communication/useCreateNewsletter.js';\nexport * from './api/commands/communication/useCreateSMSBroadcast.js';\nexport * from './api/commands/communication/useDeleteDocumentFromNewsletter.js';\nexport * from './api/commands/communication/useDeleteNewsletter.js';\nexport * from './api/commands/communication/useDeleteSMSBroadcast.js';\nexport * from './api/commands/communication/usePublishNewsletter.js';\nexport * from './api/commands/communication/usePublishSMSBroadcast.js';\nexport * from './api/commands/communication/useSignupNewsletter.js';\nexport * from './api/commands/communication/useUpdateNewsletter.js';\nexport * from './api/commands/communication/useUpdateSMSBroadcast.js';\nexport * from './api/commands/company/useCreateCompanyCustomerClaim.js';\nexport * from './api/commands/company/useDeleteFractions.js';\nexport * from './api/commands/company/useImportBorettslag.js';\nexport * from './api/commands/company/useImportCompanies.js';\nexport * from './api/commands/company/useImportDraft.js';\nexport * from './api/commands/company/useImportSameie.js';\nexport * from './api/commands/company/useImportSameieByAddress.js';\nexport * from './api/commands/company/useResetSales.js';\nexport * from './api/commands/company/useSaveCompanyDetailed.js';\nexport * from './api/commands/company/useSaveImportDraft.js';\nexport * from './api/commands/company/useUpdateActiveAdministrators.js';\nexport * from './api/commands/company/useUpdateAdministratorsForCompany.js';\nexport * from './api/commands/company/useUpdateCompanyDetailed.js';\nexport * from './api/commands/company/useUpdateCompanyOrdinances.js';\nexport * from './api/commands/company/useUpdateFractions.js';\nexport * from './api/commands/conversation/useCompleteConversation.js';\nexport * from './api/commands/conversation/useConversationBackInProgress.js';\nexport * from './api/commands/conversation/useCreateConversation.js';\nexport * from './api/commands/conversation/useCreateConversationCategory.js';\nexport * from './api/commands/conversation/useCreateConversationMessage.js';\nexport * from './api/commands/conversation/useCreateConversationParticipant.js';\nexport * from './api/commands/conversation/useCreateExternalConversationParticipant.js';\nexport * from './api/commands/conversation/useCreateInquiry.js';\nexport * from './api/commands/conversation/useCreateInquiryOpen.js';\nexport * from './api/commands/conversation/useCreateInternalConversationMessage.js';\nexport * from './api/commands/conversation/useCreatePublicConversationMessage.js';\nexport * from './api/commands/conversation/useDeleteConversation.js';\nexport * from './api/commands/conversation/useDeleteConversationCategory.js';\nexport * from './api/commands/conversation/useDeleteConversationParticipant.js';\nexport * from './api/commands/conversation/useMarkConversationRead.js';\nexport * from './api/commands/conversation/usePublicUploadDocumentToConversation.js';\nexport * from './api/commands/conversation/usePublishDraftConversation.js';\nexport * from './api/commands/conversation/useUpdateConversation.js';\nexport * from './api/commands/conversation/useUpdateConversationCategories.js';\nexport * from './api/commands/conversation/useUpdateConversationCategory.js';\nexport * from './api/commands/document/useCreateDocumentDirectory.js';\nexport * from './api/commands/document/useDeleteDocument.js';\nexport * from './api/commands/document/useMoveDocument.js';\nexport * from './api/commands/document/useMoveDocumentToTrash.js';\nexport * from './api/commands/document/useRemoveDocumentFromTrash.js';\nexport * from './api/commands/document/useRenameDocument.js';\nexport * from './api/commands/document/useUploadDocument.js';\nexport * from './api/commands/economy/useApproveInvoice.js';\nexport * from './api/commands/economy/useAttachDocumentToEconomicReport.js';\nexport * from './api/commands/economy/useCreateInvoiceNotice.js';\nexport * from './api/commands/economy/useOrderEconomicReport.js';\nexport * from './api/commands/economy/useRejectInvoice.js';\nexport * from './api/commands/economy/useUpdateInvoiceNotification.js';\nexport * from './api/commands/economy/useUpdateRealtimeInvoiceNotification.js';\nexport * from './api/commands/expense/useApproveExpense.js';\nexport * from './api/commands/expense/useCreateExpense.js';\nexport * from './api/commands/expense/useDeleteExpense.js';\nexport * from './api/commands/expense/useRejectExpense.js';\nexport * from './api/commands/hms/useSetupHMSSettings.js';\nexport * from './api/commands/hms/useUpdateHMSSettings.js';\nexport * from './api/commands/homepage/useCreatePost.js';\nexport * from './api/commands/homepage/useCreatePracticalInfo.js';\nexport * from './api/commands/homepage/useDeletePost.js';\nexport * from './api/commands/homepage/useDeletePracticalInfo.js';\nexport * from './api/commands/homepage/usePostContent.js';\nexport * from './api/commands/homepage/useUpdateFeedWeighting.js';\nexport * from './api/commands/homepage/useUpdatePost.js';\nexport * from './api/commands/homepage/useUpdatePracticalInfo.js';\nexport * from './api/commands/homepage/useUploadHomepageImage.js';\nexport * from './api/commands/insurance/useCloseInsurance.js';\nexport * from './api/commands/insurance/useCreateInsurance.js';\nexport * from './api/commands/insurance/useDeleteInsurance.js';\nexport * from './api/commands/invoicing/useActivateInvoiceLine.js';\nexport * from './api/commands/invoicing/useActivateInvoicingPlan.js';\nexport * from './api/commands/invoicing/useActivateTriplewin.js';\nexport * from './api/commands/invoicing/useCloseInvoice.js';\nexport * from './api/commands/invoicing/useCreateAdhocLinesForCompany.js';\nexport * from './api/commands/invoicing/useCreateCreditNote.js';\nexport * from './api/commands/invoicing/useCreateCustomer.js';\nexport * from './api/commands/invoicing/useCreateCustomerById.js';\nexport * from './api/commands/invoicing/useCreateCustomerComment.js';\nexport * from './api/commands/invoicing/useCreateFordelingsnokkel.js';\nexport * from './api/commands/invoicing/useCreateInvoicePlanLine.js';\nexport * from './api/commands/invoicing/useCreateInvoiceRecipient.js';\nexport * from './api/commands/invoicing/useCreateInvoicingPlan.js';\nexport * from './api/commands/invoicing/useDeactivateInvoiceLine.js';\nexport * from './api/commands/invoicing/useDeleteAdHocInvoicingLine.js';\nexport * from './api/commands/invoicing/useDeleteAdHocLineGroup.js';\nexport * from './api/commands/invoicing/useDeleteAdHocLines.js';\nexport * from './api/commands/invoicing/useDeleteDistribution.js';\nexport * from './api/commands/invoicing/useDeleteInvoiceRecipient.js';\nexport * from './api/commands/invoicing/useDeletePlannedInvoiceLineChanges.js';\nexport * from './api/commands/invoicing/useInvoicingMutations.js';\nexport * from './api/commands/invoicing/useRegisterPayment.js';\nexport * from './api/commands/invoicing/useToggleInvoicingPlanTransactionOverdue.js';\nexport * from './api/commands/invoicing/useUpdateAdhocLinesForCompany.js';\nexport * from './api/commands/invoicing/useUpdateCustomerMeta.js';\nexport * from './api/commands/invoicing/useUpdateFelleskostnaderSettings.js';\nexport * from './api/commands/invoicing/useUpdateFordelingsnokkel.js';\nexport * from './api/commands/invoicing/useUpdateInvoiceDelivery.js';\nexport * from './api/commands/invoicing/useUpdateInvoiceLine.js';\nexport * from './api/commands/invoicing/useUpdateInvoiceLineName.js';\nexport * from './api/commands/invoicing/useUpdateInvoiceSettings.js';\nexport * from './api/commands/issue/useChangeResponsible.js';\nexport * from './api/commands/issue/useCloseIssue.js';\nexport * from './api/commands/issue/useCreateConversationToIssue.js';\nexport * from './api/commands/issue/useCreateIssue.js';\nexport * from './api/commands/issue/useCreateIssueComment.js';\nexport * from './api/commands/issue/useCreateIssueToMeeting.js';\nexport * from './api/commands/issue/useCreateSectionToIssue.js';\nexport * from './api/commands/issue/useDeleteSectionFromIssue.js';\nexport * from './api/commands/issue/useReOpenIssue.js';\nexport * from './api/commands/issue/useRemoveConversationFromIssue.js';\nexport * from './api/commands/issue/useRemoveIssueFromMeeting.js';\nexport * from './api/commands/issue/useReorderIssueInMeeting.js';\nexport * from './api/commands/issue/useUpdateIssue.js';\nexport * from './api/commands/issue/useUpdateIssueConclusion.js';\nexport * from './api/commands/issue/useUpdateIssueReport.js';\nexport * from './api/commands/loan/useCreateLoan.js';\nexport * from './api/commands/loan/useDeleteLoan.js';\nexport * from './api/commands/loan/useSetMainDocumentId.js';\nexport * from './api/commands/loan/useUpdateLoan.js';\nexport * from './api/commands/meeting/useCloseMeeting.js';\nexport * from './api/commands/meeting/useCreateMeeting.js';\nexport * from './api/commands/meeting/useCreateMeetingSummons.js';\nexport * from './api/commands/meeting/useCreateSignatureReminder.js';\nexport * from './api/commands/meeting/useDeleteMeeting.js';\nexport * from './api/commands/meeting/useFollowUpIssueLater.js';\nexport * from './api/commands/meeting/useIssueTreated.js';\nexport * from './api/commands/meeting/useReOpenMeeting.js';\nexport * from './api/commands/meeting/useRegisterOppmote.js';\nexport * from './api/commands/meeting/useRsvp.js';\nexport * from './api/commands/meeting/useSign.js';\nexport * from './api/commands/meeting/useSignatureUnobtainable.js';\nexport * from './api/commands/meeting/useStartMeeting.js';\nexport * from './api/commands/meeting/useUpdateMeeting.js';\nexport * from './api/commands/meeting/useUpdateMeetingParticipants.js';\nexport * from './api/commands/organization/useAssignParkingSpaceToOrganization.js';\nexport * from './api/commands/organization/useAssignStorageRoomToOrganization.js';\nexport * from './api/commands/organization/useCreateEmployee.js';\nexport * from './api/commands/organization/useCreateEmployeeCompanyContactRole.js';\nexport * from './api/commands/organization/useCreateEmployeeSectionContactRole.js';\nexport * from './api/commands/organization/useDeleteEmployee.js';\nexport * from './api/commands/organization/useDeleteOrganizationFromSAM.js';\nexport * from './api/commands/organization/useMassUpdateOrganizations.js';\nexport * from './api/commands/organization/useRemoveCompanyContactRole.js';\nexport * from './api/commands/organization/useRemoveOrganizationRole.js';\nexport * from './api/commands/organization/useRemoveSectionContactRole.js';\nexport * from './api/commands/organization/useUnAssignParkingSpaceToOrganization.js';\nexport * from './api/commands/organization/useUnAssignStorageRoomToOrganization.js';\nexport * from './api/commands/organization/useUpdateEmployee.js';\nexport * from './api/commands/organization/useUpdateOrganization.js';\nexport * from './api/commands/parkingSpaces/useCreateParkingSpace.js';\nexport * from './api/commands/parkingSpaces/useDeleteParkingSpace.js';\nexport * from './api/commands/parkingSpaces/useUpdateParkingSpace.js';\nexport * from './api/commands/person/useAssignParkingSpaceToPerson.js';\nexport * from './api/commands/person/useAssignStorageRoomToPerson.js';\nexport * from './api/commands/person/useDeletePersonRole.js';\nexport * from './api/commands/person/useMassUpdatePerson.js';\nexport * from './api/commands/person/useMassUpdateRoles.js';\nexport * from './api/commands/person/useMergePerson.js';\nexport * from './api/commands/person/usePersonnummerSearch.js';\nexport * from './api/commands/person/useUnAssignParkingSpaceToPerson.js';\nexport * from './api/commands/person/useUnAssignStorageRoomToPerson.js';\nexport * from './api/commands/person/useUpdatePerson.js';\nexport * from './api/commands/person/useUpdateResidency.js';\nexport * from './api/commands/resident/useCreateOccupancyRecord.js';\nexport * from './api/commands/resident/useCreatePhysicalLetterToResidentInCompany.js';\nexport * from './api/commands/resident/useCreateResident.js';\nexport * from './api/commands/resident/useDeleteOccupancyRecord.js';\nexport * from './api/commands/resident/useRemovePersonFromCompany.js';\nexport * from './api/commands/resident/useRequestResidentChange.js';\nexport * from './api/commands/resident/useResidentActions.js';\nexport * from './api/commands/resident/useUpdateOccupancyRecord.js';\nexport * from './api/commands/resident/useUpdateOrganizationReservations.js';\nexport * from './api/commands/resident/useUpdatePersonReservations.js';\nexport * from './api/commands/resident/useUpdateResident.js';\nexport * from './api/commands/resident/useUpdateResidentNotat.js';\nexport * from './api/commands/routines/useCreateRoutine.js';\nexport * from './api/commands/routines/useDeleteRoutine.js';\nexport * from './api/commands/routines/useUpdateRoutine.js';\nexport * from './api/commands/section/useAssignParkingSpaceToSection.js';\nexport * from './api/commands/section/useAssignStorageRoomToSection.js';\nexport * from './api/commands/section/useCreateSection.js';\nexport * from './api/commands/section/useCreateSectionStatus.js';\nexport * from './api/commands/section/useCreateSubSection.js';\nexport * from './api/commands/section/useDeleteSection.js';\nexport * from './api/commands/section/useEierskifteSection.js';\nexport * from './api/commands/section/useMassUpdateSection.js';\nexport * from './api/commands/section/useRemoveSectionStatus.js';\nexport * from './api/commands/section/useTagOnSection.js';\nexport * from './api/commands/section/useUnAssignParkingSpaceToSection.js';\nexport * from './api/commands/section/useUnAssignStorageRoomToSection.js';\nexport * from './api/commands/section/useUpdateSection.js';\nexport * from './api/commands/section/useUpdateSectionNotat.js';\nexport * from './api/commands/section/useUpdateTagsOnSection.js';\nexport * from './api/commands/storageRoom/useCreateStorageRoom.js';\nexport * from './api/commands/storageRoom/useDeleteStorageRoom.js';\nexport * from './api/commands/storageRoom/useUpdateStorageRoom.js';\nexport * from './api/commands/supplier/useCreateSupplierComment.js';\nexport * from './api/commands/supplier/useCreateSupplierContact.js';\nexport * from './api/commands/supplier/useCreateSupplierForCompany.js';\nexport * from './api/commands/supplier/useDeleteCompanySupplier.js';\nexport * from './api/commands/supplier/useDeleteSupplierContactPerson.js';\nexport * from './api/commands/supplier/useEditSupplierContact.js';\nexport * from './api/commands/supplier/useEditSupplierForCompany.js';\nexport * from './api/commands/supplier/useSupplierMutations.js';\nexport * from './api/commands/supplier/useUpdateServiceCategories.js';\nexport * from './api/commands/supplier/useUpdateSupplierContactImage.js';\nexport * from './api/commands/supplier/useUploadSupplierLogo.js';\nexport * from './api/commands/task/useCreateTask.js';\nexport * from './api/commands/task/useDeleteTask.js';\nexport * from './api/commands/task/useCompleteTask.js';\nexport * from './api/commands/task/useUndoCompleteTask.js';\nexport * from './api/commands/task/useUpdateTask.js';\nexport * from './api/commands/thirdPartyInformation/useCompleteThirdPartyInformation.js';\nexport * from './api/commands/thirdPartyInformation/useCreateGjenpartsLetter.js';\nexport * from './api/commands/thirdPartyInformation/useCreateThirdPartyInformation.js';\nexport * from './api/commands/thirdPartyInformation/useCreateThreePOToSkatteetaten.js';\nexport * from './api/commands/thirdPartyInformation/useOverrideThirdPartyInformation.js';\nexport * from './api/commands/thirdPartyInformation/useReopenThirdPartyInformation.js';\nexport * from './api/commands/thirdPartyInformation/useUpdateThirdPartyInformation.js';\nexport * from './api/commands/user/useContactHooks.js';\nexport * from './api/commands/user/useDeleteProfilePicture.js';\nexport * from './api/commands/user/useResetPassword.js';\nexport * from './api/commands/user/useUpdateUser.js';\nexport * from './api/commands/user/useMfa.js';\nexport * from './api/commands/user/useUploadProfilePicture.js';\nexport * from './api/commands/settlement/useCreateSettlement.js';\nexport * from './api/commands/settlement/useUpdateSettlement.js';\nexport * from './api/commands/settlement/useDeleteSettlement.js';\nexport * from './api/commands/settlement/useCloseSettlement.js';\nexport * from './api/commands/settlement/useCreateSettlementCustomCost.js';\nexport * from './api/commands/settlement/useUpdateSettlementCustomCost.js';\nexport * from './api/commands/settlement/useDeleteSettlementCustomCost.js';\nexport * from './api/commands/settlement/useCreateSettlementProviderConfiguration.js';\nexport * from './api/commands/settlement/useUpdateSettlementProviderConfiguration.js';\nexport * from './api/commands/settlement/useUpsertSettlementProviderCredentials.js';\nexport * from './api/queries/administration/useAgreementDetails.js';\nexport * from './api/queries/administration/useInsuranceAgreements.js';\nexport * from './api/queries/administration/useLoanAgreements.js';\nexport * from './api/queries/administration/useLoanChangeLog.js';\nexport * from './api/queries/administration/useTripletexDetails.js';\nexport * from './api/queries/board/useBoardMembers.js';\nexport * from './api/queries/board/useShowPersonnummerOnStyremedlem.js';\nexport * from './api/queries/communication/useAvailableBundles.js';\nexport * from './api/queries/communication/useAvailableSMS.js';\nexport * from './api/queries/communication/useNewsletter.js';\nexport * from './api/queries/communication/useNewsletters.js';\nexport * from './api/queries/communication/useNotificationgroupsEmail.js';\nexport * from './api/queries/communication/useNotificationgroupsSms.js';\nexport * from './api/queries/communication/useSMSAvailableForSMSBroadcastPost.js';\nexport * from './api/queries/communication/useSMSBroadcast.js';\nexport * from './api/queries/communication/useSMSBroadcasts.js';\nexport * from './api/queries/communication/useSMSPurchases.js';\nexport * from './api/queries/company/useActiveAdministrators.js';\nexport * from './api/queries/company/useAdministratorsForCompany.js';\nexport * from './api/queries/company/useAvailableAdministrators.js';\nexport * from './api/queries/company/useAvailableAdministratorsForCompany.js';\nexport * from './api/queries/company/useCompanies.js';\nexport * from './api/queries/company/useCompanyAddresses.js';\nexport * from './api/queries/company/useCompanyById.js';\nexport * from './api/queries/company/useCompanyDetailed.js';\nexport * from './api/queries/company/useCompanyDraft.js';\nexport * from './api/queries/company/useCompanyDrafts.js';\nexport * from './api/queries/company/useCompanyOrdinances.js';\nexport * from './api/queries/company/useCompanyTypes.js';\nexport * from './api/queries/company/useFractions.js';\nexport * from './api/queries/company/useNewlyManagedCompanies.js';\nexport * from './api/queries/conversation/useCompanyConversationCategoriesForRequests.js';\nexport * from './api/queries/conversation/useConversation.js';\nexport * from './api/queries/conversation/useConversationCategories.js';\nexport * from './api/queries/conversation/useConversationCategoriesOpen.js';\nexport * from './api/queries/conversation/useConversationCount.js';\nexport * from './api/queries/conversation/useConversations.js';\nexport * from './api/queries/conversation/useConversationsByParticipant.js';\nexport * from './api/queries/conversation/usePublicConversation.js';\nexport * from './api/queries/conversation/usePublicConversationAuth.js';\nexport * from './api/queries/conversation/useUnreadConversationsCount.js';\nexport * from './api/queries/countries/useCountries.js';\nexport * from './api/queries/document/useDocumentActions.js';\nexport * from './api/queries/document/useDocumenter.js';\nexport * from './api/queries/document/useDocumenterOfTypeForCompany.js';\nexport * from './api/queries/document/useDocuments.js';\nexport * from './api/queries/document/useGetDocumentURL.js';\nexport * from './api/queries/document/usePublicGetDocumentURL.js';\nexport * from './api/queries/document/useSearchDocumenterForCompany.js';\nexport * from './api/queries/economy/useCheckIfAccountingAvailable.js';\nexport * from './api/queries/economy/useCompaniesEconomyStatus.js';\nexport * from './api/queries/economy/useEconomicReports.js';\nexport * from './api/queries/economy/useInvoiceArchive.js';\nexport * from './api/queries/economy/useInvoiceForApprovalCount.js';\nexport * from './api/queries/economy/useInvoiceNotification.js';\nexport * from './api/queries/economy/useInvoices.js';\nexport * from './api/queries/economy/useStatus.js';\nexport * from './api/queries/economy/useUnattestedCounts.js';\nexport * from './api/queries/expense/useExpense.js';\nexport * from './api/queries/expense/useExpenseList.js';\nexport * from './api/queries/expense/useExpenseTypes.js';\nexport * from './api/queries/hms/useHMSReportRoutines.js';\nexport * from './api/queries/hms/useHMSSettings.js';\nexport * from './api/queries/homepage/useHomepage.js';\nexport * from './api/queries/homepage/useOpenHomepage.js';\nexport * from './api/queries/homepage/useOpenHomepageDocument.js';\nexport * from './api/queries/homepage/usePostDocuments.js';\nexport * from './api/queries/homepage/usePostNotificationgroups.js';\nexport * from './api/queries/homepage/useSMSAvailableForPost.js';\nexport * from './api/queries/invoicing/useAdHocGroupById.js';\nexport * from './api/queries/invoicing/useAdHocGroups.js';\nexport * from './api/queries/invoicing/useCheckTriplewinActivated.js';\nexport * from './api/queries/invoicing/useCreditNotes.js';\nexport * from './api/queries/invoicing/useCustomer.js';\nexport * from './api/queries/invoicing/useCustomerInvoices.js';\nexport * from './api/queries/invoicing/useCustomerMetadata.js';\nexport * from './api/queries/invoicing/useCustomerRecipient.js';\nexport * from './api/queries/invoicing/useCustomers.js';\nexport * from './api/queries/invoicing/useExpiredInvoices.js';\nexport * from './api/queries/invoicing/useHistoricInvoices.js';\nexport * from './api/queries/invoicing/useInvoicePlan.js';\nexport * from './api/queries/invoicing/useInvoicePlanDistributions.js';\nexport * from './api/queries/invoicing/useInvoicePlanLine.js';\nexport * from './api/queries/invoicing/useInvoicePlanLines.js';\nexport * from './api/queries/invoicing/useInvoicePlanTransactions.js';\nexport * from './api/queries/invoicing/useInvoicePlans.js';\nexport * from './api/queries/invoicing/useInvoicePlansForSection.js';\nexport * from './api/queries/invoicing/useInvoiceSettings.js';\nexport * from './api/queries/invoicing/useInvoicingAdHocLines.js';\nexport * from './api/queries/invoicing/useInvoicingExpiredByCustomer.js';\nexport * from './api/queries/invoicing/useInvoicingExpiredTypes.js';\nexport * from './api/queries/invoicing/useInvoicingInvoiceDetails.js';\nexport * from './api/queries/invoicing/useInvoicingPlanTypes.js';\nexport * from './api/queries/invoicing/useMassInvoiceForCompany.js';\nexport * from './api/queries/invoicing/useMassInvoicePdfPreview.js';\nexport * from './api/queries/invoicing/useMassInvoicePreview.js';\nexport * from './api/queries/invoicing/useOverdueInvoices.js';\nexport * from './api/queries/invoicing/usePlanSettings.js';\nexport * from './api/queries/invoicing/usePreview.js';\nexport * from './api/queries/invoicing/usePreviewPdf.js';\nexport * from './api/queries/invoicing/useProcessedPayments.js';\nexport * from './api/queries/invoicing/useQueuedInvoicePdf.js';\nexport * from './api/queries/invoicing/useQueuedInvoices.js';\nexport * from './api/queries/invoicing/useRecipient.js';\nexport * from './api/queries/invoicing/useSectionInvoices.js';\nexport * from './api/queries/invoicing/useUnprocessedPayments.js';\nexport * from './api/queries/invoicing/useUpcomingInvoicing.js';\nexport * from './api/queries/invoicing/useSectionInvoicesQueries.js';\nexport * from './api/queries/issue/useIssue.js';\nexport * from './api/queries/issue/useIssues.js';\nexport * from './api/queries/meeting/useMeetings.js';\nexport * from './api/queries/organization/useOrganization.js';\nexport * from './api/queries/organization/useOrganizationByOrgnr.js';\nexport * from './api/queries/organization/useOrganizations.js';\nexport * from './api/queries/organization/useOrganizationsInCompany.js';\nexport * from './api/queries/organization/useOtherOrganizations.js';\nexport * from './api/queries/parkingSpaces/useParkingSpaces.js';\nexport * from './api/queries/person/useOtherPersons.js';\nexport * from './api/queries/person/usePerson.js';\nexport * from './api/queries/person/usePersonSearch.js';\nexport * from './api/queries/person/usePersons.js';\nexport * from './api/queries/residentsAndSections/useDetailedPersonSearch.js';\nexport * from './api/queries/residentsAndSections/useExistingSectionTagsInCompany.js';\nexport * from './api/queries/residentsAndSections/useOwnershipChanges.js';\nexport * from './api/queries/residentsAndSections/usePersonalID.js';\nexport * from './api/queries/residentsAndSections/useResidentHistory.js';\nexport * from './api/queries/residentsAndSections/useResidentOccupancy.js';\nexport * from './api/queries/residentsAndSections/useResidentSearch.js';\nexport * from './api/queries/residentsAndSections/useResidentTypes.js';\nexport * from './api/queries/residentsAndSections/useResidents.js';\nexport * from './api/queries/residentsAndSections/useResidentsAndSections.js';\nexport * from './api/queries/residentsAndSections/useSectionOccupancy.js';\nexport * from './api/queries/residentsAndSections/useSectionStatus.js';\nexport * from './api/queries/residentsAndSections/useSectionTags.js';\nexport * from './api/queries/residentsAndSections/useSectionTenants.js';\nexport * from './api/queries/residentsAndSections/useSections.js';\nexport * from './api/queries/residentsAndSections/useSectionsSearch.js';\nexport * from './api/queries/residentsAndSections/useSectionsTags.js';\nexport * from './api/queries/routines/useAvailableRoutineTypes.js';\nexport * from './api/queries/routines/useCompanyFeatures.js';\nexport * from './api/queries/routines/useRoutine.js';\nexport * from './api/queries/routines/useRoutineGroupDrafts.js';\nexport * from './api/queries/routines/useRoutines.js';\nexport * from './api/queries/storageRoom/useStorageRooms.js';\nexport * from './api/queries/supplier/useSupplierContacts.js';\nexport * from './api/queries/supplier/useSupplierDetails.js';\nexport * from './api/queries/supplier/useSuppliers.js';\nexport * from './api/queries/supplier/useSuppliersAndContacts.js';\nexport * from './api/queries/supplier/useSuppliersLogo.js';\nexport * from './api/queries/task/useTasks.js';\nexport * from './api/queries/thirdPartyInformation/useSingleThirdPartyInformation.js';\nexport * from './api/queries/thirdPartyInformation/useSkatteetatenDialog.js';\nexport * from './api/queries/thirdPartyInformation/useThirdPartyInformation.js';\nexport * from './api/queries/thirdPartyInformation/useThirdPartyInformationLetters.js';\nexport * from './api/queries/thirdPartyInformation/useTotalsForThirdPartyInformation.js';\nexport * from './api/queries/user/useAuthedUser.js';\nexport * from './api/queries/user/useTranslation.js';\nexport * from './api/queries/user/useUser.js';\nexport * from './api/queries/user/useUserActions.js';\nexport * from './api/queries/user/useUserConversations.js';\nexport * from './api/queries/user/useUserDevices.js';\nexport * from './api/queries/user/useUserImage.js';\nexport * from './api/queries/settlement/useSettlements.js';\nexport * from './api/queries/settlement/useSettlement.js';\nexport * from './api/queries/settlement/useSettlementCustomCosts.js';\nexport * from './api/queries/settlement/useSettlementProviderConfigurations.js';\nexport * from './api/queries/settlement/useSettlementInvoices.js';\nexport * from './api/documentApi.js';\nexport * from './sdkProvider.js';\nexport * from './utils/dateTime.js';\n"]}
|