@aws/mynah-ui 1.3.2 → 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/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/static.d.ts +10 -2
- package/package.json +2 -2
package/dist/static.d.ts
CHANGED
|
@@ -67,9 +67,15 @@ export interface SearchPayloadCodeSelection {
|
|
|
67
67
|
name: string;
|
|
68
68
|
};
|
|
69
69
|
}
|
|
70
|
+
export interface FullyQualifiedName {
|
|
71
|
+
source: string[];
|
|
72
|
+
symbol: string[];
|
|
73
|
+
}
|
|
70
74
|
export interface SearchPayloadCodeQuery {
|
|
71
75
|
simpleNames: string[];
|
|
72
|
-
|
|
76
|
+
fullyQualifiedNames: {
|
|
77
|
+
used: FullyQualifiedName[];
|
|
78
|
+
};
|
|
73
79
|
}
|
|
74
80
|
export interface SearchPayload {
|
|
75
81
|
query: string;
|
|
@@ -181,7 +187,9 @@ export interface SearchHistoryFilters {
|
|
|
181
187
|
}
|
|
182
188
|
export interface CodeQuery {
|
|
183
189
|
simpleNames: string[];
|
|
184
|
-
|
|
190
|
+
fullyQualifiedNames: {
|
|
191
|
+
used: FullyQualifiedName[];
|
|
192
|
+
};
|
|
185
193
|
}
|
|
186
194
|
export declare enum ContextChangeType {
|
|
187
195
|
'ADD' = "add",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws/mynah-ui",
|
|
3
3
|
"displayName": "AWS Mynah UI",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"description": "AWS Tookit VSCode and Intellij IDE Extension Mynah UI",
|
|
6
6
|
"publisher": "Amazon Web Services",
|
|
7
7
|
"license": "Apache License 2.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"ts-loader": "9.2.6",
|
|
47
47
|
"ts-node": "10.4.0",
|
|
48
48
|
"typescript": "4.5.2",
|
|
49
|
-
"webpack": "5.
|
|
49
|
+
"webpack": "5.76.0",
|
|
50
50
|
"webpack-cli": "4.7.2"
|
|
51
51
|
},
|
|
52
52
|
"prettier": {
|