@particle-academy/dark-slide 0.7.0 → 0.7.1

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/dist/index.d.cts CHANGED
@@ -138,8 +138,8 @@ interface WriteOptions {
138
138
  * and Node-only (browsers have no sync FS).
139
139
  */
140
140
 
141
- /** Feature-parity baseline with PHP dark-slide; bumped independently on npm. */
142
- declare const VERSION = "0.5.2";
141
+ /** This package's own version, pinned to package.json by `version.test.ts`. */
142
+ declare const VERSION = "0.7.1";
143
143
  type Any$4 = any;
144
144
  declare const Agent: {
145
145
  /** Validate a deck without writing. Empty array = valid. */
@@ -174,7 +174,7 @@ type Any$3 = any;
174
174
  declare class DarkSlide {
175
175
  private tempDir;
176
176
  private allowHttpImages;
177
- static readonly VERSION = "0.5.2";
177
+ static readonly VERSION = "0.7.1";
178
178
  constructor(tempDir?: string | null, allowHttpImages?: boolean);
179
179
  validate(deck: Any$3): ValidationError[];
180
180
  validateAndRepair(deck: Any$3): RepairResult;
package/dist/index.d.ts CHANGED
@@ -138,8 +138,8 @@ interface WriteOptions {
138
138
  * and Node-only (browsers have no sync FS).
139
139
  */
140
140
 
141
- /** Feature-parity baseline with PHP dark-slide; bumped independently on npm. */
142
- declare const VERSION = "0.5.2";
141
+ /** This package's own version, pinned to package.json by `version.test.ts`. */
142
+ declare const VERSION = "0.7.1";
143
143
  type Any$4 = any;
144
144
  declare const Agent: {
145
145
  /** Validate a deck without writing. Empty array = valid. */
@@ -174,7 +174,7 @@ type Any$3 = any;
174
174
  declare class DarkSlide {
175
175
  private tempDir;
176
176
  private allowHttpImages;
177
- static readonly VERSION = "0.5.2";
177
+ static readonly VERSION = "0.7.1";
178
178
  constructor(tempDir?: string | null, allowHttpImages?: boolean);
179
179
  validate(deck: Any$3): ValidationError[];
180
180
  validateAndRepair(deck: Any$3): RepairResult;
package/dist/index.js CHANGED
@@ -4151,7 +4151,7 @@ function getImageSize(bytes) {
4151
4151
  }
4152
4152
 
4153
4153
  // src/agent.ts
4154
- var VERSION = "0.5.2";
4154
+ var VERSION = "0.7.1";
4155
4155
  function toU8(input) {
4156
4156
  return input instanceof Uint8Array ? input : new Uint8Array(input);
4157
4157
  }