@savvy-web/silk 3.7.9 → 3.7.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changesets-changelog.cjs +636 -148
- package/changesets-changelog.d.cts +27 -5
- package/changesets-changelog.d.ts +27 -5
- package/changesets-changelog.js +645 -148
- package/changesets-markdownlint.cjs +636 -148
- package/changesets-markdownlint.d.cts +27 -5
- package/changesets-markdownlint.d.ts +27 -5
- package/changesets-markdownlint.js +645 -148
- package/package.json +5 -5
- package/tsconfig/node/dist/tsconfig.tsbuildinfo +1 -1
|
@@ -5236,7 +5236,7 @@ declare class UnsatisfiableConstraintError extends UnsatisfiableConstraintError_
|
|
|
5236
5236
|
get message(): string;
|
|
5237
5237
|
}
|
|
5238
5238
|
//#endregion
|
|
5239
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
5239
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.11.0_@effected+semver@0.5.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/npm/index.d.ts
|
|
5240
5240
|
//#region src/CatalogAssemblyError.d.ts
|
|
5241
5241
|
declare const CatalogAssemblyError_base: Schema.Class<CatalogAssemblyError, Schema.TaggedStruct<"CatalogAssemblyError", {
|
|
5242
5242
|
/**
|
|
@@ -5513,6 +5513,25 @@ declare class InvalidIntegrityHashError extends InvalidIntegrityHashError_base {
|
|
|
5513
5513
|
* @public
|
|
5514
5514
|
*/
|
|
5515
5515
|
type IntegrityHashBrand = string & Brand.Brand<"IntegrityHash">;
|
|
5516
|
+
declare const InvalidSriIntegrityHashError_base: Schema.Class<InvalidSriIntegrityHashError, Schema.TaggedStruct<"InvalidSriIntegrityHashError", {
|
|
5517
|
+
/** The raw input string that failed conversion. */
|
|
5518
|
+
readonly input: Schema.String;
|
|
5519
|
+
}>, import("effect/Cause").YieldableError>;
|
|
5520
|
+
/**
|
|
5521
|
+
* Indicates that a string could not be converted from npm's SRI form to the
|
|
5522
|
+
* corepack integrity form.
|
|
5523
|
+
*
|
|
5524
|
+
* Raised by {@link (CorepackIntegrityHash:variable)}'s `fromSri`. The offending
|
|
5525
|
+
* string is preserved on `input`. Only a canonical `sha512-<base64>` value
|
|
5526
|
+
* carrying a 64-byte digest converts — corepack pins accept nothing weaker
|
|
5527
|
+
* than sha512, so a sha256/sha1 SRI hash, malformed base64, a wrong-length
|
|
5528
|
+
* digest and an already-corepack-form input all raise this error.
|
|
5529
|
+
*
|
|
5530
|
+
* @public
|
|
5531
|
+
*/
|
|
5532
|
+
declare class InvalidSriIntegrityHashError extends InvalidSriIntegrityHashError_base {
|
|
5533
|
+
get message(): string;
|
|
5534
|
+
}
|
|
5516
5535
|
//#endregion
|
|
5517
5536
|
//#region src/ReleaseAgeGate.d.ts
|
|
5518
5537
|
/**
|
|
@@ -5810,7 +5829,7 @@ declare class GlobPattern extends GlobPattern_base {
|
|
|
5810
5829
|
static readonly FromString: Schema.Codec<GlobPattern, string>;
|
|
5811
5830
|
}
|
|
5812
5831
|
//#endregion
|
|
5813
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.
|
|
5832
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.1_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.11_d53253b32eb6a388ea04dc81d5e132f1/node_modules/@effected/lockfiles/index.d.ts
|
|
5814
5833
|
//#region src/BunExtension.d.ts
|
|
5815
5834
|
declare const BunExtension_base: Schema.Class<BunExtension, Schema.Struct<{
|
|
5816
5835
|
readonly _tag: Schema.tag<"bun">;
|
|
@@ -6240,7 +6259,7 @@ declare class LockfileIntegrity extends LockfileIntegrity_base {
|
|
|
6240
6259
|
static compare(lockfile: Lockfile, manifests: ReadonlyArray<WorkspaceManifest>): LockfileIntegrity;
|
|
6241
6260
|
}
|
|
6242
6261
|
//#endregion
|
|
6243
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.
|
|
6262
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.2_effect@4.0.0-rc.109/node_modules/@effected/package-json/index.d.ts
|
|
6244
6263
|
//#region src/Dependency.d.ts
|
|
6245
6264
|
declare const Dependency_base: Schema.Class<Dependency, Schema.Struct<{
|
|
6246
6265
|
/** The package name. */
|
|
@@ -6343,7 +6362,10 @@ declare const PackageManager_base: Schema.Class<PackageManager, Schema.Struct<{
|
|
|
6343
6362
|
* `CorepackIntegrityHash`, the shared restriction of the `IntegrityHash`
|
|
6344
6363
|
* brand to the corepack `<algo>.<hex>` form.
|
|
6345
6364
|
*/
|
|
6346
|
-
readonly integrity: Schema.Option<Schema.brand<Schema.String, "IntegrityHash"
|
|
6365
|
+
readonly integrity: Schema.Option<Schema.brand<Schema.String, "IntegrityHash"> & {
|
|
6366
|
+
FromSri: Schema.Codec<IntegrityHashBrand, string, never, never>;
|
|
6367
|
+
fromSri: (input: string) => Effect.Effect<IntegrityHashBrand, InvalidSriIntegrityHashError>;
|
|
6368
|
+
}>;
|
|
6347
6369
|
}>, {}>;
|
|
6348
6370
|
/**
|
|
6349
6371
|
* A structured `packageManager` value with `name`, `version` and an optional
|
|
@@ -6822,7 +6844,7 @@ declare class Package extends Package_base {
|
|
|
6822
6844
|
toJsonString(options?: PackageFormatOptions): string;
|
|
6823
6845
|
}
|
|
6824
6846
|
//#endregion
|
|
6825
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.
|
|
6847
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.2_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/index.d.ts
|
|
6826
6848
|
//#region src/WorkspacePackage.d.ts
|
|
6827
6849
|
declare const PublishConfig_base: Schema.Class<PublishConfig, Schema.Struct<{
|
|
6828
6850
|
/** Scoped-package visibility. Its presence overrides `private`. */
|
|
@@ -5236,7 +5236,7 @@ declare class UnsatisfiableConstraintError extends UnsatisfiableConstraintError_
|
|
|
5236
5236
|
get message(): string;
|
|
5237
5237
|
}
|
|
5238
5238
|
//#endregion
|
|
5239
|
-
//#region ../../node_modules/.pnpm/@effected+npm@0.
|
|
5239
|
+
//#region ../../node_modules/.pnpm/@effected+npm@0.11.0_@effected+semver@0.5.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/npm/index.d.ts
|
|
5240
5240
|
//#region src/CatalogAssemblyError.d.ts
|
|
5241
5241
|
declare const CatalogAssemblyError_base: Schema.Class<CatalogAssemblyError, Schema.TaggedStruct<"CatalogAssemblyError", {
|
|
5242
5242
|
/**
|
|
@@ -5513,6 +5513,25 @@ declare class InvalidIntegrityHashError extends InvalidIntegrityHashError_base {
|
|
|
5513
5513
|
* @public
|
|
5514
5514
|
*/
|
|
5515
5515
|
type IntegrityHashBrand = string & Brand.Brand<"IntegrityHash">;
|
|
5516
|
+
declare const InvalidSriIntegrityHashError_base: Schema.Class<InvalidSriIntegrityHashError, Schema.TaggedStruct<"InvalidSriIntegrityHashError", {
|
|
5517
|
+
/** The raw input string that failed conversion. */
|
|
5518
|
+
readonly input: Schema.String;
|
|
5519
|
+
}>, import("effect/Cause").YieldableError>;
|
|
5520
|
+
/**
|
|
5521
|
+
* Indicates that a string could not be converted from npm's SRI form to the
|
|
5522
|
+
* corepack integrity form.
|
|
5523
|
+
*
|
|
5524
|
+
* Raised by {@link (CorepackIntegrityHash:variable)}'s `fromSri`. The offending
|
|
5525
|
+
* string is preserved on `input`. Only a canonical `sha512-<base64>` value
|
|
5526
|
+
* carrying a 64-byte digest converts — corepack pins accept nothing weaker
|
|
5527
|
+
* than sha512, so a sha256/sha1 SRI hash, malformed base64, a wrong-length
|
|
5528
|
+
* digest and an already-corepack-form input all raise this error.
|
|
5529
|
+
*
|
|
5530
|
+
* @public
|
|
5531
|
+
*/
|
|
5532
|
+
declare class InvalidSriIntegrityHashError extends InvalidSriIntegrityHashError_base {
|
|
5533
|
+
get message(): string;
|
|
5534
|
+
}
|
|
5516
5535
|
//#endregion
|
|
5517
5536
|
//#region src/ReleaseAgeGate.d.ts
|
|
5518
5537
|
/**
|
|
@@ -5810,7 +5829,7 @@ declare class GlobPattern extends GlobPattern_base {
|
|
|
5810
5829
|
static readonly FromString: Schema.Codec<GlobPattern, string>;
|
|
5811
5830
|
}
|
|
5812
5831
|
//#endregion
|
|
5813
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.
|
|
5832
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.5.1_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__@effected+npm@0.11_d53253b32eb6a388ea04dc81d5e132f1/node_modules/@effected/lockfiles/index.d.ts
|
|
5814
5833
|
//#region src/BunExtension.d.ts
|
|
5815
5834
|
declare const BunExtension_base: Schema.Class<BunExtension, Schema.Struct<{
|
|
5816
5835
|
readonly _tag: Schema.tag<"bun">;
|
|
@@ -6240,7 +6259,7 @@ declare class LockfileIntegrity extends LockfileIntegrity_base {
|
|
|
6240
6259
|
static compare(lockfile: Lockfile, manifests: ReadonlyArray<WorkspaceManifest>): LockfileIntegrity;
|
|
6241
6260
|
}
|
|
6242
6261
|
//#endregion
|
|
6243
|
-
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.
|
|
6262
|
+
//#region ../../node_modules/.pnpm/@effected+package-json@0.10.2_effect@4.0.0-rc.109/node_modules/@effected/package-json/index.d.ts
|
|
6244
6263
|
//#region src/Dependency.d.ts
|
|
6245
6264
|
declare const Dependency_base: Schema.Class<Dependency, Schema.Struct<{
|
|
6246
6265
|
/** The package name. */
|
|
@@ -6343,7 +6362,10 @@ declare const PackageManager_base: Schema.Class<PackageManager, Schema.Struct<{
|
|
|
6343
6362
|
* `CorepackIntegrityHash`, the shared restriction of the `IntegrityHash`
|
|
6344
6363
|
* brand to the corepack `<algo>.<hex>` form.
|
|
6345
6364
|
*/
|
|
6346
|
-
readonly integrity: Schema.Option<Schema.brand<Schema.String, "IntegrityHash"
|
|
6365
|
+
readonly integrity: Schema.Option<Schema.brand<Schema.String, "IntegrityHash"> & {
|
|
6366
|
+
FromSri: Schema.Codec<IntegrityHashBrand, string, never, never>;
|
|
6367
|
+
fromSri: (input: string) => Effect.Effect<IntegrityHashBrand, InvalidSriIntegrityHashError>;
|
|
6368
|
+
}>;
|
|
6347
6369
|
}>, {}>;
|
|
6348
6370
|
/**
|
|
6349
6371
|
* A structured `packageManager` value with `name`, `version` and an optional
|
|
@@ -6822,7 +6844,7 @@ declare class Package extends Package_base {
|
|
|
6822
6844
|
toJsonString(options?: PackageFormatOptions): string;
|
|
6823
6845
|
}
|
|
6824
6846
|
//#endregion
|
|
6825
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.
|
|
6847
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.14.2_@effected+jsonc@0.7.0_effect@4.0.0-rc.109__effect@4.0.0-rc.109/node_modules/@effected/workspaces/index.d.ts
|
|
6826
6848
|
//#region src/WorkspacePackage.d.ts
|
|
6827
6849
|
declare const PublishConfig_base: Schema.Class<PublishConfig, Schema.Struct<{
|
|
6828
6850
|
/** Scoped-package visibility. Its presence overrides `private`. */
|