Skip to content

Commit

Permalink
build: release v5.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pozil committed Nov 28, 2024
1 parent 8d5d560 commit eeb56cd
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 21 deletions.
4 changes: 3 additions & 1 deletion dist/client.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,9 @@ var PubSubApiClient = class {
} catch (error) {
let replayId;
try {
replayId = decodeReplayId(event.replayId);
if (event.replayId) {
replayId = decodeReplayId(event.replayId);
}
} catch (error2) {
}
const message = replayId ? `Failed to parse event with replay ID ${replayId}` : `Failed to parse event with unknown replay ID (latest replay ID was ${latestReplayId})`;
Expand Down
2 changes: 1 addition & 1 deletion dist/client.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion dist/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,9 @@ var PubSubApiClient = class {
} catch (error) {
let replayId;
try {
replayId = decodeReplayId(event.replayId);
if (event.replayId) {
replayId = decodeReplayId(event.replayId);
}
} catch (error2) {
}
const message = replayId ? `Failed to parse event with replay ID ${replayId}` : `Failed to parse event with unknown replay ID (latest replay ID was ${latestReplayId})`;
Expand Down
29 changes: 15 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "salesforce-pubsub-api-client",
"version": "5.0.2",
"version": "5.0.3",
"type": "module",
"description": "A node client for the Salesforce Pub/Sub API",
"author": "pozil",
Expand Down Expand Up @@ -28,7 +28,7 @@
"@grpc/proto-loader": "^0.7.13",
"avro-js": "^1.12.0",
"certifi": "^14.5.15",
"jsforce": "^3.6.2",
"jsforce": "^3.6.3",
"undici": "^6.21.0"
},
"devDependencies": {
Expand All @@ -39,9 +39,9 @@
"husky": "^9.1.7",
"jasmine": "^5.4.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier": "^3.4.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
"typescript": "^5.7.2"
},
"lint-staged": {
"**/*.{css,html,js,json,md,yaml,yml}": [
Expand Down

0 comments on commit eeb56cd

Please sign in to comment.