Skip to content

Commit eacda0b

Browse files
committed
changed filename to experimental
1 parent 3df0bbd commit eacda0b

File tree

2 files changed

+27
-27
lines changed

2 files changed

+27
-27
lines changed

unofficial.js renamed to experimental.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
// ------------------------------------------------------------------------------
8-
// PLEASE NOTE - These functions are NOT provided by NON public APIs, and
8+
// PLEASE NOTE - These functions are provided by NON public APIs, and
99
// therefore unsupported - use these at your own risk!
1010
// ------------------------------------------------------------------------------
1111

@@ -27,12 +27,12 @@ var finalCall;
2727
var loginStageCounter = 0;
2828

2929
function debug(message){
30-
dbg.message("<UNOFFICIAL> " + message);
30+
dbg.message("<EXPERIMENTAL> " + message);
3131
}
3232

3333
function init(inDomainName, inUsername, inPassword,inTimeout,inPrettyprint){
3434

35-
dbg.message("UNSUPPORTED APIs - USE THESE AT YOUR OWN RISK");
35+
dbg.message("EXPERIMENTAL/UNSUPPORTED APIs - USE THESE AT YOUR OWN RISK");
3636
domainName = inDomainName;
3737
username = inUsername;
3838
password = inPassword;

wmiocli.js

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var wf = require('./workflow.js');
1313
var theme = require('./themes.js');
1414
var recipe = require('./recipe.js');
1515
var flowservice = require('./flowservice.js');
16-
var unofficial = require('./unofficial.js');
16+
var experimental = require('./experimental.js');
1717

1818
dbg = require('./debug.js');
1919
prettyprint = 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

576576
program.parse();

0 commit comments

Comments
 (0)