@shushed/helpers 0.0.167 → 0.0.168
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 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -34196,6 +34196,7 @@ declare class ActionHelper<C extends Record<string, any>, O extends RequiredTrig
|
|
|
34196
34196
|
getRespectfulNudgeStatus(topicName: string, { rnWorkflowTriggerId, }: {
|
|
34197
34197
|
rnWorkflowTriggerId: string;
|
|
34198
34198
|
}): Promise<{
|
|
34199
|
+
is_active: any;
|
|
34199
34200
|
subscription_id: any;
|
|
34200
34201
|
operation: any;
|
|
34201
34202
|
pubsub_name: any;
|
package/dist/index.js
CHANGED
|
@@ -109010,6 +109010,7 @@ var ActionHelper = class _ActionHelper {
|
|
|
109010
109010
|
return null;
|
|
109011
109011
|
}
|
|
109012
109012
|
return {
|
|
109013
|
+
is_active: body.is_active,
|
|
109013
109014
|
subscription_id: body.subscription_id,
|
|
109014
109015
|
operation: body.operation,
|
|
109015
109016
|
pubsub_name: body.pubsub_name,
|