@sembix/cli 1.3.0 → 1.4.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/COMMANDS.md +1522 -0
- package/QUICKSTART.md +829 -0
- package/README.md +1949 -285
- package/USAGE-EXAMPLES.md +872 -0
- package/dist/commands/configure.d.ts.map +1 -1
- package/dist/commands/configure.js +172 -2
- package/dist/commands/configure.js.map +1 -1
- package/dist/commands/index.d.ts +10 -0
- package/dist/commands/index.d.ts.map +1 -0
- package/dist/commands/index.js +11 -0
- package/dist/commands/index.js.map +1 -0
- package/dist/commands/login.d.ts +19 -0
- package/dist/commands/login.d.ts.map +1 -0
- package/dist/commands/login.js +118 -0
- package/dist/commands/login.js.map +1 -0
- package/dist/commands/logout.d.ts +21 -0
- package/dist/commands/logout.d.ts.map +1 -0
- package/dist/commands/logout.js +66 -0
- package/dist/commands/logout.js.map +1 -0
- package/dist/commands/profile-project.d.ts +14 -0
- package/dist/commands/profile-project.d.ts.map +1 -0
- package/dist/commands/profile-project.js +123 -0
- package/dist/commands/profile-project.js.map +1 -0
- package/dist/commands/profile.d.ts +26 -0
- package/dist/commands/profile.d.ts.map +1 -0
- package/dist/commands/profile.js +177 -0
- package/dist/commands/profile.js.map +1 -0
- package/dist/commands/project.d.ts +16 -0
- package/dist/commands/project.d.ts.map +1 -0
- package/dist/commands/project.js +153 -0
- package/dist/commands/project.js.map +1 -0
- package/dist/commands/workflow.d.ts +91 -0
- package/dist/commands/workflow.d.ts.map +1 -0
- package/dist/commands/workflow.js +1201 -0
- package/dist/commands/workflow.js.map +1 -0
- package/dist/config-schema.d.ts +23 -0
- package/dist/config-schema.d.ts.map +1 -1
- package/dist/config-schema.js +21 -1
- package/dist/config-schema.js.map +1 -1
- package/dist/config.d.ts +4 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +23 -2
- package/dist/config.js.map +1 -1
- package/dist/index.js +318 -1
- package/dist/index.js.map +1 -1
- package/dist/prompts/project-selection.d.ts +8 -0
- package/dist/prompts/project-selection.d.ts.map +1 -0
- package/dist/prompts/project-selection.js +132 -0
- package/dist/prompts/project-selection.js.map +1 -0
- package/dist/prompts/workflow-inputs.d.ts +10 -0
- package/dist/prompts/workflow-inputs.d.ts.map +1 -0
- package/dist/prompts/workflow-inputs.js +71 -0
- package/dist/prompts/workflow-inputs.js.map +1 -0
- package/dist/prompts/workflow-selection.d.ts +8 -0
- package/dist/prompts/workflow-selection.d.ts.map +1 -0
- package/dist/prompts/workflow-selection.js +147 -0
- package/dist/prompts/workflow-selection.js.map +1 -0
- package/dist/sembix-cli-1.4.0.tgz +0 -0
- package/dist/services/cognito-auth.d.ts +92 -0
- package/dist/services/cognito-auth.d.ts.map +1 -0
- package/dist/services/cognito-auth.js +319 -0
- package/dist/services/cognito-auth.js.map +1 -0
- package/dist/services/studio-api-client.d.ts +127 -0
- package/dist/services/studio-api-client.d.ts.map +1 -0
- package/dist/services/studio-api-client.js +291 -0
- package/dist/services/studio-api-client.js.map +1 -0
- package/dist/types/studio.d.ts +82 -0
- package/dist/types/studio.d.ts.map +1 -0
- package/dist/types/studio.js +7 -0
- package/dist/types/studio.js.map +1 -0
- package/dist/types.d.ts +283 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +5 -0
- package/dist/types.js.map +1 -1
- package/dist/utils/browser-auth.d.ts +45 -0
- package/dist/utils/browser-auth.d.ts.map +1 -0
- package/dist/utils/browser-auth.js +168 -0
- package/dist/utils/browser-auth.js.map +1 -0
- package/dist/utils/cognito-auth.d.ts +3 -0
- package/dist/utils/cognito-auth.d.ts.map +1 -0
- package/dist/utils/cognito-auth.js +3 -0
- package/dist/utils/cognito-auth.js.map +1 -0
- package/dist/utils/config-file.d.ts +40 -0
- package/dist/utils/config-file.d.ts.map +1 -1
- package/dist/utils/config-file.js +158 -4
- package/dist/utils/config-file.js.map +1 -1
- package/dist/utils/environment.d.ts +22 -0
- package/dist/utils/environment.d.ts.map +1 -0
- package/dist/utils/environment.js +39 -0
- package/dist/utils/environment.js.map +1 -0
- package/dist/utils/error-handler.d.ts +53 -0
- package/dist/utils/error-handler.d.ts.map +1 -0
- package/dist/utils/error-handler.js +174 -0
- package/dist/utils/error-handler.js.map +1 -0
- package/dist/utils/fuzzy-match.d.ts +31 -0
- package/dist/utils/fuzzy-match.d.ts.map +1 -0
- package/dist/utils/fuzzy-match.js +138 -0
- package/dist/utils/fuzzy-match.js.map +1 -0
- package/dist/utils/input-parser.d.ts +14 -0
- package/dist/utils/input-parser.d.ts.map +1 -0
- package/dist/utils/input-parser.js +34 -0
- package/dist/utils/input-parser.js.map +1 -0
- package/dist/utils/output.d.ts +55 -0
- package/dist/utils/output.d.ts.map +1 -0
- package/dist/utils/output.js +80 -0
- package/dist/utils/output.js.map +1 -0
- package/dist/utils/recent-workflows.d.ts +37 -0
- package/dist/utils/recent-workflows.d.ts.map +1 -0
- package/dist/utils/recent-workflows.js +172 -0
- package/dist/utils/recent-workflows.js.map +1 -0
- package/dist/utils/studio-api-client.d.ts +3 -0
- package/dist/utils/studio-api-client.d.ts.map +1 -0
- package/dist/utils/studio-api-client.js +3 -0
- package/dist/utils/studio-api-client.js.map +1 -0
- package/dist/utils/studio-api.d.ts +53 -0
- package/dist/utils/studio-api.d.ts.map +1 -0
- package/dist/utils/studio-api.js +102 -0
- package/dist/utils/studio-api.js.map +1 -0
- package/dist/utils/studio-config.d.ts +74 -0
- package/dist/utils/studio-config.d.ts.map +1 -0
- package/dist/utils/studio-config.js +213 -0
- package/dist/utils/studio-config.js.map +1 -0
- package/dist/utils/token-manager.d.ts +4 -0
- package/dist/utils/token-manager.d.ts.map +1 -0
- package/dist/utils/token-manager.js +3 -0
- package/dist/utils/token-manager.js.map +1 -0
- package/dist/utils/ui.d.ts +55 -1
- package/dist/utils/ui.d.ts.map +1 -1
- package/dist/utils/ui.js +151 -2
- package/dist/utils/ui.js.map +1 -1
- package/package.json +4 -1
- package/dist/__tests__/config-schema.test.d.ts +0 -2
- package/dist/__tests__/config-schema.test.d.ts.map +0 -1
- package/dist/__tests__/config-schema.test.js +0 -471
- package/dist/__tests__/config-schema.test.js.map +0 -1
- package/dist/__tests__/config.test.d.ts +0 -2
- package/dist/__tests__/config.test.d.ts.map +0 -1
- package/dist/__tests__/config.test.js +0 -75
- package/dist/__tests__/config.test.js.map +0 -1
- package/dist/__tests__/integration/configure.test.d.ts +0 -2
- package/dist/__tests__/integration/configure.test.d.ts.map +0 -1
- package/dist/__tests__/integration/configure.test.js +0 -247
- package/dist/__tests__/integration/configure.test.js.map +0 -1
- package/dist/__tests__/integration/fixtures/configs.d.ts +0 -477
- package/dist/__tests__/integration/fixtures/configs.d.ts.map +0 -1
- package/dist/__tests__/integration/fixtures/configs.js +0 -175
- package/dist/__tests__/integration/fixtures/configs.js.map +0 -1
- package/dist/__tests__/integration/helpers/cli-runner.d.ts +0 -63
- package/dist/__tests__/integration/helpers/cli-runner.d.ts.map +0 -1
- package/dist/__tests__/integration/helpers/cli-runner.js +0 -152
- package/dist/__tests__/integration/helpers/cli-runner.js.map +0 -1
- package/dist/__tests__/integration/helpers/command-runner.d.ts +0 -53
- package/dist/__tests__/integration/helpers/command-runner.d.ts.map +0 -1
- package/dist/__tests__/integration/helpers/command-runner.js +0 -117
- package/dist/__tests__/integration/helpers/command-runner.js.map +0 -1
- package/dist/__tests__/integration/studio-create.test.d.ts +0 -2
- package/dist/__tests__/integration/studio-create.test.d.ts.map +0 -1
- package/dist/__tests__/integration/studio-create.test.js +0 -209
- package/dist/__tests__/integration/studio-create.test.js.map +0 -1
- package/dist/__tests__/integration/studio-update.test.d.ts +0 -2
- package/dist/__tests__/integration/studio-update.test.d.ts.map +0 -1
- package/dist/__tests__/integration/studio-update.test.js +0 -166
- package/dist/__tests__/integration/studio-update.test.js.map +0 -1
- package/dist/commands/__tests__/configure.test.d.ts +0 -2
- package/dist/commands/__tests__/configure.test.d.ts.map +0 -1
- package/dist/commands/__tests__/configure.test.js +0 -229
- package/dist/commands/__tests__/configure.test.js.map +0 -1
- package/dist/prompts/__tests__/environment-setup.test.d.ts +0 -2
- package/dist/prompts/__tests__/environment-setup.test.d.ts.map +0 -1
- package/dist/prompts/__tests__/environment-setup.test.js +0 -206
- package/dist/prompts/__tests__/environment-setup.test.js.map +0 -1
- package/dist/prompts/__tests__/hub-integration.test.d.ts +0 -2
- package/dist/prompts/__tests__/hub-integration.test.d.ts.map +0 -1
- package/dist/prompts/__tests__/hub-integration.test.js +0 -126
- package/dist/prompts/__tests__/hub-integration.test.js.map +0 -1
- package/dist/prompts/__tests__/prompt-helpers.test.d.ts +0 -2
- package/dist/prompts/__tests__/prompt-helpers.test.d.ts.map +0 -1
- package/dist/prompts/__tests__/prompt-helpers.test.js +0 -235
- package/dist/prompts/__tests__/prompt-helpers.test.js.map +0 -1
- package/dist/sembix-cli-1.3.0.tgz +0 -0
- package/dist/utils/__tests__/config-file.test.d.ts +0 -2
- package/dist/utils/__tests__/config-file.test.d.ts.map +0 -1
- package/dist/utils/__tests__/config-file.test.js +0 -218
- package/dist/utils/__tests__/config-file.test.js.map +0 -1
- package/dist/utils/__tests__/config-loader.test.d.ts +0 -2
- package/dist/utils/__tests__/config-loader.test.d.ts.map +0 -1
- package/dist/utils/__tests__/config-loader.test.js +0 -325
- package/dist/utils/__tests__/config-loader.test.js.map +0 -1
- package/dist/utils/__tests__/github.test.d.ts +0 -2
- package/dist/utils/__tests__/github.test.d.ts.map +0 -1
- package/dist/utils/__tests__/github.test.js +0 -282
- package/dist/utils/__tests__/github.test.js.map +0 -1
- package/dist/utils/__tests__/ui.test.d.ts +0 -2
- package/dist/utils/__tests__/ui.test.d.ts.map +0 -1
- package/dist/utils/__tests__/ui.test.js +0 -256
- package/dist/utils/__tests__/ui.test.js.map +0 -1
|
@@ -1,477 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Test configuration fixtures for integration tests
|
|
3
|
-
*/
|
|
4
|
-
export declare const validMinimalConfig: {
|
|
5
|
-
repository: {
|
|
6
|
-
owner: string;
|
|
7
|
-
repo: string;
|
|
8
|
-
};
|
|
9
|
-
environmentName: string;
|
|
10
|
-
awsAccountId: string;
|
|
11
|
-
awsRegion: "us-east-1";
|
|
12
|
-
customerRoleArn: string;
|
|
13
|
-
terraformStateBucket: string;
|
|
14
|
-
database: {
|
|
15
|
-
name: string;
|
|
16
|
-
user: string;
|
|
17
|
-
};
|
|
18
|
-
networking: {
|
|
19
|
-
enableVpcEndpoints: boolean;
|
|
20
|
-
useCustomNetworking: boolean;
|
|
21
|
-
};
|
|
22
|
-
security: {
|
|
23
|
-
useCustomSecurityGroups: boolean;
|
|
24
|
-
useCustomIamPolicies: boolean;
|
|
25
|
-
};
|
|
26
|
-
tls: {
|
|
27
|
-
cloudfrontDomain: string;
|
|
28
|
-
cloudfrontCertArn: string;
|
|
29
|
-
bffAlbCertificateArn: string;
|
|
30
|
-
hostedZoneId: string;
|
|
31
|
-
};
|
|
32
|
-
features: {
|
|
33
|
-
deploySembixStudioMemory: boolean;
|
|
34
|
-
deploySembixStudioNotifications: boolean;
|
|
35
|
-
enableBffWaf: boolean;
|
|
36
|
-
};
|
|
37
|
-
frontend: {
|
|
38
|
-
githubAppClientId: string;
|
|
39
|
-
githubAppName: string;
|
|
40
|
-
jiraClientId: string;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
export declare const validFullConfig: {
|
|
44
|
-
networking: {
|
|
45
|
-
enableVpcEndpoints: boolean;
|
|
46
|
-
useCustomNetworking: boolean;
|
|
47
|
-
customVpcId: string;
|
|
48
|
-
customPublicSubnetIds: string;
|
|
49
|
-
customPrivateSubnetIds: string;
|
|
50
|
-
};
|
|
51
|
-
security: {
|
|
52
|
-
workflowRunsKeyAlias: string;
|
|
53
|
-
useCustomSecurityGroups: boolean;
|
|
54
|
-
customSecurityGroups: {
|
|
55
|
-
workflowEngine: string;
|
|
56
|
-
aurora: string;
|
|
57
|
-
rdsProxy: string;
|
|
58
|
-
bffEcs: string;
|
|
59
|
-
bastion: string;
|
|
60
|
-
bffAlb: string;
|
|
61
|
-
};
|
|
62
|
-
useCustomIamPolicies: boolean;
|
|
63
|
-
customIamRoles: {
|
|
64
|
-
workflowEngineExecutionRole: string;
|
|
65
|
-
workflowEngineTaskRole: string;
|
|
66
|
-
bffEcsTaskExecutionRole: string;
|
|
67
|
-
bffEcsTaskRole: string;
|
|
68
|
-
rdsProxyRole: string;
|
|
69
|
-
sembixStudioMemoryRole: string;
|
|
70
|
-
sembixStudioNotificationRole: string;
|
|
71
|
-
};
|
|
72
|
-
};
|
|
73
|
-
features: {
|
|
74
|
-
deploySembixStudioMemory: boolean;
|
|
75
|
-
deploySembixStudioNotifications: boolean;
|
|
76
|
-
enableBffWaf: boolean;
|
|
77
|
-
};
|
|
78
|
-
repository: {
|
|
79
|
-
owner: string;
|
|
80
|
-
repo: string;
|
|
81
|
-
};
|
|
82
|
-
environmentName: string;
|
|
83
|
-
awsAccountId: string;
|
|
84
|
-
awsRegion: "us-east-1";
|
|
85
|
-
customerRoleArn: string;
|
|
86
|
-
terraformStateBucket: string;
|
|
87
|
-
database: {
|
|
88
|
-
name: string;
|
|
89
|
-
user: string;
|
|
90
|
-
};
|
|
91
|
-
tls: {
|
|
92
|
-
cloudfrontDomain: string;
|
|
93
|
-
cloudfrontCertArn: string;
|
|
94
|
-
bffAlbCertificateArn: string;
|
|
95
|
-
hostedZoneId: string;
|
|
96
|
-
};
|
|
97
|
-
frontend: {
|
|
98
|
-
githubAppClientId: string;
|
|
99
|
-
githubAppName: string;
|
|
100
|
-
jiraClientId: string;
|
|
101
|
-
};
|
|
102
|
-
};
|
|
103
|
-
export declare const validConfigWithHub: {
|
|
104
|
-
hub: {
|
|
105
|
-
hubRoles: {
|
|
106
|
-
engineExecutionRole: string;
|
|
107
|
-
consumerRole: string;
|
|
108
|
-
};
|
|
109
|
-
appConfig: {
|
|
110
|
-
roleArn: string;
|
|
111
|
-
appId: string;
|
|
112
|
-
envId: string;
|
|
113
|
-
profileId: string;
|
|
114
|
-
};
|
|
115
|
-
};
|
|
116
|
-
repository: {
|
|
117
|
-
owner: string;
|
|
118
|
-
repo: string;
|
|
119
|
-
};
|
|
120
|
-
environmentName: string;
|
|
121
|
-
awsAccountId: string;
|
|
122
|
-
awsRegion: "us-east-1";
|
|
123
|
-
customerRoleArn: string;
|
|
124
|
-
terraformStateBucket: string;
|
|
125
|
-
database: {
|
|
126
|
-
name: string;
|
|
127
|
-
user: string;
|
|
128
|
-
};
|
|
129
|
-
networking: {
|
|
130
|
-
enableVpcEndpoints: boolean;
|
|
131
|
-
useCustomNetworking: boolean;
|
|
132
|
-
};
|
|
133
|
-
security: {
|
|
134
|
-
useCustomSecurityGroups: boolean;
|
|
135
|
-
useCustomIamPolicies: boolean;
|
|
136
|
-
};
|
|
137
|
-
tls: {
|
|
138
|
-
cloudfrontDomain: string;
|
|
139
|
-
cloudfrontCertArn: string;
|
|
140
|
-
bffAlbCertificateArn: string;
|
|
141
|
-
hostedZoneId: string;
|
|
142
|
-
};
|
|
143
|
-
features: {
|
|
144
|
-
deploySembixStudioMemory: boolean;
|
|
145
|
-
deploySembixStudioNotifications: boolean;
|
|
146
|
-
enableBffWaf: boolean;
|
|
147
|
-
};
|
|
148
|
-
frontend: {
|
|
149
|
-
githubAppClientId: string;
|
|
150
|
-
githubAppName: string;
|
|
151
|
-
jiraClientId: string;
|
|
152
|
-
};
|
|
153
|
-
};
|
|
154
|
-
export declare const invalidConfigs: {
|
|
155
|
-
invalidAwsAccountId: {
|
|
156
|
-
awsAccountId: string;
|
|
157
|
-
repository: {
|
|
158
|
-
owner: string;
|
|
159
|
-
repo: string;
|
|
160
|
-
};
|
|
161
|
-
environmentName: string;
|
|
162
|
-
awsRegion: "us-east-1";
|
|
163
|
-
customerRoleArn: string;
|
|
164
|
-
terraformStateBucket: string;
|
|
165
|
-
database: {
|
|
166
|
-
name: string;
|
|
167
|
-
user: string;
|
|
168
|
-
};
|
|
169
|
-
networking: {
|
|
170
|
-
enableVpcEndpoints: boolean;
|
|
171
|
-
useCustomNetworking: boolean;
|
|
172
|
-
};
|
|
173
|
-
security: {
|
|
174
|
-
useCustomSecurityGroups: boolean;
|
|
175
|
-
useCustomIamPolicies: boolean;
|
|
176
|
-
};
|
|
177
|
-
tls: {
|
|
178
|
-
cloudfrontDomain: string;
|
|
179
|
-
cloudfrontCertArn: string;
|
|
180
|
-
bffAlbCertificateArn: string;
|
|
181
|
-
hostedZoneId: string;
|
|
182
|
-
};
|
|
183
|
-
features: {
|
|
184
|
-
deploySembixStudioMemory: boolean;
|
|
185
|
-
deploySembixStudioNotifications: boolean;
|
|
186
|
-
enableBffWaf: boolean;
|
|
187
|
-
};
|
|
188
|
-
frontend: {
|
|
189
|
-
githubAppClientId: string;
|
|
190
|
-
githubAppName: string;
|
|
191
|
-
jiraClientId: string;
|
|
192
|
-
};
|
|
193
|
-
};
|
|
194
|
-
invalidEnvironmentName: {
|
|
195
|
-
environmentName: string;
|
|
196
|
-
repository: {
|
|
197
|
-
owner: string;
|
|
198
|
-
repo: string;
|
|
199
|
-
};
|
|
200
|
-
awsAccountId: string;
|
|
201
|
-
awsRegion: "us-east-1";
|
|
202
|
-
customerRoleArn: string;
|
|
203
|
-
terraformStateBucket: string;
|
|
204
|
-
database: {
|
|
205
|
-
name: string;
|
|
206
|
-
user: string;
|
|
207
|
-
};
|
|
208
|
-
networking: {
|
|
209
|
-
enableVpcEndpoints: boolean;
|
|
210
|
-
useCustomNetworking: boolean;
|
|
211
|
-
};
|
|
212
|
-
security: {
|
|
213
|
-
useCustomSecurityGroups: boolean;
|
|
214
|
-
useCustomIamPolicies: boolean;
|
|
215
|
-
};
|
|
216
|
-
tls: {
|
|
217
|
-
cloudfrontDomain: string;
|
|
218
|
-
cloudfrontCertArn: string;
|
|
219
|
-
bffAlbCertificateArn: string;
|
|
220
|
-
hostedZoneId: string;
|
|
221
|
-
};
|
|
222
|
-
features: {
|
|
223
|
-
deploySembixStudioMemory: boolean;
|
|
224
|
-
deploySembixStudioNotifications: boolean;
|
|
225
|
-
enableBffWaf: boolean;
|
|
226
|
-
};
|
|
227
|
-
frontend: {
|
|
228
|
-
githubAppClientId: string;
|
|
229
|
-
githubAppName: string;
|
|
230
|
-
jiraClientId: string;
|
|
231
|
-
};
|
|
232
|
-
};
|
|
233
|
-
invalidIamRoleArn: {
|
|
234
|
-
customerRoleArn: string;
|
|
235
|
-
repository: {
|
|
236
|
-
owner: string;
|
|
237
|
-
repo: string;
|
|
238
|
-
};
|
|
239
|
-
environmentName: string;
|
|
240
|
-
awsAccountId: string;
|
|
241
|
-
awsRegion: "us-east-1";
|
|
242
|
-
terraformStateBucket: string;
|
|
243
|
-
database: {
|
|
244
|
-
name: string;
|
|
245
|
-
user: string;
|
|
246
|
-
};
|
|
247
|
-
networking: {
|
|
248
|
-
enableVpcEndpoints: boolean;
|
|
249
|
-
useCustomNetworking: boolean;
|
|
250
|
-
};
|
|
251
|
-
security: {
|
|
252
|
-
useCustomSecurityGroups: boolean;
|
|
253
|
-
useCustomIamPolicies: boolean;
|
|
254
|
-
};
|
|
255
|
-
tls: {
|
|
256
|
-
cloudfrontDomain: string;
|
|
257
|
-
cloudfrontCertArn: string;
|
|
258
|
-
bffAlbCertificateArn: string;
|
|
259
|
-
hostedZoneId: string;
|
|
260
|
-
};
|
|
261
|
-
features: {
|
|
262
|
-
deploySembixStudioMemory: boolean;
|
|
263
|
-
deploySembixStudioNotifications: boolean;
|
|
264
|
-
enableBffWaf: boolean;
|
|
265
|
-
};
|
|
266
|
-
frontend: {
|
|
267
|
-
githubAppClientId: string;
|
|
268
|
-
githubAppName: string;
|
|
269
|
-
jiraClientId: string;
|
|
270
|
-
};
|
|
271
|
-
};
|
|
272
|
-
invalidRegion: {
|
|
273
|
-
awsRegion: any;
|
|
274
|
-
repository: {
|
|
275
|
-
owner: string;
|
|
276
|
-
repo: string;
|
|
277
|
-
};
|
|
278
|
-
environmentName: string;
|
|
279
|
-
awsAccountId: string;
|
|
280
|
-
customerRoleArn: string;
|
|
281
|
-
terraformStateBucket: string;
|
|
282
|
-
database: {
|
|
283
|
-
name: string;
|
|
284
|
-
user: string;
|
|
285
|
-
};
|
|
286
|
-
networking: {
|
|
287
|
-
enableVpcEndpoints: boolean;
|
|
288
|
-
useCustomNetworking: boolean;
|
|
289
|
-
};
|
|
290
|
-
security: {
|
|
291
|
-
useCustomSecurityGroups: boolean;
|
|
292
|
-
useCustomIamPolicies: boolean;
|
|
293
|
-
};
|
|
294
|
-
tls: {
|
|
295
|
-
cloudfrontDomain: string;
|
|
296
|
-
cloudfrontCertArn: string;
|
|
297
|
-
bffAlbCertificateArn: string;
|
|
298
|
-
hostedZoneId: string;
|
|
299
|
-
};
|
|
300
|
-
features: {
|
|
301
|
-
deploySembixStudioMemory: boolean;
|
|
302
|
-
deploySembixStudioNotifications: boolean;
|
|
303
|
-
enableBffWaf: boolean;
|
|
304
|
-
};
|
|
305
|
-
frontend: {
|
|
306
|
-
githubAppClientId: string;
|
|
307
|
-
githubAppName: string;
|
|
308
|
-
jiraClientId: string;
|
|
309
|
-
};
|
|
310
|
-
};
|
|
311
|
-
invalidCloudfrontCert: {
|
|
312
|
-
tls: {
|
|
313
|
-
cloudfrontCertArn: string;
|
|
314
|
-
cloudfrontDomain: string;
|
|
315
|
-
bffAlbCertificateArn: string;
|
|
316
|
-
hostedZoneId: string;
|
|
317
|
-
};
|
|
318
|
-
repository: {
|
|
319
|
-
owner: string;
|
|
320
|
-
repo: string;
|
|
321
|
-
};
|
|
322
|
-
environmentName: string;
|
|
323
|
-
awsAccountId: string;
|
|
324
|
-
awsRegion: "us-east-1";
|
|
325
|
-
customerRoleArn: string;
|
|
326
|
-
terraformStateBucket: string;
|
|
327
|
-
database: {
|
|
328
|
-
name: string;
|
|
329
|
-
user: string;
|
|
330
|
-
};
|
|
331
|
-
networking: {
|
|
332
|
-
enableVpcEndpoints: boolean;
|
|
333
|
-
useCustomNetworking: boolean;
|
|
334
|
-
};
|
|
335
|
-
security: {
|
|
336
|
-
useCustomSecurityGroups: boolean;
|
|
337
|
-
useCustomIamPolicies: boolean;
|
|
338
|
-
};
|
|
339
|
-
features: {
|
|
340
|
-
deploySembixStudioMemory: boolean;
|
|
341
|
-
deploySembixStudioNotifications: boolean;
|
|
342
|
-
enableBffWaf: boolean;
|
|
343
|
-
};
|
|
344
|
-
frontend: {
|
|
345
|
-
githubAppClientId: string;
|
|
346
|
-
githubAppName: string;
|
|
347
|
-
jiraClientId: string;
|
|
348
|
-
};
|
|
349
|
-
};
|
|
350
|
-
invalidSecurityGroupId: {
|
|
351
|
-
security: {
|
|
352
|
-
customSecurityGroups: {
|
|
353
|
-
aurora: string;
|
|
354
|
-
workflowEngine: string;
|
|
355
|
-
rdsProxy: string;
|
|
356
|
-
bffEcs: string;
|
|
357
|
-
bastion: string;
|
|
358
|
-
bffAlb: string;
|
|
359
|
-
};
|
|
360
|
-
workflowRunsKeyAlias: string;
|
|
361
|
-
useCustomSecurityGroups: boolean;
|
|
362
|
-
useCustomIamPolicies: boolean;
|
|
363
|
-
customIamRoles: {
|
|
364
|
-
workflowEngineExecutionRole: string;
|
|
365
|
-
workflowEngineTaskRole: string;
|
|
366
|
-
bffEcsTaskExecutionRole: string;
|
|
367
|
-
bffEcsTaskRole: string;
|
|
368
|
-
rdsProxyRole: string;
|
|
369
|
-
sembixStudioMemoryRole: string;
|
|
370
|
-
sembixStudioNotificationRole: string;
|
|
371
|
-
};
|
|
372
|
-
};
|
|
373
|
-
networking: {
|
|
374
|
-
enableVpcEndpoints: boolean;
|
|
375
|
-
useCustomNetworking: boolean;
|
|
376
|
-
customVpcId: string;
|
|
377
|
-
customPublicSubnetIds: string;
|
|
378
|
-
customPrivateSubnetIds: string;
|
|
379
|
-
};
|
|
380
|
-
features: {
|
|
381
|
-
deploySembixStudioMemory: boolean;
|
|
382
|
-
deploySembixStudioNotifications: boolean;
|
|
383
|
-
enableBffWaf: boolean;
|
|
384
|
-
};
|
|
385
|
-
repository: {
|
|
386
|
-
owner: string;
|
|
387
|
-
repo: string;
|
|
388
|
-
};
|
|
389
|
-
environmentName: string;
|
|
390
|
-
awsAccountId: string;
|
|
391
|
-
awsRegion: "us-east-1";
|
|
392
|
-
customerRoleArn: string;
|
|
393
|
-
terraformStateBucket: string;
|
|
394
|
-
database: {
|
|
395
|
-
name: string;
|
|
396
|
-
user: string;
|
|
397
|
-
};
|
|
398
|
-
tls: {
|
|
399
|
-
cloudfrontDomain: string;
|
|
400
|
-
cloudfrontCertArn: string;
|
|
401
|
-
bffAlbCertificateArn: string;
|
|
402
|
-
hostedZoneId: string;
|
|
403
|
-
};
|
|
404
|
-
frontend: {
|
|
405
|
-
githubAppClientId: string;
|
|
406
|
-
githubAppName: string;
|
|
407
|
-
jiraClientId: string;
|
|
408
|
-
};
|
|
409
|
-
};
|
|
410
|
-
invalidVpcId: {
|
|
411
|
-
networking: {
|
|
412
|
-
customVpcId: string;
|
|
413
|
-
enableVpcEndpoints: boolean;
|
|
414
|
-
useCustomNetworking: boolean;
|
|
415
|
-
customPublicSubnetIds: string;
|
|
416
|
-
customPrivateSubnetIds: string;
|
|
417
|
-
};
|
|
418
|
-
security: {
|
|
419
|
-
workflowRunsKeyAlias: string;
|
|
420
|
-
useCustomSecurityGroups: boolean;
|
|
421
|
-
customSecurityGroups: {
|
|
422
|
-
workflowEngine: string;
|
|
423
|
-
aurora: string;
|
|
424
|
-
rdsProxy: string;
|
|
425
|
-
bffEcs: string;
|
|
426
|
-
bastion: string;
|
|
427
|
-
bffAlb: string;
|
|
428
|
-
};
|
|
429
|
-
useCustomIamPolicies: boolean;
|
|
430
|
-
customIamRoles: {
|
|
431
|
-
workflowEngineExecutionRole: string;
|
|
432
|
-
workflowEngineTaskRole: string;
|
|
433
|
-
bffEcsTaskExecutionRole: string;
|
|
434
|
-
bffEcsTaskRole: string;
|
|
435
|
-
rdsProxyRole: string;
|
|
436
|
-
sembixStudioMemoryRole: string;
|
|
437
|
-
sembixStudioNotificationRole: string;
|
|
438
|
-
};
|
|
439
|
-
};
|
|
440
|
-
features: {
|
|
441
|
-
deploySembixStudioMemory: boolean;
|
|
442
|
-
deploySembixStudioNotifications: boolean;
|
|
443
|
-
enableBffWaf: boolean;
|
|
444
|
-
};
|
|
445
|
-
repository: {
|
|
446
|
-
owner: string;
|
|
447
|
-
repo: string;
|
|
448
|
-
};
|
|
449
|
-
environmentName: string;
|
|
450
|
-
awsAccountId: string;
|
|
451
|
-
awsRegion: "us-east-1";
|
|
452
|
-
customerRoleArn: string;
|
|
453
|
-
terraformStateBucket: string;
|
|
454
|
-
database: {
|
|
455
|
-
name: string;
|
|
456
|
-
user: string;
|
|
457
|
-
};
|
|
458
|
-
tls: {
|
|
459
|
-
cloudfrontDomain: string;
|
|
460
|
-
cloudfrontCertArn: string;
|
|
461
|
-
bffAlbCertificateArn: string;
|
|
462
|
-
hostedZoneId: string;
|
|
463
|
-
};
|
|
464
|
-
frontend: {
|
|
465
|
-
githubAppClientId: string;
|
|
466
|
-
githubAppName: string;
|
|
467
|
-
jiraClientId: string;
|
|
468
|
-
};
|
|
469
|
-
};
|
|
470
|
-
};
|
|
471
|
-
export declare const cliFlags: {
|
|
472
|
-
minimal: string[];
|
|
473
|
-
withFeatures: string[];
|
|
474
|
-
withCustomNetworking: string[];
|
|
475
|
-
withHub: string[];
|
|
476
|
-
};
|
|
477
|
-
//# sourceMappingURL=configs.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"configs.d.ts","sourceRoot":"","sources":["../../../../src/__tests__/integration/fixtures/configs.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsC9B,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoC3B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAc9B,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAgBQ,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0BrC,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;CAoCpB,CAAC"}
|
|
@@ -1,175 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Test configuration fixtures for integration tests
|
|
3
|
-
*/
|
|
4
|
-
export const validMinimalConfig = {
|
|
5
|
-
repository: {
|
|
6
|
-
owner: 'test-org',
|
|
7
|
-
repo: 'test-repo',
|
|
8
|
-
},
|
|
9
|
-
environmentName: 'test-env',
|
|
10
|
-
awsAccountId: '123456789012',
|
|
11
|
-
awsRegion: 'us-east-1',
|
|
12
|
-
customerRoleArn: 'arn:aws:iam::123456789012:role/GitHubActionsRole',
|
|
13
|
-
terraformStateBucket: 'test-terraform-state',
|
|
14
|
-
database: {
|
|
15
|
-
name: 'testdb',
|
|
16
|
-
user: 'testuser',
|
|
17
|
-
},
|
|
18
|
-
networking: {
|
|
19
|
-
enableVpcEndpoints: false,
|
|
20
|
-
useCustomNetworking: false,
|
|
21
|
-
},
|
|
22
|
-
security: {
|
|
23
|
-
useCustomSecurityGroups: false,
|
|
24
|
-
useCustomIamPolicies: false,
|
|
25
|
-
},
|
|
26
|
-
tls: {
|
|
27
|
-
cloudfrontDomain: 'app.test.com',
|
|
28
|
-
cloudfrontCertArn: 'arn:aws:acm:us-east-1:123456789012:certificate/test-cert',
|
|
29
|
-
bffAlbCertificateArn: 'arn:aws:acm:us-east-1:123456789012:certificate/test-alb-cert',
|
|
30
|
-
hostedZoneId: 'Z1234567890ABC',
|
|
31
|
-
},
|
|
32
|
-
features: {
|
|
33
|
-
deploySembixStudioMemory: false,
|
|
34
|
-
deploySembixStudioNotifications: false,
|
|
35
|
-
enableBffWaf: false,
|
|
36
|
-
},
|
|
37
|
-
frontend: {
|
|
38
|
-
githubAppClientId: 'Iv1.test123',
|
|
39
|
-
githubAppName: 'test-app',
|
|
40
|
-
jiraClientId: 'test-jira-123',
|
|
41
|
-
},
|
|
42
|
-
};
|
|
43
|
-
export const validFullConfig = {
|
|
44
|
-
...validMinimalConfig,
|
|
45
|
-
networking: {
|
|
46
|
-
enableVpcEndpoints: true,
|
|
47
|
-
useCustomNetworking: true,
|
|
48
|
-
customVpcId: 'vpc-1234567890abcdef',
|
|
49
|
-
customPublicSubnetIds: 'subnet-1234567890abc,subnet-1234567890def',
|
|
50
|
-
customPrivateSubnetIds: 'subnet-1234567890abc,subnet-1234567890def',
|
|
51
|
-
},
|
|
52
|
-
security: {
|
|
53
|
-
workflowRunsKeyAlias: 'test-key-alias',
|
|
54
|
-
useCustomSecurityGroups: true,
|
|
55
|
-
customSecurityGroups: {
|
|
56
|
-
workflowEngine: 'sg-1234567890abcdef',
|
|
57
|
-
aurora: 'sg-1234567890abcdef',
|
|
58
|
-
rdsProxy: 'sg-1234567890abcdef',
|
|
59
|
-
bffEcs: 'sg-1234567890abcdef',
|
|
60
|
-
bastion: 'sg-1234567890abcdef',
|
|
61
|
-
bffAlb: 'sg-1234567890abcdef',
|
|
62
|
-
},
|
|
63
|
-
useCustomIamPolicies: true,
|
|
64
|
-
customIamRoles: {
|
|
65
|
-
workflowEngineExecutionRole: 'arn:aws:iam::123456789012:role/WorkflowEngineExec',
|
|
66
|
-
workflowEngineTaskRole: 'arn:aws:iam::123456789012:role/WorkflowEngineTask',
|
|
67
|
-
bffEcsTaskExecutionRole: 'arn:aws:iam::123456789012:role/BffEcsExec',
|
|
68
|
-
bffEcsTaskRole: 'arn:aws:iam::123456789012:role/BffEcsTask',
|
|
69
|
-
rdsProxyRole: 'arn:aws:iam::123456789012:role/RdsProxy',
|
|
70
|
-
sembixStudioMemoryRole: 'arn:aws:iam::123456789012:role/StudioMemory',
|
|
71
|
-
sembixStudioNotificationRole: 'arn:aws:iam::123456789012:role/StudioNotification',
|
|
72
|
-
},
|
|
73
|
-
},
|
|
74
|
-
features: {
|
|
75
|
-
deploySembixStudioMemory: true,
|
|
76
|
-
deploySembixStudioNotifications: true,
|
|
77
|
-
enableBffWaf: true,
|
|
78
|
-
},
|
|
79
|
-
};
|
|
80
|
-
export const validConfigWithHub = {
|
|
81
|
-
...validMinimalConfig,
|
|
82
|
-
hub: {
|
|
83
|
-
hubRoles: {
|
|
84
|
-
engineExecutionRole: 'arn:aws:iam::123456789012:role/HubEngineExec',
|
|
85
|
-
consumerRole: 'arn:aws:iam::123456789012:role/HubConsumer',
|
|
86
|
-
},
|
|
87
|
-
appConfig: {
|
|
88
|
-
roleArn: 'arn:aws:iam::123456789012:role/HubAppConfig',
|
|
89
|
-
appId: 'app-test123',
|
|
90
|
-
envId: 'env-test456',
|
|
91
|
-
profileId: 'profile-test789',
|
|
92
|
-
},
|
|
93
|
-
},
|
|
94
|
-
};
|
|
95
|
-
export const invalidConfigs = {
|
|
96
|
-
invalidAwsAccountId: {
|
|
97
|
-
...validMinimalConfig,
|
|
98
|
-
awsAccountId: '12345', // too short
|
|
99
|
-
},
|
|
100
|
-
invalidEnvironmentName: {
|
|
101
|
-
...validMinimalConfig,
|
|
102
|
-
environmentName: 'INVALID_NAME', // uppercase not allowed
|
|
103
|
-
},
|
|
104
|
-
invalidIamRoleArn: {
|
|
105
|
-
...validMinimalConfig,
|
|
106
|
-
customerRoleArn: 'invalid-arn',
|
|
107
|
-
},
|
|
108
|
-
invalidRegion: {
|
|
109
|
-
...validMinimalConfig,
|
|
110
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
111
|
-
awsRegion: 'invalid-region',
|
|
112
|
-
},
|
|
113
|
-
invalidCloudfrontCert: {
|
|
114
|
-
...validMinimalConfig,
|
|
115
|
-
tls: {
|
|
116
|
-
...validMinimalConfig.tls,
|
|
117
|
-
cloudfrontCertArn: 'arn:aws:acm:us-west-2:123456789012:certificate/test', // wrong region
|
|
118
|
-
},
|
|
119
|
-
},
|
|
120
|
-
invalidSecurityGroupId: {
|
|
121
|
-
...validFullConfig,
|
|
122
|
-
security: {
|
|
123
|
-
...validFullConfig.security,
|
|
124
|
-
customSecurityGroups: {
|
|
125
|
-
...validFullConfig.security.customSecurityGroups,
|
|
126
|
-
aurora: 'invalid-sg',
|
|
127
|
-
},
|
|
128
|
-
},
|
|
129
|
-
},
|
|
130
|
-
invalidVpcId: {
|
|
131
|
-
...validFullConfig,
|
|
132
|
-
networking: {
|
|
133
|
-
...validFullConfig.networking,
|
|
134
|
-
customVpcId: 'invalid-vpc-id',
|
|
135
|
-
},
|
|
136
|
-
},
|
|
137
|
-
};
|
|
138
|
-
export const cliFlags = {
|
|
139
|
-
minimal: [
|
|
140
|
-
'--repo', 'test-org/test-repo',
|
|
141
|
-
'--aws-account-id', '123456789012',
|
|
142
|
-
'--aws-region', 'us-east-1',
|
|
143
|
-
'--customer-role-arn', 'arn:aws:iam::123456789012:role/GitHubActionsRole',
|
|
144
|
-
'--terraform-state-bucket', 'test-terraform-state',
|
|
145
|
-
'--database-name', 'testdb',
|
|
146
|
-
'--database-user', 'testuser',
|
|
147
|
-
'--cloudfront-domain', 'app.test.com',
|
|
148
|
-
'--cloudfront-cert-arn', 'arn:aws:acm:us-east-1:123456789012:certificate/test-cert',
|
|
149
|
-
'--bff-alb-cert-arn', 'arn:aws:acm:us-east-1:123456789012:certificate/test-alb-cert',
|
|
150
|
-
'--hosted-zone-id', 'Z1234567890ABC',
|
|
151
|
-
'--github-app-client-id', 'Iv1.test123',
|
|
152
|
-
'--github-app-name', 'test-app',
|
|
153
|
-
'--jira-client-id', 'test-jira-123',
|
|
154
|
-
],
|
|
155
|
-
withFeatures: [
|
|
156
|
-
'--deploy-studio-memory', 'true',
|
|
157
|
-
'--deploy-studio-notifications', 'true',
|
|
158
|
-
'--enable-bff-waf', 'true',
|
|
159
|
-
],
|
|
160
|
-
withCustomNetworking: [
|
|
161
|
-
'--use-custom-networking', 'true',
|
|
162
|
-
'--custom-vpc-id', 'vpc-1234567890abcdef',
|
|
163
|
-
'--custom-public-subnet-ids', 'subnet-1234567890abc,subnet-1234567890def',
|
|
164
|
-
'--custom-private-subnet-ids', 'subnet-1234567890ghi,subnet-1234567890jkl',
|
|
165
|
-
],
|
|
166
|
-
withHub: [
|
|
167
|
-
'--hub-engine-execution-role', 'arn:aws:iam::123456789012:role/HubEngineExec',
|
|
168
|
-
'--hub-consumer-role', 'arn:aws:iam::123456789012:role/HubConsumer',
|
|
169
|
-
'--hub-appconfig-role', 'arn:aws:iam::123456789012:role/HubAppConfig',
|
|
170
|
-
'--hub-appconfig-app-id', 'app-test123',
|
|
171
|
-
'--hub-appconfig-env-id', 'env-test456',
|
|
172
|
-
'--hub-appconfig-profile-id', 'profile-test789',
|
|
173
|
-
],
|
|
174
|
-
};
|
|
175
|
-
//# sourceMappingURL=configs.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"configs.js","sourceRoot":"","sources":["../../../../src/__tests__/integration/fixtures/configs.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,UAAU,EAAE;QACV,KAAK,EAAE,UAAU;QACjB,IAAI,EAAE,WAAW;KAClB;IACD,eAAe,EAAE,UAAU;IAC3B,YAAY,EAAE,cAAc;IAC5B,SAAS,EAAE,WAAoB;IAC/B,eAAe,EAAE,kDAAkD;IACnE,oBAAoB,EAAE,sBAAsB;IAC5C,QAAQ,EAAE;QACR,IAAI,EAAE,QAAQ;QACd,IAAI,EAAE,UAAU;KACjB;IACD,UAAU,EAAE;QACV,kBAAkB,EAAE,KAAK;QACzB,mBAAmB,EAAE,KAAK;KAC3B;IACD,QAAQ,EAAE;QACR,uBAAuB,EAAE,KAAK;QAC9B,oBAAoB,EAAE,KAAK;KAC5B;IACD,GAAG,EAAE;QACH,gBAAgB,EAAE,cAAc;QAChC,iBAAiB,EAAE,0DAA0D;QAC7E,oBAAoB,EAAE,8DAA8D;QACpF,YAAY,EAAE,gBAAgB;KAC/B;IACD,QAAQ,EAAE;QACR,wBAAwB,EAAE,KAAK;QAC/B,+BAA+B,EAAE,KAAK;QACtC,YAAY,EAAE,KAAK;KACpB;IACD,QAAQ,EAAE;QACR,iBAAiB,EAAE,aAAa;QAChC,aAAa,EAAE,UAAU;QACzB,YAAY,EAAE,eAAe;KAC9B;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,GAAG,kBAAkB;IACrB,UAAU,EAAE;QACV,kBAAkB,EAAE,IAAI;QACxB,mBAAmB,EAAE,IAAI;QACzB,WAAW,EAAE,sBAAsB;QACnC,qBAAqB,EAAE,2CAA2C;QAClE,sBAAsB,EAAE,2CAA2C;KACpE;IACD,QAAQ,EAAE;QACR,oBAAoB,EAAE,gBAAgB;QACtC,uBAAuB,EAAE,IAAI;QAC7B,oBAAoB,EAAE;YACpB,cAAc,EAAE,qBAAqB;YACrC,MAAM,EAAE,qBAAqB;YAC7B,QAAQ,EAAE,qBAAqB;YAC/B,MAAM,EAAE,qBAAqB;YAC7B,OAAO,EAAE,qBAAqB;YAC9B,MAAM,EAAE,qBAAqB;SAC9B;QACD,oBAAoB,EAAE,IAAI;QAC1B,cAAc,EAAE;YACd,2BAA2B,EAAE,mDAAmD;YAChF,sBAAsB,EAAE,mDAAmD;YAC3E,uBAAuB,EAAE,2CAA2C;YACpE,cAAc,EAAE,2CAA2C;YAC3D,YAAY,EAAE,yCAAyC;YACvD,sBAAsB,EAAE,6CAA6C;YACrE,4BAA4B,EAAE,mDAAmD;SAClF;KACF;IACD,QAAQ,EAAE;QACR,wBAAwB,EAAE,IAAI;QAC9B,+BAA+B,EAAE,IAAI;QACrC,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,GAAG,kBAAkB;IACrB,GAAG,EAAE;QACH,QAAQ,EAAE;YACR,mBAAmB,EAAE,8CAA8C;YACnE,YAAY,EAAE,4CAA4C;SAC3D;QACD,SAAS,EAAE;YACT,OAAO,EAAE,6CAA6C;YACtD,KAAK,EAAE,aAAa;YACpB,KAAK,EAAE,aAAa;YACpB,SAAS,EAAE,iBAAiB;SAC7B;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,mBAAmB,EAAE;QACnB,GAAG,kBAAkB;QACrB,YAAY,EAAE,OAAO,EAAE,YAAY;KACpC;IACD,sBAAsB,EAAE;QACtB,GAAG,kBAAkB;QACrB,eAAe,EAAE,cAAc,EAAE,wBAAwB;KAC1D;IACD,iBAAiB,EAAE;QACjB,GAAG,kBAAkB;QACrB,eAAe,EAAE,aAAa;KAC/B;IACD,aAAa,EAAE;QACb,GAAG,kBAAkB;QACrB,8DAA8D;QAC9D,SAAS,EAAE,gBAAuB;KACnC;IACD,qBAAqB,EAAE;QACrB,GAAG,kBAAkB;QACrB,GAAG,EAAE;YACH,GAAG,kBAAkB,CAAC,GAAG;YACzB,iBAAiB,EAAE,qDAAqD,EAAE,eAAe;SAC1F;KACF;IACD,sBAAsB,EAAE;QACtB,GAAG,eAAe;QAClB,QAAQ,EAAE;YACR,GAAG,eAAe,CAAC,QAAQ;YAC3B,oBAAoB,EAAE;gBACpB,GAAG,eAAe,CAAC,QAAQ,CAAC,oBAAoB;gBAChD,MAAM,EAAE,YAAY;aACrB;SACF;KACF;IACD,YAAY,EAAE;QACZ,GAAG,eAAe;QAClB,UAAU,EAAE;YACV,GAAG,eAAe,CAAC,UAAU;YAC7B,WAAW,EAAE,gBAAgB;SAC9B;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,OAAO,EAAE;QACP,QAAQ,EAAE,oBAAoB;QAC9B,kBAAkB,EAAE,cAAc;QAClC,cAAc,EAAE,WAAW;QAC3B,qBAAqB,EAAE,kDAAkD;QACzE,0BAA0B,EAAE,sBAAsB;QAClD,iBAAiB,EAAE,QAAQ;QAC3B,iBAAiB,EAAE,UAAU;QAC7B,qBAAqB,EAAE,cAAc;QACrC,uBAAuB,EAAE,0DAA0D;QACnF,oBAAoB,EAAE,8DAA8D;QACpF,kBAAkB,EAAE,gBAAgB;QACpC,wBAAwB,EAAE,aAAa;QACvC,mBAAmB,EAAE,UAAU;QAC/B,kBAAkB,EAAE,eAAe;KACpC;IACD,YAAY,EAAE;QACZ,wBAAwB,EAAE,MAAM;QAChC,+BAA+B,EAAE,MAAM;QACvC,kBAAkB,EAAE,MAAM;KAC3B;IACD,oBAAoB,EAAE;QACpB,yBAAyB,EAAE,MAAM;QACjC,iBAAiB,EAAE,sBAAsB;QACzC,4BAA4B,EAAE,2CAA2C;QACzE,6BAA6B,EAAE,2CAA2C;KAC3E;IACD,OAAO,EAAE;QACP,6BAA6B,EAAE,8CAA8C;QAC7E,qBAAqB,EAAE,4CAA4C;QACnE,sBAAsB,EAAE,6CAA6C;QACrE,wBAAwB,EAAE,aAAa;QACvC,wBAAwB,EAAE,aAAa;QACvC,4BAA4B,EAAE,iBAAiB;KAChD;CACF,CAAC"}
|