@bedrock-rbx/core 0.1.0-beta.12 → 0.1.0-beta.14

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.
@@ -1072,6 +1072,124 @@ type ConfigError = {
1072
1072
  //#endregion
1073
1073
  //#region src/core/schema.d.ts
1074
1074
  /**
1075
+ * Per-field redaction override for a game-pass entry. Each supplied field
1076
+ * replaces the matching bedrock-supplied placeholder; omitted fields fall
1077
+ * through to the placeholder defaults. The object form implies redaction
1078
+ * is enabled, so authors who want only defaults should write
1079
+ * `redacted: true` instead of an empty object.
1080
+ *
1081
+ * @example
1082
+ *
1083
+ * ```ts
1084
+ * import type { GamePassEntry, RedactedGamePassOverride } from "@bedrock-rbx/core/config";
1085
+ *
1086
+ * const override: RedactedGamePassOverride = { name: "Closed Beta", price: 500 };
1087
+ *
1088
+ * const entry: GamePassEntry = {
1089
+ * name: "VIP Pass",
1090
+ * description: "Grants VIP perks.",
1091
+ * icon: { "en-us": "assets/vip.png" },
1092
+ * price: 1500,
1093
+ * redacted: override,
1094
+ * };
1095
+ *
1096
+ * expect(entry.redacted).toStrictEqual({ name: "Closed Beta", price: 500 });
1097
+ * ```
1098
+ */
1099
+ interface RedactedGamePassOverride {
1100
+ /** Override name; falls through to the bedrock default when omitted. */
1101
+ name?: string | undefined;
1102
+ /** Override description; falls through to the bedrock default when omitted. */
1103
+ description?: string | undefined;
1104
+ /** Override icon path; falls through to the embedded placeholder when omitted. */
1105
+ icon?: Record<"en-us", string> | undefined;
1106
+ /**
1107
+ * Override Robux price; falls through to the bedrock default (`99999`) when
1108
+ * omitted. Ignored when the entry's `price` is `undefined` so an off-sale
1109
+ * pass stays off-sale through redaction.
1110
+ */
1111
+ price?: number | undefined;
1112
+ }
1113
+ /**
1114
+ * Per-field redaction override for a place entry. Each supplied field
1115
+ * replaces the matching bedrock-supplied placeholder; omitted `description`
1116
+ * falls through to the placeholder default. `displayName` has no
1117
+ * placeholder default; an omitted `displayName` preserves the real value
1118
+ * declared on the entry. The object form implies redaction is enabled, so
1119
+ * authors who want only the description default should write
1120
+ * `redacted: true` instead of an empty object.
1121
+ *
1122
+ * @example
1123
+ *
1124
+ * ```ts
1125
+ * import type { PlaceEntry, RedactedPlaceOverride } from "@bedrock-rbx/core/config";
1126
+ *
1127
+ * const override: RedactedPlaceOverride = { displayName: "Hidden Project" };
1128
+ *
1129
+ * const entry: PlaceEntry = {
1130
+ * description: "The lobby place.",
1131
+ * displayName: "Start Place",
1132
+ * filePath: "places/start.rbxl",
1133
+ * redacted: override,
1134
+ * };
1135
+ *
1136
+ * expect(entry.redacted).toStrictEqual({ displayName: "Hidden Project" });
1137
+ * ```
1138
+ */
1139
+ interface RedactedPlaceOverride {
1140
+ /** Override description; falls through to the bedrock default when omitted. */
1141
+ description?: string | undefined;
1142
+ /** Override display name; preserves the real entry value when omitted (no default). */
1143
+ displayName?: string | undefined;
1144
+ }
1145
+ /**
1146
+ * Env-scoped redaction override that applies across every redactable kind in
1147
+ * a single environment. Each field is projected onto the kinds whose own
1148
+ * override type names it: `price`, `name`, and `icon` reach passes and
1149
+ * products; `description` reaches passes, products, and places; `displayName`
1150
+ * reaches places. Fields a kind does not recognize are silently ignored for
1151
+ * that kind.
1152
+ *
1153
+ * Composes field-by-field with per-resource overrides at the root and inside
1154
+ * an env overlay; the most-specific layer wins per field. Boolean `true`
1155
+ * contributes no fields; `false` carves the resource out at its layer.
1156
+ *
1157
+ * @example
1158
+ *
1159
+ * ```ts
1160
+ * import type { Config, RedactedEnvironmentOverride } from "@bedrock-rbx/core/config";
1161
+ *
1162
+ * const devRedaction: RedactedEnvironmentOverride = { price: 1 };
1163
+ *
1164
+ * const config: Config = {
1165
+ * environments: { dev: { redacted: devRedaction } },
1166
+ * passes: {
1167
+ * "vip-pass": {
1168
+ * name: "VIP Pass",
1169
+ * description: "Grants VIP perks.",
1170
+ * icon: { "en-us": "assets/vip.png" },
1171
+ * price: 500,
1172
+ * },
1173
+ * },
1174
+ * state: { backend: "gist", gistId: "abc123" },
1175
+ * };
1176
+ *
1177
+ * expect(config.environments["dev"]?.redacted).toStrictEqual({ price: 1 });
1178
+ * ```
1179
+ */
1180
+ interface RedactedEnvironmentOverride {
1181
+ /** Override name applied to every passes and products entry the env redacts. */
1182
+ name?: string | undefined;
1183
+ /** Override description applied to every passes, products, and places entry the env redacts. */
1184
+ description?: string | undefined;
1185
+ /** Override display name applied only to places (and universes, when their redaction lands). */
1186
+ displayName?: string | undefined;
1187
+ /** Override icon path applied to every passes and products entry the env redacts. */
1188
+ icon?: Record<"en-us", string> | undefined;
1189
+ /** Override Robux price applied to every on-sale passes and products entry the env redacts. */
1190
+ price?: number | undefined;
1191
+ }
1192
+ /**
1075
1193
  * Body of a single entry in the `passes` collection. Keys in the parent
1076
1194
  * record are `ResourceKey`-shaped strings enforced at schema validation.
1077
1195
  */
@@ -1088,6 +1206,62 @@ interface GamePassEntry {
1088
1206
  icon: Record<"en-us", string>;
1089
1207
  /** Robux price, or omitted / `undefined` for off-sale. */
1090
1208
  price?: number | undefined;
1209
+ /**
1210
+ * Set to `true` to deploy this pass with bedrock-supplied placeholder
1211
+ * content (default name, empty description, embedded placeholder icon,
1212
+ * price `99999` Robux when the entry is on-sale) in place of the real
1213
+ * values declared above. Off-sale passes (`price` omitted) stay off-sale.
1214
+ * Set to a {@link RedactedGamePassOverride} to substitute selected
1215
+ * placeholders with custom values while leaving the rest at bedrock
1216
+ * defaults; the object form implies redaction is enabled. Omit or set
1217
+ * `false` to push the real values unchanged. Environment overlays accept
1218
+ * the same shape and compose field-by-field with this layer.
1219
+ */
1220
+ redacted?: boolean | RedactedGamePassOverride | undefined;
1221
+ }
1222
+ /**
1223
+ * Per-field redaction override for a developer-product entry. Each supplied
1224
+ * field replaces the matching bedrock-supplied placeholder; omitted fields
1225
+ * fall through to the placeholder defaults. The object form implies
1226
+ * redaction is enabled, so authors who want only defaults should write
1227
+ * `redacted: true` instead of an empty object.
1228
+ *
1229
+ * @example
1230
+ *
1231
+ * ```ts
1232
+ * import type {
1233
+ * DeveloperProductEntry,
1234
+ * RedactedDeveloperProductOverride,
1235
+ * } from "@bedrock-rbx/core/config";
1236
+ *
1237
+ * const override: RedactedDeveloperProductOverride = {
1238
+ * name: "Closed Beta Pack",
1239
+ * price: 500,
1240
+ * };
1241
+ *
1242
+ * const entry: DeveloperProductEntry = {
1243
+ * name: "Gem Pack",
1244
+ * description: "Stocks the player up with 1,000 premium gems.",
1245
+ * price: 1500,
1246
+ * redacted: override,
1247
+ * };
1248
+ *
1249
+ * expect(entry.redacted).toStrictEqual({ name: "Closed Beta Pack", price: 500 });
1250
+ * ```
1251
+ */
1252
+ interface RedactedDeveloperProductOverride {
1253
+ /** Override name; falls through to the bedrock default when omitted. */
1254
+ name?: string | undefined;
1255
+ /** Override description; falls through to the bedrock default when omitted. */
1256
+ description?: string | undefined;
1257
+ /** Override icon path; falls through to the embedded placeholder when omitted. */
1258
+ icon?: Record<"en-us", string> | undefined;
1259
+ /**
1260
+ * Override Robux price; falls through to the bedrock default (`99999`) when
1261
+ * omitted. Ignored when the entry's `price` is `undefined` so an off-sale
1262
+ * product stays off-sale through redaction.
1263
+ */
1264
+ price?: number | undefined;
1091
1265
  }
1092
1266
  /**
1093
1267
  * Body of a single entry in the `products` collection. Keys in the parent
@@ -1116,6 +1290,19 @@ interface DeveloperProductEntry {
1116
1290
  */
1117
1291
  price?: number | undefined;
1118
1292
  /**
1293
+ * Set to `true` to deploy this product with bedrock-supplied placeholder
1294
+ * content (default name, empty description, embedded placeholder icon,
1295
+ * price `99999` Robux when the entry is on-sale) in place of the real
1296
+ * values declared above. Off-sale products (`price` omitted) stay
1297
+ * off-sale. Set to a {@link RedactedDeveloperProductOverride} to
1298
+ * substitute selected placeholders with custom values while leaving the
1299
+ * rest at bedrock defaults; the object form implies redaction is enabled.
1300
+ * Omit or set `false` to push the real values unchanged. Environment
1301
+ * overlays accept the same shape and compose field-by-field with this
1302
+ * layer.
1303
+ */
1304
+ redacted?: boolean | RedactedDeveloperProductOverride | undefined;
1305
+ /**
1119
1306
  * Whether the product appears on the universe's external store page.
1120
1307
  * Tri-state: omit (or set `undefined`) to leave the flag unmanaged.
1121
1308
  * The Roblox v2 create endpoint does not accept this field, so the
@@ -1137,6 +1324,19 @@ interface PlaceEntry {
1137
1324
  displayName?: string | undefined;
1138
1325
  /** Path to the `.rbxl` or `.rbxlx` file; handed to `readFile` verbatim by `buildDesired`. */
1139
1326
  filePath: string;
1327
+ /**
1328
+ * Set to `true` to deploy this place with bedrock-supplied placeholder
1329
+ * content (empty description) in place of the real values declared
1330
+ * above. `displayName` is preserved by default because it surfaces in
1331
+ * Roblox Studio's place picker and the Creator Hub experience list;
1332
+ * authors who want full opacity write the object form
1333
+ * {@link RedactedPlaceOverride} to substitute selected placeholders
1334
+ * with custom values, including `displayName`. The object form
1335
+ * implies redaction is enabled. Omit or set `false` to push the real
1336
+ * values unchanged. Environment overlays accept the same shape and
1337
+ * compose field-by-field with this layer.
1338
+ */
1339
+ redacted?: boolean | RedactedPlaceOverride | undefined;
1140
1340
  /** Maximum players per server; positive integer. */
1141
1341
  serverSize?: number | undefined;
1142
1342
  }
