@jctrans-materials/shared 1.0.13 → 1.0.14

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.
@@ -41,3 +41,27 @@ export declare function loginApi(loginData: {
41
41
  referenceUserId: string;
42
42
  }): Promise<any>;
43
43
  export declare function loginByEmailOrMobileCodeApi(data: any): Promise<any>;
44
+ export declare function loginByQrCode(data: {
45
+ uniqueCode: string;
46
+ appId: string;
47
+ redirectPath: string;
48
+ kick: boolean;
49
+ }): Promise<any>;
50
+ export declare function getLoginQrCode(data?: {}): Promise<any>;
51
+ export declare function setAuthSessionItems(data: {
52
+ activityCode?: string | null;
53
+ referenceUserId?: string | null;
54
+ empNo?: string | null;
55
+ uniqueCode?: string | null;
56
+ path?: string | null;
57
+ clickSource?: string | null;
58
+ }): void;
59
+ export declare function resetAuthSessionItems(): void;
60
+ export declare function getAuthSessionItems(): {
61
+ activityCode: string | null;
62
+ referenceUserId: string | null;
63
+ empNo: string | null;
64
+ uniqueCode: string | null;
65
+ path: string | null;
66
+ clickSource: string | null;
67
+ };