@deepdesk/deepdesk-sdk 18.2.1-beta.3 → 18.2.1-beta.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/index.cjs.js +5 -5
- package/dist/index.d.mts +1 -11
- package/dist/index.d.ts +1 -11
- package/dist/index.esm.js +5 -5
- package/dist/index.iife.js +72 -72
- package/package.json +32 -32
- package/styles/index.js +1 -1
- package/styles.css +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4,7 +4,6 @@ import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
|
4
4
|
import { Middleware, Tuple } from '@reduxjs/toolkit';
|
|
5
5
|
import * as redux from 'redux';
|
|
6
6
|
import { Unsubscribe } from 'redux';
|
|
7
|
-
import * as redux_thunk from 'redux-thunk';
|
|
8
7
|
|
|
9
8
|
declare const styles$s: {
|
|
10
9
|
readonly "content": string;
|
|
@@ -3561,16 +3560,7 @@ type LogEvent<T extends keyof SendEventArgumentMap, P extends T = T> = {
|
|
|
3561
3560
|
name: T;
|
|
3562
3561
|
data: SendEventArgumentMap[P]['data'];
|
|
3563
3562
|
};
|
|
3564
|
-
declare function logEvent<T extends keyof SendEventArgumentMap>(event: LogEvent<T>): _reduxjs_toolkit.AsyncThunkAction<void, LogEvent<T, T>,
|
|
3565
|
-
state?: unknown;
|
|
3566
|
-
dispatch?: redux_thunk.ThunkDispatch<unknown, unknown, redux.UnknownAction>;
|
|
3567
|
-
extra?: unknown;
|
|
3568
|
-
rejectValue?: unknown;
|
|
3569
|
-
serializedErrorType?: unknown;
|
|
3570
|
-
pendingMeta?: unknown;
|
|
3571
|
-
fulfilledMeta?: unknown;
|
|
3572
|
-
rejectedMeta?: unknown;
|
|
3573
|
-
}>;
|
|
3563
|
+
declare function logEvent<T extends keyof SendEventArgumentMap>(event: LogEvent<T>): _reduxjs_toolkit.AsyncThunkAction<void, LogEvent<T, T>, _reduxjs_toolkit.AsyncThunkConfig>;
|
|
3574
3564
|
|
|
3575
3565
|
type CSSModule = Record<string, string>;
|
|
3576
3566
|
declare function useStyles<TStyles extends CSSModule>(componentName: string, defaultStyles: TStyles): TStyles;
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
|
4
4
|
import { Middleware, Tuple } from '@reduxjs/toolkit';
|
|
5
5
|
import * as redux from 'redux';
|
|
6
6
|
import { Unsubscribe } from 'redux';
|
|
7
|
-
import * as redux_thunk from 'redux-thunk';
|
|
8
7
|
|
|
9
8
|
declare const styles$s: {
|
|
10
9
|
readonly "content": string;
|
|
@@ -3561,16 +3560,7 @@ type LogEvent<T extends keyof SendEventArgumentMap, P extends T = T> = {
|
|
|
3561
3560
|
name: T;
|
|
3562
3561
|
data: SendEventArgumentMap[P]['data'];
|
|
3563
3562
|
};
|
|
3564
|
-
declare function logEvent<T extends keyof SendEventArgumentMap>(event: LogEvent<T>): _reduxjs_toolkit.AsyncThunkAction<void, LogEvent<T, T>,
|
|
3565
|
-
state?: unknown;
|
|
3566
|
-
dispatch?: redux_thunk.ThunkDispatch<unknown, unknown, redux.UnknownAction>;
|
|
3567
|
-
extra?: unknown;
|
|
3568
|
-
rejectValue?: unknown;
|
|
3569
|
-
serializedErrorType?: unknown;
|
|
3570
|
-
pendingMeta?: unknown;
|
|
3571
|
-
fulfilledMeta?: unknown;
|
|
3572
|
-
rejectedMeta?: unknown;
|
|
3573
|
-
}>;
|
|
3563
|
+
declare function logEvent<T extends keyof SendEventArgumentMap>(event: LogEvent<T>): _reduxjs_toolkit.AsyncThunkAction<void, LogEvent<T, T>, _reduxjs_toolkit.AsyncThunkConfig>;
|
|
3574
3564
|
|
|
3575
3565
|
type CSSModule = Record<string, string>;
|
|
3576
3566
|
declare function useStyles<TStyles extends CSSModule>(componentName: string, defaultStyles: TStyles): TStyles;
|