@@ -1160,6 +1360,12 @@ interface ResolvedPlaceEntry {
1160
1360
  filePath: string;
1161
1361
  /** Existing Roblox place ID. */
1162
1362
  placeId: string;
1363
+ /**
1364
+ * Resolved redaction setting after merging the per-environment overlay
1365
+ * onto the root entry. See {@link PlaceEntry.redacted} for the
1366
+ * authored shape.
1367
+ */
1368
+ redacted?: boolean | RedactedPlaceOverride | undefined;
1163
1369
  /** Maximum players per server; positive integer. */
1164
1370
  serverSize?: number | undefined;
1165
1371
  }
@@ -1294,10 +1500,11 @@ interface EnvironmentEntry {
1294
1500
  * Per-environment game-pass overlay. Every field is optional; missing
1295
1501
  * fields fall through to the matching root `passes` entry at merge time.
1296
1502
  *
1297
- * Uses `Partial<GamePassEntry>` directly rather than `Overlay<T, K>`
1503
+ * Uses a partial `GamePassEntry` directly rather than `Overlay<T, K>`
1298
1504
  * because game passes have no user-supplied identity key (Open Cloud
1299
- * mints the asset ID). The other overlay fields use `Overlay<T, K>`
1300
- * to keep their identity-bearing key required.
1505
+ * mints the asset ID). The `redacted` field accepts the same shape it
1506
+ * does at the root entry: a boolean toggle or a {@link RedactedGamePassOverride}
1507
+ * carrying per-field overrides for this resource in this environment.
1301
1508
  */
