Skip to content

Commit a7b0dda

Browse files
committed
build: updated build
1 parent a37cf43 commit a7b0dda

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dist/client.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ var PubSubApiClient = class {
750750
* @returns {Promise<EventEmitter>} Promise that holds an emitter that allows you to listen to received events and stream lifecycle events
751751
* @memberof PubSubApiClient.prototype
752752
*/
753-
async subscribeFromReplayId(topicName, replayId, numRequested = null) {
753+
async subscribeFromReplayId(topicName, numRequested, replayId) {
754754
return this.#subscribe({
755755
topicName,
756756
numRequested,

dist/client.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default class PubSubApiClient {
4040
* @returns {Promise<EventEmitter>} Promise that holds an emitter that allows you to listen to received events and stream lifecycle events
4141
* @memberof PubSubApiClient.prototype
4242
*/
43-
subscribeFromReplayId(topicName: string, replayId: number, numRequested?: number | null): Promise<EventEmitter>;
43+
subscribeFromReplayId(topicName: string, numRequested?: number | null, replayId: number): Promise<EventEmitter>;
4444
/**
4545
* Subscribes to a topic.
4646
* @param {string} topicName name of the topic that we're subscribing to

dist/client.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ var PubSubApiClient = class {
717717
* @returns {Promise<EventEmitter>} Promise that holds an emitter that allows you to listen to received events and stream lifecycle events
718718
* @memberof PubSubApiClient.prototype
719719
*/
720-
async subscribeFromReplayId(topicName, replayId, numRequested = null) {
720+
async subscribeFromReplayId(topicName, numRequested, replayId) {
721721
return this.#subscribe({
722722
topicName,
723723
numRequested,

0 commit comments

Comments
 (0)