sanity 5.22.0 → 5.22.1-next.10

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.
@@ -117,6 +117,12 @@ interface KeyValueStore {
117
117
  declare function createKeyValueStore(options: {
118
118
  client: SanityClient;
119
119
  }): KeyValueStore;
120
+ type AuthProbeResult = {
121
+ authenticated: false;
122
+ } | {
123
+ authenticated: true;
124
+ id: string;
125
+ };
120
126
  /**
121
127
  * The interface used by the Studio that produces a `SanityClient` and
122
128
  * `CurrentUser` that gets passed to the resulting `Workspace`s and `Source`s.
@@ -201,7 +207,8 @@ type LoginComponentProps = {
201
207
  };
202
208
  /**
203
209
  * Result returned from `handleCallbackUrl` describing what happened during
204
- * the auth callback flow. Used for telemetry and diagnostics.
210
+ * the auth callback flow. Used for telemetry, diagnostics, and error handling
211
+ * in the AuthBoundary.
205
212
  *
206
213
  * @internal
207
214
  */
@@ -210,25 +217,53 @@ interface HandleCallbackResult {
210
217
  loginMethod: LoginMethod;
211
218
  /**
212
219
  * Which auth flow was taken:
213
- * - `'already-authenticated'`: User was already authenticated; no exchange needed.
214
- * - `'cookie-auth'`: Attempted cookie-based authentication via `/users/me`.
215
- * - `'token-exchange'`: Traded a session ID for a persistent token.
220
+ * - `'already-authenticated'`: No sid in hash - user was already authenticated or not.
221
+ * - `'exchange'`: sid was present, went through /auth/exchange + probe flow.
216
222
  */
217
- flow: 'already-authenticated' | 'cookie-auth' | 'token-exchange';
223
+ flow: 'already-authenticated' | 'exchange';
218
224
  /** Whether the auth flow completed successfully. */
219
225
  success: boolean;
220
226
  /** Total wall-clock time for the callback handling, in milliseconds. */
221
227
  durationMs: number;
222
- /** Time spent on the session-to-token exchange specifically. Only set for `'token-exchange'` flow. */
223
- tokenExchangeDurationMs?: number;
228
+ /** Time spent on the /auth/exchange call specifically. Only set for `'exchange'` flow. */
229
+ exchangeDurationMs?: number;
230
+ /** Time spent on the /users/me probe calls. Only set for `'exchange'` flow. */
231
+ probeDurationMs?: number;
232
+ /** Which auth method was selected by the probes. Only set when `success` is `true` and flow is `'exchange'`. */
233
+ authMethod?: 'cookie' | 'token';
224
234
  /** Human-readable reason for failure. Only set when `success` is `false`. */
225
235
  failureReason?: string;
236
+ /**
237
+ * Structured error for the AuthBoundary to render appropriate UI.
238
+ * Only set when `success` is `false` and flow is `'exchange'`.
239
+ *
240
+ * - `'cookie-blocked'`: cookie-only mode and the cookie probe failed.
241
+ * The browser likely has strict cookie policies.
242
+ * - `'auth-failed'`: all probe methods failed. The user should retry.
243
+ */
244
+ error?: {
245
+ type: 'cookie-blocked' | 'auth-failed';
246
+ message: string;
247
+ };
226
248
  }
227
249
  /** @internal */
228
250
  interface AuthStoreOptions extends AuthConfig {
229
251
  clientFactory?: (options: ClientConfig) => SanityClient;
230
252
  projectId: string;
231
253
  dataset: string;
254
+ /**
255
+ * Retrieves the session ID from the URL hash for the auth callback flow.
256
+ * Called by `handleCallbackUrl` to obtain the session ID that is exchanged
257
+ * for a token or cookie.
258
+ * @internal
259
+ */
260
+ getSessionId: () => string | undefined;
261
+ /**
262
+ * Extracts and consumes a `#token=…` fragment from the URL hash.
263
+ * Called at init to pick up hash tokens and on `hashchange` events.
264
+ * @internal
265
+ */
266
+ consumeHashToken: () => string | undefined;
232
267
  }
233
268
  /**
234
269
  * @internal
@@ -239,12 +274,20 @@ declare function _createAuthStore({
239
274
  dataset,
240
275
  apiHost,
241
276
  loginMethod,
277
+ getSessionId,
278
+ consumeHashToken,
242
279
  ...providerOptions
243
280
  }: AuthStoreOptions): AuthStore;
281
+ /**
282
+ * Public options for `createAuthStore`. The `getSessionId` and `consumeHashToken`
283
+ * dependencies are wired automatically using the default implementations.
284
+ * @internal
285
+ */
286
+ type CreateAuthStoreOptions = Omit<AuthStoreOptions, 'getSessionId' | 'consumeHashToken'>;
244
287
  /**
245
288
  * @internal
246
289
  */
247
- declare const createAuthStore: typeof _createAuthStore;
290
+ declare const createAuthStore: any;
248
291
  /** @internal */
249
292
  interface MockAuthStoreOptions {
250
293
  currentUser: CurrentUser | null;
@@ -16418,4 +16461,4 @@ interface ActiveWorkspaceMatcherContextValue {
16418
16461
  activeWorkspace: WorkspaceSummary;
16419
16462
  setActiveWorkspace: (workspaceName: string) => void;
16420
16463
  }
16421
- export { MissingConfigFile as $, SelectedPerspective as $C, ChangeIndicatorTrackerContextValue as $S, FormIncPatch as $_, Operation as $a, LocaleResourceKey as $b, SANITY_PATCH_TYPE as $c, LoadedState as $d, SchedulesContext as $f, CommentInput as $g, useUserColorManager as $h, UserSessionPair as $i, PreviewProps as $l, DiffComponent as $m, CrossDatasetReferencePreview as $n, isObjectItemProps as $o, ValueError as $p, FieldPresence as $r, BlockDecoratorProps as $s, decodePath as $t, UseFormStateOptions as $u, SearchSort as $v, isAuthStore as $w, useManageFavorite as $x, CommentDocument as $y, ComposableOption as A, DraftsModelDocument as AC, WelcomeBackEvent as AS, StudioProps as A_, DocumentTypeResolveState as Aa, defaultLocale as Ab, FormBuilderProps as Ac, DuplicateKeysError as Ad, LoadingTuple as Af, ScrollContainerProps as Ag, EventsStore as Ah, useGrantsStore as Ai, LinearProgress as Al, ChangesError as Am, TagsArrayInput as An, BufferedDocumentEvent as Ao, FIXME as Ap, FormCell as Ar, ObjectInputProps as As, DocumentInspectorMenuItem as At, PUBLISHED as Au, SearchFilterDefinition as Av, CommandList as Aw, prepareTemplates as Ax, validateNames as Ay, DocumentBadgesContext as B, Previewable as BC, useDialogStack as BS, StudioManifest as B_, getInitialValueStream as Ba, defineLocale as Bb, ReferenceInputOptions as Bc, ALL_FIELDS_GROUP as Bd, TasksContextValue as Bf, buildCommentRangeDecorations as Bg, isDeleteDocumentGroupEvent as Bh, ProjectData as Bi, MediaPreviewProps as Bl, getAnnotationColor as Bm, PortableTextMemberItem as Bn, useValuePreview as Bo, pathToString as Bp, FormFieldValidationStatusProps as Br, RenderArrayOfPrimitivesItemCallback as Bs, DocumentFieldActionHook as Bt, DEFAULT_ANNOTATIONS as Bu, SearchOperatorBuilder as Bv, BetaBadgeProps as Bw, useSyncState as Bx, ActiveWorkspaceMatcher as By, ActionComponent as C, ObserveForPreviewFn as CC, MutationPerformanceEvent as CS, StudioLayoutComponent as C_, PermissionCheckResult as Ca, useWorkspaceSchemaId as Cb, StudioReferenceInput as Cc, NumberFormNode as Cd, isArray as Cf, ConsentStatus as Cg, CreateDocumentVersionEvent as Ch, useResourceCache as Ci, StatusButtonProps as Cl, DiffErrorBoundary as Cm, ArrayOfObjectsMemberProps as Cn, DocumentVersion as Co, usePerspective as Cp, useGetFormValue as Cr, BaseInputProps as Cs, ReleaseActionComponent as Ct, isReleaseScheduledOrScheduling as Cu, SearchDialog as Cv, newDraftFrom as Cw, Serializeable as Cx, MatchWorkspaceResult as Cy, AsyncConfigPropertyReducer as D, AvailabilityResponse as DC, PendingMutationsEvent as DS, StudioAnnouncementsContextValue as D_, selectUpstreamVersion as Da, Translate as Db, FormProvider as Dc, PrimitiveFormNode as Dd, formatRelativeLocale as Df, ScrollContextValue as Dg, DocumentGroupEvent as Dh, useConnectionStatusStore as Di, Resizable as Dl, DiffCardProps as Dm, TextInputProps as Dn, RemoteSnapshotVersionEvent as Do, ReleasesNav as Dp, DivergencesProvider as Dr, InputOnSelectFileFunctionProps as Ds, FormComponents as Dt, getReleaseTone as Du, useSearchState as Dv, DocumentVariantType as Dw, resolveInitialValueForType as Dx, WorkspacesContextValue as Dy, AsyncComposableOption as E, AvailabilityReason as EC, MutationEvent as ES, StudioAnnouncementsDialog as E_, useInitialValueResolverContext as Ea, validateDocument as Eb, StudioCrossDatasetReferenceInputProps as Ec, ObjectRenderMembersCallback as Ed, getErrorMessage as Ef, isProd as Eg, DeleteDocumentVersionEvent as Eh, useComlinkStore as Ei, RovingFocusProps as El, DiffCard as Em, TextInput as En, Pair as Eo, PerspectiveProvider as Ep, useFormValue as Er, EditorChange as Es, ReleaseActionsContext as Et, isGoingToUnpublish as Eu, useSearchMaxFieldDepth as Ev, Chip as Ew, resolveInitialValue as Ex, WorkspacesProviderProps as Ey, DecisionParametersConfig as F, ObserveDocumentAvailabilityFn as FC, DocumentRebaseEvent as FS, uploadSchema as F_, createDocumentStore as Fa, useCurrentLocale as Fb, defaultRenderInput as Fc, MixedArrayError as Fd, buildLegacyTheme as Ff, AutoCollapseMenu as Fg, UnpublishDocumentEvent as Fh, useRenderingContextStore as Fi, InlinePreviewProps as Fl, ChangeBreadcrumb as Fm, SelectInput as Fn, prepareForPreview as Fo, isEmptyObject as Fp, FormFieldValidation as Fr, PrimitiveInputElementProps as Fs, documentFieldActionsReducer as Ft, useActiveReleases as Fu, I18nSearchOperatorDescriptionKey as Fv, CommandListHandle as Fw, TemplateItem as Fx, VisibleWorkspacesContextValue as Fy, DocumentLanguageFilterComponent as G, ReleaseTitle as GC, useConnectionState as GS, CopyOptions as G_, InitialValueSuccessMsg as Ga, LocaleProviderBase as Gb, FormCallbacksValue as Gc, SANITY_VERSION as Gd, DEFAULT_STUDIO_CLIENT_OPTIONS as Gf, CommentsEnabledContextValue as Gg, isUnpublishDocumentEvent as Gh, PresenceStore as Gi, CompactPreview as Gl, ArrayDiff$1 as Gm, ImageUrlBuilder$1 as Gn, PreviewLoader as Go, emptyValuesByType as Gp, FormFieldHeaderText as Gr, RenderPreviewCallback as Gs, DocumentFieldActionTone as Gt, DivergenceNavigator as Gu, ValuelessSearchOperatorBuilder as Gv, ConnectingStatus as Gw, useRelativeTime as Gx, CommentsSelectedPathProvider as Gy, DocumentCommentsEnabledContext as H, Selection as HC, useDateTimeFormat as HS, CopyPasteProvider as H_, InitialValueLoadingMsg as Ha, defineLocalesResources as Hb, TemplateOption as Hc, getDocumentIdForCanvasLink as Hd, MentionUserContextValue as Hf, useCommentsSelectedPath as Hg, isEditDocumentVersionEvent as Hh, ProjectGrants as Hi, DetailPreviewProps as Hl, visitDiff as Hm, ObjectInput as Hn, useUnstableObserveDocument as Ho, stringToPath as Hp, FormFieldStatus as Hr, RenderFieldCallback as Hs, DocumentFieldActionNode as Ht, ReleaseDocument$1 as Hu, SearchOperatorInput as Hv, CorsOriginErrorOptions as Hw, useSchema as Hx, RouterHistory as Hy, DefaultPluginsWorkspaceOptions as I, ObserveDocumentTypeFromIdFn as IC, DocumentRemoteMutationEvent as IS, LiveManifestRegisterProvider as I_, ListenQueryOptions as Ia, useLocale as Ib, defaultRenderItem as Ic, TypeAnnotationMismatchError as Id, LegacyThemeProps as If, CollapseMenu as Ig, UnscheduleDocumentVersionEvent as Ih, useUserStore as Ii, BlockPreview as Il, useAnnotationColor as Im, ReferenceAutocomplete as In, getPreviewValueWithFallback as Io, normalizeIndexSegment as Ip, FormFieldValidationError as Ir, PrimitiveInputProps as Is, defineDocumentFieldAction as It, VersionInfoDocumentStub as Iu, I18nSearchOperatorNameKey as Iv, CommandListItemContext as Iw, TemplateParameter as Ix, VisibleWorkspacesProvider as Iy, DocumentLayoutProps as J, VersionChip as JC, CommentDisabledIcon as JS, PasteOptions as J_, OperationError as Ja, LocaleConfigContext as Jb, PatchChannel as Jc, useUnique as Jd, usePausedScheduledDraft as Jf, hasCommentMessageValue as Jg, UserColorManagerProvider as Jh, DocumentPresence as Ji, GeneralPreviewLayoutKey as Jl, ChangeNode as Jm, getCalendarLabels as Jn, isArrayOfObjectsInputProps as Jo, isGroupChange as Jp, FormFieldProps as Jr, ItemProps as Js, AuthConfig as Jt, ExpandOperation as Ju, createSearch as Jv, ConnectionStatusStoreOptions as Jw, useReconnectingToast as Jx, CommentsEnabledProvider as Jy, DocumentLanguageFilterContext as K, ReleaseAvatar as KC, useConditionalToast as KS, CopyPasteContextType as K_, validation$1 as Ka, ImplicitLocaleResourceBundle as Kb, useFormCallbacks as Kc, measureFirstEmission as Kd, useScheduledDraftsEnabled as Kf, useComments as Kg, isUnscheduleDocumentVersionEvent as Kh, SESSION_ID as Ki, CompactPreviewProps as Kl, ArrayItemMetadata as Km, EmailInput as Kn, Preview as Ko, isAddedItemDiff as Kp, FormFieldHeaderTextProps as Kr, RenderPreviewCallbackProps as Ks, DocumentFieldActionsResolver as Kt, useDivergenceNavigator as Ku, ValuelessSearchOperatorParams as Kv, ConnectionStatus as Kw, DocumentField as Kx, CommentsIntentProvider as Ky, DocumentActionsContext as L, ObservePathsFn as LC, MutationPayload as LS, GenerateStudioManifestOptions as L_, ListenQueryParams as La, useGetI18nText as Lb, defaultRenderPreview as Lc, UndeclaredMembersError as Ld, LegacyThemeTints as Lf, CollapseMenuProps as Lg, UpdateLiveDocumentEvent as Lh, useProjectDatasets as Li, BlockImagePreview as Ll, useDiffAnnotationColor as Lm, CreateButton as Ln, getPreviewStateObservable as Lo, normalizeIndexTupleSegment as Lp, FormFieldValidationInfo as Lr, StringInputProps as Ls, DocumentFieldAction as Lt, isReleaseDocument as Lu, OperatorButtonValueComponentProps as Lv, CommandListProps as Lw, TemplateReferenceTarget as Lx, getNamelessWorkspaceIdentifier as Ly, ConfigContext$1 as M, FieldName as MC, CommitFunction as MS, SourceProviderProps as M_, DocumentStore as Ma, UseTranslationOptions as Mb, defaultRenderBlock as Mc, IncompatibleTypeError as Md, createHookFromObservableFactory as Mf, CollapseMenuButton as Mg, HistoryClearedEvent as Mh, useKeyValueStore as Mi, TemplatePreview as Ml, ChangeResolverProps as Mm, StringInput as Mn, createBufferedDocument as Mo, getItemKey as Mp, FormInput as Mr, OnPathFocusPayload as Ms, DocumentInspectorUseMenuItemProps as Mt, ReleasesUpsellContextValue as Mu, defineSearchFilterOperators as Mv, CommandListGetItemDisabledCallback as Mw, Template as Mx, useWorkspaces as My, ConfigPropertyReducer as N, Id as NC, CommittedEvent as NS, useSource as N_, DocumentStoreOptions as Na, UseTranslationResponse as Nb, defaultRenderField as Nc, InvalidItemTypeError as Nd, catchWithCount as Nf, CollapseMenuButtonProps as Ng, PublishDocumentVersionEvent as Nh, usePresenceStore as Ni, TemplatePreviewProps as Nl, ChangeList as Nm, SlugInput as Nn, CommitRequest as No, getItemKeySegment as Np, FormInputAbsolutePathArg as Nr, PasteData$1 as Ns, defineDocumentInspector as Nt, useDocumentVersionInfo as Nu, SearchOperatorType as Nv, CommandListGetItemKeyCallback as Nw, TemplateArrayFieldDefinition as Nx, evaluateWorkspaceHidden as Ny, BaseActionDescription as O, DocumentAvailability as OC, ReconnectEvent as OS, StudioAnnouncementsCard as O_, isNewDocument as Oa, TranslateComponentMap as Ob, FormProviderProps as Oc, StringFormNode as Od, EMPTY_ARRAY as Of, ScrollEventHandler as Og, DocumentVersionEventType as Oh, useDocumentPreviewStore as Oi, RelativeTime as Ol, TIMELINE_ITEM_I18N_KEY_MAPPING as Om, TelephoneInput as On, WithVersion as Oo, PerspectiveNotWriteableReason as Op, useDocumentDivergences as Or, InputProps as Os, DocumentInspector as Ot, getReleaseIdFromReleaseDocumentId as Ou, SearchProvider as Ov, getDocumentVariantType as Ow, defaultTemplateForType as Ox, ValidateWorkspaceOptions as Oy, DECISION_PARAMETERS_SCHEMA as P, InvalidationChannelEvent as PC, DocumentMutationEvent as PS, renderStudio as P_, QueryParams$1 as Pa, useTranslation as Pb, defaultRenderInlineBlock as Pc, MissingKeysError as Pd, defaultTheme as Pf, CommonProps as Pg, ScheduleDocumentVersionEvent as Ph, useProjectStore as Pi, InlinePreview as Pl, ChangeListProps as Pm, SlugInputProps as Pn, createObservableBufferedDocument as Po, getValueAtPath as Pp, FormInputRelativePathArg as Pr, PortableTextInputProps as Ps, initialDocumentFieldActions as Pt, useArchivedReleases as Pu, operatorDefinitions as Pv, CommandListGetItemSelectedCallback as Pw, TemplateFieldDefinition as Px, useVisibleWorkspaces as Py, MediaLibraryConfig as Q, ReleasesNavMenuItemPropsGetter as QC, useChangeIndicatorsReporter as QS, FormDiffMatchPatch as Q_, MapDocument as Qa, LocaleResourceBundle as Qb, createPatchChannel as Qc, LoadableState as Qd, createSchema as Qf, CommentInputContextValue as Qg, useUserColor as Qh, Status as Qi, PreviewMediaDimensions as Ql, Diff$1 as Qm, DateInputProps as Qn, isObjectInputProps as Qo, DocumentChangeContextInstance as Qp, PresenceOverlayProps as Qr, BlockAnnotationProps as Qs, TransformPatches as Qt, FormState as Qu, SearchOptions as Qv, onRetry as Qw, UseManageFavoriteProps as Qx, CommentCreatePayload as Qy, DocumentActionsResolver as R, PreparedSnapshot as RC, RemoteSnapshotEvent as RS, generateStudioManifest as R_, listenQuery as Ra, I18nNode as Rb, EditReferenceLinkComponentProps as Rc, FormFieldGroup as Rd, useDocumentPreviewValues as Rf, buildTextSelectionFromFragment as Rg, isCreateDocumentVersionEvent as Rh, useProject as Ri, BlockImagePreviewProps as Rl, DiffVisitor as Rm, CreateReferenceOption as Rn, getPreviewPaths as Ro, normalizeKeySegment as Rp, FormFieldValidationWarning as Rr, RenderAnnotationCallback as Rs, DocumentFieldActionDivider as Rt, MetadataWrapper as Ru, OperatorInputComponentProps as Rv, CommandListRenderItemCallback as Rw, TypeTarget as Rx, getWorkspaceIdentifier as Ry, useMiddlewareComponents as S, DocumentPreviewStoreOptions as SC, ListenerEvent as SS, StudioLayout as S_, GrantsStore as Sa, CommentsAuthoringPathProvider as Sb, UploaderResolver as Sc, NodeDiffProps as Sd, isNonNullable as Sf, useTelemetryConsent as Sg, BaseEvent as Sh, ResourceCacheProviderProps as Si, StatusButton as Sl, FieldPreviewComponent as Sm, ArrayOfObjectsInputMember as Sn, Transaction as So, useSetPerspective as Sp, GetFormValueProvider as Sr, ArrayOfPrimitivesInputProps as Ss, WorkspaceSummary as St, isPublishedPerspective as Su, StudioLogo as Sv, isVersionId as Sw, DEFAULT_MAX_RECURSION_DEPTH as Sx, MatchWorkspaceOptions as Sy, AssetSourceResolver as T, ApiConfig as TC, IdPair as TS, isValidAnnouncementRole as T_, useInitialValue as Ta, ValidateDocumentOptions as Tb, StudioCrossDatasetReferenceInput as Tc, ObjectFormNode as Td, getReferencePaths as Tf, isDev as Tg, DeleteDocumentGroupEvent as Th, useDocumentPresence as Ti, RovingFocusNavigationType as Tl, DiffErrorBoundaryState as Tm, UrlInputProps as Tn, MutationResult as To, useExcludedPerspective as Tp, FormValueProvider as Tr, ComplexElementProps as Ts, ReleaseActionProps as Tt, isReleasePerspective as Tu, PartialIndexSettings as Tv, systemBundles as Tw, resolveInitialObjectValue as Tx, WorkspacesProvider as Ty, DocumentInspectorContext as U, VersionInlineBadge as UC, useDataset as US, useCopyPaste as U_, InitialValueMsg as Ua, removeUndefinedLocaleResources as Ub, useReferenceInputOptions as Uc, useNavigateToCanvasDoc as Ud, IsLastPaneProvider as Uf, CommentsOnboardingContextValue as Ug, isPublishDocumentVersionEvent as Uh, ProjectOrganizationData as Ui, DefaultPreview as Ul, Annotation as Um, NumberInput as Un, SanityDefaultPreview as Uo, resolveDiffComponent as Up, FormFieldSet as Ur, RenderInputCallback as Us, DocumentFieldActionProps as Ut, isDocumentLimitError as Uu, SearchOperatorParams as Uv, CONNECTING as Uw, useReviewChanges as Ux, CommentsSelectedPath as Uy, DocumentBadgesResolver as V, PreviewableType as VC, UseDateTimeFormatOptions as VS, StudioWorkspaceManifest as V_, InitialValueErrorMsg as Va, defineLocaleResourceBundle as Vb, ReferenceInputOptionsProvider as Vc, resolveConditionalProperty as Vd, TasksNavigationContextValue as Vf, useCommentsTelemetry as Vg, isDeleteDocumentVersionEvent as Vh, ProjectDatasetData as Vi, DetailPreview as Vl, getDiffAtPath as Vm, UpdateReadOnlyPlugin as Vn, unstable_useObserveDocument as Vo, pathsAreEqual as Vp, FieldStatusProps as Vr, RenderBlockCallback as Vs, DocumentFieldActionItem as Vt, DEFAULT_DECORATORS as Vu, SearchOperatorButtonValue as Vv, CorsOriginError as Vw, useStudioUrl as Vx, ActiveWorkspaceMatcherProps as Vy, DocumentInspectorsResolver as W, getVersionInlineBadge as WC, ConnectionState as WS, BaseOptions as W_, InitialValueState as Wa, LocaleProvider as Wb, FormCallbacksProvider as Wc, useCanvasCompanionDoc as Wd, TasksEnabledContextValue as Wf, useCommentsEnabled as Wg, isScheduleDocumentVersionEvent as Wh, ProjectStore as Wi, DefaultPreviewProps as Wl, AnnotationDetails as Wm, AssetAccessPolicy as Wn, SanityDefaultPreviewProps as Wo, useDocumentChange as Wp, FormFieldSetProps as Wr, RenderItemCallback as Ws, DocumentFieldActionStatus as Wt, useDocumentLimitsUpsellContext as Wu, SearchValueFormatterContext as Wv, ConnectedStatus as Ww, RelativeTimeOptions as Wx, CommentsSelectedPathContextValue as Wy, FormBuilderComponentResolverContext as X, PerspectiveStack as XC, ChangeIndicatorsTracker as XS, PatchEvent as X_, emitOperation as Xa, LocaleNestedResource as Xb, PatchMsgSubscriber as Xc, userHasRole as Xd, useSingleDocRelease as Xf, COMMENTS_INSPECTOR_NAME as Xg, UserColorManagerOptions as Xh, PresenceLocation as Xi, PreviewComponent as Xl, Chunk as Xm, DateTimeInputProps as Xn, isBooleanInputProps as Xo, isUnchangedDiff as Xp, PresenceScopeProps as Xr, ObjectItemProps as Xs, CookielessCompatibleLoginMethod as Xt, SetActiveGroupOperation as Xu, getSearchableTypes as Xv, RetryingStatus as Xw, UseNumberFormatOptions as Xx, CommentBaseCreatePayload as Xy, DocumentPluginOptions as Y, PerspectiveContextValue as YC, CommentDeleteDialog as YS, SanityClipboardItem as Y_, OperationSuccess as Ya, LocaleDefinition as Yb, PatchMsg as Yc, useThrottledCallback as Yd, SingleDocReleaseProvider as Yf, isTextSelectionComment as Yg, UserColorManagerProviderProps as Yh, GlobalPresence as Yi, PortableTextPreviewLayoutKey as Yl, ChangeTitlePath as Ym, DateTimeInput as Yn, isArrayOfPrimitivesInputProps as Yo, isRemovedItemDiff as Yp, PresenceScope as Yr, ObjectItem as Ys, AuthProvider as Yt, ExpandPathOperation as Yu, isPerspectiveRaw as Yv, ErrorStatus as Yw, useProjectId as Yx, CommentsProvider as Yy, GroupableActionDescription as Z, ReleaseId as ZC, useChangeIndicatorsReportedValues as ZS, FormDecPatch as Z_, operationEvents as Za, LocalePluginOptions as Zb, RebasePatchMsg as Zc, ErrorState as Zd, getSchemaTypeTitle as Zf, CommentInlineHighlightSpan as Zg, createUserColorManager as Zh, Session as Zi, PreviewLayoutKey as Zl, ChunkType as Zm, DateInput as Zn, isNumberInputProps as Zo, noop as Zp, PresenceOverlay as Zr, PrimitiveItemProps as Zs, LoginMethod as Zt, getExpandOperations as Zu, SearchFactoryOptions as Zv, createConnectionStatusStore as Zw, useNumberFormat as Zx, CommentContext as Zy, createDefaultIcon as _, useOnlyHasVersions as _C, DocumentPairLoadedEvent as _S, createSanityMediaLibraryImageSource as _T, UpsellDialogViewed as __, useDocumentPairPermissions as _a, CommentsTextSelectionItem as _b, ResolvedUploader as _c, BooleanFormNode as _d, isPausedCardinalityOneRelease as _f, TagValue as _g, FieldValueError as _h, AgentVersionDisplay as _i, ImperativeToast as _l, DiffStringSegment as _m, PrimitiveMemberItemProps as _n, ParsedTimeRef as _o, DuplicateActionProps as _p, FieldActionsProps as _r, ObjectFieldProps as _s, Tool as _t, CapabilityGate as _u, NavbarAction as _v, isDraft as _w, useUnitFormatter as _x, StudioThemeColorSchemeKey as _y, resolveSchemaTypes as a, useTrackerStoreReporter as aC, FormattedDuration as aS, _createAuthStore as aT, WorkspaceLoaderBoundary as a_, getTemplatePermissions as aa, CommentPath as ab, ArrayInputCopyEvent as ac, ArrayOfObjectsItemMember as ad, uncaughtErrorHandler as af, FeedbackContext as ag, FromToIndex as ah, FormNodePresence as ai, set as al, GroupChange as am, useDocumentForm as an, useTimelineSelector as ao, GetHookCollectionStateProps as ap, ArrayOfOptionsInput as ar, FormBuilderMarkersComponent as as, PluginOptions as at, LoadingBlock as au, FormPatchOrigin as av, SystemBundle as aw, StaticLocaleResourceBundle as ax, Filters as ay, ConfigPropertyError as b, useDocumentVersions as bC, InitialSnapshotEvent as bS, StudioProviderProps as b_, EvaluationParams as ba, Loadable as bb, Uploader as bc, HiddenField as bd, isString as bf, FeedbackDialog as bg, EventsProvider as bh, ResourceCache as bi, TextWithTone as bl, DiffFromTo as bm, ArrayOfObjectsInputMembers as bn, CombinedDocument as bo, SchedulesContextValue as bp, FieldActionMenu as br, ArrayOfObjectsInputProps as bs, WorkspaceHiddenProperty as bt, getDocumentIsInPerspective as bu, StudioComponentsPluginOptions as bv, isSystemBundle as bw, useTimeAgo as bx, AddonDatasetProvider as by, createWorkspaceFromConfig as c, ReporterHook as cC, useFilteredReleases as cS, AuthStore as cT, ErrorMessageProps as c_, GrantsStoreOptions as ca, CommentReactionOption as cb, UploadEvent as cc, ArrayOfPrimitivesMember as cd, fieldNeedsEscape as cf, UseFeedbackReturn as cg, NullDiff$1 as ch, PresentUser as ci, ZIndexProvider as cl, FromTo as cm, ObjectMembersProps as cn, useTimelineStore as co, DocumentActionComponent as cp, VirtualizerScrollInstance as cr, RenderBlockActionsProps as cs, ResolveProductionUrlContext as ct, InsufficientPermissionsMessageProps as cu, FormUnsetPatch as cv, createDraftFrom as cw, StudioLocaleResourceKeys as cx, ColorSchemeProvider as cy, flattenConfig as d, ConnectorContextValue as dC, useDocumentOperationEvent as dS, createKeyValueStore as dT, useWorkspace as d_, DocumentValuePermissionsOptions as da, CommentTaskCreatePayload as db, ImageInputProps as dc, FieldSetMember as dd, _isSanityDocumentTypeDefinition as df, UseInStudioFeedbackReturn as dg, ReferenceDiff as dh, ReportedRegionWithRect as di, AvatarSkeleton as dl, FallbackDiff as dm, MemberFieldSet as dn, HistoryStoreOptions as do, DocumentActionDescription as dp, ArrayOfObjectsFunctions as dr, ArrayOfPrimitivesFieldProps as ds, SchemaPluginOptions as dt, serializeError as du, ToolLinkProps as dv, getDraftId as dw, UserListWithPermissionsOptions as dx, useColorSchemeInternalValue as dy, TrackedArea as eC, UseListFormatOptions as eS, isCookielessCompatibleLoginMethod as eT, CommentInputHandle as e_, UserStore as ea, CommentFieldCreatePayload as eb, BlockListItemProps as ec, useFormState as ed, LoadingState as ef, HexColor as eg, DiffComponentOptions as eh, FieldPresenceInner as ei, dec as el, RevertChangesConfirmDialog as em, encodePath as en, OperationArgs as eo, ScheduledBadge as ep, BooleanInput as er, isStringInputProps as es, NewDocumentCreationContext as et, PreviewCard as eu, FormInsertPatch as ev, TargetPerspective as ew, LocaleResourceRecord as ex, SearchTerms as ey, PluginFactory as f, ChangeIndicator as fC, useDocumentOperation as fS, KeyValueStore as fT, InterpolationProp as f_, getDocumentValuePermissions as fa, CommentTextSelection as fb, StudioImageInput as fc, FieldsetRenderMembersCallback as fd, _isType as ff, useInStudioFeedback as fg, StringDiff$1 as fh, Size as fi, UserAvatar as fl, Event$1 as fm, MemberFieldError as fn, createHistoryStore as fo, DocumentActionDialogProps as fp, useDidUpdate as fr, BaseFieldProps as fs, SingleWorkspace as ft, useCopyErrorDetails as fu, StudioToolMenu as fv, getIdPair as fw, UserWithPermission as fx, useColorSchemeOptions as fy, defineConfig as g, useVersionOperations as gC, editState$1 as gS, createSanityMediaLibraryFileSource as gT, UpsellDialogUpgradeCtaClicked as g_, getDocumentPairPermissions as ga, CommentsListBreadcrumbItem as gb, FileLike as gc, BaseFormNode as gd, isCardinalityOneRelease as gf, Sentiment as gg, TypeChangeDiff$1 as gh, useUser as gi, ZIndexContextValue as gl, DiffString as gm, ArrayOfPrimitivesItem as gn, TimelineControllerOptions as go, DocumentActionProps as gp, useFieldActions as gr, NumberFieldProps as gs, TemplateResolver as gt, DocumentStatusIndicator as gu, LogoProps as gv, idMatchesPerspective as gw, UseUnitFormatterOptions as gx, StudioTheme as gy, createConfig as h, sortReleases as hC, EditStateFor as hS, EditPortal as hT, UpsellDialogLearnMoreCtaClicked as h_, DocumentPermission as ha, CommentUpdatePayload as hb, AssetSourcesResolver as hc, ArrayOfPrimitivesFormNode as hd, isCardinalityOnePerspective as hf, FeedbackPayload as hg, StringSegmentUnchanged$1 as hh, useCurrentUser as hi, ZIndexContextValueKey as hl, DiffTooltipWithAnnotationsProps as hm, MemberItemError as hn, TimelineController as ho, DocumentActionPopoverDialogProps as hp, HoveredFieldProvider as hr, FieldProps as hs, SourceOptions as ht, ErrorActionsProps as hu, LayoutProps as hv, getVersionId as hw, UnitFormatter as hx, StudioColorScheme as hy, SchemaError as i, useTrackerStore as iC, FormDocumentValue as iS, AuthStoreOptions as iT, UpsellData as i_, TemplatePermissionsResult as ia, CommentOperations as ib, PortableTextPluginsProps as ic, FieldsetState as id, truncateString as if, UserId as ig, FieldOperationsAPI as ih, FieldPresenceData as ii, prefixPath as il, MetaInfoProps as im, useFormBuilder as in, snapshotPair as io, GetHookCollectionState as ip, ArrayOfPrimitiveOptionsInput as ir, FormBuilderInputComponentMap as is, Plugin as it, PopoverDialog as iu, FormPatchJSONValue as iv, PublishedId as iw, LocalesOption as ix, SearchHeader as iy, Config as j, DraftsModelDocumentAvailability as jC, WelcomeEvent as jS, SourceProvider as j_, useDocumentType as ja, usEnglishLocale as jb, defaultRenderAnnotation as jc, FieldError as jd, ReactHook as jf, useOnScroll as jg, EventsStoreRevision as jh, useHistoryStore as ji, CircularProgress as jl, ChangeResolver as jm, TagsArrayInputProps as jn, BufferedDocumentWrapper as jo, findIndex as jp, FormRow as jr, OnPasteFn as js, DocumentInspectorProps as jt, useReleasesIds as ju, defineSearchFilter as jv, CommandListElementType as jw, InitialValueTemplateItem as jx, validateWorkspaces as jy, BetaFeatures as k, DocumentStackAvailability as kC, ResetEvent as kS, Studio as k_, useDocumentValues as ka, TranslationProps as kb, FormBuilder as kc, ArrayItemError as kd, EMPTY_OBJECT as kf, ScrollContainer as kg, EditDocumentVersionEvent as kh, useDocumentStore as ki, RelativeTimeProps as kl, ChangeTitleSegment as km, TelephoneInputProps as kn, checkoutPair as ko, isPerspectiveWriteable as kp, FormContainer as kr, NumberInputProps as ks, DocumentInspectorComponent as kt, LATEST as ku, SearchContextValue as kv, ContextMenuButton as kw, defaultTemplatesForSchema as kx, validateBasePaths as ky, resolveConfig as l, ChangeConnectorRoot as lC, useFeatureEnabled as lS, HandleCallbackResult as lT, WorkspaceProvider as l_, createGrantsStore as la, CommentReactionShortNames as lb, EnhancedObjectDialogContextValue as lc, DecorationMember as ld, joinPath as lf, useFeedback as lg, NumberDiff$1 as lh, Rect as li, useZIndex as ll, FromToProps as lm, ObjectInputMember as ln, DocumentRevision as lo, DocumentActionConfirmDialogProps as lp, useVirtualizerScrollInstance as lr, RenderCustomMarkers as ls, SanityFormConfig as lt, Hotkeys as lu, PatchArg as lv, createPublishedFrom as lw, Rule as lx, ColorSchemeProviderProps as ly, definePlugin as m, ChangeFieldWrapper as mC, useDocumentIdStack as mS, EnhancedObjectDialog as mT, UpsellDialogDismissed as m_, DocumentPairPermissionsOptions as ma, CommentUpdateOperationOptions as mb, StudioFileInput as mc, ArrayOfObjectsFormNode as md, CardinalityOneRelease as mf, DynamicFeedbackTags as mg, StringSegmentChanged$1 as mh, DocumentPreviewPresenceProps as mi, LegacyLayerProvider as ml, DiffTooltipProps as mm, MemberFieldProps as mn, SelectionState as mo, DocumentActionModalDialogProps as mp, useHoveredField as mr, FieldCommentsProps as ms, SourceClientOptions as mt, ErrorActions as mu, ActiveToolLayoutProps as mv, getVersionFromId as mw, FormattableMeasurementUnit as mx, useColorSchemeValue as my, getConfigContextFromSource as n, TrackerContextGetSnapshot as nC, GlobalCopyPasteElementHandler as nS, MockAuthStoreOptions as nT, CommentsList as n_, createUserStore as na, CommentListBreadcrumbs as nb, BlockStyleProps as nc, StateTree as nd, useLoadable as nf, UserColorHue as ng, DiffProps as nh, FieldPresenceProps as ni, inc as nl, NoChanges as nm, fromMutationPatches as nn, OperationsAPI as no, DocumentBadgeDescription as np, ArrayOfPrimitivesInput as nr, FormBuilderCustomMarkersComponent as ns, NewDocumentOptionsResolver as nt, ReferenceInputPreviewCard as nu, FormPatch as nv, DRAFTS_FOLDER as nw, LocaleWeekInfo as nx, SearchPopover as ny, CreateWorkspaceFromConfigOptions as o, IsEqualFunction as oC, UseFormattedDurationOptions as oS, createAuthStore as oT, useWorkspaceLoader as o_, useTemplatePermissions as oa, CommentPostPayload as ob, ArrayInputInsertEvent as oc, ArrayOfObjectsMember as od, supportsTouch as of, FeedbackContextValue as og, GroupChangeNode as oh, Location as oi, setIfMissing as ol, FromToArrow as om, ObjectInputMembers as on, TimelineState as oo, HookCollectionActionHook as op, ArrayOfObjectOptionsInput as or, PortableTextMarker as os, PreparedConfig as ot, IntentButton as ou, FormSetIfMissingPatch as ov, VERSION_FOLDER as ow, TFunction$1 as ox, ColorSchemeCustomProvider as oy, createPlugin as p, ChangeIndicatorProps as pC, DocumentIdStack as pS, KeyValueStoreValue as pT, UpsellDescriptionSerializer as p_, useDocumentValuePermissions as pa, CommentThreadItem as pb, FileInputProps as pc, ObjectMember as pd, createSWR as pf, BaseFeedbackTags as pg, StringDiffSegment as ph, DocumentPreviewPresence as pi, UserAvatarProps as pl, DiffTooltip as pm, MemberField as pn, removeMissingReferences as po, DocumentActionGroup as pp, FormBuilderContextValue as pr, BooleanFieldProps as ps, Source as pt, ErrorWithId as pu, StudioNavbar as pv, getPublishedId as pw, useUserListWithPermissions as px, useColorSchemeSetValue as py, DocumentLanguageFilterResolver as q, ReleaseAvatarIcon as qC, useClient as qS, DocumentMeta as q_, remoteSnapshots as qa, Locale as qb, MutationPatchMsg as qc, measureFirstMatch as qd, useScheduledDraftDocument as qf, CommentsContextValue as qg, isUpdateLiveDocumentEvent as qh, createPresenceStore as qi, GeneralDocumentListLayoutKey as ql, BooleanDiff$1 as qm, EmailInputProps as qn, isArrayOfBlocksInputProps as qo, isFieldChange as qp, FormField as qr, BaseItemProps as qs, DocumentFieldActionsResolverContext as qt, ExpandFieldSetOperation as qu, defineSearchOperator as qv, ConnectionStatusStore as qw, useReferringDocuments as qx, CommentsIntentProviderProps as qy, useConfigContextFromSource as r, TrackerContextStore as rC, useGlobalCopyPasteElementHandler as rS, createMockAuthStore as rT, CommentsUpsellContextValue as r_, TemplatePermissionsOptions as ra, CommentMessage as rb, MarkdownConfig as rc, FieldsetMembers as rd, sliceString as rf, UserColorManager as rg, FieldChangeNode as rh, FieldPresenceWithOverlay as ri, insert as rl, MetaInfo as rm, toMutationPatches as rn, DocumentVersionSnapshots as ro, DocumentBadgeProps as rp, ArrayOfPrimitivesFunctions as rr, FormBuilderFilterFieldFn as rs, PartialContext as rt, usePreviewCard as ru, FormPatchBase as rv, DraftId as rw, LocalesBundlesOption as rx, SearchPopoverProps as ry, createSourceFromConfig as s, Reported as sC, useFormattedDuration as sS, AuthState as sT, ErrorMessage as s_, useTemplatePermissionsFromHookFactory as sa, CommentReactionItem as sb, ArrayInputMoveItemEvent as sc, ArrayOfPrimitivesItemMember as sd, escapeField as sf, useStudioFeedbackTags as sg, ItemDiff$1 as sh, Position as si, unset as sl, FromToArrowDirection as sm, ObjectMembers as sn, TimelineStore as so, useScheduleAction as sp, VirtualizerScrollInstanceProvider as sr, RenderBlockActionsCallback as ss, ReleaseActionsResolver as st, InsufficientPermissionsMessage as su, FormSetPatch as sv, collate as sw, ValidationLocaleResourceKeys as sx, ColorSchemeLocalStorageProvider as sy, ActiveWorkspaceMatcherContextValue as t, TrackedChange as tC, useListFormat as tS, getProviderTitle as tT, CommentInputProps as t_, UserStoreOptions as ta, CommentIntentGetter as tb, BlockProps as tc, setAtPath as td, asLoadable as tf, UserColor as tg, DiffComponentResolver as th, FieldPresenceInnerProps as ti, diffMatchPatch as tl, RevertChangesButton as tm, MutationPatch as tn, OperationImpl as to, DocumentBadgeComponent as tp, UniversalArrayInput as tr, ArrayInputFunctionsProps as ts, NewDocumentOptionsContext as tt, PreviewCardContextValue as tu, FormInsertPatchPosition as tv, CollatedHit as tw, LocaleSource as tx, SearchResultItemPreview as ty, prepareConfig as u, ChangeConnectorRootProps as uC, useEditState as uS, LoginComponentProps as uT, WorkspaceProviderProps as u_, grantsPermissionOn as ua, CommentStatus as ub, useEnhancedObjectDialog as uc, FieldMember as ud, _isCustomDocumentTypeDefinition as uf, SendFeedbackOptions as ug, ObjectDiff$1 as uh, RegionWithIntersectionDetails as ui, WithReferringDocuments as ul, FieldChange as um, ObjectInputMemberProps as un, HistoryStore as uo, DocumentActionCustomDialogComponentProps as up, ArrayOfObjectsInput as ur, ArrayFieldProps as us, ScheduledPublishingPluginOptions as ut, HotkeysProps$1 as uu, ToolLink as uv, documentIdEquals as uw, UserListWithPermissionsHookValue as ux, useColorScheme as uy, ConfigResolutionError as v, useIsReleaseActive as vC, DocumentRebaseTelemetryEvent as vS, UpsellDialogViewedInfo as v_, useDocumentPairPermissionsFromHookFactory as va, CommentsType as vb, UploadOptions as vc, ComputeDiff as vd, PartialExcept as vf, StudioFeedbackDialog as vg, getValueError as vh, useAgentVersionDisplay as vi, ToastParams$1 as vl, DiffInspectWrapper as vm, ArrayOfObjectsItem as vn, Timeline as vo, DuplicateDocumentActionComponent as vp, FieldActionsResolver as vr, PrimitiveFieldProps as vs, Workspace as vt, DocumentStatus as vu, NavbarProps as vv, isDraftId as vw, useTools as vx, useAddonDataset as vy, AppsOptions as w, createDocumentPreviewStore as wC, getPairListener as wS, isValidAnnouncementAudience as w_, useResolveInitialValueForType as wa, useValidationStatus as wb, StudioReferenceInputProps as wc, ObjectArrayFormNode as wd, globalScope as wf, StudioFeedbackProvider as wg, CreateLiveDocumentEvent as wh, useGlobalPresence as wi, useRovingFocus as wl, DiffErrorBoundaryProps as wm, UrlInput as wn, DocumentVersionEvent as wo, useGetDefaultPerspective as wp, FormValueContextValue as wr, BooleanInputProps as ws, ReleaseActionDescription as wt, RELEASES_STUDIO_CLIENT_OPTIONS as wu, SearchButton as wv, removeDupes as ww, isBuilder as wx, matchWorkspace as wy, ConfigPropertyErrorOptions as x, DocumentPreviewStore as xC, LatencyReportEvent as xS, NavbarContextValue as x_, Grant as xa, CommentsAuthoringPathContextValue as xb, UploaderDef as xc, NodeChronologyProps as xd, isRecord as xf, FeedbackDialogProps as xg, useEvents as xh, ResourceCacheProvider as xi, TextWithToneProps as xl, DiffFromToProps as xm, ArrayOfObjectsInputMembersProps as xn, DocumentRemoteMutationVersionEvent as xo, EditScheduleForm as xp, FieldActionMenuProps as xr, ArrayOfPrimitivesElementType as xs, WorkspaceOptions as xt, isDraftPerspective as xu, ToolMenuProps as xv, isSystemBundleName as xw, useTemplates as xx, useActiveWorkspace as xy, ConfigResolutionErrorOptions as y, useDocumentVersionTypeSortedList as yC, DocumentStoreExtraOptions as yS, StudioProvider as y_, DocumentValuePermission as ya, CommentsUIMode as yb, UploadProgressEvent as yc, DocumentFormNode as yd, isTruthy as yf, StudioFeedbackDialogProps as yg, useEventsStore as yh, isAgentBundleName as yi, TooltipOfDisabled as yl, DiffInspectWrapperProps as ym, MemberItemProps as yn, TimelineOptions as yo, isSanityDefinedAction as yp, FieldActionsProvider as yr, StringFieldProps as ys, WorkspaceHiddenContext as yt, formatRelativeLocalePublishDate as yu, StudioComponents as yv, isPublishedId as yw, TimeAgoOpts as yx, AddonDatasetContextValue as yy, DocumentActionsVersionType as z, PreviewPath as zC, SnapshotEvent as zS, ManifestWorkspaceInput as z_, InitialValueOptions as za, useI18nText as zb, EditReferenceOptions as zc, ProvenanceDiffAnnotation as zd, TasksUpsellContextValue as zf, buildRangeDecorationSelectionsFromComments as zg, isCreateLiveDocumentEvent as zh, createProjectStore as zi, MediaPreview as zl, getAnnotationAtPath as zm, PortableTextInput as zn, unstable_useValuePreview as zo, normalizePathSegment as zp, FormFieldValidationStatus as zr, RenderArrayOfObjectsItemCallback as zs, DocumentFieldActionGroup as zt, RELEASES_INTENT as zu, SearchOperatorBase as zv, BetaBadge as zw, SyncState as zx, WorkspaceLike as zy };
16464
+ export { MissingConfigFile as $, SelectedPerspective as $C, ChangeIndicatorTrackerContextValue as $S, FormIncPatch as $_, Operation as $a, LocaleResourceKey as $b, SANITY_PATCH_TYPE as $c, LoadedState as $d, SchedulesContext as $f, CommentInput as $g, useUserColorManager as $h, UserSessionPair as $i, PreviewProps as $l, DiffComponent as $m, CrossDatasetReferencePreview as $n, isObjectItemProps as $o, ValueError as $p, FieldPresence as $r, BlockDecoratorProps as $s, decodePath as $t, UseFormStateOptions as $u, SearchSort as $v, isAuthStore as $w, useManageFavorite as $x, CommentDocument as $y, ComposableOption as A, DraftsModelDocument as AC, WelcomeBackEvent as AS, StudioProps as A_, DocumentTypeResolveState as Aa, defaultLocale as Ab, FormBuilderProps as Ac, DuplicateKeysError as Ad, LoadingTuple as Af, ScrollContainerProps as Ag, EventsStore as Ah, useGrantsStore as Ai, LinearProgress as Al, ChangesError as Am, TagsArrayInput as An, BufferedDocumentEvent as Ao, FIXME as Ap, FormCell as Ar, ObjectInputProps as As, DocumentInspectorMenuItem as At, PUBLISHED as Au, SearchFilterDefinition as Av, CommandList as Aw, prepareTemplates as Ax, validateNames as Ay, DocumentBadgesContext as B, Previewable as BC, useDialogStack as BS, StudioManifest as B_, getInitialValueStream as Ba, defineLocale as Bb, ReferenceInputOptions as Bc, ALL_FIELDS_GROUP as Bd, TasksContextValue as Bf, buildCommentRangeDecorations as Bg, isDeleteDocumentGroupEvent as Bh, ProjectData as Bi, MediaPreviewProps as Bl, getAnnotationColor as Bm, PortableTextMemberItem as Bn, useValuePreview as Bo, pathToString as Bp, FormFieldValidationStatusProps as Br, RenderArrayOfPrimitivesItemCallback as Bs, DocumentFieldActionHook as Bt, DEFAULT_ANNOTATIONS as Bu, SearchOperatorBuilder as Bv, BetaBadgeProps as Bw, useSyncState as Bx, ActiveWorkspaceMatcher as By, ActionComponent as C, ObserveForPreviewFn as CC, MutationPerformanceEvent as CS, StudioLayoutComponent as C_, PermissionCheckResult as Ca, useWorkspaceSchemaId as Cb, StudioReferenceInput as Cc, NumberFormNode as Cd, isArray as Cf, ConsentStatus as Cg, CreateDocumentVersionEvent as Ch, useResourceCache as Ci, StatusButtonProps as Cl, DiffErrorBoundary as Cm, ArrayOfObjectsMemberProps as Cn, DocumentVersion as Co, usePerspective as Cp, useGetFormValue as Cr, BaseInputProps as Cs, ReleaseActionComponent as Ct, isReleaseScheduledOrScheduling as Cu, SearchDialog as Cv, newDraftFrom as Cw, Serializeable as Cx, MatchWorkspaceResult as Cy, AsyncConfigPropertyReducer as D, AvailabilityResponse as DC, PendingMutationsEvent as DS, StudioAnnouncementsContextValue as D_, selectUpstreamVersion as Da, Translate as Db, FormProvider as Dc, PrimitiveFormNode as Dd, formatRelativeLocale as Df, ScrollContextValue as Dg, DocumentGroupEvent as Dh, useConnectionStatusStore as Di, Resizable as Dl, DiffCardProps as Dm, TextInputProps as Dn, RemoteSnapshotVersionEvent as Do, ReleasesNav as Dp, DivergencesProvider as Dr, InputOnSelectFileFunctionProps as Ds, FormComponents as Dt, getReleaseTone as Du, useSearchState as Dv, DocumentVariantType as Dw, resolveInitialValueForType as Dx, WorkspacesContextValue as Dy, AsyncComposableOption as E, AvailabilityReason as EC, MutationEvent as ES, StudioAnnouncementsDialog as E_, useInitialValueResolverContext as Ea, validateDocument as Eb, StudioCrossDatasetReferenceInputProps as Ec, ObjectRenderMembersCallback as Ed, getErrorMessage as Ef, isProd as Eg, DeleteDocumentVersionEvent as Eh, useComlinkStore as Ei, RovingFocusProps as El, DiffCard as Em, TextInput as En, Pair as Eo, PerspectiveProvider as Ep, useFormValue as Er, EditorChange as Es, ReleaseActionsContext as Et, isGoingToUnpublish as Eu, useSearchMaxFieldDepth as Ev, Chip as Ew, resolveInitialValue as Ex, WorkspacesProviderProps as Ey, DecisionParametersConfig as F, ObserveDocumentAvailabilityFn as FC, DocumentRebaseEvent as FS, uploadSchema as F_, createDocumentStore as Fa, useCurrentLocale as Fb, defaultRenderInput as Fc, MixedArrayError as Fd, buildLegacyTheme as Ff, AutoCollapseMenu as Fg, UnpublishDocumentEvent as Fh, useRenderingContextStore as Fi, InlinePreviewProps as Fl, ChangeBreadcrumb as Fm, SelectInput as Fn, prepareForPreview as Fo, isEmptyObject as Fp, FormFieldValidation as Fr, PrimitiveInputElementProps as Fs, documentFieldActionsReducer as Ft, useActiveReleases as Fu, I18nSearchOperatorDescriptionKey as Fv, CommandListHandle as Fw, TemplateItem as Fx, VisibleWorkspacesContextValue as Fy, DocumentLanguageFilterComponent as G, ReleaseTitle as GC, useConnectionState as GS, CopyOptions as G_, InitialValueSuccessMsg as Ga, LocaleProviderBase as Gb, FormCallbacksValue as Gc, SANITY_VERSION as Gd, DEFAULT_STUDIO_CLIENT_OPTIONS as Gf, CommentsEnabledContextValue as Gg, isUnpublishDocumentEvent as Gh, PresenceStore as Gi, CompactPreview as Gl, ArrayDiff$1 as Gm, ImageUrlBuilder$1 as Gn, PreviewLoader as Go, emptyValuesByType as Gp, FormFieldHeaderText as Gr, RenderPreviewCallback as Gs, DocumentFieldActionTone as Gt, DivergenceNavigator as Gu, ValuelessSearchOperatorBuilder as Gv, ConnectingStatus as Gw, useRelativeTime as Gx, CommentsSelectedPathProvider as Gy, DocumentCommentsEnabledContext as H, Selection as HC, useDateTimeFormat as HS, CopyPasteProvider as H_, InitialValueLoadingMsg as Ha, defineLocalesResources as Hb, TemplateOption as Hc, getDocumentIdForCanvasLink as Hd, MentionUserContextValue as Hf, useCommentsSelectedPath as Hg, isEditDocumentVersionEvent as Hh, ProjectGrants as Hi, DetailPreviewProps as Hl, visitDiff as Hm, ObjectInput as Hn, useUnstableObserveDocument as Ho, stringToPath as Hp, FormFieldStatus as Hr, RenderFieldCallback as Hs, DocumentFieldActionNode as Ht, ReleaseDocument$1 as Hu, SearchOperatorInput as Hv, CorsOriginErrorOptions as Hw, useSchema as Hx, RouterHistory as Hy, DefaultPluginsWorkspaceOptions as I, ObserveDocumentTypeFromIdFn as IC, DocumentRemoteMutationEvent as IS, LiveManifestRegisterProvider as I_, ListenQueryOptions as Ia, useLocale as Ib, defaultRenderItem as Ic, TypeAnnotationMismatchError as Id, LegacyThemeProps as If, CollapseMenu as Ig, UnscheduleDocumentVersionEvent as Ih, useUserStore as Ii, BlockPreview as Il, useAnnotationColor as Im, ReferenceAutocomplete as In, getPreviewValueWithFallback as Io, normalizeIndexSegment as Ip, FormFieldValidationError as Ir, PrimitiveInputProps as Is, defineDocumentFieldAction as It, VersionInfoDocumentStub as Iu, I18nSearchOperatorNameKey as Iv, CommandListItemContext as Iw, TemplateParameter as Ix, VisibleWorkspacesProvider as Iy, DocumentLayoutProps as J, VersionChip as JC, CommentDisabledIcon as JS, PasteOptions as J_, OperationError as Ja, LocaleConfigContext as Jb, PatchChannel as Jc, useUnique as Jd, usePausedScheduledDraft as Jf, hasCommentMessageValue as Jg, UserColorManagerProvider as Jh, DocumentPresence as Ji, GeneralPreviewLayoutKey as Jl, ChangeNode as Jm, getCalendarLabels as Jn, isArrayOfObjectsInputProps as Jo, isGroupChange as Jp, FormFieldProps as Jr, ItemProps as Js, AuthConfig as Jt, ExpandOperation as Ju, createSearch as Jv, ConnectionStatusStoreOptions as Jw, useReconnectingToast as Jx, CommentsEnabledProvider as Jy, DocumentLanguageFilterContext as K, ReleaseAvatar as KC, useConditionalToast as KS, CopyPasteContextType as K_, validation$1 as Ka, ImplicitLocaleResourceBundle as Kb, useFormCallbacks as Kc, measureFirstEmission as Kd, useScheduledDraftsEnabled as Kf, useComments as Kg, isUnscheduleDocumentVersionEvent as Kh, SESSION_ID as Ki, CompactPreviewProps as Kl, ArrayItemMetadata as Km, EmailInput as Kn, Preview as Ko, isAddedItemDiff as Kp, FormFieldHeaderTextProps as Kr, RenderPreviewCallbackProps as Ks, DocumentFieldActionsResolver as Kt, useDivergenceNavigator as Ku, ValuelessSearchOperatorParams as Kv, ConnectionStatus as Kw, DocumentField as Kx, CommentsIntentProvider as Ky, DocumentActionsContext as L, ObservePathsFn as LC, MutationPayload as LS, GenerateStudioManifestOptions as L_, ListenQueryParams as La, useGetI18nText as Lb, defaultRenderPreview as Lc, UndeclaredMembersError as Ld, LegacyThemeTints as Lf, CollapseMenuProps as Lg, UpdateLiveDocumentEvent as Lh, useProjectDatasets as Li, BlockImagePreview as Ll, useDiffAnnotationColor as Lm, CreateButton as Ln, getPreviewStateObservable as Lo, normalizeIndexTupleSegment as Lp, FormFieldValidationInfo as Lr, StringInputProps as Ls, DocumentFieldAction as Lt, isReleaseDocument as Lu, OperatorButtonValueComponentProps as Lv, CommandListProps as Lw, TemplateReferenceTarget as Lx, getNamelessWorkspaceIdentifier as Ly, ConfigContext$1 as M, FieldName as MC, CommitFunction as MS, SourceProviderProps as M_, DocumentStore as Ma, UseTranslationOptions as Mb, defaultRenderBlock as Mc, IncompatibleTypeError as Md, createHookFromObservableFactory as Mf, CollapseMenuButton as Mg, HistoryClearedEvent as Mh, useKeyValueStore as Mi, TemplatePreview as Ml, ChangeResolverProps as Mm, StringInput as Mn, createBufferedDocument as Mo, getItemKey as Mp, FormInput as Mr, OnPathFocusPayload as Ms, DocumentInspectorUseMenuItemProps as Mt, ReleasesUpsellContextValue as Mu, defineSearchFilterOperators as Mv, CommandListGetItemDisabledCallback as Mw, Template as Mx, useWorkspaces as My, ConfigPropertyReducer as N, Id as NC, CommittedEvent as NS, useSource as N_, DocumentStoreOptions as Na, UseTranslationResponse as Nb, defaultRenderField as Nc, InvalidItemTypeError as Nd, catchWithCount as Nf, CollapseMenuButtonProps as Ng, PublishDocumentVersionEvent as Nh, usePresenceStore as Ni, TemplatePreviewProps as Nl, ChangeList as Nm, SlugInput as Nn, CommitRequest as No, getItemKeySegment as Np, FormInputAbsolutePathArg as Nr, PasteData$1 as Ns, defineDocumentInspector as Nt, useDocumentVersionInfo as Nu, SearchOperatorType as Nv, CommandListGetItemKeyCallback as Nw, TemplateArrayFieldDefinition as Nx, evaluateWorkspaceHidden as Ny, BaseActionDescription as O, DocumentAvailability as OC, ReconnectEvent as OS, StudioAnnouncementsCard as O_, isNewDocument as Oa, TranslateComponentMap as Ob, FormProviderProps as Oc, StringFormNode as Od, EMPTY_ARRAY as Of, ScrollEventHandler as Og, DocumentVersionEventType as Oh, useDocumentPreviewStore as Oi, RelativeTime as Ol, TIMELINE_ITEM_I18N_KEY_MAPPING as Om, TelephoneInput as On, WithVersion as Oo, PerspectiveNotWriteableReason as Op, useDocumentDivergences as Or, InputProps as Os, DocumentInspector as Ot, getReleaseIdFromReleaseDocumentId as Ou, SearchProvider as Ov, getDocumentVariantType as Ow, defaultTemplateForType as Ox, ValidateWorkspaceOptions as Oy, DECISION_PARAMETERS_SCHEMA as P, InvalidationChannelEvent as PC, DocumentMutationEvent as PS, renderStudio as P_, QueryParams$1 as Pa, useTranslation as Pb, defaultRenderInlineBlock as Pc, MissingKeysError as Pd, defaultTheme as Pf, CommonProps as Pg, ScheduleDocumentVersionEvent as Ph, useProjectStore as Pi, InlinePreview as Pl, ChangeListProps as Pm, SlugInputProps as Pn, createObservableBufferedDocument as Po, getValueAtPath as Pp, FormInputRelativePathArg as Pr, PortableTextInputProps as Ps, initialDocumentFieldActions as Pt, useArchivedReleases as Pu, operatorDefinitions as Pv, CommandListGetItemSelectedCallback as Pw, TemplateFieldDefinition as Px, useVisibleWorkspaces as Py, MediaLibraryConfig as Q, ReleasesNavMenuItemPropsGetter as QC, useChangeIndicatorsReporter as QS, FormDiffMatchPatch as Q_, MapDocument as Qa, LocaleResourceBundle as Qb, createPatchChannel as Qc, LoadableState as Qd, createSchema as Qf, CommentInputContextValue as Qg, useUserColor as Qh, Status as Qi, PreviewMediaDimensions as Ql, Diff$1 as Qm, DateInputProps as Qn, isObjectInputProps as Qo, DocumentChangeContextInstance as Qp, PresenceOverlayProps as Qr, BlockAnnotationProps as Qs, TransformPatches as Qt, FormState as Qu, SearchOptions as Qv, onRetry as Qw, UseManageFavoriteProps as Qx, CommentCreatePayload as Qy, DocumentActionsResolver as R, PreparedSnapshot as RC, RemoteSnapshotEvent as RS, generateStudioManifest as R_, listenQuery as Ra, I18nNode as Rb, EditReferenceLinkComponentProps as Rc, FormFieldGroup as Rd, useDocumentPreviewValues as Rf, buildTextSelectionFromFragment as Rg, isCreateDocumentVersionEvent as Rh, useProject as Ri, BlockImagePreviewProps as Rl, DiffVisitor as Rm, CreateReferenceOption as Rn, getPreviewPaths as Ro, normalizeKeySegment as Rp, FormFieldValidationWarning as Rr, RenderAnnotationCallback as Rs, DocumentFieldActionDivider as Rt, MetadataWrapper as Ru, OperatorInputComponentProps as Rv, CommandListRenderItemCallback as Rw, TypeTarget as Rx, getWorkspaceIdentifier as Ry, useMiddlewareComponents as S, DocumentPreviewStoreOptions as SC, ListenerEvent as SS, StudioLayout as S_, GrantsStore as Sa, CommentsAuthoringPathProvider as Sb, UploaderResolver as Sc, NodeDiffProps as Sd, isNonNullable as Sf, useTelemetryConsent as Sg, BaseEvent as Sh, ResourceCacheProviderProps as Si, StatusButton as Sl, FieldPreviewComponent as Sm, ArrayOfObjectsInputMember as Sn, Transaction as So, useSetPerspective as Sp, GetFormValueProvider as Sr, ArrayOfPrimitivesInputProps as Ss, WorkspaceSummary as St, isPublishedPerspective as Su, StudioLogo as Sv, isVersionId as Sw, DEFAULT_MAX_RECURSION_DEPTH as Sx, MatchWorkspaceOptions as Sy, AssetSourceResolver as T, ApiConfig as TC, IdPair as TS, isValidAnnouncementRole as T_, useInitialValue as Ta, ValidateDocumentOptions as Tb, StudioCrossDatasetReferenceInput as Tc, ObjectFormNode as Td, getReferencePaths as Tf, isDev as Tg, DeleteDocumentGroupEvent as Th, useDocumentPresence as Ti, RovingFocusNavigationType as Tl, DiffErrorBoundaryState as Tm, UrlInputProps as Tn, MutationResult as To, useExcludedPerspective as Tp, FormValueProvider as Tr, ComplexElementProps as Ts, ReleaseActionProps as Tt, isReleasePerspective as Tu, PartialIndexSettings as Tv, systemBundles as Tw, resolveInitialObjectValue as Tx, WorkspacesProvider as Ty, DocumentInspectorContext as U, VersionInlineBadge as UC, useDataset as US, useCopyPaste as U_, InitialValueMsg as Ua, removeUndefinedLocaleResources as Ub, useReferenceInputOptions as Uc, useNavigateToCanvasDoc as Ud, IsLastPaneProvider as Uf, CommentsOnboardingContextValue as Ug, isPublishDocumentVersionEvent as Uh, ProjectOrganizationData as Ui, DefaultPreview as Ul, Annotation as Um, NumberInput as Un, SanityDefaultPreview as Uo, resolveDiffComponent as Up, FormFieldSet as Ur, RenderInputCallback as Us, DocumentFieldActionProps as Ut, isDocumentLimitError as Uu, SearchOperatorParams as Uv, CONNECTING as Uw, useReviewChanges as Ux, CommentsSelectedPath as Uy, DocumentBadgesResolver as V, PreviewableType as VC, UseDateTimeFormatOptions as VS, StudioWorkspaceManifest as V_, InitialValueErrorMsg as Va, defineLocaleResourceBundle as Vb, ReferenceInputOptionsProvider as Vc, resolveConditionalProperty as Vd, TasksNavigationContextValue as Vf, useCommentsTelemetry as Vg, isDeleteDocumentVersionEvent as Vh, ProjectDatasetData as Vi, DetailPreview as Vl, getDiffAtPath as Vm, UpdateReadOnlyPlugin as Vn, unstable_useObserveDocument as Vo, pathsAreEqual as Vp, FieldStatusProps as Vr, RenderBlockCallback as Vs, DocumentFieldActionItem as Vt, DEFAULT_DECORATORS as Vu, SearchOperatorButtonValue as Vv, CorsOriginError as Vw, useStudioUrl as Vx, ActiveWorkspaceMatcherProps as Vy, DocumentInspectorsResolver as W, getVersionInlineBadge as WC, ConnectionState as WS, BaseOptions as W_, InitialValueState as Wa, LocaleProvider as Wb, FormCallbacksProvider as Wc, useCanvasCompanionDoc as Wd, TasksEnabledContextValue as Wf, useCommentsEnabled as Wg, isScheduleDocumentVersionEvent as Wh, ProjectStore as Wi, DefaultPreviewProps as Wl, AnnotationDetails as Wm, AssetAccessPolicy as Wn, SanityDefaultPreviewProps as Wo, useDocumentChange as Wp, FormFieldSetProps as Wr, RenderItemCallback as Ws, DocumentFieldActionStatus as Wt, useDocumentLimitsUpsellContext as Wu, SearchValueFormatterContext as Wv, ConnectedStatus as Ww, RelativeTimeOptions as Wx, CommentsSelectedPathContextValue as Wy, FormBuilderComponentResolverContext as X, PerspectiveStack as XC, ChangeIndicatorsTracker as XS, PatchEvent as X_, emitOperation as Xa, LocaleNestedResource as Xb, PatchMsgSubscriber as Xc, userHasRole as Xd, useSingleDocRelease as Xf, COMMENTS_INSPECTOR_NAME as Xg, UserColorManagerOptions as Xh, PresenceLocation as Xi, PreviewComponent as Xl, Chunk as Xm, DateTimeInputProps as Xn, isBooleanInputProps as Xo, isUnchangedDiff as Xp, PresenceScopeProps as Xr, ObjectItemProps as Xs, CookielessCompatibleLoginMethod as Xt, SetActiveGroupOperation as Xu, getSearchableTypes as Xv, RetryingStatus as Xw, UseNumberFormatOptions as Xx, CommentBaseCreatePayload as Xy, DocumentPluginOptions as Y, PerspectiveContextValue as YC, CommentDeleteDialog as YS, SanityClipboardItem as Y_, OperationSuccess as Ya, LocaleDefinition as Yb, PatchMsg as Yc, useThrottledCallback as Yd, SingleDocReleaseProvider as Yf, isTextSelectionComment as Yg, UserColorManagerProviderProps as Yh, GlobalPresence as Yi, PortableTextPreviewLayoutKey as Yl, ChangeTitlePath as Ym, DateTimeInput as Yn, isArrayOfPrimitivesInputProps as Yo, isRemovedItemDiff as Yp, PresenceScope as Yr, ObjectItem as Ys, AuthProvider as Yt, ExpandPathOperation as Yu, isPerspectiveRaw as Yv, ErrorStatus as Yw, useProjectId as Yx, CommentsProvider as Yy, GroupableActionDescription as Z, ReleaseId as ZC, useChangeIndicatorsReportedValues as ZS, FormDecPatch as Z_, operationEvents as Za, LocalePluginOptions as Zb, RebasePatchMsg as Zc, ErrorState as Zd, getSchemaTypeTitle as Zf, CommentInlineHighlightSpan as Zg, createUserColorManager as Zh, Session as Zi, PreviewLayoutKey as Zl, ChunkType as Zm, DateInput as Zn, isNumberInputProps as Zo, noop as Zp, PresenceOverlay as Zr, PrimitiveItemProps as Zs, LoginMethod as Zt, getExpandOperations as Zu, SearchFactoryOptions as Zv, createConnectionStatusStore as Zw, useNumberFormat as Zx, CommentContext as Zy, createDefaultIcon as _, useOnlyHasVersions as _C, DocumentPairLoadedEvent as _S, EditPortal as _T, UpsellDialogViewed as __, useDocumentPairPermissions as _a, CommentsTextSelectionItem as _b, ResolvedUploader as _c, BooleanFormNode as _d, isPausedCardinalityOneRelease as _f, TagValue as _g, FieldValueError as _h, AgentVersionDisplay as _i, ImperativeToast as _l, DiffStringSegment as _m, PrimitiveMemberItemProps as _n, ParsedTimeRef as _o, DuplicateActionProps as _p, FieldActionsProps as _r, ObjectFieldProps as _s, Tool as _t, CapabilityGate as _u, NavbarAction as _v, isDraft as _w, useUnitFormatter as _x, StudioThemeColorSchemeKey as _y, resolveSchemaTypes as a, useTrackerStoreReporter as aC, FormattedDuration as aS, CreateAuthStoreOptions as aT, WorkspaceLoaderBoundary as a_, getTemplatePermissions as aa, CommentPath as ab, ArrayInputCopyEvent as ac, ArrayOfObjectsItemMember as ad, uncaughtErrorHandler as af, FeedbackContext as ag, FromToIndex as ah, FormNodePresence as ai, set as al, GroupChange as am, useDocumentForm as an, useTimelineSelector as ao, GetHookCollectionStateProps as ap, ArrayOfOptionsInput as ar, FormBuilderMarkersComponent as as, PluginOptions as at, LoadingBlock as au, FormPatchOrigin as av, SystemBundle as aw, StaticLocaleResourceBundle as ax, Filters as ay, ConfigPropertyError as b, useDocumentVersions as bC, InitialSnapshotEvent as bS, StudioProviderProps as b_, EvaluationParams as ba, Loadable as bb, Uploader as bc, HiddenField as bd, isString as bf, FeedbackDialog as bg, EventsProvider as bh, ResourceCache as bi, TextWithTone as bl, DiffFromTo as bm, ArrayOfObjectsInputMembers as bn, CombinedDocument as bo, SchedulesContextValue as bp, FieldActionMenu as br, ArrayOfObjectsInputProps as bs, WorkspaceHiddenProperty as bt, getDocumentIsInPerspective as bu, StudioComponentsPluginOptions as bv, isSystemBundle as bw, useTimeAgo as bx, AddonDatasetProvider as by, createWorkspaceFromConfig as c, ReporterHook as cC, useFilteredReleases as cS, AuthProbeResult as cT, ErrorMessageProps as c_, GrantsStoreOptions as ca, CommentReactionOption as cb, UploadEvent as cc, ArrayOfPrimitivesMember as cd, fieldNeedsEscape as cf, UseFeedbackReturn as cg, NullDiff$1 as ch, PresentUser as ci, ZIndexProvider as cl, FromTo as cm, ObjectMembersProps as cn, useTimelineStore as co, DocumentActionComponent as cp, VirtualizerScrollInstance as cr, RenderBlockActionsProps as cs, ResolveProductionUrlContext as ct, InsufficientPermissionsMessageProps as cu, FormUnsetPatch as cv, createDraftFrom as cw, StudioLocaleResourceKeys as cx, ColorSchemeProvider as cy, flattenConfig as d, ConnectorContextValue as dC, useDocumentOperationEvent as dS, HandleCallbackResult as dT, useWorkspace as d_, DocumentValuePermissionsOptions as da, CommentTaskCreatePayload as db, ImageInputProps as dc, FieldSetMember as dd, _isSanityDocumentTypeDefinition as df, UseInStudioFeedbackReturn as dg, ReferenceDiff as dh, ReportedRegionWithRect as di, AvatarSkeleton as dl, FallbackDiff as dm, MemberFieldSet as dn, HistoryStoreOptions as do, DocumentActionDescription as dp, ArrayOfObjectsFunctions as dr, ArrayOfPrimitivesFieldProps as ds, SchemaPluginOptions as dt, serializeError as du, ToolLinkProps as dv, getDraftId as dw, UserListWithPermissionsOptions as dx, useColorSchemeInternalValue as dy, TrackedArea as eC, UseListFormatOptions as eS, isCookielessCompatibleLoginMethod as eT, CommentInputHandle as e_, UserStore as ea, CommentFieldCreatePayload as eb, BlockListItemProps as ec, useFormState as ed, LoadingState as ef, HexColor as eg, DiffComponentOptions as eh, FieldPresenceInner as ei, dec as el, RevertChangesConfirmDialog as em, encodePath as en, OperationArgs as eo, ScheduledBadge as ep, BooleanInput as er, isStringInputProps as es, NewDocumentCreationContext as et, PreviewCard as eu, FormInsertPatch as ev, TargetPerspective as ew, LocaleResourceRecord as ex, SearchTerms as ey, PluginFactory as f, ChangeIndicator as fC, useDocumentOperation as fS, LoginComponentProps as fT, InterpolationProp as f_, getDocumentValuePermissions as fa, CommentTextSelection as fb, StudioImageInput as fc, FieldsetRenderMembersCallback as fd, _isType as ff, useInStudioFeedback as fg, StringDiff$1 as fh, Size as fi, UserAvatar as fl, Event$1 as fm, MemberFieldError as fn, createHistoryStore as fo, DocumentActionDialogProps as fp, useDidUpdate as fr, BaseFieldProps as fs, SingleWorkspace as ft, useCopyErrorDetails as fu, StudioToolMenu as fv, getIdPair as fw, UserWithPermission as fx, useColorSchemeOptions as fy, defineConfig as g, useVersionOperations as gC, editState$1 as gS, EnhancedObjectDialog as gT, UpsellDialogUpgradeCtaClicked as g_, getDocumentPairPermissions as ga, CommentsListBreadcrumbItem as gb, FileLike as gc, BaseFormNode as gd, isCardinalityOneRelease as gf, Sentiment as gg, TypeChangeDiff$1 as gh, useUser as gi, ZIndexContextValue as gl, DiffString as gm, ArrayOfPrimitivesItem as gn, TimelineControllerOptions as go, DocumentActionProps as gp, useFieldActions as gr, NumberFieldProps as gs, TemplateResolver as gt, DocumentStatusIndicator as gu, LogoProps as gv, idMatchesPerspective as gw, UseUnitFormatterOptions as gx, StudioTheme as gy, createConfig as h, sortReleases as hC, EditStateFor as hS, KeyValueStoreValue as hT, UpsellDialogLearnMoreCtaClicked as h_, DocumentPermission as ha, CommentUpdatePayload as hb, AssetSourcesResolver as hc, ArrayOfPrimitivesFormNode as hd, isCardinalityOnePerspective as hf, FeedbackPayload as hg, StringSegmentUnchanged$1 as hh, useCurrentUser as hi, ZIndexContextValueKey as hl, DiffTooltipWithAnnotationsProps as hm, MemberItemError as hn, TimelineController as ho, DocumentActionPopoverDialogProps as hp, HoveredFieldProvider as hr, FieldProps as hs, SourceOptions as ht, ErrorActionsProps as hu, LayoutProps as hv, getVersionId as hw, UnitFormatter as hx, StudioColorScheme as hy, SchemaError as i, useTrackerStore as iC, FormDocumentValue as iS, AuthStoreOptions as iT, UpsellData as i_, TemplatePermissionsResult as ia, CommentOperations as ib, PortableTextPluginsProps as ic, FieldsetState as id, truncateString as if, UserId as ig, FieldOperationsAPI as ih, FieldPresenceData as ii, prefixPath as il, MetaInfoProps as im, useFormBuilder as in, snapshotPair as io, GetHookCollectionState as ip, ArrayOfPrimitiveOptionsInput as ir, FormBuilderInputComponentMap as is, Plugin as it, PopoverDialog as iu, FormPatchJSONValue as iv, PublishedId as iw, LocalesOption as ix, SearchHeader as iy, Config as j, DraftsModelDocumentAvailability as jC, WelcomeEvent as jS, SourceProvider as j_, useDocumentType as ja, usEnglishLocale as jb, defaultRenderAnnotation as jc, FieldError as jd, ReactHook as jf, useOnScroll as jg, EventsStoreRevision as jh, useHistoryStore as ji, CircularProgress as jl, ChangeResolver as jm, TagsArrayInputProps as jn, BufferedDocumentWrapper as jo, findIndex as jp, FormRow as jr, OnPasteFn as js, DocumentInspectorProps as jt, useReleasesIds as ju, defineSearchFilter as jv, CommandListElementType as jw, InitialValueTemplateItem as jx, validateWorkspaces as jy, BetaFeatures as k, DocumentStackAvailability as kC, ResetEvent as kS, Studio as k_, useDocumentValues as ka, TranslationProps as kb, FormBuilder as kc, ArrayItemError as kd, EMPTY_OBJECT as kf, ScrollContainer as kg, EditDocumentVersionEvent as kh, useDocumentStore as ki, RelativeTimeProps as kl, ChangeTitleSegment as km, TelephoneInputProps as kn, checkoutPair as ko, isPerspectiveWriteable as kp, FormContainer as kr, NumberInputProps as ks, DocumentInspectorComponent as kt, LATEST as ku, SearchContextValue as kv, ContextMenuButton as kw, defaultTemplatesForSchema as kx, validateBasePaths as ky, resolveConfig as l, ChangeConnectorRoot as lC, useFeatureEnabled as lS, AuthState as lT, WorkspaceProvider as l_, createGrantsStore as la, CommentReactionShortNames as lb, EnhancedObjectDialogContextValue as lc, DecorationMember as ld, joinPath as lf, useFeedback as lg, NumberDiff$1 as lh, Rect as li, useZIndex as ll, FromToProps as lm, ObjectInputMember as ln, DocumentRevision as lo, DocumentActionConfirmDialogProps as lp, useVirtualizerScrollInstance as lr, RenderCustomMarkers as ls, SanityFormConfig as lt, Hotkeys as lu, PatchArg as lv, createPublishedFrom as lw, Rule as lx, ColorSchemeProviderProps as ly, definePlugin as m, ChangeFieldWrapper as mC, useDocumentIdStack as mS, KeyValueStore as mT, UpsellDialogDismissed as m_, DocumentPairPermissionsOptions as ma, CommentUpdateOperationOptions as mb, StudioFileInput as mc, ArrayOfObjectsFormNode as md, CardinalityOneRelease as mf, DynamicFeedbackTags as mg, StringSegmentChanged$1 as mh, DocumentPreviewPresenceProps as mi, LegacyLayerProvider as ml, DiffTooltipProps as mm, MemberFieldProps as mn, SelectionState as mo, DocumentActionModalDialogProps as mp, useHoveredField as mr, FieldCommentsProps as ms, SourceClientOptions as mt, ErrorActions as mu, ActiveToolLayoutProps as mv, getVersionFromId as mw, FormattableMeasurementUnit as mx, useColorSchemeValue as my, getConfigContextFromSource as n, TrackerContextGetSnapshot as nC, GlobalCopyPasteElementHandler as nS, MockAuthStoreOptions as nT, CommentsList as n_, createUserStore as na, CommentListBreadcrumbs as nb, BlockStyleProps as nc, StateTree as nd, useLoadable as nf, UserColorHue as ng, DiffProps as nh, FieldPresenceProps as ni, inc as nl, NoChanges as nm, fromMutationPatches as nn, OperationsAPI as no, DocumentBadgeDescription as np, ArrayOfPrimitivesInput as nr, FormBuilderCustomMarkersComponent as ns, NewDocumentOptionsResolver as nt, ReferenceInputPreviewCard as nu, FormPatch as nv, DRAFTS_FOLDER as nw, LocaleWeekInfo as nx, SearchPopover as ny, CreateWorkspaceFromConfigOptions as o, IsEqualFunction as oC, UseFormattedDurationOptions as oS, _createAuthStore as oT, useWorkspaceLoader as o_, useTemplatePermissions as oa, CommentPostPayload as ob, ArrayInputInsertEvent as oc, ArrayOfObjectsMember as od, supportsTouch as of, FeedbackContextValue as og, GroupChangeNode as oh, Location as oi, setIfMissing as ol, FromToArrow as om, ObjectInputMembers as on, TimelineState as oo, HookCollectionActionHook as op, ArrayOfObjectOptionsInput as or, PortableTextMarker as os, PreparedConfig as ot, IntentButton as ou, FormSetIfMissingPatch as ov, VERSION_FOLDER as ow, TFunction$1 as ox, ColorSchemeCustomProvider as oy, createPlugin as p, ChangeIndicatorProps as pC, DocumentIdStack as pS, createKeyValueStore as pT, UpsellDescriptionSerializer as p_, useDocumentValuePermissions as pa, CommentThreadItem as pb, FileInputProps as pc, ObjectMember as pd, createSWR as pf, BaseFeedbackTags as pg, StringDiffSegment as ph, DocumentPreviewPresence as pi, UserAvatarProps as pl, DiffTooltip as pm, MemberField as pn, removeMissingReferences as po, DocumentActionGroup as pp, FormBuilderContextValue as pr, BooleanFieldProps as ps, Source as pt, ErrorWithId as pu, StudioNavbar as pv, getPublishedId as pw, useUserListWithPermissions as px, useColorSchemeSetValue as py, DocumentLanguageFilterResolver as q, ReleaseAvatarIcon as qC, useClient as qS, DocumentMeta as q_, remoteSnapshots as qa, Locale as qb, MutationPatchMsg as qc, measureFirstMatch as qd, useScheduledDraftDocument as qf, CommentsContextValue as qg, isUpdateLiveDocumentEvent as qh, createPresenceStore as qi, GeneralDocumentListLayoutKey as ql, BooleanDiff$1 as qm, EmailInputProps as qn, isArrayOfBlocksInputProps as qo, isFieldChange as qp, FormField as qr, BaseItemProps as qs, DocumentFieldActionsResolverContext as qt, ExpandFieldSetOperation as qu, defineSearchOperator as qv, ConnectionStatusStore as qw, useReferringDocuments as qx, CommentsIntentProviderProps as qy, useConfigContextFromSource as r, TrackerContextStore as rC, useGlobalCopyPasteElementHandler as rS, createMockAuthStore as rT, CommentsUpsellContextValue as r_, TemplatePermissionsOptions as ra, CommentMessage as rb, MarkdownConfig as rc, FieldsetMembers as rd, sliceString as rf, UserColorManager as rg, FieldChangeNode as rh, FieldPresenceWithOverlay as ri, insert as rl, MetaInfo as rm, toMutationPatches as rn, DocumentVersionSnapshots as ro, DocumentBadgeProps as rp, ArrayOfPrimitivesFunctions as rr, FormBuilderFilterFieldFn as rs, PartialContext as rt, usePreviewCard as ru, FormPatchBase as rv, DraftId as rw, LocalesBundlesOption as rx, SearchPopoverProps as ry, createSourceFromConfig as s, Reported as sC, useFormattedDuration as sS, createAuthStore as sT, ErrorMessage as s_, useTemplatePermissionsFromHookFactory as sa, CommentReactionItem as sb, ArrayInputMoveItemEvent as sc, ArrayOfPrimitivesItemMember as sd, escapeField as sf, useStudioFeedbackTags as sg, ItemDiff$1 as sh, Position as si, unset as sl, FromToArrowDirection as sm, ObjectMembers as sn, TimelineStore as so, useScheduleAction as sp, VirtualizerScrollInstanceProvider as sr, RenderBlockActionsCallback as ss, ReleaseActionsResolver as st, InsufficientPermissionsMessage as su, FormSetPatch as sv, collate as sw, ValidationLocaleResourceKeys as sx, ColorSchemeLocalStorageProvider as sy, ActiveWorkspaceMatcherContextValue as t, TrackedChange as tC, useListFormat as tS, getProviderTitle as tT, CommentInputProps as t_, UserStoreOptions as ta, CommentIntentGetter as tb, BlockProps as tc, setAtPath as td, asLoadable as tf, UserColor as tg, DiffComponentResolver as th, FieldPresenceInnerProps as ti, diffMatchPatch as tl, RevertChangesButton as tm, MutationPatch as tn, OperationImpl as to, DocumentBadgeComponent as tp, UniversalArrayInput as tr, ArrayInputFunctionsProps as ts, NewDocumentOptionsContext as tt, PreviewCardContextValue as tu, FormInsertPatchPosition as tv, CollatedHit as tw, LocaleSource as tx, SearchResultItemPreview as ty, prepareConfig as u, ChangeConnectorRootProps as uC, useEditState as uS, AuthStore as uT, WorkspaceProviderProps as u_, grantsPermissionOn as ua, CommentStatus as ub, useEnhancedObjectDialog as uc, FieldMember as ud, _isCustomDocumentTypeDefinition as uf, SendFeedbackOptions as ug, ObjectDiff$1 as uh, RegionWithIntersectionDetails as ui, WithReferringDocuments as ul, FieldChange as um, ObjectInputMemberProps as un, HistoryStore as uo, DocumentActionCustomDialogComponentProps as up, ArrayOfObjectsInput as ur, ArrayFieldProps as us, ScheduledPublishingPluginOptions as ut, HotkeysProps$1 as uu, ToolLink as uv, documentIdEquals as uw, UserListWithPermissionsHookValue as ux, useColorScheme as uy, ConfigResolutionError as v, useIsReleaseActive as vC, DocumentRebaseTelemetryEvent as vS, createSanityMediaLibraryFileSource as vT, UpsellDialogViewedInfo as v_, useDocumentPairPermissionsFromHookFactory as va, CommentsType as vb, UploadOptions as vc, ComputeDiff as vd, PartialExcept as vf, StudioFeedbackDialog as vg, getValueError as vh, useAgentVersionDisplay as vi, ToastParams$1 as vl, DiffInspectWrapper as vm, ArrayOfObjectsItem as vn, Timeline as vo, DuplicateDocumentActionComponent as vp, FieldActionsResolver as vr, PrimitiveFieldProps as vs, Workspace as vt, DocumentStatus as vu, NavbarProps as vv, isDraftId as vw, useTools as vx, useAddonDataset as vy, AppsOptions as w, createDocumentPreviewStore as wC, getPairListener as wS, isValidAnnouncementAudience as w_, useResolveInitialValueForType as wa, useValidationStatus as wb, StudioReferenceInputProps as wc, ObjectArrayFormNode as wd, globalScope as wf, StudioFeedbackProvider as wg, CreateLiveDocumentEvent as wh, useGlobalPresence as wi, useRovingFocus as wl, DiffErrorBoundaryProps as wm, UrlInput as wn, DocumentVersionEvent as wo, useGetDefaultPerspective as wp, FormValueContextValue as wr, BooleanInputProps as ws, ReleaseActionDescription as wt, RELEASES_STUDIO_CLIENT_OPTIONS as wu, SearchButton as wv, removeDupes as ww, isBuilder as wx, matchWorkspace as wy, ConfigPropertyErrorOptions as x, DocumentPreviewStore as xC, LatencyReportEvent as xS, NavbarContextValue as x_, Grant as xa, CommentsAuthoringPathContextValue as xb, UploaderDef as xc, NodeChronologyProps as xd, isRecord as xf, FeedbackDialogProps as xg, useEvents as xh, ResourceCacheProvider as xi, TextWithToneProps as xl, DiffFromToProps as xm, ArrayOfObjectsInputMembersProps as xn, DocumentRemoteMutationVersionEvent as xo, EditScheduleForm as xp, FieldActionMenuProps as xr, ArrayOfPrimitivesElementType as xs, WorkspaceOptions as xt, isDraftPerspective as xu, ToolMenuProps as xv, isSystemBundleName as xw, useTemplates as xx, useActiveWorkspace as xy, ConfigResolutionErrorOptions as y, useDocumentVersionTypeSortedList as yC, DocumentStoreExtraOptions as yS, createSanityMediaLibraryImageSource as yT, StudioProvider as y_, DocumentValuePermission as ya, CommentsUIMode as yb, UploadProgressEvent as yc, DocumentFormNode as yd, isTruthy as yf, StudioFeedbackDialogProps as yg, useEventsStore as yh, isAgentBundleName as yi, TooltipOfDisabled as yl, DiffInspectWrapperProps as ym, MemberItemProps as yn, TimelineOptions as yo, isSanityDefinedAction as yp, FieldActionsProvider as yr, StringFieldProps as ys, WorkspaceHiddenContext as yt, formatRelativeLocalePublishDate as yu, StudioComponents as yv, isPublishedId as yw, TimeAgoOpts as yx, AddonDatasetContextValue as yy, DocumentActionsVersionType as z, PreviewPath as zC, SnapshotEvent as zS, ManifestWorkspaceInput as z_, InitialValueOptions as za, useI18nText as zb, EditReferenceOptions as zc, ProvenanceDiffAnnotation as zd, TasksUpsellContextValue as zf, buildRangeDecorationSelectionsFromComments as zg, isCreateLiveDocumentEvent as zh, createProjectStore as zi, MediaPreview as zl, getAnnotationAtPath as zm, PortableTextInput as zn, unstable_useValuePreview as zo, normalizePathSegment as zp, FormFieldValidationStatus as zr, RenderArrayOfObjectsItemCallback as zs, DocumentFieldActionGroup as zt, RELEASES_INTENT as zu, SearchOperatorBase as zv, BetaBadge as zw, SyncState as zx, WorkspaceLike as zy };
@@ -58,26 +58,26 @@ const releasesLocaleStrings = {
58
58
  /** Label for unarchiving a release */
59
59
  "action.unarchive": "Unarchive release",
60
60
  /* The text for the activity event when a document is added to a release */
61
- "activity.event.add-document": "added a document version",
61
+ "activity.event.add-document": "Added a document version",
62
62
  /* The text for the activity event when the release is archived */
63
- "activity.event.archive": "archived the <strong>{{releaseTitle}}</strong> release",
63
+ "activity.event.archive": "Archived the <strong>{{releaseTitle}}</strong> release",
64
64
  /* The text for the activity event when the release is created */
65
- "activity.event.create": "created the <strong>{{releaseTitle}}</strong> release <ScheduleTarget>targeting </ScheduleTarget>",
65
+ "activity.event.create": "Created the <strong>{{releaseTitle}}</strong> release <ScheduleTarget>targeting </ScheduleTarget>",
66
66
  /* The text for the activity event when a document is removed from a release */
67
- "activity.event.discard-document": "discarded a document version",
68
- "activity.event.edit": "set release time to <ScheduleTarget></ScheduleTarget>",
67
+ "activity.event.discard-document": "Discarded a document version",
68
+ "activity.event.edit": "Set release time to <ScheduleTarget></ScheduleTarget>",
69
69
  /**The text to display in the changes when the release type changes to asap */
70
- "activity.event.edit-time-asap": "immediately",
70
+ "activity.event.edit-time-asap": "As soon as possible",
71
71
  /**The text to display in the changes when the release type changes to undecided */
72
- "activity.event.edit-time-undecided": "never",
72
+ "activity.event.edit-time-undecided": "Undecided",
73
73
  /* The text for the activity event when the release is published */
74
- "activity.event.publish": "published the <strong>{{releaseTitle}}</strong> release",
74
+ "activity.event.publish": "Published the <strong>{{releaseTitle}}</strong> release",
75
75
  /* The text for the activity event when the release is scheduled */
76
- "activity.event.schedule": "marked as scheduled",
76
+ "activity.event.schedule": "Marked as scheduled",
77
77
  /** The text for the activity event when the release is unarchived */
78
- "activity.event.unarchive": "unarchived the <strong>{{releaseTitle}}</strong> release",
78
+ "activity.event.unarchive": "Unarchived the <strong>{{releaseTitle}}</strong> release",
79
79
  /** The text for the activity event when the release is unscheduled */
80
- "activity.event.unschedule": "marked as unscheduled",
80
+ "activity.event.unschedule": "Marked as unscheduled",
81
81
  /** The loading text for when releases are loading */
82
82
  "activity.panel.loading": "Loading release activity",
83
83
  /** The loading text for when releases are loading */
@@ -1 +1 @@
1
- {"version":3,"file":"resources2.js","sources":["../../src/core/releases/i18n/resources.ts"],"sourcesContent":["/**\n * Defined locale strings for the releases tool, in US English.\n *\n * @internal\n */\nconst releasesLocaleStrings = {\n /** Action text for adding a document to release */\n 'action.add-document': 'Add document',\n /** Action text for archiving a release */\n 'action.archive': 'Archive release',\n /** Tooltip for copy release actions button */\n 'action.copy-release.label': 'Copy',\n /** Menu item label for copying release ID */\n 'action.copy-release-id.label': 'Copy release ID',\n /** Menu item label for copying release URL */\n 'action.copy-release-link.label': 'Copy release URL',\n /** Menu item label for copying release title */\n 'action.copy-release-title.label': 'Copy release title',\n /** Tooltip for when the archive release action is disabled due to release being scheduled */\n 'action.archive.tooltip': 'Unschedule this release to archive it',\n /** Action text for showing the archived releases */\n 'action.archived': 'Archived',\n /** Action text for showing the paused scheduled drafts */\n 'action.paused': 'Paused',\n /** Action text for staging a new revert release */\n 'action.create-revert-release': 'Create a new release',\n /** Action text for deleting a release */\n 'action.delete-release': 'Delete release',\n /** Menu item label for showing scheduled drafts */\n 'action.drafts': 'Scheduled drafts',\n /** Action text for duplicating a release */\n 'action.duplicate-release': 'Duplicate release',\n /** Action text for editing a release */\n 'action.edit': 'Edit release',\n /** Action text for opening a release */\n 'action.open': 'Active',\n /** Menu item label for showing releases (multi-document releases) */\n 'action.releases': 'Releases',\n /** Action text for scheduling a release */\n 'action.schedule': 'Schedule release...',\n /** Action text for scheduling unpublish of a draft document */\n 'action.schedule-unpublish': 'Schedule Unpublish',\n /** Tooltip text for when schedule unpublish is disabled because document is not published */\n 'action.schedule-unpublish.disabled.not-published':\n 'Document must be published to schedule unpublish',\n /** Action text for unpublishing a document in a release in the context menu */\n 'action.unpublish': 'Unpublish',\n /** Action message for scheduling an unpublished of a document */\n 'action.unpublish-doc-actions': 'Unpublish when releasing',\n /** Action message for when document is scheduled for unpublishing a document and you want to no longer unpublish it */\n 'action.revert-unpublish-actions': 'Revert unpublish when releasing',\n /** Action text for unscheduling a release */\n 'action.unschedule': 'Unschedule release',\n /** Action text for publishing all documents in a release (and the release itself) */\n 'action.publish-all-documents': 'Run release',\n /** Text for the review changes button in release tool */\n 'action.review': 'Review changes',\n /** Action text for reverting a release */\n 'action.revert': 'Revert release',\n /** Text for the summary button in release tool */\n 'actions.summary': 'Summary',\n /** Action text for reverting a release immediately without staging changes */\n 'action.immediate-revert-release': 'Revert now',\n /** Label for unarchiving a release */\n 'action.unarchive': 'Unarchive release',\n /* The text for the activity event when a document is added to a release */\n 'activity.event.add-document': 'added a document version',\n /* The text for the activity event when the release is archived */\n 'activity.event.archive': 'archived the <strong>{{releaseTitle}}</strong> release',\n /* The text for the activity event when the release is created */\n 'activity.event.create':\n 'created the <strong>{{releaseTitle}}</strong> release <ScheduleTarget>targeting </ScheduleTarget>',\n /* The text for the activity event when a document is removed from a release */\n 'activity.event.discard-document': 'discarded a document version',\n 'activity.event.edit': 'set release time to <ScheduleTarget></ScheduleTarget>',\n /**The text to display in the changes when the release type changes to asap */\n 'activity.event.edit-time-asap': 'immediately',\n /**The text to display in the changes when the release type changes to undecided */\n 'activity.event.edit-time-undecided': 'never',\n /* The text for the activity event when the release is published */\n 'activity.event.publish': 'published the <strong>{{releaseTitle}}</strong> release',\n /* The text for the activity event when the release is scheduled */\n 'activity.event.schedule': 'marked as scheduled',\n /** The text for the activity event when the release is unarchived */\n 'activity.event.unarchive': 'unarchived the <strong>{{releaseTitle}}</strong> release',\n /** The text for the activity event when the release is unscheduled */\n 'activity.event.unschedule': 'marked as unscheduled',\n /** The loading text for when releases are loading */\n 'activity.panel.loading': 'Loading release activity',\n /** The loading text for when releases are loading */\n 'activity.panel.error': 'An error occurred getting the release activity',\n /** The title for the activity panel shown in the releases detail screen */\n 'activity.panel.title': 'Activity',\n\n /** Header for the dialog confirming the archive of a release */\n 'archive-dialog.confirm-archive-header': 'Are you sure you want to archive this release?',\n /** Title for the dialog confirming the archive of a release */\n 'archive-dialog.confirm-archive-title':\n \"Are you sure you want to archive the <strong>'{{title}}'</strong> release?\",\n /** Description for the dialog confirming the archive of a release with one document */\n 'archive-dialog.confirm-archive-description_one': 'This will archive 1 document version.',\n /** Description for the dialog confirming the archive of a release with more than one document */\n 'archive-dialog.confirm-archive-description_other':\n 'This will archive {{count}} document versions.',\n /** Label for the button to proceed with archiving a release */\n 'archive-dialog.confirm-archive-button': 'Yes, archive release',\n\n /** Title for information card on a archived release */\n 'archive-info.title': 'This release is archived',\n /** Description for information card on a published or archived release to description retention effects */\n 'archive-info.description':\n 'It will be available for {{retentionDays}} days, then automatically removed on {{removalDate}}. <Link>Learn about retention</Link>.',\n\n /** Title for changes to published documents */\n 'changes-published-docs.title': 'Changes to published documents',\n /** Text for when a release / document was created */\n 'created': 'Created <RelativeTime/>',\n /** Suffix for when a release is a copy of another release */\n 'copy-suffix': 'Copy',\n\n /** Text for the releases detail screen when a release was published ASAP */\n 'dashboard.details.published-asap': 'Published',\n /** Text for the releases detail screen when a release was published from scheduling */\n 'dashboard.details.published-on': 'Published on {{date}}',\n\n /** Text for the releases detail screen in the pin release button. */\n 'dashboard.details.pin-release': 'Pin release to studio',\n /** Text for the releases detail screen in the unpin release button. */\n 'dashboard.details.unpin-release': 'Unpin release from studio',\n\n /** Activity inspector button text */\n 'dashboard.details.activity': 'Activity',\n\n /** Header for deleting a release dialog */\n 'delete-dialog.confirm-delete.header': 'Are you sure you want to delete this release?',\n /** Description for the dialog confirming the deleting of a release with one document */\n 'delete-dialog.confirm-delete-description_one': 'This will delete 1 document version.',\n /** Description for the dialog confirming the deleting of a release with more than one document */\n 'delete-dialog.confirm-delete-description_other': 'This will delete {{count}} document versions.',\n /** Label for the button to proceed deleting a release */\n 'delete-dialog.confirm-delete-button': 'Yes, delete release',\n\n /** Text for when there's no changes in a release diff */\n 'diff.no-changes': 'No changes',\n /** Text for when there's no changes in a release diff */\n 'diff.list-empty': 'Changes list is empty, see document',\n /** Description for discarding a draft of a document dialog */\n 'discard-version-dialog.description-draft':\n 'This will permanently remove all changes made to this document. This action cannot be undone.',\n /** Description for discarding a version of a document dialog */\n 'discard-version-dialog.description-release':\n \"This will permanently remove all changes made to this document within the '<strong>{{releaseTitle}}</strong>' release. This action cannot be undone.\",\n /** Title for dialog for discarding a draft of a document */\n 'discard-version-dialog.header-draft': 'Discard draft?',\n /** Header for discarding a version from a release of a document dialog */\n 'discard-version-dialog.header-release':\n \"Remove document from the '<strong>{{releaseTitle}}</strong>' release?\",\n\n /** Title for dialog for discarding a draft of a document */\n 'discard-version-dialog.title-draft': 'Discard draft',\n /** Title for dialog for discarding a version of a document */\n 'discard-version-dialog.title-release': 'Remove from release',\n\n /** Title for dialog when copying version to draft that already exists */\n 'copy-to-draft-dialog.title': 'Draft version already exists',\n /** Description for dialog when copying version to draft that already exists */\n 'copy-to-draft-dialog.description':\n 'A draft version of this document already exists. Copy the current version to the draft and override the existing draft version.',\n /** Confirm button text for overriding existing draft */\n 'copy-to-draft-dialog.confirm-button': 'Yes, override Draft',\n\n /** Label for when a document in a release has multiple validation warnings */\n 'document-validation.error_other': '{{count}} validation errors',\n /** Label for when a document in a release has a single validation warning */\n 'document-validation.error_one': '{{count}} validation error',\n\n /** Label when a release has been deleted by a different user */\n 'deleted-release': \"The '<strong>{{title}}</strong>' release has been deleted\",\n\n /** Header for the dialog confirming the duplicate of a release */\n 'duplicate-dialog.confirm-duplicate-header': 'Are you sure you want to duplicate this release?',\n /** Description for the dialog confirming the duplicate of a release with one document */\n 'duplicate-dialog.confirm-duplicate-description_one':\n 'This will duplicate the release and the 1 document version.',\n /** Description for the dialog confirming the duplicate of a release with more than one document */\n 'duplicate-dialog.confirm-duplicate-description_other':\n 'This will duplicate the release and the {{count}} document versions.',\n /** Label for the button to proceed with duplicating a release */\n 'duplicate-dialog.confirm-duplicate-button': 'Yes, duplicate release',\n\n /** Title text displayed for technical error details */\n 'error-details-title': 'Error details',\n /** Title text when error during release update */\n 'failed-edit-title': 'Failed to save changes',\n /** Title text displayed for releases that failed to publish */\n 'failed-publish-title': 'Failed to publish',\n /** Title text displayed for releases that failed to schedule */\n 'failed-schedule-title': 'Failed to schedule',\n /** Tooltip text for releases that have passed their intended publish date */\n 'passed-intended-publish-date': 'This release has passed its intended publish date',\n /** Tooltip text for scheduled drafts that have passed their intended publish date */\n 'passed-intended-publish-date-draft': 'This draft has passed its intended publish date',\n\n /**The text that will be shown in the footer to indicate the time the release was archived */\n 'footer.status.archived': 'Archived',\n /**The text that will be shown in the footer to indicate the time the release was created */\n 'footer.status.created': 'Created',\n /**The text that will be shown in the footer to indicate the time the release was created */\n 'footer.status.edited': 'Edited',\n /**The text that will be shown in the footer to indicate the time the release was published */\n 'footer.status.published': 'Published',\n /**The text that will be shown in the footer to indicate the time the release was unarchived */\n 'footer.status.unarchived': 'Unarchived',\n /** Label text for the loading state whilst release is being loaded */\n 'loading-release': 'Loading release',\n\n /** Text for when documents of a release are loading */\n 'loading-release-documents': 'Loading documents',\n /** Title text for when loading documents on a release failed */\n 'loading-release-documents.error.title': 'Something went wrong',\n /** Description text for when loading documents on a release failed */\n 'loading-release-documents.error.description':\n \"We're unable to load the documents for this release. Please try again later.\",\n\n /** Label for the release menu */\n 'menu.label': 'Release menu',\n /** Tooltip for the release menu */\n 'menu.tooltip': 'Actions',\n /** Label for title of actions for \"when releasing\" */\n 'menu.group.when-releasing': 'When releasing',\n\n /** Text for when no archived releases are found */\n 'no-archived-release': 'No archived releases',\n /** Tooltip text when there are no paused scheduled drafts */\n 'no-paused-release': 'No paused scheduled drafts',\n /** Text for when no releases are found */\n 'no-releases': 'No Releases',\n /** Banner text shown when navigating to a release that does not exist */\n 'banner.release-not-found': 'This release could not be found',\n /** Tooltip for the dismiss button in the release not found banner */\n 'banner.release-not-found.dismiss': 'Dismiss',\n\n /** Text for the button name for the release tool */\n 'overview.action.documentation': 'Documentation',\n /** Tooltip for the calendar button in the release overview */\n 'overview.calendar.tooltip': 'View calendar',\n /** Description for the release tool */\n 'overview.description':\n 'Releases are collections of document changes which can be managed, scheduled, and rolled back together.',\n /** Text for the placeholder in the search release input */\n 'overview.search-releases-placeholder': 'Search releases',\n /** Title for the release tool */\n 'overview.title': 'Releases',\n\n /** Tooltip label when the user doesn't have permission for discarding a version */\n 'permissions.error.discard-version': 'You do not have permission to discard this version',\n /** Tooltip label when the user doesn't have permission for unpublishing a document */\n 'permissions.error.unpublish': 'You do not have permission to unpublish this document',\n /** Text for when a user doesn't have publish or schedule releases */\n 'permission-missing-title': 'Limited access',\n /** Description for when a user doesn't have publish or schedule releases */\n 'permission-missing-description':\n 'Your role currently limits what you can see in this release. You may not publish nor schedule this release.',\n /** Tooltip label when the user doesn't have permission to archive release */\n 'permissions.error.archive': 'You do not have permission to archive this release',\n /** Tooltip label when the user doesn't have permission to delete release */\n 'permissions.error.delete': 'You do not have permission to delete this release',\n /** Tooltip label when the user doesn't have permission to duplicate release */\n 'permissions.error.duplicate': 'You do not have permission to duplicate this release',\n /** Tooltip label when the user doesn't have permission to unarchive release */\n 'permissions.error.unarchive': 'You do not have permission to unarchive this release',\n\n /** Tooltip text for when one user is editing a document in a release */\n 'presence.tooltip.one':\n '{{displayName}} is editing this document in the \"{{releaseTitle}}\" release right now',\n /** Tooltip text for when multiple users are editing a document in a release */\n 'presence.tooltip.other': '{{count}} people are editing this document right now',\n\n /** Tooltip text for publish release action when there are no documents */\n 'publish-action.validation.no-documents': 'There are no documents to publish',\n /** Title for the dialog confirming the publish of a release */\n 'publish-dialog.confirm-publish.title':\n 'Are you sure you want to publish the release and all document versions?',\n /** Description for the dialog confirming the publish of a release with one document */\n 'publish-dialog.confirm-publish-description_one':\n \"The '<strong>{{title}}</strong>' release and its document will be published.\",\n /** Description for the dialog confirming the publish of a release with multiple documents */\n 'publish-dialog.confirm-publish-description_other':\n \"The '<strong>{{title}}</strong>' release and its {{releaseDocumentsLength}} documents will be published.\",\n /** Label for the button when the user doesn't have permissions to publish a release */\n 'publish-dialog.validation.no-permission': 'You do not have permission to publish',\n /** Label for when documents are being validated */\n 'publish-dialog.validation.loading': 'Validating documents...',\n /** Label for when documents in release have validation errors */\n 'publish-dialog.validation.error': 'Some documents have validation errors',\n\n /** Title for information card on a published release */\n 'publish-info.title': 'This release is published successfully.',\n\n /** Placeholder title for a release with no title */\n 'release-placeholder.title': 'Untitled',\n\n /** Description for the review changes button in release tool */\n 'review.description': 'Add documents to this release to review changes',\n /** Text for when a document is edited */\n 'review.edited': 'Edited <RelativeTime/>',\n /** Description for the dialog confirming the revert of a release with multiple documents */\n 'revert-dialog.confirm-revert-description_one':\n 'This will revert {{releaseDocumentsLength}} document version.',\n /** Description for the dialog confirming the revert of a release with multiple documents */\n 'revert-dialog.confirm-revert-description_other':\n 'This will revert {{releaseDocumentsLength}} document versions.',\n /** Title for the dialog confirming the revert of a release */\n 'revert-dialog.confirm-revert.title': \"Are you sure you want to revert the '{{title}}' release?\",\n /** Checkbox label to confirm whether to create a staged release for revert or immediately revert */\n 'revert-dialog.confirm-revert.stage-revert-checkbox-label': 'Immediately revert the release',\n /** Warning card text for when immediately revert a release with history */\n 'revert-dialog.confirm-revert.warning-card':\n 'Changes were made to documents in this release after they were published. Reverting will overwrite these changes.',\n /** Title of a reverted release */\n 'revert-release.title': 'Reverting \"{{title}}\"',\n /** Description of a reverted release */\n 'revert-release.description': 'Revert changes to document versions in \"{{title}}\".',\n\n /** Title of unschedule release dialog */\n 'schedule-button.tooltip': 'Are you sure you want to unschedule the release?',\n\n /** Schedule release button tooltip when there are no documents to schedule */\n 'schedule-action.validation.no-documents': 'There are no documents to schedule',\n /** Schedule release button tooltip when user has no permissions to schedule */\n 'schedule-button-tooltip.validation.no-permission': 'You do not have permission to schedule',\n /** Schedule release button tooltip when validation is loading */\n 'schedule-button-tooltip.validation.loading': 'Validating documents...',\n /** Schedule release button tooltip when there are validation errors */\n 'schedule-button-tooltip.validation.error': 'Some documents have validation errors',\n\n /** Schedule release button tooltip when the release is already scheduled */\n 'schedule-button-tooltip.already-scheduled': 'This release is already scheduled',\n\n /** Title for unschedule release dialog */\n 'schedule-dialog.confirm-title': 'Schedule the release',\n /** Description shown in unschedule relaease dialog */\n 'schedule-dialog.confirm-description_one':\n \"The '<strong>{{title}}</strong>' release and its document will be published on the selected date.\",\n /** Description for the dialog confirming the publish of a release with multiple documents */\n 'schedule-dialog.confirm-description_other':\n 'The <strong>{{title}}</strong> release and its {{count}} document versions will be scheduled.',\n\n /** Description for the confirm button for scheduling a release */\n 'schedule-dialog.confirm-button': 'Yes, schedule',\n\n /** Label for date picker when scheduling a release */\n 'schedule-dialog.select-publish-date-label': 'Schedule on',\n\n /** Title for unschedule release dialog */\n 'unschedule-dialog.confirm-title': 'Are you sure you want to unschedule the release?',\n /** Description shown in unschedule relaease dialog */\n 'unschedule-dialog.confirm-description':\n 'The release will no longer be published on the scheduled date',\n /** Description for warning that the published schedule time is in the past */\n 'schedule-dialog.publish-date-in-past-warning': 'Schedule for a future time and date.',\n\n /** Header for the schedule unpublish dialog */\n 'schedule-unpublish-dialog.header': 'Schedule draft for Unpublish',\n /** Description for the schedule unpublish dialog */\n 'schedule-unpublish-dialog.description': 'Select when this document should be unpublished.',\n /** Confirm button text for the schedule unpublish dialog */\n 'schedule-unpublish-dialog.confirm': 'Schedule Unpublish',\n\n /** Placeholder for search of documents in a release */\n 'search-documents-placeholder': 'Search documents',\n /** Text for when the release was created */\n 'summary.created': 'Created <RelativeTime/>',\n /** Text for when the release was published */\n 'summary.published': 'Published <RelativeTime/>',\n /** Text for when the release has not published */\n 'summary.not-published': 'Not published',\n /** Text for when the release has no documents */\n 'summary.no-documents': 'No documents',\n /** Text for when the release is composed of one document */\n 'summary.document-count_one': '{{count}} document',\n /** Text for when the release is composed of multiple documents */\n 'summary.document-count_other': '{{count}} documents',\n\n /** Text for validation loading indicator */\n 'summary.validating-documents': 'Validating documents: {{validatedCount}} of {{totalCount}}',\n\n /** Text for when the release has validated documents */\n 'summary.validated-documents': '{{validatedCount}} of {{totalCount}} documents validated',\n\n /** Text for when the release has validated all documents */\n 'summary.all-documents-validated': 'All documents validated, no issues found',\n\n /** Text for when the release has no errors found */\n 'summary.all-documents-errors-found': 'All documents validated, issues found',\n\n /** Text for when the release has some errors found */\n 'summary.errors-found':\n 'In order to publish or schedule the release, please resolve the issues found in the documents',\n\n /** add action type that will be shown in the table*/\n 'table-body.action.add': 'Add',\n /** Change action type that will be shown in the table*/\n 'table-body.action.change': 'Change',\n /** Change action type that will be shown in the table*/\n 'table-body.action.unpublish': 'Unpublish',\n\n /** Header for the document table in the release tool - Archived */\n 'table-header.archivedAt': 'Archived',\n /** Header for the document table in the release tool - contributors */\n 'table-header.contributors': 'Contributors',\n /** Header for the document table in the release tool - created by */\n 'table-header.created-by': 'Created by',\n /** Header for the document table in the release tool - document preview */\n 'table-header.document': 'Document',\n /** Header for the document table in the release tool - title */\n 'table-header.documents': 'Documents',\n /** Header for the document table in the release tool - edited */\n 'table-header.edited': 'Edited',\n /** Header for the document table in the release tool - Published */\n 'table-header.published-at': 'Published',\n /** Header for the document table in the release tool - Published */\n 'table-header.publishedAt': 'Published',\n /** Header for the scheduled drafts document table in the release tool - published at */\n 'table-header.scheduled-draft.published-at': 'Published at',\n /** Header for the scheduled drafts document table in the release tool - scheduled for */\n 'table-header.scheduled-for': 'Scheduled for',\n /** Header for the paused scheduled drafts table - intended for */\n 'table-header.intended-for': 'Intended for',\n /** Header for the document table in the release tool - time */\n 'table-header.time': 'Time',\n /** Header for the document table in the release tool - when */\n 'table-header.when': 'When',\n /** Header for the document table in the release tool - release title */\n 'table-header.title': 'Release',\n /** Header for the document table in the release tool - type */\n 'table-header.type': 'Type',\n /** Header for the document table in the release tool - action */\n 'table-header.action': 'Action',\n\n /** Filter tab label for all documents */\n 'filter-tab.all': 'All',\n /** Filter tab label for documents with validation errors */\n 'filter-tab.errors': 'Errors',\n /** Text for the release time label for scheduled releases which has been scheduled*/\n 'time.scheduled': 'Scheduled',\n /** Text for the release time label for scheduled releases which has not been scheduled yet*/\n 'time.estimated': 'Estimated',\n /** Text for toast when release failed to archive */\n 'toast.archive.error': \"Failed to archive '<strong>{{title}}</strong>': {{error}}\",\n /** Toast message after copying release ID */\n 'toast.copy-release-id.success': 'Release ID copied to clipboard',\n /** Toast message after copying release link */\n 'toast.copy-release-link.success': 'Release link copied to clipboard',\n /** Toast message after copying release title */\n 'toast.copy-release-title.success': 'Release title copied to clipboard',\n /** Description for toast when creating new version of document in release failed */\n 'toast.create-version.error': 'Failed to add document to release: {{error}}',\n /** Description for toast when release deletion failed */\n 'toast.delete.error': \"Failed to delete '<strong>{{title}}</strong>': {{error}}\",\n /** Description for toast when release is successfully deleted */\n 'toast.delete.success': \"The '<strong>{{title}}</strong>' release was successfully deleted\",\n /** Description for toast when release duplication failed */\n 'toast.duplicate.error': \"Failed to duplicate '<strong>{{title}}</strong>': {{error}}\",\n /** Description for toast when release is successfully duplicated */\n 'toast.duplicate.success': \"The '<strong>{{title}}</strong>' release was duplicated. <Link/>\",\n /** Link text for toast link to the duplicated release */\n 'toast.duplicate.success-link': 'View duplicated release',\n /** Text for toast when release failed to publish */\n 'toast.publish.error': \"Failed to publish '<strong>{{title}}</strong>': {{error}}\",\n /** Text for toast when release failed to schedule */\n 'toast.schedule.error': \"Failed to schedule '<strong>{{title}}</strong>': {{error}}\",\n /** Text for toast when release has been scheduled */\n 'toast.schedule.success': \"The '<strong>{{title}}</strong>' release was scheduled.\",\n /** Text for toast when release failed to unschedule */\n 'toast.unschedule.error': \"Failed to unscheduled '<strong>{{title}}</strong>': {{error}}\",\n /** Text for toast when release failed to unarchive */\n 'toast.unarchive.error': \"Failed to unarchive '<strong>{{title}}</strong>': {{error}}\",\n /** Text for tooltip when a release has been scheduled */\n 'type-picker.tooltip.scheduled': 'The release is scheduled, unschedule it to change type',\n /** Text for toast when release failed to revert */\n 'toast.revert.error': 'Failed to revert release: {{error}}',\n /** Text for toast when release has been reverted immediately */\n 'toast.immediate-revert.success': \"The '{{title}}' release was successfully reverted\",\n /** Text for toast when release has reverted release successfully staged */\n 'toast.revert-stage.success': \"Revert release for '{{title}}' was successfully created. <Link/>\",\n /** Link text for toast link to the generated revert release */\n 'toast.revert-stage.success-link': 'View revert release',\n\n /** Text for when a document is unpublished */\n 'unpublish.already-unpublished': 'This document is already unpublished.',\n /** Tooltip label for when a document is unpublished */\n 'unpublish.no-published-version': 'There is no published version of this document.',\n /** Title for the dialog confirming the unpublish of a release */\n 'unpublish-dialog.header': 'Are you sure you want to unpublish this document when releasing?',\n /** Text action in unpublish dialog to cancel */\n 'unpublish-dialog.action.cancel': 'Cancel',\n /** Text action in unpublish dialog to unpublish */\n 'unpublish-dialog.action.unpublish': 'Yes, unpublish when releasing',\n /** Description for the unpublish dialog, explaining that it will create a draft if no draft exists at time of release */\n 'unpublish-dialog.description.to-draft':\n 'This will unpublish the document as part of the <Label>{{title}}</Label> release, and create a draft if no draft exists at the time of release.',\n /** Description for unpublish dialog, explaining that all changes made to this document will be lost */\n 'unpublish-dialog.description.lost-changes':\n 'Any changes made to this document version will be lost.',\n\n /** Banner text shown when scheduled drafts feature is disabled but there are still scheduled drafts */\n 'banner.scheduled-drafts-disabled':\n 'Scheduled drafts has been disabled but there are still scheduled drafts to be published.',\n /** Banner text shown when drafts mode is disabled but there are still scheduled drafts */\n 'banner.drafts-mode-disabled':\n 'Drafts mode has been disabled but there are still scheduled drafts to be published.',\n /** Text for when no scheduled drafts are found */\n 'no-scheduled-drafts': 'No Scheduled Drafts',\n\n /** Banner text showing count of active scheduled drafts requiring confirmation with one draft */\n 'banner.confirm-active-scheduled-drafts_one':\n 'There is {{count}} Scheduled Draft that requires scheduling confirmation',\n /** Banner text showing count of active scheduled drafts requiring confirmation with multiple drafts */\n 'banner.confirm-active-scheduled-drafts_other':\n 'There are {{count}} Scheduled Drafts that require scheduling confirmation',\n /** Button text for confirming scheduling of active drafts */\n 'banner.confirm-active-scheduled-drafts.button': 'Resume scheduling',\n /** Button text when confirming schedules from paused mode */\n 'banner.confirm-active-scheduled-drafts.button-paused': 'Resume all schedules',\n\n /** Dialog title for confirming active scheduled drafts */\n 'confirm-active-scheduled-drafts-dialog.title': 'Resume Scheduled Drafts',\n /** Dialog description for confirming active scheduled drafts */\n 'confirm-active-scheduled-drafts-dialog.description':\n 'Schedule all paused Scheduled Drafts for their intended publish dates',\n /** Dialog warning when some scheduled drafts have past dates */\n 'confirm-active-scheduled-drafts-dialog.past-dates-warning':\n 'Some of these Scheduled Drafts are scheduled for past dates. Confirming schedules will immediately publish those versions of documents.',\n /** Dialog confirm button text for confirming all scheduled drafts */\n 'confirm-active-scheduled-drafts-dialog.confirm-button': 'Confirm Schedules',\n\n /** Toast error message when bulk scheduling of active drafts fails */\n 'toast.confirm-active-scheduled-drafts.error': 'Failed to schedule drafts: {{error}}',\n}\n\n/**\n * @alpha\n */\nexport type ReleasesLocaleResourceKeys = keyof typeof releasesLocaleStrings\n\nexport default releasesLocaleStrings\n"],"names":["releasesLocaleStrings"],"mappings":"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"}
1
+ {"version":3,"file":"resources2.js","sources":["../../src/core/releases/i18n/resources.ts"],"sourcesContent":["/**\n * Defined locale strings for the releases tool, in US English.\n *\n * @internal\n */\nconst releasesLocaleStrings = {\n /** Action text for adding a document to release */\n 'action.add-document': 'Add document',\n /** Action text for archiving a release */\n 'action.archive': 'Archive release',\n /** Tooltip for copy release actions button */\n 'action.copy-release.label': 'Copy',\n /** Menu item label for copying release ID */\n 'action.copy-release-id.label': 'Copy release ID',\n /** Menu item label for copying release URL */\n 'action.copy-release-link.label': 'Copy release URL',\n /** Menu item label for copying release title */\n 'action.copy-release-title.label': 'Copy release title',\n /** Tooltip for when the archive release action is disabled due to release being scheduled */\n 'action.archive.tooltip': 'Unschedule this release to archive it',\n /** Action text for showing the archived releases */\n 'action.archived': 'Archived',\n /** Action text for showing the paused scheduled drafts */\n 'action.paused': 'Paused',\n /** Action text for staging a new revert release */\n 'action.create-revert-release': 'Create a new release',\n /** Action text for deleting a release */\n 'action.delete-release': 'Delete release',\n /** Menu item label for showing scheduled drafts */\n 'action.drafts': 'Scheduled drafts',\n /** Action text for duplicating a release */\n 'action.duplicate-release': 'Duplicate release',\n /** Action text for editing a release */\n 'action.edit': 'Edit release',\n /** Action text for opening a release */\n 'action.open': 'Active',\n /** Menu item label for showing releases (multi-document releases) */\n 'action.releases': 'Releases',\n /** Action text for scheduling a release */\n 'action.schedule': 'Schedule release...',\n /** Action text for scheduling unpublish of a draft document */\n 'action.schedule-unpublish': 'Schedule Unpublish',\n /** Tooltip text for when schedule unpublish is disabled because document is not published */\n 'action.schedule-unpublish.disabled.not-published':\n 'Document must be published to schedule unpublish',\n /** Action text for unpublishing a document in a release in the context menu */\n 'action.unpublish': 'Unpublish',\n /** Action message for scheduling an unpublished of a document */\n 'action.unpublish-doc-actions': 'Unpublish when releasing',\n /** Action message for when document is scheduled for unpublishing a document and you want to no longer unpublish it */\n 'action.revert-unpublish-actions': 'Revert unpublish when releasing',\n /** Action text for unscheduling a release */\n 'action.unschedule': 'Unschedule release',\n /** Action text for publishing all documents in a release (and the release itself) */\n 'action.publish-all-documents': 'Run release',\n /** Text for the review changes button in release tool */\n 'action.review': 'Review changes',\n /** Action text for reverting a release */\n 'action.revert': 'Revert release',\n /** Text for the summary button in release tool */\n 'actions.summary': 'Summary',\n /** Action text for reverting a release immediately without staging changes */\n 'action.immediate-revert-release': 'Revert now',\n /** Label for unarchiving a release */\n 'action.unarchive': 'Unarchive release',\n /* The text for the activity event when a document is added to a release */\n 'activity.event.add-document': 'Added a document version',\n /* The text for the activity event when the release is archived */\n 'activity.event.archive': 'Archived the <strong>{{releaseTitle}}</strong> release',\n /* The text for the activity event when the release is created */\n 'activity.event.create':\n 'Created the <strong>{{releaseTitle}}</strong> release <ScheduleTarget>targeting </ScheduleTarget>',\n /* The text for the activity event when a document is removed from a release */\n 'activity.event.discard-document': 'Discarded a document version',\n 'activity.event.edit': 'Set release time to <ScheduleTarget></ScheduleTarget>',\n /**The text to display in the changes when the release type changes to asap */\n 'activity.event.edit-time-asap': 'As soon as possible',\n /**The text to display in the changes when the release type changes to undecided */\n 'activity.event.edit-time-undecided': 'Undecided',\n /* The text for the activity event when the release is published */\n 'activity.event.publish': 'Published the <strong>{{releaseTitle}}</strong> release',\n /* The text for the activity event when the release is scheduled */\n 'activity.event.schedule': 'Marked as scheduled',\n /** The text for the activity event when the release is unarchived */\n 'activity.event.unarchive': 'Unarchived the <strong>{{releaseTitle}}</strong> release',\n /** The text for the activity event when the release is unscheduled */\n 'activity.event.unschedule': 'Marked as unscheduled',\n /** The loading text for when releases are loading */\n 'activity.panel.loading': 'Loading release activity',\n /** The loading text for when releases are loading */\n 'activity.panel.error': 'An error occurred getting the release activity',\n /** The title for the activity panel shown in the releases detail screen */\n 'activity.panel.title': 'Activity',\n\n /** Header for the dialog confirming the archive of a release */\n 'archive-dialog.confirm-archive-header': 'Are you sure you want to archive this release?',\n /** Title for the dialog confirming the archive of a release */\n 'archive-dialog.confirm-archive-title':\n \"Are you sure you want to archive the <strong>'{{title}}'</strong> release?\",\n /** Description for the dialog confirming the archive of a release with one document */\n 'archive-dialog.confirm-archive-description_one': 'This will archive 1 document version.',\n /** Description for the dialog confirming the archive of a release with more than one document */\n 'archive-dialog.confirm-archive-description_other':\n 'This will archive {{count}} document versions.',\n /** Label for the button to proceed with archiving a release */\n 'archive-dialog.confirm-archive-button': 'Yes, archive release',\n\n /** Title for information card on a archived release */\n 'archive-info.title': 'This release is archived',\n /** Description for information card on a published or archived release to description retention effects */\n 'archive-info.description':\n 'It will be available for {{retentionDays}} days, then automatically removed on {{removalDate}}. <Link>Learn about retention</Link>.',\n\n /** Title for changes to published documents */\n 'changes-published-docs.title': 'Changes to published documents',\n /** Text for when a release / document was created */\n 'created': 'Created <RelativeTime/>',\n /** Suffix for when a release is a copy of another release */\n 'copy-suffix': 'Copy',\n\n /** Text for the releases detail screen when a release was published ASAP */\n 'dashboard.details.published-asap': 'Published',\n /** Text for the releases detail screen when a release was published from scheduling */\n 'dashboard.details.published-on': 'Published on {{date}}',\n\n /** Text for the releases detail screen in the pin release button. */\n 'dashboard.details.pin-release': 'Pin release to studio',\n /** Text for the releases detail screen in the unpin release button. */\n 'dashboard.details.unpin-release': 'Unpin release from studio',\n\n /** Activity inspector button text */\n 'dashboard.details.activity': 'Activity',\n\n /** Header for deleting a release dialog */\n 'delete-dialog.confirm-delete.header': 'Are you sure you want to delete this release?',\n /** Description for the dialog confirming the deleting of a release with one document */\n 'delete-dialog.confirm-delete-description_one': 'This will delete 1 document version.',\n /** Description for the dialog confirming the deleting of a release with more than one document */\n 'delete-dialog.confirm-delete-description_other': 'This will delete {{count}} document versions.',\n /** Label for the button to proceed deleting a release */\n 'delete-dialog.confirm-delete-button': 'Yes, delete release',\n\n /** Text for when there's no changes in a release diff */\n 'diff.no-changes': 'No changes',\n /** Text for when there's no changes in a release diff */\n 'diff.list-empty': 'Changes list is empty, see document',\n /** Description for discarding a draft of a document dialog */\n 'discard-version-dialog.description-draft':\n 'This will permanently remove all changes made to this document. This action cannot be undone.',\n /** Description for discarding a version of a document dialog */\n 'discard-version-dialog.description-release':\n \"This will permanently remove all changes made to this document within the '<strong>{{releaseTitle}}</strong>' release. This action cannot be undone.\",\n /** Title for dialog for discarding a draft of a document */\n 'discard-version-dialog.header-draft': 'Discard draft?',\n /** Header for discarding a version from a release of a document dialog */\n 'discard-version-dialog.header-release':\n \"Remove document from the '<strong>{{releaseTitle}}</strong>' release?\",\n\n /** Title for dialog for discarding a draft of a document */\n 'discard-version-dialog.title-draft': 'Discard draft',\n /** Title for dialog for discarding a version of a document */\n 'discard-version-dialog.title-release': 'Remove from release',\n\n /** Title for dialog when copying version to draft that already exists */\n 'copy-to-draft-dialog.title': 'Draft version already exists',\n /** Description for dialog when copying version to draft that already exists */\n 'copy-to-draft-dialog.description':\n 'A draft version of this document already exists. Copy the current version to the draft and override the existing draft version.',\n /** Confirm button text for overriding existing draft */\n 'copy-to-draft-dialog.confirm-button': 'Yes, override Draft',\n\n /** Label for when a document in a release has multiple validation warnings */\n 'document-validation.error_other': '{{count}} validation errors',\n /** Label for when a document in a release has a single validation warning */\n 'document-validation.error_one': '{{count}} validation error',\n\n /** Label when a release has been deleted by a different user */\n 'deleted-release': \"The '<strong>{{title}}</strong>' release has been deleted\",\n\n /** Header for the dialog confirming the duplicate of a release */\n 'duplicate-dialog.confirm-duplicate-header': 'Are you sure you want to duplicate this release?',\n /** Description for the dialog confirming the duplicate of a release with one document */\n 'duplicate-dialog.confirm-duplicate-description_one':\n 'This will duplicate the release and the 1 document version.',\n /** Description for the dialog confirming the duplicate of a release with more than one document */\n 'duplicate-dialog.confirm-duplicate-description_other':\n 'This will duplicate the release and the {{count}} document versions.',\n /** Label for the button to proceed with duplicating a release */\n 'duplicate-dialog.confirm-duplicate-button': 'Yes, duplicate release',\n\n /** Title text displayed for technical error details */\n 'error-details-title': 'Error details',\n /** Title text when error during release update */\n 'failed-edit-title': 'Failed to save changes',\n /** Title text displayed for releases that failed to publish */\n 'failed-publish-title': 'Failed to publish',\n /** Title text displayed for releases that failed to schedule */\n 'failed-schedule-title': 'Failed to schedule',\n /** Tooltip text for releases that have passed their intended publish date */\n 'passed-intended-publish-date': 'This release has passed its intended publish date',\n /** Tooltip text for scheduled drafts that have passed their intended publish date */\n 'passed-intended-publish-date-draft': 'This draft has passed its intended publish date',\n\n /**The text that will be shown in the footer to indicate the time the release was archived */\n 'footer.status.archived': 'Archived',\n /**The text that will be shown in the footer to indicate the time the release was created */\n 'footer.status.created': 'Created',\n /**The text that will be shown in the footer to indicate the time the release was created */\n 'footer.status.edited': 'Edited',\n /**The text that will be shown in the footer to indicate the time the release was published */\n 'footer.status.published': 'Published',\n /**The text that will be shown in the footer to indicate the time the release was unarchived */\n 'footer.status.unarchived': 'Unarchived',\n /** Label text for the loading state whilst release is being loaded */\n 'loading-release': 'Loading release',\n\n /** Text for when documents of a release are loading */\n 'loading-release-documents': 'Loading documents',\n /** Title text for when loading documents on a release failed */\n 'loading-release-documents.error.title': 'Something went wrong',\n /** Description text for when loading documents on a release failed */\n 'loading-release-documents.error.description':\n \"We're unable to load the documents for this release. Please try again later.\",\n\n /** Label for the release menu */\n 'menu.label': 'Release menu',\n /** Tooltip for the release menu */\n 'menu.tooltip': 'Actions',\n /** Label for title of actions for \"when releasing\" */\n 'menu.group.when-releasing': 'When releasing',\n\n /** Text for when no archived releases are found */\n 'no-archived-release': 'No archived releases',\n /** Tooltip text when there are no paused scheduled drafts */\n 'no-paused-release': 'No paused scheduled drafts',\n /** Text for when no releases are found */\n 'no-releases': 'No Releases',\n /** Banner text shown when navigating to a release that does not exist */\n 'banner.release-not-found': 'This release could not be found',\n /** Tooltip for the dismiss button in the release not found banner */\n 'banner.release-not-found.dismiss': 'Dismiss',\n\n /** Text for the button name for the release tool */\n 'overview.action.documentation': 'Documentation',\n /** Tooltip for the calendar button in the release overview */\n 'overview.calendar.tooltip': 'View calendar',\n /** Description for the release tool */\n 'overview.description':\n 'Releases are collections of document changes which can be managed, scheduled, and rolled back together.',\n /** Text for the placeholder in the search release input */\n 'overview.search-releases-placeholder': 'Search releases',\n /** Title for the release tool */\n 'overview.title': 'Releases',\n\n /** Tooltip label when the user doesn't have permission for discarding a version */\n 'permissions.error.discard-version': 'You do not have permission to discard this version',\n /** Tooltip label when the user doesn't have permission for unpublishing a document */\n 'permissions.error.unpublish': 'You do not have permission to unpublish this document',\n /** Text for when a user doesn't have publish or schedule releases */\n 'permission-missing-title': 'Limited access',\n /** Description for when a user doesn't have publish or schedule releases */\n 'permission-missing-description':\n 'Your role currently limits what you can see in this release. You may not publish nor schedule this release.',\n /** Tooltip label when the user doesn't have permission to archive release */\n 'permissions.error.archive': 'You do not have permission to archive this release',\n /** Tooltip label when the user doesn't have permission to delete release */\n 'permissions.error.delete': 'You do not have permission to delete this release',\n /** Tooltip label when the user doesn't have permission to duplicate release */\n 'permissions.error.duplicate': 'You do not have permission to duplicate this release',\n /** Tooltip label when the user doesn't have permission to unarchive release */\n 'permissions.error.unarchive': 'You do not have permission to unarchive this release',\n\n /** Tooltip text for when one user is editing a document in a release */\n 'presence.tooltip.one':\n '{{displayName}} is editing this document in the \"{{releaseTitle}}\" release right now',\n /** Tooltip text for when multiple users are editing a document in a release */\n 'presence.tooltip.other': '{{count}} people are editing this document right now',\n\n /** Tooltip text for publish release action when there are no documents */\n 'publish-action.validation.no-documents': 'There are no documents to publish',\n /** Title for the dialog confirming the publish of a release */\n 'publish-dialog.confirm-publish.title':\n 'Are you sure you want to publish the release and all document versions?',\n /** Description for the dialog confirming the publish of a release with one document */\n 'publish-dialog.confirm-publish-description_one':\n \"The '<strong>{{title}}</strong>' release and its document will be published.\",\n /** Description for the dialog confirming the publish of a release with multiple documents */\n 'publish-dialog.confirm-publish-description_other':\n \"The '<strong>{{title}}</strong>' release and its {{releaseDocumentsLength}} documents will be published.\",\n /** Label for the button when the user doesn't have permissions to publish a release */\n 'publish-dialog.validation.no-permission': 'You do not have permission to publish',\n /** Label for when documents are being validated */\n 'publish-dialog.validation.loading': 'Validating documents...',\n /** Label for when documents in release have validation errors */\n 'publish-dialog.validation.error': 'Some documents have validation errors',\n\n /** Title for information card on a published release */\n 'publish-info.title': 'This release is published successfully.',\n\n /** Placeholder title for a release with no title */\n 'release-placeholder.title': 'Untitled',\n\n /** Description for the review changes button in release tool */\n 'review.description': 'Add documents to this release to review changes',\n /** Text for when a document is edited */\n 'review.edited': 'Edited <RelativeTime/>',\n /** Description for the dialog confirming the revert of a release with multiple documents */\n 'revert-dialog.confirm-revert-description_one':\n 'This will revert {{releaseDocumentsLength}} document version.',\n /** Description for the dialog confirming the revert of a release with multiple documents */\n 'revert-dialog.confirm-revert-description_other':\n 'This will revert {{releaseDocumentsLength}} document versions.',\n /** Title for the dialog confirming the revert of a release */\n 'revert-dialog.confirm-revert.title': \"Are you sure you want to revert the '{{title}}' release?\",\n /** Checkbox label to confirm whether to create a staged release for revert or immediately revert */\n 'revert-dialog.confirm-revert.stage-revert-checkbox-label': 'Immediately revert the release',\n /** Warning card text for when immediately revert a release with history */\n 'revert-dialog.confirm-revert.warning-card':\n 'Changes were made to documents in this release after they were published. Reverting will overwrite these changes.',\n /** Title of a reverted release */\n 'revert-release.title': 'Reverting \"{{title}}\"',\n /** Description of a reverted release */\n 'revert-release.description': 'Revert changes to document versions in \"{{title}}\".',\n\n /** Title of unschedule release dialog */\n 'schedule-button.tooltip': 'Are you sure you want to unschedule the release?',\n\n /** Schedule release button tooltip when there are no documents to schedule */\n 'schedule-action.validation.no-documents': 'There are no documents to schedule',\n /** Schedule release button tooltip when user has no permissions to schedule */\n 'schedule-button-tooltip.validation.no-permission': 'You do not have permission to schedule',\n /** Schedule release button tooltip when validation is loading */\n 'schedule-button-tooltip.validation.loading': 'Validating documents...',\n /** Schedule release button tooltip when there are validation errors */\n 'schedule-button-tooltip.validation.error': 'Some documents have validation errors',\n\n /** Schedule release button tooltip when the release is already scheduled */\n 'schedule-button-tooltip.already-scheduled': 'This release is already scheduled',\n\n /** Title for unschedule release dialog */\n 'schedule-dialog.confirm-title': 'Schedule the release',\n /** Description shown in unschedule relaease dialog */\n 'schedule-dialog.confirm-description_one':\n \"The '<strong>{{title}}</strong>' release and its document will be published on the selected date.\",\n /** Description for the dialog confirming the publish of a release with multiple documents */\n 'schedule-dialog.confirm-description_other':\n 'The <strong>{{title}}</strong> release and its {{count}} document versions will be scheduled.',\n\n /** Description for the confirm button for scheduling a release */\n 'schedule-dialog.confirm-button': 'Yes, schedule',\n\n /** Label for date picker when scheduling a release */\n 'schedule-dialog.select-publish-date-label': 'Schedule on',\n\n /** Title for unschedule release dialog */\n 'unschedule-dialog.confirm-title': 'Are you sure you want to unschedule the release?',\n /** Description shown in unschedule relaease dialog */\n 'unschedule-dialog.confirm-description':\n 'The release will no longer be published on the scheduled date',\n /** Description for warning that the published schedule time is in the past */\n 'schedule-dialog.publish-date-in-past-warning': 'Schedule for a future time and date.',\n\n /** Header for the schedule unpublish dialog */\n 'schedule-unpublish-dialog.header': 'Schedule draft for Unpublish',\n /** Description for the schedule unpublish dialog */\n 'schedule-unpublish-dialog.description': 'Select when this document should be unpublished.',\n /** Confirm button text for the schedule unpublish dialog */\n 'schedule-unpublish-dialog.confirm': 'Schedule Unpublish',\n\n /** Placeholder for search of documents in a release */\n 'search-documents-placeholder': 'Search documents',\n /** Text for when the release was created */\n 'summary.created': 'Created <RelativeTime/>',\n /** Text for when the release was published */\n 'summary.published': 'Published <RelativeTime/>',\n /** Text for when the release has not published */\n 'summary.not-published': 'Not published',\n /** Text for when the release has no documents */\n 'summary.no-documents': 'No documents',\n /** Text for when the release is composed of one document */\n 'summary.document-count_one': '{{count}} document',\n /** Text for when the release is composed of multiple documents */\n 'summary.document-count_other': '{{count}} documents',\n\n /** Text for validation loading indicator */\n 'summary.validating-documents': 'Validating documents: {{validatedCount}} of {{totalCount}}',\n\n /** Text for when the release has validated documents */\n 'summary.validated-documents': '{{validatedCount}} of {{totalCount}} documents validated',\n\n /** Text for when the release has validated all documents */\n 'summary.all-documents-validated': 'All documents validated, no issues found',\n\n /** Text for when the release has no errors found */\n 'summary.all-documents-errors-found': 'All documents validated, issues found',\n\n /** Text for when the release has some errors found */\n 'summary.errors-found':\n 'In order to publish or schedule the release, please resolve the issues found in the documents',\n\n /** add action type that will be shown in the table*/\n 'table-body.action.add': 'Add',\n /** Change action type that will be shown in the table*/\n 'table-body.action.change': 'Change',\n /** Change action type that will be shown in the table*/\n 'table-body.action.unpublish': 'Unpublish',\n\n /** Header for the document table in the release tool - Archived */\n 'table-header.archivedAt': 'Archived',\n /** Header for the document table in the release tool - contributors */\n 'table-header.contributors': 'Contributors',\n /** Header for the document table in the release tool - created by */\n 'table-header.created-by': 'Created by',\n /** Header for the document table in the release tool - document preview */\n 'table-header.document': 'Document',\n /** Header for the document table in the release tool - title */\n 'table-header.documents': 'Documents',\n /** Header for the document table in the release tool - edited */\n 'table-header.edited': 'Edited',\n /** Header for the document table in the release tool - Published */\n 'table-header.published-at': 'Published',\n /** Header for the document table in the release tool - Published */\n 'table-header.publishedAt': 'Published',\n /** Header for the scheduled drafts document table in the release tool - published at */\n 'table-header.scheduled-draft.published-at': 'Published at',\n /** Header for the scheduled drafts document table in the release tool - scheduled for */\n 'table-header.scheduled-for': 'Scheduled for',\n /** Header for the paused scheduled drafts table - intended for */\n 'table-header.intended-for': 'Intended for',\n /** Header for the document table in the release tool - time */\n 'table-header.time': 'Time',\n /** Header for the document table in the release tool - when */\n 'table-header.when': 'When',\n /** Header for the document table in the release tool - release title */\n 'table-header.title': 'Release',\n /** Header for the document table in the release tool - type */\n 'table-header.type': 'Type',\n /** Header for the document table in the release tool - action */\n 'table-header.action': 'Action',\n\n /** Filter tab label for all documents */\n 'filter-tab.all': 'All',\n /** Filter tab label for documents with validation errors */\n 'filter-tab.errors': 'Errors',\n /** Text for the release time label for scheduled releases which has been scheduled*/\n 'time.scheduled': 'Scheduled',\n /** Text for the release time label for scheduled releases which has not been scheduled yet*/\n 'time.estimated': 'Estimated',\n /** Text for toast when release failed to archive */\n 'toast.archive.error': \"Failed to archive '<strong>{{title}}</strong>': {{error}}\",\n /** Toast message after copying release ID */\n 'toast.copy-release-id.success': 'Release ID copied to clipboard',\n /** Toast message after copying release link */\n 'toast.copy-release-link.success': 'Release link copied to clipboard',\n /** Toast message after copying release title */\n 'toast.copy-release-title.success': 'Release title copied to clipboard',\n /** Description for toast when creating new version of document in release failed */\n 'toast.create-version.error': 'Failed to add document to release: {{error}}',\n /** Description for toast when release deletion failed */\n 'toast.delete.error': \"Failed to delete '<strong>{{title}}</strong>': {{error}}\",\n /** Description for toast when release is successfully deleted */\n 'toast.delete.success': \"The '<strong>{{title}}</strong>' release was successfully deleted\",\n /** Description for toast when release duplication failed */\n 'toast.duplicate.error': \"Failed to duplicate '<strong>{{title}}</strong>': {{error}}\",\n /** Description for toast when release is successfully duplicated */\n 'toast.duplicate.success': \"The '<strong>{{title}}</strong>' release was duplicated. <Link/>\",\n /** Link text for toast link to the duplicated release */\n 'toast.duplicate.success-link': 'View duplicated release',\n /** Text for toast when release failed to publish */\n 'toast.publish.error': \"Failed to publish '<strong>{{title}}</strong>': {{error}}\",\n /** Text for toast when release failed to schedule */\n 'toast.schedule.error': \"Failed to schedule '<strong>{{title}}</strong>': {{error}}\",\n /** Text for toast when release has been scheduled */\n 'toast.schedule.success': \"The '<strong>{{title}}</strong>' release was scheduled.\",\n /** Text for toast when release failed to unschedule */\n 'toast.unschedule.error': \"Failed to unscheduled '<strong>{{title}}</strong>': {{error}}\",\n /** Text for toast when release failed to unarchive */\n 'toast.unarchive.error': \"Failed to unarchive '<strong>{{title}}</strong>': {{error}}\",\n /** Text for tooltip when a release has been scheduled */\n 'type-picker.tooltip.scheduled': 'The release is scheduled, unschedule it to change type',\n /** Text for toast when release failed to revert */\n 'toast.revert.error': 'Failed to revert release: {{error}}',\n /** Text for toast when release has been reverted immediately */\n 'toast.immediate-revert.success': \"The '{{title}}' release was successfully reverted\",\n /** Text for toast when release has reverted release successfully staged */\n 'toast.revert-stage.success': \"Revert release for '{{title}}' was successfully created. <Link/>\",\n /** Link text for toast link to the generated revert release */\n 'toast.revert-stage.success-link': 'View revert release',\n\n /** Text for when a document is unpublished */\n 'unpublish.already-unpublished': 'This document is already unpublished.',\n /** Tooltip label for when a document is unpublished */\n 'unpublish.no-published-version': 'There is no published version of this document.',\n /** Title for the dialog confirming the unpublish of a release */\n 'unpublish-dialog.header': 'Are you sure you want to unpublish this document when releasing?',\n /** Text action in unpublish dialog to cancel */\n 'unpublish-dialog.action.cancel': 'Cancel',\n /** Text action in unpublish dialog to unpublish */\n 'unpublish-dialog.action.unpublish': 'Yes, unpublish when releasing',\n /** Description for the unpublish dialog, explaining that it will create a draft if no draft exists at time of release */\n 'unpublish-dialog.description.to-draft':\n 'This will unpublish the document as part of the <Label>{{title}}</Label> release, and create a draft if no draft exists at the time of release.',\n /** Description for unpublish dialog, explaining that all changes made to this document will be lost */\n 'unpublish-dialog.description.lost-changes':\n 'Any changes made to this document version will be lost.',\n\n /** Banner text shown when scheduled drafts feature is disabled but there are still scheduled drafts */\n 'banner.scheduled-drafts-disabled':\n 'Scheduled drafts has been disabled but there are still scheduled drafts to be published.',\n /** Banner text shown when drafts mode is disabled but there are still scheduled drafts */\n 'banner.drafts-mode-disabled':\n 'Drafts mode has been disabled but there are still scheduled drafts to be published.',\n /** Text for when no scheduled drafts are found */\n 'no-scheduled-drafts': 'No Scheduled Drafts',\n\n /** Banner text showing count of active scheduled drafts requiring confirmation with one draft */\n 'banner.confirm-active-scheduled-drafts_one':\n 'There is {{count}} Scheduled Draft that requires scheduling confirmation',\n /** Banner text showing count of active scheduled drafts requiring confirmation with multiple drafts */\n 'banner.confirm-active-scheduled-drafts_other':\n 'There are {{count}} Scheduled Drafts that require scheduling confirmation',\n /** Button text for confirming scheduling of active drafts */\n 'banner.confirm-active-scheduled-drafts.button': 'Resume scheduling',\n /** Button text when confirming schedules from paused mode */\n 'banner.confirm-active-scheduled-drafts.button-paused': 'Resume all schedules',\n\n /** Dialog title for confirming active scheduled drafts */\n 'confirm-active-scheduled-drafts-dialog.title': 'Resume Scheduled Drafts',\n /** Dialog description for confirming active scheduled drafts */\n 'confirm-active-scheduled-drafts-dialog.description':\n 'Schedule all paused Scheduled Drafts for their intended publish dates',\n /** Dialog warning when some scheduled drafts have past dates */\n 'confirm-active-scheduled-drafts-dialog.past-dates-warning':\n 'Some of these Scheduled Drafts are scheduled for past dates. Confirming schedules will immediately publish those versions of documents.',\n /** Dialog confirm button text for confirming all scheduled drafts */\n 'confirm-active-scheduled-drafts-dialog.confirm-button': 'Confirm Schedules',\n\n /** Toast error message when bulk scheduling of active drafts fails */\n 'toast.confirm-active-scheduled-drafts.error': 'Failed to schedule drafts: {{error}}',\n}\n\n/**\n * @alpha\n */\nexport type ReleasesLocaleResourceKeys = keyof typeof releasesLocaleStrings\n\nexport default releasesLocaleStrings\n"],"names":["releasesLocaleStrings"],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- var version = "5.22.0";
1
+ var version = "5.22.1-next.10+b45aa6e859";
2
2
  let buildVersion;
3
3
  try {
4
4
  buildVersion = process.env.PKG_BUILD_VERSION;
@@ -7,7 +7,7 @@ try {
7
7
  try {
8
8
  buildVersion = buildVersion || // This is replaced by `@sanity/pkg-utils` at build time
9
9
  // and must always be references by its full static name, e.g. no optional chaining, no `if (process && process.env)` etc.
10
- "5.22.0";
10
+ "5.22.1-next.10+b45aa6e859";
11
11
  } catch {
12
12
  }
13
13
  const SANITY_VERSION = buildVersion || `${version}-dev`;