monorise 0.0.2-dev.2 → 0.0.2-dev.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.
- package/dist/core/index.d.ts +1 -1
- package/dist/react/actions/auth.action.d.ts +1 -1
- package/dist/react/actions/config.action.d.ts +1 -1
- package/dist/react/actions/core.action.d.ts +1 -1
- package/dist/react/actions/core.action.d.ts.map +1 -1
- package/dist/react/index.d.ts +91 -91
- package/dist/react/index.d.ts.map +1 -1
- package/dist/react/index.js +18 -4
- package/dist/react/index.js.map +1 -1
- package/dist/react/lib/entity.d.ts +1 -1
- package/dist/react/lib/utils.d.ts +1 -1
- package/dist/react/services/auth.service.d.ts +1 -1
- package/dist/react/services/core.service.d.ts +1 -1
- package/dist/react/store/monorise.store.d.ts +1 -1
- package/dist/react/types/monorise.type.d.ts +1 -1
- package/dist/react/types/mutual.type.d.ts +1 -1
- package/dist/sst/constants/event.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CreatedEntity, Entity, EntitySchemaMap } from '
|
|
1
|
+
import type { CreatedEntity, Entity, EntitySchemaMap } from '../../base/index';
|
|
2
2
|
import type { Mutual, MutualData } from '../types/mutual.type';
|
|
3
3
|
export declare const constructLocal: (entityType: Entity, entityId: string, data: any) => CreatedEntity<Entity>;
|
|
4
4
|
export declare const constructMutual: <B extends Entity, T extends Entity>(byEntityType: B, byEntityId: string, entityType: T, entityId: string, mutualData: Partial<MutualData<B, T>>, data: EntitySchemaMap[T]) => Mutual;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Entity } from '
|
|
1
|
+
import type { Entity } from '../../base/index';
|
|
2
2
|
export declare const convertToMap: <T extends Record<string, any>>(data: T[], mapKey: string) => Map<any, any>;
|
|
3
3
|
export declare const getMutualStateKey: (byEntity: Entity, byEntityId: string | null, entity: Entity, entityId?: string, chainEntityQuery?: string) => string;
|
|
4
4
|
export declare const getTagStateKey: (entityType: Entity, tagName: string, params?: Record<string, string>) => string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CreatedEntity, DraftEntity, Entity } from '
|
|
1
|
+
import type { CreatedEntity, DraftEntity, Entity } from '../../base/index';
|
|
2
2
|
import type { AxiosRequestConfig } from 'axios';
|
|
3
3
|
import type { MonoriseStore } from '../store/monorise.store';
|
|
4
4
|
import type { ApplicationRequestError, AxiosInterceptor } from '../types/api.type';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CreatedEntity, Entity, MonoriseEntityConfig } from '
|
|
1
|
+
import type { CreatedEntity, Entity, MonoriseEntityConfig } from '../../base/index';
|
|
2
2
|
import type React from 'react';
|
|
3
3
|
import type { ApplicationRequestError } from '../types/api.type';
|
|
4
4
|
import type { CommonStore } from '../types/monorise.type';
|