1302
1509
  passes?: Record<string, Partial<GamePassEntry>>;
1303
1510
  /**
@@ -1311,9 +1518,20 @@ interface EnvironmentEntry {
1311
1518
  * missing fields fall through to the matching root `products` entry at
1312
1519
  * merge time. Mirrors the `passes` shape because developer products
1313
1520
  * also have no user-supplied identity key (Open Cloud mints the
1314
- * `productId`).
1521
+ * `productId`). The `redacted` field accepts the same shape it does
1522
+ * at the root entry: a boolean toggle or a
1523
+ * {@link RedactedDeveloperProductOverride} carrying per-field
1524
+ * overrides for this resource in this environment.
1315
1525
  */
1316
1526
  products?: Record<string, Partial<DeveloperProductEntry>>;
1527
+ /**
1528
+ * Per-environment redaction layer. Accepts a boolean toggle or a
1529
+ * {@link RedactedEnvironmentOverride} carrying cross-kind override
1530
+ * fields. Per-resource `redacted` flags on the merged config take
1531
+ * precedence per field; `false` at any layer carves out at that
1532
+ * layer.
1533
+ */
1534
+ redacted?: boolean | RedactedEnvironmentOverride | undefined;
1317
1535
  /** Per-environment state override; takes precedence over root `state`. */
1318
1536
  state?: StateConfig;
1319
1537
  /**
@@ -1383,6 +1601,15 @@ interface DisplayNamePrefixConfig {
1383
1601
  format?: string | undefined;
1384
1602
  }
1385
1603
  /**
1604
+ * Helper that produces a shallow `Omit<T, K>` without using TypeScript's
1605
+ * built-in `Omit` (deprecated under the project's lint rules because of
1606
+ * its lossy interaction with mapped types).
1607
+ *
1608
+ * @template T - Source type to project keys away from.
1609
+ * @template Key - Key (or union of keys) on `T` to remove.
1610
+ */
1611
+ type WithoutKey<T, Key extends keyof T> = Pick<T, Exclude<keyof T, Key>>;
1612
+ /**
1386
1613
  * Per-environment universe overlay shape that prevents `universeId` from
1387
1614
  * being redeclared alongside a root-authoritative `universeId`.
1388
1615
  * Used by {@link ConfigRootUniverseId}: when the root universe block
@@ -1570,15 +1797,6 @@ interface ResolvedConfig extends Pick<ConfigBase, Exclude<keyof ConfigBase, "pla
1570
1797
  */
1571
1798
  type Overlay<T, RequiredKey extends keyof T> = SetRequired<Partial<T>, RequiredKey>;
1572
1799
  /**
1573
- * Helper that produces a shallow `Omit<T, K>` without using TypeScript's
1574
- * built-in `Omit` (deprecated under the project's lint rules because of
1575
- * its lossy interaction with mapped types).
1576
- *
1577
- * @template T - Source type to project keys away from.
1578
- * @template Key - Key (or union of keys) on `T` to remove.
1579
- */
1580
- type WithoutKey<T, Key extends keyof T> = Pick<T, Exclude<keyof T, Key>>;
1581
- /**
1582
1800
  * Fields shared by every {@link Config} variant. The discriminated
1583
1801
  * `Config` union narrows `universe` and `environments` to enforce the
1584
1802
  * `universeId` XOR rule between the root and per-environment overlays;
@@ -1719,5 +1937,5 @@ type ConfigInput = ((ctx: ConfigContext) => Config | Promise<Config>) | Config;
1719
1937
  */
1720
1938
  declare function defineConfig<T extends ConfigInput>(config: T): T;
1721
1939
  //#endregion
