@cdk8s/awscdk-resolver 0.0.543 → 0.0.545

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.
Files changed (110) hide show
  1. package/.jsii +3 -3
  2. package/lib/resolve.js +1 -1
  3. package/node_modules/@aws-sdk/client-cloudformation/package.json +14 -14
  4. package/node_modules/@aws-sdk/core/package.json +5 -5
  5. package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
  6. package/node_modules/@aws-sdk/credential-provider-http/package.json +5 -5
  7. package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
  8. package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
  9. package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
  10. package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
  11. package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
  12. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
  13. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +5 -5
  14. package/node_modules/@aws-sdk/middleware-user-agent/package.json +4 -4
  15. package/node_modules/@aws-sdk/nested-clients/package.json +14 -14
  16. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +2 -2
  17. package/node_modules/@aws-sdk/token-providers/package.json +3 -3
  18. package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
  19. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +0 -2
  20. package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +0 -2
  21. package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
  22. package/node_modules/@nodable/entities/README.md +41 -0
  23. package/node_modules/@nodable/entities/package.json +54 -0
  24. package/node_modules/@nodable/entities/src/EntityDecoder.js +543 -0
  25. package/node_modules/@nodable/entities/src/EntityEncoder.js +194 -0
  26. package/node_modules/@nodable/entities/src/entities.js +1177 -0
  27. package/node_modules/@nodable/entities/src/entityTries.js +49 -0
  28. package/node_modules/@nodable/entities/src/index.d.ts +264 -0
  29. package/node_modules/@nodable/entities/src/index.js +29 -0
  30. package/node_modules/@smithy/core/package.json +2 -2
  31. package/node_modules/@smithy/middleware-endpoint/package.json +3 -3
  32. package/node_modules/@smithy/middleware-retry/package.json +4 -4
  33. package/node_modules/@smithy/middleware-serde/package.json +2 -2
  34. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +27 -16
  35. package/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +5 -0
  36. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +22 -16
  37. package/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +4 -0
  38. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +2 -4
  39. package/node_modules/@smithy/node-http-handler/package.json +1 -1
  40. package/node_modules/@smithy/smithy-client/package.json +4 -4
  41. package/node_modules/@smithy/util-defaults-mode-browser/package.json +2 -2
  42. package/node_modules/@smithy/util-defaults-mode-node/package.json +2 -2
  43. package/node_modules/@smithy/util-retry/dist-cjs/index.js +20 -10
  44. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +20 -10
  45. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +12 -4
  46. package/node_modules/@smithy/util-retry/package.json +1 -1
  47. package/node_modules/@smithy/util-stream/package.json +2 -2
  48. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/CHANGELOG.md +53 -0
  49. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/README.md +8 -28
  50. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
  51. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -0
  52. package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
  53. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxp.d.cts +172 -6
  54. package/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
  55. package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -0
  56. package/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
  57. package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -0
  58. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/package.json +5 -4
  59. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/fxp.d.ts +162 -3
  60. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/DocTypeReader.js +2 -5
  61. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/OptionsBuilder.js +15 -11
  62. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/OrderedObjParser.js +168 -244
  63. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/XMLParser.js +1 -1
  64. package/package.json +6 -6
  65. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js +0 -2
  66. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +0 -1
  67. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.cjs +0 -1
  68. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js +0 -2
  69. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js.map +0 -1
  70. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js +0 -2
  71. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js.map +0 -1
  72. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/pem.d.cts +0 -148
  73. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/pem.d.ts +0 -135
  74. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/LICENSE +0 -0
  75. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxvalidator.min.js +0 -0
  76. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxvalidator.min.js.map +0 -0
  77. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/cli.js +0 -0
  78. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/man.js +0 -0
  79. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/read.js +0 -0
  80. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/fxp.js +0 -0
  81. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/ignoreAttributes.js +0 -0
  82. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/util.js +0 -0
  83. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/CharsSymbol.js +0 -0
  84. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/EntitiesParser.js +0 -0
  85. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OptionsBuilder.js +0 -0
  86. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -0
  87. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsArrBuilder.js +0 -0
  88. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -0
  89. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsObjBuilder.js +0 -0
  90. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -0
  91. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/Report.js +0 -0
  92. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/TagPath.js +0 -0
  93. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/TagPathMatcher.js +0 -0
  94. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XMLParser.js +0 -0
  95. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/Xml2JsParser.js +0 -0
  96. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XmlPartReader.js +0 -0
  97. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XmlSpecialTagsReader.js +0 -0
  98. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/inputSource/BufferSource.js +0 -0
  99. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/inputSource/StringSource.js +0 -0
  100. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/EntitiesParser.js +0 -0
  101. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/booleanParser.js +0 -0
  102. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/booleanParserExt.js +0 -0
  103. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/currency.js +0 -0
  104. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/join.js +0 -0
  105. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/number.js +0 -0
  106. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/trim.js +0 -0
  107. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/validator.js +0 -0
  108. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlbuilder/json2xml.js +0 -0
  109. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/node2json.js +0 -0
  110. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/xmlNode.js +0 -0
