@solibo/solibo-react 1.12.2 → 1.13.0

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,7 @@
1
+ import { accountingOverviewQueryOptions, accountingPortfolioOverviewQueryOptions, accountingProjectQueryOptions, accountingEntriesQueryOptions, companyAccountingEntriesQueryOptions } from '@solibo/solibo-query';
2
+ import type { RestParams } from '../../../utils/restParams.js';
3
+ export declare const useAccountingOverview: (...args: RestParams<typeof accountingOverviewQueryOptions>) => import("@tanstack/react-query").UseQueryResult<import("@solibo/solibo-sdk").AccountingOverviewResult, Error>;
4
+ export declare const useAccountingPortfolioOverview: (...args: RestParams<typeof accountingPortfolioOverviewQueryOptions>) => import("@tanstack/react-query").UseInfiniteQueryResult<import("@tanstack/query-core").InfiniteData<import("@solibo/solibo-sdk").AccountingPortfolioResult, unknown>, Error>;
5
+ export declare const useAccountingProject: (...args: RestParams<typeof accountingProjectQueryOptions>) => import("@tanstack/react-query").UseQueryResult<import("@solibo/solibo-sdk").AccountingProjectResult, Error>;
6
+ export declare const useAccountingEntries: (...args: RestParams<typeof accountingEntriesQueryOptions>) => import("@tanstack/react-query").UseInfiniteQueryResult<import("@tanstack/query-core").InfiniteData<import("@solibo/solibo-sdk").AccountingEntriesResult, unknown>, Error>;
7
+ export declare const useCompanyAccountingEntries: (...args: RestParams<typeof companyAccountingEntriesQueryOptions>) => import("@tanstack/react-query").UseInfiniteQueryResult<import("@tanstack/query-core").InfiniteData<import("@solibo/solibo-sdk").AccountingEntriesResult, unknown>, Error>;
@@ -0,0 +1,24 @@
1
+ import { accountingOverviewQueryOptions, accountingPortfolioOverviewQueryOptions, accountingProjectQueryOptions, accountingEntriesQueryOptions, companyAccountingEntriesQueryOptions, } from '@solibo/solibo-query';
2
+ import { useInfiniteQuery, useQuery } from '@tanstack/react-query';
3
+ import { useSdk } from '../../../sdkProvider.js';
4
+ export const useAccountingOverview = (...args) => {
5
+ const sdk = useSdk();
6
+ return useQuery(accountingOverviewQueryOptions(sdk, ...args));
7
+ };
8
+ export const useAccountingPortfolioOverview = (...args) => {
9
+ const sdk = useSdk();
10
+ return useInfiniteQuery(accountingPortfolioOverviewQueryOptions(sdk, ...args));
11
+ };
12
+ export const useAccountingProject = (...args) => {
13
+ const sdk = useSdk();
14
+ return useQuery(accountingProjectQueryOptions(sdk, ...args));
15
+ };
16
+ export const useAccountingEntries = (...args) => {
17
+ const sdk = useSdk();
18
+ return useInfiniteQuery(accountingEntriesQueryOptions(sdk, ...args));
19
+ };
20
+ export const useCompanyAccountingEntries = (...args) => {
21
+ const sdk = useSdk();
22
+ return useInfiniteQuery(companyAccountingEntriesQueryOptions(sdk, ...args));
23
+ };
24
+ //# sourceMappingURL=useAccounting.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useAccounting.js","sourceRoot":"","sources":["../../../../src/api/queries/accounting/useAccounting.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,8BAA8B,EAC9B,uCAAuC,EACvC,6BAA6B,EAC7B,6BAA6B,EAC7B,oCAAoC,GACvC,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACnE,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AAGjD,MAAM,CAAC,MAAM,qBAAqB,GAAG,CACjC,GAAG,IAAuD,EAC5D,EAAE;IACA,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,QAAQ,CAAC,8BAA8B,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;AAClE,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAC1C,GAAG,IAAgE,EACrE,EAAE;IACA,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,gBAAgB,CACnB,uCAAuC,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CACxD,CAAC;AACN,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAChC,GAAG,IAAsD,EAC3D,EAAE;IACA,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,QAAQ,CAAC,6BAA6B,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;AACjE,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAChC,GAAG,IAAsD,EAC3D,EAAE;IACA,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,gBAAgB,CAAC,6BAA6B,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;AACzE,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,2BAA2B,GAAG,CACvC,GAAG,IAA6D,EAClE,EAAE;IACA,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,gBAAgB,CAAC,oCAAoC,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;AAChF,CAAC,CAAC","sourcesContent":["import {\n accountingOverviewQueryOptions,\n accountingPortfolioOverviewQueryOptions,\n accountingProjectQueryOptions,\n accountingEntriesQueryOptions,\n companyAccountingEntriesQueryOptions,\n} from '@solibo/solibo-query';\nimport { useInfiniteQuery, useQuery } from '@tanstack/react-query';\nimport { useSdk } from '../../../sdkProvider.js';\nimport type { RestParams } from '../../../utils/restParams.js';\n\nexport const useAccountingOverview = (\n ...args: RestParams<typeof accountingOverviewQueryOptions>\n) => {\n const sdk = useSdk();\n return useQuery(accountingOverviewQueryOptions(sdk, ...args));\n};\n\nexport const useAccountingPortfolioOverview = (\n ...args: RestParams<typeof accountingPortfolioOverviewQueryOptions>\n) => {\n const sdk = useSdk();\n return useInfiniteQuery(\n accountingPortfolioOverviewQueryOptions(sdk, ...args)\n );\n};\n\nexport const useAccountingProject = (\n ...args: RestParams<typeof accountingProjectQueryOptions>\n) => {\n const sdk = useSdk();\n return useQuery(accountingProjectQueryOptions(sdk, ...args));\n};\n\nexport const useAccountingEntries = (\n ...args: RestParams<typeof accountingEntriesQueryOptions>\n) => {\n const sdk = useSdk();\n return useInfiniteQuery(accountingEntriesQueryOptions(sdk, ...args));\n};\n\nexport const useCompanyAccountingEntries = (\n ...args: RestParams<typeof companyAccountingEntriesQueryOptions>\n) => {\n const sdk = useSdk();\n return useInfiniteQuery(companyAccountingEntriesQueryOptions(sdk, ...args));\n};\n"]}
package/dist/index.d.ts CHANGED
@@ -488,3 +488,4 @@ export * from './api/queries/user/useUserActions.js';
488
488
  export * from './api/queries/user/useUserConversations.js';
