@salesforce/plugin-packaging 2.19.9 → 2.20.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/README.md +29 -29
- package/lib/commands/package/bundle/create.d.ts +20 -0
- package/lib/commands/package/bundle/create.js +56 -0
- package/lib/commands/package/bundle/create.js.map +1 -0
- package/lib/commands/package/bundle/delete.d.ts +19 -0
- package/lib/commands/package/bundle/delete.js +65 -0
- package/lib/commands/package/bundle/delete.js.map +1 -0
- package/lib/commands/package/bundle/install/list.d.ts +20 -0
- package/lib/commands/package/bundle/install/list.js +81 -0
- package/lib/commands/package/bundle/install/list.js.map +1 -0
- package/lib/commands/package/bundle/install/report.d.ts +19 -0
- package/lib/commands/package/bundle/install/report.js +93 -0
- package/lib/commands/package/bundle/install/report.js.map +1 -0
- package/lib/commands/package/bundle/install.d.ts +21 -0
- package/lib/commands/package/bundle/install.js +109 -0
- package/lib/commands/package/bundle/install.js.map +1 -0
- package/lib/commands/package/bundle/list.d.ts +18 -0
- package/lib/commands/package/bundle/list.js +64 -0
- package/lib/commands/package/bundle/list.js.map +1 -0
- package/lib/commands/package/bundle/version/create/list.d.ts +22 -0
- package/lib/commands/package/bundle/version/create/list.js +130 -0
- package/lib/commands/package/bundle/version/create/list.js.map +1 -0
- package/lib/commands/package/bundle/version/create/report.d.ts +18 -0
- package/lib/commands/package/bundle/version/create/report.js +82 -0
- package/lib/commands/package/bundle/version/create/report.js.map +1 -0
- package/lib/commands/package/bundle/version/create.d.ts +23 -0
- package/lib/commands/package/bundle/version/create.js +125 -0
- package/lib/commands/package/bundle/version/create.js.map +1 -0
- package/lib/commands/package/bundle/version/list.d.ts +18 -0
- package/lib/commands/package/bundle/version/list.js +75 -0
- package/lib/commands/package/bundle/version/list.js.map +1 -0
- package/lib/commands/package/bundle/version/report.d.ts +22 -0
- package/lib/commands/package/bundle/version/report.js +165 -0
- package/lib/commands/package/bundle/version/report.js.map +1 -0
- package/messages/bundle_create.md +42 -0
- package/messages/bundle_install.md +58 -0
- package/messages/bundle_install_list.md +69 -0
- package/messages/bundle_install_report.md +53 -0
- package/messages/bundle_list.md +45 -0
- package/messages/bundle_version_create.md +74 -0
- package/messages/bundle_version_create_list.md +73 -0
- package/messages/bundle_version_create_report.md +49 -0
- package/messages/bundle_version_list.md +45 -0
- package/messages/bundle_version_report.md +17 -0
- package/messages/package_bundle_delete.md +45 -0
- package/messages/package_delete.md +5 -5
- package/oclif.manifest.json +2927 -1376
- package/package.json +7 -6
- package/schemas/package-bundle-delete.json +72 -0
- package/schemas/package-bundle-install-list.json +58 -0
- package/schemas/package-bundle-install-report.json +58 -0
- package/schemas/package-bundle-install.json +52 -0
- package/schemas/package-bundle-list.json +58 -0
- package/schemas/package-bundle-version-create-list.json +73 -0
- package/schemas/package-bundle-version-create-report.json +73 -0
- package/schemas/package-bundle-version-create.json +67 -0
- package/schemas/package-bundle-version-list.json +113 -0
- package/schemas/package-bundle-version-report.json +446 -0
|
@@ -0,0 +1,446 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/BundleVersionReportResult",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"BundleVersionReportResult": {
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"properties": {
|
|
9
|
+
"componentPackages": {
|
|
10
|
+
"type": "array",
|
|
11
|
+
"items": {
|
|
12
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageVersion"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"Id": {
|
|
16
|
+
"type": "string"
|
|
17
|
+
},
|
|
18
|
+
"PackageBundle": {
|
|
19
|
+
"$ref": "#/definitions/BundleSObjects.Bundle"
|
|
20
|
+
},
|
|
21
|
+
"VersionName": {
|
|
22
|
+
"type": "string"
|
|
23
|
+
},
|
|
24
|
+
"MajorVersion": {
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"MinorVersion": {
|
|
28
|
+
"type": "string"
|
|
29
|
+
},
|
|
30
|
+
"Ancestor": {
|
|
31
|
+
"anyOf": [
|
|
32
|
+
{
|
|
33
|
+
"$ref": "#/definitions/BundleSObjects.BundleVersion"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"type": "null"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"IsReleased": {
|
|
41
|
+
"type": "boolean"
|
|
42
|
+
},
|
|
43
|
+
"CreatedDate": {
|
|
44
|
+
"type": "string"
|
|
45
|
+
},
|
|
46
|
+
"CreatedById": {
|
|
47
|
+
"type": "string"
|
|
48
|
+
},
|
|
49
|
+
"LastModifiedDate": {
|
|
50
|
+
"type": "string"
|
|
51
|
+
},
|
|
52
|
+
"LastModifiedById": {
|
|
53
|
+
"type": "string"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"required": [
|
|
57
|
+
"CreatedById",
|
|
58
|
+
"CreatedDate",
|
|
59
|
+
"Id",
|
|
60
|
+
"IsReleased",
|
|
61
|
+
"LastModifiedById",
|
|
62
|
+
"LastModifiedDate",
|
|
63
|
+
"MajorVersion",
|
|
64
|
+
"MinorVersion",
|
|
65
|
+
"PackageBundle",
|
|
66
|
+
"VersionName",
|
|
67
|
+
"componentPackages"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
"PackagingSObjects.SubscriberPackageVersion": {
|
|
71
|
+
"type": "object",
|
|
72
|
+
"properties": {
|
|
73
|
+
"Id": {
|
|
74
|
+
"type": "string"
|
|
75
|
+
},
|
|
76
|
+
"SubscriberPackageId": {
|
|
77
|
+
"type": "string"
|
|
78
|
+
},
|
|
79
|
+
"Name": {
|
|
80
|
+
"type": "string"
|
|
81
|
+
},
|
|
82
|
+
"Description": {
|
|
83
|
+
"type": "string"
|
|
84
|
+
},
|
|
85
|
+
"PublisherName": {
|
|
86
|
+
"type": "string"
|
|
87
|
+
},
|
|
88
|
+
"MajorVersion": {
|
|
89
|
+
"type": "number"
|
|
90
|
+
},
|
|
91
|
+
"MinorVersion": {
|
|
92
|
+
"type": "number"
|
|
93
|
+
},
|
|
94
|
+
"PatchVersion": {
|
|
95
|
+
"type": "number"
|
|
96
|
+
},
|
|
97
|
+
"BuildNumber": {
|
|
98
|
+
"type": "number"
|
|
99
|
+
},
|
|
100
|
+
"ReleaseState": {
|
|
101
|
+
"type": "string"
|
|
102
|
+
},
|
|
103
|
+
"IsManaged": {
|
|
104
|
+
"type": "boolean"
|
|
105
|
+
},
|
|
106
|
+
"IsDeprecated": {
|
|
107
|
+
"type": "boolean"
|
|
108
|
+
},
|
|
109
|
+
"IsPasswordProtected": {
|
|
110
|
+
"type": "boolean"
|
|
111
|
+
},
|
|
112
|
+
"IsBeta": {
|
|
113
|
+
"type": "boolean"
|
|
114
|
+
},
|
|
115
|
+
"Package2ContainerOptions": {
|
|
116
|
+
"$ref": "#/definitions/PackageType"
|
|
117
|
+
},
|
|
118
|
+
"IsSecurityReviewed": {
|
|
119
|
+
"type": "boolean"
|
|
120
|
+
},
|
|
121
|
+
"IsOrgDependent": {
|
|
122
|
+
"type": "boolean"
|
|
123
|
+
},
|
|
124
|
+
"AppExchangePackageName": {
|
|
125
|
+
"type": "string"
|
|
126
|
+
},
|
|
127
|
+
"AppExchangeDescription": {
|
|
128
|
+
"type": "string"
|
|
129
|
+
},
|
|
130
|
+
"AppExchangePublisherName": {
|
|
131
|
+
"type": "string"
|
|
132
|
+
},
|
|
133
|
+
"AppExchangeLogoUrl": {
|
|
134
|
+
"type": "string"
|
|
135
|
+
},
|
|
136
|
+
"ReleaseNotesUrl": {
|
|
137
|
+
"type": "string"
|
|
138
|
+
},
|
|
139
|
+
"PostInstallUrl": {
|
|
140
|
+
"type": "string"
|
|
141
|
+
},
|
|
142
|
+
"RemoteSiteSettings": {
|
|
143
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageRemoteSiteSettings"
|
|
144
|
+
},
|
|
145
|
+
"CspTrustedSites": {
|
|
146
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageCspTrustedSites"
|
|
147
|
+
},
|
|
148
|
+
"Profiles": {
|
|
149
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageProfiles"
|
|
150
|
+
},
|
|
151
|
+
"Dependencies": {
|
|
152
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageDependencies"
|
|
153
|
+
},
|
|
154
|
+
"InstallValidationStatus": {
|
|
155
|
+
"$ref": "#/definitions/PackagingSObjects.InstallValidationStatus"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"required": [
|
|
159
|
+
"Id",
|
|
160
|
+
"SubscriberPackageId",
|
|
161
|
+
"Name",
|
|
162
|
+
"Description",
|
|
163
|
+
"PublisherName",
|
|
164
|
+
"MajorVersion",
|
|
165
|
+
"MinorVersion",
|
|
166
|
+
"PatchVersion",
|
|
167
|
+
"BuildNumber",
|
|
168
|
+
"ReleaseState",
|
|
169
|
+
"IsManaged",
|
|
170
|
+
"IsDeprecated",
|
|
171
|
+
"IsPasswordProtected",
|
|
172
|
+
"IsBeta",
|
|
173
|
+
"Package2ContainerOptions",
|
|
174
|
+
"IsSecurityReviewed",
|
|
175
|
+
"IsOrgDependent",
|
|
176
|
+
"AppExchangePackageName",
|
|
177
|
+
"AppExchangeDescription",
|
|
178
|
+
"AppExchangePublisherName",
|
|
179
|
+
"AppExchangeLogoUrl",
|
|
180
|
+
"ReleaseNotesUrl",
|
|
181
|
+
"PostInstallUrl",
|
|
182
|
+
"RemoteSiteSettings",
|
|
183
|
+
"CspTrustedSites",
|
|
184
|
+
"Profiles",
|
|
185
|
+
"Dependencies",
|
|
186
|
+
"InstallValidationStatus"
|
|
187
|
+
],
|
|
188
|
+
"additionalProperties": false
|
|
189
|
+
},
|
|
190
|
+
"PackageType": {
|
|
191
|
+
"type": "string",
|
|
192
|
+
"enum": ["Managed", "Unlocked"]
|
|
193
|
+
},
|
|
194
|
+
"PackagingSObjects.SubscriberPackageRemoteSiteSettings": {
|
|
195
|
+
"type": "object",
|
|
196
|
+
"properties": {
|
|
197
|
+
"settings": {
|
|
198
|
+
"type": "array",
|
|
199
|
+
"items": {
|
|
200
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageRemoteSiteSetting"
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"required": ["settings"],
|
|
205
|
+
"additionalProperties": false
|
|
206
|
+
},
|
|
207
|
+
"PackagingSObjects.SubscriberPackageRemoteSiteSetting": {
|
|
208
|
+
"type": "object",
|
|
209
|
+
"properties": {
|
|
210
|
+
"secure": {
|
|
211
|
+
"type": "boolean"
|
|
212
|
+
},
|
|
213
|
+
"url": {
|
|
214
|
+
"type": "string"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"required": ["secure", "url"],
|
|
218
|
+
"additionalProperties": false
|
|
219
|
+
},
|
|
220
|
+
"PackagingSObjects.SubscriberPackageCspTrustedSites": {
|
|
221
|
+
"type": "object",
|
|
222
|
+
"properties": {
|
|
223
|
+
"settings": {
|
|
224
|
+
"type": "array",
|
|
225
|
+
"items": {
|
|
226
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageCspTrustedSite"
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"required": ["settings"],
|
|
231
|
+
"additionalProperties": false
|
|
232
|
+
},
|
|
233
|
+
"PackagingSObjects.SubscriberPackageCspTrustedSite": {
|
|
234
|
+
"type": "object",
|
|
235
|
+
"properties": {
|
|
236
|
+
"endpointUrl": {
|
|
237
|
+
"type": "string"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"required": ["endpointUrl"],
|
|
241
|
+
"additionalProperties": false
|
|
242
|
+
},
|
|
243
|
+
"PackagingSObjects.SubscriberPackageProfiles": {
|
|
244
|
+
"type": "object",
|
|
245
|
+
"properties": {
|
|
246
|
+
"destinationProfiles": {
|
|
247
|
+
"type": "array",
|
|
248
|
+
"items": {
|
|
249
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageDestinationProfile"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"sourceProfiles": {
|
|
253
|
+
"type": "array",
|
|
254
|
+
"items": {
|
|
255
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageSourceProfile"
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"required": ["destinationProfiles", "sourceProfiles"],
|
|
260
|
+
"additionalProperties": false
|
|
261
|
+
},
|
|
262
|
+
"PackagingSObjects.SubscriberPackageDestinationProfile": {
|
|
263
|
+
"type": "object",
|
|
264
|
+
"properties": {
|
|
265
|
+
"description": {
|
|
266
|
+
"type": "string"
|
|
267
|
+
},
|
|
268
|
+
"displayName": {
|
|
269
|
+
"type": "string"
|
|
270
|
+
},
|
|
271
|
+
"name": {
|
|
272
|
+
"type": "string"
|
|
273
|
+
},
|
|
274
|
+
"noAccess": {
|
|
275
|
+
"type": "boolean"
|
|
276
|
+
},
|
|
277
|
+
"profileId": {
|
|
278
|
+
"type": "string"
|
|
279
|
+
},
|
|
280
|
+
"type": {
|
|
281
|
+
"type": "string"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"required": ["description", "displayName", "name", "noAccess", "profileId", "type"],
|
|
285
|
+
"additionalProperties": false
|
|
286
|
+
},
|
|
287
|
+
"PackagingSObjects.SubscriberPackageSourceProfile": {
|
|
288
|
+
"type": "object",
|
|
289
|
+
"properties": {
|
|
290
|
+
"label": {
|
|
291
|
+
"type": "string"
|
|
292
|
+
},
|
|
293
|
+
"value": {
|
|
294
|
+
"type": "string"
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"required": ["label", "value"],
|
|
298
|
+
"additionalProperties": false
|
|
299
|
+
},
|
|
300
|
+
"PackagingSObjects.SubscriberPackageDependencies": {
|
|
301
|
+
"type": "object",
|
|
302
|
+
"properties": {
|
|
303
|
+
"ids": {
|
|
304
|
+
"type": "array",
|
|
305
|
+
"items": {
|
|
306
|
+
"type": "object",
|
|
307
|
+
"properties": {
|
|
308
|
+
"subscriberPackageVersionId": {
|
|
309
|
+
"type": "string"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"required": ["subscriberPackageVersionId"],
|
|
313
|
+
"additionalProperties": false
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"required": ["ids"],
|
|
318
|
+
"additionalProperties": false
|
|
319
|
+
},
|
|
320
|
+
"PackagingSObjects.InstallValidationStatus": {
|
|
321
|
+
"type": "string",
|
|
322
|
+
"enum": [
|
|
323
|
+
"NO_ERRORS_DETECTED",
|
|
324
|
+
"BETA_INSTALL_INTO_PRODUCTION_ORG",
|
|
325
|
+
"CANNOT_INSTALL_EARLIER_VERSION",
|
|
326
|
+
"CANNOT_UPGRADE_BETA",
|
|
327
|
+
"CANNOT_UPGRADE_UNMANAGED",
|
|
328
|
+
"DEPRECATED_INSTALL_PACKAGE",
|
|
329
|
+
"EXTENSIONS_ON_LOCAL_PACKAGES",
|
|
330
|
+
"PACKAGE_NOT_INSTALLED",
|
|
331
|
+
"PACKAGE_HAS_IN_DEV_EXTENSIONS",
|
|
332
|
+
"INSTALL_INTO_DEV_ORG",
|
|
333
|
+
"NO_ACCESS",
|
|
334
|
+
"PACKAGING_DISABLED",
|
|
335
|
+
"PACKAGING_NO_ACCESS",
|
|
336
|
+
"PACKAGE_UNAVAILABLE",
|
|
337
|
+
"PACKAGE_UNAVAILABLE_CRC",
|
|
338
|
+
"PACKAGE_UNAVAILABLE_ZIP",
|
|
339
|
+
"UNINSTALL_IN_PROGRESS",
|
|
340
|
+
"UNKNOWN_ERROR",
|
|
341
|
+
"NAMESPACE_COLLISION"
|
|
342
|
+
]
|
|
343
|
+
},
|
|
344
|
+
"BundleSObjects.Bundle": {
|
|
345
|
+
"type": "object",
|
|
346
|
+
"properties": {
|
|
347
|
+
"BundleName": {
|
|
348
|
+
"type": "string"
|
|
349
|
+
},
|
|
350
|
+
"Description": {
|
|
351
|
+
"type": "string"
|
|
352
|
+
},
|
|
353
|
+
"Id": {
|
|
354
|
+
"type": "string"
|
|
355
|
+
},
|
|
356
|
+
"IsDeleted": {
|
|
357
|
+
"type": "boolean"
|
|
358
|
+
},
|
|
359
|
+
"CreatedDate": {
|
|
360
|
+
"type": "string"
|
|
361
|
+
},
|
|
362
|
+
"CreatedById": {
|
|
363
|
+
"type": "string"
|
|
364
|
+
},
|
|
365
|
+
"LastModifiedDate": {
|
|
366
|
+
"type": "string"
|
|
367
|
+
},
|
|
368
|
+
"LastModifiedById": {
|
|
369
|
+
"type": "string"
|
|
370
|
+
},
|
|
371
|
+
"SystemModstamp": {
|
|
372
|
+
"type": "string"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"required": [
|
|
376
|
+
"BundleName",
|
|
377
|
+
"Id",
|
|
378
|
+
"IsDeleted",
|
|
379
|
+
"CreatedDate",
|
|
380
|
+
"CreatedById",
|
|
381
|
+
"LastModifiedDate",
|
|
382
|
+
"LastModifiedById",
|
|
383
|
+
"SystemModstamp"
|
|
384
|
+
],
|
|
385
|
+
"additionalProperties": false
|
|
386
|
+
},
|
|
387
|
+
"BundleSObjects.BundleVersion": {
|
|
388
|
+
"type": "object",
|
|
389
|
+
"properties": {
|
|
390
|
+
"Id": {
|
|
391
|
+
"type": "string"
|
|
392
|
+
},
|
|
393
|
+
"PackageBundle": {
|
|
394
|
+
"$ref": "#/definitions/BundleSObjects.Bundle"
|
|
395
|
+
},
|
|
396
|
+
"VersionName": {
|
|
397
|
+
"type": "string"
|
|
398
|
+
},
|
|
399
|
+
"MajorVersion": {
|
|
400
|
+
"type": "string"
|
|
401
|
+
},
|
|
402
|
+
"MinorVersion": {
|
|
403
|
+
"type": "string"
|
|
404
|
+
},
|
|
405
|
+
"Ancestor": {
|
|
406
|
+
"anyOf": [
|
|
407
|
+
{
|
|
408
|
+
"$ref": "#/definitions/BundleSObjects.BundleVersion"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"type": "null"
|
|
412
|
+
}
|
|
413
|
+
]
|
|
414
|
+
},
|
|
415
|
+
"IsReleased": {
|
|
416
|
+
"type": "boolean"
|
|
417
|
+
},
|
|
418
|
+
"CreatedDate": {
|
|
419
|
+
"type": "string"
|
|
420
|
+
},
|
|
421
|
+
"CreatedById": {
|
|
422
|
+
"type": "string"
|
|
423
|
+
},
|
|
424
|
+
"LastModifiedDate": {
|
|
425
|
+
"type": "string"
|
|
426
|
+
},
|
|
427
|
+
"LastModifiedById": {
|
|
428
|
+
"type": "string"
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
"required": [
|
|
432
|
+
"Id",
|
|
433
|
+
"PackageBundle",
|
|
434
|
+
"VersionName",
|
|
435
|
+
"MajorVersion",
|
|
436
|
+
"MinorVersion",
|
|
437
|
+
"IsReleased",
|
|
438
|
+
"CreatedDate",
|
|
439
|
+
"CreatedById",
|
|
440
|
+
"LastModifiedDate",
|
|
441
|
+
"LastModifiedById"
|
|
442
|
+
],
|
|
443
|
+
"additionalProperties": false
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
}
|