oclif 4.3.3 → 4.3.5

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.
@@ -53,7 +53,11 @@ const appendToIndex = async (input) => {
53
53
  Bucket: s3Config.bucket,
54
54
  Key: key,
55
55
  });
56
- existing = JSON.parse(Body?.toString());
56
+ // @ts-expect-error because StreamingBlobTypes doesn't have transformToString
57
+ // but it's expected to be there according to the docs
58
+ // https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-types/TypeAlias/StreamingBlobPayloadOutputTypes/
59
+ // https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-types/Interface/SdkStreamMixin/
60
+ existing = JSON.parse(await Body?.transformToString());
57
61
  debug('appending to existing index file');
58
62
  }
59
63
  catch (error) {
@@ -732,5 +732,5 @@
732
732
  ]
733
733
  }
734
734
  },
735
- "version": "4.3.3"
735
+ "version": "4.3.5"
736
736
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "oclif",
3
3
  "description": "oclif: create your own CLI",
4
- "version": "4.3.3",
4
+ "version": "4.3.5",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "oclif": "bin/run.js"
@@ -10,7 +10,7 @@
10
10
  "dependencies": {
11
11
  "@aws-sdk/client-cloudfront": "^3.468.0",
12
12
  "@aws-sdk/client-s3": "^3.490.0",
13
- "@oclif/core": "^3.16.0",
13
+ "@oclif/core": "^3.18.1",
14
14
  "@oclif/plugin-help": "^6.0.9",
15
15
  "@oclif/plugin-not-found": "^3.0.8",
16
16
  "@oclif/plugin-warn-if-update-available": "^3.0.9",