sanity 5.22.0-next.21 → 5.22.0-next.22

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.
@@ -15113,11 +15113,13 @@ interface GroupableActionDescription<GroupType = unknown> extends BaseActionDesc
15113
15113
  }
15114
15114
  /**
15115
15115
  * Symbol for configuring decision parameters schema
15116
+ * @hidden
15116
15117
  * @beta
15117
15118
  */
15118
15119
  declare const DECISION_PARAMETERS_SCHEMA: unique symbol;
15119
15120
  /**
15120
15121
  * Configuration for decision parameters
15122
+ * @hidden
15121
15123
  * @beta
15122
15124
  */
15123
15125
  interface DecisionParametersConfig {
@@ -15281,7 +15283,10 @@ interface ConfigContext$1 {
15281
15283
  * Localization resources
15282
15284
  */
15283
15285
  i18n: LocaleSource;
15284
- /** @beta */
15286
+ /**
15287
+ * @hidden
15288
+ * @beta
15289
+ */
15285
15290
  [DECISION_PARAMETERS_SCHEMA]?: DecisionParametersConfig;
15286
15291
  }
15287
15292
  /** @public */
@@ -15492,7 +15497,10 @@ interface PluginOptions {
15492
15497
  __internal_serverDocumentActions?: WorkspaceOptions['__internal_serverDocumentActions'];
15493
15498
  /** Configuration for Scheduled drafts */
15494
15499
  scheduledDrafts?: DefaultPluginsWorkspaceOptions['scheduledDrafts'];
15495
- /** @beta */
15500
+ /**
15501
+ * @hidden
15502
+ * @beta
15503
+ */
15496
15504
  [DECISION_PARAMETERS_SCHEMA]?: DecisionParametersConfig;
15497
15505
  /** Configuration for Content Releases */
15498
15506
  releases?: DefaultPluginsWorkspaceOptions['releases'];
@@ -15636,6 +15644,7 @@ interface WorkspaceOptions extends SourceOptions {
15636
15644
  };
15637
15645
  scheduledDrafts?: DefaultPluginsWorkspaceOptions['scheduledDrafts'];
15638
15646
  /**
15647
+ * @hidden
15639
15648
  * @beta
15640
15649
  */
15641
15650
  [DECISION_PARAMETERS_SCHEMA]?: DecisionParametersConfig;
@@ -1,4 +1,4 @@
1
- var version = "5.22.0-next.21+9060f82806";
1
+ var version = "5.22.0-next.22+58a48692d1";
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-next.21+9060f82806";
10
+ "5.22.0-next.22+58a48692d1";
11
11
  } catch {
12
12
  }
13
13
  const SANITY_VERSION = buildVersion || `${version}-dev`;