File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
apps/sim/triggers/webflow Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export const webflowCollectionItemChangedTrigger: TriggerConfig = {
4242 field : 'selectedTriggerId' ,
4343 value : 'webflow_collection_item_changed' ,
4444 } ,
45- fetchOptions : async ( blockId : string ) => {
45+ fetchOptions : async ( blockId : string , _subBlockId : string ) => {
4646 const credentialId = useSubBlockStore . getState ( ) . getValue ( blockId , 'triggerCredentials' ) as
4747 | string
4848 | null
@@ -108,7 +108,7 @@ export const webflowCollectionItemChangedTrigger: TriggerConfig = {
108108 field : 'selectedTriggerId' ,
109109 value : 'webflow_collection_item_changed' ,
110110 } ,
111- fetchOptions : async ( blockId : string ) => {
111+ fetchOptions : async ( blockId : string , _subBlockId : string ) => {
112112 const credentialId = useSubBlockStore . getState ( ) . getValue ( blockId , 'triggerCredentials' ) as
113113 | string
114114 | null
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export const webflowCollectionItemCreatedTrigger: TriggerConfig = {
5656 field : 'selectedTriggerId' ,
5757 value : 'webflow_collection_item_created' ,
5858 } ,
59- fetchOptions : async ( blockId : string ) => {
59+ fetchOptions : async ( blockId : string , _subBlockId : string ) => {
6060 const credentialId = useSubBlockStore . getState ( ) . getValue ( blockId , 'triggerCredentials' ) as
6161 | string
6262 | null
@@ -122,7 +122,7 @@ export const webflowCollectionItemCreatedTrigger: TriggerConfig = {
122122 field : 'selectedTriggerId' ,
123123 value : 'webflow_collection_item_created' ,
124124 } ,
125- fetchOptions : async ( blockId : string ) => {
125+ fetchOptions : async ( blockId : string , _subBlockId : string ) => {
126126 const credentialId = useSubBlockStore . getState ( ) . getValue ( blockId , 'triggerCredentials' ) as
127127 | string
128128 | null
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export const webflowCollectionItemDeletedTrigger: TriggerConfig = {
4242 field : 'selectedTriggerId' ,
4343 value : 'webflow_collection_item_deleted' ,
4444 } ,
45- fetchOptions : async ( blockId : string ) => {
45+ fetchOptions : async ( blockId : string , _subBlockId : string ) => {
4646 const credentialId = useSubBlockStore . getState ( ) . getValue ( blockId , 'triggerCredentials' ) as
4747 | string
4848 | null
@@ -108,7 +108,7 @@ export const webflowCollectionItemDeletedTrigger: TriggerConfig = {
108108 field : 'selectedTriggerId' ,
109109 value : 'webflow_collection_item_deleted' ,
110110 } ,
111- fetchOptions : async ( blockId : string ) => {
111+ fetchOptions : async ( blockId : string , _subBlockId : string ) => {
112112 const credentialId = useSubBlockStore . getState ( ) . getValue ( blockId , 'triggerCredentials' ) as
113113 | string
114114 | null
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export const webflowFormSubmissionTrigger: TriggerConfig = {
4242 field : 'selectedTriggerId' ,
4343 value : 'webflow_form_submission' ,
4444 } ,
45- fetchOptions : async ( blockId : string ) => {
45+ fetchOptions : async ( blockId : string , _subBlockId : string ) => {
4646 const credentialId = useSubBlockStore . getState ( ) . getValue ( blockId , 'triggerCredentials' ) as
4747 | string
4848 | null
You can’t perform that action at this time.
0 commit comments