@salesforce/plugin-packaging 2.13.6 → 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.
Files changed (28) hide show
  1. package/README.md +337 -22
  2. package/lib/commands/package/convert.d.ts +0 -1
  3. package/lib/commands/package/convert.js +0 -2
  4. package/lib/commands/package/convert.js.map +1 -1
  5. package/lib/commands/package/push-upgrade/abort.d.ts +15 -0
  6. package/lib/commands/package/push-upgrade/abort.js +38 -0
  7. package/lib/commands/package/push-upgrade/abort.js.map +1 -0
  8. package/lib/commands/package/push-upgrade/list.d.ts +18 -0
  9. package/lib/commands/package/push-upgrade/list.js +91 -0
  10. package/lib/commands/package/push-upgrade/list.js.map +1 -0
  11. package/lib/commands/package/push-upgrade/report.d.ts +18 -0
  12. package/lib/commands/package/push-upgrade/report.js +139 -0
  13. package/lib/commands/package/push-upgrade/report.js.map +1 -0
  14. package/lib/commands/package/push-upgrade/schedule.d.ts +17 -0
  15. package/lib/commands/package/push-upgrade/schedule.js +98 -0
  16. package/lib/commands/package/push-upgrade/schedule.js.map +1 -0
  17. package/lib/commands/package/version/list.js +8 -7
  18. package/lib/commands/package/version/list.js.map +1 -1
  19. package/messages/package_pushupgrade_abort.md +51 -0
  20. package/messages/package_pushupgrade_list.md +61 -0
  21. package/messages/package_pushupgrade_report.md +27 -0
  22. package/messages/package_pushupgrade_schedule.md +109 -0
  23. package/oclif.manifest.json +480 -3
  24. package/package.json +6 -6
  25. package/schemas/package-push__upgrade-abort.json +18 -0
  26. package/schemas/package-push__upgrade-list.json +77 -0
  27. package/schemas/package-push__upgrade-report.json +106 -0
  28. package/schemas/package-push__upgrade-schedule.json +25 -0
@@ -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
+ }