@deepdesk/deepdesk-sdk 10.6.2-beta.4 → 10.7.0
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 +7 -7
- package/dist/index.d.mts +6 -5
- package/dist/index.d.ts +6 -5
- package/dist/index.esm.js +6 -6
- package/dist/index.iife.js +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -458,7 +458,7 @@ declare const reducers: redux.Reducer<redux.CombinedState<{
|
|
|
458
458
|
conversation: State$b;
|
|
459
459
|
contentTypes: State$a;
|
|
460
460
|
customMessages: State$9;
|
|
461
|
-
|
|
461
|
+
passwordlessToken: State$8;
|
|
462
462
|
entities: State$7;
|
|
463
463
|
handlingTime: State$f;
|
|
464
464
|
info: {
|
|
@@ -521,7 +521,7 @@ declare function createStore(config: StoreConfig): _reduxjs_toolkit_dist_configu
|
|
|
521
521
|
conversation: State$b;
|
|
522
522
|
contentTypes: State$a;
|
|
523
523
|
customMessages: State$9;
|
|
524
|
-
|
|
524
|
+
passwordlessToken: State$8;
|
|
525
525
|
entities: State$7;
|
|
526
526
|
handlingTime: State$f;
|
|
527
527
|
info: {
|
|
@@ -583,7 +583,7 @@ declare function createStore(config: StoreConfig): _reduxjs_toolkit_dist_configu
|
|
|
583
583
|
conversation: State$b;
|
|
584
584
|
contentTypes: State$a;
|
|
585
585
|
customMessages: State$9;
|
|
586
|
-
|
|
586
|
+
passwordlessToken: State$8;
|
|
587
587
|
entities: State$7;
|
|
588
588
|
handlingTime: State$f;
|
|
589
589
|
info: {
|
|
@@ -683,7 +683,7 @@ interface State$9 {
|
|
|
683
683
|
}
|
|
684
684
|
|
|
685
685
|
type State$8 = {
|
|
686
|
-
|
|
686
|
+
token: string | null;
|
|
687
687
|
accountUrl: string | null;
|
|
688
688
|
interval: NodeJS.Timer | null;
|
|
689
689
|
};
|
|
@@ -1232,6 +1232,7 @@ declare class DeepdeskAPI {
|
|
|
1232
1232
|
code: string;
|
|
1233
1233
|
message: string;
|
|
1234
1234
|
}>;
|
|
1235
|
+
requestPasswordlessToken(): Promise<string>;
|
|
1235
1236
|
getCsrfToken(): Promise<string>;
|
|
1236
1237
|
verifyLoginToken(token: string): Promise<{
|
|
1237
1238
|
isLoggedIn: boolean;
|
|
@@ -1822,7 +1823,7 @@ declare class DeepdeskSDK {
|
|
|
1822
1823
|
conversation: State$b;
|
|
1823
1824
|
contentTypes: State$a;
|
|
1824
1825
|
customMessages: State$9;
|
|
1825
|
-
|
|
1826
|
+
passwordlessToken: State$8;
|
|
1826
1827
|
entities: State$7;
|
|
1827
1828
|
handlingTime: State$f;
|
|
1828
1829
|
info: {
|
package/dist/index.d.ts
CHANGED
|
@@ -458,7 +458,7 @@ declare const reducers: redux.Reducer<redux.CombinedState<{
|
|
|
458
458
|
conversation: State$b;
|
|
459
459
|
contentTypes: State$a;
|
|
460
460
|
customMessages: State$9;
|
|
461
|
-
|
|
461
|
+
passwordlessToken: State$8;
|
|
462
462
|
entities: State$7;
|
|
463
463
|
handlingTime: State$f;
|
|
464
464
|
info: {
|
|
@@ -521,7 +521,7 @@ declare function createStore(config: StoreConfig): _reduxjs_toolkit_dist_configu
|
|
|
521
521
|
conversation: State$b;
|
|
522
522
|
contentTypes: State$a;
|
|
523
523
|
customMessages: State$9;
|
|
524
|
-
|
|
524
|
+
passwordlessToken: State$8;
|
|
525
525
|
entities: State$7;
|
|
526
526
|
handlingTime: State$f;
|
|
527
527
|
info: {
|
|
@@ -583,7 +583,7 @@ declare function createStore(config: StoreConfig): _reduxjs_toolkit_dist_configu
|
|
|
583
583
|
conversation: State$b;
|
|
584
584
|
contentTypes: State$a;
|
|
585
585
|
customMessages: State$9;
|
|
586
|
-
|
|
586
|
+
passwordlessToken: State$8;
|
|
587
587
|
entities: State$7;
|
|
588
588
|
handlingTime: State$f;
|
|
589
589
|
info: {
|
|
@@ -683,7 +683,7 @@ interface State$9 {
|
|
|
683
683
|
}
|
|
684
684
|
|
|
685
685
|
type State$8 = {
|
|
686
|
-
|
|
686
|
+
token: string | null;
|
|
687
687
|
accountUrl: string | null;
|
|
688
688
|
interval: NodeJS.Timer | null;
|
|
689
689
|
};
|
|
@@ -1232,6 +1232,7 @@ declare class DeepdeskAPI {
|
|
|
1232
1232
|
code: string;
|
|
1233
1233
|
message: string;
|
|
1234
1234
|
}>;
|
|
1235
|
+
requestPasswordlessToken(): Promise<string>;
|
|
1235
1236
|
getCsrfToken(): Promise<string>;
|
|
1236
1237
|
verifyLoginToken(token: string): Promise<{
|
|
1237
1238
|
isLoggedIn: boolean;
|
|
@@ -1822,7 +1823,7 @@ declare class DeepdeskSDK {
|
|
|
1822
1823
|
conversation: State$b;
|
|
1823
1824
|
contentTypes: State$a;
|
|
1824
1825
|
customMessages: State$9;
|
|
1825
|
-
|
|
1826
|
+
passwordlessToken: State$8;
|
|
1826
1827
|
entities: State$7;
|
|
1827
1828
|
handlingTime: State$f;
|
|
1828
1829
|
info: {
|