489
489
  export * from './api/queries/user/useUserDevices.js';
490
490
  export * from './api/queries/user/useUserImage.js';
491
+ export * from './api/queries/accounting/useAccounting.js';
package/dist/index.js CHANGED
@@ -486,4 +486,5 @@ export * from './api/queries/user/useUserActions.js';
486
486
  export * from './api/queries/user/useUserConversations.js';
487
487
  export * from './api/queries/user/useUserDevices.js';
488
488
  export * from './api/queries/user/useUserImage.js';
489
+ export * from './api/queries/accounting/useAccounting.js';
489
490
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["import './utils/bigint-polyfill.js';\n\n// React owns hooks and its provider. Import SDK models/client APIs from\n// @solibo/solibo-sdk and query factories/keys from @solibo/solibo-query.\nexport type { RestParams } from './utils/restParams.js';\n\n// React-specific exports\nexport {\n SoliboProvider,\n SdkProvider,\n useSoliboApi,\n useSdk,\n SoliboContext,\n createSdk,\n} from './sdkProvider.js';\nexport type { CreateSdkArgs } from './sdkProvider.js';\nexport { useMutation } from './utils/useMutation.js';\nexport type { MutationResultWithValidation } from './utils/useMutation.js';\nexport {\n useOpenApiOperationMutation,\n useOpenApiOperationQuery,\n} from './api/useOpenApiOperation.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/useCreatePushNotificationRead.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/useReportPushNotificationRead.js';\nexport * from './api/commands/communication/useReportPushNotificationReceived.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/useImportCompanies.js';\nexport * from './api/commands/company/useImportDraft.js';\nexport * from './api/commands/company/useImportHousingAssociation.js';\nexport * from './api/commands/company/useImportHousingCooperative.js';\nexport * from './api/commands/company/useImportHousingCooperativeByAddress.js';\nexport * from './api/commands/company/useOffboardCompany.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/useCompleteMultipleConversations.js';\nexport * from './api/commands/conversation/useConversationFolders.js';\nexport * from './api/commands/conversation/useConversationMessageMutations.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/useCreateMultipleConversationFlags.js';\nexport * from './api/commands/conversation/useCreateMultipleConversationReads.js';\nexport * from './api/commands/conversation/useCreateMultipleConversationUnreads.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/useDeleteMultipleConversationFlags.js';\nexport * from './api/commands/conversation/useDeleteMultipleConversations.js';\nexport * from './api/commands/conversation/useMarkConversationRead.js';\nexport * from './api/commands/conversation/useMoveConversation.js';\nexport * from './api/commands/conversation/useMoveConversationToTrash.js';\nexport * from './api/commands/conversation/useMoveMultipleConversations.js';\nexport * from './api/commands/conversation/usePublicUploadDocumentToConversation.js';\nexport * from './api/commands/conversation/usePublishDraftConversation.js';\nexport * from './api/commands/conversation/useReOpenMultipleConversations.js';\nexport * from './api/commands/conversation/useRemoveConversationFromTrash.js';\nexport * from './api/commands/conversation/useRestoreMultipleConversations.js';\nexport * from './api/commands/conversation/useTrashMultipleConversations.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/conversation/usePushFallbackSettings.js';\nexport * from './api/commands/document/useCreateDocumentDirectory.js';\nexport * from './api/commands/document/useCreateDocumentReference.js';\nexport * from './api/commands/document/useDeleteDocument.js';\nexport * from './api/commands/document/useMoveDocument.js';\nexport * from './api/commands/document/useMoveMultipleDocuments.js';\nexport * from './api/commands/document/useMoveDocumentToTrash.js';\nexport * from './api/commands/document/useOfficeDocumentMutations.js';\nexport * from './api/commands/document/useRemoveDocumentFromTrash.js';\nexport * from './api/commands/document/useRestoreMultipleDocuments.js';\nexport * from './api/commands/document/useRenameDocument.js';\nexport * from './api/commands/document/useTrashMultipleDocuments.js';\nexport * from './api/commands/document/useUploadDocument.js';\nexport * from './api/commands/document/useIntegratedDocumentMutations.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/useDeleteEconomicReport.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/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/residentCommunication/useResidentCommunicationMutations.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/toggleOverdue.js';\nexport * from './api/commands/invoicing/toggleOverdues.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/useCreateAllocationKey.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/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/useDirectSendInvoice.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/useUpdateAdhocGroup.js';\nexport * from './api/commands/invoicing/useUpdateAdhocLinesForCompany.js';\nexport * from './api/commands/invoicing/useUpdateAllocationKey.js';\nexport * from './api/commands/invoicing/useUpdateCommonExpensesSettings.js';\nexport * from './api/commands/invoicing/useUpdateCustomerMeta.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/invoicing/useUpdateSectionInvoiceRecipient.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/useRegisterAttendance.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/useExportParkingSpaceAssets.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/usePersonalIdentityNumberSearch.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/useUpdateResidentNote.js';\nexport * from './api/commands/resident/useTypedResidentMutations.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/scopedContact/useCreateScopedContact.js';\nexport * from './api/commands/scopedContact/useDeleteScopedContact.js';\nexport * from './api/commands/scopedContact/useExpireScopedContact.js';\nexport * from './api/commands/scopedContact/useResolveUserContact.js';\nexport * from './api/commands/scopedContact/useUpdateScopedContact.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/useExportSectionAssets.js';\nexport * from './api/commands/section/useMassUpdateSection.js';\nexport * from './api/commands/section/useOwnershipChangeMutations.js';\nexport * from './api/commands/section/useOwnershipTransferSection.js';\nexport * from './api/commands/section/useRemoveSectionStatus.js';\nexport * from './api/commands/section/useSectionStructure.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/useUpdateSectionNote.js';\nexport * from './api/commands/section/useUpdateTagsOnSection.js';\nexport * from './api/commands/settlement/useCloseSettlement.js';\nexport * from './api/commands/settlement/useCreateSettlement.js';\nexport * from './api/commands/settlement/useCreateSettlementCustomCost.js';\nexport * from './api/commands/settlement/useCreateSettlementProviderConfiguration.js';\nexport * from './api/commands/settlement/useDeleteSettlement.js';\nexport * from './api/commands/settlement/useDeleteSettlementCustomCost.js';\nexport * from './api/commands/settlement/useUpdateSettlement.js';\nexport * from './api/commands/settlement/useUpdateSettlementCustomCost.js';\nexport * from './api/commands/settlement/useUpdateSettlementProviderConfiguration.js';\nexport * from './api/commands/settlement/useUpsertSettlementProviderCredentials.js';\nexport * from './api/commands/storageRoom/useCreateStorageRoom.js';\nexport * from './api/commands/storageRoom/useDeleteStorageRoom.js';\nexport * from './api/commands/storageRoom/useExportStorageRooms.js';\nexport * from './api/commands/storageRoom/useUpdateStorageRoom.js';\nexport * from './api/commands/supplier/useCreateSupplier.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/useUpdateSupplier.js';\nexport * from './api/commands/supplier/useUpdateSupplierContactImage.js';\nexport * from './api/commands/supplier/useUploadSupplierLogo.js';\nexport * from './api/commands/task/useCompleteTask.js';\nexport * from './api/commands/task/useCreateTask.js';\nexport * from './api/commands/task/useDeleteTask.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/useCreateDuplicateLetter.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/useFCMDevice.js';\nexport * from './api/commands/user/useMfa.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/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/useShowPersonalIdentityNumberOnBoardMember.js';\nexport * from './api/queries/communication/useAvailableBundles.js';\nexport * from './api/queries/communication/useAvailableSMS.js';\nexport * from './api/queries/communication/useCommunicationReport.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/usePushNotificationInbox.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/useConversationCountByCompany.js';\nexport * from './api/queries/conversation/useConversationFolders.js';\nexport * from './api/queries/conversation/useConversationMessageHistory.js';\nexport * from './api/queries/conversation/useConversations.js';\nexport * from './api/queries/conversation/useConversationsByParticipant.js';\nexport * from './api/queries/conversation/useIndexConversations.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/conversation/usePushFallbackSettings.js';\nexport * from './api/queries/countries/useCountries.js';\nexport * from './api/queries/document/useDocumentActions.js';\nexport * from './api/queries/document/useDocuments.js';\nexport * from './api/queries/document/useDocumentsOfTypeForCompany.js';\nexport * from './api/queries/document/useGetDocumentURL.js';\nexport * from './api/queries/document/useOfficeDocumentCandidates.js';\nexport * from './api/queries/document/usePublicGetDocumentURL.js';\nexport * from './api/queries/document/useSearchDocumentsForCompany.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/useSupplierInvoiceApprovalCounts.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/useHomepageFeed.js';\nexport * from './api/queries/homepage/useHomepageFeedPost.js';\nexport * from './api/queries/homepage/useHomepageRss.js';\nexport * from './api/queries/homepage/useOpenHomepage.js';\nexport * from './api/queries/homepage/useOpenHomepageDocument.js';\nexport * from './api/queries/homepage/useOpenHomepageFeed.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/residentCommunication/useResidentCommunication.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/useSectionInvoicesQueries.js';\nexport * from './api/queries/invoicing/useUnprocessedPayments.js';\nexport * from './api/queries/invoicing/useUpcomingInvoicing.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/parkingSpaces/useParkingSpaceOperations.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/useLoansByFraction.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/useResident.js';\nexport * from './api/queries/residentsAndSections/useResidentPeriods.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/useSection.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/scopedContact/useScopedContacts.js';\nexport * from './api/queries/settlement/useSettlement.js';\nexport * from './api/queries/settlement/useSettlementCustomCost.js';\nexport * from './api/queries/settlement/useSettlementCustomCosts.js';\nexport * from './api/queries/settlement/useSettlementInvoices.js';\nexport * from './api/queries/settlement/useSettlementProviderConfiguration.js';\nexport * from './api/queries/settlement/useSettlementProviderConfigurations.js';\nexport * from './api/queries/settlement/useSettlementProviders.js';\nexport * from './api/queries/settlement/useSettlementTypes.js';\nexport * from './api/queries/settlement/useSettlements.js';\nexport * from './api/queries/storageRoom/useStorageRooms.js';\nexport * from './api/queries/storageRoom/useStorageRoomOperations.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';\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// React owns hooks and its provider. Import SDK models/client APIs from\n// @solibo/solibo-sdk and query factories/keys from @solibo/solibo-query.\nexport type { RestParams } from './utils/restParams.js';\n\n// React-specific exports\nexport {\n SoliboProvider,\n SdkProvider,\n useSoliboApi,\n useSdk,\n SoliboContext,\n createSdk,\n} from './sdkProvider.js';\nexport type { CreateSdkArgs } from './sdkProvider.js';\nexport { useMutation } from './utils/useMutation.js';\nexport type { MutationResultWithValidation } from './utils/useMutation.js';\nexport {\n useOpenApiOperationMutation,\n useOpenApiOperationQuery,\n} from './api/useOpenApiOperation.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/useCreatePushNotificationRead.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/useReportPushNotificationRead.js';\nexport * from './api/commands/communication/useReportPushNotificationReceived.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/useImportCompanies.js';\nexport * from './api/commands/company/useImportDraft.js';\nexport * from './api/commands/company/useImportHousingAssociation.js';\nexport * from './api/commands/company/useImportHousingCooperative.js';\nexport * from './api/commands/company/useImportHousingCooperativeByAddress.js';\nexport * from './api/commands/company/useOffboardCompany.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/useCompleteMultipleConversations.js';\nexport * from './api/commands/conversation/useConversationFolders.js';\nexport * from './api/commands/conversation/useConversationMessageMutations.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/useCreateMultipleConversationFlags.js';\nexport * from './api/commands/conversation/useCreateMultipleConversationReads.js';\nexport * from './api/commands/conversation/useCreateMultipleConversationUnreads.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/useDeleteMultipleConversationFlags.js';\nexport * from './api/commands/conversation/useDeleteMultipleConversations.js';\nexport * from './api/commands/conversation/useMarkConversationRead.js';\nexport * from './api/commands/conversation/useMoveConversation.js';\nexport * from './api/commands/conversation/useMoveConversationToTrash.js';\nexport * from './api/commands/conversation/useMoveMultipleConversations.js';\nexport * from './api/commands/conversation/usePublicUploadDocumentToConversation.js';\nexport * from './api/commands/conversation/usePublishDraftConversation.js';\nexport * from './api/commands/conversation/useReOpenMultipleConversations.js';\nexport * from './api/commands/conversation/useRemoveConversationFromTrash.js';\nexport * from './api/commands/conversation/useRestoreMultipleConversations.js';\nexport * from './api/commands/conversation/useTrashMultipleConversations.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/conversation/usePushFallbackSettings.js';\nexport * from './api/commands/document/useCreateDocumentDirectory.js';\nexport * from './api/commands/document/useCreateDocumentReference.js';\nexport * from './api/commands/document/useDeleteDocument.js';\nexport * from './api/commands/document/useMoveDocument.js';\nexport * from './api/commands/document/useMoveMultipleDocuments.js';\nexport * from './api/commands/document/useMoveDocumentToTrash.js';\nexport * from './api/commands/document/useOfficeDocumentMutations.js';\nexport * from './api/commands/document/useRemoveDocumentFromTrash.js';\nexport * from './api/commands/document/useRestoreMultipleDocuments.js';\nexport * from './api/commands/document/useRenameDocument.js';\nexport * from './api/commands/document/useTrashMultipleDocuments.js';\nexport * from './api/commands/document/useUploadDocument.js';\nexport * from './api/commands/document/useIntegratedDocumentMutations.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/useDeleteEconomicReport.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/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/residentCommunication/useResidentCommunicationMutations.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/toggleOverdue.js';\nexport * from './api/commands/invoicing/toggleOverdues.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/useCreateAllocationKey.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/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/useDirectSendInvoice.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/useUpdateAdhocGroup.js';\nexport * from './api/commands/invoicing/useUpdateAdhocLinesForCompany.js';\nexport * from './api/commands/invoicing/useUpdateAllocationKey.js';\nexport * from './api/commands/invoicing/useUpdateCommonExpensesSettings.js';\nexport * from './api/commands/invoicing/useUpdateCustomerMeta.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/invoicing/useUpdateSectionInvoiceRecipient.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/useRegisterAttendance.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/useExportParkingSpaceAssets.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/usePersonalIdentityNumberSearch.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/useUpdateResidentNote.js';\nexport * from './api/commands/resident/useTypedResidentMutations.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/scopedContact/useCreateScopedContact.js';\nexport * from './api/commands/scopedContact/useDeleteScopedContact.js';\nexport * from './api/commands/scopedContact/useExpireScopedContact.js';\nexport * from './api/commands/scopedContact/useResolveUserContact.js';\nexport * from './api/commands/scopedContact/useUpdateScopedContact.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/useExportSectionAssets.js';\nexport * from './api/commands/section/useMassUpdateSection.js';\nexport * from './api/commands/section/useOwnershipChangeMutations.js';\nexport * from './api/commands/section/useOwnershipTransferSection.js';\nexport * from './api/commands/section/useRemoveSectionStatus.js';\nexport * from './api/commands/section/useSectionStructure.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/useUpdateSectionNote.js';\nexport * from './api/commands/section/useUpdateTagsOnSection.js';\nexport * from './api/commands/settlement/useCloseSettlement.js';\nexport * from './api/commands/settlement/useCreateSettlement.js';\nexport * from './api/commands/settlement/useCreateSettlementCustomCost.js';\nexport * from './api/commands/settlement/useCreateSettlementProviderConfiguration.js';\nexport * from './api/commands/settlement/useDeleteSettlement.js';\nexport * from './api/commands/settlement/useDeleteSettlementCustomCost.js';\nexport * from './api/commands/settlement/useUpdateSettlement.js';\nexport * from './api/commands/settlement/useUpdateSettlementCustomCost.js';\nexport * from './api/commands/settlement/useUpdateSettlementProviderConfiguration.js';\nexport * from './api/commands/settlement/useUpsertSettlementProviderCredentials.js';\nexport * from './api/commands/storageRoom/useCreateStorageRoom.js';\nexport * from './api/commands/storageRoom/useDeleteStorageRoom.js';\nexport * from './api/commands/storageRoom/useExportStorageRooms.js';\nexport * from './api/commands/storageRoom/useUpdateStorageRoom.js';\nexport * from './api/commands/supplier/useCreateSupplier.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/useUpdateSupplier.js';\nexport * from './api/commands/supplier/useUpdateSupplierContactImage.js';\nexport * from './api/commands/supplier/useUploadSupplierLogo.js';\nexport * from './api/commands/task/useCompleteTask.js';\nexport * from './api/commands/task/useCreateTask.js';\nexport * from './api/commands/task/useDeleteTask.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/useCreateDuplicateLetter.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/useFCMDevice.js';\nexport * from './api/commands/user/useMfa.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/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/useShowPersonalIdentityNumberOnBoardMember.js';\nexport * from './api/queries/communication/useAvailableBundles.js';\nexport * from './api/queries/communication/useAvailableSMS.js';\nexport * from './api/queries/communication/useCommunicationReport.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/usePushNotificationInbox.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/useConversationCountByCompany.js';\nexport * from './api/queries/conversation/useConversationFolders.js';\nexport * from './api/queries/conversation/useConversationMessageHistory.js';\nexport * from './api/queries/conversation/useConversations.js';\nexport * from './api/queries/conversation/useConversationsByParticipant.js';\nexport * from './api/queries/conversation/useIndexConversations.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/conversation/usePushFallbackSettings.js';\nexport * from './api/queries/countries/useCountries.js';\nexport * from './api/queries/document/useDocumentActions.js';\nexport * from './api/queries/document/useDocuments.js';\nexport * from './api/queries/document/useDocumentsOfTypeForCompany.js';\nexport * from './api/queries/document/useGetDocumentURL.js';\nexport * from './api/queries/document/useOfficeDocumentCandidates.js';\nexport * from './api/queries/document/usePublicGetDocumentURL.js';\nexport * from './api/queries/document/useSearchDocumentsForCompany.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/useSupplierInvoiceApprovalCounts.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/useHomepageFeed.js';\nexport * from './api/queries/homepage/useHomepageFeedPost.js';\nexport * from './api/queries/homepage/useHomepageRss.js';\nexport * from './api/queries/homepage/useOpenHomepage.js';\nexport * from './api/queries/homepage/useOpenHomepageDocument.js';\nexport * from './api/queries/homepage/useOpenHomepageFeed.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/residentCommunication/useResidentCommunication.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/useSectionInvoicesQueries.js';\nexport * from './api/queries/invoicing/useUnprocessedPayments.js';\nexport * from './api/queries/invoicing/useUpcomingInvoicing.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/parkingSpaces/useParkingSpaceOperations.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/useLoansByFraction.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/useResident.js';\nexport * from './api/queries/residentsAndSections/useResidentPeriods.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/useSection.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/scopedContact/useScopedContacts.js';\nexport * from './api/queries/settlement/useSettlement.js';\nexport * from './api/queries/settlement/useSettlementCustomCost.js';\nexport * from './api/queries/settlement/useSettlementCustomCosts.js';\nexport * from './api/queries/settlement/useSettlementInvoices.js';\nexport * from './api/queries/settlement/useSettlementProviderConfiguration.js';\nexport * from './api/queries/settlement/useSettlementProviderConfigurations.js';\nexport * from './api/queries/settlement/useSettlementProviders.js';\nexport * from './api/queries/settlement/useSettlementTypes.js';\nexport * from './api/queries/settlement/useSettlements.js';\nexport * from './api/queries/storageRoom/useStorageRooms.js';\nexport * from './api/queries/storageRoom/useStorageRoomOperations.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/accounting/useAccounting.js';\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solibo/solibo-react",
3
- "version": "1.12.2",
3
+ "version": "1.13.0",
4
4
  "description": "React hooks for Solibo SDK (wraps @solibo/solibo-query)",
5
5
  "homepage": "https://sdk.solibo.no",
6
6
  "repository": {
@@ -33,8 +33,8 @@
33
33
  "react": "^19.0.0"
34
34
  },
35
35
  "dependencies": {
36
- "@solibo/solibo-sdk": "1.12.2",
37
- "@solibo/solibo-query": "1.12.2"
36
+ "@solibo/solibo-sdk": "1.13.0",
37
+ "@solibo/solibo-query": "1.13.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@eslint/js": "^10.0.1",