@solibo/solibo-query 1.5.18 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/commands/scopedContact/createScopedContact.d.ts +9 -0
- package/dist/api/commands/scopedContact/createScopedContact.js +14 -0
- package/dist/api/commands/scopedContact/createScopedContact.js.map +1 -0
- package/dist/api/commands/scopedContact/deleteScopedContact.d.ts +9 -0
- package/dist/api/commands/scopedContact/deleteScopedContact.js +12 -0
- package/dist/api/commands/scopedContact/deleteScopedContact.js.map +1 -0
- package/dist/api/commands/scopedContact/expireScopedContact.d.ts +11 -0
- package/dist/api/commands/scopedContact/expireScopedContact.js +18 -0
- package/dist/api/commands/scopedContact/expireScopedContact.js.map +1 -0
- package/dist/api/commands/scopedContact/resolveUserContact.d.ts +8 -0
- package/dist/api/commands/scopedContact/resolveUserContact.js +10 -0
- package/dist/api/commands/scopedContact/resolveUserContact.js.map +1 -0
- package/dist/api/commands/scopedContact/updateScopedContact.d.ts +12 -0
- package/dist/api/commands/scopedContact/updateScopedContact.js +19 -0
- package/dist/api/commands/scopedContact/updateScopedContact.js.map +1 -0
- package/dist/api/queries/scopedContact/scopedContacts.d.ts +22 -0
- package/dist/api/queries/scopedContact/scopedContacts.js +31 -0
- package/dist/api/queries/scopedContact/scopedContacts.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { QueryClient } from "@tanstack/query-core";
|
|
2
|
+
import { SoliboSDK, CreateScopedContactEndpointCommandProps } from "@solibo/solibo-sdk";
|
|
3
|
+
import { JsProps } from "../../../utils/kt-bridge.js";
|
|
4
|
+
export declare function createUserScopedContactMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
|
|
5
|
+
mutationFn: (params: {
|
|
6
|
+
cmd: JsProps<CreateScopedContactEndpointCommandProps>;
|
|
7
|
+
}) => Promise<import("@solibo/solibo-sdk").ScopedContactEndpoint>;
|
|
8
|
+
onSuccess: () => Promise<void>;
|
|
9
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { CreateScopedContactEndpointCommand, } from "@solibo/solibo-sdk";
|
|
2
|
+
import { toKtProps, fromKt } from "../../../utils/kt-bridge.js";
|
|
3
|
+
import { scopedContactKeys } from "../../queries/scopedContact/scopedContacts.js";
|
|
4
|
+
export function createUserScopedContactMutationOptions(sdk, queryClient) {
|
|
5
|
+
return {
|
|
6
|
+
mutationFn: (params) => sdk.api.scopedContacts
|
|
7
|
+
.createUserScopedContact(new CreateScopedContactEndpointCommand(toKtProps(params.cmd)))
|
|
8
|
+
.then((res) => fromKt(res.body())),
|
|
9
|
+
onSuccess: () => queryClient.invalidateQueries({
|
|
10
|
+
queryKey: [scopedContactKeys.forUser()],
|
|
11
|
+
}),
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=createScopedContact.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createScopedContact.js","sourceRoot":"","sources":["../../../../src/api/commands/scopedContact/createScopedContact.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,kCAAkC,GAEnC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAW,SAAS,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AACzE,OAAO,EAAE,iBAAiB,EAAE,MAAM,+CAA+C,CAAC;AAElF,MAAM,UAAU,sCAAsC,CACpD,GAAc,EACd,WAAwB;IAExB,OAAO;QACL,UAAU,EAAE,CAAC,MAEZ,EAAE,EAAE,CACH,GAAG,CAAC,GAAG,CAAC,cAAc;aACnB,uBAAuB,CACtB,IAAI,kCAAkC,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAC9D;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC;QACtC,SAAS,EAAE,GAAG,EAAE,CACd,WAAW,CAAC,iBAAiB,CAAC;YAC5B,QAAQ,EAAE,CAAC,iBAAiB,CAAC,OAAO,EAAE,CAAC;SACxC,CAAC;KACL,CAAC;AACJ,CAAC","sourcesContent":["import type { QueryClient } from \"@tanstack/query-core\";\nimport {\n SoliboSDK,\n CreateScopedContactEndpointCommand,\n CreateScopedContactEndpointCommandProps,\n} from \"@solibo/solibo-sdk\";\nimport { JsProps, toKtProps, fromKt } from \"../../../utils/kt-bridge.js\";\nimport { scopedContactKeys } from \"../../queries/scopedContact/scopedContacts.js\";\n\nexport function createUserScopedContactMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n cmd: JsProps<CreateScopedContactEndpointCommandProps>;\n }) =>\n sdk.api.scopedContacts\n .createUserScopedContact(\n new CreateScopedContactEndpointCommand(toKtProps(params.cmd)),\n )\n .then((res) => fromKt(res.body())),\n onSuccess: () =>\n queryClient.invalidateQueries({\n queryKey: [scopedContactKeys.forUser()],\n }),\n };\n}\n"]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { QueryClient } from "@tanstack/query-core";
|
|
2
|
+
import { SoliboSDK } from "@solibo/solibo-sdk";
|
|
3
|
+
import { Id } from "../../../utils/kt-bridge.js";
|
|
4
|
+
export declare function deleteUserScopedContactMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
|
|
5
|
+
mutationFn: (params: {
|
|
6
|
+
endpointId: Id;
|
|
7
|
+
}) => Promise<void>;
|
|
8
|
+
onSuccess: () => Promise<void>;
|
|
9
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { scopedContactKeys } from "../../queries/scopedContact/scopedContacts.js";
|
|
2
|
+
export function deleteUserScopedContactMutationOptions(sdk, queryClient) {
|
|
3
|
+
return {
|
|
4
|
+
mutationFn: (params) => sdk.api.scopedContacts
|
|
5
|
+
.deleteUserScopedContact(BigInt(params.endpointId).valueOf())
|
|
6
|
+
.then((res) => res.body()),
|
|
7
|
+
onSuccess: () => queryClient.invalidateQueries({
|
|
8
|
+
queryKey: [scopedContactKeys.forUser()],
|
|
9
|
+
}),
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=deleteScopedContact.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deleteScopedContact.js","sourceRoot":"","sources":["../../../../src/api/commands/scopedContact/deleteScopedContact.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,iBAAiB,EAAE,MAAM,+CAA+C,CAAC;AAElF,MAAM,UAAU,sCAAsC,CACpD,GAAc,EACd,WAAwB;IAExB,OAAO;QACL,UAAU,EAAE,CAAC,MAA0B,EAAE,EAAE,CACzC,GAAG,CAAC,GAAG,CAAC,cAAc;aACnB,uBAAuB,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,OAAO,EAAE,CAAC;aAC5D,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;QAC9B,SAAS,EAAE,GAAG,EAAE,CACd,WAAW,CAAC,iBAAiB,CAAC;YAC5B,QAAQ,EAAE,CAAC,iBAAiB,CAAC,OAAO,EAAE,CAAC;SACxC,CAAC;KACL,CAAC;AACJ,CAAC","sourcesContent":["import type { QueryClient } from \"@tanstack/query-core\";\nimport { SoliboSDK } from \"@solibo/solibo-sdk\";\nimport { Id } from \"../../../utils/kt-bridge.js\";\nimport { scopedContactKeys } from \"../../queries/scopedContact/scopedContacts.js\";\n\nexport function deleteUserScopedContactMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: { endpointId: Id }) =>\n sdk.api.scopedContacts\n .deleteUserScopedContact(BigInt(params.endpointId).valueOf())\n .then((res) => res.body()),\n onSuccess: () =>\n queryClient.invalidateQueries({\n queryKey: [scopedContactKeys.forUser()],\n }),\n };\n}\n"]}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { QueryClient } from "@tanstack/query-core";
|
|
2
|
+
import { SoliboSDK } from "@solibo/solibo-sdk";
|
|
3
|
+
import { Id } from "../../../utils/kt-bridge.js";
|
|
4
|
+
export declare function expireUserScopedContactMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
|
|
5
|
+
mutationFn: (params: {
|
|
6
|
+
endpointId: Id;
|
|
7
|
+
}) => Promise<import("@solibo/solibo-sdk").ScopedContactEndpoint>;
|
|
8
|
+
onSuccess: (_: unknown, params: {
|
|
9
|
+
endpointId: Id;
|
|
10
|
+
}) => Promise<[void, void]>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { fromKt } from "../../../utils/kt-bridge.js";
|
|
2
|
+
import { scopedContactKeys } from "../../queries/scopedContact/scopedContacts.js";
|
|
3
|
+
export function expireUserScopedContactMutationOptions(sdk, queryClient) {
|
|
4
|
+
return {
|
|
5
|
+
mutationFn: (params) => sdk.api.scopedContacts
|
|
6
|
+
.expireUserScopedContact(BigInt(params.endpointId).valueOf())
|
|
7
|
+
.then((res) => fromKt(res.body())),
|
|
8
|
+
onSuccess: (_, params) => Promise.all([
|
|
9
|
+
queryClient.invalidateQueries({
|
|
10
|
+
queryKey: [scopedContactKeys.forUser()],
|
|
11
|
+
}),
|
|
12
|
+
queryClient.invalidateQueries({
|
|
13
|
+
queryKey: [scopedContactKeys.detailForUser(params.endpointId)],
|
|
14
|
+
}),
|
|
15
|
+
]),
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=expireScopedContact.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"expireScopedContact.js","sourceRoot":"","sources":["../../../../src/api/commands/scopedContact/expireScopedContact.ts"],"names":[],"mappings":"AAEA,OAAO,EAAM,MAAM,EAAE,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,+CAA+C,CAAC;AAElF,MAAM,UAAU,sCAAsC,CACpD,GAAc,EACd,WAAwB;IAExB,OAAO;QACL,UAAU,EAAE,CAAC,MAA0B,EAAE,EAAE,CACzC,GAAG,CAAC,GAAG,CAAC,cAAc;aACnB,uBAAuB,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,OAAO,EAAE,CAAC;aAC5D,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC;QACtC,SAAS,EAAE,CAAC,CAAU,EAAE,MAA0B,EAAE,EAAE,CACpD,OAAO,CAAC,GAAG,CAAC;YACV,WAAW,CAAC,iBAAiB,CAAC;gBAC5B,QAAQ,EAAE,CAAC,iBAAiB,CAAC,OAAO,EAAE,CAAC;aACxC,CAAC;YACF,WAAW,CAAC,iBAAiB,CAAC;gBAC5B,QAAQ,EAAE,CAAC,iBAAiB,CAAC,aAAa,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;aAC/D,CAAC;SACH,CAAC;KACL,CAAC;AACJ,CAAC","sourcesContent":["import type { QueryClient } from \"@tanstack/query-core\";\nimport { SoliboSDK } from \"@solibo/solibo-sdk\";\nimport { Id, fromKt } from \"../../../utils/kt-bridge.js\";\nimport { scopedContactKeys } from \"../../queries/scopedContact/scopedContacts.js\";\n\nexport function expireUserScopedContactMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: { endpointId: Id }) =>\n sdk.api.scopedContacts\n .expireUserScopedContact(BigInt(params.endpointId).valueOf())\n .then((res) => fromKt(res.body())),\n onSuccess: (_: unknown, params: { endpointId: Id }) =>\n Promise.all([\n queryClient.invalidateQueries({\n queryKey: [scopedContactKeys.forUser()],\n }),\n queryClient.invalidateQueries({\n queryKey: [scopedContactKeys.detailForUser(params.endpointId)],\n }),\n ]),\n };\n}\n"]}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { QueryClient } from "@tanstack/query-core";
|
|
2
|
+
import { SoliboSDK, ResolveContactCommandProps } from "@solibo/solibo-sdk";
|
|
3
|
+
import { JsProps } from "../../../utils/kt-bridge.js";
|
|
4
|
+
export declare function resolveUserContactMutationOptions(sdk: SoliboSDK, _queryClient: QueryClient): {
|
|
5
|
+
mutationFn: (params: {
|
|
6
|
+
cmd: JsProps<ResolveContactCommandProps>;
|
|
7
|
+
}) => Promise<import("@solibo/solibo-sdk").ResolvedEndpoint>;
|
|
8
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ResolveContactCommand, } from "@solibo/solibo-sdk";
|
|
2
|
+
import { toKtProps, fromKt } from "../../../utils/kt-bridge.js";
|
|
3
|
+
export function resolveUserContactMutationOptions(sdk, _queryClient) {
|
|
4
|
+
return {
|
|
5
|
+
mutationFn: (params) => sdk.api.scopedContacts
|
|
6
|
+
.resolveUserContact(new ResolveContactCommand(toKtProps(params.cmd)))
|
|
7
|
+
.then((res) => fromKt(res.body())),
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=resolveUserContact.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolveUserContact.js","sourceRoot":"","sources":["../../../../src/api/commands/scopedContact/resolveUserContact.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,qBAAqB,GAEtB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAW,SAAS,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAEzE,MAAM,UAAU,iCAAiC,CAC/C,GAAc,EACd,YAAyB;IAEzB,OAAO;QACL,UAAU,EAAE,CAAC,MAAoD,EAAE,EAAE,CACnE,GAAG,CAAC,GAAG,CAAC,cAAc;aACnB,kBAAkB,CAAC,IAAI,qBAAqB,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aACpE,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC;KACvC,CAAC;AACJ,CAAC","sourcesContent":["import type { QueryClient } from \"@tanstack/query-core\";\nimport {\n SoliboSDK,\n ResolveContactCommand,\n ResolveContactCommandProps,\n} from \"@solibo/solibo-sdk\";\nimport { JsProps, toKtProps, fromKt } from \"../../../utils/kt-bridge.js\";\n\nexport function resolveUserContactMutationOptions(\n sdk: SoliboSDK,\n _queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: { cmd: JsProps<ResolveContactCommandProps> }) =>\n sdk.api.scopedContacts\n .resolveUserContact(new ResolveContactCommand(toKtProps(params.cmd)))\n .then((res) => fromKt(res.body())),\n };\n}\n"]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { QueryClient } from "@tanstack/query-core";
|
|
2
|
+
import { SoliboSDK, UpdateScopedContactEndpointCommandProps } from "@solibo/solibo-sdk";
|
|
3
|
+
import { Id, JsProps } from "../../../utils/kt-bridge.js";
|
|
4
|
+
export declare function updateUserScopedContactMutationOptions(sdk: SoliboSDK, queryClient: QueryClient): {
|
|
5
|
+
mutationFn: (params: {
|
|
6
|
+
endpointId: Id;
|
|
7
|
+
cmd: JsProps<UpdateScopedContactEndpointCommandProps>;
|
|
8
|
+
}) => Promise<import("@solibo/solibo-sdk").ScopedContactEndpoint>;
|
|
9
|
+
onSuccess: (_: unknown, params: {
|
|
10
|
+
endpointId: Id;
|
|
11
|
+
}) => Promise<[void, void]>;
|
|
12
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { UpdateScopedContactEndpointCommand, } from "@solibo/solibo-sdk";
|
|
2
|
+
import { toKtProps, fromKt } from "../../../utils/kt-bridge.js";
|
|
3
|
+
import { scopedContactKeys } from "../../queries/scopedContact/scopedContacts.js";
|
|
4
|
+
export function updateUserScopedContactMutationOptions(sdk, queryClient) {
|
|
5
|
+
return {
|
|
6
|
+
mutationFn: (params) => sdk.api.scopedContacts
|
|
7
|
+
.updateUserScopedContact(BigInt(params.endpointId).valueOf(), new UpdateScopedContactEndpointCommand(toKtProps(params.cmd)))
|
|
8
|
+
.then((res) => fromKt(res.body())),
|
|
9
|
+
onSuccess: (_, params) => Promise.all([
|
|
10
|
+
queryClient.invalidateQueries({
|
|
11
|
+
queryKey: [scopedContactKeys.forUser()],
|
|
12
|
+
}),
|
|
13
|
+
queryClient.invalidateQueries({
|
|
14
|
+
queryKey: [scopedContactKeys.detailForUser(params.endpointId)],
|
|
15
|
+
}),
|
|
16
|
+
]),
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=updateScopedContact.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateScopedContact.js","sourceRoot":"","sources":["../../../../src/api/commands/scopedContact/updateScopedContact.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,kCAAkC,GAEnC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAe,SAAS,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAC7E,OAAO,EAAE,iBAAiB,EAAE,MAAM,+CAA+C,CAAC;AAElF,MAAM,UAAU,sCAAsC,CACpD,GAAc,EACd,WAAwB;IAExB,OAAO;QACL,UAAU,EAAE,CAAC,MAGZ,EAAE,EAAE,CACH,GAAG,CAAC,GAAG,CAAC,cAAc;aACnB,uBAAuB,CACtB,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,OAAO,EAAE,EACnC,IAAI,kCAAkC,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAC9D;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC;QACtC,SAAS,EAAE,CAAC,CAAU,EAAE,MAA0B,EAAE,EAAE,CACpD,OAAO,CAAC,GAAG,CAAC;YACV,WAAW,CAAC,iBAAiB,CAAC;gBAC5B,QAAQ,EAAE,CAAC,iBAAiB,CAAC,OAAO,EAAE,CAAC;aACxC,CAAC;YACF,WAAW,CAAC,iBAAiB,CAAC;gBAC5B,QAAQ,EAAE,CAAC,iBAAiB,CAAC,aAAa,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;aAC/D,CAAC;SACH,CAAC;KACL,CAAC;AACJ,CAAC","sourcesContent":["import type { QueryClient } from \"@tanstack/query-core\";\nimport {\n SoliboSDK,\n UpdateScopedContactEndpointCommand,\n UpdateScopedContactEndpointCommandProps,\n} from \"@solibo/solibo-sdk\";\nimport { Id, JsProps, toKtProps, fromKt } from \"../../../utils/kt-bridge.js\";\nimport { scopedContactKeys } from \"../../queries/scopedContact/scopedContacts.js\";\n\nexport function updateUserScopedContactMutationOptions(\n sdk: SoliboSDK,\n queryClient: QueryClient,\n) {\n return {\n mutationFn: (params: {\n endpointId: Id;\n cmd: JsProps<UpdateScopedContactEndpointCommandProps>;\n }) =>\n sdk.api.scopedContacts\n .updateUserScopedContact(\n BigInt(params.endpointId).valueOf(),\n new UpdateScopedContactEndpointCommand(toKtProps(params.cmd)),\n )\n .then((res) => fromKt(res.body())),\n onSuccess: (_: unknown, params: { endpointId: Id }) =>\n Promise.all([\n queryClient.invalidateQueries({\n queryKey: [scopedContactKeys.forUser()],\n }),\n queryClient.invalidateQueries({\n queryKey: [scopedContactKeys.detailForUser(params.endpointId)],\n }),\n ]),\n };\n}\n"]}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { SoliboSDK } from "@solibo/solibo-sdk";
|
|
2
|
+
import { Id } from "../../../utils/kt-bridge.js";
|
|
3
|
+
export declare const scopedContactKeys: {
|
|
4
|
+
all: readonly ["scopedContact"];
|
|
5
|
+
forUser: () => readonly ["scopedContact", "user"];
|
|
6
|
+
detailForUser: (endpointId?: Id | null | undefined) => readonly ["scopedContact", "user", "detail", string | number | null | undefined];
|
|
7
|
+
};
|
|
8
|
+
export declare function userScopedContactsQueryOptions(sdk: SoliboSDK, params?: {
|
|
9
|
+
includeExpired?: boolean | null | undefined;
|
|
10
|
+
fields?: string;
|
|
11
|
+
}): {
|
|
12
|
+
queryKey: (string | boolean | readonly ["scopedContact", "user"] | null | undefined)[];
|
|
13
|
+
queryFn: () => Promise<import("@solibo/solibo-sdk").KtList<import("@solibo/solibo-sdk").ScopedContactEndpoint>>;
|
|
14
|
+
};
|
|
15
|
+
export declare function userScopedContactQueryOptions(sdk: SoliboSDK, params: {
|
|
16
|
+
endpointId?: Id | null | undefined;
|
|
17
|
+
fields?: string;
|
|
18
|
+
}): {
|
|
19
|
+
queryKey: (string | readonly ["scopedContact", "user", "detail", string | number | null | undefined] | undefined)[];
|
|
20
|
+
queryFn: () => Promise<import("@solibo/solibo-sdk").ScopedContactEndpoint>;
|
|
21
|
+
enabled: boolean;
|
|
22
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { fromKt, toKeyId } from "../../../utils/kt-bridge.js";
|
|
2
|
+
export const scopedContactKeys = {
|
|
3
|
+
all: ["scopedContact"],
|
|
4
|
+
forUser: () => [...scopedContactKeys.all, "user"],
|
|
5
|
+
detailForUser: (endpointId) => [...scopedContactKeys.forUser(), "detail", toKeyId(endpointId)],
|
|
6
|
+
};
|
|
7
|
+
export function userScopedContactsQueryOptions(sdk, params = {}) {
|
|
8
|
+
return {
|
|
9
|
+
queryKey: [
|
|
10
|
+
scopedContactKeys.forUser(),
|
|
11
|
+
params.includeExpired,
|
|
12
|
+
params.fields,
|
|
13
|
+
],
|
|
14
|
+
queryFn: () => sdk.api.scopedContacts
|
|
15
|
+
.listUserScopedContacts(params.includeExpired ?? undefined, params.fields)
|
|
16
|
+
.then((res) => fromKt(res.body())),
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
export function userScopedContactQueryOptions(sdk, params) {
|
|
20
|
+
return {
|
|
21
|
+
queryKey: [
|
|
22
|
+
scopedContactKeys.detailForUser(params.endpointId),
|
|
23
|
+
params.fields,
|
|
24
|
+
],
|
|
25
|
+
queryFn: () => sdk.api.scopedContacts
|
|
26
|
+
.showUserScopedContact(BigInt(params.endpointId).valueOf(), params.fields)
|
|
27
|
+
.then((res) => fromKt(res.body())),
|
|
28
|
+
enabled: !!params.endpointId,
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=scopedContacts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scopedContacts.js","sourceRoot":"","sources":["../../../../src/api/queries/scopedContact/scopedContacts.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAM,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAElE,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,GAAG,EAAE,CAAC,eAAe,CAAU;IAC/B,OAAO,EAAE,GAAG,EAAE,CAAC,CAAC,GAAG,iBAAiB,CAAC,GAAG,EAAE,MAAM,CAAU;IAC1D,aAAa,EAAE,CAAC,UAAkC,EAAE,EAAE,CACpD,CAAC,GAAG,iBAAiB,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,OAAO,CAAC,UAAU,CAAC,CAAU;CAC3E,CAAC;AAEF,MAAM,UAAU,8BAA8B,CAC5C,GAAc,EACd,SAGI,EAAE;IAEN,OAAO;QACL,QAAQ,EAAE;YACR,iBAAiB,CAAC,OAAO,EAAE;YAC3B,MAAM,CAAC,cAAc;YACrB,MAAM,CAAC,MAAM;SACd;QACD,OAAO,EAAE,GAAG,EAAE,CACZ,GAAG,CAAC,GAAG,CAAC,cAAc;aACnB,sBAAsB,CACrB,MAAM,CAAC,cAAc,IAAI,SAAS,EAClC,MAAM,CAAC,MAAM,CACd;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC;KACvC,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,6BAA6B,CAC3C,GAAc,EACd,MAGC;IAED,OAAO;QACL,QAAQ,EAAE;YACR,iBAAiB,CAAC,aAAa,CAAC,MAAM,CAAC,UAAU,CAAC;YAClD,MAAM,CAAC,MAAM;SACd;QACD,OAAO,EAAE,GAAG,EAAE,CACZ,GAAG,CAAC,GAAG,CAAC,cAAc;aACnB,qBAAqB,CACpB,MAAM,CAAC,MAAM,CAAC,UAAW,CAAC,CAAC,OAAO,EAAE,EACpC,MAAM,CAAC,MAAM,CACd;aACA,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC;QACtC,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC,UAAU;KAC7B,CAAC;AACJ,CAAC","sourcesContent":["import { SoliboSDK } from \"@solibo/solibo-sdk\";\nimport { fromKt, Id, toKeyId } from \"../../../utils/kt-bridge.js\";\n\nexport const scopedContactKeys = {\n all: [\"scopedContact\"] as const,\n forUser: () => [...scopedContactKeys.all, \"user\"] as const,\n detailForUser: (endpointId?: Id | null | undefined) =>\n [...scopedContactKeys.forUser(), \"detail\", toKeyId(endpointId)] as const,\n};\n\nexport function userScopedContactsQueryOptions(\n sdk: SoliboSDK,\n params: {\n includeExpired?: boolean | null | undefined;\n fields?: string;\n } = {},\n) {\n return {\n queryKey: [\n scopedContactKeys.forUser(),\n params.includeExpired,\n params.fields,\n ],\n queryFn: () =>\n sdk.api.scopedContacts\n .listUserScopedContacts(\n params.includeExpired ?? undefined,\n params.fields,\n )\n .then((res) => fromKt(res.body())),\n };\n}\n\nexport function userScopedContactQueryOptions(\n sdk: SoliboSDK,\n params: {\n endpointId?: Id | null | undefined;\n fields?: string;\n },\n) {\n return {\n queryKey: [\n scopedContactKeys.detailForUser(params.endpointId),\n params.fields,\n ],\n queryFn: () =>\n sdk.api.scopedContacts\n .showUserScopedContact(\n BigInt(params.endpointId!).valueOf(),\n params.fields,\n )\n .then((res) => fromKt(res.body())),\n enabled: !!params.endpointId,\n };\n}\n"]}
|
package/dist/index.d.ts
CHANGED
|
@@ -203,6 +203,11 @@ export * from "./api/commands/resident/updateResidentNote.js";
|
|
|
203
203
|
export * from "./api/commands/routines/createRoutine.js";
|
|
204
204
|
export * from "./api/commands/routines/deleteRoutine.js";
|
|
205
205
|
export * from "./api/commands/routines/updateRoutine.js";
|
|
206
|
+
export * from "./api/commands/scopedContact/createScopedContact.js";
|
|
207
|
+
export * from "./api/commands/scopedContact/deleteScopedContact.js";
|
|
208
|
+
export * from "./api/commands/scopedContact/expireScopedContact.js";
|
|
209
|
+
export * from "./api/commands/scopedContact/resolveUserContact.js";
|
|
210
|
+
export * from "./api/commands/scopedContact/updateScopedContact.js";
|
|
206
211
|
export * from "./api/commands/section/assignParkingSpaceToSection.js";
|
|
207
212
|
export * from "./api/commands/section/assignStorageRoomToSection.js";
|
|
208
213
|
export * from "./api/commands/section/createSection.js";
|
|
@@ -409,6 +414,7 @@ export * from "./api/queries/routines/companyFeatures.js";
|
|
|
409
414
|
export * from "./api/queries/routines/routine.js";
|
|
410
415
|
export * from "./api/queries/routines/routineGroupDrafts.js";
|
|
411
416
|
export * from "./api/queries/routines/routines.js";
|
|
417
|
+
export * from "./api/queries/scopedContact/scopedContacts.js";
|
|
412
418
|
export * from "./api/queries/settlement/settlement.js";
|
|
413
419
|
export * from "./api/queries/settlement/settlementCustomCost.js";
|
|
414
420
|
export * from "./api/queries/settlement/settlementCustomCosts.js";
|
package/dist/index.js
CHANGED
|
@@ -203,6 +203,11 @@ export * from "./api/commands/resident/updateResidentNote.js";
|
|
|
203
203
|
export * from "./api/commands/routines/createRoutine.js";
|
|
204
204
|
export * from "./api/commands/routines/deleteRoutine.js";
|
|
205
205
|
export * from "./api/commands/routines/updateRoutine.js";
|
|
206
|
+
export * from "./api/commands/scopedContact/createScopedContact.js";
|
|
207
|
+
export * from "./api/commands/scopedContact/deleteScopedContact.js";
|
|
208
|
+
export * from "./api/commands/scopedContact/expireScopedContact.js";
|
|
209
|
+
export * from "./api/commands/scopedContact/resolveUserContact.js";
|
|
210
|
+
export * from "./api/commands/scopedContact/updateScopedContact.js";
|
|
206
211
|
export * from "./api/commands/section/assignParkingSpaceToSection.js";
|
|
207
212
|
export * from "./api/commands/section/assignStorageRoomToSection.js";
|
|
208
213
|
export * from "./api/commands/section/createSection.js";
|
|
@@ -409,6 +414,7 @@ export * from "./api/queries/routines/companyFeatures.js";
|
|
|
409
414
|
export * from "./api/queries/routines/routine.js";
|
|
410
415
|
export * from "./api/queries/routines/routineGroupDrafts.js";
|
|
411
416
|
export * from "./api/queries/routines/routines.js";
|
|
417
|
+
export * from "./api/queries/scopedContact/scopedContacts.js";
|
|
412
418
|
export * from "./api/queries/settlement/settlement.js";
|
|
413
419
|
export * from "./api/queries/settlement/settlementCustomCost.js";
|
|
414
420
|
export * from "./api/queries/settlement/settlementCustomCosts.js";
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["import \"./utils/bigint-polyfill.js\";\n\n// Re-export everything from @solibo/solibo-sdk — consumers only need @solibo/solibo-query.\nexport * from \"@solibo/solibo-sdk\";\n\n// Utilities\nexport {\n fromKt,\n toKtProps,\n toLong,\n toKtList,\n toIdList,\n toKeyId,\n} from \"./utils/kt-bridge.js\";\nexport type { Id, JsProps, FromKt } from \"./utils/kt-bridge.js\";\nexport {\n nextPageParam,\n prevPageParam,\n totalCountFromPages,\n} from \"./utils/pageUtils.js\";\nexport type { PagedPage } from \"./utils/pageUtils.js\";\nexport { seconds, minutes, hours } from \"./utils/dateTime.js\";\nexport { fileSlingshotRequest, completeSlingshot } from \"./api/documentApi.js\";\n\nexport * from \"./api/commands/board/createBoardMember.js\";\nexport * from \"./api/commands/board/deleteBoardMember.js\";\nexport * from \"./api/commands/board/inviteBoardMemberToSoliboHome.js\";\nexport * from \"./api/commands/communication/buySMSBundle.js\";\nexport * from \"./api/commands/communication/createNewsletter.js\";\nexport * from \"./api/commands/communication/createSMSBroadcast.js\";\nexport * from \"./api/commands/communication/deleteDocumentFromNewsletter.js\";\nexport * from \"./api/commands/communication/deleteNewsletter.js\";\nexport * from \"./api/commands/communication/deleteSMSBroadcast.js\";\nexport * from \"./api/commands/communication/publishNewsletter.js\";\nexport * from \"./api/commands/communication/publishSMSBroadcast.js\";\nexport * from \"./api/commands/communication/reportPushNotificationRead.js\";\nexport * from \"./api/commands/communication/signupNewsletter.js\";\nexport * from \"./api/commands/communication/updateNewsletter.js\";\nexport * from \"./api/commands/communication/updateSMSBroadcast.js\";\nexport * from \"./api/commands/company/createCompanyCustomerClaim.js\";\nexport * from \"./api/commands/company/deleteFractions.js\";\nexport * from \"./api/commands/company/importCompanies.js\";\nexport * from \"./api/commands/company/importDraft.js\";\nexport * from \"./api/commands/company/importHousingAssociation.js\";\nexport * from \"./api/commands/company/importHousingCooperative.js\";\nexport * from \"./api/commands/company/importHousingCooperativeByAddress.js\";\nexport * from \"./api/commands/company/offboardCompany.js\";\nexport * from \"./api/commands/company/resetSales.js\";\nexport * from \"./api/commands/company/saveCompanyDetailed.js\";\nexport * from \"./api/commands/company/saveImportDraft.js\";\nexport * from \"./api/commands/company/updateActiveAdministrators.js\";\nexport * from \"./api/commands/company/updateAdministratorsForCompany.js\";\nexport * from \"./api/commands/company/updateCompanyDetailed.js\";\nexport * from \"./api/commands/company/updateCompanyOrdinances.js\";\nexport * from \"./api/commands/company/updateFractions.js\";\nexport * from \"./api/commands/conversation/completeConversation.js\";\nexport * from \"./api/commands/conversation/conversationBackInProgress.js\";\nexport * from \"./api/commands/conversation/conversationFolders.js\";\nexport * from \"./api/commands/conversation/createConversation.js\";\nexport * from \"./api/commands/conversation/createConversationCategory.js\";\nexport * from \"./api/commands/conversation/createConversationMessage.js\";\nexport * from \"./api/commands/conversation/createConversationParticipant.js\";\nexport * from \"./api/commands/conversation/createExternalConversationParticipant.js\";\nexport * from \"./api/commands/conversation/createInquiry.js\";\nexport * from \"./api/commands/conversation/createInquiryOpen.js\";\nexport * from \"./api/commands/conversation/createInternalConversationMessage.js\";\nexport * from \"./api/commands/conversation/createPublicConversationMessage.js\";\nexport * from \"./api/commands/conversation/deleteConversation.js\";\nexport * from \"./api/commands/conversation/deleteConversationCategory.js\";\nexport * from \"./api/commands/conversation/deleteConversationParticipant.js\";\nexport * from \"./api/commands/conversation/markConversationRead.js\";\nexport * from \"./api/commands/conversation/moveConversation.js\";\nexport * from \"./api/commands/conversation/publicUploadDocumentToConversation.js\";\nexport * from \"./api/commands/conversation/publishDraftConversation.js\";\nexport * from \"./api/commands/conversation/updateConversation.js\";\nexport * from \"./api/commands/conversation/updateConversationCategories.js\";\nexport * from \"./api/commands/conversation/updateConversationCategory.js\";\nexport * from \"./api/commands/document/createDocumentDirectory.js\";\nexport * from \"./api/commands/document/deleteDocument.js\";\nexport * from \"./api/commands/document/moveDocument.js\";\nexport * from \"./api/commands/document/moveDocumentToTrash.js\";\nexport * from \"./api/commands/document/removeDocumentFromTrash.js\";\nexport * from \"./api/commands/document/renameDocument.js\";\nexport * from \"./api/commands/document/uploadDocument.js\";\nexport * from \"./api/commands/economy/approveInvoice.js\";\nexport * from \"./api/commands/economy/attachDocumentToEconomicReport.js\";\nexport * from \"./api/commands/economy/createInvoiceNotice.js\";\nexport * from \"./api/commands/economy/orderEconomicReport.js\";\nexport * from \"./api/commands/economy/rejectInvoice.js\";\nexport * from \"./api/commands/economy/updateInvoiceNotification.js\";\nexport * from \"./api/commands/economy/updateRealtimeInvoiceNotification.js\";\nexport * from \"./api/commands/expense/approveExpense.js\";\nexport * from \"./api/commands/expense/createExpense.js\";\nexport * from \"./api/commands/expense/deleteExpense.js\";\nexport * from \"./api/commands/expense/rejectExpense.js\";\nexport * from \"./api/commands/hms/setupHMSSettings.js\";\nexport * from \"./api/commands/hms/updateHMSSettings.js\";\nexport * from \"./api/commands/homepage/createPost.js\";\nexport * from \"./api/commands/homepage/createPracticalInfo.js\";\nexport * from \"./api/commands/homepage/deletePost.js\";\nexport * from \"./api/commands/homepage/deletePracticalInfo.js\";\nexport * from \"./api/commands/homepage/updateFeedWeighting.js\";\nexport * from \"./api/commands/homepage/updatePost.js\";\nexport * from \"./api/commands/homepage/updatePracticalInfo.js\";\nexport * from \"./api/commands/homepage/uploadHomepageImage.js\";\nexport * from \"./api/commands/insurance/closeInsurance.js\";\nexport * from \"./api/commands/insurance/createInsurance.js\";\nexport * from \"./api/commands/insurance/deleteInsurance.js\";\nexport * from \"./api/commands/invoicing/activateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/activateInvoicingPlan.js\";\nexport * from \"./api/commands/invoicing/activateTriplewin.js\";\nexport * from \"./api/commands/invoicing/closeInvoice.js\";\nexport * from \"./api/commands/invoicing/createAdhocLinesForCompany.js\";\nexport * from \"./api/commands/invoicing/createAllocationKey.js\";\nexport * from \"./api/commands/invoicing/createCreditNote.js\";\nexport * from \"./api/commands/invoicing/createCustomer.js\";\nexport * from \"./api/commands/invoicing/createCustomerById.js\";\nexport * from \"./api/commands/invoicing/createCustomerComment.js\";\nexport * from \"./api/commands/invoicing/createInvoicePlanLine.js\";\nexport * from \"./api/commands/invoicing/createInvoiceRecipient.js\";\nexport * from \"./api/commands/invoicing/createInvoicingPlan.js\";\nexport * from \"./api/commands/invoicing/deactivateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocInvoicingLine.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocLineGroup.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocLines.js\";\nexport * from \"./api/commands/invoicing/deleteDistribution.js\";\nexport * from \"./api/commands/invoicing/deleteInvoiceRecipient.js\";\nexport * from \"./api/commands/invoicing/deletePlannedInvoiceLineChanges.js\";\nexport * from \"./api/commands/invoicing/invoicingMutations.js\";\nexport * from \"./api/commands/invoicing/registerPayment.js\";\nexport * from \"./api/commands/invoicing/toggleInvoicingPlanTransactionOverdue.js\";\nexport * from \"./api/commands/invoicing/toggleOverdue.js\";\nexport * from \"./api/commands/invoicing/toggleOverdues.js\";\nexport * from \"./api/commands/invoicing/updateAdhocGroup.js\";\nexport * from \"./api/commands/invoicing/updateAdhocLinesForCompany.js\";\nexport * from \"./api/commands/invoicing/updateAllocationKey.js\";\nexport * from \"./api/commands/invoicing/updateCommonExpensesSettings.js\";\nexport * from \"./api/commands/invoicing/updateCustomerMeta.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceDelivery.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceLineName.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceSettings.js\";\nexport * from \"./api/commands/issue/changeResponsible.js\";\nexport * from \"./api/commands/issue/closeIssue.js\";\nexport * from \"./api/commands/issue/createConversationToIssue.js\";\nexport * from \"./api/commands/issue/createIssue.js\";\nexport * from \"./api/commands/issue/createIssueComment.js\";\nexport * from \"./api/commands/issue/createIssueToMeeting.js\";\nexport * from \"./api/commands/issue/createSectionToIssue.js\";\nexport * from \"./api/commands/issue/deleteSectionFromIssue.js\";\nexport * from \"./api/commands/issue/reOpenIssue.js\";\nexport * from \"./api/commands/issue/removeConversationFromIssue.js\";\nexport * from \"./api/commands/issue/removeIssueFromMeeting.js\";\nexport * from \"./api/commands/issue/reorderIssueInMeeting.js\";\nexport * from \"./api/commands/issue/updateIssue.js\";\nexport * from \"./api/commands/issue/updateIssueConclusion.js\";\nexport * from \"./api/commands/issue/updateIssueReport.js\";\nexport * from \"./api/commands/loan/createLoan.js\";\nexport * from \"./api/commands/loan/deleteLoan.js\";\nexport * from \"./api/commands/loan/setMainDocumentId.js\";\nexport * from \"./api/commands/loan/updateLoan.js\";\nexport * from \"./api/commands/meeting/closeMeeting.js\";\nexport * from \"./api/commands/meeting/createMeeting.js\";\nexport * from \"./api/commands/meeting/createMeetingSummons.js\";\nexport * from \"./api/commands/meeting/createSignatureReminder.js\";\nexport * from \"./api/commands/meeting/deleteMeeting.js\";\nexport * from \"./api/commands/meeting/followUpIssueLater.js\";\nexport * from \"./api/commands/meeting/issueTreated.js\";\nexport * from \"./api/commands/meeting/reOpenMeeting.js\";\nexport * from \"./api/commands/meeting/registerAttendance.js\";\nexport * from \"./api/commands/meeting/rsvp.js\";\nexport * from \"./api/commands/meeting/sign.js\";\nexport * from \"./api/commands/meeting/signatureUnobtainable.js\";\nexport * from \"./api/commands/meeting/startMeeting.js\";\nexport * from \"./api/commands/meeting/updateMeeting.js\";\nexport * from \"./api/commands/meeting/updateMeetingParticipants.js\";\nexport * from \"./api/commands/organization/assignParkingSpaceToOrganization.js\";\nexport * from \"./api/commands/organization/assignStorageRoomToOrganization.js\";\nexport * from \"./api/commands/organization/createEmployee.js\";\nexport * from \"./api/commands/organization/createEmployeeCompanyContactRole.js\";\nexport * from \"./api/commands/organization/createEmployeeSectionContactRole.js\";\nexport * from \"./api/commands/organization/deleteEmployee.js\";\nexport * from \"./api/commands/organization/deleteOrganizationFromSAM.js\";\nexport * from \"./api/commands/organization/massUpdateOrganizations.js\";\nexport * from \"./api/commands/organization/removeCompanyContactRole.js\";\nexport * from \"./api/commands/organization/removeOrganizationRole.js\";\nexport * from \"./api/commands/organization/removeSectionContactRole.js\";\nexport * from \"./api/commands/organization/unAssignParkingSpaceToOrganization.js\";\nexport * from \"./api/commands/organization/unAssignStorageRoomToOrganization.js\";\nexport * from \"./api/commands/organization/updateEmployee.js\";\nexport * from \"./api/commands/organization/updateOrganization.js\";\nexport * from \"./api/commands/parkingSpaces/createParkingSpace.js\";\nexport * from \"./api/commands/parkingSpaces/deleteParkingSpace.js\";\nexport * from \"./api/commands/parkingSpaces/exportParkingSpaceAssets.js\";\nexport * from \"./api/commands/parkingSpaces/updateParkingSpace.js\";\nexport * from \"./api/commands/person/assignParkingSpaceToPerson.js\";\nexport * from \"./api/commands/person/assignStorageRoomToPerson.js\";\nexport * from \"./api/commands/person/deletePersonRole.js\";\nexport * from \"./api/commands/person/massUpdatePerson.js\";\nexport * from \"./api/commands/person/massUpdateRoles.js\";\nexport * from \"./api/commands/person/mergePerson.js\";\nexport * from \"./api/commands/person/personalIdentityNumberSearch.js\";\nexport * from \"./api/commands/person/unAssignParkingSpaceToPerson.js\";\nexport * from \"./api/commands/person/unAssignStorageRoomToPerson.js\";\nexport * from \"./api/commands/person/updatePerson.js\";\nexport * from \"./api/commands/person/updateResidency.js\";\nexport * from \"./api/commands/resident/createOccupancyRecord.js\";\nexport * from \"./api/commands/resident/createPhysicalLetterToResidentInCompany.js\";\nexport * from \"./api/commands/resident/createResident.js\";\nexport * from \"./api/commands/resident/deleteOccupancyRecord.js\";\nexport * from \"./api/commands/resident/removePersonFromCompany.js\";\nexport * from \"./api/commands/resident/requestResidentChange.js\";\nexport * from \"./api/commands/resident/residentActions.js\";\nexport * from \"./api/commands/resident/updateOccupancyRecord.js\";\nexport * from \"./api/commands/resident/updateOrganizationReservations.js\";\nexport * from \"./api/commands/resident/updatePersonReservations.js\";\nexport * from \"./api/commands/resident/updateResident.js\";\nexport * from \"./api/commands/resident/updateResidentNote.js\";\nexport * from \"./api/commands/routines/createRoutine.js\";\nexport * from \"./api/commands/routines/deleteRoutine.js\";\nexport * from \"./api/commands/routines/updateRoutine.js\";\nexport * from \"./api/commands/section/assignParkingSpaceToSection.js\";\nexport * from \"./api/commands/section/assignStorageRoomToSection.js\";\nexport * from \"./api/commands/section/createSection.js\";\nexport * from \"./api/commands/section/createSectionStatus.js\";\nexport * from \"./api/commands/section/createSubSection.js\";\nexport * from \"./api/commands/section/deleteSection.js\";\nexport * from \"./api/commands/section/exportSectionAssets.js\";\nexport * from \"./api/commands/section/massUpdateSection.js\";\nexport * from \"./api/commands/section/ownershipTransferSection.js\";\nexport * from \"./api/commands/section/removeSectionStatus.js\";\nexport * from \"./api/commands/section/tagOnSection.js\";\nexport * from \"./api/commands/section/unAssignParkingSpaceToSection.js\";\nexport * from \"./api/commands/section/unAssignStorageRoomToSection.js\";\nexport * from \"./api/commands/section/updateSection.js\";\nexport * from \"./api/commands/section/updateSectionNote.js\";\nexport * from \"./api/commands/section/updateTagsOnSection.js\";\nexport * from \"./api/commands/settlement/closeSettlement.js\";\nexport * from \"./api/commands/settlement/createSettlement.js\";\nexport * from \"./api/commands/settlement/createSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/createSettlementProviderConfiguration.js\";\nexport * from \"./api/commands/settlement/deleteSettlement.js\";\nexport * from \"./api/commands/settlement/deleteSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/updateSettlement.js\";\nexport * from \"./api/commands/settlement/updateSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/updateSettlementProviderConfiguration.js\";\nexport * from \"./api/commands/settlement/upsertSettlementProviderCredentials.js\";\nexport * from \"./api/commands/storageRoom/createStorageRoom.js\";\nexport * from \"./api/commands/storageRoom/deleteStorageRoom.js\";\nexport * from \"./api/commands/storageRoom/exportStorageRooms.js\";\nexport * from \"./api/commands/storageRoom/updateStorageRoom.js\";\nexport * from \"./api/commands/supplier/createSupplierComment.js\";\nexport * from \"./api/commands/supplier/createSupplierContact.js\";\nexport * from \"./api/commands/supplier/createSupplierForCompany.js\";\nexport * from \"./api/commands/supplier/deleteCompanySupplier.js\";\nexport * from \"./api/commands/supplier/deleteSupplierContactPerson.js\";\nexport * from \"./api/commands/supplier/editSupplierContact.js\";\nexport * from \"./api/commands/supplier/editSupplierForCompany.js\";\nexport * from \"./api/commands/supplier/supplierMutations.js\";\nexport * from \"./api/commands/supplier/updateServiceCategories.js\";\nexport * from \"./api/commands/supplier/updateSupplierContactImage.js\";\nexport * from \"./api/commands/supplier/uploadSupplierLogo.js\";\nexport * from \"./api/commands/task/completeTask.js\";\nexport * from \"./api/commands/task/createTask.js\";\nexport * from \"./api/commands/task/deleteTask.js\";\nexport * from \"./api/commands/task/undoCompleteTask.js\";\nexport * from \"./api/commands/task/updateTask.js\";\nexport * from \"./api/commands/thirdPartyInformation/completeThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/createDuplicateLetter.js\";\nexport * from \"./api/commands/thirdPartyInformation/createThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/createThreePOToSkatteetaten.js\";\nexport * from \"./api/commands/thirdPartyInformation/overrideThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/reopenThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/updateThirdPartyInformation.js\";\nexport * from \"./api/commands/user/contactHooks.js\";\nexport * from \"./api/commands/user/deleteProfilePicture.js\";\nexport * from \"./api/commands/user/fCMDevice.js\";\nexport * from \"./api/commands/user/mfa.js\";\nexport * from \"./api/commands/user/resetPassword.js\";\nexport * from \"./api/commands/user/updateUser.js\";\nexport * from \"./api/commands/user/uploadProfilePicture.js\";\nexport * from \"./api/queries/administration/agreementDetails.js\";\nexport * from \"./api/queries/administration/insuranceAgreements.js\";\nexport * from \"./api/queries/administration/loanAgreements.js\";\nexport * from \"./api/queries/administration/loanChangeLog.js\";\nexport * from \"./api/queries/administration/tripletexDetails.js\";\nexport * from \"./api/queries/board/boardMembers.js\";\nexport * from \"./api/queries/board/showPersonalIdentityNumberOnBoardMember.js\";\nexport * from \"./api/queries/communication/availableBundles.js\";\nexport * from \"./api/queries/communication/availableSMS.js\";\nexport * from \"./api/queries/communication/communicationReport.js\";\nexport * from \"./api/queries/communication/newsletter.js\";\nexport * from \"./api/queries/communication/newsletters.js\";\nexport * from \"./api/queries/communication/notificationgroupsEmail.js\";\nexport * from \"./api/queries/communication/notificationgroupsSms.js\";\nexport * from \"./api/queries/communication/sMSAvailableForSMSBroadcastPost.js\";\nexport * from \"./api/queries/communication/sMSBroadcast.js\";\nexport * from \"./api/queries/communication/sMSBroadcasts.js\";\nexport * from \"./api/queries/communication/sMSPurchases.js\";\nexport * from \"./api/queries/company/activeAdministrators.js\";\nexport * from \"./api/queries/company/administratorsForCompany.js\";\nexport * from \"./api/queries/company/availableAdministrators.js\";\nexport * from \"./api/queries/company/availableAdministratorsForCompany.js\";\nexport * from \"./api/queries/company/companies.js\";\nexport * from \"./api/queries/company/companyAddresses.js\";\nexport * from \"./api/queries/company/companyById.js\";\nexport * from \"./api/queries/company/companyDetailed.js\";\nexport * from \"./api/queries/company/companyDraft.js\";\nexport * from \"./api/queries/company/companyDrafts.js\";\nexport * from \"./api/queries/company/companyOrdinances.js\";\nexport * from \"./api/queries/company/companyTypes.js\";\nexport * from \"./api/queries/company/fractions.js\";\nexport * from \"./api/queries/company/newlyManagedCompanies.js\";\nexport * from \"./api/queries/conversation/companyConversationCategoriesForRequests.js\";\nexport * from \"./api/queries/conversation/conversation.js\";\nexport * from \"./api/queries/conversation/conversationCategories.js\";\nexport * from \"./api/queries/conversation/conversationCategoriesOpen.js\";\nexport * from \"./api/queries/conversation/conversationCount.js\";\nexport * from \"./api/queries/conversation/conversationFolders.js\";\nexport * from \"./api/queries/conversation/conversations.js\";\nexport * from \"./api/queries/conversation/conversationsByParticipant.js\";\nexport * from \"./api/queries/conversation/publicConversation.js\";\nexport * from \"./api/queries/conversation/publicConversationAuth.js\";\nexport * from \"./api/queries/conversation/unreadConversationsCount.js\";\nexport * from \"./api/queries/countries/countries.js\";\nexport * from \"./api/queries/document/documentActions.js\";\nexport * from \"./api/queries/document/documents.js\";\nexport * from \"./api/queries/document/documentsOfTypeForCompany.js\";\nexport * from \"./api/queries/document/getDocumentURL.js\";\nexport * from \"./api/queries/document/searchDocumentsForCompany.js\";\nexport * from \"./api/queries/economy/checkIfAccountingAvailable.js\";\nexport * from \"./api/queries/economy/companiesEconomyStatus.js\";\nexport * from \"./api/queries/economy/economicReports.js\";\nexport * from \"./api/queries/economy/invoiceArchive.js\";\nexport * from \"./api/queries/economy/invoiceForApprovalCount.js\";\nexport * from \"./api/queries/economy/invoiceNotification.js\";\nexport * from \"./api/queries/economy/invoices.js\";\nexport * from \"./api/queries/economy/status.js\";\nexport * from \"./api/queries/economy/unattestedCounts.js\";\nexport * from \"./api/queries/expense/expense.js\";\nexport * from \"./api/queries/expense/expenseList.js\";\nexport * from \"./api/queries/expense/expenseTypes.js\";\nexport * from \"./api/queries/hms/hMSReportRoutines.js\";\nexport * from \"./api/queries/hms/hMSSettings.js\";\nexport * from \"./api/queries/homepage/homepage.js\";\nexport * from \"./api/queries/homepage/homepageFeed.js\";\nexport * from \"./api/queries/homepage/homepageRss.js\";\nexport * from \"./api/queries/homepage/openHomepage.js\";\nexport * from \"./api/queries/homepage/openHomepageDocument.js\";\nexport * from \"./api/queries/homepage/openHomepageFeed.js\";\nexport * from \"./api/queries/homepage/postDocuments.js\";\nexport * from \"./api/queries/homepage/postNotificationgroups.js\";\nexport * from \"./api/queries/homepage/sMSAvailableForPost.js\";\nexport * from \"./api/queries/invoicing/adHocGroupById.js\";\nexport * from \"./api/queries/invoicing/adHocGroups.js\";\nexport * from \"./api/queries/invoicing/checkTriplewinActivated.js\";\nexport * from \"./api/queries/invoicing/creditNotes.js\";\nexport * from \"./api/queries/invoicing/customer.js\";\nexport * from \"./api/queries/invoicing/customerInvoices.js\";\nexport * from \"./api/queries/invoicing/customerMetadata.js\";\nexport * from \"./api/queries/invoicing/customerRecipient.js\";\nexport * from \"./api/queries/invoicing/customers.js\";\nexport * from \"./api/queries/invoicing/expiredInvoices.js\";\nexport * from \"./api/queries/invoicing/historicInvoices.js\";\nexport * from \"./api/queries/invoicing/invoicePlan.js\";\nexport * from \"./api/queries/invoicing/invoicePlanDistributions.js\";\nexport * from \"./api/queries/invoicing/invoicePlanLine.js\";\nexport * from \"./api/queries/invoicing/invoicePlanLines.js\";\nexport * from \"./api/queries/invoicing/invoicePlanTransactions.js\";\nexport * from \"./api/queries/invoicing/invoicePlans.js\";\nexport * from \"./api/queries/invoicing/invoicePlansForSection.js\";\nexport * from \"./api/queries/invoicing/invoiceSettings.js\";\nexport * from \"./api/queries/invoicing/invoicingAdHocLines.js\";\nexport * from \"./api/queries/invoicing/invoicingExpiredByCustomer.js\";\nexport * from \"./api/queries/invoicing/invoicingExpiredTypes.js\";\nexport * from \"./api/queries/invoicing/invoicingInvoiceDetails.js\";\nexport * from \"./api/queries/invoicing/invoicingKeys.js\";\nexport * from \"./api/queries/invoicing/invoicingPlanTypes.js\";\nexport * from \"./api/queries/invoicing/massInvoiceForCompany.js\";\nexport * from \"./api/queries/invoicing/massInvoicePdfPreview.js\";\nexport * from \"./api/queries/invoicing/massInvoicePreview.js\";\nexport * from \"./api/queries/invoicing/overdueInvoices.js\";\nexport * from \"./api/queries/invoicing/planSettings.js\";\nexport * from \"./api/queries/invoicing/preview.js\";\nexport * from \"./api/queries/invoicing/previewPdf.js\";\nexport * from \"./api/queries/invoicing/processedPayments.js\";\nexport * from \"./api/queries/invoicing/queuedInvoicePdf.js\";\nexport * from \"./api/queries/invoicing/queuedInvoices.js\";\nexport * from \"./api/queries/invoicing/recipient.js\";\nexport * from \"./api/queries/invoicing/sectionInvoices.js\";\nexport * from \"./api/queries/invoicing/unprocessedPayments.js\";\nexport * from \"./api/queries/invoicing/upcomingInvoicing.js\";\nexport * from \"./api/queries/issue/issue.js\";\nexport * from \"./api/queries/issue/issues.js\";\nexport * from \"./api/queries/meeting/meetings.js\";\nexport * from \"./api/queries/organization/organization.js\";\nexport * from \"./api/queries/organization/organizationByOrgnr.js\";\nexport * from \"./api/queries/organization/organizations.js\";\nexport * from \"./api/queries/organization/organizationsInCompany.js\";\nexport * from \"./api/queries/organization/otherOrganizations.js\";\nexport * from \"./api/queries/parkingSpaces/parkingSpaces.js\";\nexport * from \"./api/queries/person/otherPersons.js\";\nexport * from \"./api/queries/person/person.js\";\nexport * from \"./api/queries/person/personSearch.js\";\nexport * from \"./api/queries/person/persons.js\";\nexport * from \"./api/queries/residentsAndSections/domain.js\";\nexport * from \"./api/queries/residentsAndSections/existingSectionTagsInCompany.js\";\nexport * from \"./api/queries/residentsAndSections/loansByFraction.js\";\nexport * from \"./api/queries/residentsAndSections/ownershipChanges.js\";\nexport * from \"./api/queries/residentsAndSections/personalID.js\";\nexport * from \"./api/queries/residentsAndSections/residentHistory.js\";\nexport * from \"./api/queries/residentsAndSections/residentOccupancy.js\";\nexport * from \"./api/queries/residentsAndSections/residentSearch.js\";\nexport * from \"./api/queries/residentsAndSections/residentTypes.js\";\nexport * from \"./api/queries/residentsAndSections/residents.js\";\nexport * from \"./api/queries/residentsAndSections/sectionOccupancy.js\";\nexport * from \"./api/queries/residentsAndSections/sectionStatus.js\";\nexport * from \"./api/queries/residentsAndSections/sectionTags.js\";\nexport * from \"./api/queries/residentsAndSections/sectionTenants.js\";\nexport * from \"./api/queries/residentsAndSections/sections.js\";\nexport * from \"./api/queries/residentsAndSections/sectionsSearch.js\";\nexport * from \"./api/queries/residentsAndSections/sectionsTags.js\";\nexport * from \"./api/queries/routines/availableRoutineTypes.js\";\nexport * from \"./api/queries/routines/companyFeatures.js\";\nexport * from \"./api/queries/routines/routine.js\";\nexport * from \"./api/queries/routines/routineGroupDrafts.js\";\nexport * from \"./api/queries/routines/routines.js\";\nexport * from \"./api/queries/settlement/settlement.js\";\nexport * from \"./api/queries/settlement/settlementCustomCost.js\";\nexport * from \"./api/queries/settlement/settlementCustomCosts.js\";\nexport * from \"./api/queries/settlement/settlementInvoices.js\";\nexport * from \"./api/queries/settlement/settlementProviderConfiguration.js\";\nexport * from \"./api/queries/settlement/settlementProviderConfigurations.js\";\nexport * from \"./api/queries/settlement/settlementProviders.js\";\nexport * from \"./api/queries/settlement/settlementTypes.js\";\nexport * from \"./api/queries/settlement/settlements.js\";\nexport * from \"./api/queries/storageRoom/storageRooms.js\";\nexport * from \"./api/queries/supplier/domain.js\";\nexport * from \"./api/queries/supplier/supplierDetails.js\";\nexport * from \"./api/queries/supplier/suppliers.js\";\nexport * from \"./api/queries/supplier/suppliersAndContacts.js\";\nexport * from \"./api/queries/supplier/suppliersLogo.js\";\nexport * from \"./api/queries/task/tasks.js\";\nexport * from \"./api/queries/thirdPartyInformation/singleThirdPartyInformation.js\";\nexport * from \"./api/queries/thirdPartyInformation/skatteetatenDialog.js\";\nexport * from \"./api/queries/thirdPartyInformation/thirdPartyInformation.js\";\nexport * from \"./api/queries/thirdPartyInformation/thirdPartyInformationLetters.js\";\nexport * from \"./api/queries/thirdPartyInformation/totalsForThirdPartyInformation.js\";\nexport * from \"./api/queries/user/authedUser.js\";\nexport * from \"./api/queries/user/user.js\";\nexport * from \"./api/queries/user/userActions.js\";\nexport * from \"./api/queries/user/userConversations.js\";\nexport * from \"./api/queries/user/userDevices.js\";\nexport * from \"./api/queries/user/userImage.js\";\n"]}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["import \"./utils/bigint-polyfill.js\";\n\n// Re-export everything from @solibo/solibo-sdk — consumers only need @solibo/solibo-query.\nexport * from \"@solibo/solibo-sdk\";\n\n// Utilities\nexport {\n fromKt,\n toKtProps,\n toLong,\n toKtList,\n toIdList,\n toKeyId,\n} from \"./utils/kt-bridge.js\";\nexport type { Id, JsProps, FromKt } from \"./utils/kt-bridge.js\";\nexport {\n nextPageParam,\n prevPageParam,\n totalCountFromPages,\n} from \"./utils/pageUtils.js\";\nexport type { PagedPage } from \"./utils/pageUtils.js\";\nexport { seconds, minutes, hours } from \"./utils/dateTime.js\";\nexport { fileSlingshotRequest, completeSlingshot } from \"./api/documentApi.js\";\n\nexport * from \"./api/commands/board/createBoardMember.js\";\nexport * from \"./api/commands/board/deleteBoardMember.js\";\nexport * from \"./api/commands/board/inviteBoardMemberToSoliboHome.js\";\nexport * from \"./api/commands/communication/buySMSBundle.js\";\nexport * from \"./api/commands/communication/createNewsletter.js\";\nexport * from \"./api/commands/communication/createSMSBroadcast.js\";\nexport * from \"./api/commands/communication/deleteDocumentFromNewsletter.js\";\nexport * from \"./api/commands/communication/deleteNewsletter.js\";\nexport * from \"./api/commands/communication/deleteSMSBroadcast.js\";\nexport * from \"./api/commands/communication/publishNewsletter.js\";\nexport * from \"./api/commands/communication/publishSMSBroadcast.js\";\nexport * from \"./api/commands/communication/reportPushNotificationRead.js\";\nexport * from \"./api/commands/communication/signupNewsletter.js\";\nexport * from \"./api/commands/communication/updateNewsletter.js\";\nexport * from \"./api/commands/communication/updateSMSBroadcast.js\";\nexport * from \"./api/commands/company/createCompanyCustomerClaim.js\";\nexport * from \"./api/commands/company/deleteFractions.js\";\nexport * from \"./api/commands/company/importCompanies.js\";\nexport * from \"./api/commands/company/importDraft.js\";\nexport * from \"./api/commands/company/importHousingAssociation.js\";\nexport * from \"./api/commands/company/importHousingCooperative.js\";\nexport * from \"./api/commands/company/importHousingCooperativeByAddress.js\";\nexport * from \"./api/commands/company/offboardCompany.js\";\nexport * from \"./api/commands/company/resetSales.js\";\nexport * from \"./api/commands/company/saveCompanyDetailed.js\";\nexport * from \"./api/commands/company/saveImportDraft.js\";\nexport * from \"./api/commands/company/updateActiveAdministrators.js\";\nexport * from \"./api/commands/company/updateAdministratorsForCompany.js\";\nexport * from \"./api/commands/company/updateCompanyDetailed.js\";\nexport * from \"./api/commands/company/updateCompanyOrdinances.js\";\nexport * from \"./api/commands/company/updateFractions.js\";\nexport * from \"./api/commands/conversation/completeConversation.js\";\nexport * from \"./api/commands/conversation/conversationBackInProgress.js\";\nexport * from \"./api/commands/conversation/conversationFolders.js\";\nexport * from \"./api/commands/conversation/createConversation.js\";\nexport * from \"./api/commands/conversation/createConversationCategory.js\";\nexport * from \"./api/commands/conversation/createConversationMessage.js\";\nexport * from \"./api/commands/conversation/createConversationParticipant.js\";\nexport * from \"./api/commands/conversation/createExternalConversationParticipant.js\";\nexport * from \"./api/commands/conversation/createInquiry.js\";\nexport * from \"./api/commands/conversation/createInquiryOpen.js\";\nexport * from \"./api/commands/conversation/createInternalConversationMessage.js\";\nexport * from \"./api/commands/conversation/createPublicConversationMessage.js\";\nexport * from \"./api/commands/conversation/deleteConversation.js\";\nexport * from \"./api/commands/conversation/deleteConversationCategory.js\";\nexport * from \"./api/commands/conversation/deleteConversationParticipant.js\";\nexport * from \"./api/commands/conversation/markConversationRead.js\";\nexport * from \"./api/commands/conversation/moveConversation.js\";\nexport * from \"./api/commands/conversation/publicUploadDocumentToConversation.js\";\nexport * from \"./api/commands/conversation/publishDraftConversation.js\";\nexport * from \"./api/commands/conversation/updateConversation.js\";\nexport * from \"./api/commands/conversation/updateConversationCategories.js\";\nexport * from \"./api/commands/conversation/updateConversationCategory.js\";\nexport * from \"./api/commands/document/createDocumentDirectory.js\";\nexport * from \"./api/commands/document/deleteDocument.js\";\nexport * from \"./api/commands/document/moveDocument.js\";\nexport * from \"./api/commands/document/moveDocumentToTrash.js\";\nexport * from \"./api/commands/document/removeDocumentFromTrash.js\";\nexport * from \"./api/commands/document/renameDocument.js\";\nexport * from \"./api/commands/document/uploadDocument.js\";\nexport * from \"./api/commands/economy/approveInvoice.js\";\nexport * from \"./api/commands/economy/attachDocumentToEconomicReport.js\";\nexport * from \"./api/commands/economy/createInvoiceNotice.js\";\nexport * from \"./api/commands/economy/orderEconomicReport.js\";\nexport * from \"./api/commands/economy/rejectInvoice.js\";\nexport * from \"./api/commands/economy/updateInvoiceNotification.js\";\nexport * from \"./api/commands/economy/updateRealtimeInvoiceNotification.js\";\nexport * from \"./api/commands/expense/approveExpense.js\";\nexport * from \"./api/commands/expense/createExpense.js\";\nexport * from \"./api/commands/expense/deleteExpense.js\";\nexport * from \"./api/commands/expense/rejectExpense.js\";\nexport * from \"./api/commands/hms/setupHMSSettings.js\";\nexport * from \"./api/commands/hms/updateHMSSettings.js\";\nexport * from \"./api/commands/homepage/createPost.js\";\nexport * from \"./api/commands/homepage/createPracticalInfo.js\";\nexport * from \"./api/commands/homepage/deletePost.js\";\nexport * from \"./api/commands/homepage/deletePracticalInfo.js\";\nexport * from \"./api/commands/homepage/updateFeedWeighting.js\";\nexport * from \"./api/commands/homepage/updatePost.js\";\nexport * from \"./api/commands/homepage/updatePracticalInfo.js\";\nexport * from \"./api/commands/homepage/uploadHomepageImage.js\";\nexport * from \"./api/commands/insurance/closeInsurance.js\";\nexport * from \"./api/commands/insurance/createInsurance.js\";\nexport * from \"./api/commands/insurance/deleteInsurance.js\";\nexport * from \"./api/commands/invoicing/activateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/activateInvoicingPlan.js\";\nexport * from \"./api/commands/invoicing/activateTriplewin.js\";\nexport * from \"./api/commands/invoicing/closeInvoice.js\";\nexport * from \"./api/commands/invoicing/createAdhocLinesForCompany.js\";\nexport * from \"./api/commands/invoicing/createAllocationKey.js\";\nexport * from \"./api/commands/invoicing/createCreditNote.js\";\nexport * from \"./api/commands/invoicing/createCustomer.js\";\nexport * from \"./api/commands/invoicing/createCustomerById.js\";\nexport * from \"./api/commands/invoicing/createCustomerComment.js\";\nexport * from \"./api/commands/invoicing/createInvoicePlanLine.js\";\nexport * from \"./api/commands/invoicing/createInvoiceRecipient.js\";\nexport * from \"./api/commands/invoicing/createInvoicingPlan.js\";\nexport * from \"./api/commands/invoicing/deactivateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocInvoicingLine.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocLineGroup.js\";\nexport * from \"./api/commands/invoicing/deleteAdHocLines.js\";\nexport * from \"./api/commands/invoicing/deleteDistribution.js\";\nexport * from \"./api/commands/invoicing/deleteInvoiceRecipient.js\";\nexport * from \"./api/commands/invoicing/deletePlannedInvoiceLineChanges.js\";\nexport * from \"./api/commands/invoicing/invoicingMutations.js\";\nexport * from \"./api/commands/invoicing/registerPayment.js\";\nexport * from \"./api/commands/invoicing/toggleInvoicingPlanTransactionOverdue.js\";\nexport * from \"./api/commands/invoicing/toggleOverdue.js\";\nexport * from \"./api/commands/invoicing/toggleOverdues.js\";\nexport * from \"./api/commands/invoicing/updateAdhocGroup.js\";\nexport * from \"./api/commands/invoicing/updateAdhocLinesForCompany.js\";\nexport * from \"./api/commands/invoicing/updateAllocationKey.js\";\nexport * from \"./api/commands/invoicing/updateCommonExpensesSettings.js\";\nexport * from \"./api/commands/invoicing/updateCustomerMeta.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceDelivery.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceLine.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceLineName.js\";\nexport * from \"./api/commands/invoicing/updateInvoiceSettings.js\";\nexport * from \"./api/commands/issue/changeResponsible.js\";\nexport * from \"./api/commands/issue/closeIssue.js\";\nexport * from \"./api/commands/issue/createConversationToIssue.js\";\nexport * from \"./api/commands/issue/createIssue.js\";\nexport * from \"./api/commands/issue/createIssueComment.js\";\nexport * from \"./api/commands/issue/createIssueToMeeting.js\";\nexport * from \"./api/commands/issue/createSectionToIssue.js\";\nexport * from \"./api/commands/issue/deleteSectionFromIssue.js\";\nexport * from \"./api/commands/issue/reOpenIssue.js\";\nexport * from \"./api/commands/issue/removeConversationFromIssue.js\";\nexport * from \"./api/commands/issue/removeIssueFromMeeting.js\";\nexport * from \"./api/commands/issue/reorderIssueInMeeting.js\";\nexport * from \"./api/commands/issue/updateIssue.js\";\nexport * from \"./api/commands/issue/updateIssueConclusion.js\";\nexport * from \"./api/commands/issue/updateIssueReport.js\";\nexport * from \"./api/commands/loan/createLoan.js\";\nexport * from \"./api/commands/loan/deleteLoan.js\";\nexport * from \"./api/commands/loan/setMainDocumentId.js\";\nexport * from \"./api/commands/loan/updateLoan.js\";\nexport * from \"./api/commands/meeting/closeMeeting.js\";\nexport * from \"./api/commands/meeting/createMeeting.js\";\nexport * from \"./api/commands/meeting/createMeetingSummons.js\";\nexport * from \"./api/commands/meeting/createSignatureReminder.js\";\nexport * from \"./api/commands/meeting/deleteMeeting.js\";\nexport * from \"./api/commands/meeting/followUpIssueLater.js\";\nexport * from \"./api/commands/meeting/issueTreated.js\";\nexport * from \"./api/commands/meeting/reOpenMeeting.js\";\nexport * from \"./api/commands/meeting/registerAttendance.js\";\nexport * from \"./api/commands/meeting/rsvp.js\";\nexport * from \"./api/commands/meeting/sign.js\";\nexport * from \"./api/commands/meeting/signatureUnobtainable.js\";\nexport * from \"./api/commands/meeting/startMeeting.js\";\nexport * from \"./api/commands/meeting/updateMeeting.js\";\nexport * from \"./api/commands/meeting/updateMeetingParticipants.js\";\nexport * from \"./api/commands/organization/assignParkingSpaceToOrganization.js\";\nexport * from \"./api/commands/organization/assignStorageRoomToOrganization.js\";\nexport * from \"./api/commands/organization/createEmployee.js\";\nexport * from \"./api/commands/organization/createEmployeeCompanyContactRole.js\";\nexport * from \"./api/commands/organization/createEmployeeSectionContactRole.js\";\nexport * from \"./api/commands/organization/deleteEmployee.js\";\nexport * from \"./api/commands/organization/deleteOrganizationFromSAM.js\";\nexport * from \"./api/commands/organization/massUpdateOrganizations.js\";\nexport * from \"./api/commands/organization/removeCompanyContactRole.js\";\nexport * from \"./api/commands/organization/removeOrganizationRole.js\";\nexport * from \"./api/commands/organization/removeSectionContactRole.js\";\nexport * from \"./api/commands/organization/unAssignParkingSpaceToOrganization.js\";\nexport * from \"./api/commands/organization/unAssignStorageRoomToOrganization.js\";\nexport * from \"./api/commands/organization/updateEmployee.js\";\nexport * from \"./api/commands/organization/updateOrganization.js\";\nexport * from \"./api/commands/parkingSpaces/createParkingSpace.js\";\nexport * from \"./api/commands/parkingSpaces/deleteParkingSpace.js\";\nexport * from \"./api/commands/parkingSpaces/exportParkingSpaceAssets.js\";\nexport * from \"./api/commands/parkingSpaces/updateParkingSpace.js\";\nexport * from \"./api/commands/person/assignParkingSpaceToPerson.js\";\nexport * from \"./api/commands/person/assignStorageRoomToPerson.js\";\nexport * from \"./api/commands/person/deletePersonRole.js\";\nexport * from \"./api/commands/person/massUpdatePerson.js\";\nexport * from \"./api/commands/person/massUpdateRoles.js\";\nexport * from \"./api/commands/person/mergePerson.js\";\nexport * from \"./api/commands/person/personalIdentityNumberSearch.js\";\nexport * from \"./api/commands/person/unAssignParkingSpaceToPerson.js\";\nexport * from \"./api/commands/person/unAssignStorageRoomToPerson.js\";\nexport * from \"./api/commands/person/updatePerson.js\";\nexport * from \"./api/commands/person/updateResidency.js\";\nexport * from \"./api/commands/resident/createOccupancyRecord.js\";\nexport * from \"./api/commands/resident/createPhysicalLetterToResidentInCompany.js\";\nexport * from \"./api/commands/resident/createResident.js\";\nexport * from \"./api/commands/resident/deleteOccupancyRecord.js\";\nexport * from \"./api/commands/resident/removePersonFromCompany.js\";\nexport * from \"./api/commands/resident/requestResidentChange.js\";\nexport * from \"./api/commands/resident/residentActions.js\";\nexport * from \"./api/commands/resident/updateOccupancyRecord.js\";\nexport * from \"./api/commands/resident/updateOrganizationReservations.js\";\nexport * from \"./api/commands/resident/updatePersonReservations.js\";\nexport * from \"./api/commands/resident/updateResident.js\";\nexport * from \"./api/commands/resident/updateResidentNote.js\";\nexport * from \"./api/commands/routines/createRoutine.js\";\nexport * from \"./api/commands/routines/deleteRoutine.js\";\nexport * from \"./api/commands/routines/updateRoutine.js\";\nexport * from \"./api/commands/scopedContact/createScopedContact.js\";\nexport * from \"./api/commands/scopedContact/deleteScopedContact.js\";\nexport * from \"./api/commands/scopedContact/expireScopedContact.js\";\nexport * from \"./api/commands/scopedContact/resolveUserContact.js\";\nexport * from \"./api/commands/scopedContact/updateScopedContact.js\";\nexport * from \"./api/commands/section/assignParkingSpaceToSection.js\";\nexport * from \"./api/commands/section/assignStorageRoomToSection.js\";\nexport * from \"./api/commands/section/createSection.js\";\nexport * from \"./api/commands/section/createSectionStatus.js\";\nexport * from \"./api/commands/section/createSubSection.js\";\nexport * from \"./api/commands/section/deleteSection.js\";\nexport * from \"./api/commands/section/exportSectionAssets.js\";\nexport * from \"./api/commands/section/massUpdateSection.js\";\nexport * from \"./api/commands/section/ownershipTransferSection.js\";\nexport * from \"./api/commands/section/removeSectionStatus.js\";\nexport * from \"./api/commands/section/tagOnSection.js\";\nexport * from \"./api/commands/section/unAssignParkingSpaceToSection.js\";\nexport * from \"./api/commands/section/unAssignStorageRoomToSection.js\";\nexport * from \"./api/commands/section/updateSection.js\";\nexport * from \"./api/commands/section/updateSectionNote.js\";\nexport * from \"./api/commands/section/updateTagsOnSection.js\";\nexport * from \"./api/commands/settlement/closeSettlement.js\";\nexport * from \"./api/commands/settlement/createSettlement.js\";\nexport * from \"./api/commands/settlement/createSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/createSettlementProviderConfiguration.js\";\nexport * from \"./api/commands/settlement/deleteSettlement.js\";\nexport * from \"./api/commands/settlement/deleteSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/updateSettlement.js\";\nexport * from \"./api/commands/settlement/updateSettlementCustomCost.js\";\nexport * from \"./api/commands/settlement/updateSettlementProviderConfiguration.js\";\nexport * from \"./api/commands/settlement/upsertSettlementProviderCredentials.js\";\nexport * from \"./api/commands/storageRoom/createStorageRoom.js\";\nexport * from \"./api/commands/storageRoom/deleteStorageRoom.js\";\nexport * from \"./api/commands/storageRoom/exportStorageRooms.js\";\nexport * from \"./api/commands/storageRoom/updateStorageRoom.js\";\nexport * from \"./api/commands/supplier/createSupplierComment.js\";\nexport * from \"./api/commands/supplier/createSupplierContact.js\";\nexport * from \"./api/commands/supplier/createSupplierForCompany.js\";\nexport * from \"./api/commands/supplier/deleteCompanySupplier.js\";\nexport * from \"./api/commands/supplier/deleteSupplierContactPerson.js\";\nexport * from \"./api/commands/supplier/editSupplierContact.js\";\nexport * from \"./api/commands/supplier/editSupplierForCompany.js\";\nexport * from \"./api/commands/supplier/supplierMutations.js\";\nexport * from \"./api/commands/supplier/updateServiceCategories.js\";\nexport * from \"./api/commands/supplier/updateSupplierContactImage.js\";\nexport * from \"./api/commands/supplier/uploadSupplierLogo.js\";\nexport * from \"./api/commands/task/completeTask.js\";\nexport * from \"./api/commands/task/createTask.js\";\nexport * from \"./api/commands/task/deleteTask.js\";\nexport * from \"./api/commands/task/undoCompleteTask.js\";\nexport * from \"./api/commands/task/updateTask.js\";\nexport * from \"./api/commands/thirdPartyInformation/completeThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/createDuplicateLetter.js\";\nexport * from \"./api/commands/thirdPartyInformation/createThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/createThreePOToSkatteetaten.js\";\nexport * from \"./api/commands/thirdPartyInformation/overrideThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/reopenThirdPartyInformation.js\";\nexport * from \"./api/commands/thirdPartyInformation/updateThirdPartyInformation.js\";\nexport * from \"./api/commands/user/contactHooks.js\";\nexport * from \"./api/commands/user/deleteProfilePicture.js\";\nexport * from \"./api/commands/user/fCMDevice.js\";\nexport * from \"./api/commands/user/mfa.js\";\nexport * from \"./api/commands/user/resetPassword.js\";\nexport * from \"./api/commands/user/updateUser.js\";\nexport * from \"./api/commands/user/uploadProfilePicture.js\";\nexport * from \"./api/queries/administration/agreementDetails.js\";\nexport * from \"./api/queries/administration/insuranceAgreements.js\";\nexport * from \"./api/queries/administration/loanAgreements.js\";\nexport * from \"./api/queries/administration/loanChangeLog.js\";\nexport * from \"./api/queries/administration/tripletexDetails.js\";\nexport * from \"./api/queries/board/boardMembers.js\";\nexport * from \"./api/queries/board/showPersonalIdentityNumberOnBoardMember.js\";\nexport * from \"./api/queries/communication/availableBundles.js\";\nexport * from \"./api/queries/communication/availableSMS.js\";\nexport * from \"./api/queries/communication/communicationReport.js\";\nexport * from \"./api/queries/communication/newsletter.js\";\nexport * from \"./api/queries/communication/newsletters.js\";\nexport * from \"./api/queries/communication/notificationgroupsEmail.js\";\nexport * from \"./api/queries/communication/notificationgroupsSms.js\";\nexport * from \"./api/queries/communication/sMSAvailableForSMSBroadcastPost.js\";\nexport * from \"./api/queries/communication/sMSBroadcast.js\";\nexport * from \"./api/queries/communication/sMSBroadcasts.js\";\nexport * from \"./api/queries/communication/sMSPurchases.js\";\nexport * from \"./api/queries/company/activeAdministrators.js\";\nexport * from \"./api/queries/company/administratorsForCompany.js\";\nexport * from \"./api/queries/company/availableAdministrators.js\";\nexport * from \"./api/queries/company/availableAdministratorsForCompany.js\";\nexport * from \"./api/queries/company/companies.js\";\nexport * from \"./api/queries/company/companyAddresses.js\";\nexport * from \"./api/queries/company/companyById.js\";\nexport * from \"./api/queries/company/companyDetailed.js\";\nexport * from \"./api/queries/company/companyDraft.js\";\nexport * from \"./api/queries/company/companyDrafts.js\";\nexport * from \"./api/queries/company/companyOrdinances.js\";\nexport * from \"./api/queries/company/companyTypes.js\";\nexport * from \"./api/queries/company/fractions.js\";\nexport * from \"./api/queries/company/newlyManagedCompanies.js\";\nexport * from \"./api/queries/conversation/companyConversationCategoriesForRequests.js\";\nexport * from \"./api/queries/conversation/conversation.js\";\nexport * from \"./api/queries/conversation/conversationCategories.js\";\nexport * from \"./api/queries/conversation/conversationCategoriesOpen.js\";\nexport * from \"./api/queries/conversation/conversationCount.js\";\nexport * from \"./api/queries/conversation/conversationFolders.js\";\nexport * from \"./api/queries/conversation/conversations.js\";\nexport * from \"./api/queries/conversation/conversationsByParticipant.js\";\nexport * from \"./api/queries/conversation/publicConversation.js\";\nexport * from \"./api/queries/conversation/publicConversationAuth.js\";\nexport * from \"./api/queries/conversation/unreadConversationsCount.js\";\nexport * from \"./api/queries/countries/countries.js\";\nexport * from \"./api/queries/document/documentActions.js\";\nexport * from \"./api/queries/document/documents.js\";\nexport * from \"./api/queries/document/documentsOfTypeForCompany.js\";\nexport * from \"./api/queries/document/getDocumentURL.js\";\nexport * from \"./api/queries/document/searchDocumentsForCompany.js\";\nexport * from \"./api/queries/economy/checkIfAccountingAvailable.js\";\nexport * from \"./api/queries/economy/companiesEconomyStatus.js\";\nexport * from \"./api/queries/economy/economicReports.js\";\nexport * from \"./api/queries/economy/invoiceArchive.js\";\nexport * from \"./api/queries/economy/invoiceForApprovalCount.js\";\nexport * from \"./api/queries/economy/invoiceNotification.js\";\nexport * from \"./api/queries/economy/invoices.js\";\nexport * from \"./api/queries/economy/status.js\";\nexport * from \"./api/queries/economy/unattestedCounts.js\";\nexport * from \"./api/queries/expense/expense.js\";\nexport * from \"./api/queries/expense/expenseList.js\";\nexport * from \"./api/queries/expense/expenseTypes.js\";\nexport * from \"./api/queries/hms/hMSReportRoutines.js\";\nexport * from \"./api/queries/hms/hMSSettings.js\";\nexport * from \"./api/queries/homepage/homepage.js\";\nexport * from \"./api/queries/homepage/homepageFeed.js\";\nexport * from \"./api/queries/homepage/homepageRss.js\";\nexport * from \"./api/queries/homepage/openHomepage.js\";\nexport * from \"./api/queries/homepage/openHomepageDocument.js\";\nexport * from \"./api/queries/homepage/openHomepageFeed.js\";\nexport * from \"./api/queries/homepage/postDocuments.js\";\nexport * from \"./api/queries/homepage/postNotificationgroups.js\";\nexport * from \"./api/queries/homepage/sMSAvailableForPost.js\";\nexport * from \"./api/queries/invoicing/adHocGroupById.js\";\nexport * from \"./api/queries/invoicing/adHocGroups.js\";\nexport * from \"./api/queries/invoicing/checkTriplewinActivated.js\";\nexport * from \"./api/queries/invoicing/creditNotes.js\";\nexport * from \"./api/queries/invoicing/customer.js\";\nexport * from \"./api/queries/invoicing/customerInvoices.js\";\nexport * from \"./api/queries/invoicing/customerMetadata.js\";\nexport * from \"./api/queries/invoicing/customerRecipient.js\";\nexport * from \"./api/queries/invoicing/customers.js\";\nexport * from \"./api/queries/invoicing/expiredInvoices.js\";\nexport * from \"./api/queries/invoicing/historicInvoices.js\";\nexport * from \"./api/queries/invoicing/invoicePlan.js\";\nexport * from \"./api/queries/invoicing/invoicePlanDistributions.js\";\nexport * from \"./api/queries/invoicing/invoicePlanLine.js\";\nexport * from \"./api/queries/invoicing/invoicePlanLines.js\";\nexport * from \"./api/queries/invoicing/invoicePlanTransactions.js\";\nexport * from \"./api/queries/invoicing/invoicePlans.js\";\nexport * from \"./api/queries/invoicing/invoicePlansForSection.js\";\nexport * from \"./api/queries/invoicing/invoiceSettings.js\";\nexport * from \"./api/queries/invoicing/invoicingAdHocLines.js\";\nexport * from \"./api/queries/invoicing/invoicingExpiredByCustomer.js\";\nexport * from \"./api/queries/invoicing/invoicingExpiredTypes.js\";\nexport * from \"./api/queries/invoicing/invoicingInvoiceDetails.js\";\nexport * from \"./api/queries/invoicing/invoicingKeys.js\";\nexport * from \"./api/queries/invoicing/invoicingPlanTypes.js\";\nexport * from \"./api/queries/invoicing/massInvoiceForCompany.js\";\nexport * from \"./api/queries/invoicing/massInvoicePdfPreview.js\";\nexport * from \"./api/queries/invoicing/massInvoicePreview.js\";\nexport * from \"./api/queries/invoicing/overdueInvoices.js\";\nexport * from \"./api/queries/invoicing/planSettings.js\";\nexport * from \"./api/queries/invoicing/preview.js\";\nexport * from \"./api/queries/invoicing/previewPdf.js\";\nexport * from \"./api/queries/invoicing/processedPayments.js\";\nexport * from \"./api/queries/invoicing/queuedInvoicePdf.js\";\nexport * from \"./api/queries/invoicing/queuedInvoices.js\";\nexport * from \"./api/queries/invoicing/recipient.js\";\nexport * from \"./api/queries/invoicing/sectionInvoices.js\";\nexport * from \"./api/queries/invoicing/unprocessedPayments.js\";\nexport * from \"./api/queries/invoicing/upcomingInvoicing.js\";\nexport * from \"./api/queries/issue/issue.js\";\nexport * from \"./api/queries/issue/issues.js\";\nexport * from \"./api/queries/meeting/meetings.js\";\nexport * from \"./api/queries/organization/organization.js\";\nexport * from \"./api/queries/organization/organizationByOrgnr.js\";\nexport * from \"./api/queries/organization/organizations.js\";\nexport * from \"./api/queries/organization/organizationsInCompany.js\";\nexport * from \"./api/queries/organization/otherOrganizations.js\";\nexport * from \"./api/queries/parkingSpaces/parkingSpaces.js\";\nexport * from \"./api/queries/person/otherPersons.js\";\nexport * from \"./api/queries/person/person.js\";\nexport * from \"./api/queries/person/personSearch.js\";\nexport * from \"./api/queries/person/persons.js\";\nexport * from \"./api/queries/residentsAndSections/domain.js\";\nexport * from \"./api/queries/residentsAndSections/existingSectionTagsInCompany.js\";\nexport * from \"./api/queries/residentsAndSections/loansByFraction.js\";\nexport * from \"./api/queries/residentsAndSections/ownershipChanges.js\";\nexport * from \"./api/queries/residentsAndSections/personalID.js\";\nexport * from \"./api/queries/residentsAndSections/residentHistory.js\";\nexport * from \"./api/queries/residentsAndSections/residentOccupancy.js\";\nexport * from \"./api/queries/residentsAndSections/residentSearch.js\";\nexport * from \"./api/queries/residentsAndSections/residentTypes.js\";\nexport * from \"./api/queries/residentsAndSections/residents.js\";\nexport * from \"./api/queries/residentsAndSections/sectionOccupancy.js\";\nexport * from \"./api/queries/residentsAndSections/sectionStatus.js\";\nexport * from \"./api/queries/residentsAndSections/sectionTags.js\";\nexport * from \"./api/queries/residentsAndSections/sectionTenants.js\";\nexport * from \"./api/queries/residentsAndSections/sections.js\";\nexport * from \"./api/queries/residentsAndSections/sectionsSearch.js\";\nexport * from \"./api/queries/residentsAndSections/sectionsTags.js\";\nexport * from \"./api/queries/routines/availableRoutineTypes.js\";\nexport * from \"./api/queries/routines/companyFeatures.js\";\nexport * from \"./api/queries/routines/routine.js\";\nexport * from \"./api/queries/routines/routineGroupDrafts.js\";\nexport * from \"./api/queries/routines/routines.js\";\nexport * from \"./api/queries/scopedContact/scopedContacts.js\";\nexport * from \"./api/queries/settlement/settlement.js\";\nexport * from \"./api/queries/settlement/settlementCustomCost.js\";\nexport * from \"./api/queries/settlement/settlementCustomCosts.js\";\nexport * from \"./api/queries/settlement/settlementInvoices.js\";\nexport * from \"./api/queries/settlement/settlementProviderConfiguration.js\";\nexport * from \"./api/queries/settlement/settlementProviderConfigurations.js\";\nexport * from \"./api/queries/settlement/settlementProviders.js\";\nexport * from \"./api/queries/settlement/settlementTypes.js\";\nexport * from \"./api/queries/settlement/settlements.js\";\nexport * from \"./api/queries/storageRoom/storageRooms.js\";\nexport * from \"./api/queries/supplier/domain.js\";\nexport * from \"./api/queries/supplier/supplierDetails.js\";\nexport * from \"./api/queries/supplier/suppliers.js\";\nexport * from \"./api/queries/supplier/suppliersAndContacts.js\";\nexport * from \"./api/queries/supplier/suppliersLogo.js\";\nexport * from \"./api/queries/task/tasks.js\";\nexport * from \"./api/queries/thirdPartyInformation/singleThirdPartyInformation.js\";\nexport * from \"./api/queries/thirdPartyInformation/skatteetatenDialog.js\";\nexport * from \"./api/queries/thirdPartyInformation/thirdPartyInformation.js\";\nexport * from \"./api/queries/thirdPartyInformation/thirdPartyInformationLetters.js\";\nexport * from \"./api/queries/thirdPartyInformation/totalsForThirdPartyInformation.js\";\nexport * from \"./api/queries/user/authedUser.js\";\nexport * from \"./api/queries/user/user.js\";\nexport * from \"./api/queries/user/userActions.js\";\nexport * from \"./api/queries/user/userConversations.js\";\nexport * from \"./api/queries/user/userDevices.js\";\nexport * from \"./api/queries/user/userImage.js\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solibo/solibo-query",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "Framework-agnostic TanStack Query options for Solibo SDK",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"buffer": "^6.0.3",
|
|
21
21
|
"hash-wasm": "^4.12.0",
|
|
22
22
|
"mime-types": "^3.0.2",
|
|
23
|
-
"@solibo/solibo-sdk": "1.
|
|
23
|
+
"@solibo/solibo-sdk": "1.6.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@eslint/js": "^10.0.1",
|