@overmap-ai/core 1.0.28 → 1.0.29-org-switcher-and-bug-fixes.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/overmap-core.js +11 -2
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +11 -2
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/sdk/services/MainService.d.ts +1 -0
- package/dist/store/slices/organizationSlice.d.ts +1 -0
- package/dist/typings/models/organizations.d.ts +1 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ export interface InitialAPIData {
|
|
|
12
12
|
})[];
|
|
13
13
|
organizations: Organization[];
|
|
14
14
|
user: User;
|
|
15
|
+
project_owners: User[];
|
|
15
16
|
}
|
|
16
17
|
export declare class MainService extends BaseApiService {
|
|
17
18
|
fetchInitialData(replaceExisting: boolean, uuid?: string): Promise<InitialAPIData>;
|
|
@@ -19,6 +19,7 @@ export declare const organizationSlice: import("@reduxjs/toolkit").Slice<Organiz
|
|
|
19
19
|
export declare const setOrganizations: import("@reduxjs/toolkit").ActionCreatorWithPayload<Organization[], "organizations/setOrganizations">, setActiveOrganizationId: import("@reduxjs/toolkit").ActionCreatorWithPayload<number, "organizations/setActiveOrganizationId">, updateActiveOrganization: import("@reduxjs/toolkit").ActionCreatorWithPayload<Organization, "organizations/updateActiveOrganization">;
|
|
20
20
|
export declare const selectActiveOrganizationId: Selector<number | null>;
|
|
21
21
|
export declare const selectOrganizations: Selector<Organization[]>;
|
|
22
|
+
export declare const selectOrganizationsWithAccess: Selector<Organization[]>;
|
|
22
23
|
export declare const selectActiveOrganization: Selector<Organization | null>;
|
|
23
24
|
export declare const selectOrganizationUsersIds: Selector<number[]>;
|
|
24
25
|
export declare const selectOrganizationUsersAsMapping: Selector<Record<number, User>>;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Core functionality for Overmap",
|
|
4
4
|
"author": "Wôrdn Inc.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.29-org-switcher-and-bug-fixes.1",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/overmap-core.umd.cjs",
|
|
9
9
|
"module": "dist/overmap-core.js",
|