@salesforce/plugin-packaging 2.14.0 → 2.15.1
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/README.md +250 -23
- package/lib/commands/package/push-upgrade/abort.d.ts +15 -0
- package/lib/commands/package/push-upgrade/abort.js +38 -0
- package/lib/commands/package/push-upgrade/abort.js.map +1 -0
- package/lib/commands/package/push-upgrade/list.d.ts +18 -0
- package/lib/commands/package/push-upgrade/list.js +91 -0
- package/lib/commands/package/push-upgrade/list.js.map +1 -0
- package/lib/commands/package/push-upgrade/report.d.ts +18 -0
- package/lib/commands/package/push-upgrade/report.js +139 -0
- package/lib/commands/package/push-upgrade/report.js.map +1 -0
- package/lib/commands/package/push-upgrade/schedule.d.ts +17 -0
- package/lib/commands/package/push-upgrade/schedule.js +98 -0
- package/lib/commands/package/push-upgrade/schedule.js.map +1 -0
- package/lib/commands/package/version/list.js +8 -7
- package/lib/commands/package/version/list.js.map +1 -1
- package/messages/package_pushupgrade_abort.md +51 -0
- package/messages/package_pushupgrade_list.md +61 -0
- package/messages/package_pushupgrade_report.md +27 -0
- package/messages/package_pushupgrade_schedule.md +109 -0
- package/oclif.manifest.json +480 -1
- package/package.json +6 -6
- package/schemas/package-push__upgrade-abort.json +18 -0
- package/schemas/package-push__upgrade-list.json +77 -0
- package/schemas/package-push__upgrade-report.json +106 -0
- package/schemas/package-push__upgrade-schedule.json +25 -0
|
@@ -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
|
+
}
|