@jayree/sfdx-plugin-manifest 2.6.3 → 2.6.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,38 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$ref": "#/definitions/GitDiffCommandResult",
4
+ "definitions": {
5
+ "GitDiffCommandResult": {
6
+ "type": "object",
7
+ "properties": {
8
+ "manifest": {
9
+ "type": "object",
10
+ "properties": {
11
+ "path": {
12
+ "type": "string"
13
+ },
14
+ "name": {
15
+ "type": "string"
16
+ }
17
+ },
18
+ "required": ["path", "name"],
19
+ "additionalProperties": false
20
+ },
21
+ "destructiveChanges": {
22
+ "type": "object",
23
+ "properties": {
24
+ "path": {
25
+ "type": "string"
26
+ },
27
+ "name": {
28
+ "type": "string"
29
+ }
30
+ },
31
+ "required": ["path", "name"],
32
+ "additionalProperties": false
33
+ }
34
+ },
35
+ "additionalProperties": false
36
+ }
37
+ }
38
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$ref": "#/definitions/PackageManifestObject",
4
+ "definitions": {
5
+ "PackageManifestObject": {
6
+ "type": "object",
7
+ "properties": {
8
+ "Package": {
9
+ "type": "object",
10
+ "properties": {
11
+ "types": {
12
+ "type": "array",
13
+ "items": {
14
+ "$ref": "#/definitions/PackageTypeMembers"
15
+ }
16
+ },
17
+ "version": {
18
+ "type": "string"
19
+ },
20
+ "fullName": {
21
+ "type": "string"
22
+ },
23
+ "@_xmlns": {
24
+ "type": "string"
25
+ }
26
+ },
27
+ "required": ["types", "version"],
28
+ "additionalProperties": false
29
+ }
30
+ },
31
+ "required": ["Package"],
32
+ "additionalProperties": false
33
+ },
34
+ "PackageTypeMembers": {
35
+ "type": "object",
36
+ "properties": {
37
+ "name": {
38
+ "type": "string"
39
+ },
40
+ "members": {
41
+ "type": "array",
42
+ "items": {
43
+ "type": "string"
44
+ }
45
+ }
46
+ },
47
+ "required": ["name", "members"],
48
+ "additionalProperties": false
49
+ }
50
+ }
51
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$ref": "#/definitions/GitDiffCommandResult",
4
+ "definitions": {
5
+ "GitDiffCommandResult": {
6
+ "type": "object",
7
+ "properties": {
8
+ "destructiveChanges": {
9
+ "type": "object"
10
+ },
11
+ "manifest": {
12
+ "type": "object"
13
+ }
14
+ },
15
+ "required": ["destructiveChanges", "manifest"],
16
+ "additionalProperties": false
17
+ }
18
+ }
19
+ }