@dereekb/firebase 12.6.6 → 12.6.7

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/index.cjs.js CHANGED
@@ -10724,10 +10724,17 @@ class InitializeStorageFileFromUploadParams {
10724
10724
  */
10725
10725
  this.bucketId = void 0;
10726
10726
  this.pathString = void 0;
10727
+ /**
10728
+ * Whether or not to attempt to expedite the processing of the created StorageFile, if it is queued for processing.
10729
+ *
10730
+ * If it cannot be processed, this argument will have no effect.
10731
+ */
10732
+ this.expediteProcessing = void 0;
10727
10733
  }
10728
10734
  }
10729
10735
  __decorate([classTransformer.Expose(), classValidator.IsOptional(), classValidator.IsString(), __metadata("design:type", Object)], InitializeStorageFileFromUploadParams.prototype, "bucketId", void 0);
10730
10736
  __decorate([classTransformer.Expose(), classValidator.IsString(), __metadata("design:type", String)], InitializeStorageFileFromUploadParams.prototype, "pathString", void 0);
10737
+ __decorate([classTransformer.Expose(), classValidator.IsBoolean(), classValidator.IsOptional(), __metadata("design:type", Boolean)], InitializeStorageFileFromUploadParams.prototype, "expediteProcessing", void 0);
10731
10738
  class ProcessStorageFileParams extends TargetModelParams {
10732
10739
  constructor(...args) {
10733
10740
  super(...args);
package/index.esm.js CHANGED
@@ -10722,10 +10722,17 @@ class InitializeStorageFileFromUploadParams {
10722
10722
  */
10723
10723
  this.bucketId = void 0;
10724
10724
  this.pathString = void 0;
10725
+ /**
10726
+ * Whether or not to attempt to expedite the processing of the created StorageFile, if it is queued for processing.
10727
+ *
10728
+ * If it cannot be processed, this argument will have no effect.
10729
+ */
10730
+ this.expediteProcessing = void 0;
10725
10731
  }
10726
10732
  }
10727
10733
  __decorate([Expose(), IsOptional(), IsString(), __metadata("design:type", Object)], InitializeStorageFileFromUploadParams.prototype, "bucketId", void 0);
10728
10734
  __decorate([Expose(), IsString(), __metadata("design:type", String)], InitializeStorageFileFromUploadParams.prototype, "pathString", void 0);
10735
+ __decorate([Expose(), IsBoolean(), IsOptional(), __metadata("design:type", Boolean)], InitializeStorageFileFromUploadParams.prototype, "expediteProcessing", void 0);
10729
10736
  class ProcessStorageFileParams extends TargetModelParams {
10730
10737
  constructor(...args) {
10731
10738
  super(...args);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/firebase",
3
- "version": "12.6.6",
3
+ "version": "12.6.7",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./src/index.d.ts",
@@ -43,6 +43,12 @@ export declare class InitializeStorageFileFromUploadParams implements Pick<Stora
43
43
  */
44
44
  bucketId?: Maybe<StorageBucketId>;
45
45
  pathString: StorageSlashPath;
46
+ /**
47
+ * Whether or not to attempt to expedite the processing of the created StorageFile, if it is queued for processing.
48
+ *
49
+ * If it cannot be processed, this argument will have no effect.
50
+ */
51
+ expediteProcessing?: boolean;
46
52
  }
47
53
  export declare class ProcessStorageFileParams extends TargetModelParams {
48
54
  /**
package/test/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [12.6.7](https://github.com/dereekb/dbx-components/compare/v12.6.6-dev...v12.6.7) (2026-01-06)
6
+
7
+
8
+
5
9
  ## [12.6.6](https://github.com/dereekb/dbx-components/compare/v12.6.5-dev...v12.6.6) (2025-12-31)
6
10
 
7
11
 
package/test/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/firebase/test",
3
- "version": "12.6.6",
3
+ "version": "12.6.7",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@dereekb/util": "*",