@veltdev/types-dev 5.0.2-beta.12 → 5.0.2-beta.13
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/utils/enums.d.ts
CHANGED
|
@@ -316,6 +316,12 @@ export type NotificationSettingsItemType = 'ALL' | 'MINE' | 'NONE' | string;
|
|
|
316
316
|
*/
|
|
317
317
|
export type NotificationSettingsLayout = 'accordion' | 'dropdown';
|
|
318
318
|
/**
|
|
319
|
-
*
|
|
319
|
+
* Enum for comment visibility options in the visibility banner dropdown
|
|
320
320
|
*/
|
|
321
|
-
export
|
|
321
|
+
export declare enum CommentVisibilityOption {
|
|
322
|
+
RESTRICTED_SELF = "restrictedSelf",
|
|
323
|
+
RESTRICTED_SELECTED_PEOPLE = "restrictedSelectedPeople",
|
|
324
|
+
ORGANIZATION_PRIVATE = "organizationPrivate",
|
|
325
|
+
PUBLIC = "public"
|
|
326
|
+
}
|
|
327
|
+
export type CommentVisibilityOptionType = `${CommentVisibilityOption}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/types-dev",
|
|
3
|
-
"version": "5.0.2-beta.
|
|
3
|
+
"version": "5.0.2-beta.13",
|
|
4
4
|
"description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
|
|
5
5
|
"homepage": "https://velt.dev",
|
|
6
6
|
"keywords": [
|