@sleeperhq/mini-core 1.5.4 → 1.5.5
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/package.json +1 -1
- package/src/types/index.ts +3 -6
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
import type
|
|
2
|
-
import type SleeperHeaderOptions from '../../declarations/sleeper_header_options.d';
|
|
1
|
+
import type { HeaderOptions, Entitlement } from '../../declarations/types';
|
|
3
2
|
|
|
4
3
|
export * from '../../declarations/types/index.d';
|
|
5
4
|
export type { default as Context } from '../../declarations/sleeper_context.d';
|
|
6
|
-
export type { default as Entitlements } from '../../declarations/sleeper_entitlement.d';
|
|
7
|
-
export type { default as HeaderOptions } from '../../declarations/sleeper_header_options.d';
|
|
8
5
|
export type { default as SocketMessage } from '../../declarations/sleeper_message.d';
|
|
9
6
|
|
|
10
7
|
export type Config = {
|
|
@@ -14,6 +11,6 @@ export type Config = {
|
|
|
14
11
|
remoteSocketPort?: number,
|
|
15
12
|
dev?: boolean,
|
|
16
13
|
logsEnabled?: boolean,
|
|
17
|
-
entitlements?:
|
|
18
|
-
headerOptions?:
|
|
14
|
+
entitlements?: Entitlement[],
|
|
15
|
+
headerOptions?: HeaderOptions,
|
|
19
16
|
};
|