@solibo/solibo-react 1.8.3 → 1.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/api/commands/communication/useReportPushNotificationReceived.d.ts +4 -0
  2. package/dist/api/commands/communication/useReportPushNotificationReceived.js +8 -0
  3. package/dist/api/commands/communication/useReportPushNotificationReceived.js.map +1 -0
  4. package/dist/api/commands/conversation/useCreateMultipleConversationFlags.d.ts +4 -0
  5. package/dist/api/commands/conversation/useCreateMultipleConversationFlags.js +10 -0
  6. package/dist/api/commands/conversation/useCreateMultipleConversationFlags.js.map +1 -0
  7. package/dist/api/commands/conversation/useCreateMultipleConversationReads.d.ts +4 -0
  8. package/dist/api/commands/conversation/useCreateMultipleConversationReads.js +10 -0
  9. package/dist/api/commands/conversation/useCreateMultipleConversationReads.js.map +1 -0
  10. package/dist/api/commands/conversation/useCreateMultipleConversationUnreads.d.ts +4 -0
  11. package/dist/api/commands/conversation/useCreateMultipleConversationUnreads.js +10 -0
  12. package/dist/api/commands/conversation/useCreateMultipleConversationUnreads.js.map +1 -0
  13. package/dist/api/commands/conversation/useDeleteMultipleConversationFlags.d.ts +4 -0
  14. package/dist/api/commands/conversation/useDeleteMultipleConversationFlags.js +10 -0
  15. package/dist/api/commands/conversation/useDeleteMultipleConversationFlags.js.map +1 -0
  16. package/dist/api/commands/conversation/useDeleteMultipleConversations.d.ts +4 -0
  17. package/dist/api/commands/conversation/useDeleteMultipleConversations.js +10 -0
  18. package/dist/api/commands/conversation/useDeleteMultipleConversations.js.map +1 -0
  19. package/dist/api/commands/conversation/useMoveMultipleConversations.d.ts +4 -0
  20. package/dist/api/commands/conversation/useMoveMultipleConversations.js +10 -0
  21. package/dist/api/commands/conversation/useMoveMultipleConversations.js.map +1 -0
  22. package/dist/api/commands/document/useMoveMultipleDocuments.d.ts +5 -0
  23. package/dist/api/commands/document/useMoveMultipleDocuments.js +10 -0
  24. package/dist/api/commands/document/useMoveMultipleDocuments.js.map +1 -0
  25. package/dist/api/commands/document/useRestoreMultipleDocuments.d.ts +4 -0
  26. package/dist/api/commands/document/useRestoreMultipleDocuments.js +10 -0
  27. package/dist/api/commands/document/useRestoreMultipleDocuments.js.map +1 -0
  28. package/dist/api/commands/document/useTrashMultipleDocuments.d.ts +4 -0
  29. package/dist/api/commands/document/useTrashMultipleDocuments.js +10 -0
  30. package/dist/api/commands/document/useTrashMultipleDocuments.js.map +1 -0
  31. package/dist/api/queries/communication/usePushNotificationInbox.d.ts +3 -0
  32. package/dist/api/queries/communication/usePushNotificationInbox.js +8 -0
  33. package/dist/api/queries/communication/usePushNotificationInbox.js.map +1 -0
  34. package/dist/index.d.ts +11 -0
  35. package/dist/index.js +11 -0
  36. package/dist/index.js.map +1 -1
  37. package/package.json +3 -3
