@hiver/connector-admin 1.3.1 → 1.3.2
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/app/connectors/pages/api-view/index.d.ts.map +1 -1
- package/app/connectors/pages/connector-view/dashboard/index.d.ts.map +1 -1
- package/app/connectors/pages/settings/index.d.ts.map +1 -1
- package/constants/gainsight.d.ts +9 -0
- package/constants/gainsight.d.ts.map +1 -1
- package/constants/global-constants.d.ts +4 -0
- package/constants/global-constants.d.ts.map +1 -1
- package/features/connector-setup-guide/components/guide-links/index.d.ts +6 -0
- package/features/connector-setup-guide/components/guide-links/index.d.ts.map +1 -0
- package/features/connector-setup-guide/components/guide-links/styles.d.ts +6 -0
- package/features/connector-setup-guide/components/guide-links/styles.d.ts.map +1 -0
- package/features/connector-setup-guide/components/schedule-call/index.d.ts +7 -0
- package/features/connector-setup-guide/components/schedule-call/index.d.ts.map +1 -0
- package/features/connector-setup-guide/components/schedule-call/styles.d.ts +18 -0
- package/features/connector-setup-guide/components/schedule-call/styles.d.ts.map +1 -0
- package/features/connector-setup-guide/constants/index.d.ts +11 -0
- package/features/connector-setup-guide/constants/index.d.ts.map +1 -0
- package/index.es.js +10306 -10433
- package/index.umd.js +316 -304
- package/package.json +1 -1
- package/utils/localstorage.d.ts +22 -0
- package/utils/localstorage.d.ts.map +1 -0
package/package.json
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
interface VersionData {
|
|
2
|
+
isExtensionNew: string[];
|
|
3
|
+
sidePanel: string[];
|
|
4
|
+
cards: Record<string, string[]>;
|
|
5
|
+
fieldVisibility: {
|
|
6
|
+
cards: Record<string, string[]>;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
interface LocalStorageData {
|
|
10
|
+
[version: string]: VersionData;
|
|
11
|
+
}
|
|
12
|
+
export declare const getCurrentData: () => LocalStorageData;
|
|
13
|
+
export declare const getCurrentVersion: () => string | undefined;
|
|
14
|
+
export declare const getCurrentVersionData: (version: string) => VersionData;
|
|
15
|
+
export declare const setLSCurrentVersion: (version: string) => void;
|
|
16
|
+
export declare const setLSFieldVisibility: (cardId: string, userId: string) => void;
|
|
17
|
+
export declare const hasVisitedFieldVisibility: (cardId: string, userId: string) => boolean;
|
|
18
|
+
export declare const setLSCard: (cardId: string, userId: string) => void;
|
|
19
|
+
export declare const hasConfiguredVisibility: (cardId: string, userId: string) => boolean;
|
|
20
|
+
export declare const setLSSidePanel: (userId: string) => void;
|
|
21
|
+
export {};
|
|
22
|
+
//# sourceMappingURL=localstorage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"localstorage.d.ts","sourceRoot":"","sources":["../../src/utils/localstorage.ts"],"names":[],"mappings":"AAEA,UAAU,WAAW;IACnB,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IAChC,eAAe,EAAE;QACf,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;KACjC,CAAC;CACH;AAED,UAAU,gBAAgB;IACxB,CAAC,OAAO,EAAE,MAAM,GAAG,WAAW,CAAC;CAChC;AAaD,eAAO,MAAM,cAAc,QAAO,gBAMjC,CAAC;AAEF,eAAO,MAAM,iBAAiB,QAAO,MAAM,GAAG,SAG7C,CAAC;AAEF,eAAO,MAAM,qBAAqB,YAAa,MAAM,KAAG,WAEvD,CAAC;AAEF,eAAO,MAAM,mBAAmB,YAAa,MAAM,KAAG,IASrD,CAAC;AAEF,eAAO,MAAM,oBAAoB,WAAY,MAAM,UAAU,MAAM,KAAG,IAyBrE,CAAC;AAEF,eAAO,MAAM,yBAAyB,WAAY,MAAM,UAAU,MAAM,KAAG,OAM1E,CAAC;AAEF,eAAO,MAAM,SAAS,WAAY,MAAM,UAAU,MAAM,SAuBvD,CAAC;AAEF,eAAO,MAAM,uBAAuB,WAAY,MAAM,UAAU,MAAM,YAMrE,CAAC;AAEF,eAAO,MAAM,cAAc,WAAY,MAAM,SAmB5C,CAAC"}
|