@shushed/helpers 0.0.71 → 0.0.73
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -28910,7 +28910,7 @@ declare class PubSubHelper extends Runtime {
|
|
|
28910
28910
|
}>;
|
|
28911
28911
|
isRunning(topicName: string): Promise<{
|
|
28912
28912
|
subscriptionId: string | undefined;
|
|
28913
|
-
|
|
28913
|
+
isPushingMessages: boolean;
|
|
28914
28914
|
}>;
|
|
28915
28915
|
pause(topicName: string): Promise<{
|
|
28916
28916
|
subscriptionId: string;
|
package/dist/index.js
CHANGED
|
@@ -1248,7 +1248,7 @@ var PubSubHelper = class extends Runtime {
|
|
|
1248
1248
|
this.logging.log("isRunning received metadata", metadata);
|
|
1249
1249
|
return {
|
|
1250
1250
|
subscriptionId: mainSubscription?.name,
|
|
1251
|
-
|
|
1251
|
+
isPushingMessages: !!metadata?.pushConfig?.pushEndpoint
|
|
1252
1252
|
};
|
|
1253
1253
|
}
|
|
1254
1254
|
async pause(topicName) {
|