@wallarm-org/design-system 0.10.0-rc-feature-test-id.2 → 0.10.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.
@@ -1,5 +1,6 @@
1
1
  import type { FC, HTMLAttributes, PropsWithChildren, Ref } from 'react';
2
2
  import type { VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  import { badgeVariants } from './classes';
4
5
  type BadgeNativeProps = HTMLAttributes<HTMLDivElement>;
5
6
  type BadgeVariantProps = VariantProps<typeof badgeVariants>;
@@ -7,6 +8,6 @@ interface BadgeBaseProps {
7
8
  ref?: Ref<HTMLDivElement>;
8
9
  asChild?: boolean;
9
10
  }
10
- export type BadgeProps = BadgeNativeProps & BadgeVariantProps & BadgeBaseProps & PropsWithChildren;
11
+ export type BadgeProps = BadgeNativeProps & BadgeVariantProps & BadgeBaseProps & PropsWithChildren & TestableProps;
11
12
  export declare const Badge: FC<BadgeProps>;
12
13
  export {};
@@ -1,11 +1,12 @@
1
1
  import type { ElementType, FC } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  import { type ButtonBaseProps } from '../ButtonBase';
4
5
  declare const buttonVariants: (props?: ({
5
6
  variant?: "primary" | "secondary" | "outline" | "ghost" | null | undefined;
6
7
  color?: "destructive" | "brand" | "neutral" | "neutral-alt" | null | undefined;
7
8
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
8
9
  type ButtonVariantProps = VariantProps<typeof buttonVariants>;
9
- export type ButtonProps<C extends ElementType = 'button'> = ButtonBaseProps<C> & ButtonVariantProps;
10
+ export type ButtonProps<C extends ElementType = 'button'> = ButtonBaseProps<C> & ButtonVariantProps & TestableProps;
10
11
  export declare const Button: FC<ButtonProps<ElementType>>;
11
12
  export {};
@@ -1,5 +1,6 @@
1
1
  import type { ElementType, FC, Ref } from 'react';
2
2
  import type { VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  import type { PolymorphicComponentProps } from '../Polymorphic';
4
5
  import { buttonBaseVariants } from './classes';
5
6
  type ButtonBaseVariantProps = Omit<VariantProps<typeof buttonBaseVariants>, 'iconOnly' | 'hasNonTextEnd'>;
@@ -8,6 +9,6 @@ type ButtonBaseBaseProps = {
8
9
  loading?: boolean;
9
10
  ref?: Ref<HTMLElement>;
10
11
  };
11
- export type ButtonBaseProps<C extends ElementType = 'button'> = PolymorphicComponentProps<C, ButtonBaseVariantProps & ButtonBaseBaseProps>;
12
- export declare const ButtonBase: FC<PolymorphicComponentProps<ElementType, ButtonBaseVariantProps & ButtonBaseBaseProps>>;
12
+ export type ButtonBaseProps<C extends ElementType = 'button'> = PolymorphicComponentProps<C, ButtonBaseVariantProps & ButtonBaseBaseProps & TestableProps>;
13
+ export declare const ButtonBase: FC<PolymorphicComponentProps<ElementType, ButtonBaseVariantProps & ButtonBaseBaseProps & TestableProps>>;
13
14
  export {};
@@ -1,9 +1,10 @@
1
1
  import type { FC, HTMLAttributes } from 'react';
2
2
  import type { CheckboxCheckedState } from '@ark-ui/react/checkbox';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  type CheckmarkNativeProps = HTMLAttributes<HTMLDivElement>;
4
5
  interface CheckmarkBaseProps {
5
6
  checkedState?: CheckboxCheckedState;
6
7
  }
7
- type CheckmarkProps = CheckmarkNativeProps & CheckmarkBaseProps;
8
+ type CheckmarkProps = CheckmarkNativeProps & CheckmarkBaseProps & TestableProps;
8
9
  export declare const Checkmark: FC<CheckmarkProps>;
9
10
  export {};
@@ -1,5 +1,6 @@
1
1
  import type { FC, HTMLAttributes, PropsWithChildren, Ref } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  declare const codeVariants: (props?: ({
4
5
  size?: "s" | "m" | "l" | null | undefined;
5
6
  weight?: "bold" | "light" | "regular" | "medium" | null | undefined;
@@ -14,6 +15,6 @@ interface CodeBaseProps {
14
15
  lineClamp?: number;
15
16
  ref?: Ref<HTMLParagraphElement>;
16
17
  }
17
- export type CodeProps = CodeNativeProps & CodeVariantProps & CodeBaseProps;
18
+ export type CodeProps = CodeNativeProps & CodeVariantProps & CodeBaseProps & TestableProps;
18
19
  export declare const Code: FC<PropsWithChildren<CodeProps>>;
19
20
  export {};
@@ -1,4 +1,5 @@
1
1
  import type { FC, HTMLAttributes, Ref } from 'react';
2
+ import type { TestableProps } from '../../utils/testId';
2
3
  type DateTimeFormat = 'relative' | 'date' | 'datetime';
3
4
  interface DateTimeBaseProps {
4
5
  /** ISO string, Date object, or Unix timestamp (ms) */
@@ -10,6 +11,6 @@ interface DateTimeBaseProps {
10
11
  ref?: Ref<HTMLTimeElement>;
11
12
  }
12
13
  type DateTimeNativeProps = Omit<HTMLAttributes<HTMLTimeElement>, 'className'>;
13
- export type DateTimeProps = DateTimeNativeProps & DateTimeBaseProps;
14
+ export type DateTimeProps = DateTimeNativeProps & DateTimeBaseProps & TestableProps;
14
15
  export declare const DateTime: FC<DateTimeProps>;
15
16
  export {};
@@ -1,5 +1,6 @@
1
1
  import type { FC, HTMLAttributes, Ref } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  declare const flexVariants: (props?: ({
4
5
  inline?: boolean | null | undefined;
5
6
  direction?: "row" | "column" | "row-reverse" | "column-reverse" | null | undefined;
@@ -14,7 +15,7 @@ declare const flexVariants: (props?: ({
14
15
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
15
16
  type FlexNativeProps = Omit<HTMLAttributes<HTMLDivElement>, 'className'>;
16
17
  type FlexVariantProps = VariantProps<typeof flexVariants>;
17
- export type FlexProps = FlexNativeProps & FlexVariantProps & {
18
+ export type FlexProps = FlexNativeProps & FlexVariantProps & TestableProps & {
18
19
  ref?: Ref<HTMLDivElement>;
19
20
  asChild?: boolean;
20
21
  };
@@ -1,5 +1,6 @@
1
1
  import type { ElementType, FC, Ref } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  import type { PolymorphicComponentProps } from '../Polymorphic';
4
5
  declare const headingVariants: (props?: ({
5
6
  size?: "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | null | undefined;
@@ -15,6 +16,6 @@ export interface HeadingBaseProps {
15
16
  lineClamp?: number;
16
17
  ref?: Ref<HTMLElement>;
17
18
  }
18
- export type HeadingProps<C extends ElementType = 'h1'> = PolymorphicComponentProps<C, HeadingVariantProps & HeadingBaseProps>;
19
- export declare const Heading: FC<PolymorphicComponentProps<ElementType, HeadingVariantProps & HeadingBaseProps>>;
19
+ export type HeadingProps<C extends ElementType = 'h1'> = PolymorphicComponentProps<C, HeadingVariantProps & HeadingBaseProps & TestableProps>;
20
+ export declare const Heading: FC<PolymorphicComponentProps<ElementType, HeadingVariantProps & HeadingBaseProps & TestableProps>>;
20
21
  export {};
@@ -1,9 +1,10 @@
1
1
  import type { FC, InputHTMLAttributes, Ref } from 'react';
2
2
  import type { VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  import { inputVariants } from './classes';
4
5
  type InputNativeProps = InputHTMLAttributes<HTMLInputElement>;
5
6
  type InputVariantsProps = VariantProps<typeof inputVariants>;
6
- export type InputProps = InputNativeProps & InputVariantsProps & {
7
+ export type InputProps = InputNativeProps & InputVariantsProps & TestableProps & {
7
8
  ref?: Ref<HTMLInputElement>;
8
9
  };
9
10
  export declare const Input: FC<InputProps>;
@@ -1,9 +1,10 @@
1
1
  import type { ComponentProps, FC } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  declare const kbdVariants: (props?: ({
4
5
  size?: "small" | "medium" | null | undefined;
5
6
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
6
7
  type KbdVariantsProps = VariantProps<typeof kbdVariants>;
7
- type KbdProps = ComponentProps<'kbd'> & KbdVariantsProps;
8
+ type KbdProps = ComponentProps<'kbd'> & KbdVariantsProps & TestableProps;
8
9
  export declare const Kbd: FC<KbdProps>;
9
10
  export {};
@@ -1,9 +1,10 @@
1
1
  import type { AnchorHTMLAttributes, FC, Ref } from 'react';
2
2
  import type { VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  import { linkVariants } from './classes';
4
5
  type LinkNativeProps = AnchorHTMLAttributes<HTMLAnchorElement>;
5
6
  type LinkVariantsProps = VariantProps<typeof linkVariants>;
6
- export type LinkProps = LinkNativeProps & LinkVariantsProps & {
7
+ export type LinkProps = LinkNativeProps & LinkVariantsProps & TestableProps & {
7
8
  ref?: Ref<HTMLAnchorElement>;
8
9
  asChild?: boolean;
9
10
  disabled?: boolean;
@@ -1,5 +1,6 @@
1
1
  import type { FC } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  declare const loaderVariants: (props?: ({
4
5
  size?: "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | null | undefined;
5
6
  color?: "primary" | "primary-alt" | "danger" | "primary-alt-fixed" | "brand" | null | undefined;
@@ -10,6 +11,6 @@ interface LoaderBaseProps {
10
11
  type?: LoaderType;
11
12
  background?: boolean;
12
13
  }
13
- export type LoaderProps = LoaderBaseProps & LoaderVariantsProps;
14
+ export type LoaderProps = LoaderBaseProps & LoaderVariantsProps & TestableProps;
14
15
  export declare const Loader: FC<LoaderProps>;
15
16
  export {};
@@ -22,19 +22,21 @@ const loaderVariants = cva('animate-spin', {
22
22
  }
23
23
  }
24
24
  });
25
- const Loader = ({ type = 'circle', size = 'xl', color, background = true })=>{
25
+ const Loader = ({ type = 'circle', size = 'xl', color, background = true, 'data-testid': testId })=>{
26
26
  const className = cn(loaderVariants({
27
27
  size,
28
28
  color
29
29
  }));
30
30
  if ('sonner' === type) return /*#__PURE__*/ jsx(LoaderSonner, {
31
31
  className: className,
32
- "data-role": "spinner"
32
+ "data-role": "spinner",
33
+ "data-testid": testId
33
34
  });
34
35
  return /*#__PURE__*/ jsx(LoaderCircle, {
35
36
  className: className,
36
37
  background: background,
37
- "data-role": "spinner"
38
+ "data-role": "spinner",
39
+ "data-testid": testId
38
40
  });
39
41
  };
40
42
  Loader.displayName = 'Loader';
@@ -1,10 +1,11 @@
1
1
  import type { FC, Ref } from 'react';
2
2
  import { NumberInput as ArkUiNumberInput } from '@ark-ui/react/number-input';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  type NumberInputNativeProps = Omit<ArkUiNumberInput.RootProps, 'className' | 'invalid'>;
4
5
  interface NumberInputBaseProps {
5
6
  error?: boolean;
6
7
  ref?: Ref<HTMLDivElement>;
7
8
  }
8
- export type NumberInputProps = NumberInputNativeProps & NumberInputBaseProps;
9
+ export type NumberInputProps = NumberInputNativeProps & NumberInputBaseProps & TestableProps;
9
10
  export declare const NumberInput: FC<NumberInputProps>;
10
11
  export {};
@@ -1,10 +1,11 @@
1
1
  import type { FC, HTMLAttributes } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  declare const numericBadgeVariants: (props?: ({
4
5
  type?: "primary" | "destructive" | "info" | "primary-alt" | "brand" | "outline" | null | undefined;
5
6
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
6
7
  type NumericBadgeNativeProps = HTMLAttributes<HTMLDivElement>;
7
8
  type NumericBadgeVariantsProps = VariantProps<typeof numericBadgeVariants>;
8
- export type NumericBadgeProps = NumericBadgeNativeProps & NumericBadgeVariantsProps;
9
+ export type NumericBadgeProps = NumericBadgeNativeProps & NumericBadgeVariantsProps & TestableProps;
9
10
  export declare const NumericBadge: FC<NumericBadgeProps>;
10
11
  export {};
@@ -1,6 +1,7 @@
1
1
  import { type HTMLAttributes, type ReactElement, type ReactNode } from 'react';
2
+ import type { TestableProps } from '../../utils/testId';
2
3
  type CollapseDirection = 'start' | 'end';
3
- export interface OverflowListProps<T> extends HTMLAttributes<HTMLDivElement> {
4
+ export interface OverflowListProps<T> extends HTMLAttributes<HTMLDivElement>, TestableProps {
4
5
  items: T[];
5
6
  itemRenderer: (item: T, index: number) => ReactNode;
6
7
  overflowRenderer: (items: T[]) => ReactNode;
@@ -1,5 +1,6 @@
1
1
  import type { FC, HTMLAttributes, Ref } from 'react';
2
- type OverlayProps = Omit<HTMLAttributes<HTMLDivElement>, 'className'> & {
2
+ import type { TestableProps } from '../../utils/testId';
3
+ type OverlayProps = Omit<HTMLAttributes<HTMLDivElement>, 'className'> & TestableProps & {
3
4
  ref?: Ref<HTMLDivElement>;
4
5
  };
5
6
  export declare const Overlay: FC<OverlayProps>;
@@ -1,10 +1,11 @@
1
1
  import type { ComponentPropsWithoutRef, FC, Ref } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  declare const separatorVariants: (props?: ({
4
5
  orientation?: "horizontal" | "vertical" | null | undefined;
5
6
  spacing?: 1 | 2 | 4 | 6 | 8 | 12 | 16 | 24 | 28 | 20 | 32 | 36 | 40 | 44 | 48 | 56 | 64 | 80 | 96 | 112 | 128 | 144 | null | undefined;
6
7
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
7
- export type SeparatorProps = ComponentPropsWithoutRef<'div'> & VariantProps<typeof separatorVariants> & {
8
+ export type SeparatorProps = ComponentPropsWithoutRef<'div'> & VariantProps<typeof separatorVariants> & TestableProps & {
8
9
  ref?: Ref<HTMLDivElement>;
9
10
  orientation?: 'horizontal' | 'vertical';
10
11
  decorative?: boolean;
@@ -1,5 +1,6 @@
1
1
  import type { FC, HTMLAttributes, ReactNode, Ref } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  declare const skeletonVariants: (props?: ({
4
5
  transparent?: boolean | null | undefined;
5
6
  rounded?: "none" | 2 | 4 | 6 | 8 | 12 | 16 | 24 | 32 | "full" | null | undefined;
@@ -21,6 +22,6 @@ type SkeletonWrapProps = SkeletonSharedProps & {
21
22
  width?: never;
22
23
  height?: never;
23
24
  };
24
- export type SkeletonProps = HTMLAttributes<HTMLDivElement> & SkeletonVariantsProps & (SkeletonStandaloneProps | SkeletonWrapProps);
25
+ export type SkeletonProps = HTMLAttributes<HTMLDivElement> & SkeletonVariantsProps & TestableProps & (SkeletonStandaloneProps | SkeletonWrapProps);
25
26
  export declare const Skeleton: FC<SkeletonProps>;
26
27
  export {};
@@ -1,5 +1,6 @@
1
1
  import type { FC, HTMLAttributes, Ref } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  declare const stackVariants: (props?: ({
4
5
  inline?: boolean | null | undefined;
5
6
  direction?: "row" | "column" | "row-reverse" | "column-reverse" | null | undefined;
@@ -13,7 +14,7 @@ declare const stackVariants: (props?: ({
13
14
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
14
15
  type StackNativeProps = Omit<HTMLAttributes<HTMLDivElement>, 'className'>;
15
16
  type StackVariantProps = VariantProps<typeof stackVariants>;
16
- export type StackProps = StackNativeProps & StackVariantProps & {
17
+ export type StackProps = StackNativeProps & StackVariantProps & TestableProps & {
17
18
  ref?: Ref<HTMLDivElement>;
18
19
  asChild?: boolean;
19
20
  };
@@ -1,5 +1,6 @@
1
1
  import type { FC, HTMLAttributes, PropsWithChildren, Ref } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  declare const textVariants: (props?: ({
4
5
  size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
5
6
  weight?: "bold" | "light" | "regular" | "medium" | null | undefined;
@@ -16,6 +17,6 @@ interface TextBaseProps {
16
17
  lineClamp?: number;
17
18
  ref?: Ref<HTMLHeadingElement>;
18
19
  }
19
- export type TextProps = TextNativeProps & TextVariantProps & TextBaseProps;
20
+ export type TextProps = TextNativeProps & TextVariantProps & TextBaseProps & TestableProps;
20
21
  export declare const Text: FC<PropsWithChildren<TextProps>>;
21
22
  export {};
@@ -1,5 +1,6 @@
1
1
  import type { FC, Ref, TextareaHTMLAttributes } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  import { inputVariants } from '../Input';
4
5
  declare const textareaVariants: (props?: ({
5
6
  size?: "small" | "medium" | "default" | null | undefined;
@@ -7,7 +8,7 @@ declare const textareaVariants: (props?: ({
7
8
  type TextareaNativeProps = Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'className'>;
8
9
  type TextareaVariantsProps = VariantProps<typeof textareaVariants>;
9
10
  type InputVariantsProps = VariantProps<typeof inputVariants>;
10
- export type TextareaProps = TextareaNativeProps & TextareaVariantsProps & InputVariantsProps & {
11
+ export type TextareaProps = TextareaNativeProps & TextareaVariantsProps & InputVariantsProps & TestableProps & {
11
12
  ref?: Ref<HTMLTextAreaElement>;
12
13
  };
13
14
  export declare const Textarea: FC<TextareaProps>;
@@ -1,5 +1,6 @@
1
1
  import type { FC, MouseEvent, Ref } from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
+ import type { TestableProps } from '../../utils/testId';
3
4
  import { type ButtonBaseProps } from '../ButtonBase';
4
5
  declare const toggleButtonVariants: (props?: ({
5
6
  variant?: "outline" | "ghost" | null | undefined;
@@ -7,7 +8,7 @@ declare const toggleButtonVariants: (props?: ({
7
8
  active?: boolean | null | undefined;
8
9
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
9
10
  type ToggleButtonVariantProps = VariantProps<typeof toggleButtonVariants>;
10
- export type ToggleButtonProps = Omit<Omit<ButtonBaseProps, 'onToggle'>, 'onClick'> & ToggleButtonVariantProps & {
11
+ export type ToggleButtonProps = Omit<Omit<ButtonBaseProps, 'onToggle'>, 'onClick'> & ToggleButtonVariantProps & TestableProps & {
11
12
  ref?: Ref<HTMLButtonElement>;
12
13
  defaultValue?: boolean;
13
14
  onToggle?: (active: boolean, event: MouseEvent<HTMLButtonElement>) => void;
@@ -1,7 +1,6 @@
1
1
  import type { FC } from 'react';
2
2
  import { Tour as ArkUiTour } from '@ark-ui/react';
3
- export interface TourProps extends Omit<ArkUiTour.RootProps, 'children'> {
4
- /** Base value for cascading `data-testid` attributes. */
5
- testId?: string;
3
+ import type { TestableProps } from '../../utils/testId';
4
+ export interface TourProps extends Omit<ArkUiTour.RootProps, 'children'>, TestableProps {
6
5
  }
7
6
  export declare const Tour: FC<TourProps>;
@@ -1,7 +1,7 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { Tour } from "@ark-ui/react";
3
3
  import { TourInner } from "./TourInner.js";
4
- const Tour_Tour = ({ lazyMount = true, unmountOnExit = true, testId, ...props })=>/*#__PURE__*/ jsx(Tour.Root, {
4
+ const Tour_Tour = ({ lazyMount = true, unmountOnExit = true, 'data-testid': testId, ...props })=>/*#__PURE__*/ jsx(Tour.Root, {
5
5
  ...props,
6
6
  lazyMount: lazyMount,
7
7
  unmountOnExit: unmountOnExit,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "0.9.1",
3
- "generatedAt": "2026-03-14T13:05:08.852Z",
3
+ "generatedAt": "2026-03-14T15:09:24.735Z",
4
4
  "components": [
5
5
  {
6
6
  "name": "Alert",
@@ -24512,12 +24512,6 @@
24512
24512
  "name": "Tour",
24513
24513
  "importPath": "@wallarm-org/design-system/Tour",
24514
24514
  "props": [
24515
- {
24516
- "name": "testId",
24517
- "type": "string | undefined",
24518
- "required": false,
24519
- "description": "Base value for cascading `data-testid` attributes."
24520
- },
24521
24515
  {
24522
24516
  "name": "present",
24523
24517
  "type": "boolean | undefined",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wallarm-org/design-system",
3
- "version": "0.10.0-rc-feature-test-id.2",
3
+ "version": "0.10.0",
4
4
  "description": "Core design system library with React components and Storybook documentation",
5
5
  "publishConfig": {
6
6
  "access": "public",