@@ -211,7 +211,7 @@ private IEnumerator Examples()
211
211
while ( ! createExampleTested )
212
212
yield return null ;
213
213
// Get Example
214
- service . GetExample ( callback : OnGetExample , workspaceId : createdWorkspaceId , intent : updatedIntent , createdExample ) ;
214
+ service . GetExample ( callback : OnGetExample , workspaceId : createdWorkspaceId , intent : updatedIntent , text : createdExample ) ;
215
215
while ( ! getExampleTested )
216
216
yield return null ;
217
217
// Update Examples
@@ -229,7 +229,7 @@ private IEnumerator Examples()
229
229
while ( ! createEntityTested )
230
230
yield return null ;
231
231
// Get Entity
232
- service . GetEntity ( callback : OnGetEntity , workspaceId : createdWorkspaceId , createdEntity ) ;
232
+ service . GetEntity ( callback : OnGetEntity , workspaceId : createdWorkspaceId , entity : createdEntity ) ;
233
233
while ( ! getEntityTested )
234
234
yield return null ;
235
235
// Update Entities
@@ -305,7 +305,7 @@ private IEnumerator Examples()
305
305
yield return null ;
306
306
// List All Logs
307
307
var filter = "(language::en,request.context.metadata.deployment::deployment_1)" ;
308
- service . ListAllLogs ( callback : OnListAllLogs , filter ) ;
308
+ service . ListAllLogs ( callback : OnListAllLogs , filter : filter ) ;
309
309
while ( ! listAllLogsTested )
310
310
yield return null ;
311
311
@@ -318,7 +318,7 @@ private IEnumerator Examples()
318
318
while ( ! createCounterexampleTested )
319
319
yield return null ;
320
320
// Get Counterexample
321
- service . GetCounterexample ( callback : OnGetCounterexample , workspaceId : createdWorkspaceId , createdCounterExampleText ) ;
321
+ service . GetCounterexample ( callback : OnGetCounterexample , workspaceId : createdWorkspaceId , text : createdCounterExampleText ) ;
322
322
while ( ! getCounterexampleTested )
323
323
yield return null ;
324
324
// Update Counterexamples
@@ -328,15 +328,15 @@ private IEnumerator Examples()
328
328
yield return null ;
329
329
330
330
// Delete Counterexample
331
- service . DeleteCounterexample ( callback : OnDeleteCounterexample , workspaceId : createdWorkspaceId , updatedCounterExampleText ) ;
331
+ service . DeleteCounterexample ( callback : OnDeleteCounterexample , workspaceId : createdWorkspaceId , text : updatedCounterExampleText ) ;
332
332
while ( ! deleteCounterexampleTested )
333
333
yield return null ;
334
334
// Delete Dialog Node
335
- service . DeleteDialogNode ( callback : OnDeleteDialogNode , workspaceId : createdWorkspaceId , updatedDialogNodeName ) ;
335
+ service . DeleteDialogNode ( callback : OnDeleteDialogNode , workspaceId : createdWorkspaceId , dialogNode : updatedDialogNodeName ) ;
336
336
while ( ! deleteDialogNodeTested )
337
337
yield return null ;
338
338
// Delete Synonym
339
- service . DeleteSynonym ( callback : OnDeleteSynonym , workspaceId : createdWorkspaceId , entity : updatedEntity , value : updatedValue , updatedSynonym ) ;
339
+ service . DeleteSynonym ( callback : OnDeleteSynonym , workspaceId : createdWorkspaceId , entity : updatedEntity , value : updatedValue , synonym : updatedSynonym ) ;
340
340
while ( ! deleteSynonymTested )
341
341
yield return null ;
342
342
// Delete Value
@@ -348,7 +348,7 @@ private IEnumerator Examples()
348
348
while ( ! deleteEntityTested )
349
349
yield return null ;
350
350
// Delete Example
351
- service . DeleteExample ( callback : OnDeleteExample , workspaceId : createdWorkspaceId , intent : updatedIntent , updatedExample ) ;
351
+ service . DeleteExample ( callback : OnDeleteExample , workspaceId : createdWorkspaceId , intent : updatedIntent , text : updatedExample ) ;
352
352
while ( ! deleteExampleTested )
353
353
yield return null ;
354
354
// Delete Intent
@@ -665,7 +665,7 @@ private void OnListWorkspaces(DetailedResponse<WorkspaceCollection> response, IB
665
665
foreach ( Workspace workspace in response . Result . Workspaces )
666
666
{
667
667
if ( workspace . Name . Contains ( "unity" ) )
668
- service . DeleteWorkspace ( callback : OnDeleteWorkspace , workspace . WorkspaceId ) ;
668
+ service . DeleteWorkspace ( callback : OnDeleteWorkspace , workspaceId : workspace . WorkspaceId ) ;
669
669
}
670
670
671
671
listWorkspacesTested = true ;
0 commit comments