@aws/nx-plugin 0.18.2 → 0.18.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/package.json +1 -1
- package/src/open-api/ts-hooks/__snapshots__/generator.spec.tsx.snap +14 -18
- package/src/open-api/ts-hooks/files/options-proxy.gen.ts.template +1 -1
- package/src/utils/__snapshots__/shared-constructs.spec.ts.snap +1 -1
- package/src/utils/files/common/constructs/src/core/app.ts.template +1 -1
- package/src/utils/versions.d.ts +2 -2
- package/src/utils/versions.js +1 -1
- package/src/utils/versions.js.map +1 -1
package/package.json
CHANGED
|
@@ -98,9 +98,7 @@ export class TestApiOptionsProxy {
|
|
|
98
98
|
...options,
|
|
99
99
|
};
|
|
100
100
|
}
|
|
101
|
-
private _getTestQueryFilter(
|
|
102
|
-
filter?: QueryFilters<GetTest200Response, GetTestError>,
|
|
103
|
-
): QueryFilters<GetTest200Response, GetTestError> {
|
|
101
|
+
private _getTestQueryFilter(filter?: QueryFilters): QueryFilters {
|
|
104
102
|
return {
|
|
105
103
|
queryKey: this._getTestQueryKey(),
|
|
106
104
|
...filter,
|
|
@@ -173,8 +171,8 @@ export class TestApiOptionsProxy {
|
|
|
173
171
|
}
|
|
174
172
|
private _getItemsQueryFilter(
|
|
175
173
|
input: GetItemsRequest,
|
|
176
|
-
filter?: QueryFilters
|
|
177
|
-
): QueryFilters
|
|
174
|
+
filter?: QueryFilters,
|
|
175
|
+
): QueryFilters {
|
|
178
176
|
return {
|
|
179
177
|
queryKey: this._getItemsQueryKey(input),
|
|
180
178
|
...filter,
|
|
@@ -338,8 +336,8 @@ export class TestApiOptionsProxy {
|
|
|
338
336
|
}
|
|
339
337
|
private _searchDataQueryFilter(
|
|
340
338
|
input: SearchDataRequest,
|
|
341
|
-
filter?: QueryFilters
|
|
342
|
-
): QueryFilters
|
|
339
|
+
filter?: QueryFilters,
|
|
340
|
+
): QueryFilters {
|
|
343
341
|
return {
|
|
344
342
|
queryKey: this._searchDataQueryKey(input),
|
|
345
343
|
...filter,
|
|
@@ -412,8 +410,8 @@ export class TestApiOptionsProxy {
|
|
|
412
410
|
}
|
|
413
411
|
private _getItemsQueryFilter(
|
|
414
412
|
input: GetItemsRequest,
|
|
415
|
-
filter?: QueryFilters
|
|
416
|
-
): QueryFilters
|
|
413
|
+
filter?: QueryFilters,
|
|
414
|
+
): QueryFilters {
|
|
417
415
|
return {
|
|
418
416
|
queryKey: this._getItemsQueryKey(input),
|
|
419
417
|
...filter,
|
|
@@ -529,8 +527,8 @@ export class TestApiOptionsProxy {
|
|
|
529
527
|
}
|
|
530
528
|
private _listRecordsQueryFilter(
|
|
531
529
|
input: ListRecordsRequest,
|
|
532
|
-
filter?: QueryFilters
|
|
533
|
-
): QueryFilters
|
|
530
|
+
filter?: QueryFilters,
|
|
531
|
+
): QueryFilters {
|
|
534
532
|
return {
|
|
535
533
|
queryKey: this._listRecordsQueryKey(input),
|
|
536
534
|
...filter,
|
|
@@ -687,9 +685,7 @@ export class TestApiOptionsProxy {
|
|
|
687
685
|
...options,
|
|
688
686
|
};
|
|
689
687
|
}
|
|
690
|
-
private _getErrorQueryFilter(
|
|
691
|
-
filter?: QueryFilters<GetError200Response, GetErrorError>,
|
|
692
|
-
): QueryFilters<GetError200Response, GetErrorError> {
|
|
688
|
+
private _getErrorQueryFilter(filter?: QueryFilters): QueryFilters {
|
|
693
689
|
return {
|
|
694
690
|
queryKey: this._getErrorQueryKey(),
|
|
695
691
|
...filter,
|
|
@@ -809,8 +805,8 @@ export class TestApiOptionsProxy {
|
|
|
809
805
|
}
|
|
810
806
|
private _streamLogsQueryFilter(
|
|
811
807
|
input: StreamLogsRequest,
|
|
812
|
-
filter?: QueryFilters
|
|
813
|
-
): QueryFilters
|
|
808
|
+
filter?: QueryFilters,
|
|
809
|
+
): QueryFilters {
|
|
814
810
|
return {
|
|
815
811
|
queryKey: this._streamLogsQueryKey(input),
|
|
816
812
|
...filter,
|
|
@@ -1074,8 +1070,8 @@ export class TestApiOptionsProxy {
|
|
|
1074
1070
|
}
|
|
1075
1071
|
private _streamEventsQueryFilter(
|
|
1076
1072
|
input: StreamEventsRequest,
|
|
1077
|
-
filter?: QueryFilters
|
|
1078
|
-
): QueryFilters
|
|
1073
|
+
filter?: QueryFilters,
|
|
1074
|
+
): QueryFilters {
|
|
1079
1075
|
return {
|
|
1080
1076
|
queryKey: this._streamEventsQueryKey(input),
|
|
1081
1077
|
...filter,
|
|
@@ -133,7 +133,7 @@ export class <%- className %>OptionsProxy {
|
|
|
133
133
|
...options,
|
|
134
134
|
};
|
|
135
135
|
}
|
|
136
|
-
private _<%- op.uniqueName %>QueryFilter(<%- input %><% if (op.parameters.length > 0) { %>, <% } %>filter?: QueryFilters
|
|
136
|
+
private _<%- op.uniqueName %>QueryFilter(<%- input %><% if (op.parameters.length > 0) { %>, <% } %>filter?: QueryFilters): QueryFilters {
|
|
137
137
|
return {
|
|
138
138
|
queryKey: this._<%- op.uniqueName %>QueryKey(<% if (op.parameters.length > 0) { %>input<% } %>),
|
|
139
139
|
...filter,
|
|
@@ -24,7 +24,7 @@ class MetricsAspect implements IAspect {
|
|
|
24
24
|
const version = '';
|
|
25
25
|
const tags: string[] = [];
|
|
26
26
|
node.templateOptions.description =
|
|
27
|
-
\`\${node.templateOptions.description ?? ''} (\${id}) (version:\${version}) (
|
|
27
|
+
\`\${node.templateOptions.description ?? ''} (\${id}) (version:\${version}) (tag:\${tags.join(',')})\`.trim();
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -18,7 +18,7 @@ class MetricsAspect implements IAspect {
|
|
|
18
18
|
const id = '';
|
|
19
19
|
const version = '';
|
|
20
20
|
const tags: string[] = [];
|
|
21
|
-
node.templateOptions.description = `${node.templateOptions.description ?? ''} (${id}) (version:${version}) (
|
|
21
|
+
node.templateOptions.description = `${node.templateOptions.description ?? ''} (${id}) (version:${version}) (tag:${tags.join(',')})`.trim();
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
}
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export declare const VERSIONS: {
|
|
|
17
17
|
readonly '@cloudscape-design/board-components': "^3.0.94";
|
|
18
18
|
readonly '@cloudscape-design/components': "^3.0.928";
|
|
19
19
|
readonly '@cloudscape-design/global-styles': "^1.0.38";
|
|
20
|
-
readonly '@tanstack/react-query': "5.74.
|
|
20
|
+
readonly '@tanstack/react-query': "^5.74.3";
|
|
21
21
|
readonly '@trpc/tanstack-react-query': "11.0.0";
|
|
22
22
|
readonly '@trpc/client': "11.0.0";
|
|
23
23
|
readonly '@trpc/server': "11.0.0";
|
|
@@ -44,5 +44,5 @@ export declare const VERSIONS: {
|
|
|
44
44
|
* Add versions to the given dependencies
|
|
45
45
|
*/
|
|
46
46
|
export declare const withVersions: (deps: (keyof typeof VERSIONS)[]) => {
|
|
47
|
-
[k: string]: "^0.0.60" | "^2.185.0-alpha.0" | "^3.775.0" | "^2.17.0" | "^20.12.0" | "^1.114.27" | "^3.0.94" | "^3.0.928" | "^1.0.38" | "5.74.
|
|
47
|
+
[k: string]: "^0.0.60" | "^2.185.0-alpha.0" | "^3.775.0" | "^2.17.0" | "^20.12.0" | "^1.114.27" | "^3.0.94" | "^3.0.928" | "^1.0.38" | "^5.74.3" | "11.0.0" | "^22.13.13" | "^8.10.148" | "^4.2.0" | "^1.0.20" | "^2.1006.0" | "^2.185.0" | "^3.10.3" | "^10.4.2" | "^0.25.1" | "^5.2.5" | "^2.4.0" | "^3.2.0" | "^3.5.3" | "^0.5.21" | "^4.19.3" | "^5.1.4" | "^3.24.2";
|
|
48
48
|
};
|
package/src/utils/versions.js
CHANGED
|
@@ -20,7 +20,7 @@ exports.VERSIONS = {
|
|
|
20
20
|
'@cloudscape-design/board-components': '^3.0.94',
|
|
21
21
|
'@cloudscape-design/components': '^3.0.928',
|
|
22
22
|
'@cloudscape-design/global-styles': '^1.0.38',
|
|
23
|
-
'@tanstack/react-query': '5.74.
|
|
23
|
+
'@tanstack/react-query': '^5.74.3',
|
|
24
24
|
'@trpc/tanstack-react-query': '11.0.0',
|
|
25
25
|
'@trpc/client': '11.0.0',
|
|
26
26
|
'@trpc/server': '11.0.0',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACU,QAAA,QAAQ,GAAG;IACtB,iCAAiC,EAAE,SAAS;IAC5C,yCAAyC,EAAE,kBAAkB;IAC7D,kCAAkC,EAAE,UAAU;IAC9C,+BAA+B,EAAE,UAAU;IAC3C,+CAA+C,EAAE,UAAU;IAC3D,+BAA+B,EAAE,SAAS;IAC1C,gCAAgC,EAAE,SAAS;IAC3C,+BAA+B,EAAE,SAAS;IAC1C,cAAc,EAAE,UAAU;IAC1B,wBAAwB,EAAE,WAAW;IACrC,yBAAyB,EAAE,WAAW;IACtC,qCAAqC,EAAE,SAAS;IAChD,+BAA+B,EAAE,UAAU;IAC3C,kCAAkC,EAAE,SAAS;IAC7C,uBAAuB,EAAE,
|
|
1
|
+
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACU,QAAA,QAAQ,GAAG;IACtB,iCAAiC,EAAE,SAAS;IAC5C,yCAAyC,EAAE,kBAAkB;IAC7D,kCAAkC,EAAE,UAAU;IAC9C,+BAA+B,EAAE,UAAU;IAC3C,+CAA+C,EAAE,UAAU;IAC3D,+BAA+B,EAAE,SAAS;IAC1C,gCAAgC,EAAE,SAAS;IAC3C,+BAA+B,EAAE,SAAS;IAC1C,cAAc,EAAE,UAAU;IAC1B,wBAAwB,EAAE,WAAW;IACrC,yBAAyB,EAAE,WAAW;IACtC,qCAAqC,EAAE,SAAS;IAChD,+BAA+B,EAAE,UAAU;IAC3C,kCAAkC,EAAE,SAAS;IAC7C,uBAAuB,EAAE,SAAS;IAClC,4BAA4B,EAAE,QAAQ;IACtC,cAAc,EAAE,QAAQ;IACxB,cAAc,EAAE,QAAQ;IACxB,aAAa,EAAE,WAAW;IAC1B,mBAAmB,EAAE,WAAW;IAChC,eAAe,EAAE,QAAQ;IACzB,SAAS,EAAE,SAAS;IACpB,SAAS,EAAE,WAAW;IACtB,aAAa,EAAE,UAAU;IACzB,mBAAmB,EAAE,SAAS;IAC9B,UAAU,EAAE,SAAS;IACrB,OAAO,EAAE,SAAS;IAClB,wBAAwB,EAAE,QAAQ;IAClC,qBAAqB,EAAE,QAAQ;IAC/B,gBAAgB,EAAE,QAAQ;IAC1B,QAAQ,EAAE,QAAQ;IAClB,oBAAoB,EAAE,QAAQ;IAC9B,oBAAoB,EAAE,SAAS;IAC/B,GAAG,EAAE,SAAS;IACd,qBAAqB,EAAE,QAAQ;IAC/B,GAAG,EAAE,SAAS;CACN,CAAC;AAEX;;GAEG;AACI,MAAM,YAAY,GAAG,CAAC,IAA+B,EAAE,EAAE,CAC9D,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,GAAG,EAAE,gBAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;AADjD,QAAA,YAAY,gBACqC"}
|