@@ -99,6 +99,9 @@ await TemplateOperation(async () =>
9999 "servicebusqueuetrigger" => "squeue" ,
100100 "servicebustopictrigger" => "stopic" ,
101101 "timertrigger" => "timer" ,
102+ "daprpublishoutputbinding" => "daprPublishOutputBinding" ,
103+ "daprserviceinvocationtrigger" => "daprServiceInvocationTrigger" ,
104+ "daprtopictrigger" => "daprTopicTrigger" ,
102105 _ => throw new ArgumentException ( $ "Unknown template '{ templateName } '", nameof ( templateName ) )
103106 } ;
104107
@@ -116,7 +119,10 @@ internal static IEnumerable<string> GetTemplates(WorkerRuntime workerRuntime)
116119 "ServiceBusQueueTrigger" ,
117120 "ServiceBusTopicTrigger" ,
118121 "EventGridTrigger" ,
119- "CosmosDBTrigger"
122+ "CosmosDBTrigger" ,
123+ "DaprPublishOutputBinding" ,
124+ "DaprServiceInvocationTrigger" ,
125+ "DaprTopicTrigger" ,
120126 } ;
121127 }
122128
@@ -135,7 +141,10 @@ internal static IEnumerable<string> GetTemplates(WorkerRuntime workerRuntime)
135141 "ServiceBusTopicTrigger" ,
136142 "EventGridTrigger" ,
137143 "CosmosDBTrigger" ,
138- "IotHubTrigger"
144+ "IotHubTrigger" ,
145+ "DaprPublishOutputBinding" ,
146+ "DaprServiceInvocationTrigger" ,
147+ "DaprTopicTrigger" ,
139148 } ;
140149 }
141150
0 commit comments