@hamak/ui-remote-fs 0.6.0 → 0.7.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/contracts/i-remote-fs-service.d.ts +1 -1
- package/dist/api/contracts/index.d.ts +1 -1
- package/dist/api/contracts/index.js +1 -1
- package/dist/api/index.d.ts +3 -3
- package/dist/api/index.js +3 -3
- package/dist/api/tokens/index.d.ts +1 -1
- package/dist/api/tokens/index.js +1 -1
- package/dist/api/types/index.d.ts +3 -3
- package/dist/api/types/index.js +3 -3
- package/dist/impl/actions/index.d.ts +1 -1
- package/dist/impl/actions/index.js +1 -1
- package/dist/impl/actions/remote-fs-actions.d.ts +2 -2
- package/dist/impl/actions/remote-fs-actions.js +1 -1
- package/dist/impl/autosave/index.d.ts +1 -1
- package/dist/impl/autosave/index.js +1 -1
- package/dist/impl/autosave/remote-fs-autosave-provider.d.ts +1 -1
- package/dist/impl/autosave/remote-fs-autosave-provider.d.ts.map +1 -1
- package/dist/impl/autosave/remote-fs-autosave-provider.js +2 -3
- package/dist/impl/index.d.ts +9 -9
- package/dist/impl/index.js +8 -8
- package/dist/impl/middleware/index.d.ts +2 -2
- package/dist/impl/middleware/index.js +2 -2
- package/dist/impl/middleware/remote-fs-middleware.d.ts +2 -2
- package/dist/impl/middleware/remote-fs-middleware.js +2 -2
- package/dist/impl/middleware/store-sync-middleware.d.ts +1 -1
- package/dist/impl/middleware/store-sync-middleware.js +2 -2
- package/dist/impl/plugin/index.d.ts +1 -1
- package/dist/impl/plugin/index.js +1 -1
- package/dist/impl/plugin/remote-fs-plugin-factory.d.ts +1 -1
- package/dist/impl/plugin/remote-fs-plugin-factory.js +5 -5
- package/dist/impl/providers/http-workspace-client.d.ts +1 -1
- package/dist/impl/providers/index.d.ts +1 -1
- package/dist/impl/providers/index.js +1 -1
- package/dist/impl/services/index.d.ts +1 -1
- package/dist/impl/services/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/spi/index.d.ts +3 -3
- package/dist/spi/index.js +3 -3
- package/dist/spi/middleware/index.d.ts +1 -1
- package/dist/spi/middleware/index.js +1 -1
- package/dist/spi/middleware/remote-fs-middleware.types.d.ts +2 -2
- package/dist/spi/providers/i-remote-fs-provider.d.ts +1 -1
- package/dist/spi/providers/index.d.ts +3 -3
- package/dist/spi/providers/index.js +3 -3
- package/package.json +8 -4
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Public interface for remote filesystem service.
|
|
5
5
|
*/
|
|
6
6
|
import { FileInfo } from '@hamak/shared-utils';
|
|
7
|
-
import { ErrorObject } from '../types/remote-fs-error.types';
|
|
7
|
+
import { ErrorObject } from '../types/remote-fs-error.types.js';
|
|
8
8
|
/**
|
|
9
9
|
* Result type for remote filesystem operations
|
|
10
10
|
*/
|
package/dist/api/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* UI Remote FS API
|
|
3
3
|
* Public interfaces, types, and contracts for remote filesystem
|
|
4
4
|
*/
|
|
5
|
-
export * from './types';
|
|
6
|
-
export * from './contracts';
|
|
7
|
-
export * from './tokens';
|
|
5
|
+
export * from './types/index.js';
|
|
6
|
+
export * from './contracts/index.js';
|
|
7
|
+
export * from './tokens/index.js';
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/api/index.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
* UI Remote FS API
|
|
3
3
|
* Public interfaces, types, and contracts for remote filesystem
|
|
4
4
|
*/
|
|
5
|
-
export * from './types';
|
|
6
|
-
export * from './contracts';
|
|
7
|
-
export * from './tokens';
|
|
5
|
+
export * from './types/index.js';
|
|
6
|
+
export * from './contracts/index.js';
|
|
7
|
+
export * from './tokens/index.js';
|
package/dist/api/tokens/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Remote FS Type Definitions
|
|
3
3
|
*/
|
|
4
|
-
export * from './remote-fs-action.types';
|
|
5
|
-
export * from './remote-fs-error.types';
|
|
6
|
-
export * from './remote-fs-config.types';
|
|
4
|
+
export * from './remote-fs-action.types.js';
|
|
5
|
+
export * from './remote-fs-error.types.js';
|
|
6
|
+
export * from './remote-fs-config.types.js';
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/api/types/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Remote FS Type Definitions
|
|
3
3
|
*/
|
|
4
|
-
export * from './remote-fs-action.types';
|
|
5
|
-
export * from './remote-fs-error.types';
|
|
6
|
-
export * from './remote-fs-config.types';
|
|
4
|
+
export * from './remote-fs-action.types.js';
|
|
5
|
+
export * from './remote-fs-error.types.js';
|
|
6
|
+
export * from './remote-fs-config.types.js';
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
* Action creators for remote filesystem operations.
|
|
5
5
|
* Migrated from amk/libs/ui/core/remote-fs/src/lib/remote-fs-actions.ts
|
|
6
6
|
*/
|
|
7
|
-
import { RemoteFsActionTypes, ErrorObject } from '../../api';
|
|
7
|
+
import { RemoteFsActionTypes, ErrorObject } from '../../api/index.js';
|
|
8
8
|
import { FileInfo } from '@hamak/shared-utils';
|
|
9
|
-
import { RequestOptions } from '../../spi';
|
|
9
|
+
import { RequestOptions } from '../../spi/index.js';
|
|
10
10
|
export interface LsRequestAction {
|
|
11
11
|
type: RemoteFsActionTypes.LS_REQUEST;
|
|
12
12
|
payload: {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Action creators for remote filesystem operations.
|
|
5
5
|
* Migrated from amk/libs/ui/core/remote-fs/src/lib/remote-fs-actions.ts
|
|
6
6
|
*/
|
|
7
|
-
import { RemoteFsActionTypes } from '../../api';
|
|
7
|
+
import { RemoteFsActionTypes } from '../../api/index.js';
|
|
8
8
|
/**
|
|
9
9
|
* Action factory class for creating remote filesystem actions
|
|
10
10
|
*/
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
import type { Dispatch, AnyAction } from 'redux';
|
|
8
8
|
import type { FileSystemNode } from '@hamak/shared-utils';
|
|
9
9
|
import type { IAutosaveProvider, AutosaveResult } from '@hamak/ui-store-spi';
|
|
10
|
-
import type { IPathTranslator } from '../../spi';
|
|
10
|
+
import type { IPathTranslator } from '../../spi/index.js';
|
|
11
11
|
/**
|
|
12
12
|
* Configuration for RemoteFsAutosaveProvider
|
|
13
13
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-fs-autosave-provider.d.ts","sourceRoot":"","sources":["../../../src/impl/autosave/remote-fs-autosave-provider.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACjD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAC1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAC7E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAGjD;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC7C,mEAAmE;IACnE,cAAc,EAAE,eAAe,CAAC;CACjC;AAED;;;;;;GAMG;AACH,qBAAa,wBAAyB,YAAW,iBAAiB;IAChE,QAAQ,CAAC,EAAE,eAAe;IAC1B,QAAQ,CAAC,QAAQ,MAAM;IAEvB,OAAO,CAAC,cAAc,CAAkB;gBAE5B,MAAM,EAAE,8BAA8B;IAIlD;;;OAGG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,cAAc,GAAG,OAAO;
|
|
1
|
+
{"version":3,"file":"remote-fs-autosave-provider.d.ts","sourceRoot":"","sources":["../../../src/impl/autosave/remote-fs-autosave-provider.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACjD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAC1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAC7E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAGjD;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC7C,mEAAmE;IACnE,cAAc,EAAE,eAAe,CAAC;CACjC;AAED;;;;;;GAMG;AACH,qBAAa,wBAAyB,YAAW,iBAAiB;IAChE,QAAQ,CAAC,EAAE,eAAe;IAC1B,QAAQ,CAAC,QAAQ,MAAM;IAEvB,OAAO,CAAC,cAAc,CAAkB;gBAE5B,MAAM,EAAE,8BAA8B;IAIlD;;;OAGG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,cAAc,GAAG,OAAO;IAKxD;;;OAGG;IACG,IAAI,CACR,IAAI,EAAE,MAAM,EAAE,EACd,OAAO,EAAE,OAAO,EAChB,KAAK,EAAE,cAAc,EACrB,QAAQ,EAAE,QAAQ,CAAC,SAAS,CAAC,GAC5B,OAAO,CAAC,cAAc,CAAC;IAwB1B;;;OAGG;IACH,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI;CAG9B"}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Implements autosave for files managed by the remote filesystem plugin.
|
|
5
5
|
* Uses PUT_REQUEST actions to save files to the remote server.
|
|
6
6
|
*/
|
|
7
|
-
import { rfsActions } from '../actions/remote-fs-actions';
|
|
7
|
+
import { rfsActions } from '../actions/remote-fs-actions.js';
|
|
8
8
|
/**
|
|
9
9
|
* Autosave provider for remote filesystem
|
|
10
10
|
*
|
|
@@ -39,8 +39,7 @@ export class RemoteFsAutosaveProvider {
|
|
|
39
39
|
* Returns true if the path is under the remote mount point.
|
|
40
40
|
*/
|
|
41
41
|
supports(path, _node) {
|
|
42
|
-
|
|
43
|
-
const remotePath = this.pathTranslator.toRemotePath({ getSegments: () => path });
|
|
42
|
+
const remotePath = this.pathTranslator.toRemotePath(path);
|
|
44
43
|
return remotePath !== undefined;
|
|
45
44
|
}
|
|
46
45
|
/**
|
package/dist/impl/index.d.ts
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
* UI Remote FS Implementation
|
|
3
3
|
* HTTP-based remote filesystem implementation
|
|
4
4
|
*/
|
|
5
|
-
export * from '../api';
|
|
6
|
-
export * from '../spi/providers';
|
|
7
|
-
export type { RemoteFsMiddlewareFactory, StoreSyncMiddlewareFactory } from '../spi/middleware';
|
|
8
|
-
export * from './actions';
|
|
9
|
-
export * from './middleware';
|
|
10
|
-
export * from './providers';
|
|
11
|
-
export * from './plugin';
|
|
12
|
-
export * from './services';
|
|
13
|
-
export * from './autosave';
|
|
5
|
+
export * from '../api/index.js';
|
|
6
|
+
export * from '../spi/providers/index.js';
|
|
7
|
+
export type { RemoteFsMiddlewareFactory, StoreSyncMiddlewareFactory } from '../spi/middleware/index.js';
|
|
8
|
+
export * from './actions/index.js';
|
|
9
|
+
export * from './middleware/index.js';
|
|
10
|
+
export * from './providers/index.js';
|
|
11
|
+
export * from './plugin/index.js';
|
|
12
|
+
export * from './services/index.js';
|
|
13
|
+
export * from './autosave/index.js';
|
|
14
14
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/impl/index.js
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
* HTTP-based remote filesystem implementation
|
|
4
4
|
*/
|
|
5
5
|
// Re-export API and SPI for convenience
|
|
6
|
-
export * from '../api';
|
|
7
|
-
export * from '../spi/providers';
|
|
8
|
-
export * from './actions';
|
|
9
|
-
export * from './middleware';
|
|
10
|
-
export * from './providers';
|
|
11
|
-
export * from './plugin';
|
|
12
|
-
export * from './services';
|
|
13
|
-
export * from './autosave';
|
|
6
|
+
export * from '../api/index.js';
|
|
7
|
+
export * from '../spi/providers/index.js';
|
|
8
|
+
export * from './actions/index.js';
|
|
9
|
+
export * from './middleware/index.js';
|
|
10
|
+
export * from './providers/index.js';
|
|
11
|
+
export * from './plugin/index.js';
|
|
12
|
+
export * from './services/index.js';
|
|
13
|
+
export * from './autosave/index.js';
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* Migrated from amk/libs/ui/core/remote-fs/src/lib/remote-fs-middleware.ts
|
|
6
6
|
*/
|
|
7
7
|
import { AnyAction, Middleware } from '@reduxjs/toolkit';
|
|
8
|
-
import type { IWorkspaceClient, IPathTranslator } from '../../spi';
|
|
9
|
-
import { type ErrorObject } from '../../api';
|
|
8
|
+
import type { IWorkspaceClient, IPathTranslator } from '../../spi/index.js';
|
|
9
|
+
import { type ErrorObject } from '../../api/index.js';
|
|
10
10
|
/**
|
|
11
11
|
* Configuration for remote FS middleware
|
|
12
12
|
*/
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* Migrated from amk/libs/ui/core/remote-fs/src/lib/remote-fs-middleware.ts
|
|
6
6
|
*/
|
|
7
7
|
import { Pathway } from '@hamak/shared-utils';
|
|
8
|
-
import { RemoteFsActionTypes } from '../../api';
|
|
9
|
-
import { rfsActions, } from '../actions/remote-fs-actions';
|
|
8
|
+
import { RemoteFsActionTypes } from '../../api/index.js';
|
|
9
|
+
import { rfsActions, } from '../actions/remote-fs-actions.js';
|
|
10
10
|
/**
|
|
11
11
|
* Create remote filesystem middleware
|
|
12
12
|
*
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* Migrated from amk/libs/ui/core/remote-fs/src/lib/store-fs-adapter-middleware.ts
|
|
7
7
|
*/
|
|
8
8
|
import { Middleware } from '@reduxjs/toolkit';
|
|
9
|
-
import { StoreSyncMiddlewareConfig } from '../../spi';
|
|
9
|
+
import { StoreSyncMiddlewareConfig } from '../../spi/index.js';
|
|
10
10
|
/**
|
|
11
11
|
* Create store sync middleware
|
|
12
12
|
*
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
* Migrated from amk/libs/ui/core/remote-fs/src/lib/store-fs-adapter-middleware.ts
|
|
7
7
|
*/
|
|
8
8
|
import { Pathway } from '@hamak/shared-utils';
|
|
9
|
-
import { RemoteFsActionTypes } from '../../api';
|
|
10
|
-
import { rfsActions, } from '../actions/remote-fs-actions';
|
|
9
|
+
import { RemoteFsActionTypes } from '../../api/index.js';
|
|
10
|
+
import { rfsActions, } from '../actions/remote-fs-actions.js';
|
|
11
11
|
/**
|
|
12
12
|
* Create store sync middleware
|
|
13
13
|
*
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import type { PluginModule } from '@hamak/microkernel-spi';
|
|
8
8
|
import type { Pathway } from '@hamak/shared-utils';
|
|
9
|
-
import { IWorkspaceClient, IPathTranslator } from '../../spi';
|
|
9
|
+
import { IWorkspaceClient, IPathTranslator } from '../../spi/index.js';
|
|
10
10
|
/**
|
|
11
11
|
* Configuration for Remote FS plugin
|
|
12
12
|
*/
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
* Creates a microkernel plugin for remote filesystem operations.
|
|
5
5
|
* Integrates HTTP-based remote filesystem with Redux Store FS.
|
|
6
6
|
*/
|
|
7
|
-
import { WORKSPACE_CLIENT_TOKEN, PATH_TRANSLATOR_TOKEN, } from '../../api';
|
|
8
|
-
import { PathTranslator } from '../../spi';
|
|
9
|
-
import { HttpWorkspaceClient } from '../providers/http-workspace-client';
|
|
10
|
-
import { createRemoteFsMiddleware } from '../middleware/remote-fs-middleware';
|
|
11
|
-
import { createStoreSyncMiddleware } from '../middleware/store-sync-middleware';
|
|
7
|
+
import { WORKSPACE_CLIENT_TOKEN, PATH_TRANSLATOR_TOKEN, } from '../../api/index.js';
|
|
8
|
+
import { PathTranslator } from '../../spi/index.js';
|
|
9
|
+
import { HttpWorkspaceClient } from '../providers/http-workspace-client.js';
|
|
10
|
+
import { createRemoteFsMiddleware } from '../middleware/remote-fs-middleware.js';
|
|
11
|
+
import { createStoreSyncMiddleware } from '../middleware/store-sync-middleware.js';
|
|
12
12
|
import { STORE_MANAGER_TOKEN, STORE_EXTENSIONS_TOKEN, } from '@hamak/ui-store-api';
|
|
13
13
|
/**
|
|
14
14
|
* Create Remote FS plugin
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Migrated from amk/libs/server/ws/ws-client/src/lib/server-ws-ws-client.ts
|
|
6
6
|
*/
|
|
7
7
|
import { AxiosInstance } from 'axios';
|
|
8
|
-
import { IWorkspaceClient, RequestOptions } from '../../spi';
|
|
8
|
+
import { IWorkspaceClient, RequestOptions } from '../../spi/index.js';
|
|
9
9
|
import { FileInfo } from '@hamak/shared-utils';
|
|
10
10
|
/**
|
|
11
11
|
* Configuration for HTTP workspace client
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/spi/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* UI Remote FS SPI
|
|
3
3
|
* Service Provider Interfaces for extensibility
|
|
4
4
|
*/
|
|
5
|
-
export * from '../api';
|
|
6
|
-
export * from './providers';
|
|
7
|
-
export * from './middleware';
|
|
5
|
+
export * from '../api/index.js';
|
|
6
|
+
export * from './providers/index.js';
|
|
7
|
+
export * from './middleware/index.js';
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/spi/index.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
* UI Remote FS SPI
|
|
3
3
|
* Service Provider Interfaces for extensibility
|
|
4
4
|
*/
|
|
5
|
-
export * from '../api';
|
|
6
|
-
export * from './providers';
|
|
7
|
-
export * from './middleware';
|
|
5
|
+
export * from '../api/index.js';
|
|
6
|
+
export * from './providers/index.js';
|
|
7
|
+
export * from './middleware/index.js';
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* Type definitions for remote filesystem middleware.
|
|
5
5
|
*/
|
|
6
6
|
import { Middleware } from 'redux';
|
|
7
|
-
import { IWorkspaceClient } from '../providers/i-workspace-client';
|
|
8
|
-
import { IPathTranslator } from '../providers/i-path-translator';
|
|
7
|
+
import { IWorkspaceClient } from '../providers/i-workspace-client.js';
|
|
8
|
+
import { IPathTranslator } from '../providers/i-path-translator.js';
|
|
9
9
|
/**
|
|
10
10
|
* Configuration for remote FS middleware
|
|
11
11
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Remote FS Provider Interfaces
|
|
3
3
|
*/
|
|
4
|
-
export * from './i-workspace-client';
|
|
5
|
-
export * from './i-remote-fs-provider';
|
|
6
|
-
export * from './i-path-translator';
|
|
4
|
+
export * from './i-workspace-client.js';
|
|
5
|
+
export * from './i-remote-fs-provider.js';
|
|
6
|
+
export * from './i-path-translator.js';
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Remote FS Provider Interfaces
|
|
3
3
|
*/
|
|
4
|
-
export * from './i-workspace-client';
|
|
5
|
-
export * from './i-remote-fs-provider';
|
|
6
|
-
export * from './i-path-translator';
|
|
4
|
+
export * from './i-workspace-client.js';
|
|
5
|
+
export * from './i-remote-fs-provider.js';
|
|
6
|
+
export * from './i-path-translator.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hamak/ui-remote-fs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Remote filesystem synchronization for microkernel-based applications",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "tsc -p tsconfig.lib.json",
|
|
22
|
+
"build": "tsc -p tsconfig.lib.json && node ../../scripts/fix-esm-extensions.mjs ./dist",
|
|
23
23
|
"clean": "rm -rf dist",
|
|
24
24
|
"test": "vitest run",
|
|
25
25
|
"test:watch": "vitest"
|
|
@@ -43,8 +43,12 @@
|
|
|
43
43
|
},
|
|
44
44
|
"typesVersions": {
|
|
45
45
|
"*": {
|
|
46
|
-
"api": [
|
|
47
|
-
|
|
46
|
+
"api": [
|
|
47
|
+
"./dist/api/index.d.ts"
|
|
48
|
+
],
|
|
49
|
+
"spi": [
|
|
50
|
+
"./dist/spi/index.d.ts"
|
|
51
|
+
]
|
|
48
52
|
}
|
|
49
53
|
},
|
|
50
54
|
"dependencies": {
|