@confidencesystemsinc/sdk 2.0.16 → 2.0.18
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/components/task/ConfidenceTaskListView.d.ts +21 -0
- package/dist/hooks/comments/useManageComment.d.ts +16 -16
- package/dist/index.cjs +24 -24
- package/dist/index.js +5719 -5645
- package/dist/utils/cookies.d.ts +2 -0
- package/package.json +1 -1
package/dist/utils/cookies.d.ts
CHANGED
|
@@ -4,5 +4,7 @@ interface PlaybookCookieData {
|
|
|
4
4
|
}
|
|
5
5
|
export declare function setPlaybookCookie(playbookId: string, playbookInstanceId: number, email: string, persistKey?: string, namespace?: string): void;
|
|
6
6
|
export declare function getPlaybookCookie(playbookId: string, persistKey?: string, namespace?: string): PlaybookCookieData | null;
|
|
7
|
+
export declare function setEmbeddedExpandedCookie(isExpanded: boolean): void;
|
|
8
|
+
export declare function getEmbeddedExpandedCookie(): boolean | null;
|
|
7
9
|
export declare function removePlaybookCookie(playbookId: string, persistKey?: string, namespace?: string): void;
|
|
8
10
|
export {};
|