@salesforce/plugin-deploy-retrieve 1.6.16 → 1.6.18
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/LICENSE.txt +1 -1
- package/lib/commands/deploy/metadata/cancel.d.ts +3 -3
- package/lib/commands/deploy/metadata/cancel.js +3 -2
- package/lib/commands/deploy/metadata/cancel.js.map +1 -1
- package/lib/commands/deploy/metadata/preview.d.ts +4 -4
- package/lib/commands/deploy/metadata/preview.js +1 -0
- package/lib/commands/deploy/metadata/preview.js.map +1 -1
- package/lib/commands/deploy/metadata/quick.d.ts +6 -5
- package/lib/commands/deploy/metadata/quick.js +6 -4
- package/lib/commands/deploy/metadata/quick.js.map +1 -1
- package/lib/commands/deploy/metadata/report.d.ts +2 -2
- package/lib/commands/deploy/metadata/report.js +2 -1
- package/lib/commands/deploy/metadata/report.js.map +1 -1
- package/lib/commands/deploy/metadata/resume.d.ts +5 -5
- package/lib/commands/deploy/metadata/resume.js +3 -2
- package/lib/commands/deploy/metadata/resume.js.map +1 -1
- package/lib/commands/deploy/metadata/validate.d.ts +11 -11
- package/lib/commands/deploy/metadata/validate.js +2 -1
- package/lib/commands/deploy/metadata/validate.js.map +1 -1
- package/lib/commands/deploy/metadata.d.ts +11 -11
- package/lib/commands/deploy/metadata.js +3 -1
- package/lib/commands/deploy/metadata.js.map +1 -1
- package/lib/commands/deploy.d.ts +4 -4
- package/lib/commands/deploy.js +6 -7
- package/lib/commands/deploy.js.map +1 -1
- package/lib/commands/retrieve/metadata/preview.d.ts +1 -1
- package/lib/commands/retrieve/metadata/preview.js +1 -0
- package/lib/commands/retrieve/metadata/preview.js.map +1 -1
- package/lib/commands/retrieve/metadata.d.ts +12 -11
- package/lib/commands/retrieve/metadata.js +37 -21
- package/lib/commands/retrieve/metadata.js.map +1 -1
- package/lib/utils/deploy.d.ts +7 -16
- package/lib/utils/deploy.js +28 -82
- package/lib/utils/deploy.js.map +1 -1
- package/lib/utils/deployCache.d.ts +13 -0
- package/lib/utils/deployCache.js +71 -0
- package/lib/utils/deployCache.js.map +1 -0
- package/lib/utils/flags.d.ts +2 -1
- package/lib/utils/flags.js +8 -7
- package/lib/utils/flags.js.map +1 -1
- package/lib/utils/metadataDeployer.js +4 -3
- package/lib/utils/metadataDeployer.js.map +1 -1
- package/lib/utils/output.d.ts +1 -1
- package/lib/utils/output.js +38 -34
- package/lib/utils/output.js.map +1 -1
- package/lib/utils/previewOutput.d.ts +3 -3
- package/lib/utils/previewOutput.js +14 -7
- package/lib/utils/previewOutput.js.map +1 -1
- package/lib/utils/project.d.ts +2 -2
- package/lib/utils/types.d.ts +13 -7
- package/lib/utils/types.js +10 -1
- package/lib/utils/types.js.map +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +21 -21
- package/schemas/deploy-metadata-cancel.json +74 -173
- package/schemas/deploy-metadata-quick.json +74 -173
- package/schemas/deploy-metadata-report.json +74 -173
- package/schemas/deploy-metadata-resume.json +74 -173
- package/schemas/deploy-metadata-validate.json +74 -173
- package/schemas/deploy-metadata.json +74 -173
- package/schemas/retrieve-metadata.json +55 -49
|
@@ -124,89 +124,69 @@
|
|
|
124
124
|
"FileResponse": {
|
|
125
125
|
"anyOf": [
|
|
126
126
|
{
|
|
127
|
-
"
|
|
128
|
-
"properties": {
|
|
129
|
-
"fullName": {
|
|
130
|
-
"type": "string"
|
|
131
|
-
},
|
|
132
|
-
"type": {
|
|
133
|
-
"type": "string"
|
|
134
|
-
},
|
|
135
|
-
"filePath": {
|
|
136
|
-
"type": "string"
|
|
137
|
-
},
|
|
138
|
-
"state": {
|
|
139
|
-
"type": "string",
|
|
140
|
-
"enum": [
|
|
141
|
-
"Created",
|
|
142
|
-
"Changed",
|
|
143
|
-
"Unchanged",
|
|
144
|
-
"Deleted"
|
|
145
|
-
]
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
"required": [
|
|
149
|
-
"fullName",
|
|
150
|
-
"state",
|
|
151
|
-
"type"
|
|
152
|
-
],
|
|
153
|
-
"additionalProperties": false
|
|
127
|
+
"$ref": "#/definitions/FileResponseSuccess"
|
|
154
128
|
},
|
|
155
129
|
{
|
|
156
|
-
"
|
|
157
|
-
"properties": {
|
|
158
|
-
"fullName": {
|
|
159
|
-
"type": "string"
|
|
160
|
-
},
|
|
161
|
-
"type": {
|
|
162
|
-
"type": "string"
|
|
163
|
-
},
|
|
164
|
-
"filePath": {
|
|
165
|
-
"type": "string"
|
|
166
|
-
},
|
|
167
|
-
"state": {
|
|
168
|
-
"type": "string",
|
|
169
|
-
"const": "Failed"
|
|
170
|
-
},
|
|
171
|
-
"lineNumber": {
|
|
172
|
-
"type": "number"
|
|
173
|
-
},
|
|
174
|
-
"columnNumber": {
|
|
175
|
-
"type": "number"
|
|
176
|
-
},
|
|
177
|
-
"error": {
|
|
178
|
-
"type": "string"
|
|
179
|
-
},
|
|
180
|
-
"problemType": {
|
|
181
|
-
"type": "string",
|
|
182
|
-
"enum": [
|
|
183
|
-
"Warning",
|
|
184
|
-
"Error"
|
|
185
|
-
]
|
|
186
|
-
}
|
|
187
|
-
},
|
|
188
|
-
"required": [
|
|
189
|
-
"error",
|
|
190
|
-
"fullName",
|
|
191
|
-
"problemType",
|
|
192
|
-
"state",
|
|
193
|
-
"type"
|
|
194
|
-
],
|
|
195
|
-
"additionalProperties": false
|
|
130
|
+
"$ref": "#/definitions/FileResponseFailure"
|
|
196
131
|
}
|
|
197
132
|
]
|
|
198
133
|
},
|
|
134
|
+
"FileResponseSuccess": {
|
|
135
|
+
"type": "object",
|
|
136
|
+
"properties": {
|
|
137
|
+
"fullName": {
|
|
138
|
+
"type": "string"
|
|
139
|
+
},
|
|
140
|
+
"type": {
|
|
141
|
+
"type": "string"
|
|
142
|
+
},
|
|
143
|
+
"filePath": {
|
|
144
|
+
"type": "string"
|
|
145
|
+
},
|
|
146
|
+
"state": {
|
|
147
|
+
"type": "string",
|
|
148
|
+
"enum": ["Created", "Changed", "Unchanged", "Deleted"]
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"required": ["fullName", "state", "type"],
|
|
152
|
+
"additionalProperties": false
|
|
153
|
+
},
|
|
154
|
+
"FileResponseFailure": {
|
|
155
|
+
"type": "object",
|
|
156
|
+
"properties": {
|
|
157
|
+
"fullName": {
|
|
158
|
+
"type": "string"
|
|
159
|
+
},
|
|
160
|
+
"type": {
|
|
161
|
+
"type": "string"
|
|
162
|
+
},
|
|
163
|
+
"filePath": {
|
|
164
|
+
"type": "string"
|
|
165
|
+
},
|
|
166
|
+
"state": {
|
|
167
|
+
"type": "string",
|
|
168
|
+
"const": "Failed"
|
|
169
|
+
},
|
|
170
|
+
"lineNumber": {
|
|
171
|
+
"type": "number"
|
|
172
|
+
},
|
|
173
|
+
"columnNumber": {
|
|
174
|
+
"type": "number"
|
|
175
|
+
},
|
|
176
|
+
"error": {
|
|
177
|
+
"type": "string"
|
|
178
|
+
},
|
|
179
|
+
"problemType": {
|
|
180
|
+
"type": "string",
|
|
181
|
+
"enum": ["Warning", "Error"]
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"required": ["error", "fullName", "problemType", "state", "type"],
|
|
185
|
+
"additionalProperties": false
|
|
186
|
+
},
|
|
199
187
|
"RequestStatus": {
|
|
200
188
|
"type": "string",
|
|
201
|
-
"enum": [
|
|
202
|
-
"Pending",
|
|
203
|
-
"InProgress",
|
|
204
|
-
"Succeeded",
|
|
205
|
-
"SucceededPartial",
|
|
206
|
-
"Failed",
|
|
207
|
-
"Canceling",
|
|
208
|
-
"Canceled"
|
|
209
|
-
]
|
|
189
|
+
"enum": ["Pending", "InProgress", "Succeeded", "SucceededPartial", "Failed", "Canceling", "Canceled"]
|
|
210
190
|
},
|
|
211
191
|
"DeployDetails": {
|
|
212
192
|
"type": "object",
|
|
@@ -247,16 +227,8 @@
|
|
|
247
227
|
"type": "object",
|
|
248
228
|
"properties": {
|
|
249
229
|
"changed": {
|
|
250
|
-
"type": [
|
|
251
|
-
|
|
252
|
-
"boolean"
|
|
253
|
-
],
|
|
254
|
-
"enum": [
|
|
255
|
-
"true",
|
|
256
|
-
"false",
|
|
257
|
-
true,
|
|
258
|
-
false
|
|
259
|
-
]
|
|
230
|
+
"type": ["string", "boolean"],
|
|
231
|
+
"enum": ["true", "false", true, false]
|
|
260
232
|
},
|
|
261
233
|
"columnNumber": {
|
|
262
234
|
"type": "string"
|
|
@@ -265,31 +237,15 @@
|
|
|
265
237
|
"type": "string"
|
|
266
238
|
},
|
|
267
239
|
"created": {
|
|
268
|
-
"type": [
|
|
269
|
-
|
|
270
|
-
"boolean"
|
|
271
|
-
],
|
|
272
|
-
"enum": [
|
|
273
|
-
"true",
|
|
274
|
-
"false",
|
|
275
|
-
true,
|
|
276
|
-
false
|
|
277
|
-
]
|
|
240
|
+
"type": ["string", "boolean"],
|
|
241
|
+
"enum": ["true", "false", true, false]
|
|
278
242
|
},
|
|
279
243
|
"createdDate": {
|
|
280
244
|
"type": "string"
|
|
281
245
|
},
|
|
282
246
|
"deleted": {
|
|
283
|
-
"type": [
|
|
284
|
-
|
|
285
|
-
"boolean"
|
|
286
|
-
],
|
|
287
|
-
"enum": [
|
|
288
|
-
"true",
|
|
289
|
-
"false",
|
|
290
|
-
true,
|
|
291
|
-
false
|
|
292
|
-
]
|
|
247
|
+
"type": ["string", "boolean"],
|
|
248
|
+
"enum": ["true", "false", true, false]
|
|
293
249
|
},
|
|
294
250
|
"fileName": {
|
|
295
251
|
"type": "string"
|
|
@@ -308,33 +264,14 @@
|
|
|
308
264
|
},
|
|
309
265
|
"problemType": {
|
|
310
266
|
"type": "string",
|
|
311
|
-
"enum": [
|
|
312
|
-
"Warning",
|
|
313
|
-
"Error"
|
|
314
|
-
]
|
|
267
|
+
"enum": ["Warning", "Error"]
|
|
315
268
|
},
|
|
316
269
|
"success": {
|
|
317
|
-
"type": [
|
|
318
|
-
|
|
319
|
-
"boolean"
|
|
320
|
-
],
|
|
321
|
-
"enum": [
|
|
322
|
-
"true",
|
|
323
|
-
"false",
|
|
324
|
-
true,
|
|
325
|
-
false
|
|
326
|
-
]
|
|
270
|
+
"type": ["string", "boolean"],
|
|
271
|
+
"enum": ["true", "false", true, false]
|
|
327
272
|
}
|
|
328
273
|
},
|
|
329
|
-
"required": [
|
|
330
|
-
"changed",
|
|
331
|
-
"created",
|
|
332
|
-
"createdDate",
|
|
333
|
-
"deleted",
|
|
334
|
-
"fileName",
|
|
335
|
-
"fullName",
|
|
336
|
-
"success"
|
|
337
|
-
],
|
|
274
|
+
"required": ["changed", "created", "createdDate", "deleted", "fileName", "fullName", "success"],
|
|
338
275
|
"additionalProperties": false
|
|
339
276
|
},
|
|
340
277
|
"RunTestResult": {
|
|
@@ -402,11 +339,7 @@
|
|
|
402
339
|
"type": "string"
|
|
403
340
|
}
|
|
404
341
|
},
|
|
405
|
-
"required": [
|
|
406
|
-
"numFailures",
|
|
407
|
-
"numTestsRun",
|
|
408
|
-
"totalTime"
|
|
409
|
-
],
|
|
342
|
+
"required": ["numFailures", "numTestsRun", "totalTime"],
|
|
410
343
|
"additionalProperties": false
|
|
411
344
|
},
|
|
412
345
|
"CodeCoverage": {
|
|
@@ -441,13 +374,7 @@
|
|
|
441
374
|
"type": "string"
|
|
442
375
|
}
|
|
443
376
|
},
|
|
444
|
-
"required": [
|
|
445
|
-
"id",
|
|
446
|
-
"name",
|
|
447
|
-
"numLocations",
|
|
448
|
-
"numLocationsNotCovered",
|
|
449
|
-
"type"
|
|
450
|
-
],
|
|
377
|
+
"required": ["id", "name", "numLocations", "numLocationsNotCovered", "type"],
|
|
451
378
|
"additionalProperties": false
|
|
452
379
|
},
|
|
453
380
|
"LocationsNotCovered": {
|
|
@@ -466,12 +393,7 @@
|
|
|
466
393
|
"type": "string"
|
|
467
394
|
}
|
|
468
395
|
},
|
|
469
|
-
"required": [
|
|
470
|
-
"column",
|
|
471
|
-
"line",
|
|
472
|
-
"numExecutions",
|
|
473
|
-
"time"
|
|
474
|
-
],
|
|
396
|
+
"required": ["column", "line", "numExecutions", "time"],
|
|
475
397
|
"additionalProperties": false
|
|
476
398
|
},
|
|
477
399
|
"CodeCoverageWarnings": {
|
|
@@ -487,11 +409,7 @@
|
|
|
487
409
|
"type": "string"
|
|
488
410
|
}
|
|
489
411
|
},
|
|
490
|
-
"required": [
|
|
491
|
-
"id",
|
|
492
|
-
"message",
|
|
493
|
-
"namespace"
|
|
494
|
-
],
|
|
412
|
+
"required": ["id", "message", "namespace"],
|
|
495
413
|
"additionalProperties": false
|
|
496
414
|
},
|
|
497
415
|
"Failures": {
|
|
@@ -522,16 +440,7 @@
|
|
|
522
440
|
"type": "string"
|
|
523
441
|
}
|
|
524
442
|
},
|
|
525
|
-
"required": [
|
|
526
|
-
"id",
|
|
527
|
-
"message",
|
|
528
|
-
"methodName",
|
|
529
|
-
"name",
|
|
530
|
-
"packageName",
|
|
531
|
-
"stackTrace",
|
|
532
|
-
"time",
|
|
533
|
-
"type"
|
|
534
|
-
],
|
|
443
|
+
"required": ["id", "message", "methodName", "name", "packageName", "stackTrace", "time", "type"],
|
|
535
444
|
"additionalProperties": false
|
|
536
445
|
},
|
|
537
446
|
"Successes": {
|
|
@@ -550,12 +459,7 @@
|
|
|
550
459
|
"type": "string"
|
|
551
460
|
}
|
|
552
461
|
},
|
|
553
|
-
"required": [
|
|
554
|
-
"id",
|
|
555
|
-
"methodName",
|
|
556
|
-
"name",
|
|
557
|
-
"time"
|
|
558
|
-
],
|
|
462
|
+
"required": ["id", "methodName", "name", "time"],
|
|
559
463
|
"additionalProperties": false
|
|
560
464
|
},
|
|
561
465
|
"AsyncDeployResultJson": {
|
|
@@ -655,10 +559,7 @@
|
|
|
655
559
|
"type": "boolean"
|
|
656
560
|
}
|
|
657
561
|
},
|
|
658
|
-
"required": [
|
|
659
|
-
"files",
|
|
660
|
-
"status"
|
|
661
|
-
]
|
|
562
|
+
"required": ["files", "status"]
|
|
662
563
|
}
|
|
663
564
|
}
|
|
664
|
-
}
|
|
565
|
+
}
|
|
@@ -124,89 +124,69 @@
|
|
|
124
124
|
"FileResponse": {
|
|
125
125
|
"anyOf": [
|
|
126
126
|
{
|
|
127
|
-
"
|
|
128
|
-
"properties": {
|
|
129
|
-
"fullName": {
|
|
130
|
-
"type": "string"
|
|
131
|
-
},
|
|
132
|
-
"type": {
|
|
133
|
-
"type": "string"
|
|
134
|
-
},
|
|
135
|
-
"filePath": {
|
|
136
|
-
"type": "string"
|
|
137
|
-
},
|
|
138
|
-
"state": {
|
|
139
|
-
"type": "string",
|
|
140
|
-
"enum": [
|
|
141
|
-
"Created",
|
|
142
|
-
"Changed",
|
|
143
|
-
"Unchanged",
|
|
144
|
-
"Deleted"
|
|
145
|
-
]
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
"required": [
|
|
149
|
-
"fullName",
|
|
150
|
-
"state",
|
|
151
|
-
"type"
|
|
152
|
-
],
|
|
153
|
-
"additionalProperties": false
|
|
127
|
+
"$ref": "#/definitions/FileResponseSuccess"
|
|
154
128
|
},
|
|
155
129
|
{
|
|
156
|
-
"
|
|
157
|
-
"properties": {
|
|
158
|
-
"fullName": {
|
|
159
|
-
"type": "string"
|
|
160
|
-
},
|
|
161
|
-
"type": {
|
|
162
|
-
"type": "string"
|
|
163
|
-
},
|
|
164
|
-
"filePath": {
|
|
165
|
-
"type": "string"
|
|
166
|
-
},
|
|
167
|
-
"state": {
|
|
168
|
-
"type": "string",
|
|
169
|
-
"const": "Failed"
|
|
170
|
-
},
|
|
171
|
-
"lineNumber": {
|
|
172
|
-
"type": "number"
|
|
173
|
-
},
|
|
174
|
-
"columnNumber": {
|
|
175
|
-
"type": "number"
|
|
176
|
-
},
|
|
177
|
-
"error": {
|
|
178
|
-
"type": "string"
|
|
179
|
-
},
|
|
180
|
-
"problemType": {
|
|
181
|
-
"type": "string",
|
|
182
|
-
"enum": [
|
|
183
|
-
"Warning",
|
|
184
|
-
"Error"
|
|
185
|
-
]
|
|
186
|
-
}
|
|
187
|
-
},
|
|
188
|
-
"required": [
|
|
189
|
-
"error",
|
|
190
|
-
"fullName",
|
|
191
|
-
"problemType",
|
|
192
|
-
"state",
|
|
193
|
-
"type"
|
|
194
|
-
],
|
|
195
|
-
"additionalProperties": false
|
|
130
|
+
"$ref": "#/definitions/FileResponseFailure"
|
|
196
131
|
}
|
|
197
132
|
]
|
|
198
133
|
},
|
|
134
|
+
"FileResponseSuccess": {
|
|
135
|
+
"type": "object",
|
|
136
|
+
"properties": {
|
|
137
|
+
"fullName": {
|
|
138
|
+
"type": "string"
|
|
139
|
+
},
|
|
140
|
+
"type": {
|
|
141
|
+
"type": "string"
|
|
142
|
+
},
|
|
143
|
+
"filePath": {
|
|
144
|
+
"type": "string"
|
|
145
|
+
},
|
|
146
|
+
"state": {
|
|
147
|
+
"type": "string",
|
|
148
|
+
"enum": ["Created", "Changed", "Unchanged", "Deleted"]
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"required": ["fullName", "state", "type"],
|
|
152
|
+
"additionalProperties": false
|
|
153
|
+
},
|
|
154
|
+
"FileResponseFailure": {
|
|
155
|
+
"type": "object",
|
|
156
|
+
"properties": {
|
|
157
|
+
"fullName": {
|
|
158
|
+
"type": "string"
|
|
159
|
+
},
|
|
160
|
+
"type": {
|
|
161
|
+
"type": "string"
|
|
162
|
+
},
|
|
163
|
+
"filePath": {
|
|
164
|
+
"type": "string"
|
|
165
|
+
},
|
|
166
|
+
"state": {
|
|
167
|
+
"type": "string",
|
|
168
|
+
"const": "Failed"
|
|
169
|
+
},
|
|
170
|
+
"lineNumber": {
|
|
171
|
+
"type": "number"
|
|
172
|
+
},
|
|
173
|
+
"columnNumber": {
|
|
174
|
+
"type": "number"
|
|
175
|
+
},
|
|
176
|
+
"error": {
|
|
177
|
+
"type": "string"
|
|
178
|
+
},
|
|
179
|
+
"problemType": {
|
|
180
|
+
"type": "string",
|
|
181
|
+
"enum": ["Warning", "Error"]
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"required": ["error", "fullName", "problemType", "state", "type"],
|
|
185
|
+
"additionalProperties": false
|
|
186
|
+
},
|
|
199
187
|
"RequestStatus": {
|
|
200
188
|
"type": "string",
|
|
201
|
-
"enum": [
|
|
202
|
-
"Pending",
|
|
203
|
-
"InProgress",
|
|
204
|
-
"Succeeded",
|
|
205
|
-
"SucceededPartial",
|
|
206
|
-
"Failed",
|
|
207
|
-
"Canceling",
|
|
208
|
-
"Canceled"
|
|
209
|
-
]
|
|
189
|
+
"enum": ["Pending", "InProgress", "Succeeded", "SucceededPartial", "Failed", "Canceling", "Canceled"]
|
|
210
190
|
},
|
|
211
191
|
"DeployDetails": {
|
|
212
192
|
"type": "object",
|
|
@@ -247,16 +227,8 @@
|
|
|
247
227
|
"type": "object",
|
|
248
228
|
"properties": {
|
|
249
229
|
"changed": {
|
|
250
|
-
"type": [
|
|
251
|
-
|
|
252
|
-
"boolean"
|
|
253
|
-
],
|
|
254
|
-
"enum": [
|
|
255
|
-
"true",
|
|
256
|
-
"false",
|
|
257
|
-
true,
|
|
258
|
-
false
|
|
259
|
-
]
|
|
230
|
+
"type": ["string", "boolean"],
|
|
231
|
+
"enum": ["true", "false", true, false]
|
|
260
232
|
},
|
|
261
233
|
"columnNumber": {
|
|
262
234
|
"type": "string"
|
|
@@ -265,31 +237,15 @@
|
|
|
265
237
|
"type": "string"
|
|
266
238
|
},
|
|
267
239
|
"created": {
|
|
268
|
-
"type": [
|
|
269
|
-
|
|
270
|
-
"boolean"
|
|
271
|
-
],
|
|
272
|
-
"enum": [
|
|
273
|
-
"true",
|
|
274
|
-
"false",
|
|
275
|
-
true,
|
|
276
|
-
false
|
|
277
|
-
]
|
|
240
|
+
"type": ["string", "boolean"],
|
|
241
|
+
"enum": ["true", "false", true, false]
|
|
278
242
|
},
|
|
279
243
|
"createdDate": {
|
|
280
244
|
"type": "string"
|
|
281
245
|
},
|
|
282
246
|
"deleted": {
|
|
283
|
-
"type": [
|
|
284
|
-
|
|
285
|
-
"boolean"
|
|
286
|
-
],
|
|
287
|
-
"enum": [
|
|
288
|
-
"true",
|
|
289
|
-
"false",
|
|
290
|
-
true,
|
|
291
|
-
false
|
|
292
|
-
]
|
|
247
|
+
"type": ["string", "boolean"],
|
|
248
|
+
"enum": ["true", "false", true, false]
|
|
293
249
|
},
|
|
294
250
|
"fileName": {
|
|
295
251
|
"type": "string"
|
|
@@ -308,33 +264,14 @@
|
|
|
308
264
|
},
|
|
309
265
|
"problemType": {
|
|
310
266
|
"type": "string",
|
|
311
|
-
"enum": [
|
|
312
|
-
"Warning",
|
|
313
|
-
"Error"
|
|
314
|
-
]
|
|
267
|
+
"enum": ["Warning", "Error"]
|
|
315
268
|
},
|
|
316
269
|
"success": {
|
|
317
|
-
"type": [
|
|
318
|
-
|
|
319
|
-
"boolean"
|
|
320
|
-
],
|
|
321
|
-
"enum": [
|
|
322
|
-
"true",
|
|
323
|
-
"false",
|
|
324
|
-
true,
|
|
325
|
-
false
|
|
326
|
-
]
|
|
270
|
+
"type": ["string", "boolean"],
|
|
271
|
+
"enum": ["true", "false", true, false]
|
|
327
272
|
}
|
|
328
273
|
},
|
|
329
|
-
"required": [
|
|
330
|
-
"changed",
|
|
331
|
-
"created",
|
|
332
|
-
"createdDate",
|
|
333
|
-
"deleted",
|
|
334
|
-
"fileName",
|
|
335
|
-
"fullName",
|
|
336
|
-
"success"
|
|
337
|
-
],
|
|
274
|
+
"required": ["changed", "created", "createdDate", "deleted", "fileName", "fullName", "success"],
|
|
338
275
|
"additionalProperties": false
|
|
339
276
|
},
|
|
340
277
|
"RunTestResult": {
|
|
@@ -402,11 +339,7 @@
|
|
|
402
339
|
"type": "string"
|
|
403
340
|
}
|
|
404
341
|
},
|
|
405
|
-
"required": [
|
|
406
|
-
"numFailures",
|
|
407
|
-
"numTestsRun",
|
|
408
|
-
"totalTime"
|
|
409
|
-
],
|
|
342
|
+
"required": ["numFailures", "numTestsRun", "totalTime"],
|
|
410
343
|
"additionalProperties": false
|
|
411
344
|
},
|
|
412
345
|
"CodeCoverage": {
|
|
@@ -441,13 +374,7 @@
|
|
|
441
374
|
"type": "string"
|
|
442
375
|
}
|
|
443
376
|
},
|
|
444
|
-
"required": [
|
|
445
|
-
"id",
|
|
446
|
-
"name",
|
|
447
|
-
"numLocations",
|
|
448
|
-
"numLocationsNotCovered",
|
|
449
|
-
"type"
|
|
450
|
-
],
|
|
377
|
+
"required": ["id", "name", "numLocations", "numLocationsNotCovered", "type"],
|
|
451
378
|
"additionalProperties": false
|
|
452
379
|
},
|
|
453
380
|
"LocationsNotCovered": {
|
|
@@ -466,12 +393,7 @@
|
|
|
466
393
|
"type": "string"
|
|
467
394
|
}
|
|
468
395
|
},
|
|
469
|
-
"required": [
|
|
470
|
-
"column",
|
|
471
|
-
"line",
|
|
472
|
-
"numExecutions",
|
|
473
|
-
"time"
|
|
474
|
-
],
|
|
396
|
+
"required": ["column", "line", "numExecutions", "time"],
|
|
475
397
|
"additionalProperties": false
|
|
476
398
|
},
|
|
477
399
|
"CodeCoverageWarnings": {
|
|
@@ -487,11 +409,7 @@
|
|
|
487
409
|
"type": "string"
|
|
488
410
|
}
|
|
489
411
|
},
|
|
490
|
-
"required": [
|
|
491
|
-
"id",
|
|
492
|
-
"message",
|
|
493
|
-
"namespace"
|
|
494
|
-
],
|
|
412
|
+
"required": ["id", "message", "namespace"],
|
|
495
413
|
"additionalProperties": false
|
|
496
414
|
},
|
|
497
415
|
"Failures": {
|
|
@@ -522,16 +440,7 @@
|
|
|
522
440
|
"type": "string"
|
|
523
441
|
}
|
|
524
442
|
},
|
|
525
|
-
"required": [
|
|
526
|
-
"id",
|
|
527
|
-
"message",
|
|
528
|
-
"methodName",
|
|
529
|
-
"name",
|
|
530
|
-
"packageName",
|
|
531
|
-
"stackTrace",
|
|
532
|
-
"time",
|
|
533
|
-
"type"
|
|
534
|
-
],
|
|
443
|
+
"required": ["id", "message", "methodName", "name", "packageName", "stackTrace", "time", "type"],
|
|
535
444
|
"additionalProperties": false
|
|
536
445
|
},
|
|
537
446
|
"Successes": {
|
|
@@ -550,12 +459,7 @@
|
|
|
550
459
|
"type": "string"
|
|
551
460
|
}
|
|
552
461
|
},
|
|
553
|
-
"required": [
|
|
554
|
-
"id",
|
|
555
|
-
"methodName",
|
|
556
|
-
"name",
|
|
557
|
-
"time"
|
|
558
|
-
],
|
|
462
|
+
"required": ["id", "methodName", "name", "time"],
|
|
559
463
|
"additionalProperties": false
|
|
560
464
|
},
|
|
561
465
|
"AsyncDeployResultJson": {
|
|
@@ -655,10 +559,7 @@
|
|
|
655
559
|
"type": "boolean"
|
|
656
560
|
}
|
|
657
561
|
},
|
|
658
|
-
"required": [
|
|
659
|
-
"files",
|
|
660
|
-
"status"
|
|
661
|
-
]
|
|
562
|
+
"required": ["files", "status"]
|
|
662
563
|
}
|
|
663
564
|
}
|
|
664
|
-
}
|
|
565
|
+
}
|