@mablhq/mabl-cli 2.75.2 → 2.75.4

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.
@@ -21,8 +21,6 @@ class DownloadStep extends MablStepV2_1.MablStepV2 {
21
21
  else {
22
22
  this.awaitDownloadAction = new AwaitDownloadAction_1.AwaitDownloadAction('await_download', []);
23
23
  }
24
- this.fileAttributes =
25
- DownloadStep.populateDownloadArgsFromDescriptor(descriptor);
26
24
  }
27
25
  static populateDownloadArgsFromDescriptor(descriptor) {
28
26
  return {
@@ -33,6 +31,7 @@ class DownloadStep extends MablStepV2_1.MablStepV2 {
33
31
  file_size_bytes: descriptor.sizeBytes,
34
32
  file_size_bytes_max: descriptor.sizeBytesMax,
35
33
  file_size_bytes_min: descriptor.sizeBytesMin,
34
+ ai_prompt: descriptor.aiPrompt,
36
35
  };
37
36
  }
38
37
  validate(actions) {
@@ -70,6 +69,7 @@ class DownloadStep extends MablStepV2_1.MablStepV2 {
70
69
  sizeBytesMin: fileAttributes.file_size_bytes_min,
71
70
  fileMd5: fileAttributes.file_md5,
72
71
  fileSha256: fileAttributes.file_sha256,
72
+ aiPrompt: fileAttributes.ai_prompt,
73
73
  };
74
74
  const isPdfDownload = awaitDownloadAction instanceof AwaitPDFDownloadAction_1.AwaitPDFDownloadAction;
75
75
  if (isPdfDownload) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mablhq/mabl-cli",
3
- "version": "2.75.2",
3
+ "version": "2.75.4",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "The official mabl command line interface tool",
6
6
  "main": "index.js",