@trayio/cdk-cli 5.26.0 → 5.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/oclif.manifest.json +74 -74
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ $ npm install -g @trayio/cdk-cli
|
|
|
19
19
|
$ tray-cdk COMMAND
|
|
20
20
|
running command...
|
|
21
21
|
$ tray-cdk (--version|-v)
|
|
22
|
-
@trayio/cdk-cli/5.
|
|
22
|
+
@trayio/cdk-cli/5.28.0 linux-x64 node-v18.20.8
|
|
23
23
|
$ tray-cdk --help [COMMAND]
|
|
24
24
|
USAGE
|
|
25
25
|
$ tray-cdk COMMAND
|
package/oclif.manifest.json
CHANGED
|
@@ -495,41 +495,26 @@
|
|
|
495
495
|
"get.js"
|
|
496
496
|
]
|
|
497
497
|
},
|
|
498
|
-
"
|
|
498
|
+
"namespace:create": {
|
|
499
499
|
"aliases": [],
|
|
500
500
|
"args": {
|
|
501
|
-
"
|
|
502
|
-
"description": "The
|
|
503
|
-
"name": "
|
|
504
|
-
"required":
|
|
501
|
+
"orgId": {
|
|
502
|
+
"description": "The ID of the organization for which to create the namespace",
|
|
503
|
+
"name": "orgId",
|
|
504
|
+
"required": true
|
|
505
505
|
},
|
|
506
|
-
"
|
|
507
|
-
"description": "The
|
|
508
|
-
"name": "
|
|
509
|
-
"required":
|
|
506
|
+
"namespace": {
|
|
507
|
+
"description": "The name of the namespace to create",
|
|
508
|
+
"name": "namespace",
|
|
509
|
+
"required": true
|
|
510
510
|
}
|
|
511
511
|
},
|
|
512
|
-
"description": "
|
|
512
|
+
"description": "Creates a new connector namespace for your organization",
|
|
513
513
|
"examples": [
|
|
514
|
-
"<%= config.bin %> <%= command.id %>",
|
|
515
|
-
"<%= config.bin %> <%= command.id %>
|
|
516
|
-
"<%= config.bin %> <%= command.id %> my-connector 1.0",
|
|
517
|
-
"<%= config.bin %> <%= command.id %> my-connector 1.0 --email=\"my.email@domain.com, your.email@domain.com\"",
|
|
518
|
-
"<%= config.bin %> <%= command.id %> my-connector 1.0 -e=\"my.email@domain.com, your.email@domain.com\""
|
|
514
|
+
"<%= config.bin %> <%= command.id %> org-id namespace",
|
|
515
|
+
"<%= config.bin %> <%= command.id %> org-id namespace --us"
|
|
519
516
|
],
|
|
520
517
|
"flags": {
|
|
521
|
-
"email": {
|
|
522
|
-
"aliases": [
|
|
523
|
-
"emails",
|
|
524
|
-
"email"
|
|
525
|
-
],
|
|
526
|
-
"char": "e",
|
|
527
|
-
"description": "Share with users by providing a list of emails",
|
|
528
|
-
"name": "email",
|
|
529
|
-
"hasDynamicHelp": false,
|
|
530
|
-
"multiple": false,
|
|
531
|
-
"type": "option"
|
|
532
|
-
},
|
|
533
518
|
"us": {
|
|
534
519
|
"description": "Use the Tray US region",
|
|
535
520
|
"name": "us",
|
|
@@ -557,7 +542,7 @@
|
|
|
557
542
|
},
|
|
558
543
|
"hasDynamicHelp": false,
|
|
559
544
|
"hiddenAliases": [],
|
|
560
|
-
"id": "
|
|
545
|
+
"id": "namespace:create",
|
|
561
546
|
"pluginAlias": "@trayio/cdk-cli",
|
|
562
547
|
"pluginName": "@trayio/cdk-cli",
|
|
563
548
|
"pluginType": "core",
|
|
@@ -567,29 +552,23 @@
|
|
|
567
552
|
"relativePath": [
|
|
568
553
|
"dist",
|
|
569
554
|
"commands",
|
|
570
|
-
"
|
|
571
|
-
"
|
|
555
|
+
"namespace",
|
|
556
|
+
"create.js"
|
|
572
557
|
]
|
|
573
558
|
},
|
|
574
|
-
"
|
|
559
|
+
"namespace:get": {
|
|
575
560
|
"aliases": [],
|
|
576
561
|
"args": {
|
|
577
|
-
"
|
|
578
|
-
"description": "The
|
|
579
|
-
"name": "
|
|
580
|
-
"required":
|
|
581
|
-
},
|
|
582
|
-
"connectorVersion": {
|
|
583
|
-
"description": "The version of the connector",
|
|
584
|
-
"name": "connectorVersion",
|
|
585
|
-
"required": false
|
|
562
|
+
"orgId": {
|
|
563
|
+
"description": "The ID of the organization you want to retrieve the namespace for",
|
|
564
|
+
"name": "orgId",
|
|
565
|
+
"required": true
|
|
586
566
|
}
|
|
587
567
|
},
|
|
588
|
-
"description": "Retrieves
|
|
568
|
+
"description": "Retrieves the connector namespace for your organization, if one exists",
|
|
589
569
|
"examples": [
|
|
590
|
-
"<%= config.bin %> <%= command.id %>",
|
|
591
|
-
"<%= config.bin %> <%= command.id %>
|
|
592
|
-
"<%= config.bin %> <%= command.id %> my-connector 1.0"
|
|
570
|
+
"<%= config.bin %> <%= command.id %> some-org-id",
|
|
571
|
+
"<%= config.bin %> <%= command.id %> some-org-id --us"
|
|
593
572
|
],
|
|
594
573
|
"flags": {
|
|
595
574
|
"us": {
|
|
@@ -619,7 +598,7 @@
|
|
|
619
598
|
},
|
|
620
599
|
"hasDynamicHelp": false,
|
|
621
600
|
"hiddenAliases": [],
|
|
622
|
-
"id": "
|
|
601
|
+
"id": "namespace:get",
|
|
623
602
|
"pluginAlias": "@trayio/cdk-cli",
|
|
624
603
|
"pluginName": "@trayio/cdk-cli",
|
|
625
604
|
"pluginType": "core",
|
|
@@ -629,30 +608,45 @@
|
|
|
629
608
|
"relativePath": [
|
|
630
609
|
"dist",
|
|
631
610
|
"commands",
|
|
632
|
-
"
|
|
633
|
-
"
|
|
611
|
+
"namespace",
|
|
612
|
+
"get.js"
|
|
634
613
|
]
|
|
635
614
|
},
|
|
636
|
-
"
|
|
615
|
+
"permissions:add": {
|
|
637
616
|
"aliases": [],
|
|
638
617
|
"args": {
|
|
639
|
-
"
|
|
640
|
-
"description": "The
|
|
641
|
-
"name": "
|
|
642
|
-
"required":
|
|
618
|
+
"connectorName": {
|
|
619
|
+
"description": "The name of the connector",
|
|
620
|
+
"name": "connectorName",
|
|
621
|
+
"required": false
|
|
643
622
|
},
|
|
644
|
-
"
|
|
645
|
-
"description": "The
|
|
646
|
-
"name": "
|
|
647
|
-
"required":
|
|
623
|
+
"connectorVersion": {
|
|
624
|
+
"description": "The version of the connector",
|
|
625
|
+
"name": "connectorVersion",
|
|
626
|
+
"required": false
|
|
648
627
|
}
|
|
649
628
|
},
|
|
650
|
-
"description": "
|
|
629
|
+
"description": "Share your connector version with other users in your organization",
|
|
651
630
|
"examples": [
|
|
652
|
-
"<%= config.bin %> <%= command.id %>
|
|
653
|
-
"<%= config.bin %> <%= command.id %>
|
|
631
|
+
"<%= config.bin %> <%= command.id %>",
|
|
632
|
+
"<%= config.bin %> <%= command.id %> my-connector",
|
|
633
|
+
"<%= config.bin %> <%= command.id %> my-connector 1.0",
|
|
634
|
+
"<%= config.bin %> <%= command.id %> my-connector 1.0 --email=\"my.email@domain.com, your.email@domain.com\"",
|
|
635
|
+
"<%= config.bin %> <%= command.id %> my-connector 1.0 -e=\"my.email@domain.com, your.email@domain.com\""
|
|
654
636
|
],
|
|
655
637
|
"flags": {
|
|
638
|
+
"email": {
|
|
639
|
+
"aliases": [
|
|
640
|
+
"emails",
|
|
641
|
+
"email"
|
|
642
|
+
],
|
|
643
|
+
"char": "e",
|
|
644
|
+
"description": "Share with users by providing a list of emails",
|
|
645
|
+
"name": "email",
|
|
646
|
+
"hasDynamicHelp": false,
|
|
647
|
+
"multiple": false,
|
|
648
|
+
"type": "option"
|
|
649
|
+
},
|
|
656
650
|
"us": {
|
|
657
651
|
"description": "Use the Tray US region",
|
|
658
652
|
"name": "us",
|
|
@@ -680,7 +674,7 @@
|
|
|
680
674
|
},
|
|
681
675
|
"hasDynamicHelp": false,
|
|
682
676
|
"hiddenAliases": [],
|
|
683
|
-
"id": "
|
|
677
|
+
"id": "permissions:add",
|
|
684
678
|
"pluginAlias": "@trayio/cdk-cli",
|
|
685
679
|
"pluginName": "@trayio/cdk-cli",
|
|
686
680
|
"pluginType": "core",
|
|
@@ -690,23 +684,29 @@
|
|
|
690
684
|
"relativePath": [
|
|
691
685
|
"dist",
|
|
692
686
|
"commands",
|
|
693
|
-
"
|
|
694
|
-
"
|
|
687
|
+
"permissions",
|
|
688
|
+
"add.js"
|
|
695
689
|
]
|
|
696
690
|
},
|
|
697
|
-
"
|
|
691
|
+
"permissions:list": {
|
|
698
692
|
"aliases": [],
|
|
699
693
|
"args": {
|
|
700
|
-
"
|
|
701
|
-
"description": "The
|
|
702
|
-
"name": "
|
|
703
|
-
"required":
|
|
694
|
+
"connectorName": {
|
|
695
|
+
"description": "The name of the connector",
|
|
696
|
+
"name": "connectorName",
|
|
697
|
+
"required": false
|
|
698
|
+
},
|
|
699
|
+
"connectorVersion": {
|
|
700
|
+
"description": "The version of the connector",
|
|
701
|
+
"name": "connectorVersion",
|
|
702
|
+
"required": false
|
|
704
703
|
}
|
|
705
704
|
},
|
|
706
|
-
"description": "Retrieves
|
|
705
|
+
"description": "Retrieves a list of emails that have access to a connector",
|
|
707
706
|
"examples": [
|
|
708
|
-
"<%= config.bin %> <%= command.id %>
|
|
709
|
-
"<%= config.bin %> <%= command.id %>
|
|
707
|
+
"<%= config.bin %> <%= command.id %>",
|
|
708
|
+
"<%= config.bin %> <%= command.id %> my-connector",
|
|
709
|
+
"<%= config.bin %> <%= command.id %> my-connector 1.0"
|
|
710
710
|
],
|
|
711
711
|
"flags": {
|
|
712
712
|
"us": {
|
|
@@ -736,7 +736,7 @@
|
|
|
736
736
|
},
|
|
737
737
|
"hasDynamicHelp": false,
|
|
738
738
|
"hiddenAliases": [],
|
|
739
|
-
"id": "
|
|
739
|
+
"id": "permissions:list",
|
|
740
740
|
"pluginAlias": "@trayio/cdk-cli",
|
|
741
741
|
"pluginName": "@trayio/cdk-cli",
|
|
742
742
|
"pluginType": "core",
|
|
@@ -746,10 +746,10 @@
|
|
|
746
746
|
"relativePath": [
|
|
747
747
|
"dist",
|
|
748
748
|
"commands",
|
|
749
|
-
"
|
|
750
|
-
"
|
|
749
|
+
"permissions",
|
|
750
|
+
"list.js"
|
|
751
751
|
]
|
|
752
752
|
}
|
|
753
753
|
},
|
|
754
|
-
"version": "5.
|
|
754
|
+
"version": "5.28.0"
|
|
755
755
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trayio/cdk-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.28.0",
|
|
4
4
|
"description": "A CLI for connector development",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./*": "./dist/*.js"
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
"@oclif/plugin-version": "2.0.11",
|
|
23
23
|
"@oclif/plugin-warn-if-update-available": "^3.1.4",
|
|
24
24
|
"@oclif/test": "3.1.12",
|
|
25
|
-
"@trayio/axios": "5.
|
|
26
|
-
"@trayio/cdk-build": "5.
|
|
27
|
-
"@trayio/cdk-cli-commons": "5.
|
|
28
|
-
"@trayio/commons": "5.
|
|
29
|
-
"@trayio/generator": "5.
|
|
30
|
-
"@trayio/tray-client": "5.
|
|
31
|
-
"@trayio/tray-openapi": "5.
|
|
25
|
+
"@trayio/axios": "5.28.0",
|
|
26
|
+
"@trayio/cdk-build": "5.28.0",
|
|
27
|
+
"@trayio/cdk-cli-commons": "5.28.0",
|
|
28
|
+
"@trayio/commons": "5.28.0",
|
|
29
|
+
"@trayio/generator": "5.28.0",
|
|
30
|
+
"@trayio/tray-client": "5.28.0",
|
|
31
|
+
"@trayio/tray-openapi": "5.28.0",
|
|
32
32
|
"chalk": "4.1.2",
|
|
33
33
|
"dotenv": "^16.0.0",
|
|
34
34
|
"inquirer": "8.2.6"
|