@@ -1,148 +0,0 @@
1
- /**
2
- * Types copied from path-expression-matcher
3
- * @version <version>
4
- * @updated <date>
5
- *
6
- * Update this file when path-expression-matcher releases a new version.
7
- * Source: https://github.com/NaturalIntelligence/path-expression-matcher
8
- */
9
-
10
- /**
11
- * Options for creating an Expression
12
- */
13
- interface ExpressionOptions {
14
- /**
15
- * Path separator character
16
- * @default '.'
17
- */
18
- separator?: string;
19
- }
20
-
21
- /**
22
- * Parsed segment from an expression pattern
23
- */
24
- interface Segment {
25
- type: 'tag' | 'deep-wildcard';
26
- tag?: string;
27
- namespace?: string;
28
- attrName?: string;
29
- attrValue?: string;
30
- position?: 'first' | 'last' | 'odd' | 'even' | 'nth';
31
- positionValue?: number;
32
- }
33
-
34
- /**
35
- * Expression - Parses and stores a tag pattern expression.
36
- * Patterns are parsed once and stored in an optimized structure for fast matching.
37
- *
38
- * @example
39
- * ```typescript
40
- * const expr = new Expression("root.users.user");
41
- * const expr2 = new Expression("..user[id]:first");
42
- * const expr3 = new Expression("root/users/user", { separator: '/' });
43
- * ```
44
- *
45
- * Pattern Syntax:
46
- * - `root.users.user` — Match exact path
47
- * - `..user` — Match "user" at any depth (deep wildcard)
48
- * - `user[id]` — Match user tag with "id" attribute
49
- * - `user[id=123]` — Match user tag where id="123"
50
- * - `user:first` — Match first occurrence of user tag
51
- * - `ns::user` — Match user tag with namespace "ns"
52
- * - `ns::user[id]:first` — Combine namespace, attribute, and position
53
- */
54
- declare class Expression {
55
- readonly pattern: string;
56
- readonly separator: string;
57
- readonly segments: Segment[];
58
-
59
- constructor(pattern: string, options?: ExpressionOptions);
60
-
61
- get length(): number;
62
- hasDeepWildcard(): boolean;
63
- hasAttributeCondition(): boolean;
64
- hasPositionSelector(): boolean;
65
- toString(): string;
66
- }
67
-
68
- // ---------------------------------------------------------------------------
69
- // ReadonlyMatcher
70
- // ---------------------------------------------------------------------------
71
-
72
- /**
73
- * A live read-only view of a Matcher instance, returned by Matcher.readOnly().
74
- *
75
- * All query and inspection methods work normally and always reflect the current
76
- * state of the underlying matcher. State-mutating methods (`push`, `pop`,
77
- * `reset`, `updateCurrent`, `restore`) are not present — calling them on the
78
- * underlying Proxy throws a `TypeError` at runtime.
79
- *
80
- * This is the type received by all FXP user callbacks when `jPath: false`.
81
- */
82
- interface ReadonlyMatcher {
83
- readonly separator: string;
84
-
85
- /** Check if current path matches an Expression. */
86
- matches(expression: Expression): boolean;
87
-
88
- /** Get current tag name, or `undefined` if path is empty. */
89
- getCurrentTag(): string | undefined;
90
-
91
- /** Get current namespace, or `undefined` if not present. */
92
- getCurrentNamespace(): string | undefined;
93
-
94
- /** Get attribute value of the current node. */
95
- getAttrValue(attrName: string): any;
96
-
97
- /** Check if the current node has a given attribute. */
98
- hasAttr(attrName: string): boolean;
99
-
100
- /** Sibling position of the current node (child index in parent). */
101
- getPosition(): number;
102
-
103
- /** Occurrence counter of the current tag name at this level. */
104
- getCounter(): number;
105
-
106
- /** Number of nodes in the current path. */
107
- getDepth(): number;
108
-
109
- /** Current path as a string (e.g. `"root.users.user"`). */
110
- toString(separator?: string, includeNamespace?: boolean): string;
111
-
112
- /** Current path as an array of tag names. */
113
- toArray(): string[];
114
-
115
- /**
116
- * Create a snapshot of the current state.
117
- * The snapshot can be passed to the real Matcher.restore() if needed.
118
- */
119
- snapshot(): MatcherSnapshot;
120
- }
121
-
122
- /** Internal node structure — exposed via snapshot only. */
123
- interface PathNode {
124
- tag: string;
125
- namespace?: string;
126
- position: number;
127
- counter: number;
128
- values?: Record<string, any>;
129
- }
130
-
131
- /** Snapshot of matcher state returned by `snapshot()` and `readOnly().snapshot()`. */
132
- interface MatcherSnapshot {
133
- path: PathNode[];
134
- siblingStacks: Map<string, number>[];
135
- }
136
-
137
- declare namespace pem {
138
- export {
139
- Expression,
140
- ExpressionOptions,
141
- Segment,
142
- ReadonlyMatcher,
143
- PathNode,
144
- MatcherSnapshot,
145
- }
146
- }
147
-
148
- export = pem;
@@ -1,135 +0,0 @@
1
- /**
2
- * Types copied from path-expression-matcher
3
- * @version <version>
4
- * @updated <date>
5
- *
6
- * Update this file when path-expression-matcher releases a new version.
7
- * Source: https://github.com/NaturalIntelligence/path-expression-matcher
8
- */
9
-
10
- /**
11
- * Options for creating an Expression
12
- */
13
- export interface ExpressionOptions {
14
- /**
15
- * Path separator character
16
- * @default '.'
17
- */
18
- separator?: string;
19
- }
20
-
21
- /**
22
- * Parsed segment from an expression pattern
23
- */
24
- export interface Segment {
25
- type: 'tag' | 'deep-wildcard';
26
- tag?: string;
27
- namespace?: string;
28
- attrName?: string;
29
- attrValue?: string;
30
- position?: 'first' | 'last' | 'odd' | 'even' | 'nth';
31
- positionValue?: number;
32
- }
33
-
34
- /**
35
- * Expression - Parses and stores a tag pattern expression.
36
- * Patterns are parsed once and stored in an optimized structure for fast matching.
37
- *
38
- * @example
39
- * ```typescript
40
- * const expr = new Expression("root.users.user");
41
- * const expr2 = new Expression("..user[id]:first");
42
- * const expr3 = new Expression("root/users/user", { separator: '/' });
43
- * ```
44
- *
45
- * Pattern Syntax:
46
- * - `root.users.user` — Match exact path
47
- * - `..user` — Match "user" at any depth (deep wildcard)
48
- * - `user[id]` — Match user tag with "id" attribute
49
- * - `user[id=123]` — Match user tag where id="123"
50
- * - `user:first` — Match first occurrence of user tag
51
- * - `ns::user` — Match user tag with namespace "ns"
52
- * - `ns::user[id]:first` — Combine namespace, attribute, and position
53
- */
54
- export class Expression {
55
- readonly pattern: string;
56
- readonly separator: string;
57
- readonly segments: Segment[];
58
-
59
- constructor(pattern: string, options?: ExpressionOptions);
60
-
61
- get length(): number;
62
- hasDeepWildcard(): boolean;
63
- hasAttributeCondition(): boolean;
64
- hasPositionSelector(): boolean;
65
- toString(): string;
66
- }
67
-
68
- // ---------------------------------------------------------------------------
69
- // ReadonlyMatcher
70
- // ---------------------------------------------------------------------------
71
-
72
- /**
73
- * A live read-only view of a {@link Matcher} instance, returned by {@link Matcher.readOnly}.
74
- *
75
- * All query and inspection methods work normally and always reflect the current
76
- * state of the underlying matcher. State-mutating methods (`push`, `pop`,
77
- * `reset`, `updateCurrent`, `restore`) are not present — calling them on the
78
- * underlying Proxy throws a `TypeError` at runtime.
79
- *
80
- * This is the type received by all FXP user callbacks when `jPath: false`.
81
- */
82
- export interface ReadonlyMatcher {
83
- readonly separator: string;
84
-
85
- /** Check if current path matches an Expression. */
86
- matches(expression: Expression): boolean;
87
-
88
- /** Get current tag name, or `undefined` if path is empty. */
89
- getCurrentTag(): string | undefined;
90
-
91
- /** Get current namespace, or `undefined` if not present. */
92
- getCurrentNamespace(): string | undefined;
93
-
94
- /** Get attribute value of the current node. */
95
- getAttrValue(attrName: string): any;
96
-
97
- /** Check if the current node has a given attribute. */
98
- hasAttr(attrName: string): boolean;
99
-
100
- /** Sibling position of the current node (child index in parent). */
101
- getPosition(): number;
102
-
103
- /** Occurrence counter of the current tag name at this level. */
104
- getCounter(): number;
105
-
106
- /** Number of nodes in the current path. */
107
- getDepth(): number;
108
-
109
- /** Current path as a string (e.g. `"root.users.user"`). */
110
- toString(separator?: string, includeNamespace?: boolean): string;
111
-
112
- /** Current path as an array of tag names. */
113
- toArray(): string[];
114
-
115
- /**
116
- * Create a snapshot of the current state.
117
- * The snapshot can be passed to the real {@link Matcher.restore} if needed.
118
- */
119
- snapshot(): MatcherSnapshot;
120
- }
121
-
122
- /** Internal node structure — exposed via snapshot only. */
123
- export interface PathNode {
124
- tag: string;
125
- namespace?: string;
126
- position: number;
127
- counter: number;
128
- values?: Record<string, any>;
129
- }
130
-
131
- /** Snapshot of matcher state returned by `snapshot()` and `readOnly().snapshot()`. */
132
- export interface MatcherSnapshot {
133
- path: PathNode[];
134
- siblingStacks: Map<string, number>[];
135
- }