@@ -0,0 +1,4 @@
1
+ export declare const useReportPushNotificationReceived: () => import("../../../index.js").MutationResultWithValidation<void, Error, {
2
+ companyId: import("@solibo/solibo-query").Id;
3
+ trackingId: import("@solibo/solibo-query").Id;
4
+ }, unknown>;
@@ -0,0 +1,8 @@
1
+ import { useMutation } from '../../../utils/useMutation.js';
2
+ import { useSdk } from '../../../sdkProvider.js';
3
+ import { reportPushNotificationReceivedMutationOptions } from '@solibo/solibo-query';
4
+ export const useReportPushNotificationReceived = () => {
5
+ const sdk = useSdk();
6
+ return useMutation(reportPushNotificationReceivedMutationOptions(sdk));
7
+ };
8
+ //# sourceMappingURL=useReportPushNotificationReceived.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useReportPushNotificationReceived.js","sourceRoot":"","sources":["../../../../src/api/commands/communication/useReportPushNotificationReceived.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,6CAA6C,EAAE,MAAM,sBAAsB,CAAC;AAErF,MAAM,CAAC,MAAM,iCAAiC,GAAG,GAAG,EAAE;IAClD,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CAAC,6CAA6C,CAAC,GAAG,CAAC,CAAC,CAAC;AAC3E,CAAC,CAAC","sourcesContent":["import { useMutation } from '../../../utils/useMutation.js';\nimport { useSdk } from '../../../sdkProvider.js';\nimport { reportPushNotificationReceivedMutationOptions } from '@solibo/solibo-query';\n\nexport const useReportPushNotificationReceived = () => {\n const sdk = useSdk();\n return useMutation(reportPushNotificationReceivedMutationOptions(sdk));\n};\n"]}
@@ -0,0 +1,4 @@
1
+ export declare const useCreateMultipleConversationFlags: () => import("../../../index.js").MutationResultWithValidation<void, Error, {
2
+ companyId: import("@solibo/solibo-query").Id;
3
+ cmd: import("@solibo/solibo-query").BatchConversationStateCommandInput;
4
+ }, unknown>;
@@ -0,0 +1,10 @@
1
+ import { useQueryClient } from '@tanstack/react-query';
2
+ import { useMutation } from '../../../utils/useMutation.js';
3
+ import { useSdk } from '../../../sdkProvider.js';
4
+ import { createMultipleConversationFlagsMutationOptions } from '@solibo/solibo-query';
5
+ export const useCreateMultipleConversationFlags = () => {
6
+ const queryClient = useQueryClient();
7
+ const sdk = useSdk();
8
+ return useMutation(createMultipleConversationFlagsMutationOptions(sdk, queryClient));
9
+ };
10
+ //# sourceMappingURL=useCreateMultipleConversationFlags.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useCreateMultipleConversationFlags.js","sourceRoot":"","sources":["../../../../src/api/commands/conversation/useCreateMultipleConversationFlags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,8CAA8C,EAAE,MAAM,sBAAsB,CAAC;AAEtF,MAAM,CAAC,MAAM,kCAAkC,GAAG,GAAG,EAAE;IACnD,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CACd,8CAA8C,CAAC,GAAG,EAAE,WAAW,CAAC,CACnE,CAAC;AACN,CAAC,CAAC","sourcesContent":["import { useQueryClient } from '@tanstack/react-query';\nimport { useMutation } from '../../../utils/useMutation.js';\nimport { useSdk } from '../../../sdkProvider.js';\nimport { createMultipleConversationFlagsMutationOptions } from '@solibo/solibo-query';\n\nexport const useCreateMultipleConversationFlags = () => {\n const queryClient = useQueryClient();\n const sdk = useSdk();\n return useMutation(\n createMultipleConversationFlagsMutationOptions(sdk, queryClient)\n );\n};\n"]}
@@ -0,0 +1,4 @@
1
+ export declare const useCreateMultipleConversationReads: () => import("../../../index.js").MutationResultWithValidation<void, Error, {
2
+ companyId: import("@solibo/solibo-query").Id;
3
+ cmd: import("@solibo/solibo-query").BatchConversationStateCommandInput;
4
+ }, unknown>;
@@ -0,0 +1,10 @@
1
+ import { useQueryClient } from '@tanstack/react-query';
2
+ import { useMutation } from '../../../utils/useMutation.js';
3
+ import { useSdk } from '../../../sdkProvider.js';
4
+ import { createMultipleConversationReadsMutationOptions } from '@solibo/solibo-query';
5
+ export const useCreateMultipleConversationReads = () => {
6
+ const queryClient = useQueryClient();
7
+ const sdk = useSdk();
8
+ return useMutation(createMultipleConversationReadsMutationOptions(sdk, queryClient));
9
+ };
10
+ //# sourceMappingURL=useCreateMultipleConversationReads.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useCreateMultipleConversationReads.js","sourceRoot":"","sources":["../../../../src/api/commands/conversation/useCreateMultipleConversationReads.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,8CAA8C,EAAE,MAAM,sBAAsB,CAAC;AAEtF,MAAM,CAAC,MAAM,kCAAkC,GAAG,GAAG,EAAE;IACnD,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CACd,8CAA8C,CAAC,GAAG,EAAE,WAAW,CAAC,CACnE,CAAC;AACN,CAAC,CAAC","sourcesContent":["import { useQueryClient } from '@tanstack/react-query';\nimport { useMutation } from '../../../utils/useMutation.js';\nimport { useSdk } from '../../../sdkProvider.js';\nimport { createMultipleConversationReadsMutationOptions } from '@solibo/solibo-query';\n\nexport const useCreateMultipleConversationReads = () => {\n const queryClient = useQueryClient();\n const sdk = useSdk();\n return useMutation(\n createMultipleConversationReadsMutationOptions(sdk, queryClient)\n );\n};\n"]}
@@ -0,0 +1,4 @@
1
+ export declare const useCreateMultipleConversationUnreads: () => import("../../../index.js").MutationResultWithValidation<void, Error, {
2
+ companyId: import("@solibo/solibo-query").Id;
3
+ cmd: import("@solibo/solibo-query").BatchConversationStateCommandInput;
4
+ }, unknown>;
@@ -0,0 +1,10 @@
1
+ import { useQueryClient } from '@tanstack/react-query';
2
+ import { useMutation } from '../../../utils/useMutation.js';
3
+ import { useSdk } from '../../../sdkProvider.js';
4
+ import { createMultipleConversationUnreadsMutationOptions } from '@solibo/solibo-query';
5
+ export const useCreateMultipleConversationUnreads = () => {
6
+ const queryClient = useQueryClient();
7
+ const sdk = useSdk();
8
+ return useMutation(createMultipleConversationUnreadsMutationOptions(sdk, queryClient));
9
+ };
10
+ //# sourceMappingURL=useCreateMultipleConversationUnreads.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useCreateMultipleConversationUnreads.js","sourceRoot":"","sources":["../../../../src/api/commands/conversation/useCreateMultipleConversationUnreads.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,gDAAgD,EAAE,MAAM,sBAAsB,CAAC;AAExF,MAAM,CAAC,MAAM,oCAAoC,GAAG,GAAG,EAAE;IACrD,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CACd,gDAAgD,CAAC,GAAG,EAAE,WAAW,CAAC,CACrE,CAAC;AACN,CAAC,CAAC","sourcesContent":["import { useQueryClient } from '@tanstack/react-query';\nimport { useMutation } from '../../../utils/useMutation.js';\nimport { useSdk } from '../../../sdkProvider.js';\nimport { createMultipleConversationUnreadsMutationOptions } from '@solibo/solibo-query';\n\nexport const useCreateMultipleConversationUnreads = () => {\n const queryClient = useQueryClient();\n const sdk = useSdk();\n return useMutation(\n createMultipleConversationUnreadsMutationOptions(sdk, queryClient)\n );\n};\n"]}
@@ -0,0 +1,4 @@
1
+ export declare const useDeleteMultipleConversationFlags: () => import("../../../index.js").MutationResultWithValidation<void, Error, {
2
+ companyId: import("@solibo/solibo-query").Id;
3
+ cmd: import("@solibo/solibo-query").BatchConversationStateCommandInput;
4
+ }, unknown>;
@@ -0,0 +1,10 @@
1
+ import { useQueryClient } from '@tanstack/react-query';
2
+ import { useMutation } from '../../../utils/useMutation.js';
3
+ import { useSdk } from '../../../sdkProvider.js';
4
+ import { deleteMultipleConversationFlagsMutationOptions } from '@solibo/solibo-query';
5
+ export const useDeleteMultipleConversationFlags = () => {
6
+ const queryClient = useQueryClient();
7
+ const sdk = useSdk();
8
+ return useMutation(deleteMultipleConversationFlagsMutationOptions(sdk, queryClient));
9
+ };
10
+ //# sourceMappingURL=useDeleteMultipleConversationFlags.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useDeleteMultipleConversationFlags.js","sourceRoot":"","sources":["../../../../src/api/commands/conversation/useDeleteMultipleConversationFlags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,8CAA8C,EAAE,MAAM,sBAAsB,CAAC;AAEtF,MAAM,CAAC,MAAM,kCAAkC,GAAG,GAAG,EAAE;IACnD,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CACd,8CAA8C,CAAC,GAAG,EAAE,WAAW,CAAC,CACnE,CAAC;AACN,CAAC,CAAC","sourcesContent":["import { useQueryClient } from '@tanstack/react-query';\nimport { useMutation } from '../../../utils/useMutation.js';\nimport { useSdk } from '../../../sdkProvider.js';\nimport { deleteMultipleConversationFlagsMutationOptions } from '@solibo/solibo-query';\n\nexport const useDeleteMultipleConversationFlags = () => {\n const queryClient = useQueryClient();\n const sdk = useSdk();\n return useMutation(\n deleteMultipleConversationFlagsMutationOptions(sdk, queryClient)\n );\n};\n"]}
@@ -0,0 +1,4 @@
1
+ export declare const useDeleteMultipleConversations: () => import("../../../index.js").MutationResultWithValidation<void, Error, {
2
+ companyId: import("@solibo/solibo-query").Id;
3
+ cmd: import("@solibo/solibo-query").BatchConversationStateCommandInput;
4
+ }, unknown>;
@@ -0,0 +1,10 @@
1
+ import { useQueryClient } from '@tanstack/react-query';
2
+ import { useMutation } from '../../../utils/useMutation.js';
3
+ import { useSdk } from '../../../sdkProvider.js';
4
+ import { deleteMultipleConversationsMutationOptions } from '@solibo/solibo-query';
5
+ export const useDeleteMultipleConversations = () => {
6
+ const queryClient = useQueryClient();
7
+ const sdk = useSdk();
8
+ return useMutation(deleteMultipleConversationsMutationOptions(sdk, queryClient));
9
+ };
10
+ //# sourceMappingURL=useDeleteMultipleConversations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useDeleteMultipleConversations.js","sourceRoot":"","sources":["../../../../src/api/commands/conversation/useDeleteMultipleConversations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,0CAA0C,EAAE,MAAM,sBAAsB,CAAC;AAElF,MAAM,CAAC,MAAM,8BAA8B,GAAG,GAAG,EAAE;IAC/C,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CACd,0CAA0C,CAAC,GAAG,EAAE,WAAW,CAAC,CAC/D,CAAC;AACN,CAAC,CAAC","sourcesContent":["import { useQueryClient } from '@tanstack/react-query';\nimport { useMutation } from '../../../utils/useMutation.js';\nimport { useSdk } from '../../../sdkProvider.js';\nimport { deleteMultipleConversationsMutationOptions } from '@solibo/solibo-query';\n\nexport const useDeleteMultipleConversations = () => {\n const queryClient = useQueryClient();\n const sdk = useSdk();\n return useMutation(\n deleteMultipleConversationsMutationOptions(sdk, queryClient)\n );\n};\n"]}
@@ -0,0 +1,4 @@
1
+ export declare const useMoveMultipleConversations: () => import("../../../index.js").MutationResultWithValidation<void, Error, {
2
+ companyId: import("@solibo/solibo-query").Id;
3
+ cmd: import("@solibo/solibo-query").BatchMoveConversationsToFolderCommandInput;
4
+ }, unknown>;
@@ -0,0 +1,10 @@
1
+ import { useQueryClient } from '@tanstack/react-query';
2
+ import { useMutation } from '../../../utils/useMutation.js';
3
+ import { useSdk } from '../../../sdkProvider.js';
4
+ import { moveMultipleConversationsMutationOptions } from '@solibo/solibo-query';
5
+ export const useMoveMultipleConversations = () => {
6
+ const queryClient = useQueryClient();
7
+ const sdk = useSdk();
8
+ return useMutation(moveMultipleConversationsMutationOptions(sdk, queryClient));
9
+ };
10
+ //# sourceMappingURL=useMoveMultipleConversations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useMoveMultipleConversations.js","sourceRoot":"","sources":["../../../../src/api/commands/conversation/useMoveMultipleConversations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,wCAAwC,EAAE,MAAM,sBAAsB,CAAC;AAEhF,MAAM,CAAC,MAAM,4BAA4B,GAAG,GAAG,EAAE;IAC7C,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CACd,wCAAwC,CAAC,GAAG,EAAE,WAAW,CAAC,CAC7D,CAAC;AACN,CAAC,CAAC","sourcesContent":["import { useQueryClient } from '@tanstack/react-query';\nimport { useMutation } from '../../../utils/useMutation.js';\nimport { useSdk } from '../../../sdkProvider.js';\nimport { moveMultipleConversationsMutationOptions } from '@solibo/solibo-query';\n\nexport const useMoveMultipleConversations = () => {\n const queryClient = useQueryClient();\n const sdk = useSdk();\n return useMutation(\n moveMultipleConversationsMutationOptions(sdk, queryClient)\n );\n};\n"]}
@@ -0,0 +1,5 @@
1
+ export declare const useMoveMultipleDocuments: () => import("../../../index.js").MutationResultWithValidation<import("@solibo/solibo-sdk").Document[], Error, {
2
+ companyId: import("@solibo/solibo-query").Id;
3
+ parentId: string;
4
+ cmd: import("@solibo/solibo-query").BatchMoveDocumentsCommandInput;
5
+ }, unknown>;
@@ -0,0 +1,10 @@
1
+ import { useQueryClient } from '@tanstack/react-query';
2
+ import { useMutation } from '../../../utils/useMutation.js';
3
+ import { useSdk } from '../../../sdkProvider.js';
4
+ import { moveMultipleDocumentsMutationOptions } from '@solibo/solibo-query';
5
+ export const useMoveMultipleDocuments = () => {
6
+ const queryClient = useQueryClient();
7
+ const sdk = useSdk();
8
+ return useMutation(moveMultipleDocumentsMutationOptions(sdk, queryClient));
9
+ };
10
+ //# sourceMappingURL=useMoveMultipleDocuments.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useMoveMultipleDocuments.js","sourceRoot":"","sources":["../../../../src/api/commands/document/useMoveMultipleDocuments.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,oCAAoC,EAAE,MAAM,sBAAsB,CAAC;AAE5E,MAAM,CAAC,MAAM,wBAAwB,GAAG,GAAG,EAAE;IACzC,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CAAC,oCAAoC,CAAC,GAAG,EAAE,WAAW,CAAC,CAAC,CAAC;AAC/E,CAAC,CAAC","sourcesContent":["import { useQueryClient } from '@tanstack/react-query';\nimport { useMutation } from '../../../utils/useMutation.js';\nimport { useSdk } from '../../../sdkProvider.js';\nimport { moveMultipleDocumentsMutationOptions } from '@solibo/solibo-query';\n\nexport const useMoveMultipleDocuments = () => {\n const queryClient = useQueryClient();\n const sdk = useSdk();\n return useMutation(moveMultipleDocumentsMutationOptions(sdk, queryClient));\n};\n"]}
@@ -0,0 +1,4 @@
1
+ export declare const useRestoreMultipleDocuments: () => import("../../../index.js").MutationResultWithValidation<void, Error, {
2
+ companyId: import("@solibo/solibo-query").Id;
3
+ cmd: import("@solibo/solibo-query").BatchRestoreDocumentsCommandInput;
4
+ }, unknown>;
@@ -0,0 +1,10 @@
1
+ import { useQueryClient } from '@tanstack/react-query';
2
+ import { useMutation } from '../../../utils/useMutation.js';
3
+ import { useSdk } from '../../../sdkProvider.js';
4
+ import { restoreMultipleDocumentsMutationOptions } from '@solibo/solibo-query';
5
+ export const useRestoreMultipleDocuments = () => {
6
+ const queryClient = useQueryClient();
7
+ const sdk = useSdk();
8
+ return useMutation(restoreMultipleDocumentsMutationOptions(sdk, queryClient));
9
+ };
10
+ //# sourceMappingURL=useRestoreMultipleDocuments.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useRestoreMultipleDocuments.js","sourceRoot":"","sources":["../../../../src/api/commands/document/useRestoreMultipleDocuments.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,uCAAuC,EAAE,MAAM,sBAAsB,CAAC;AAE/E,MAAM,CAAC,MAAM,2BAA2B,GAAG,GAAG,EAAE;IAC5C,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CACd,uCAAuC,CAAC,GAAG,EAAE,WAAW,CAAC,CAC5D,CAAC;AACN,CAAC,CAAC","sourcesContent":["import { useQueryClient } from '@tanstack/react-query';\nimport { useMutation } from '../../../utils/useMutation.js';\nimport { useSdk } from '../../../sdkProvider.js';\nimport { restoreMultipleDocumentsMutationOptions } from '@solibo/solibo-query';\n\nexport const useRestoreMultipleDocuments = () => {\n const queryClient = useQueryClient();\n const sdk = useSdk();\n return useMutation(\n restoreMultipleDocumentsMutationOptions(sdk, queryClient)\n );\n};\n"]}
@@ -0,0 +1,4 @@
1
+ export declare const useTrashMultipleDocuments: () => import("../../../index.js").MutationResultWithValidation<void, Error, {
2
+ companyId: import("@solibo/solibo-query").Id;
3
+ cmd: import("@solibo/solibo-query").BatchTrashDocumentsCommandInput;
4
+ }, unknown>;
@@ -0,0 +1,10 @@
1
+ import { useQueryClient } from '@tanstack/react-query';
2
+ import { useMutation } from '../../../utils/useMutation.js';
3
+ import { useSdk } from '../../../sdkProvider.js';
4
+ import { trashMultipleDocumentsMutationOptions } from '@solibo/solibo-query';
5
+ export const useTrashMultipleDocuments = () => {
6
+ const queryClient = useQueryClient();
7
+ const sdk = useSdk();
8
+ return useMutation(trashMultipleDocumentsMutationOptions(sdk, queryClient));
9
+ };
10
+ //# sourceMappingURL=useTrashMultipleDocuments.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useTrashMultipleDocuments.js","sourceRoot":"","sources":["../../../../src/api/commands/document/useTrashMultipleDocuments.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,qCAAqC,EAAE,MAAM,sBAAsB,CAAC;AAE7E,MAAM,CAAC,MAAM,yBAAyB,GAAG,GAAG,EAAE;IAC1C,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,WAAW,CAAC,qCAAqC,CAAC,GAAG,EAAE,WAAW,CAAC,CAAC,CAAC;AAChF,CAAC,CAAC","sourcesContent":["import { useQueryClient } from '@tanstack/react-query';\nimport { useMutation } from '../../../utils/useMutation.js';\nimport { useSdk } from '../../../sdkProvider.js';\nimport { trashMultipleDocumentsMutationOptions } from '@solibo/solibo-query';\n\nexport const useTrashMultipleDocuments = () => {\n const queryClient = useQueryClient();\n const sdk = useSdk();\n return useMutation(trashMultipleDocumentsMutationOptions(sdk, queryClient));\n};\n"]}
@@ -0,0 +1,3 @@
1
+ import { pushNotificationInboxQueryOptions } from '@solibo/solibo-query';
2
+ import type { RestParams } from '../../../utils/restParams.js';
3
+ export declare const usePushNotificationInbox: (...args: RestParams<typeof pushNotificationInboxQueryOptions>) => import("@tanstack/react-query").UseInfiniteQueryResult<import("@tanstack/query-core").InfiniteData<import("@solibo/solibo-sdk").PagedListPushNotificationInboxItem, unknown>, Error>;
@@ -0,0 +1,8 @@
1
+ import { useInfiniteQuery } from '@tanstack/react-query';
2
+ import { useSdk } from '../../../sdkProvider.js';
3
+ import { pushNotificationInboxQueryOptions } from '@solibo/solibo-query';
4
+ export const usePushNotificationInbox = (...args) => {
5
+ const sdk = useSdk();
6
+ return useInfiniteQuery(pushNotificationInboxQueryOptions(sdk, ...args));
7
+ };
8
+ //# sourceMappingURL=usePushNotificationInbox.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"usePushNotificationInbox.js","sourceRoot":"","sources":["../../../../src/api/queries/communication/usePushNotificationInbox.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,iCAAiC,EAAE,MAAM,sBAAsB,CAAC;AAGzE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CACpC,GAAG,IAA0D,EAC/D,EAAE;IACA,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC;IACrB,OAAO,gBAAgB,CAAC,iCAAiC,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;AAC7E,CAAC,CAAC","sourcesContent":["import { useInfiniteQuery } from '@tanstack/react-query';\nimport { useSdk } from '../../../sdkProvider.js';\nimport { pushNotificationInboxQueryOptions } from '@solibo/solibo-query';\nimport type { RestParams } from '../../../utils/restParams.js';\n\nexport const usePushNotificationInbox = (\n ...args: RestParams<typeof pushNotificationInboxQueryOptions>\n) => {\n const sdk = useSdk();\n return useInfiniteQuery(pushNotificationInboxQueryOptions(sdk, ...args));\n};\n"]}
package/dist/index.d.ts CHANGED
@@ -19,6 +19,7 @@ export * from './api/commands/communication/useDeleteSMSBroadcast.js';
19
19
  export * from './api/commands/communication/usePublishNewsletter.js';
