@prismatic-io/prism 4.6.9 → 4.7.1
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/lib/auth.js +3 -3
- package/lib/commands/alerts/events/list.js +6 -7
- package/lib/commands/alerts/groups/delete.js +4 -5
- package/lib/commands/alerts/groups/list.js +2 -2
- package/lib/commands/alerts/monitors/clear.js +4 -5
- package/lib/commands/alerts/monitors/delete.js +4 -5
- package/lib/commands/alerts/monitors/list.js +2 -2
- package/lib/commands/alerts/triggers/list.js +2 -2
- package/lib/commands/alerts/webhooks/delete.js +4 -5
- package/lib/commands/alerts/webhooks/list.js +2 -2
- package/lib/commands/authorization-methods/list.js +2 -2
- package/lib/commands/components/actions/list.js +7 -7
- package/lib/commands/components/data-sources/list.js +7 -7
- package/lib/commands/components/delete.js +4 -5
- package/lib/commands/components/dev/run.js +1 -1
- package/lib/commands/components/dev/test.js +22 -21
- package/lib/commands/components/init/index.js +4 -5
- package/lib/commands/components/list.js +19 -2
- package/lib/commands/components/publish.js +9 -5
- package/lib/commands/components/triggers/list.js +7 -7
- package/lib/commands/customers/credentials/delete.js +4 -5
- package/lib/commands/customers/credentials/list.js +2 -2
- package/lib/commands/customers/credentials/update.js +4 -5
- package/lib/commands/customers/delete.js +4 -5
- package/lib/commands/customers/list.js +2 -2
- package/lib/commands/customers/update.js +4 -5
- package/lib/commands/customers/users/delete.js +4 -5
- package/lib/commands/customers/users/list.js +6 -7
- package/lib/commands/customers/users/roles.js +2 -2
- package/lib/commands/customers/users/update.js +4 -5
- package/lib/commands/instances/config-vars/list.js +5 -9
- package/lib/commands/instances/delete.js +4 -5
- package/lib/commands/instances/deploy.js +4 -5
- package/lib/commands/instances/disable.js +4 -5
- package/lib/commands/instances/enable.js +4 -5
- package/lib/commands/instances/flow-configs/list.js +5 -5
- package/lib/commands/instances/flow-configs/test.js +7 -8
- package/lib/commands/instances/list.js +2 -2
- package/lib/commands/instances/update.js +32 -9
- package/lib/commands/integrations/available.js +4 -5
- package/lib/commands/integrations/delete.js +4 -5
- package/lib/commands/integrations/export.js +4 -5
- package/lib/commands/integrations/flows/list.js +6 -7
- package/lib/commands/integrations/flows/test.js +6 -6
- package/lib/commands/integrations/fork.js +4 -5
- package/lib/commands/integrations/list.js +2 -2
- package/lib/commands/integrations/marketplace.js +4 -5
- package/lib/commands/integrations/publish.js +4 -5
- package/lib/commands/integrations/update.js +4 -5
- package/lib/commands/integrations/versions/index.js +6 -7
- package/lib/commands/login.js +1 -1
- package/lib/commands/logs/severities/list.js +2 -2
- package/lib/commands/organization/credentials/delete.js +4 -5
- package/lib/commands/organization/credentials/list.js +2 -2
- package/lib/commands/organization/credentials/update.js +4 -5
- package/lib/commands/organization/signingkeys/delete.js +4 -5
- package/lib/commands/organization/signingkeys/list.js +2 -2
- package/lib/commands/organization/users/delete.js +4 -5
- package/lib/commands/organization/users/list.js +2 -2
- package/lib/commands/organization/users/roles.js +2 -2
- package/lib/commands/organization/users/update.js +4 -5
- package/lib/utils/component/publish.js +18 -14
- package/lib/utils/execution/logs.js +1 -1
- package/lib/utils/user/query.js +2 -0
- package/oclif.manifest.json +4062 -1
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prismatic-io/prism",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.1",
|
|
4
4
|
"description": "Build, deploy, and support integrations in Prismatic from the comfort of your command line",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"prismatic",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@msgpack/msgpack": "2.3.0",
|
|
44
|
-
"@oclif/core": "
|
|
45
|
-
"@oclif/plugin-autocomplete": "2.3.
|
|
46
|
-
"@oclif/plugin-help": "5.
|
|
47
|
-
"@oclif/plugin-warn-if-update-available": "2.0.
|
|
44
|
+
"@oclif/core": "2.11.8",
|
|
45
|
+
"@oclif/plugin-autocomplete": "2.3.6",
|
|
46
|
+
"@oclif/plugin-help": "5.2.17",
|
|
47
|
+
"@oclif/plugin-warn-if-update-available": "2.0.48",
|
|
48
48
|
"@prismatic-io/generator-spectral": "2.1.4",
|
|
49
49
|
"@prismatic-io/spectral": "7.4.0",
|
|
50
50
|
"archiver": "3.1.1",
|
|
@@ -64,7 +64,8 @@
|
|
|
64
64
|
"jwt-decode": "2.2.0",
|
|
65
65
|
"lodash": "4.17.21",
|
|
66
66
|
"mime-types": "2.1.27",
|
|
67
|
-
"oclif": "3.
|
|
67
|
+
"oclif": "3.11.3",
|
|
68
|
+
"open": "8.4.2",
|
|
68
69
|
"prettier": "2.6.2",
|
|
69
70
|
"striptags": "3.2.0",
|
|
70
71
|
"tempy": "0.5.0",
|
|
@@ -73,7 +74,7 @@
|
|
|
73
74
|
"yeoman-environment": "3.9.1"
|
|
74
75
|
},
|
|
75
76
|
"devDependencies": {
|
|
76
|
-
"@oclif/test": "2.
|
|
77
|
+
"@oclif/test": "2.4.6",
|
|
77
78
|
"@types/archiver": "3.1.0",
|
|
78
79
|
"@types/fs-extra": "9.0.1",
|
|
79
80
|
"@types/glob": "7.1.4",
|