1722
- export { ConfigError as C, validateConfig as S, StateConfig as _, ConfigEnvironmentUniverseId as a, UniverseOverlayWithoutId as b, DisplayNamePrefixConfig as c, GistStateConfig as d, PlaceEntry as f, ResourceEntryByKind as g, ResolvedUniverseEntry as h, Config as i, EnvironmentEntry as l, ResolvedPlaceEntry as m, ConfigInput as n, ConfigRootUniverseId as o, ResolvedConfig as p, defineConfig as r, DeveloperProductEntry as s, ConfigContext as t, GamePassEntry as u, UniverseEntry as v, ConfigValidationIssue as w, isGistStateConfig as x, UniverseOverlayWithId as y };
1723
- //# sourceMappingURL=define-config-87u2jqjM.d.mts.map
1940
+ export { UniverseOverlayWithId as C, ConfigError as D, validateConfig as E, ConfigValidationIssue as O, UniverseEntry as S, isGistStateConfig as T, ResolvedConfig as _, ConfigEnvironmentUniverseId as a, ResourceEntryByKind as b, DisplayNamePrefixConfig as c, GistStateConfig as d, PlaceEntry as f, RedactedPlaceOverride as g, RedactedGamePassOverride as h, Config as i, EnvironmentEntry as l, RedactedEnvironmentOverride as m, ConfigInput as n, ConfigRootUniverseId as o, RedactedDeveloperProductOverride as p, defineConfig as r, DeveloperProductEntry as s, ConfigContext as t, GamePassEntry as u, ResolvedPlaceEntry as v, UniverseOverlayWithoutId as w, StateConfig as x, ResolvedUniverseEntry as y };
1941
+ //# sourceMappingURL=define-config-C2cOtDpP.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"define-config-87u2jqjM.d.mts","names":["UnionToIntersection","Union","Intersection","distributedUnion","mergedIntersection","UnionToIntersection","KeysOfUnion","ObjectType","Record","IsAny","T","NoInfer","IsAny","IsOptionalKeyOf","Type","Key","Record","IsOptionalKeyOf","OptionalKeysOf","Type","Key","OptionalKeysOf","RequiredKeysOf","Type","Exclude","IsNever","T","IsNever","If","Type","IfBranch","ElseBranch","UnknownArray","If","IsNever","OptionalKeysOf","UnknownArray","IsExactOptionalPropertyTypesEnabled","IfNotAnyOrNever","UnknownArrayOrTuple","FirstArrayElement","TArray","THead","StaticPartOfArray","T","Result","V","U","VariablePartOfArray","SetArrayAccess","IsReadonly","IsArrayReadonly","CollapseRestElement","_CollapseRestElement","ForwardAccumulator","BackwardAccumulator","Rest","Last","First","Simplify","T","KeyType","IsEqual","A","B","_IsEqual","G","OmitIndexSignature","ObjectType","KeyType","Record","PickIndexSignature","ObjectType","KeyType","Record","OmitIndexSignature","PickIndexSignature","Simplify","If","IsEqual","SimpleMerge","Destination","Source","Key","Merge","_Merge","Simplify","IsEqual","KeysOfUnion","RequiredKeysOf","Merge","OptionalKeysOf","IsAny","If","IsNever","FilterDefinedKeys","FilterOptionalKeys","MapsSetsOrArrays","NonRecursiveType","StringToNumber","ToString","BuildObject","Key","Value","CopiedFrom","PropertyKey","Pick","NumberKey","_","IsPlainObject","T","ObjectValue","K","NumberK","UndefinedToOptional","Exclude","HomomorphicPick","Keys","P","Extract","ValueOfUnion","Union","ReadonlyKeysOfUnion","ApplyDefaultOptions","Options","Defaults","SpecifiedOptions","Required","Omit","Record","Partial","CollapseLiterals","U","NormalizedKeys","ApplyDefaultOptions","IsEqual","Filter","KeyType","ExcludeType","ExceptOptions","requireExactProps","DefaultExceptOptions","Except","ObjectType","KeysType","Options","_Except","Required","Record","Partial","Except","If","HomomorphicPick","IsArrayReadonly","OptionalKeysOf","Simplify","UnknownArray","SetRequired","BaseType","Keys","Parameters","ReturnType","_SetRequired","arguments_","SetArrayRequired","ResultantArray","Readonly","Required","TArray","Counter","Accumulator","Rest","First"],"sources":["../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/keys-of-union.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/is-any.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/is-optional-key-of.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/optional-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/required-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/is-never.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/if.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/unknown-array.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/internal/array.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/simplify.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/is-equal.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/omit-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/pick-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/merge.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/internal/object.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/except.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/set-required.d.ts","../src/core/config-error.ts","../src/core/schema.ts","../src/shell/define-config.ts"],"x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"mappings":"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"}
1
+ {"version":3,"file":"define-config-C2cOtDpP.d.mts","names":["UnionToIntersection","Union","Intersection","distributedUnion","mergedIntersection","UnionToIntersection","KeysOfUnion","ObjectType","Record","IsAny","T","NoInfer","IsAny","IsOptionalKeyOf","Type","Key","Record","IsOptionalKeyOf","OptionalKeysOf","Type","Key","OptionalKeysOf","RequiredKeysOf","Type","Exclude","IsNever","T","IsNever","If","Type","IfBranch","ElseBranch","UnknownArray","If","IsNever","OptionalKeysOf","UnknownArray","IsExactOptionalPropertyTypesEnabled","IfNotAnyOrNever","UnknownArrayOrTuple","FirstArrayElement","TArray","THead","StaticPartOfArray","T","Result","V","U","VariablePartOfArray","SetArrayAccess","IsReadonly","IsArrayReadonly","CollapseRestElement","_CollapseRestElement","ForwardAccumulator","BackwardAccumulator","Rest","Last","First","Simplify","T","KeyType","IsEqual","A","B","_IsEqual","G","OmitIndexSignature","ObjectType","KeyType","Record","PickIndexSignature","ObjectType","KeyType","Record","OmitIndexSignature","PickIndexSignature","Simplify","If","IsEqual","SimpleMerge","Destination","Source","Key","Merge","_Merge","Simplify","IsEqual","KeysOfUnion","RequiredKeysOf","Merge","OptionalKeysOf","IsAny","If","IsNever","FilterDefinedKeys","FilterOptionalKeys","MapsSetsOrArrays","NonRecursiveType","StringToNumber","ToString","BuildObject","Key","Value","CopiedFrom","PropertyKey","Pick","NumberKey","_","IsPlainObject","T","ObjectValue","K","NumberK","UndefinedToOptional","Exclude","HomomorphicPick","Keys","P","Extract","ValueOfUnion","Union","ReadonlyKeysOfUnion","ApplyDefaultOptions","Options","Defaults","SpecifiedOptions","Required","Omit","Record","Partial","CollapseLiterals","U","NormalizedKeys","ApplyDefaultOptions","IsEqual","Filter","KeyType","ExcludeType","ExceptOptions","requireExactProps","DefaultExceptOptions","Except","ObjectType","KeysType","Options","_Except","Required","Record","Partial","Except","If","HomomorphicPick","IsArrayReadonly","OptionalKeysOf","Simplify","UnknownArray","SetRequired","BaseType","Keys","Parameters","ReturnType","_SetRequired","arguments_","SetArrayRequired","ResultantArray","Readonly","Required","TArray","Counter","Accumulator","Rest","First"],"sources":["../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/keys-of-union.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/is-any.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/is-optional-key-of.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/optional-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/required-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/is-never.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/if.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/unknown-array.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/internal/array.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/simplify.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/is-equal.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/omit-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/pick-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/merge.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/internal/object.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/except.d.ts","../../../node_modules/.pnpm/type-fest@5.6.0/node_modules/type-fest/source/set-required.d.ts","../src/core/config-error.ts","../src/core/schema.ts","../src/shell/define-config.ts"],"x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"mappings":";;;;;;;;AAiBA;;;;;;;;;;;;;KAAYA,mBAAAA;AAAAA;AAAAA;AAIXC,KAAAA;AAAAA;AAAAA,GAGIE,gBAAAA,EAAkBF,KAAAA;AAAAA;AAAAA;AAAAA,YAKXG,kBAAAA;AAAAA,EAETF,YAAAA,GAAeD,KAAAA;;;;;AAdlB;;;;;;;;;;;;;;;;;;;;;;ACsBA;;;;;;;;;;;;;KAAYK,WAAAA;AAAAA,MAELD,mBAAAA,CAAoBE,UAAAA,mBAA6BC,MAAAA,OAAaD,UAAAA;;;;;;;ADxBrE;;;;;;;;;;;;;;;;;;;;;;ACsBA;;KCXYE,KAAAA,oBAAyBE,OAAAA,CAAQD,CAAAA;;;;;AFX7C;;;;;;;;;;;;;;;;;;;;;;ACsBA;;;;;;;;;;;;;;;;KEGYG,eAAAA,wCAAuDC,IAAAA,IAClEF,KAAAA,CAAME,IAAAA,GAAOC,GAAAA,yBACVA,GAAAA,eAAkBD,IAAAA,GACjBA,IAAAA,SAAaE,MAAAA,CAAOD,GAAAA,EAAKD,IAAAA,CAAKC,GAAAA;;;;;AH5BnC;;;;;;;;;;;;;;;;;;;;;;ACsBA;;;;;;;;;KGJYG,cAAAA,wBACXC,IAAAA;AAAAA,yBACyBA,IAAAA,IACvBF,eAAAA,CAAgBE,IAAAA,EAAMC,GAAAA,0BAEnBA,GAAAA,oBAEOD,IAAAA;AAAAA;;;;;AJzBb;;;;;;;;;;;;;;;;;;;;;;ACsBA;;;;;;KIPYG,cAAAA,wBACXC,IAAAA;AAAAA,EACGC,OAAAA,OAAcD,IAAAA,EAAMF,cAAAA,CAAeE,IAAAA;;;;;;;ALjBvC;;;;;;;;;;;;;;;;;;;;;;ACsBA;;;;;;;;;;;;;;;;;;;ACXA;;;;;;;;KIyBYE,OAAAA,OAAcC,CAAAA;;;;;ANpC1B;;;;;;;;;;;;;;;;;;;;;;ACsBA;;;;;;;;;;;;;;;;;;;ACXA;;;;;;;;;;;;ACcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACPA;;;KG2DYE,EAAAA,+CACXD,OAAAA,CAAQE,IAAAA,iBACLE,UAAAA,GACAF,IAAAA,gBACCC,QAAAA,GACAC,UAAAA;;;;;;;APlFL;;;;;;;;;;;;;;;;;;;;KQOYC,YAAAA;;;;;;KCwDAmB,eAAAA,WAA0Bf,YAAAA,IAAgBH,EAAAA,CAAGC,OAAAA,CAAQU,CAAAA,UAAWA,CAAAA;;;;;;;AT/D5E;;;;;;;;;;;;;;;;;;;;;;ACsBA;;;;;;;;;;;;;;;;;;;ACXA;;;;;;;;;;;;ACcA;KOgBYe,QAAAA,0BAAiCC,CAAAA,GAAIA,CAAAA,CAAEC,OAAAA;;;;;;;AVzCnD;;;;;;;;;;;;;;;;;;;;;;KWSYC,OAAAA,UACVC,CAAAA,WAAYC,CAAAA,KACTA,CAAAA,WAAYD,CAAAA,IACZE,QAAAA,CAASF,CAAAA,EAAGC,CAAAA;AAAAA;AAAAA,KAKZC,QAAAA,mBACMC,CAAAA,SAAUH,CAAAA,GAAIG,CAAAA,GAAIA,CAAAA,4BAClBA,CAAAA,SAAUF,CAAAA,GAAIE,CAAAA,GAAIA,CAAAA;;;;;;;AXnB7B;;;;;;;;;;;;;;;;;;;;;;ACsBA;;;;;;;;;;;;;;;;;;;ACXA;;;;;;;;;;;;ACcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KSiDYC,kBAAAA,mCACOC,UAAAA,eAAyBE,MAAAA,CAAOD,OAAAA,qBAE/CA,OAAAA,GAAUD,UAAAA,CAAWC,OAAAA;;;;;;;AZ7EzB;;;;;;;;;;;;;;;;;;;;;;ACsBA;;;;;;;;;;;;;;;;;;;KYMYE,kBAAAA,mCACOC,UAAAA,eAAyBE,MAAAA,CAAOD,OAAAA,aAC/CA,OAAAA,WACQD,UAAAA,CAAWC,OAAAA;;;;KCzClBO,WAAAA,wBAAmCH,QAAAA,iBACzBI,WAAAA,IAAeE,GAAAA,eAAkBD,MAAAA,WAAiBC,GAAAA,GAAMF,WAAAA,CAAYE,GAAAA,MAC/ED,MAAAA;;;;;;;;;;;;;;;;Ab8BJ;;;;;;;;;;;;;;;;;;;ACXA;;;;;;;;;;;;ACcA;;;;;;;;;;;;;;;;KW+BYE,KAAAA,wBACXH,WAAAA;AAAAA,EACGC,MAAAA;AAAAA,EACCJ,EAAAA,CAAGC,OAAAA,CAAQE,WAAAA,EAAaC,MAAAA,GAASD,WAAAA,EAAaI,MAAAA,CAAOJ,WAAAA,EAAaC,MAAAA;AAAAA;AAAAA;AAAAA,KAI3DG,MAAAA,wBACXR,QAAAA,CACCG,WAAAA,CAAYJ,kBAAAA,CAAmBK,WAAAA,GAAcL,kBAAAA,CAAmBM,MAAAA,KAC9DF,WAAAA,CAAYL,kBAAAA,CAAmBM,WAAAA,GAAcN,kBAAAA,CAAmBO,MAAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;ATnDpE;;;;;;;;;;;;KUiGYkC,eAAAA,iBAAgC5B,WAAAA,CAAYsB,CAAAA,mBAC3CA,CAAAA,IAAKS,OAAAA,CAAQD,CAAAA,EAAGD,IAAAA,IAAQP,CAAAA,CAAEQ,CAAAA;;;AP1GvC;;;;;;;;ACwDA;;;;;;;;;;;;;;;;;;;;;ACtBA;;;;;;;;;;;;;;;;;;AChCA;;;KImMYK,mBAAAA,0CAEMrC,QAAAA,CAAS0C,IAAAA,CAAKD,QAAAA,CAASH,OAAAA,GAAUnC,cAAAA,CAAemC,OAAAA,KAAYM,OAAAA,CAAQD,MAAAA,CAAOxC,cAAAA,CAAemC,OAAAA,sCAClFA,OAAAA,IAEzB/B,EAAAA,CAAGD,KAAAA,CAAMkC,gBAAAA,GAAmBD,QAAAA,EAC3BhC,EAAAA,CAAGC,OAAAA,CAAQgC,gBAAAA,GAAmBD,QAAAA,EAC7BvC,QAAAA,CAASI,KAAAA,CAAMmC,QAAAA,kBACAC,gBAAAA,IACXxB,GAAAA,SAAYX,cAAAA,CAAeiC,OAAAA,sBAA6BE,gBAAAA,CAAiBxB,GAAAA,YAAeA,GAAAA,GAAMA,GAAAA,GAC9FwB,gBAAAA,CAAiBxB,GAAAA,OAChByB,QAAAA,CAASH,OAAAA;;;;AfvNjB;;;;;;;;;;;;;;;;;;;;;;ACsBA;;;;KeTKY,MAAAA,yBAA+BD,OAAAA,CAAQE,OAAAA,EAASC,WAAAA,0BAAqCD,OAAAA,SAAgBC,WAAAA,WAAsBD,OAAAA;AAAAA,KAEpHE,aAAAA;;;;;;EAQXC,iBAAAA;AAAAA;AAAAA,KAGIC,oBAAAA;EACJD,iBAAAA;AAAAA;;;;;;;;;;;AbFD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACPA;;;;;;;;;;;KYmEYE,MAAAA,oCAA0CC,UAAAA,kBAA4BJ,aAAAA,SACjFO,OAAAA,CAAQH,UAAAA,EAAYC,QAAAA,EAAUV,mBAAAA,CAAoBK,aAAAA,EAAeE,oBAAAA,EAAsBI,OAAAA;AAAAA,KAEnFC,OAAAA,oCAA2CH,UAAAA,kBAA4BI,QAAAA,CAASR,aAAAA,yBAClEI,UAAAA,IAAcP,MAAAA,CAAOC,OAAAA,EAASO,QAAAA,IAAYD,UAAAA,CAAWN,OAAAA,OACnEQ,OAAAA,qCACFI,OAAAA,CAAQD,MAAAA,CAAOJ,QAAAA;;;;;;;;;;;;;;;;;;;;;;AfrElB;;;;;;KgBPYa,WAAAA,8BAAyCC,QAAAA,KACnDA,QAAAA,cAAqBK,UAAAA,uBACfA,UAAAA,EAAYH,UAAAA,CAAWF,QAAAA,MAAcG,UAAAA,CAAWH,QAAAA,eAErDI,YAAAA,CAAaJ,QAAAA,EAAUC,IAAAA;AAAAA,KAErBG,YAAAA,8BAA0CJ,QAAAA,IAC9CA,QAAAA,SAAiBF,YAAAA,GACdQ,gBAAAA,CAAiBN,QAAAA,EAAUC,IAAAA,iCAC1BR,EAAAA,CAAGE,eAAAA,CAAgBK,QAAAA,GAAWQ,QAAAA,CAASD,cAAAA,GAAiBA,cAAAA,YAEzDV,QAAAA;AAEDL,MAAAA,CAAOQ,QAAAA,EAAUC,IAAAA;AAAAA,EAEfQ,QAAAA,CAASf,eAAAA,CAAgBM,QAAAA,EAAUC,IAAAA;;;;KAMnCK,gBAAAA,gBACWR,YAAAA,wDAGKA,YAAAA,SACjBY,MAAAA;AAAAA,QACKA,MAAAA;AAAAA;AAAAA,MAGDE,WAAAA,KAAgBF,MAAAA,IACpBA,MAAAA,gEACad,cAAAA,CAAec,MAAAA;AAAAA,KACvBC,OAAAA,wBAA+BV,IAAAA;AAAAA,EACjCK,gBAAAA,CAAiBO,IAAAA,EAAMZ,IAAAA,MAAUU,OAAAA,YAAmBC,WAAAA,EAAaE,KAAAA;AAAAA;AAAAA,MAG7DF,WAAAA,KAAgBF,MAAAA,IACrBJ,gBAAAA,CAAiBO,IAAAA,EAAMZ,IAAAA,MAAUU,OAAAA,YAAmBC,WAAAA,EAAaF,MAAAA;AAAAA;;;;;;;AjBrDvE;;;;;;;;;;;;;;UkBCiB,qBAAA;;WAEP,OAAA;;WAEA,IAAA,EAAM,aAAA;AAAA;;;AjBiBhB;;;;;;;;;;;;;;;;;;;ACXA;;;;;;;;;;;;ACcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACPA;;;;;;;;;;;;;;;;KcyEY,WAAA;EAAA,SAEA,IAAA;EAAA,SACA,IAAA;EAAA,SACA,UAAA;AAAA;EAAA,SAGA,MAAA,EAAQ,aAAA,CAAc,qBAAA;EAAA,SACtB,IAAA;EAAA,SACA,UAAA;AAAA;EAAA,SAGA,IAAA;EAAA,SACA,OAAA;EAAA,SACA,UAAA;AAAA;EAAA,SAGA,IAAA;EAAA,SACA,YAAA;AAAA;EAAA,SAGA,IAAA;EAAA,SACA,OAAA;EAAA,SACA,UAAA;AAAA;;;AlBlHZ;;;;;;;;;;;;;;;;;;;;;;ACsBA;;;ADtBA,UmBqBiB,wBAAA;;EAEhB,IAAA;;EAEA,WAAA;ElBDyB;EkBGzB,IAAA,GAAO,MAAA;;;;;;EAMP,KAAA;AAAA;;;AjBtBD;;;;;;;;;;;;ACcA;;;;;;;;;;;;UgBqCiB,qBAAA;;EAEhB,WAAA;EhBpCuB;EgBsCvB,WAAA;AAAA;;;;;;;;;;;;;;;;;AfhDD;;;;;;;;;;;;;;;;;;;UesFiB,2BAAA;;EAEhB,IAAA;EfjFgB;EemFhB,WAAA;;EAEA,WAAA;Ed/FD;EciGC,IAAA,GAAO,MAAA;;EAEP,KAAA;AAAA;;;;;UAOgB,aAAA;;EAEhB,IAAA;;EAEA,WAAA;;;;;;EAMA,IAAA,EAAM,MAAA;;EAEN,KAAA;EbjGkB;;;;;;;ACyCnB;;;;EYoEC,QAAA,aAAqB,wBAAA;AAAA;;;;;;;;;;;;;;;;;;;;AX1ItB;;;;;;;;ACwDA;;;UUmHiB,gCAAA;;EAEhB,IAAA;;EAEA,WAAA;;EAEA,IAAA,GAAO,MAAA;;;;;;EAMP,KAAA;AAAA;;;;;UAOgB,qBAAA;ET5JG;ES8JnB,IAAA;;EAEA,WAAA;;;;;;EAMA,IAAA,GAAO,MAAA;;;;;;EAMP,wBAAA;;AR5MD;;;EQiNC,KAAA;;;;;;;;;;;;;EAaA,QAAA,aAAqB,gCAAA;;;;;;;EAOrB,gBAAA;AAAA;;;;;;;;UAUgB,UAAA;;EAEhB,WAAA;ERvO6B;EQyO7B,WAAA;;EAEA,QAAA;;;;;;;;;;;;;EAaA,QAAA,aAAqB,qBAAA;;EAErB,UAAA;AAAA;;;;;;;;;;;;UAcgB,kBAAA;;EAEhB,WAAA;;EAEA,WAAA;;EAEA,QAAA;EPpN+B;EOsN/B,OAAA;;;ANvQD;;;EM6QC,QAAA,aAAqB,qBAAA;;EAErB,UAAA;AAAA;;;;;;;;;;;;;;;;UAkBgB,aAAA;;EAEhB,cAAA;ELzUe;EK2Uf,cAAA;;;;;EAKA,iBAAA,GAAoB,UAAA;;;;;;EAMpB,WAAA;;;;;EAKA,kBAAA,GAAqB,UAAA;;;;;EAKrB,iBAAA,GAAoB,UAAA;;EAEpB,aAAA;ELhSD;;;;;EKsSC,uBAAA;;;;;EAKA,qBAAA,GAAwB,UAAA;;EAExB,aAAA;;;;;EAKA,gBAAA,GAAmB,UAAA;;;;;EAKnB,iBAAA,GAAoB,UAAA;;;;;;;EAOpB,UAAA;ELvTiB;EKyTjB,gBAAA;;EAEA,SAAA;;;;;EAKA,iBAAA,GAAoB,UAAA;AAAA;;;;;;UAQJ,eAAA;;WAEP,OAAA;;WAEA,MAAA;AAAA;;;;;;;;KAUE,WAAA,GAAc,eAAA;EAAA,SAA6B,OAAA;AAAA;;;AJrSvD;;;;;;;;;;;;UIqTiB,gBAAA;;;;;;;;EAQhB,KAAA;;;;;;AJjOD;;;;;EI4OC,MAAA,GAAS,MAAA,SAAe,OAAA,CAAQ,aAAA;;;;;;EAMhC,MAAA,GAAS,MAAA,SAAe,OAAA,CAAQ,kBAAA;;;;;;;;;;;EAWhC,QAAA,GAAW,MAAA,SAAe,OAAA,CAAQ,qBAAA;;;;;;;;EAQlC,QAAA,aAAqB,2BAAA;;EAErB,KAAA,GAAQ,WAAA;;;;;;;EAOR,QAAA,GAAW,OAAA,CAAQ,aAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;UAyBH,mBAAA;;EAEhB,gBAAA,EAAkB,qBAAA;;EAElB,QAAA,EAAU,aAAA;;EAEV,KAAA,EAAO,kBAAA;;EAEP,QAAA,EAAU,aAAA;AAAA;;;;;;;;UAUM,uBAAA;;AHrhB4B;;;EG0hB5C,OAAA;;;;;;;;;;;;EAYA,MAAA;AAAA;;;;;AHvgBD;;;;KGkhBY,UAAA,sBAAgC,CAAA,IAAK,IAAA,CAAK,CAAA,EAAG,OAAA,OAAc,CAAA,EAAG,GAAA;;;AH5c1E;;;;;;KGsdY,wBAAA,GAA2B,OAAA,CAAQ,UAAA,CAAW,aAAA;EACzD,UAAA;IAAA,SACU,UAAA;EAAA;AAAA;;;;;;;KAUC,qBAAA,GAAwB,OAAA,CAAQ,UAAA,CAAW,aAAA;EACtD,UAAA;AAAA;;;;;;;;;KAWW,oBAAA,GAAuB,UAAA;EH3evB;;;;;;EGkfX,YAAA,EAAc,MAAA,SAEb,UAAA,CAAW,gBAAA;IAAkC,QAAA,GAAW,wBAAA;EAAA;;;;;;EAOzD,QAAA,GAAW,aAAA;IAAkB,UAAA;EAAA;AAAA;;;;;;;;;KAWlB,2BAAA,GAA8B,UAAA;;;;;;;EAOzC,YAAA,EAAc,MAAA,SAEb,UAAA,CAAW,gBAAA;IAAkC,QAAA,GAAW,qBAAA;EAAA;;;;AFxlB1D;;;EEgmBC,QAAA,GAAW,UAAA,CAAW,aAAA;IACrB,UAAA;MAAA,SACU,UAAA;IAAA;EAAA;AAAA;;;;;;;;;;;;;;;;;;;;;AF9lBoB;;;;;;;;;;;;;;KEqoBpB,MAAA,GAAS,2BAAA,GAA8B,oBAAA;;;;;;;;;;UAWlC,qBAAA,SAA8B,IAAA,CAC9C,aAAA,EACA,OAAA,OAAc,aAAA;;EAGd,UAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;AF1oB2C;;;;;;;;;;UE6qB3B,cAAA,SAAuB,IAAA,CAAK,UAAA,EAAY,OAAA,OAAc,UAAA;;;;;;EAMtE,YAAA,EAAc,MAAA,SAAe,gBAAA;;EAE7B,MAAA,GAAS,MAAA,SAAe,kBAAA;;;;;;;EAOxB,QAAA,GAAW,qBAAA;AAAA;;;;;;;;;;;KAaP,OAAA,8BAAqC,CAAA,IAAK,WAAA,CAAY,OAAA,CAAQ,CAAA,GAAI,WAAA;;;;;;;UAQ7D,UAAA;;;;;;;EAOT,iBAAA,GAAoB,uBAAA;;EAEpB,OAAA;;EAEA,MAAA,GAAS,MAAA,SAAe,aAAA;;EAExB,MAAA,GAAS,MAAA,SAAe,UAAA;;EAExB,QAAA,GAAW,MAAA,SAAe,qBAAA;;EAE1B,KAAA,GAAQ,WAAA;AAAA;AD/vBT;;;;;;;;;AA0FA;;;;;;;;;;;;;;AA1FA,iBCyxBgB,iBAAA,CAAkB,MAAA,EAAQ,WAAA,GAAc,MAAA,IAAU,eAAA;;;;;;AA5tBlE;;;;;AA0CA;;;;;;;;;;;;AAiBA;;;;;;;;;;;;;AAyDA;;;;;;;;iBA66BgB,cAAA,CAAe,KAAA,WAAgB,UAAA,WAAqB,MAAA,CAAO,MAAA,EAAQ,WAAA;;;;;;AnB/lCnF;UoBXiB,aAAA;;;;;KAML,WAAA,KAAgB,GAAA,EAAK,aAAA,KAAkB,MAAA,GAAS,OAAA,CAAQ,MAAA,KAAW,MAAA;;;;;;;;;;;;;;;;AnB2B/E;;;;;;;;;;;;;;;;;;;iBmBSgB,YAAA,WAAuB,WAAA,CAAA,CAAa,MAAA,EAAQ,CAAA,GAAI,CAAA"}