20
20
  export * from './api/commands/communication/usePublishSMSBroadcast.js';
21
21
  export * from './api/commands/communication/useReportPushNotificationRead.js';
22
+ export * from './api/commands/communication/useReportPushNotificationReceived.js';
22
23
  export * from './api/commands/communication/useSignupNewsletter.js';
23
24
  export * from './api/commands/communication/useUpdateNewsletter.js';
24
25
  export * from './api/commands/communication/useUpdateSMSBroadcast.js';
@@ -46,6 +47,9 @@ export * from './api/commands/conversation/useCreateConversationCategory.js';
46
47
  export * from './api/commands/conversation/useCreateConversationMessage.js';
47
48
  export * from './api/commands/conversation/useCreateConversationParticipant.js';
48
49
  export * from './api/commands/conversation/useCreateExternalConversationParticipant.js';
50
+ export * from './api/commands/conversation/useCreateMultipleConversationFlags.js';
51
+ export * from './api/commands/conversation/useCreateMultipleConversationReads.js';
52
+ export * from './api/commands/conversation/useCreateMultipleConversationUnreads.js';
49
53
  export * from './api/commands/conversation/useCreateInquiry.js';
50
54
  export * from './api/commands/conversation/useCreateInquiryOpen.js';
51
55
  export * from './api/commands/conversation/useCreateInternalConversationMessage.js';
