@salesforce/plugin-deploy-retrieve 3.12.3-dev.0 → 3.12.3
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 +18 -18
- package/lib/commands/project/delete/source.js +3 -7
- package/lib/commands/project/delete/source.js.map +1 -1
- package/lib/commands/project/deploy/report.js +3 -6
- package/lib/commands/project/deploy/report.js.map +1 -1
- package/lib/commands/project/deploy/resume.js +4 -5
- package/lib/commands/project/deploy/resume.js.map +1 -1
- package/lib/commands/project/deploy/start.d.ts +0 -2
- package/lib/commands/project/deploy/start.js +21 -35
- package/lib/commands/project/deploy/start.js.map +1 -1
- package/lib/commands/project/deploy/validate.js +3 -6
- package/lib/commands/project/deploy/validate.js.map +1 -1
- package/lib/commands/project/retrieve/start.d.ts +1 -6
- package/lib/commands/project/retrieve/start.js +18 -50
- package/lib/commands/project/retrieve/start.js.map +1 -1
- package/lib/utils/progressBar.d.ts +11 -0
- package/lib/utils/progressBar.js +80 -0
- package/lib/utils/progressBar.js.map +1 -0
- package/messages/retrieve.start.md +12 -0
- package/oclif.manifest.json +1041 -1041
- package/package.json +5 -6
- package/lib/utils/deployStages.d.ts +0 -28
- package/lib/utils/deployStages.js +0 -159
- package/lib/utils/deployStages.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-deploy-retrieve",
|
|
3
3
|
"description": "deploy and retrieve commands for sf",
|
|
4
|
-
"version": "3.12.3
|
|
4
|
+
"version": "3.12.3",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@oclif/core": "^4.0.18",
|
|
9
|
-
"@oclif/multi-stage-output": "^0.4.3-dev.0",
|
|
10
9
|
"@salesforce/apex-node": "^8.1.3",
|
|
11
|
-
"@salesforce/core": "^8.4
|
|
10
|
+
"@salesforce/core": "^8.5.4",
|
|
12
11
|
"@salesforce/kit": "^3.2.1",
|
|
13
12
|
"@salesforce/plugin-info": "^3.4.2",
|
|
14
13
|
"@salesforce/sf-plugins-core": "^11.3.2",
|
|
15
14
|
"@salesforce/source-deploy-retrieve": "^12.6.0",
|
|
16
|
-
"@salesforce/source-tracking": "^7.1.
|
|
15
|
+
"@salesforce/source-tracking": "^7.1.11",
|
|
17
16
|
"@salesforce/ts-types": "^2.0.12",
|
|
18
17
|
"ansis": "^3.3.2"
|
|
19
18
|
},
|
|
@@ -251,7 +250,7 @@
|
|
|
251
250
|
"exports": "./lib/index.js",
|
|
252
251
|
"type": "module",
|
|
253
252
|
"sfdx": {
|
|
254
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.12.3
|
|
255
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.12.3
|
|
253
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.12.3.crt",
|
|
254
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.12.3.sig"
|
|
256
255
|
}
|
|
257
256
|
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { MetadataApiDeploy, MetadataApiDeployStatus } from '@salesforce/source-deploy-retrieve';
|
|
2
|
-
import { SourceMemberPollingEvent } from '@salesforce/source-tracking';
|
|
3
|
-
type Options = {
|
|
4
|
-
title: string;
|
|
5
|
-
jsonEnabled: boolean;
|
|
6
|
-
};
|
|
7
|
-
type Data = {
|
|
8
|
-
mdapiDeploy: MetadataApiDeployStatus;
|
|
9
|
-
sourceMemberPolling: SourceMemberPollingEvent;
|
|
10
|
-
status: string;
|
|
11
|
-
message: string;
|
|
12
|
-
username: string;
|
|
13
|
-
id: string;
|
|
14
|
-
deploySize: string;
|
|
15
|
-
deployFileCount: string;
|
|
16
|
-
};
|
|
17
|
-
export declare class DeployStages {
|
|
18
|
-
private ms;
|
|
19
|
-
constructor({ title, jsonEnabled }: Options);
|
|
20
|
-
start({ username, deploy }: {
|
|
21
|
-
username?: string | undefined;
|
|
22
|
-
deploy: MetadataApiDeploy;
|
|
23
|
-
}): void;
|
|
24
|
-
update(data: Partial<Data>): void;
|
|
25
|
-
stop(error?: Error): void;
|
|
26
|
-
done(data?: Partial<Data>): void;
|
|
27
|
-
}
|
|
28
|
-
export {};
|
|
@@ -1,159 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2024, salesforce.com, inc.
|
|
3
|
-
* All rights reserved.
|
|
4
|
-
* Licensed under the BSD 3-Clause license.
|
|
5
|
-
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
|
-
*/
|
|
7
|
-
import { MultiStageOutput } from '@oclif/multi-stage-output';
|
|
8
|
-
import { Lifecycle, Messages } from '@salesforce/core';
|
|
9
|
-
import { RequestStatus } from '@salesforce/source-deploy-retrieve';
|
|
10
|
-
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
|
|
11
|
-
const mdTransferMessages = Messages.loadMessages('@salesforce/plugin-deploy-retrieve', 'metadata.transfer');
|
|
12
|
-
function round(value, precision) {
|
|
13
|
-
const multiplier = Math.pow(10, precision || 0);
|
|
14
|
-
return Math.round(value * multiplier) / multiplier;
|
|
15
|
-
}
|
|
16
|
-
function formatProgress(current, total) {
|
|
17
|
-
if (total === 0) {
|
|
18
|
-
return '0/0 (0%)';
|
|
19
|
-
}
|
|
20
|
-
return `${current}/${total} (${round((current / total) * 100, 0)}%)`;
|
|
21
|
-
}
|
|
22
|
-
export class DeployStages {
|
|
23
|
-
ms;
|
|
24
|
-
constructor({ title, jsonEnabled }) {
|
|
25
|
-
this.ms = new MultiStageOutput({
|
|
26
|
-
title,
|
|
27
|
-
stages: [
|
|
28
|
-
'Preparing',
|
|
29
|
-
'Waiting for the org to respond',
|
|
30
|
-
'Deploying Metadata',
|
|
31
|
-
'Running Tests',
|
|
32
|
-
'Updating Source Tracking',
|
|
33
|
-
'Done',
|
|
34
|
-
],
|
|
35
|
-
jsonEnabled,
|
|
36
|
-
preStagesBlock: [
|
|
37
|
-
{
|
|
38
|
-
type: 'message',
|
|
39
|
-
get: (data) => data?.message,
|
|
40
|
-
},
|
|
41
|
-
],
|
|
42
|
-
postStagesBlock: [
|
|
43
|
-
{
|
|
44
|
-
label: 'Status',
|
|
45
|
-
get: (data) => data?.status,
|
|
46
|
-
bold: true,
|
|
47
|
-
type: 'dynamic-key-value',
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
label: 'Deploy ID',
|
|
51
|
-
get: (data) => data?.id,
|
|
52
|
-
type: 'static-key-value',
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
label: 'Target Org',
|
|
56
|
-
get: (data) => data?.username,
|
|
57
|
-
type: 'static-key-value',
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
label: 'Deploy Size',
|
|
61
|
-
get: (data) => data?.deploySize,
|
|
62
|
-
type: 'static-key-value',
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
label: 'Deployed File Count',
|
|
66
|
-
get: (data) => data?.deployFileCount,
|
|
67
|
-
type: 'static-key-value',
|
|
68
|
-
},
|
|
69
|
-
],
|
|
70
|
-
stageSpecificBlock: [
|
|
71
|
-
{
|
|
72
|
-
label: 'Components',
|
|
73
|
-
get: (data) => data?.mdapiDeploy?.numberComponentsTotal
|
|
74
|
-
? formatProgress(data?.mdapiDeploy?.numberComponentsDeployed ?? 0, data?.mdapiDeploy?.numberComponentsTotal)
|
|
75
|
-
: undefined,
|
|
76
|
-
stage: 'Deploying Metadata',
|
|
77
|
-
type: 'dynamic-key-value',
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
label: 'Tests',
|
|
81
|
-
get: (data) => data?.mdapiDeploy?.numberTestsTotal && data?.mdapiDeploy?.numberTestsCompleted
|
|
82
|
-
? formatProgress(data?.mdapiDeploy?.numberTestsCompleted, data?.mdapiDeploy?.numberTestsTotal)
|
|
83
|
-
: undefined,
|
|
84
|
-
stage: 'Running Tests',
|
|
85
|
-
type: 'dynamic-key-value',
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
label: 'Members',
|
|
89
|
-
get: (data) => data?.sourceMemberPolling?.original
|
|
90
|
-
? formatProgress(data.sourceMemberPolling.original - data.sourceMemberPolling.remaining, data.sourceMemberPolling.original)
|
|
91
|
-
: undefined,
|
|
92
|
-
stage: 'Updating Source Tracking',
|
|
93
|
-
type: 'dynamic-key-value',
|
|
94
|
-
},
|
|
95
|
-
],
|
|
96
|
-
});
|
|
97
|
-
}
|
|
98
|
-
start({ username, deploy }) {
|
|
99
|
-
const lifecycle = Lifecycle.getInstance();
|
|
100
|
-
this.ms.skipTo('Preparing', { username, id: deploy.id });
|
|
101
|
-
// for sourceMember polling events
|
|
102
|
-
lifecycle.on('sourceMemberPollingEvent', (event) => Promise.resolve(this.ms.skipTo('Updating Source Tracking', { sourceMemberPolling: event })));
|
|
103
|
-
deploy.onUpdate((data) => {
|
|
104
|
-
if (data.numberComponentsDeployed === data.numberComponentsTotal &&
|
|
105
|
-
data.numberTestsTotal > 0 &&
|
|
106
|
-
data.numberComponentsDeployed > 0) {
|
|
107
|
-
this.ms.skipTo('Running Tests', { mdapiDeploy: data, status: mdTransferMessages.getMessage(data?.status) });
|
|
108
|
-
}
|
|
109
|
-
else if (data.status === RequestStatus.Pending) {
|
|
110
|
-
this.ms.skipTo('Waiting for the org to respond', {
|
|
111
|
-
mdapiDeploy: data,
|
|
112
|
-
status: mdTransferMessages.getMessage(data?.status),
|
|
113
|
-
});
|
|
114
|
-
}
|
|
115
|
-
else {
|
|
116
|
-
this.ms.skipTo('Deploying Metadata', {
|
|
117
|
-
mdapiDeploy: data,
|
|
118
|
-
status: mdTransferMessages.getMessage(data?.status),
|
|
119
|
-
});
|
|
120
|
-
}
|
|
121
|
-
});
|
|
122
|
-
deploy.onFinish((data) => {
|
|
123
|
-
this.ms.updateData({ mdapiDeploy: data.response, status: mdTransferMessages.getMessage(data.response.status) });
|
|
124
|
-
if (data.response.status === RequestStatus.Failed) {
|
|
125
|
-
this.ms.error();
|
|
126
|
-
}
|
|
127
|
-
else {
|
|
128
|
-
this.ms.skipTo('Done');
|
|
129
|
-
this.ms.stop();
|
|
130
|
-
}
|
|
131
|
-
});
|
|
132
|
-
deploy.onCancel((data) => {
|
|
133
|
-
this.ms.updateData({ mdapiDeploy: data, status: mdTransferMessages.getMessage(data?.status ?? 'Canceled') });
|
|
134
|
-
this.ms.error();
|
|
135
|
-
});
|
|
136
|
-
deploy.onError((error) => {
|
|
137
|
-
if (error.message.includes('client has timed out')) {
|
|
138
|
-
this.ms.updateData({ status: 'Client Timeout' });
|
|
139
|
-
}
|
|
140
|
-
this.ms.error();
|
|
141
|
-
throw error;
|
|
142
|
-
});
|
|
143
|
-
}
|
|
144
|
-
update(data) {
|
|
145
|
-
this.ms.updateData(data);
|
|
146
|
-
}
|
|
147
|
-
stop(error) {
|
|
148
|
-
if (error) {
|
|
149
|
-
this.ms.error();
|
|
150
|
-
}
|
|
151
|
-
else {
|
|
152
|
-
this.ms.stop();
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
done(data) {
|
|
156
|
-
this.ms.goto('Done', data);
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
//# sourceMappingURL=deployStages.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"deployStages.js","sourceRoot":"","sources":["../../src/utils/deployStages.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAA8C,aAAa,EAAE,MAAM,oCAAoC,CAAC;AAG/G,QAAQ,CAAC,kCAAkC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC7D,MAAM,kBAAkB,GAAG,QAAQ,CAAC,YAAY,CAAC,oCAAoC,EAAE,mBAAmB,CAAC,CAAC;AAkB5G,SAAS,KAAK,CAAC,KAAa,EAAE,SAAiB;IAC7C,MAAM,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC;IAChD,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,UAAU,CAAC,GAAG,UAAU,CAAC;AACrD,CAAC;AAED,SAAS,cAAc,CAAC,OAAe,EAAE,KAAa;IACpD,IAAI,KAAK,KAAK,CAAC,EAAE,CAAC;QAChB,OAAO,UAAU,CAAC;IACpB,CAAC;IAED,OAAO,GAAG,OAAO,IAAI,KAAK,KAAK,KAAK,CAAC,CAAC,OAAO,GAAG,KAAK,CAAC,GAAG,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC;AACvE,CAAC;AAED,MAAM,OAAO,YAAY;IACf,EAAE,CAAyB;IAEnC,YAAmB,EAAE,KAAK,EAAE,WAAW,EAAW;QAChD,IAAI,CAAC,EAAE,GAAG,IAAI,gBAAgB,CAAO;YACnC,KAAK;YACL,MAAM,EAAE;gBACN,WAAW;gBACX,gCAAgC;gBAChC,oBAAoB;gBACpB,eAAe;gBACf,0BAA0B;gBAC1B,MAAM;aACP;YACD,WAAW;YACX,cAAc,EAAE;gBACd;oBACE,IAAI,EAAE,SAAS;oBACf,GAAG,EAAE,CAAC,IAAI,EAAsB,EAAE,CAAC,IAAI,EAAE,OAAO;iBACjD;aACF;YACD,eAAe,EAAE;gBACf;oBACE,KAAK,EAAE,QAAQ;oBACf,GAAG,EAAE,CAAC,IAAI,EAAsB,EAAE,CAAC,IAAI,EAAE,MAAM;oBAC/C,IAAI,EAAE,IAAI;oBACV,IAAI,EAAE,mBAAmB;iBAC1B;gBACD;oBACE,KAAK,EAAE,WAAW;oBAClB,GAAG,EAAE,CAAC,IAAI,EAAsB,EAAE,CAAC,IAAI,EAAE,EAAE;oBAC3C,IAAI,EAAE,kBAAkB;iBACzB;gBACD;oBACE,KAAK,EAAE,YAAY;oBACnB,GAAG,EAAE,CAAC,IAAI,EAAsB,EAAE,CAAC,IAAI,EAAE,QAAQ;oBACjD,IAAI,EAAE,kBAAkB;iBACzB;gBACD;oBACE,KAAK,EAAE,aAAa;oBACpB,GAAG,EAAE,CAAC,IAAI,EAAsB,EAAE,CAAC,IAAI,EAAE,UAAU;oBACnD,IAAI,EAAE,kBAAkB;iBACzB;gBACD;oBACE,KAAK,EAAE,qBAAqB;oBAC5B,GAAG,EAAE,CAAC,IAAI,EAAsB,EAAE,CAAC,IAAI,EAAE,eAAe;oBACxD,IAAI,EAAE,kBAAkB;iBACzB;aACF;YACD,kBAAkB,EAAE;gBAClB;oBACE,KAAK,EAAE,YAAY;oBACnB,GAAG,EAAE,CAAC,IAAI,EAAsB,EAAE,CAChC,IAAI,EAAE,WAAW,EAAE,qBAAqB;wBACtC,CAAC,CAAC,cAAc,CACZ,IAAI,EAAE,WAAW,EAAE,wBAAwB,IAAI,CAAC,EAChD,IAAI,EAAE,WAAW,EAAE,qBAAqB,CACzC;wBACH,CAAC,CAAC,SAAS;oBACf,KAAK,EAAE,oBAAoB;oBAC3B,IAAI,EAAE,mBAAmB;iBAC1B;gBACD;oBACE,KAAK,EAAE,OAAO;oBACd,GAAG,EAAE,CAAC,IAAI,EAAsB,EAAE,CAChC,IAAI,EAAE,WAAW,EAAE,gBAAgB,IAAI,IAAI,EAAE,WAAW,EAAE,oBAAoB;wBAC5E,CAAC,CAAC,cAAc,CAAC,IAAI,EAAE,WAAW,EAAE,oBAAoB,EAAE,IAAI,EAAE,WAAW,EAAE,gBAAgB,CAAC;wBAC9F,CAAC,CAAC,SAAS;oBACf,KAAK,EAAE,eAAe;oBACtB,IAAI,EAAE,mBAAmB;iBAC1B;gBACD;oBACE,KAAK,EAAE,SAAS;oBAChB,GAAG,EAAE,CAAC,IAAI,EAAsB,EAAE,CAChC,IAAI,EAAE,mBAAmB,EAAE,QAAQ;wBACjC,CAAC,CAAC,cAAc,CACZ,IAAI,CAAC,mBAAmB,CAAC,QAAQ,GAAG,IAAI,CAAC,mBAAmB,CAAC,SAAS,EACtE,IAAI,CAAC,mBAAmB,CAAC,QAAQ,CAClC;wBACH,CAAC,CAAC,SAAS;oBACf,KAAK,EAAE,0BAA0B;oBACjC,IAAI,EAAE,mBAAmB;iBAC1B;aACF;SACF,CAAC,CAAC;IACL,CAAC;IAEM,KAAK,CAAC,EAAE,QAAQ,EAAE,MAAM,EAAgE;QAC7F,MAAM,SAAS,GAAG,SAAS,CAAC,WAAW,EAAE,CAAC;QAE1C,IAAI,CAAC,EAAE,CAAC,MAAM,CAAC,WAAW,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC;QAEzD,kCAAkC;QAClC,SAAS,CAAC,EAAE,CAA2B,0BAA0B,EAAE,CAAC,KAA+B,EAAE,EAAE,CACrG,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,MAAM,CAAC,0BAA0B,EAAE,EAAE,mBAAmB,EAAE,KAAK,EAAE,CAAC,CAAC,CAC5F,CAAC;QAEF,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,EAAE,EAAE;YACvB,IACE,IAAI,CAAC,wBAAwB,KAAK,IAAI,CAAC,qBAAqB;gBAC5D,IAAI,CAAC,gBAAgB,GAAG,CAAC;gBACzB,IAAI,CAAC,wBAAwB,GAAG,CAAC,EACjC,CAAC;gBACD,IAAI,CAAC,EAAE,CAAC,MAAM,CAAC,eAAe,EAAE,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,EAAE,kBAAkB,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC;YAC9G,CAAC;iBAAM,IAAI,IAAI,CAAC,MAAM,KAAK,aAAa,CAAC,OAAO,EAAE,CAAC;gBACjD,IAAI,CAAC,EAAE,CAAC,MAAM,CAAC,gCAAgC,EAAE;oBAC/C,WAAW,EAAE,IAAI;oBACjB,MAAM,EAAE,kBAAkB,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC;iBACpD,CAAC,CAAC;YACL,CAAC;iBAAM,CAAC;gBACN,IAAI,CAAC,EAAE,CAAC,MAAM,CAAC,oBAAoB,EAAE;oBACnC,WAAW,EAAE,IAAI;oBACjB,MAAM,EAAE,kBAAkB,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC;iBACpD,CAAC,CAAC;YACL,CAAC;QACH,CAAC,CAAC,CAAC;QAEH,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,EAAE,EAAE;YACvB,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,EAAE,WAAW,EAAE,IAAI,CAAC,QAAQ,EAAE,MAAM,EAAE,kBAAkB,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;YAChH,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,KAAK,aAAa,CAAC,MAAM,EAAE,CAAC;gBAClD,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC;YAClB,CAAC;iBAAM,CAAC;gBACN,IAAI,CAAC,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;gBACvB,IAAI,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC;YACjB,CAAC;QACH,CAAC,CAAC,CAAC;QAEH,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,EAAE,EAAE;YACvB,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,EAAE,kBAAkB,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;YAE7G,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC;QAClB,CAAC,CAAC,CAAC;QAEH,MAAM,CAAC,OAAO,CAAC,CAAC,KAAY,EAAE,EAAE;YAC9B,IAAI,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,sBAAsB,CAAC,EAAE,CAAC;gBACnD,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,gBAAgB,EAAE,CAAC,CAAC;YACnD,CAAC;YAED,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC;YAChB,MAAM,KAAK,CAAC;QACd,CAAC,CAAC,CAAC;IACL,CAAC;IAEM,MAAM,CAAC,IAAmB;QAC/B,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;IAC3B,CAAC;IAEM,IAAI,CAAC,KAAa;QACvB,IAAI,KAAK,EAAE,CAAC;YACV,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC;QAClB,CAAC;aAAM,CAAC;YACN,IAAI,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC;QACjB,CAAC;IACH,CAAC;IAEM,IAAI,CAAC,IAAoB;QAC9B,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;IAC7B,CAAC;CACF"}
|