@salesforce/plugin-deploy-retrieve 3.22.32 → 3.22.34-dev.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 +17 -17
- package/messages/metadata.transfer.md +4 -0
- package/oclif.manifest.json +1055 -1055
- package/package.json +9 -6
- package/schemas/project-delete-source.json +10 -1
- package/schemas/project-deploy-cancel.json +16 -7
- package/schemas/project-deploy-quick.json +16 -7
- package/schemas/project-deploy-report.json +16 -7
- package/schemas/project-deploy-resume.json +16 -7
- package/schemas/project-deploy-start.json +16 -7
- package/schemas/project-deploy-validate.json +16 -7
- package/schemas/project-retrieve-start.json +10 -1
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-deploy-retrieve",
|
|
3
3
|
"description": "deploy and retrieve commands for sf",
|
|
4
|
-
"version": "3.22.
|
|
4
|
+
"version": "3.22.34-dev.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
|
+
"resolutions": {
|
|
8
|
+
"@salesforce/source-deploy-retrieve": "^12.21.7-dev.0"
|
|
9
|
+
},
|
|
7
10
|
"dependencies": {
|
|
8
11
|
"@inquirer/prompts": "^7.5.3",
|
|
9
12
|
"@oclif/core": "^4.3.0",
|
|
@@ -13,7 +16,7 @@
|
|
|
13
16
|
"@salesforce/kit": "^3.2.3",
|
|
14
17
|
"@salesforce/plugin-info": "^3.4.67",
|
|
15
18
|
"@salesforce/sf-plugins-core": "^12.2.2",
|
|
16
|
-
"@salesforce/source-deploy-retrieve": "^12.21.
|
|
19
|
+
"@salesforce/source-deploy-retrieve": "^12.21.7-dev.0",
|
|
17
20
|
"@salesforce/source-tracking": "^7.4.1",
|
|
18
21
|
"@salesforce/ts-types": "^2.0.12",
|
|
19
22
|
"ansis": "^3.17.0",
|
|
@@ -23,13 +26,13 @@
|
|
|
23
26
|
"@oclif/plugin-command-snapshot": "^5.3.1",
|
|
24
27
|
"@salesforce/cli-plugins-testkit": "^5.3.38",
|
|
25
28
|
"@salesforce/dev-scripts": "^11.0.2",
|
|
26
|
-
"@salesforce/plugin-command-reference": "^3.1.
|
|
29
|
+
"@salesforce/plugin-command-reference": "^3.1.60",
|
|
27
30
|
"@salesforce/schemas": "^1.9.0",
|
|
28
31
|
"@salesforce/source-testkit": "^2.2.129",
|
|
29
32
|
"@salesforce/ts-sinon": "^1.4.30",
|
|
30
33
|
"cross-env": "^7.0.3",
|
|
31
34
|
"eslint-plugin-sf-plugin": "^1.20.25",
|
|
32
|
-
"oclif": "^4.
|
|
35
|
+
"oclif": "^4.21.0",
|
|
33
36
|
"ts-node": "^10.9.2",
|
|
34
37
|
"typescript": "^5.8.3"
|
|
35
38
|
},
|
|
@@ -255,7 +258,7 @@
|
|
|
255
258
|
"exports": "./lib/index.js",
|
|
256
259
|
"type": "module",
|
|
257
260
|
"sfdx": {
|
|
258
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.22.
|
|
259
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.22.
|
|
261
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.22.34-dev.0.crt",
|
|
262
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.22.34-dev.0.sig"
|
|
260
263
|
}
|
|
261
264
|
}
|
|
@@ -156,7 +156,16 @@
|
|
|
156
156
|
},
|
|
157
157
|
"RequestStatus": {
|
|
158
158
|
"type": "string",
|
|
159
|
-
"enum": [
|
|
159
|
+
"enum": [
|
|
160
|
+
"Pending",
|
|
161
|
+
"InProgress",
|
|
162
|
+
"Succeeded",
|
|
163
|
+
"SucceededPartial",
|
|
164
|
+
"Failed",
|
|
165
|
+
"Canceling",
|
|
166
|
+
"Canceled",
|
|
167
|
+
"Finalizing"
|
|
168
|
+
]
|
|
160
169
|
},
|
|
161
170
|
"DeployDetails": {
|
|
162
171
|
"type": "object",
|
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
"zipFileCount": {
|
|
30
30
|
"type": "number"
|
|
31
31
|
},
|
|
32
|
+
"deployUrl": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
32
35
|
"id": {
|
|
33
36
|
"type": "string"
|
|
34
37
|
},
|
|
@@ -106,9 +109,6 @@
|
|
|
106
109
|
},
|
|
107
110
|
"stateDetail": {
|
|
108
111
|
"type": "string"
|
|
109
|
-
},
|
|
110
|
-
"deployUrl": {
|
|
111
|
-
"type": "string"
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"required": [
|
|
@@ -204,7 +204,16 @@
|
|
|
204
204
|
},
|
|
205
205
|
"RequestStatus": {
|
|
206
206
|
"type": "string",
|
|
207
|
-
"enum": [
|
|
207
|
+
"enum": [
|
|
208
|
+
"Pending",
|
|
209
|
+
"InProgress",
|
|
210
|
+
"Succeeded",
|
|
211
|
+
"SucceededPartial",
|
|
212
|
+
"Failed",
|
|
213
|
+
"Canceling",
|
|
214
|
+
"Canceled",
|
|
215
|
+
"Finalizing"
|
|
216
|
+
]
|
|
208
217
|
},
|
|
209
218
|
"DeployDetails": {
|
|
210
219
|
"type": "object",
|
|
@@ -511,6 +520,9 @@
|
|
|
511
520
|
"zipFileCount": {
|
|
512
521
|
"type": "number"
|
|
513
522
|
},
|
|
523
|
+
"deployUrl": {
|
|
524
|
+
"type": "string"
|
|
525
|
+
},
|
|
514
526
|
"canceledBy": {
|
|
515
527
|
"type": "string"
|
|
516
528
|
},
|
|
@@ -577,9 +589,6 @@
|
|
|
577
589
|
"stateDetail": {
|
|
578
590
|
"type": "string"
|
|
579
591
|
},
|
|
580
|
-
"deployUrl": {
|
|
581
|
-
"type": "string"
|
|
582
|
-
},
|
|
583
592
|
"id": {
|
|
584
593
|
"type": "string"
|
|
585
594
|
},
|
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
"zipFileCount": {
|
|
30
30
|
"type": "number"
|
|
31
31
|
},
|
|
32
|
+
"deployUrl": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
32
35
|
"id": {
|
|
33
36
|
"type": "string"
|
|
34
37
|
},
|
|
@@ -106,9 +109,6 @@
|
|
|
106
109
|
},
|
|
107
110
|
"stateDetail": {
|
|
108
111
|
"type": "string"
|
|
109
|
-
},
|
|
110
|
-
"deployUrl": {
|
|
111
|
-
"type": "string"
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"required": [
|
|
@@ -204,7 +204,16 @@
|
|
|
204
204
|
},
|
|
205
205
|
"RequestStatus": {
|
|
206
206
|
"type": "string",
|
|
207
|
-
"enum": [
|
|
207
|
+
"enum": [
|
|
208
|
+
"Pending",
|
|
209
|
+
"InProgress",
|
|
210
|
+
"Succeeded",
|
|
211
|
+
"SucceededPartial",
|
|
212
|
+
"Failed",
|
|
213
|
+
"Canceling",
|
|
214
|
+
"Canceled",
|
|
215
|
+
"Finalizing"
|
|
216
|
+
]
|
|
208
217
|
},
|
|
209
218
|
"DeployDetails": {
|
|
210
219
|
"type": "object",
|
|
@@ -511,6 +520,9 @@
|
|
|
511
520
|
"zipFileCount": {
|
|
512
521
|
"type": "number"
|
|
513
522
|
},
|
|
523
|
+
"deployUrl": {
|
|
524
|
+
"type": "string"
|
|
525
|
+
},
|
|
514
526
|
"canceledBy": {
|
|
515
527
|
"type": "string"
|
|
516
528
|
},
|
|
@@ -583,9 +595,6 @@
|
|
|
583
595
|
"success": {
|
|
584
596
|
"type": "boolean"
|
|
585
597
|
},
|
|
586
|
-
"deployUrl": {
|
|
587
|
-
"type": "string"
|
|
588
|
-
},
|
|
589
598
|
"done": {
|
|
590
599
|
"type": "boolean"
|
|
591
600
|
}
|
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
"zipFileCount": {
|
|
30
30
|
"type": "number"
|
|
31
31
|
},
|
|
32
|
+
"deployUrl": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
32
35
|
"id": {
|
|
33
36
|
"type": "string"
|
|
34
37
|
},
|
|
@@ -106,9 +109,6 @@
|
|
|
106
109
|
},
|
|
107
110
|
"stateDetail": {
|
|
108
111
|
"type": "string"
|
|
109
|
-
},
|
|
110
|
-
"deployUrl": {
|
|
111
|
-
"type": "string"
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"required": [
|
|
@@ -204,7 +204,16 @@
|
|
|
204
204
|
},
|
|
205
205
|
"RequestStatus": {
|
|
206
206
|
"type": "string",
|
|
207
|
-
"enum": [
|
|
207
|
+
"enum": [
|
|
208
|
+
"Pending",
|
|
209
|
+
"InProgress",
|
|
210
|
+
"Succeeded",
|
|
211
|
+
"SucceededPartial",
|
|
212
|
+
"Failed",
|
|
213
|
+
"Canceling",
|
|
214
|
+
"Canceled",
|
|
215
|
+
"Finalizing"
|
|
216
|
+
]
|
|
208
217
|
},
|
|
209
218
|
"DeployDetails": {
|
|
210
219
|
"type": "object",
|
|
@@ -511,6 +520,9 @@
|
|
|
511
520
|
"zipFileCount": {
|
|
512
521
|
"type": "number"
|
|
513
522
|
},
|
|
523
|
+
"deployUrl": {
|
|
524
|
+
"type": "string"
|
|
525
|
+
},
|
|
514
526
|
"canceledBy": {
|
|
515
527
|
"type": "string"
|
|
516
528
|
},
|
|
@@ -577,9 +589,6 @@
|
|
|
577
589
|
"stateDetail": {
|
|
578
590
|
"type": "string"
|
|
579
591
|
},
|
|
580
|
-
"deployUrl": {
|
|
581
|
-
"type": "string"
|
|
582
|
-
},
|
|
583
592
|
"id": {
|
|
584
593
|
"type": "string"
|
|
585
594
|
},
|
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
"zipFileCount": {
|
|
30
30
|
"type": "number"
|
|
31
31
|
},
|
|
32
|
+
"deployUrl": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
32
35
|
"id": {
|
|
33
36
|
"type": "string"
|
|
34
37
|
},
|
|
@@ -106,9 +109,6 @@
|
|
|
106
109
|
},
|
|
107
110
|
"stateDetail": {
|
|
108
111
|
"type": "string"
|
|
109
|
-
},
|
|
110
|
-
"deployUrl": {
|
|
111
|
-
"type": "string"
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"required": [
|
|
@@ -204,7 +204,16 @@
|
|
|
204
204
|
},
|
|
205
205
|
"RequestStatus": {
|
|
206
206
|
"type": "string",
|
|
207
|
-
"enum": [
|
|
207
|
+
"enum": [
|
|
208
|
+
"Pending",
|
|
209
|
+
"InProgress",
|
|
210
|
+
"Succeeded",
|
|
211
|
+
"SucceededPartial",
|
|
212
|
+
"Failed",
|
|
213
|
+
"Canceling",
|
|
214
|
+
"Canceled",
|
|
215
|
+
"Finalizing"
|
|
216
|
+
]
|
|
208
217
|
},
|
|
209
218
|
"DeployDetails": {
|
|
210
219
|
"type": "object",
|
|
@@ -511,6 +520,9 @@
|
|
|
511
520
|
"zipFileCount": {
|
|
512
521
|
"type": "number"
|
|
513
522
|
},
|
|
523
|
+
"deployUrl": {
|
|
524
|
+
"type": "string"
|
|
525
|
+
},
|
|
514
526
|
"canceledBy": {
|
|
515
527
|
"type": "string"
|
|
516
528
|
},
|
|
@@ -585,9 +597,6 @@
|
|
|
585
597
|
},
|
|
586
598
|
"done": {
|
|
587
599
|
"type": "boolean"
|
|
588
|
-
},
|
|
589
|
-
"deployUrl": {
|
|
590
|
-
"type": "string"
|
|
591
600
|
}
|
|
592
601
|
},
|
|
593
602
|
"required": ["files", "status"]
|
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
"zipFileCount": {
|
|
30
30
|
"type": "number"
|
|
31
31
|
},
|
|
32
|
+
"deployUrl": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
32
35
|
"id": {
|
|
33
36
|
"type": "string"
|
|
34
37
|
},
|
|
@@ -106,9 +109,6 @@
|
|
|
106
109
|
},
|
|
107
110
|
"stateDetail": {
|
|
108
111
|
"type": "string"
|
|
109
|
-
},
|
|
110
|
-
"deployUrl": {
|
|
111
|
-
"type": "string"
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"required": [
|
|
@@ -204,7 +204,16 @@
|
|
|
204
204
|
},
|
|
205
205
|
"RequestStatus": {
|
|
206
206
|
"type": "string",
|
|
207
|
-
"enum": [
|
|
207
|
+
"enum": [
|
|
208
|
+
"Pending",
|
|
209
|
+
"InProgress",
|
|
210
|
+
"Succeeded",
|
|
211
|
+
"SucceededPartial",
|
|
212
|
+
"Failed",
|
|
213
|
+
"Canceling",
|
|
214
|
+
"Canceled",
|
|
215
|
+
"Finalizing"
|
|
216
|
+
]
|
|
208
217
|
},
|
|
209
218
|
"DeployDetails": {
|
|
210
219
|
"type": "object",
|
|
@@ -511,6 +520,9 @@
|
|
|
511
520
|
"zipFileCount": {
|
|
512
521
|
"type": "number"
|
|
513
522
|
},
|
|
523
|
+
"deployUrl": {
|
|
524
|
+
"type": "string"
|
|
525
|
+
},
|
|
514
526
|
"canceledBy": {
|
|
515
527
|
"type": "string"
|
|
516
528
|
},
|
|
@@ -577,9 +589,6 @@
|
|
|
577
589
|
"stateDetail": {
|
|
578
590
|
"type": "string"
|
|
579
591
|
},
|
|
580
|
-
"deployUrl": {
|
|
581
|
-
"type": "string"
|
|
582
|
-
},
|
|
583
592
|
"id": {
|
|
584
593
|
"type": "string"
|
|
585
594
|
},
|
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
"zipFileCount": {
|
|
30
30
|
"type": "number"
|
|
31
31
|
},
|
|
32
|
+
"deployUrl": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
32
35
|
"id": {
|
|
33
36
|
"type": "string"
|
|
34
37
|
},
|
|
@@ -71,9 +74,6 @@
|
|
|
71
74
|
"errorStatusCode": {
|
|
72
75
|
"type": "string"
|
|
73
76
|
},
|
|
74
|
-
"deployUrl": {
|
|
75
|
-
"type": "string"
|
|
76
|
-
},
|
|
77
77
|
"ignoreWarnings": {
|
|
78
78
|
"type": "boolean"
|
|
79
79
|
},
|
|
@@ -204,7 +204,16 @@
|
|
|
204
204
|
},
|
|
205
205
|
"RequestStatus": {
|
|
206
206
|
"type": "string",
|
|
207
|
-
"enum": [
|
|
207
|
+
"enum": [
|
|
208
|
+
"Pending",
|
|
209
|
+
"InProgress",
|
|
210
|
+
"Succeeded",
|
|
211
|
+
"SucceededPartial",
|
|
212
|
+
"Failed",
|
|
213
|
+
"Canceling",
|
|
214
|
+
"Canceled",
|
|
215
|
+
"Finalizing"
|
|
216
|
+
]
|
|
208
217
|
},
|
|
209
218
|
"DeployDetails": {
|
|
210
219
|
"type": "object",
|
|
@@ -511,6 +520,9 @@
|
|
|
511
520
|
"zipFileCount": {
|
|
512
521
|
"type": "number"
|
|
513
522
|
},
|
|
523
|
+
"deployUrl": {
|
|
524
|
+
"type": "string"
|
|
525
|
+
},
|
|
514
526
|
"canceledBy": {
|
|
515
527
|
"type": "string"
|
|
516
528
|
},
|
|
@@ -577,9 +589,6 @@
|
|
|
577
589
|
"stateDetail": {
|
|
578
590
|
"type": "string"
|
|
579
591
|
},
|
|
580
|
-
"deployUrl": {
|
|
581
|
-
"type": "string"
|
|
582
|
-
},
|
|
583
592
|
"id": {
|
|
584
593
|
"type": "string"
|
|
585
594
|
},
|
|
@@ -192,7 +192,16 @@
|
|
|
192
192
|
},
|
|
193
193
|
"RequestStatus": {
|
|
194
194
|
"type": "string",
|
|
195
|
-
"enum": [
|
|
195
|
+
"enum": [
|
|
196
|
+
"Pending",
|
|
197
|
+
"InProgress",
|
|
198
|
+
"Succeeded",
|
|
199
|
+
"SucceededPartial",
|
|
200
|
+
"Failed",
|
|
201
|
+
"Canceling",
|
|
202
|
+
"Canceled",
|
|
203
|
+
"Finalizing"
|
|
204
|
+
]
|
|
196
205
|
},
|
|
197
206
|
"RetrieveMessage": {
|
|
198
207
|
"type": "object",
|