@@ -53,8 +57,11 @@ export * from './api/commands/conversation/useCreatePublicConversationMessage.js
53
57
  export * from './api/commands/conversation/useDeleteConversation.js';
54
58
  export * from './api/commands/conversation/useDeleteConversationCategory.js';
55
59
  export * from './api/commands/conversation/useDeleteConversationParticipant.js';
60
+ export * from './api/commands/conversation/useDeleteMultipleConversationFlags.js';
61
+ export * from './api/commands/conversation/useDeleteMultipleConversations.js';
56
62
  export * from './api/commands/conversation/useMarkConversationRead.js';
57
63
  export * from './api/commands/conversation/useMoveConversation.js';
64
+ export * from './api/commands/conversation/useMoveMultipleConversations.js';
58
65
  export * from './api/commands/conversation/usePublicUploadDocumentToConversation.js';
59
66
  export * from './api/commands/conversation/usePublishDraftConversation.js';
60
67
  export * from './api/commands/conversation/useUpdateConversation.js';
@@ -64,9 +71,12 @@ export * from './api/commands/document/useCreateDocumentDirectory.js';
64
71
  export * from './api/commands/document/useCreateDocumentReference.js';
65
72
  export * from './api/commands/document/useDeleteDocument.js';
66
73
  export * from './api/commands/document/useMoveDocument.js';
