generated from salesforcecli/plugin-template-sf
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
467 additions
and
401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,9 @@ docs | |
package.json.bak. | ||
|
||
# -- CLEAN ALL | ||
*.tsbuildinfo | ||
.eslintcache | ||
.wireit | ||
node_modules | ||
|
||
# -- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
[ | ||
{ | ||
"command": "generate:metadata:field", | ||
"command": "schema:generate:field", | ||
"plugin": "@salesforce/plugin-sobject", | ||
"flags": ["label", "object"], | ||
"alias": [] | ||
"alias": ["generate:metadata:field"] | ||
}, | ||
{ | ||
"command": "generate:metadata:platformevent", | ||
"command": "schema:generate:platformevent", | ||
"plugin": "@salesforce/plugin-sobject", | ||
"flags": ["label"], | ||
"alias": [] | ||
"alias": ["generate:metadata:platformevent"] | ||
}, | ||
{ | ||
"command": "generate:metadata:sobject", | ||
"command": "schema:generate:sobject", | ||
"plugin": "@salesforce/plugin-sobject", | ||
"flags": ["label", "use-default-features"], | ||
"alias": [] | ||
"alias": ["generate:metadata:sobject"] | ||
}, | ||
{ | ||
"command": "generate:metadata:tab", | ||
"command": "schema:generate:tab", | ||
"plugin": "@salesforce/plugin-sobject", | ||
"flags": ["directory", "icon", "json", "object"], | ||
"alias": [] | ||
"alias": ["generate:metadata:tab"] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "#/definitions/PlatformEventGenerateResult", | ||
"definitions": { | ||
"PlatformEventGenerateResult": { | ||
"type": "object", | ||
"properties": { | ||
"object": { | ||
"$ref": "#/definitions/SaveablePlatformEvent" | ||
}, | ||
"path": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["object", "path"], | ||
"additionalProperties": false | ||
}, | ||
"SaveablePlatformEvent": { | ||
"type": "object", | ||
"properties": { | ||
"fullName": { | ||
"type": ["string", "null"] | ||
}, | ||
"label": { | ||
"type": ["string", "null"] | ||
}, | ||
"deploymentStatus": { | ||
"type": ["string", "null"] | ||
}, | ||
"description": { | ||
"type": ["string", "null"] | ||
}, | ||
"pluralLabel": { | ||
"type": ["string", "null"] | ||
}, | ||
"eventType": { | ||
"type": ["string", "null"] | ||
}, | ||
"publishBehavior": { | ||
"type": ["string", "null"] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"description": "There are a lot of properties that we don't, and some that jsforce thinks are mandatory that aren't. Many apply to the various sub-species (mdt, external, events)\n\nThis type represents a PlatformEvent that can deploy." | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.