@salesforce/plugin-packaging 2.14.0 → 2.15.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/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-packaging",
3
3
  "description": "SF plugin that support Salesforce Packaging Platform",
4
- "version": "2.14.0",
4
+ "version": "2.15.0",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
8
8
  "@oclif/core": "^4",
9
9
  "@salesforce/core": "^8.11.1",
10
10
  "@salesforce/kit": "^3.2.3",
11
- "@salesforce/packaging": "^4.5.0",
11
+ "@salesforce/packaging": "^4.6.0",
12
12
  "@salesforce/sf-plugins-core": "^12.2.2",
13
13
  "chalk": "^5.4.1"
14
14
  },
@@ -247,7 +247,7 @@
247
247
  "exports": "./lib/index.js",
248
248
  "type": "module",
249
249
  "sfdx": {
250
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/2.14.0.crt",
251
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/2.14.0.sig"
250
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/2.15.0.crt",
251
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/2.15.0.sig"
252
252
  }
253
253
  }
@@ -0,0 +1,18 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$ref": "#/definitions/PackagePushUpgradeAbortResult",
4
+ "definitions": {
5
+ "PackagePushUpgradeAbortResult": {
6
+ "type": "object",
7
+ "properties": {
8
+ "success": {
9
+ "type": "boolean"
10
+ }
11
+ },
12
+ "required": [
13
+ "success"
14
+ ],
15
+ "additionalProperties": false
16
+ }
17
+ }
18
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$ref": "#/definitions/PackagePushRequestListResultArr",
4
+ "definitions": {
5
+ "PackagePushRequestListResultArr": {
6
+ "type": "array",
7
+ "items": {
8
+ "$ref": "#/definitions/PackagePushRequestListResult"
9
+ }
10
+ },
11
+ "PackagePushRequestListResult": {
12
+ "type": "object",
13
+ "properties": {
14
+ "Id": {
15
+ "type": "string"
16
+ },
17
+ "PackageVersionId": {
18
+ "type": "string"
19
+ },
20
+ "PackageVersion": {
21
+ "type": "object",
22
+ "properties": {
23
+ "Name": {
24
+ "type": "string"
25
+ },
26
+ "MajorVersion": {
27
+ "type": "string"
28
+ },
29
+ "MinorVersion": {
30
+ "type": "string"
31
+ }
32
+ },
33
+ "required": [
34
+ "Name",
35
+ "MajorVersion",
36
+ "MinorVersion"
37
+ ],
38
+ "additionalProperties": false
39
+ },
40
+ "Status": {
41
+ "type": "string"
42
+ },
43
+ "ScheduledStartTime": {
44
+ "type": "string"
45
+ },
46
+ "StartTime": {
47
+ "type": "string"
48
+ },
49
+ "EndTime": {
50
+ "type": "string"
51
+ },
52
+ "OrgsScheduled": {
53
+ "type": "number"
54
+ },
55
+ "OrgsUpgradeSucceeded": {
56
+ "type": "number"
57
+ },
58
+ "OrgsUpgradeFailed": {
59
+ "type": "number"
60
+ }
61
+ },
62
+ "required": [
63
+ "Id",
64
+ "PackageVersionId",
65
+ "PackageVersion",
66
+ "Status",
67
+ "ScheduledStartTime",
68
+ "StartTime",
69
+ "EndTime",
70
+ "OrgsScheduled",
71
+ "OrgsUpgradeSucceeded",
72
+ "OrgsUpgradeFailed"
73
+ ],
74
+ "additionalProperties": false
75
+ }
76
+ }
77
+ }
@@ -0,0 +1,106 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$ref": "#/definitions/ReportCommandResult",
4
+ "definitions": {
5
+ "ReportCommandResult": {
6
+ "anyOf": [
7
+ {
8
+ "$ref": "#/definitions/PackagePushRequestReportResult"
9
+ },
10
+ {
11
+ "type": "null"
12
+ }
13
+ ]
14
+ },
15
+ "PackagePushRequestReportResult": {
16
+ "type": "object",
17
+ "properties": {
18
+ "PackageVersion": {
19
+ "type": "object",
20
+ "properties": {
21
+ "MetadataPackage": {
22
+ "type": "object",
23
+ "properties": {
24
+ "Name": {
25
+ "type": "string"
26
+ },
27
+ "NamespacePrefix": {
28
+ "type": "string"
29
+ }
30
+ },
31
+ "required": [
32
+ "Name",
33
+ "NamespacePrefix"
34
+ ],
35
+ "additionalProperties": false
36
+ },
37
+ "MetadataPackageId": {
38
+ "type": "string"
39
+ },
40
+ "Name": {
41
+ "type": "string"
42
+ },
43
+ "MajorVersion": {
44
+ "type": "string"
45
+ },
46
+ "MinorVersion": {
47
+ "type": "string"
48
+ }
49
+ },
50
+ "required": [
51
+ "MetadataPackage",
52
+ "MetadataPackageId",
53
+ "Name",
54
+ "MajorVersion",
55
+ "MinorVersion"
56
+ ],
57
+ "additionalProperties": false
58
+ },
59
+ "Id": {
60
+ "type": "string"
61
+ },
62
+ "PackageVersionId": {
63
+ "type": "string"
64
+ },
65
+ "Status": {
66
+ "type": "string"
67
+ },
68
+ "ScheduledStartTime": {
69
+ "type": [
70
+ "string",
71
+ "null"
72
+ ]
73
+ },
74
+ "StartTime": {
75
+ "type": [
76
+ "string",
77
+ "null"
78
+ ]
79
+ },
80
+ "EndTime": {
81
+ "type": [
82
+ "string",
83
+ "null"
84
+ ]
85
+ },
86
+ "DurationSeconds": {
87
+ "type": [
88
+ "number",
89
+ "null"
90
+ ]
91
+ }
92
+ },
93
+ "required": [
94
+ "PackageVersion",
95
+ "Id",
96
+ "PackageVersionId",
97
+ "Status",
98
+ "ScheduledStartTime",
99
+ "StartTime",
100
+ "EndTime",
101
+ "DurationSeconds"
102
+ ],
103
+ "additionalProperties": false
104
+ }
105
+ }
106
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$ref": "#/definitions/PackagePushScheduleResult",
4
+ "definitions": {
5
+ "PackagePushScheduleResult": {
6
+ "type": "object",
7
+ "properties": {
8
+ "PushRequestId": {
9
+ "type": "string"
10
+ },
11
+ "ScheduledStartTime": {
12
+ "type": "string"
13
+ },
14
+ "Status": {
15
+ "type": "string"
16
+ }
17
+ },
18
+ "required": [
19
+ "PushRequestId",
20
+ "Status"
21
+ ],
22
+ "additionalProperties": false
23
+ }
24
+ }
25
+ }