74
+ export * from './api/commands/document/useMoveMultipleDocuments.js';
67
75
  export * from './api/commands/document/useMoveDocumentToTrash.js';
68
76
  export * from './api/commands/document/useRemoveDocumentFromTrash.js';
77
+ export * from './api/commands/document/useRestoreMultipleDocuments.js';
69
78
  export * from './api/commands/document/useRenameDocument.js';
79
+ export * from './api/commands/document/useTrashMultipleDocuments.js';
70
80
  export * from './api/commands/document/useUploadDocument.js';
71
81
  export * from './api/commands/document/useIntegratedDocumentMutations.js';
72
82
  export * from './api/commands/economy/useApproveInvoice.js';
@@ -288,6 +298,7 @@ export * from './api/queries/communication/useNewsletter.js';
288
298
  export * from './api/queries/communication/useNewsletters.js';
289
299
  export * from './api/queries/communication/useNotificationgroupsEmail.js';
290
300
  export * from './api/queries/communication/useNotificationgroupsSms.js';
301
+ export * from './api/queries/communication/usePushNotificationInbox.js';
291
302
  export * from './api/queries/communication/useSMSAvailableForSMSBroadcastPost.js';
292
303
  export * from './api/queries/communication/useSMSBroadcast.js';
293
304
  export * from './api/queries/communication/useSMSBroadcasts.js';
package/dist/index.js CHANGED
@@ -19,6 +19,7 @@ export * from './api/commands/communication/useDeleteSMSBroadcast.js';
19
19
  export * from './api/commands/communication/usePublishNewsletter.js';
20
20
  export * from './api/commands/communication/usePublishSMSBroadcast.js';
21
21
  export * from './api/commands/communication/useReportPushNotificationRead.js';
22
+ export * from './api/commands/communication/useReportPushNotificationReceived.js';
22
23
  export * from './api/commands/communication/useSignupNewsletter.js';
23
24
  export * from './api/commands/communication/useUpdateNewsletter.js';
24
25
  export * from './api/commands/communication/useUpdateSMSBroadcast.js';
@@ -46,6 +47,9 @@ export * from './api/commands/conversation/useCreateConversationCategory.js';
46
47
  export * from './api/commands/conversation/useCreateConversationMessage.js';
47
48
  export * from './api/commands/conversation/useCreateConversationParticipant.js';
48
49
  export * from './api/commands/conversation/useCreateExternalConversationParticipant.js';
50
+ export * from './api/commands/conversation/useCreateMultipleConversationFlags.js';
51
+ export * from './api/commands/conversation/useCreateMultipleConversationReads.js';
52
+ export * from './api/commands/conversation/useCreateMultipleConversationUnreads.js';
49
53
  export * from './api/commands/conversation/useCreateInquiry.js';
50
54
  export * from './api/commands/conversation/useCreateInquiryOpen.js';
51
55
  export * from './api/commands/conversation/useCreateInternalConversationMessage.js';
@@ -53,8 +57,11 @@ export * from './api/commands/conversation/useCreatePublicConversationMessage.js
53
57
  export * from './api/commands/conversation/useDeleteConversation.js';
54
58
  export * from './api/commands/conversation/useDeleteConversationCategory.js';
55
59
  export * from './api/commands/conversation/useDeleteConversationParticipant.js';
60
+ export * from './api/commands/conversation/useDeleteMultipleConversationFlags.js';
61
+ export * from './api/commands/conversation/useDeleteMultipleConversations.js';
56
62
  export * from './api/commands/conversation/useMarkConversationRead.js';
57
63
  export * from './api/commands/conversation/useMoveConversation.js';
64
+ export * from './api/commands/conversation/useMoveMultipleConversations.js';
58
65
  export * from './api/commands/conversation/usePublicUploadDocumentToConversation.js';
59
66
  export * from './api/commands/conversation/usePublishDraftConversation.js';
60
67
  export * from './api/commands/conversation/useUpdateConversation.js';
@@ -64,9 +71,12 @@ export * from './api/commands/document/useCreateDocumentDirectory.js';
64
71
  export * from './api/commands/document/useCreateDocumentReference.js';
65
72
  export * from './api/commands/document/useDeleteDocument.js';
66
73
  export * from './api/commands/document/useMoveDocument.js';
74
+ export * from './api/commands/document/useMoveMultipleDocuments.js';
67
75
  export * from './api/commands/document/useMoveDocumentToTrash.js';
68
76
  export * from './api/commands/document/useRemoveDocumentFromTrash.js';
77
+ export * from './api/commands/document/useRestoreMultipleDocuments.js';
69
78
  export * from './api/commands/document/useRenameDocument.js';
79
+ export * from './api/commands/document/useTrashMultipleDocuments.js';
70
80
  export * from './api/commands/document/useUploadDocument.js';
71
81
  export * from './api/commands/document/useIntegratedDocumentMutations.js';
72
82
  export * from './api/commands/economy/useApproveInvoice.js';
@@ -288,6 +298,7 @@ export * from './api/queries/communication/useNewsletter.js';
288
298
  export * from './api/queries/communication/useNewsletters.js';
289
299
  export * from './api/queries/communication/useNotificationgroupsEmail.js';
290
300
  export * from './api/queries/communication/useNotificationgroupsSms.js';
301
+ export * from './api/queries/communication/usePushNotificationInbox.js';
291
302
  export * from './api/queries/communication/useSMSAvailableForSMSBroadcastPost.js';
