Skip to content

Commit

Permalink
fix: bump deps (#162)
Browse files Browse the repository at this point in the history
@W-10009889@
  • Loading branch information
peternhale authored Oct 14, 2021
1 parent 749df9d commit ad6ee1b
Show file tree
Hide file tree
Showing 4 changed files with 286 additions and 99 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
"dependencies": {
"@oclif/core": "^1.0.0",
"@salesforce/core": "3.6.5",
"@salesforce/sf-plugins-core": "^1.0.0",
"@oclif/core": "^1.0.2",
"@salesforce/core": "3.6.6",
"@salesforce/sf-plugins-core": "^1.0.4",
"change-case": "^4.1.2",
"cli-ux": "^5.6.3",
"open": "^8.2.0",
"tslib": "^2"
},
"devDependencies": {
"@oclif/plugin-command-snapshot": "2.2.2",
"@oclif/plugin-command-snapshot": "^3.1.1",
"@oclif/test": "^1.2.8",
"@salesforce/cli-plugins-testkit": "^1.4.2",
"@salesforce/cli-plugins-testkit": "^1.4.11",
"@salesforce/dev-config": "^2.1.2",
"@salesforce/dev-scripts": "^0.9.18",
"@salesforce/plugin-command-reference": "^2.0.11",
"@salesforce/plugin-config": "^2.2.6",
"@salesforce/plugin-functions": "^0.2.50",
"@salesforce/plugin-command-reference": "^2.1.1",
"@salesforce/plugin-config": "^2.2.9",
"@salesforce/plugin-functions": "^1.1.4",
"@salesforce/prettier-config": "^0.0.2",
"@salesforce/ts-sinon": "1.3.21",
"@types/shelljs": "^0.8.8",
Expand Down
75 changes: 75 additions & 0 deletions schemas/hooks/sf-env-display.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/OrgAuthorization",
"definitions": {
"OrgAuthorization": {
"type": "object",
"properties": {
"orgId": {
"type": "string"
},
"username": {
"type": "string"
},
"oauthMethod": {
"type": "string",
"enum": ["jwt", "web", "token", "unknown"]
},
"aliases": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
]
},
"configs": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
]
},
"isScratchOrg": {
"type": "boolean"
},
"isDevHub": {
"type": "boolean"
},
"instanceUrl": {
"type": "string"
},
"accessToken": {
"type": "string"
},
"error": {
"type": "string"
},
"isExpired": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "string",
"const": "unknown"
}
]
}
},
"required": ["orgId", "username", "oauthMethod", "isExpired"],
"additionalProperties": false
}
}
}
40 changes: 40 additions & 0 deletions schemas/hooks/sf-env-list.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/SalesforceOrg",
"definitions": {
"SalesforceOrg": {
"type": "object",
"properties": {
"aliases": {
"type": "array",
"items": {
"type": "string"
}
},
"username": {
"type": "string"
},
"orgId": {
"type": "string"
},
"instanceUrl": {
"type": "string"
},
"oauthMethod": {
"type": "string"
},
"configs": {
"type": "array",
"items": {
"type": "string"
}
},
"error": {
"type": "string"
}
},
"required": ["aliases", "username", "orgId", "instanceUrl", "oauthMethod", "configs"],
"additionalProperties": false
}
}
}
Loading

0 comments on commit ad6ee1b

Please sign in to comment.