@@ -13,7 +13,7 @@ var wf = require('./workflow.js');
1313var theme = require ( './themes.js' ) ;
1414var recipe = require ( './recipe.js' ) ;
1515var flowservice = require ( './flowservice.js' ) ;
16- var unofficial = require ( './unofficial .js' ) ;
16+ var experimental = require ( './experimental .js' ) ;
1717
1818dbg = require ( './debug.js' ) ;
1919prettyprint = false ;
@@ -522,55 +522,55 @@ program.command('flowservice-execute <project-id> <flow-name> [input-json]')
522522
523523 /**
524524 * ------------------------------------------------------------------------------------------------------------------------------------
525- * unofficial non-public APIs
525+ * experimental non-public APIs
526526 * ------------------------------------------------------------------------------------------------------------------------------------
527527 */
528- program . command ( 'unofficial -user' )
528+ program . command ( 'experimental -user' )
529529 . description ( 'Get User information' )
530530 . action ( ( ) => {
531531 checkOptions ( ) ;
532- unofficial . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
533- unofficial . user ( ) ;
532+ experimental . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
533+ experimental . user ( ) ;
534534 } ) ;
535535
536- program . command ( 'unofficial -stages' )
536+ program . command ( 'experimental -stages' )
537537 . description ( 'Get Stage information' )
538538 . action ( ( ) => {
539539 checkOptions ( ) ;
540- unofficial . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
541- unofficial . stages ( ) ;
540+ experimental . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
541+ experimental . stages ( ) ;
542542 } ) ;
543543
544- program . command ( 'unofficial -project-workflows <project-id>' )
545- . description ( 'Get Information about project workflows' )
544+ program . command ( 'experimental -project-workflows <project-id>' )
545+ . description ( 'Get information about project workflows' )
546546 . action ( ( projectId ) => {
547547 checkOptions ( ) ;
548- unofficial . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
549- unofficial . projectWorkflows ( projectId ) ;
548+ experimental . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
549+ experimental . projectWorkflows ( projectId ) ;
550550 } ) ;
551551
552- program . command ( 'unofficial -project-flowservices <project-id>' )
553- . description ( 'Get Information about project FlowServices' )
552+ program . command ( 'experimental -project-flowservices <project-id>' )
553+ . description ( 'Get information about project FlowServices' )
554554 . action ( ( projectId ) => {
555555 checkOptions ( ) ;
556- unofficial . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
557- unofficial . projectFlowservices ( projectId ) ;
556+ experimental . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
557+ experimental . projectFlowservices ( projectId ) ;
558558 } ) ;
559559
560- program . command ( 'unofficial -project-connector-accounts <project-id>' )
561- . description ( 'Get Information about project connector acconts ' )
560+ program . command ( 'experimental -project-connector-accounts <project-id>' )
561+ . description ( 'Get Information about project connector accounts ' )
562562 . action ( ( projectId ) => {
563563 checkOptions ( ) ;
564- unofficial . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
565- unofficial . connectorAccounts ( projectId ) ;
564+ experimental . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
565+ experimental . connectorAccounts ( projectId ) ;
566566 } ) ;
567567
568- program . command ( 'unofficial -project-connector-accontw -wf-config <project-id>' )
569- . description ( 'Get Configuratoin Information about project connector acconts ' )
568+ program . command ( 'experimental -project-connector-account -wf-config <project-id>' )
569+ . description ( 'Get configuration information about project connector accounts ' )
570570 . action ( ( projectId ) => {
571571 checkOptions ( ) ;
572- unofficial . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
573- unofficial . getProjectAccountConfig ( projectId ) ;
572+ experimental . init ( tenantDomain , tenantUser , tenantPw , program . opts ( ) . timeout , program . opts ( ) . prettyprint )
573+ experimental . getProjectAccountConfig ( projectId ) ;
574574 } ) ;
575575
576576program . parse ( ) ;
0 commit comments