292
303
  export * from './api/queries/communication/useSMSBroadcast.js';
293
304
  export * from './api/queries/communication/useSMSBroadcasts.js';
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["import './utils/bigint-polyfill.js';\n\n// Re-export everything from @solibo/solibo-sdk and @solibo/solibo-query for convenience —\n// consumers only need to install @solibo/solibo-react.\nexport * from '@solibo/solibo-sdk';\nexport * 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/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/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/useConversationFolders.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/useMoveConversation.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/useCreateDocumentReference.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/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/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/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/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/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/useOwnershipTransferSection.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/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/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/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/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/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/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';\n// invoicingKeys is already exported from @solibo/solibo-query via the wildcard re-export above\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/person/useOtherPersons.js';\nexport * from './api/queries/person/usePerson.js';\nexport * from './api/queries/person/usePersonSearch.js';\nexport * from './api/queries/person/usePersons.js';\n// ResidentWithSections and SectionWithResidents are already exported from @solibo/solibo-query via the wildcard re-export above\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/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/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';\n// ContactWithSupplier and SupplierWithContacts are already exported from @solibo/solibo-query via the wildcard re-export above\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":"AAAA,OAAO,4BAA4B,CAAC;AAEpC,0FAA0F;AAC1F,uDAAuD;AACvD,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AAGrC,yBAAyB;AACzB,OAAO,EACH,cAAc,EACd,WAAW,EACX,YAAY,EACZ,MAAM,EACN,aAAa,EACb,SAAS,GACZ,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAErD,OAAO,EACH,2BAA2B,EAC3B,wBAAwB,GAC3B,MAAM,8BAA8B,CAAC;AAEtC,cAAc,8CAA8C,CAAC;AAC7D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,0DAA0D,CAAC;AACzE,cAAc,iDAAiD,CAAC;AAChE,cAAc,qDAAqD,CAAC;AACpE,cAAc,uDAAuD,CAAC;AACtE,cAAc,iEAAiE,CAAC;AAChF,cAAc,qDAAqD,CAAC;AACpE,cAAc,uDAAuD,CAAC;AACtE,cAAc,sDAAsD,CAAC;AACrE,cAAc,wDAAwD,CAAC;AACvE,cAAc,+DAA+D,CAAC;AAC9E,cAAc,mEAAmE,CAAC;AAClF,cAAc,qDAAqD,CAAC;AACpE,cAAc,qDAAqD,CAAC;AACpE,cAAc,uDAAuD,CAAC;AACtE,cAAc,yDAAyD,CAAC;AACxE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,0CAA0C,CAAC;AACzD,cAAc,uDAAuD,CAAC;AACtE,cAAc,uDAAuD,CAAC;AACtE,cAAc,gEAAgE,CAAC;AAC/E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,yCAAyC,CAAC;AACxD,cAAc,kDAAkD,CAAC;AACjE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,yDAAyD,CAAC;AACxE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,oDAAoD,CAAC;AACnE,cAAc,sDAAsD,CAAC;AACrE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wDAAwD,CAAC;AACvE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,uDAAuD,CAAC;AACtE,cAAc,sDAAsD,CAAC;AACrE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,6DAA6D,CAAC;AAC5E,cAAc,iEAAiE,CAAC;AAChF,cAAc,yEAAyE,CAAC;AACxF,cAAc,mEAAmE,CAAC;AAClF,cAAc,mEAAmE,CAAC;AAClF,cAAc,qEAAqE,CAAC;AACpF,cAAc,iDAAiD,CAAC;AAChE,cAAc,qDAAqD,CAAC;AACpE,cAAc,qEAAqE,CAAC;AACpF,cAAc,mEAAmE,CAAC;AAClF,cAAc,sDAAsD,CAAC;AACrE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,iEAAiE,CAAC;AAChF,cAAc,mEAAmE,CAAC;AAClF,cAAc,+DAA+D,CAAC;AAC9E,cAAc,wDAAwD,CAAC;AACvE,cAAc,oDAAoD,CAAC;AACnE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,sEAAsE,CAAC;AACrF,cAAc,4DAA4D,CAAC;AAC3E,cAAc,sDAAsD,CAAC;AACrE,cAAc,gEAAgE,CAAC;AAC/E,cAAc,8DAA8D,CAAC;AAC7E,cAAc,uDAAuD,CAAC;AACtE,cAAc,uDAAuD,CAAC;AACtE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,qDAAqD,CAAC;AACpE,cAAc,mDAAmD,CAAC;AAClE,cAAc,uDAAuD,CAAC;AACtE,cAAc,wDAAwD,CAAC;AACvE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,sDAAsD,CAAC;AACrE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,2DAA2D,CAAC;AAC1E,cAAc,6CAA6C,CAAC;AAC5D,cAAc,6DAA6D,CAAC;AAC5E,cAAc,kDAAkD,CAAC;AACjE,cAAc,kDAAkD,CAAC;AACjE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,wDAAwD,CAAC;AACvE,cAAc,gEAAgE,CAAC;AAC/E,cAAc,6CAA6C,CAAC;AAC5D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,0CAA0C,CAAC;AACzD,cAAc,mDAAmD,CAAC;AAClE,cAAc,0CAA0C,CAAC;AACzD,cAAc,mDAAmD,CAAC;AAClE,cAAc,mDAAmD,CAAC;AAClE,cAAc,0CAA0C,CAAC;AACzD,cAAc,mDAAmD,CAAC;AAClE,cAAc,mDAAmD,CAAC;AAClE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,oDAAoD,CAAC;AACnE,cAAc,sDAAsD,CAAC;AACrE,cAAc,kDAAkD,CAAC;AACjE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,2DAA2D,CAAC;AAC1E,cAAc,oDAAoD,CAAC;AACnE,cAAc,iDAAiD,CAAC;AAChE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,mDAAmD,CAAC;AAClE,cAAc,sDAAsD,CAAC;AACrE,cAAc,sDAAsD,CAAC;AACrE,cAAc,uDAAuD,CAAC;AACtE,cAAc,oDAAoD,CAAC;AACnE,cAAc,sDAAsD,CAAC;AACrE,cAAc,yDAAyD,CAAC;AACxE,cAAc,qDAAqD,CAAC;AACpE,cAAc,iDAAiD,CAAC;AAChE,cAAc,mDAAmD,CAAC;AAClE,cAAc,uDAAuD,CAAC;AACtE,cAAc,gEAAgE,CAAC;AAC/E,cAAc,mDAAmD,CAAC;AAClE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,sEAAsE,CAAC;AACrF,cAAc,iDAAiD,CAAC;AAChE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,oDAAoD,CAAC;AACnE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,mDAAmD,CAAC;AAClE,cAAc,sDAAsD,CAAC;AACrE,cAAc,kDAAkD,CAAC;AACjE,cAAc,sDAAsD,CAAC;AACrE,cAAc,sDAAsD,CAAC;AACrE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,uCAAuC,CAAC;AACtD,cAAc,sDAAsD,CAAC;AACrE,cAAc,wCAAwC,CAAC;AACvD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,iDAAiD,CAAC;AAChE,cAAc,iDAAiD,CAAC;AAChE,cAAc,mDAAmD,CAAC;AAClE,cAAc,wCAAwC,CAAC;AACvD,cAAc,wDAAwD,CAAC;AACvE,cAAc,mDAAmD,CAAC;AAClE,cAAc,kDAAkD,CAAC;AACjE,cAAc,wCAAwC,CAAC;AACvD,cAAc,kDAAkD,CAAC;AACjE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,sCAAsC,CAAC;AACrD,cAAc,sCAAsC,CAAC;AACrD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,sCAAsC,CAAC;AACrD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,mDAAmD,CAAC;AAClE,cAAc,sDAAsD,CAAC;AACrE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,iDAAiD,CAAC;AAChE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,iDAAiD,CAAC;AAChE,cAAc,mCAAmC,CAAC;AAClD,cAAc,mCAAmC,CAAC;AAClD,cAAc,oDAAoD,CAAC;AACnE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,wDAAwD,CAAC;AACvE,cAAc,oEAAoE,CAAC;AACnF,cAAc,mEAAmE,CAAC;AAClF,cAAc,kDAAkD,CAAC;AACjE,cAAc,oEAAoE,CAAC;AACnF,cAAc,oEAAoE,CAAC;AACnF,cAAc,kDAAkD,CAAC;AACjE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,2DAA2D,CAAC;AAC1E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,0DAA0D,CAAC;AACzE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,sEAAsE,CAAC;AACrF,cAAc,qEAAqE,CAAC;AACpF,cAAc,kDAAkD,CAAC;AACjE,cAAc,sDAAsD,CAAC;AACrE,cAAc,uDAAuD,CAAC;AACtE,cAAc,uDAAuD,CAAC;AACtE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,uDAAuD,CAAC;AACtE,cAAc,wDAAwD,CAAC;AACvE,cAAc,uDAAuD,CAAC;AACtE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,yCAAyC,CAAC;AACxD,cAAc,0DAA0D,CAAC;AACzE,cAAc,0DAA0D,CAAC;AACzE,cAAc,yDAAyD,CAAC;AACxE,cAAc,0CAA0C,CAAC;AACzD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,qDAAqD,CAAC;AACpE,cAAc,uEAAuE,CAAC;AACtF,cAAc,8CAA8C,CAAC;AAC7D,cAAc,qDAAqD,CAAC;AACpE,cAAc,uDAAuD,CAAC;AACtE,cAAc,qDAAqD,CAAC;AACpE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,qDAAqD,CAAC;AACpE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,wDAAwD,CAAC;AACvE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,kDAAkD,CAAC;AACjE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,wDAAwD,CAAC;AACvE,cAAc,wDAAwD,CAAC;AACvE,cAAc,wDAAwD,CAAC;AACvE,cAAc,uDAAuD,CAAC;AACtE,cAAc,wDAAwD,CAAC;AACvE,cAAc,0DAA0D,CAAC;AACzE,cAAc,yDAAyD,CAAC;AACxE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kDAAkD,CAAC;AACjE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kDAAkD,CAAC;AACjE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,uDAAuD,CAAC;AACtE,cAAc,kDAAkD,CAAC;AACjE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,4DAA4D,CAAC;AAC3E,cAAc,2DAA2D,CAAC;AAC1E,cAAc,4CAA4C,CAAC;AAC3D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,kDAAkD,CAAC;AACjE,cAAc,iDAAiD,CAAC;AAChE,cAAc,kDAAkD,CAAC;AACjE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,uEAAuE,CAAC;AACtF,cAAc,kDAAkD,CAAC;AACjE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,kDAAkD,CAAC;AACjE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,uEAAuE,CAAC;AACtF,cAAc,qEAAqE,CAAC;AACpF,cAAc,oDAAoD,CAAC;AACnE,cAAc,oDAAoD,CAAC;AACnE,cAAc,qDAAqD,CAAC;AACpE,cAAc,oDAAoD,CAAC;AACnE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,qDAAqD,CAAC;AACpE,cAAc,qDAAqD,CAAC;AACpE,cAAc,wDAAwD,CAAC;AACvE,cAAc,qDAAqD,CAAC;AACpE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,mDAAmD,CAAC;AAClE,cAAc,sDAAsD,CAAC;AACrE,cAAc,iDAAiD,CAAC;AAChE,cAAc,uDAAuD,CAAC;AACtE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,0DAA0D,CAAC;AACzE,cAAc,kDAAkD,CAAC;AACjE,cAAc,wCAAwC,CAAC;AACvD,cAAc,sCAAsC,CAAC;AACrD,cAAc,sCAAsC,CAAC;AACrD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sCAAsC,CAAC;AACrD,cAAc,0EAA0E,CAAC;AACzF,cAAc,kEAAkE,CAAC;AACjF,cAAc,wEAAwE,CAAC;AACvF,cAAc,wEAAwE,CAAC;AACvF,cAAc,0EAA0E,CAAC;AACzF,cAAc,wEAAwE,CAAC;AACvF,cAAc,wEAAwE,CAAC;AACvF,cAAc,wCAAwC,CAAC;AACvD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,qCAAqC,CAAC;AACpD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yCAAyC,CAAC;AACxD,cAAc,sCAAsC,CAAC;AACrD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,qDAAqD,CAAC;AACpE,cAAc,wDAAwD,CAAC;AACvE,cAAc,mDAAmD,CAAC;AAClE,cAAc,kDAAkD,CAAC;AACjE,cAAc,qDAAqD,CAAC;AACpE,cAAc,wCAAwC,CAAC;AACvD,cAAc,mEAAmE,CAAC;AAClF,cAAc,oDAAoD,CAAC;AACnE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,uDAAuD,CAAC;AACtE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,2DAA2D,CAAC;AAC1E,cAAc,yDAAyD,CAAC;AACxE,cAAc,yDAAyD,CAAC;AACxE,cAAc,mEAAmE,CAAC;AAClF,cAAc,gDAAgD,CAAC;AAC/D,cAAc,iDAAiD,CAAC;AAChE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,kDAAkD,CAAC;AACjE,cAAc,sDAAsD,CAAC;AACrE,cAAc,qDAAqD,CAAC;AACpE,cAAc,+DAA+D,CAAC;AAC9E,cAAc,uCAAuC,CAAC;AACtD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,yCAAyC,CAAC;AACxD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,0CAA0C,CAAC;AACzD,cAAc,uCAAuC,CAAC;AACtD,cAAc,mDAAmD,CAAC;AAClE,cAAc,2EAA2E,CAAC;AAC1F,cAAc,+CAA+C,CAAC;AAC9D,cAAc,yDAAyD,CAAC;AACxE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,oDAAoD,CAAC;AACnE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,sDAAsD,CAAC;AACrE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6DAA6D,CAAC;AAC5E,cAAc,qDAAqD,CAAC;AACpE,cAAc,qDAAqD,CAAC;AACpE,cAAc,yDAAyD,CAAC;AACxE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,yCAAyC,CAAC;AACxD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC;AACvD,cAAc,wDAAwD,CAAC;AACvE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,mDAAmD,CAAC;AAClE,cAAc,wDAAwD,CAAC;AACvE,cAAc,wDAAwD,CAAC;AACvE,cAAc,oDAAoD,CAAC;AACnE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,qDAAqD,CAAC;AACpE,cAAc,iDAAiD,CAAC;AAChE,cAAc,sCAAsC,CAAC;AACrD,cAAc,oCAAoC,CAAC;AACnD,cAAc,2DAA2D,CAAC;AAC1E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,qCAAqC,CAAC;AACpD,cAAc,yCAAyC,CAAC;AACxD,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qCAAqC,CAAC;AACpD,cAAc,uCAAuC,CAAC;AACtD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,mDAAmD,CAAC;AAClE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,qDAAqD,CAAC;AACpE,cAAc,kDAAkD,CAAC;AACjE,+FAA+F;AAC/F,cAAc,8CAA8C,CAAC;AAC7D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,uDAAuD,CAAC;AACtE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,wCAAwC,CAAC;AACvD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,iDAAiD,CAAC;AAChE,cAAc,yCAAyC,CAAC;AACxD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,wDAAwD,CAAC;AACvE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,uDAAuD,CAAC;AACtE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sDAAsD,CAAC;AACrE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,mDAAmD,CAAC;AAClE,cAAc,0DAA0D,CAAC;AACzE,cAAc,qDAAqD,CAAC;AACpE,cAAc,uDAAuD,CAAC;AACtE,cAAc,kDAAkD,CAAC;AACjE,cAAc,qDAAqD,CAAC;AACpE,cAAc,qDAAqD,CAAC;AACpE,cAAc,kDAAkD,CAAC;AACjE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,uCAAuC,CAAC;AACtD,cAAc,0CAA0C,CAAC;AACzD,cAAc,iDAAiD,CAAC;AAChE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,yCAAyC,CAAC;AACxD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,sDAAsD,CAAC;AACrE,cAAc,mDAAmD,CAAC;AAClE,cAAc,iDAAiD,CAAC;AAChE,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,sCAAsC,CAAC;AACrD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,sDAAsD,CAAC;AACrE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,yDAAyD,CAAC;AACxE,cAAc,qDAAqD,CAAC;AACpE,cAAc,iDAAiD,CAAC;AAChE,cAAc,yCAAyC,CAAC;AACxD,cAAc,mCAAmC,CAAC;AAClD,cAAc,yCAAyC,CAAC;AACxD,cAAc,oCAAoC,CAAC;AACnD,gIAAgI;AAChI,cAAc,+DAA+D,CAAC;AAC9E,cAAc,uEAAuE,CAAC;AACtF,cAAc,0DAA0D,CAAC;AACzE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,qDAAqD,CAAC;AACpE,cAAc,0DAA0D,CAAC;AACzE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,yDAAyD,CAAC;AACxE,cAAc,wDAAwD,CAAC;AACvE,cAAc,oDAAoD,CAAC;AACnE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,wDAAwD,CAAC;AACvE,cAAc,sDAAsD,CAAC;AACrE,cAAc,yDAAyD,CAAC;AACxE,cAAc,mDAAmD,CAAC;AAClE,cAAc,yDAAyD,CAAC;AACxE,cAAc,uDAAuD,CAAC;AACtE,cAAc,oDAAoD,CAAC;AACnE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,sCAAsC,CAAC;AACrD,cAAc,iDAAiD,CAAC;AAChE,cAAc,uCAAuC,CAAC;AACtD,cAAc,kDAAkD,CAAC;AACjE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qDAAqD,CAAC;AACpE,cAAc,sDAAsD,CAAC;AACrE,cAAc,mDAAmD,CAAC;AAClE,cAAc,gEAAgE,CAAC;AAC/E,cAAc,iEAAiE,CAAC;AAChF,cAAc,oDAAoD,CAAC;AACnE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,8CAA8C,CAAC;AAC7D,+HAA+H;AAC/H,cAAc,+CAA+C,CAAC;AAC9D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC;AACvD,cAAc,mDAAmD,CAAC;AAClE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uEAAuE,CAAC;AACtF,cAAc,8DAA8D,CAAC;AAC7E,cAAc,iEAAiE,CAAC;AAChF,cAAc,wEAAwE,CAAC;AACvF,cAAc,0EAA0E,CAAC;AACzF,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sCAAsC,CAAC;AACrD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sCAAsC,CAAC;AACrD,cAAc,oCAAoC,CAAC","sourcesContent":["import './utils/bigint-polyfill.js';\n\n// Re-export everything from @solibo/solibo-sdk and @solibo/solibo-query for convenience —\n// consumers only need to install @solibo/solibo-react.\nexport * from '@solibo/solibo-sdk';\nexport * 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/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/useConversationFolders.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/useMoveMultipleConversations.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/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/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/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/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/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/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/useOwnershipTransferSection.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/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/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/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/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/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';\n// invoicingKeys is already exported from @solibo/solibo-query via the wildcard re-export above\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/person/useOtherPersons.js';\nexport * from './api/queries/person/usePerson.js';\nexport * from './api/queries/person/usePersonSearch.js';\nexport * from './api/queries/person/usePersons.js';\n// ResidentWithSections and SectionWithResidents are already exported from @solibo/solibo-query via the wildcard re-export above\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/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/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';\n// ContactWithSupplier and SupplierWithContacts are already exported from @solibo/solibo-query via the wildcard re-export above\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"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solibo/solibo-react",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
4
4
  "description": "React hooks for Solibo SDK (wraps @solibo/solibo-query)",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -17,7 +17,7 @@
17
17
  "react": "^19.0.0"
18
18
  },
19
19
  "dependencies": {
20
- "@solibo/solibo-query": "1.8.3"
20
+ "@solibo/solibo-query": "1.8.4"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@eslint/js": "^10.0.1",
@@ -43,7 +43,7 @@
43
43
  "vite": "^8.0.8",
44
44
  "vitest": "^4.1.4",
45
45
  "ws": "^8.20.0",
46
- "@solibo/solibo-sdk": "1.8.3"
46
+ "@solibo/solibo-sdk": "1.8.4"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"