bigal 15.11.7 → 15.11.9
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/.devcontainer/devcontainer.json +1 -1
- package/CHANGELOG.md +9 -1
- package/dist/index.cjs +18 -17
- package/dist/index.mjs +18 -17
- package/docs/package-lock.json +282 -282
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
|
+
## [15.11.9](https://github.com/bigalorm/bigal/compare/v15.11.8...v15.11.9) (2026-05-19)
|
|
2
|
+
|
|
3
|
+
## [15.11.8](https://github.com/bigalorm/bigal/compare/v15.11.7...v15.11.8) (2026-05-19)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- prevent propertyName leak across where-clause iteration ([#403](https://github.com/bigalorm/bigal/issues/403)) ([0454e84](https://github.com/bigalorm/bigal/commit/0454e84d4c6fdf46fc14bdcf57ab409619ea8a03)), closes [#393](https://github.com/bigalorm/bigal/issues/393)
|
|
8
|
+
|
|
1
9
|
## [15.11.7](https://github.com/bigalorm/bigal/compare/v15.11.6...v15.11.7) (2026-04-26)
|
|
2
10
|
|
|
3
11
|
### Bug Fixes
|
|
4
12
|
|
|
5
|
-
|
|
13
|
+
- Return Pick<QueryResult<T>> from chained .select() ([#390](https://github.com/bigalorm/bigal/issues/390)) ([89780a4](https://github.com/bigalorm/bigal/commit/89780a4068c312fcf59b8598eb35792e3b498918))
|
|
6
14
|
|
|
7
15
|
## [15.11.6](https://github.com/bigalorm/bigal/compare/v15.11.5...v15.11.6) (2026-04-07)
|
|
8
16
|
|
package/dist/index.cjs
CHANGED
|
@@ -1737,31 +1737,32 @@ function buildWhere({
|
|
|
1737
1737
|
}
|
|
1738
1738
|
}
|
|
1739
1739
|
let subQueryComparer;
|
|
1740
|
+
let iterationPropertyName = propertyName;
|
|
1740
1741
|
if (isComparer(key)) {
|
|
1741
1742
|
subQueryComparer = key;
|
|
1742
|
-
} else if (propertyName) {
|
|
1743
|
-
const parentColumn = model.columnsByPropertyName[propertyName];
|
|
1744
|
-
if (parentColumn?.type?.toLowerCase() === "json") {
|
|
1745
|
-
andValues.push(
|
|
1746
|
-
buildJsonPropertyClause({
|
|
1747
|
-
columnName: parentColumn.name,
|
|
1748
|
-
path: [key],
|
|
1749
|
-
isNegated,
|
|
1750
|
-
constraint: where,
|
|
1751
|
-
params
|
|
1752
|
-
})
|
|
1753
|
-
);
|
|
1754
|
-
continue;
|
|
1755
|
-
}
|
|
1756
|
-
propertyName = key;
|
|
1757
1743
|
} else {
|
|
1758
|
-
propertyName
|
|
1744
|
+
if (propertyName) {
|
|
1745
|
+
const parentColumn = model.columnsByPropertyName[propertyName];
|
|
1746
|
+
if (parentColumn?.type?.toLowerCase() === "json") {
|
|
1747
|
+
andValues.push(
|
|
1748
|
+
buildJsonPropertyClause({
|
|
1749
|
+
columnName: parentColumn.name,
|
|
1750
|
+
path: [key],
|
|
1751
|
+
isNegated,
|
|
1752
|
+
constraint: where,
|
|
1753
|
+
params
|
|
1754
|
+
})
|
|
1755
|
+
);
|
|
1756
|
+
continue;
|
|
1757
|
+
}
|
|
1758
|
+
}
|
|
1759
|
+
iterationPropertyName = key;
|
|
1759
1760
|
}
|
|
1760
1761
|
andValues.push(
|
|
1761
1762
|
buildWhere({
|
|
1762
1763
|
repositoriesByModelNameLowered,
|
|
1763
1764
|
model,
|
|
1764
|
-
propertyName,
|
|
1765
|
+
propertyName: iterationPropertyName,
|
|
1765
1766
|
comparer: subQueryComparer,
|
|
1766
1767
|
isNegated,
|
|
1767
1768
|
value: where,
|
package/dist/index.mjs
CHANGED
|
@@ -1735,31 +1735,32 @@ function buildWhere({
|
|
|
1735
1735
|
}
|
|
1736
1736
|
}
|
|
1737
1737
|
let subQueryComparer;
|
|
1738
|
+
let iterationPropertyName = propertyName;
|
|
1738
1739
|
if (isComparer(key)) {
|
|
1739
1740
|
subQueryComparer = key;
|
|
1740
|
-
} else if (propertyName) {
|
|
1741
|
-
const parentColumn = model.columnsByPropertyName[propertyName];
|
|
1742
|
-
if (parentColumn?.type?.toLowerCase() === "json") {
|
|
1743
|
-
andValues.push(
|
|
1744
|
-
buildJsonPropertyClause({
|
|
1745
|
-
columnName: parentColumn.name,
|
|
1746
|
-
path: [key],
|
|
1747
|
-
isNegated,
|
|
1748
|
-
constraint: where,
|
|
1749
|
-
params
|
|
1750
|
-
})
|
|
1751
|
-
);
|
|
1752
|
-
continue;
|
|
1753
|
-
}
|
|
1754
|
-
propertyName = key;
|
|
1755
1741
|
} else {
|
|
1756
|
-
propertyName
|
|
1742
|
+
if (propertyName) {
|
|
1743
|
+
const parentColumn = model.columnsByPropertyName[propertyName];
|
|
1744
|
+
if (parentColumn?.type?.toLowerCase() === "json") {
|
|
1745
|
+
andValues.push(
|
|
1746
|
+
buildJsonPropertyClause({
|
|
1747
|
+
columnName: parentColumn.name,
|
|
1748
|
+
path: [key],
|
|
1749
|
+
isNegated,
|
|
1750
|
+
constraint: where,
|
|
1751
|
+
params
|
|
1752
|
+
})
|
|
1753
|
+
);
|
|
1754
|
+
continue;
|
|
1755
|
+
}
|
|
1756
|
+
}
|
|
1757
|
+
iterationPropertyName = key;
|
|
1757
1758
|
}
|
|
1758
1759
|
andValues.push(
|
|
1759
1760
|
buildWhere({
|
|
1760
1761
|
repositoriesByModelNameLowered,
|
|
1761
1762
|
model,
|
|
1762
|
-
propertyName,
|
|
1763
|
+
propertyName: iterationPropertyName,
|
|
1763
1764
|
comparer: subQueryComparer,
|
|
1764
1765
|
isNegated,
|
|
1765
1766
|
value: where,
|
package/docs/package-lock.json
CHANGED
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"node_modules/@algolia/abtesting": {
|
|
14
|
-
"version": "1.
|
|
15
|
-
"resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.
|
|
16
|
-
"integrity": "sha512-
|
|
14
|
+
"version": "1.18.1",
|
|
15
|
+
"resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.18.1.tgz",
|
|
16
|
+
"integrity": "sha512-aehCadlWOGvrT91KUIZpC0MbB8KBW9yUuvTJFd2xesR7le/IsT4nJUnjCCZ4ZqZCeTcPHPV5mo//fZ5oxcSVYw==",
|
|
17
17
|
"dev": true,
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@algolia/client-common": "5.
|
|
21
|
-
"@algolia/requester-browser-xhr": "5.
|
|
22
|
-
"@algolia/requester-fetch": "5.
|
|
23
|
-
"@algolia/requester-node-http": "5.
|
|
20
|
+
"@algolia/client-common": "5.52.1",
|
|
21
|
+
"@algolia/requester-browser-xhr": "5.52.1",
|
|
22
|
+
"@algolia/requester-fetch": "5.52.1",
|
|
23
|
+
"@algolia/requester-node-http": "5.52.1"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">= 14.0.0"
|
|
@@ -76,41 +76,41 @@
|
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
78
|
"node_modules/@algolia/client-abtesting": {
|
|
79
|
-
"version": "5.
|
|
80
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.
|
|
81
|
-
"integrity": "sha512-
|
|
79
|
+
"version": "5.52.1",
|
|
80
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.52.1.tgz",
|
|
81
|
+
"integrity": "sha512-HmXOGBOAOJPounpBzBpuY0zDYeiCpxgHnQmuA7JO6ScukcBdGp3/XM9zJk5pJx/xNGD68mbPGXWpDxGtl6BwDQ==",
|
|
82
82
|
"dev": true,
|
|
83
83
|
"license": "MIT",
|
|
84
84
|
"dependencies": {
|
|
85
|
-
"@algolia/client-common": "5.
|
|
86
|
-
"@algolia/requester-browser-xhr": "5.
|
|
87
|
-
"@algolia/requester-fetch": "5.
|
|
88
|
-
"@algolia/requester-node-http": "5.
|
|
85
|
+
"@algolia/client-common": "5.52.1",
|
|
86
|
+
"@algolia/requester-browser-xhr": "5.52.1",
|
|
87
|
+
"@algolia/requester-fetch": "5.52.1",
|
|
88
|
+
"@algolia/requester-node-http": "5.52.1"
|
|
89
89
|
},
|
|
90
90
|
"engines": {
|
|
91
91
|
"node": ">= 14.0.0"
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
94
|
"node_modules/@algolia/client-analytics": {
|
|
95
|
-
"version": "5.
|
|
96
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.
|
|
97
|
-
"integrity": "sha512-
|
|
95
|
+
"version": "5.52.1",
|
|
96
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.52.1.tgz",
|
|
97
|
+
"integrity": "sha512-5oo4+I8iixie9vXhCyNFCzeIr8pqA3FQ//VsLHTDvZAV4ttYOPGvYHGQq5NSalrLx5Jc3dRro/5uDOlnUMcBJg==",
|
|
98
98
|
"dev": true,
|
|
99
99
|
"license": "MIT",
|
|
100
100
|
"dependencies": {
|
|
101
|
-
"@algolia/client-common": "5.
|
|
102
|
-
"@algolia/requester-browser-xhr": "5.
|
|
103
|
-
"@algolia/requester-fetch": "5.
|
|
104
|
-
"@algolia/requester-node-http": "5.
|
|
101
|
+
"@algolia/client-common": "5.52.1",
|
|
102
|
+
"@algolia/requester-browser-xhr": "5.52.1",
|
|
103
|
+
"@algolia/requester-fetch": "5.52.1",
|
|
104
|
+
"@algolia/requester-node-http": "5.52.1"
|
|
105
105
|
},
|
|
106
106
|
"engines": {
|
|
107
107
|
"node": ">= 14.0.0"
|
|
108
108
|
}
|
|
109
109
|
},
|
|
110
110
|
"node_modules/@algolia/client-common": {
|
|
111
|
-
"version": "5.
|
|
112
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.
|
|
113
|
-
"integrity": "sha512-
|
|
111
|
+
"version": "5.52.1",
|
|
112
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.52.1.tgz",
|
|
113
|
+
"integrity": "sha512-qCDoZfx5MpX7XQzvQ3bC4tSEMkQWQMaF/ABtLuoze03Y/flR563CCSws02qIJ23oX7lxl92LsilZjINVyTdtLw==",
|
|
114
114
|
"dev": true,
|
|
115
115
|
"license": "MIT",
|
|
116
116
|
"engines": {
|
|
@@ -118,151 +118,151 @@
|
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
120
|
"node_modules/@algolia/client-insights": {
|
|
121
|
-
"version": "5.
|
|
122
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.
|
|
123
|
-
"integrity": "sha512
|
|
121
|
+
"version": "5.52.1",
|
|
122
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.52.1.tgz",
|
|
123
|
+
"integrity": "sha512-hnGs0/lsFJ2PWDxNBz7pxreXo/Xz7gxYRcfePBUjsH26ad0kU/sgnVZd9LwWBpsQv65z2jlb5dkyaB9WE9M9FQ==",
|
|
124
124
|
"dev": true,
|
|
125
125
|
"license": "MIT",
|
|
126
126
|
"dependencies": {
|
|
127
|
-
"@algolia/client-common": "5.
|
|
128
|
-
"@algolia/requester-browser-xhr": "5.
|
|
129
|
-
"@algolia/requester-fetch": "5.
|
|
130
|
-
"@algolia/requester-node-http": "5.
|
|
127
|
+
"@algolia/client-common": "5.52.1",
|
|
128
|
+
"@algolia/requester-browser-xhr": "5.52.1",
|
|
129
|
+
"@algolia/requester-fetch": "5.52.1",
|
|
130
|
+
"@algolia/requester-node-http": "5.52.1"
|
|
131
131
|
},
|
|
132
132
|
"engines": {
|
|
133
133
|
"node": ">= 14.0.0"
|
|
134
134
|
}
|
|
135
135
|
},
|
|
136
136
|
"node_modules/@algolia/client-personalization": {
|
|
137
|
-
"version": "5.
|
|
138
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.
|
|
139
|
-
"integrity": "sha512-
|
|
137
|
+
"version": "5.52.1",
|
|
138
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.52.1.tgz",
|
|
139
|
+
"integrity": "sha512-2VxxNc/uBysyKvGeBdSM5n9eIDKH8kWD7wd9/yqbJAiVwU4Yv6tU1LSJusHKrXV/aCu1KW7t9Gug9QyeEmtn/Q==",
|
|
140
140
|
"dev": true,
|
|
141
141
|
"license": "MIT",
|
|
142
142
|
"dependencies": {
|
|
143
|
-
"@algolia/client-common": "5.
|
|
144
|
-
"@algolia/requester-browser-xhr": "5.
|
|
145
|
-
"@algolia/requester-fetch": "5.
|
|
146
|
-
"@algolia/requester-node-http": "5.
|
|
143
|
+
"@algolia/client-common": "5.52.1",
|
|
144
|
+
"@algolia/requester-browser-xhr": "5.52.1",
|
|
145
|
+
"@algolia/requester-fetch": "5.52.1",
|
|
146
|
+
"@algolia/requester-node-http": "5.52.1"
|
|
147
147
|
},
|
|
148
148
|
"engines": {
|
|
149
149
|
"node": ">= 14.0.0"
|
|
150
150
|
}
|
|
151
151
|
},
|
|
152
152
|
"node_modules/@algolia/client-query-suggestions": {
|
|
153
|
-
"version": "5.
|
|
154
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.
|
|
155
|
-
"integrity": "sha512-
|
|
153
|
+
"version": "5.52.1",
|
|
154
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.52.1.tgz",
|
|
155
|
+
"integrity": "sha512-O6mPtsw3xEfNOe6gWFpYLeAZAIljNa4Hgna3bq15PwyN7nbjTY0wXJFRbzs/0YVf75Br+SbOQUmjKxXYjDiSiQ==",
|
|
156
156
|
"dev": true,
|
|
157
157
|
"license": "MIT",
|
|
158
158
|
"dependencies": {
|
|
159
|
-
"@algolia/client-common": "5.
|
|
160
|
-
"@algolia/requester-browser-xhr": "5.
|
|
161
|
-
"@algolia/requester-fetch": "5.
|
|
162
|
-
"@algolia/requester-node-http": "5.
|
|
159
|
+
"@algolia/client-common": "5.52.1",
|
|
160
|
+
"@algolia/requester-browser-xhr": "5.52.1",
|
|
161
|
+
"@algolia/requester-fetch": "5.52.1",
|
|
162
|
+
"@algolia/requester-node-http": "5.52.1"
|
|
163
163
|
},
|
|
164
164
|
"engines": {
|
|
165
165
|
"node": ">= 14.0.0"
|
|
166
166
|
}
|
|
167
167
|
},
|
|
168
168
|
"node_modules/@algolia/client-search": {
|
|
169
|
-
"version": "5.
|
|
170
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.
|
|
171
|
-
"integrity": "sha512-
|
|
169
|
+
"version": "5.52.1",
|
|
170
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.52.1.tgz",
|
|
171
|
+
"integrity": "sha512-gA8oJOV1LnQQkDf91iebNnFInHuW0gRPEgLSOQ7EfipCEjYTHm5swm1DlH9H5RaRw4RrHuzHBegnlzc0MAstcg==",
|
|
172
172
|
"dev": true,
|
|
173
173
|
"license": "MIT",
|
|
174
174
|
"dependencies": {
|
|
175
|
-
"@algolia/client-common": "5.
|
|
176
|
-
"@algolia/requester-browser-xhr": "5.
|
|
177
|
-
"@algolia/requester-fetch": "5.
|
|
178
|
-
"@algolia/requester-node-http": "5.
|
|
175
|
+
"@algolia/client-common": "5.52.1",
|
|
176
|
+
"@algolia/requester-browser-xhr": "5.52.1",
|
|
177
|
+
"@algolia/requester-fetch": "5.52.1",
|
|
178
|
+
"@algolia/requester-node-http": "5.52.1"
|
|
179
179
|
},
|
|
180
180
|
"engines": {
|
|
181
181
|
"node": ">= 14.0.0"
|
|
182
182
|
}
|
|
183
183
|
},
|
|
184
184
|
"node_modules/@algolia/ingestion": {
|
|
185
|
-
"version": "1.
|
|
186
|
-
"resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.
|
|
187
|
-
"integrity": "sha512-
|
|
185
|
+
"version": "1.52.1",
|
|
186
|
+
"resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.52.1.tgz",
|
|
187
|
+
"integrity": "sha512-U9zZfc5xIu9wRxZkt+HceJUAD4VKHKbAyLSloJdEyMRmphXeibfrY9cxqIXBcmPeZzGhn3Imb35Dq8l19PkJhw==",
|
|
188
188
|
"dev": true,
|
|
189
189
|
"license": "MIT",
|
|
190
190
|
"dependencies": {
|
|
191
|
-
"@algolia/client-common": "5.
|
|
192
|
-
"@algolia/requester-browser-xhr": "5.
|
|
193
|
-
"@algolia/requester-fetch": "5.
|
|
194
|
-
"@algolia/requester-node-http": "5.
|
|
191
|
+
"@algolia/client-common": "5.52.1",
|
|
192
|
+
"@algolia/requester-browser-xhr": "5.52.1",
|
|
193
|
+
"@algolia/requester-fetch": "5.52.1",
|
|
194
|
+
"@algolia/requester-node-http": "5.52.1"
|
|
195
195
|
},
|
|
196
196
|
"engines": {
|
|
197
197
|
"node": ">= 14.0.0"
|
|
198
198
|
}
|
|
199
199
|
},
|
|
200
200
|
"node_modules/@algolia/monitoring": {
|
|
201
|
-
"version": "1.
|
|
202
|
-
"resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.
|
|
203
|
-
"integrity": "sha512-
|
|
201
|
+
"version": "1.52.1",
|
|
202
|
+
"resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.52.1.tgz",
|
|
203
|
+
"integrity": "sha512-a3SGNceHmkQfq77iG8Ka+w1pvwfZa/0lzEIgse30fL0kD+yKnd/dg0dQvSfFPAEt2f21DMcGkDSSeJlO3KdQjQ==",
|
|
204
204
|
"dev": true,
|
|
205
205
|
"license": "MIT",
|
|
206
206
|
"dependencies": {
|
|
207
|
-
"@algolia/client-common": "5.
|
|
208
|
-
"@algolia/requester-browser-xhr": "5.
|
|
209
|
-
"@algolia/requester-fetch": "5.
|
|
210
|
-
"@algolia/requester-node-http": "5.
|
|
207
|
+
"@algolia/client-common": "5.52.1",
|
|
208
|
+
"@algolia/requester-browser-xhr": "5.52.1",
|
|
209
|
+
"@algolia/requester-fetch": "5.52.1",
|
|
210
|
+
"@algolia/requester-node-http": "5.52.1"
|
|
211
211
|
},
|
|
212
212
|
"engines": {
|
|
213
213
|
"node": ">= 14.0.0"
|
|
214
214
|
}
|
|
215
215
|
},
|
|
216
216
|
"node_modules/@algolia/recommend": {
|
|
217
|
-
"version": "5.
|
|
218
|
-
"resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.
|
|
219
|
-
"integrity": "sha512
|
|
217
|
+
"version": "5.52.1",
|
|
218
|
+
"resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.52.1.tgz",
|
|
219
|
+
"integrity": "sha512-z98QEguCFDpxb4S/PyrUK1igqF8tPsdbqOUUO6ON91vJ58w+Gwa6ncrI0oNXSFcrkxA5EqPKPQ2A1PBCn08TYQ==",
|
|
220
220
|
"dev": true,
|
|
221
221
|
"license": "MIT",
|
|
222
222
|
"dependencies": {
|
|
223
|
-
"@algolia/client-common": "5.
|
|
224
|
-
"@algolia/requester-browser-xhr": "5.
|
|
225
|
-
"@algolia/requester-fetch": "5.
|
|
226
|
-
"@algolia/requester-node-http": "5.
|
|
223
|
+
"@algolia/client-common": "5.52.1",
|
|
224
|
+
"@algolia/requester-browser-xhr": "5.52.1",
|
|
225
|
+
"@algolia/requester-fetch": "5.52.1",
|
|
226
|
+
"@algolia/requester-node-http": "5.52.1"
|
|
227
227
|
},
|
|
228
228
|
"engines": {
|
|
229
229
|
"node": ">= 14.0.0"
|
|
230
230
|
}
|
|
231
231
|
},
|
|
232
232
|
"node_modules/@algolia/requester-browser-xhr": {
|
|
233
|
-
"version": "5.
|
|
234
|
-
"resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.
|
|
235
|
-
"integrity": "sha512-
|
|
233
|
+
"version": "5.52.1",
|
|
234
|
+
"resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.52.1.tgz",
|
|
235
|
+
"integrity": "sha512-CI7+/0I11QeZM59Uc8whd2or0kqzFVjpaPn9Qpwll/krHcBAxk24WkAQ6WX+IwDVMfpont4YGbKwAmCre3vE8Q==",
|
|
236
236
|
"dev": true,
|
|
237
237
|
"license": "MIT",
|
|
238
238
|
"dependencies": {
|
|
239
|
-
"@algolia/client-common": "5.
|
|
239
|
+
"@algolia/client-common": "5.52.1"
|
|
240
240
|
},
|
|
241
241
|
"engines": {
|
|
242
242
|
"node": ">= 14.0.0"
|
|
243
243
|
}
|
|
244
244
|
},
|
|
245
245
|
"node_modules/@algolia/requester-fetch": {
|
|
246
|
-
"version": "5.
|
|
247
|
-
"resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.
|
|
248
|
-
"integrity": "sha512-
|
|
246
|
+
"version": "5.52.1",
|
|
247
|
+
"resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.52.1.tgz",
|
|
248
|
+
"integrity": "sha512-S6bDuw9byfOvm3T71cgdoZgrgnZq6hpdMLkx52Louh57nUAmvGQESz2aojOynQHjbTiV55smvAFbgn0qT4tJrg==",
|
|
249
249
|
"dev": true,
|
|
250
250
|
"license": "MIT",
|
|
251
251
|
"dependencies": {
|
|
252
|
-
"@algolia/client-common": "5.
|
|
252
|
+
"@algolia/client-common": "5.52.1"
|
|
253
253
|
},
|
|
254
254
|
"engines": {
|
|
255
255
|
"node": ">= 14.0.0"
|
|
256
256
|
}
|
|
257
257
|
},
|
|
258
258
|
"node_modules/@algolia/requester-node-http": {
|
|
259
|
-
"version": "5.
|
|
260
|
-
"resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.
|
|
261
|
-
"integrity": "sha512-
|
|
259
|
+
"version": "5.52.1",
|
|
260
|
+
"resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.52.1.tgz",
|
|
261
|
+
"integrity": "sha512-tqZXM+54rWo4mk5jL5Z/flE11nPmNEdXwFBM5py9DkOmbjeCNemfVd45FyM97XdzfZ0dl9uOJC6PYn1FpkeyQg==",
|
|
262
262
|
"dev": true,
|
|
263
263
|
"license": "MIT",
|
|
264
264
|
"dependencies": {
|
|
265
|
-
"@algolia/client-common": "5.
|
|
265
|
+
"@algolia/client-common": "5.52.1"
|
|
266
266
|
},
|
|
267
267
|
"engines": {
|
|
268
268
|
"node": ">= 14.0.0"
|
|
@@ -289,9 +289,9 @@
|
|
|
289
289
|
}
|
|
290
290
|
},
|
|
291
291
|
"node_modules/@babel/parser": {
|
|
292
|
-
"version": "7.29.
|
|
293
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.
|
|
294
|
-
"integrity": "sha512-
|
|
292
|
+
"version": "7.29.3",
|
|
293
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz",
|
|
294
|
+
"integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==",
|
|
295
295
|
"dev": true,
|
|
296
296
|
"license": "MIT",
|
|
297
297
|
"dependencies": {
|
|
@@ -761,9 +761,9 @@
|
|
|
761
761
|
}
|
|
762
762
|
},
|
|
763
763
|
"node_modules/@iconify-json/simple-icons": {
|
|
764
|
-
"version": "1.2.
|
|
765
|
-
"resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.
|
|
766
|
-
"integrity": "sha512-
|
|
764
|
+
"version": "1.2.83",
|
|
765
|
+
"resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.83.tgz",
|
|
766
|
+
"integrity": "sha512-6Pp9V++XisT9RKH7FB4RLPqUDzcmLtSma0ovOEIoEWGrXtHwBFsH7oN1z8vvCVCb95fb87QgR46/zRLyN9Y3kg==",
|
|
767
767
|
"dev": true,
|
|
768
768
|
"license": "CC0-1.0",
|
|
769
769
|
"dependencies": {
|
|
@@ -785,9 +785,9 @@
|
|
|
785
785
|
"license": "MIT"
|
|
786
786
|
},
|
|
787
787
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
788
|
-
"version": "4.60.
|
|
789
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.
|
|
790
|
-
"integrity": "sha512-
|
|
788
|
+
"version": "4.60.4",
|
|
789
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.4.tgz",
|
|
790
|
+
"integrity": "sha512-F5QXMSiFebS9hKZj02XhWLLnRpJ3B3AROP0tWbFBSj+6kCbg5m9j5JoHKd4mmSVy5mS/IMQloYgYxCuJC0fxEQ==",
|
|
791
791
|
"cpu": [
|
|
792
792
|
"arm"
|
|
793
793
|
],
|
|
@@ -799,9 +799,9 @@
|
|
|
799
799
|
]
|
|
800
800
|
},
|
|
801
801
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
802
|
-
"version": "4.60.
|
|
803
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.
|
|
804
|
-
"integrity": "sha512-
|
|
802
|
+
"version": "4.60.4",
|
|
803
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.4.tgz",
|
|
804
|
+
"integrity": "sha512-GxxTKApUpzRhof7poWvCJHRF51C67u1R7D6DiluBE8wKU1u5GWE8t+v81JvJYtbawoBFX1hLv5Ei4eVjkWokaw==",
|
|
805
805
|
"cpu": [
|
|
806
806
|
"arm64"
|
|
807
807
|
],
|
|
@@ -813,9 +813,9 @@
|
|
|
813
813
|
]
|
|
814
814
|
},
|
|
815
815
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
816
|
-
"version": "4.60.
|
|
817
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.
|
|
818
|
-
"integrity": "sha512-
|
|
816
|
+
"version": "4.60.4",
|
|
817
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.4.tgz",
|
|
818
|
+
"integrity": "sha512-tua0TaJxMOB1R0V0RS1jFZ/RpURFDJIOR2A6jWwQeawuFyS4gBW+rntLRaQd0EQ4bd6Vp44Z2rXW+YYDBsj6IA==",
|
|
819
819
|
"cpu": [
|
|
820
820
|
"arm64"
|
|
821
821
|
],
|
|
@@ -827,9 +827,9 @@
|
|
|
827
827
|
]
|
|
828
828
|
},
|
|
829
829
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
830
|
-
"version": "4.60.
|
|
831
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.
|
|
832
|
-
"integrity": "sha512-
|
|
830
|
+
"version": "4.60.4",
|
|
831
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.4.tgz",
|
|
832
|
+
"integrity": "sha512-CSKq7MsP+5PFIcydhAiR1K0UhEI1A2jWXVKHPCBZ151yOutENwvnPocgVHkivu2kviURtCEB6zUQw0vs8RrhMg==",
|
|
833
833
|
"cpu": [
|
|
834
834
|
"x64"
|
|
835
835
|
],
|
|
@@ -841,9 +841,9 @@
|
|
|
841
841
|
]
|
|
842
842
|
},
|
|
843
843
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
844
|
-
"version": "4.60.
|
|
845
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.
|
|
846
|
-
"integrity": "sha512
|
|
844
|
+
"version": "4.60.4",
|
|
845
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.4.tgz",
|
|
846
|
+
"integrity": "sha512-+O8OkVdyvXMtJEciu2wS/pzm1IxntEEQx3z5TAVy4l32G0etZn+RsA48ARRrFm6Ri8fvqPQfgrvNxSjKAbnd3g==",
|
|
847
847
|
"cpu": [
|
|
848
848
|
"arm64"
|
|
849
849
|
],
|
|
@@ -855,9 +855,9 @@
|
|
|
855
855
|
]
|
|
856
856
|
},
|
|
857
857
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
858
|
-
"version": "4.60.
|
|
859
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.
|
|
860
|
-
"integrity": "sha512-
|
|
858
|
+
"version": "4.60.4",
|
|
859
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.4.tgz",
|
|
860
|
+
"integrity": "sha512-Iw3oMskH3AfNuhU0MSN7vNbdi4me/NiYo2azqPz/Le16zHSa+3RRmliCMWWQmh4lcndccU40xcJuTYJZxNo/lw==",
|
|
861
861
|
"cpu": [
|
|
862
862
|
"x64"
|
|
863
863
|
],
|
|
@@ -869,9 +869,9 @@
|
|
|
869
869
|
]
|
|
870
870
|
},
|
|
871
871
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
872
|
-
"version": "4.60.
|
|
873
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.
|
|
874
|
-
"integrity": "sha512-
|
|
872
|
+
"version": "4.60.4",
|
|
873
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.4.tgz",
|
|
874
|
+
"integrity": "sha512-EIPRXTVQpHyF8WOo219AD2yEltPehLTcTMz2fn6JsatLYSzQf00hj3rulF+yauOlF9/FtM2WpkT/hJh/KJFGhA==",
|
|
875
875
|
"cpu": [
|
|
876
876
|
"arm"
|
|
877
877
|
],
|
|
@@ -886,9 +886,9 @@
|
|
|
886
886
|
]
|
|
887
887
|
},
|
|
888
888
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
889
|
-
"version": "4.60.
|
|
890
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.
|
|
891
|
-
"integrity": "sha512-
|
|
889
|
+
"version": "4.60.4",
|
|
890
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.4.tgz",
|
|
891
|
+
"integrity": "sha512-J3Yh9PzzF1Ovah2At+lHiGQdsYgArxBbXv/zHfSyaiFQEqvNv7DcW98pCrmdjCZBrqBiKrKKe2V+aaSGWuBe/w==",
|
|
892
892
|
"cpu": [
|
|
893
893
|
"arm"
|
|
894
894
|
],
|
|
@@ -903,9 +903,9 @@
|
|
|
903
903
|
]
|
|
904
904
|
},
|
|
905
905
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
906
|
-
"version": "4.60.
|
|
907
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.
|
|
908
|
-
"integrity": "sha512-
|
|
906
|
+
"version": "4.60.4",
|
|
907
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.4.tgz",
|
|
908
|
+
"integrity": "sha512-BFDEZMYfUvLn37ONE1yMBojPxnMlTFsdyNoqncT0qFq1mAfllL+ATMMJd8TeuVMiX84s1KbcxcZbXInmcO2mRg==",
|
|
909
909
|
"cpu": [
|
|
910
910
|
"arm64"
|
|
911
911
|
],
|
|
@@ -920,9 +920,9 @@
|
|
|
920
920
|
]
|
|
921
921
|
},
|
|
922
922
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
923
|
-
"version": "4.60.
|
|
924
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.
|
|
925
|
-
"integrity": "sha512-
|
|
923
|
+
"version": "4.60.4",
|
|
924
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.4.tgz",
|
|
925
|
+
"integrity": "sha512-pc9EYOSlOgdQ2uPl1o9PF6/kLSgaUosia7gOuS8mB69IxJvlclko1MECXysjs5ryez1/5zjYqx3+xYU0TU6R1A==",
|
|
926
926
|
"cpu": [
|
|
927
927
|
"arm64"
|
|
928
928
|
],
|
|
@@ -937,9 +937,9 @@
|
|
|
937
937
|
]
|
|
938
938
|
},
|
|
939
939
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
940
|
-
"version": "4.60.
|
|
941
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.
|
|
942
|
-
"integrity": "sha512-
|
|
940
|
+
"version": "4.60.4",
|
|
941
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.4.tgz",
|
|
942
|
+
"integrity": "sha512-NxnomyxYerDh5n4iLrNa+sH+Z+U4BMEE46V2PgQ/hoB909i8gV1M5wPojWg9fk1jWpO3IQnOs20K4wyZuFLEFQ==",
|
|
943
943
|
"cpu": [
|
|
944
944
|
"loong64"
|
|
945
945
|
],
|
|
@@ -954,9 +954,9 @@
|
|
|
954
954
|
]
|
|
955
955
|
},
|
|
956
956
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
957
|
-
"version": "4.60.
|
|
958
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.
|
|
959
|
-
"integrity": "sha512-
|
|
957
|
+
"version": "4.60.4",
|
|
958
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.4.tgz",
|
|
959
|
+
"integrity": "sha512-nbJnQ8a3z1mtmrwImCYhc6BGpThAyYVRQxw9uKSKG4wR6aAYno9sVjJ0zaZcW9BPJX1GbrDPf+SvdWjgTuDmnw==",
|
|
960
960
|
"cpu": [
|
|
961
961
|
"loong64"
|
|
962
962
|
],
|
|
@@ -971,9 +971,9 @@
|
|
|
971
971
|
]
|
|
972
972
|
},
|
|
973
973
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
974
|
-
"version": "4.60.
|
|
975
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.
|
|
976
|
-
"integrity": "sha512-
|
|
974
|
+
"version": "4.60.4",
|
|
975
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.4.tgz",
|
|
976
|
+
"integrity": "sha512-2EU6acNrQLd8tYvo/LXW535wupT3m6fo7HKo6lr7ktQoItxTyOL1ZCR/GfGCuXl2vR+zmfI6eRXkSemafv+iVg==",
|
|
977
977
|
"cpu": [
|
|
978
978
|
"ppc64"
|
|
979
979
|
],
|
|
@@ -988,9 +988,9 @@
|
|
|
988
988
|
]
|
|
989
989
|
},
|
|
990
990
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
991
|
-
"version": "4.60.
|
|
992
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.
|
|
993
|
-
"integrity": "sha512-
|
|
991
|
+
"version": "4.60.4",
|
|
992
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.4.tgz",
|
|
993
|
+
"integrity": "sha512-WeBtoMuaMxiiIrO2IYP3xs6GMWkJP2C0EoT8beTLkUPmzV1i/UcOSVw1d5r9KBODtHKilG5yFxsGRnBbK3wJ4A==",
|
|
994
994
|
"cpu": [
|
|
995
995
|
"ppc64"
|
|
996
996
|
],
|
|
@@ -1005,9 +1005,9 @@
|
|
|
1005
1005
|
]
|
|
1006
1006
|
},
|
|
1007
1007
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1008
|
-
"version": "4.60.
|
|
1009
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.
|
|
1010
|
-
"integrity": "sha512-
|
|
1008
|
+
"version": "4.60.4",
|
|
1009
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.4.tgz",
|
|
1010
|
+
"integrity": "sha512-FJHFfqpKUI3A10WrWKiFbBZ7yVbGT4q4B5o1qKFFojqpaYoh9LrQgqWCmmcxQzVSXYtyB5bzkXrYzlHTs21MYA==",
|
|
1011
1011
|
"cpu": [
|
|
1012
1012
|
"riscv64"
|
|
1013
1013
|
],
|
|
@@ -1022,9 +1022,9 @@
|
|
|
1022
1022
|
]
|
|
1023
1023
|
},
|
|
1024
1024
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1025
|
-
"version": "4.60.
|
|
1026
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.
|
|
1027
|
-
"integrity": "sha512-
|
|
1025
|
+
"version": "4.60.4",
|
|
1026
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.4.tgz",
|
|
1027
|
+
"integrity": "sha512-mcEl6CUT5IAUmQf1m9FYSmVqCJlpQ8r8eyftFUHG8i9OhY7BkBXSUdnLH5DOf0wCOjcP9v/QO93zpmF1SptCCw==",
|
|
1028
1028
|
"cpu": [
|
|
1029
1029
|
"riscv64"
|
|
1030
1030
|
],
|
|
@@ -1039,9 +1039,9 @@
|
|
|
1039
1039
|
]
|
|
1040
1040
|
},
|
|
1041
1041
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1042
|
-
"version": "4.60.
|
|
1043
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.
|
|
1044
|
-
"integrity": "sha512-
|
|
1042
|
+
"version": "4.60.4",
|
|
1043
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.4.tgz",
|
|
1044
|
+
"integrity": "sha512-ynt3JxVd2w2buzoKDWIyiV1pJW93xlQic1THVLXilz429oijRpSHivZAgp65KBu+cMcgf1eVVjdnTLvPxgCuoQ==",
|
|
1045
1045
|
"cpu": [
|
|
1046
1046
|
"s390x"
|
|
1047
1047
|
],
|
|
@@ -1056,9 +1056,9 @@
|
|
|
1056
1056
|
]
|
|
1057
1057
|
},
|
|
1058
1058
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
1059
|
-
"version": "4.60.
|
|
1060
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.
|
|
1061
|
-
"integrity": "sha512-
|
|
1059
|
+
"version": "4.60.4",
|
|
1060
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.4.tgz",
|
|
1061
|
+
"integrity": "sha512-Boiz5+MsaROEWDf+GGEwF8VMHGhlUoQMtIPjOgA5fv4osupqTVnJteQNKJwUcnUog2G55jYXH7KZFFiJe0TEzQ==",
|
|
1062
1062
|
"cpu": [
|
|
1063
1063
|
"x64"
|
|
1064
1064
|
],
|
|
@@ -1073,9 +1073,9 @@
|
|
|
1073
1073
|
]
|
|
1074
1074
|
},
|
|
1075
1075
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
1076
|
-
"version": "4.60.
|
|
1077
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.
|
|
1078
|
-
"integrity": "sha512
|
|
1076
|
+
"version": "4.60.4",
|
|
1077
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.4.tgz",
|
|
1078
|
+
"integrity": "sha512-+qfSY27qIrFfI/Hom04KYFw3GKZSGU4lXus51wsb5EuySfFlWRwjkKWoE9emgRw/ukoT4Udsj4W/+xxG8VbPKg==",
|
|
1079
1079
|
"cpu": [
|
|
1080
1080
|
"x64"
|
|
1081
1081
|
],
|
|
@@ -1090,9 +1090,9 @@
|
|
|
1090
1090
|
]
|
|
1091
1091
|
},
|
|
1092
1092
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
1093
|
-
"version": "4.60.
|
|
1094
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.
|
|
1095
|
-
"integrity": "sha512-
|
|
1093
|
+
"version": "4.60.4",
|
|
1094
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.4.tgz",
|
|
1095
|
+
"integrity": "sha512-VpTfOPHgVXEBeeR8hZ2O0F3aSso+JDWqTWmTmzcQKted54IAdUVbxE+j/MVxUsKa8L20HJhv3vUezVPoquqWjA==",
|
|
1096
1096
|
"cpu": [
|
|
1097
1097
|
"x64"
|
|
1098
1098
|
],
|
|
@@ -1104,9 +1104,9 @@
|
|
|
1104
1104
|
]
|
|
1105
1105
|
},
|
|
1106
1106
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1107
|
-
"version": "4.60.
|
|
1108
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.
|
|
1109
|
-
"integrity": "sha512-
|
|
1107
|
+
"version": "4.60.4",
|
|
1108
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.4.tgz",
|
|
1109
|
+
"integrity": "sha512-IPOsh5aRYuLv/nkU51X10Bf75Bsf6+gZdx1X+QP5QM6lIJFHHqbHLG0uJn/hWthzo13UAc2umiUorqZy3axoZg==",
|
|
1110
1110
|
"cpu": [
|
|
1111
1111
|
"arm64"
|
|
1112
1112
|
],
|
|
@@ -1118,9 +1118,9 @@
|
|
|
1118
1118
|
]
|
|
1119
1119
|
},
|
|
1120
1120
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
1121
|
-
"version": "4.60.
|
|
1122
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.
|
|
1123
|
-
"integrity": "sha512-
|
|
1121
|
+
"version": "4.60.4",
|
|
1122
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.4.tgz",
|
|
1123
|
+
"integrity": "sha512-4QzE9E81OohJ/HKzHhsqU+zcYYojVOXlFMs1DdyMT6qXl/niOH7AVElmmEdUNHHS/oRkc++d5k6Vy85zFs0DEw==",
|
|
1124
1124
|
"cpu": [
|
|
1125
1125
|
"arm64"
|
|
1126
1126
|
],
|
|
@@ -1132,9 +1132,9 @@
|
|
|
1132
1132
|
]
|
|
1133
1133
|
},
|
|
1134
1134
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1135
|
-
"version": "4.60.
|
|
1136
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.
|
|
1137
|
-
"integrity": "sha512-
|
|
1135
|
+
"version": "4.60.4",
|
|
1136
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.4.tgz",
|
|
1137
|
+
"integrity": "sha512-zTPgT1YuHHcd+Tmx7h8aml0FWFVelV5N54oHow9SLj+GfoDy/huQ+UV396N/C7KpMDMiPspRktzM1/0r1usYEA==",
|
|
1138
1138
|
"cpu": [
|
|
1139
1139
|
"ia32"
|
|
1140
1140
|
],
|
|
@@ -1146,9 +1146,9 @@
|
|
|
1146
1146
|
]
|
|
1147
1147
|
},
|
|
1148
1148
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1149
|
-
"version": "4.60.
|
|
1150
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.
|
|
1151
|
-
"integrity": "sha512-
|
|
1149
|
+
"version": "4.60.4",
|
|
1150
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.4.tgz",
|
|
1151
|
+
"integrity": "sha512-DRS4G7mi9lJxqEDezIkKCaUIKCrLUUDCUaCsTPCi/rtqaC6D/jjwslMQyiDU50Ka0JKpeXeRBFBAXwArY52vBw==",
|
|
1152
1152
|
"cpu": [
|
|
1153
1153
|
"x64"
|
|
1154
1154
|
],
|
|
@@ -1160,9 +1160,9 @@
|
|
|
1160
1160
|
]
|
|
1161
1161
|
},
|
|
1162
1162
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1163
|
-
"version": "4.60.
|
|
1164
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.
|
|
1165
|
-
"integrity": "sha512-
|
|
1163
|
+
"version": "4.60.4",
|
|
1164
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.4.tgz",
|
|
1165
|
+
"integrity": "sha512-QVTUovf40zgTqlFVrKA1uXMVvU2QWEFWfAH8Wdc48IxLvrJMQVMBRjuQyUpzZCDkakImib9eVazbWlC6ksWtJw==",
|
|
1166
1166
|
"cpu": [
|
|
1167
1167
|
"x64"
|
|
1168
1168
|
],
|
|
@@ -1344,9 +1344,9 @@
|
|
|
1344
1344
|
"license": "MIT"
|
|
1345
1345
|
},
|
|
1346
1346
|
"node_modules/@ungap/structured-clone": {
|
|
1347
|
-
"version": "1.3.
|
|
1348
|
-
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.
|
|
1349
|
-
"integrity": "sha512-
|
|
1347
|
+
"version": "1.3.1",
|
|
1348
|
+
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.1.tgz",
|
|
1349
|
+
"integrity": "sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==",
|
|
1350
1350
|
"dev": true,
|
|
1351
1351
|
"license": "ISC"
|
|
1352
1352
|
},
|
|
@@ -1365,14 +1365,14 @@
|
|
|
1365
1365
|
}
|
|
1366
1366
|
},
|
|
1367
1367
|
"node_modules/@vue/compiler-core": {
|
|
1368
|
-
"version": "3.5.
|
|
1369
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.
|
|
1370
|
-
"integrity": "sha512-
|
|
1368
|
+
"version": "3.5.34",
|
|
1369
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.34.tgz",
|
|
1370
|
+
"integrity": "sha512-s9cLyK5mLcvZ4Agva5QgRsQyLKvts9WbU9DB6NqiZkkGEdwmcEiylj5Jbwkp680drF/NNCV8OlAJSe+yMLxaJw==",
|
|
1371
1371
|
"dev": true,
|
|
1372
1372
|
"license": "MIT",
|
|
1373
1373
|
"dependencies": {
|
|
1374
|
-
"@babel/parser": "^7.29.
|
|
1375
|
-
"@vue/shared": "3.5.
|
|
1374
|
+
"@babel/parser": "^7.29.3",
|
|
1375
|
+
"@vue/shared": "3.5.34",
|
|
1376
1376
|
"entities": "^7.0.1",
|
|
1377
1377
|
"estree-walker": "^2.0.2",
|
|
1378
1378
|
"source-map-js": "^1.2.1"
|
|
@@ -1392,43 +1392,43 @@
|
|
|
1392
1392
|
}
|
|
1393
1393
|
},
|
|
1394
1394
|
"node_modules/@vue/compiler-dom": {
|
|
1395
|
-
"version": "3.5.
|
|
1396
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.
|
|
1397
|
-
"integrity": "sha512-
|
|
1395
|
+
"version": "3.5.34",
|
|
1396
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.34.tgz",
|
|
1397
|
+
"integrity": "sha512-EbF/T++k0e2MMZlJsBhzK8Sgwt0HcIPOhzn1CTB/lv6sQcyk+OWf8YeiLxZp3ro7MbbLcAfAJ6sEvjFWuNgUCw==",
|
|
1398
1398
|
"dev": true,
|
|
1399
1399
|
"license": "MIT",
|
|
1400
1400
|
"dependencies": {
|
|
1401
|
-
"@vue/compiler-core": "3.5.
|
|
1402
|
-
"@vue/shared": "3.5.
|
|
1401
|
+
"@vue/compiler-core": "3.5.34",
|
|
1402
|
+
"@vue/shared": "3.5.34"
|
|
1403
1403
|
}
|
|
1404
1404
|
},
|
|
1405
1405
|
"node_modules/@vue/compiler-sfc": {
|
|
1406
|
-
"version": "3.5.
|
|
1407
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.
|
|
1408
|
-
"integrity": "sha512-
|
|
1406
|
+
"version": "3.5.34",
|
|
1407
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.34.tgz",
|
|
1408
|
+
"integrity": "sha512-D/ihr6uZeIt6r+pVZf46RWT1fAsLFMbUP7k8G1VkiiWexriED9GrX3echHd4Abbt17zjlfiFJ8z7a3BxZOPNjg==",
|
|
1409
1409
|
"dev": true,
|
|
1410
1410
|
"license": "MIT",
|
|
1411
1411
|
"dependencies": {
|
|
1412
|
-
"@babel/parser": "^7.29.
|
|
1413
|
-
"@vue/compiler-core": "3.5.
|
|
1414
|
-
"@vue/compiler-dom": "3.5.
|
|
1415
|
-
"@vue/compiler-ssr": "3.5.
|
|
1416
|
-
"@vue/shared": "3.5.
|
|
1412
|
+
"@babel/parser": "^7.29.3",
|
|
1413
|
+
"@vue/compiler-core": "3.5.34",
|
|
1414
|
+
"@vue/compiler-dom": "3.5.34",
|
|
1415
|
+
"@vue/compiler-ssr": "3.5.34",
|
|
1416
|
+
"@vue/shared": "3.5.34",
|
|
1417
1417
|
"estree-walker": "^2.0.2",
|
|
1418
1418
|
"magic-string": "^0.30.21",
|
|
1419
|
-
"postcss": "^8.5.
|
|
1419
|
+
"postcss": "^8.5.14",
|
|
1420
1420
|
"source-map-js": "^1.2.1"
|
|
1421
1421
|
}
|
|
1422
1422
|
},
|
|
1423
1423
|
"node_modules/@vue/compiler-ssr": {
|
|
1424
|
-
"version": "3.5.
|
|
1425
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.
|
|
1426
|
-
"integrity": "sha512-
|
|
1424
|
+
"version": "3.5.34",
|
|
1425
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.34.tgz",
|
|
1426
|
+
"integrity": "sha512-cDtTHKibkThKGHH1SP+WdccquNRYQDFH6rRjQCqT9G2ltFAfoR5pUftpab/z+aM5mW9HLLVQW7hfKKQe/1GBeQ==",
|
|
1427
1427
|
"dev": true,
|
|
1428
1428
|
"license": "MIT",
|
|
1429
1429
|
"dependencies": {
|
|
1430
|
-
"@vue/compiler-dom": "3.5.
|
|
1431
|
-
"@vue/shared": "3.5.
|
|
1430
|
+
"@vue/compiler-dom": "3.5.34",
|
|
1431
|
+
"@vue/shared": "3.5.34"
|
|
1432
1432
|
}
|
|
1433
1433
|
},
|
|
1434
1434
|
"node_modules/@vue/devtools-api": {
|
|
@@ -1468,57 +1468,57 @@
|
|
|
1468
1468
|
}
|
|
1469
1469
|
},
|
|
1470
1470
|
"node_modules/@vue/reactivity": {
|
|
1471
|
-
"version": "3.5.
|
|
1472
|
-
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.
|
|
1473
|
-
"integrity": "sha512-
|
|
1471
|
+
"version": "3.5.34",
|
|
1472
|
+
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.34.tgz",
|
|
1473
|
+
"integrity": "sha512-y9XDjCEuBp+98k+UL5dbYkh57AHU4o6cxZedOPXw3bmrZZYLQsVHguGurq7hVrPCSrQtrnz1f9dssyFr+dMXfQ==",
|
|
1474
1474
|
"dev": true,
|
|
1475
1475
|
"license": "MIT",
|
|
1476
1476
|
"dependencies": {
|
|
1477
|
-
"@vue/shared": "3.5.
|
|
1477
|
+
"@vue/shared": "3.5.34"
|
|
1478
1478
|
}
|
|
1479
1479
|
},
|
|
1480
1480
|
"node_modules/@vue/runtime-core": {
|
|
1481
|
-
"version": "3.5.
|
|
1482
|
-
"resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.
|
|
1483
|
-
"integrity": "sha512-
|
|
1481
|
+
"version": "3.5.34",
|
|
1482
|
+
"resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.34.tgz",
|
|
1483
|
+
"integrity": "sha512-mKeBYvu8tcMSLhypAHBmriUFfWXKTCF/23Z4jiCoYK3UtWepkliViNLuR90V9XOyD62mUxs9p1jsrpK3CCGIzw==",
|
|
1484
1484
|
"dev": true,
|
|
1485
1485
|
"license": "MIT",
|
|
1486
1486
|
"dependencies": {
|
|
1487
|
-
"@vue/reactivity": "3.5.
|
|
1488
|
-
"@vue/shared": "3.5.
|
|
1487
|
+
"@vue/reactivity": "3.5.34",
|
|
1488
|
+
"@vue/shared": "3.5.34"
|
|
1489
1489
|
}
|
|
1490
1490
|
},
|
|
1491
1491
|
"node_modules/@vue/runtime-dom": {
|
|
1492
|
-
"version": "3.5.
|
|
1493
|
-
"resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.
|
|
1494
|
-
"integrity": "sha512-
|
|
1492
|
+
"version": "3.5.34",
|
|
1493
|
+
"resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.34.tgz",
|
|
1494
|
+
"integrity": "sha512-e8kZzERmCwUnBRVsgSQlAfrfU2rGoy0FFKPBXSlfEjc/O3KfA7QP0t1/2ZylrbchjmIKB4dPTd07A6WPr0eOrg==",
|
|
1495
1495
|
"dev": true,
|
|
1496
1496
|
"license": "MIT",
|
|
1497
1497
|
"dependencies": {
|
|
1498
|
-
"@vue/reactivity": "3.5.
|
|
1499
|
-
"@vue/runtime-core": "3.5.
|
|
1500
|
-
"@vue/shared": "3.5.
|
|
1498
|
+
"@vue/reactivity": "3.5.34",
|
|
1499
|
+
"@vue/runtime-core": "3.5.34",
|
|
1500
|
+
"@vue/shared": "3.5.34",
|
|
1501
1501
|
"csstype": "^3.2.3"
|
|
1502
1502
|
}
|
|
1503
1503
|
},
|
|
1504
1504
|
"node_modules/@vue/server-renderer": {
|
|
1505
|
-
"version": "3.5.
|
|
1506
|
-
"resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.
|
|
1507
|
-
"integrity": "sha512-
|
|
1505
|
+
"version": "3.5.34",
|
|
1506
|
+
"resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.34.tgz",
|
|
1507
|
+
"integrity": "sha512-nHxmJoTrKsmrkbILRhkC9gY1G3moZbJTqCzDd7DOOzG5KH9oeJ0Unqrff5f9v0pW//jES05ZkJcNtfE8JjOIew==",
|
|
1508
1508
|
"dev": true,
|
|
1509
1509
|
"license": "MIT",
|
|
1510
1510
|
"dependencies": {
|
|
1511
|
-
"@vue/compiler-ssr": "3.5.
|
|
1512
|
-
"@vue/shared": "3.5.
|
|
1511
|
+
"@vue/compiler-ssr": "3.5.34",
|
|
1512
|
+
"@vue/shared": "3.5.34"
|
|
1513
1513
|
},
|
|
1514
1514
|
"peerDependencies": {
|
|
1515
|
-
"vue": "3.5.
|
|
1515
|
+
"vue": "3.5.34"
|
|
1516
1516
|
}
|
|
1517
1517
|
},
|
|
1518
1518
|
"node_modules/@vue/shared": {
|
|
1519
|
-
"version": "3.5.
|
|
1520
|
-
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.
|
|
1521
|
-
"integrity": "sha512-
|
|
1519
|
+
"version": "3.5.34",
|
|
1520
|
+
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.34.tgz",
|
|
1521
|
+
"integrity": "sha512-24uqU4OIiX29ryC3MeWid/Xf2fa2EFRUVLb77nRhk+UrTVrh/XiGtFAFmJBAtBRbjwNdsPRP+jj/OL27Eg1NDA==",
|
|
1522
1522
|
"dev": true,
|
|
1523
1523
|
"license": "MIT"
|
|
1524
1524
|
},
|
|
@@ -1629,26 +1629,26 @@
|
|
|
1629
1629
|
}
|
|
1630
1630
|
},
|
|
1631
1631
|
"node_modules/algoliasearch": {
|
|
1632
|
-
"version": "5.
|
|
1633
|
-
"resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.
|
|
1634
|
-
"integrity": "sha512-
|
|
1632
|
+
"version": "5.52.1",
|
|
1633
|
+
"resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.52.1.tgz",
|
|
1634
|
+
"integrity": "sha512-fHA8+kXTbjagw3jkLiaS7KKrH8qe2DyOsiUhGlN4cdT77PEsfqXZl7ewDk1hsg+pJnPlnE50XtLxjR91iJOpmg==",
|
|
1635
1635
|
"dev": true,
|
|
1636
1636
|
"license": "MIT",
|
|
1637
1637
|
"dependencies": {
|
|
1638
|
-
"@algolia/abtesting": "1.
|
|
1639
|
-
"@algolia/client-abtesting": "5.
|
|
1640
|
-
"@algolia/client-analytics": "5.
|
|
1641
|
-
"@algolia/client-common": "5.
|
|
1642
|
-
"@algolia/client-insights": "5.
|
|
1643
|
-
"@algolia/client-personalization": "5.
|
|
1644
|
-
"@algolia/client-query-suggestions": "5.
|
|
1645
|
-
"@algolia/client-search": "5.
|
|
1646
|
-
"@algolia/ingestion": "1.
|
|
1647
|
-
"@algolia/monitoring": "1.
|
|
1648
|
-
"@algolia/recommend": "5.
|
|
1649
|
-
"@algolia/requester-browser-xhr": "5.
|
|
1650
|
-
"@algolia/requester-fetch": "5.
|
|
1651
|
-
"@algolia/requester-node-http": "5.
|
|
1638
|
+
"@algolia/abtesting": "1.18.1",
|
|
1639
|
+
"@algolia/client-abtesting": "5.52.1",
|
|
1640
|
+
"@algolia/client-analytics": "5.52.1",
|
|
1641
|
+
"@algolia/client-common": "5.52.1",
|
|
1642
|
+
"@algolia/client-insights": "5.52.1",
|
|
1643
|
+
"@algolia/client-personalization": "5.52.1",
|
|
1644
|
+
"@algolia/client-query-suggestions": "5.52.1",
|
|
1645
|
+
"@algolia/client-search": "5.52.1",
|
|
1646
|
+
"@algolia/ingestion": "1.52.1",
|
|
1647
|
+
"@algolia/monitoring": "1.52.1",
|
|
1648
|
+
"@algolia/recommend": "5.52.1",
|
|
1649
|
+
"@algolia/requester-browser-xhr": "5.52.1",
|
|
1650
|
+
"@algolia/requester-fetch": "5.52.1",
|
|
1651
|
+
"@algolia/requester-node-http": "5.52.1"
|
|
1652
1652
|
},
|
|
1653
1653
|
"engines": {
|
|
1654
1654
|
"node": ">= 14.0.0"
|
|
@@ -1722,9 +1722,9 @@
|
|
|
1722
1722
|
}
|
|
1723
1723
|
},
|
|
1724
1724
|
"node_modules/brace-expansion": {
|
|
1725
|
-
"version": "5.0.
|
|
1726
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.
|
|
1727
|
-
"integrity": "sha512-
|
|
1725
|
+
"version": "5.0.6",
|
|
1726
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
1727
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
1728
1728
|
"dev": true,
|
|
1729
1729
|
"license": "MIT",
|
|
1730
1730
|
"dependencies": {
|
|
@@ -2961,9 +2961,9 @@
|
|
|
2961
2961
|
"license": "MIT"
|
|
2962
2962
|
},
|
|
2963
2963
|
"node_modules/nanoid": {
|
|
2964
|
-
"version": "3.3.
|
|
2965
|
-
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.
|
|
2966
|
-
"integrity": "sha512-
|
|
2964
|
+
"version": "3.3.12",
|
|
2965
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
|
|
2966
|
+
"integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
|
|
2967
2967
|
"dev": true,
|
|
2968
2968
|
"funding": [
|
|
2969
2969
|
{
|
|
@@ -3013,9 +3013,9 @@
|
|
|
3013
3013
|
"license": "ISC"
|
|
3014
3014
|
},
|
|
3015
3015
|
"node_modules/postcss": {
|
|
3016
|
-
"version": "8.5.
|
|
3017
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
3018
|
-
"integrity": "sha512-
|
|
3016
|
+
"version": "8.5.14",
|
|
3017
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz",
|
|
3018
|
+
"integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==",
|
|
3019
3019
|
"dev": true,
|
|
3020
3020
|
"funding": [
|
|
3021
3021
|
{
|
|
@@ -3042,9 +3042,9 @@
|
|
|
3042
3042
|
}
|
|
3043
3043
|
},
|
|
3044
3044
|
"node_modules/preact": {
|
|
3045
|
-
"version": "10.29.
|
|
3046
|
-
"resolved": "https://registry.npmjs.org/preact/-/preact-10.29.
|
|
3047
|
-
"integrity": "sha512-
|
|
3045
|
+
"version": "10.29.2",
|
|
3046
|
+
"resolved": "https://registry.npmjs.org/preact/-/preact-10.29.2.tgz",
|
|
3047
|
+
"integrity": "sha512-7tNmwg/7mzzAoB/8kSg6Hl37JraAZw3Z3A0JSY7VXlZwo82Xn0G7wKbNNs2qoF4ZEEsQGTwDAroNdqKs1ofJxQ==",
|
|
3048
3048
|
"dev": true,
|
|
3049
3049
|
"license": "MIT",
|
|
3050
3050
|
"funding": {
|
|
@@ -3198,9 +3198,9 @@
|
|
|
3198
3198
|
"license": "MIT"
|
|
3199
3199
|
},
|
|
3200
3200
|
"node_modules/rollup": {
|
|
3201
|
-
"version": "4.60.
|
|
3202
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.
|
|
3203
|
-
"integrity": "sha512-
|
|
3201
|
+
"version": "4.60.4",
|
|
3202
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.4.tgz",
|
|
3203
|
+
"integrity": "sha512-WHeFSbZYsPu3+bLoNRUuAO+wavNlocOPf3wSHTP7hcFKVnJeWsYlCDbr3mTS14FCizf9ccIxXA8sGL8zKeQN3g==",
|
|
3204
3204
|
"dev": true,
|
|
3205
3205
|
"license": "MIT",
|
|
3206
3206
|
"dependencies": {
|
|
@@ -3214,31 +3214,31 @@
|
|
|
3214
3214
|
"npm": ">=8.0.0"
|
|
3215
3215
|
},
|
|
3216
3216
|
"optionalDependencies": {
|
|
3217
|
-
"@rollup/rollup-android-arm-eabi": "4.60.
|
|
3218
|
-
"@rollup/rollup-android-arm64": "4.60.
|
|
3219
|
-
"@rollup/rollup-darwin-arm64": "4.60.
|
|
3220
|
-
"@rollup/rollup-darwin-x64": "4.60.
|
|
3221
|
-
"@rollup/rollup-freebsd-arm64": "4.60.
|
|
3222
|
-
"@rollup/rollup-freebsd-x64": "4.60.
|
|
3223
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.60.
|
|
3224
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.60.
|
|
3225
|
-
"@rollup/rollup-linux-arm64-gnu": "4.60.
|
|
3226
|
-
"@rollup/rollup-linux-arm64-musl": "4.60.
|
|
3227
|
-
"@rollup/rollup-linux-loong64-gnu": "4.60.
|
|
3228
|
-
"@rollup/rollup-linux-loong64-musl": "4.60.
|
|
3229
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.60.
|
|
3230
|
-
"@rollup/rollup-linux-ppc64-musl": "4.60.
|
|
3231
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.60.
|
|
3232
|
-
"@rollup/rollup-linux-riscv64-musl": "4.60.
|
|
3233
|
-
"@rollup/rollup-linux-s390x-gnu": "4.60.
|
|
3234
|
-
"@rollup/rollup-linux-x64-gnu": "4.60.
|
|
3235
|
-
"@rollup/rollup-linux-x64-musl": "4.60.
|
|
3236
|
-
"@rollup/rollup-openbsd-x64": "4.60.
|
|
3237
|
-
"@rollup/rollup-openharmony-arm64": "4.60.
|
|
3238
|
-
"@rollup/rollup-win32-arm64-msvc": "4.60.
|
|
3239
|
-
"@rollup/rollup-win32-ia32-msvc": "4.60.
|
|
3240
|
-
"@rollup/rollup-win32-x64-gnu": "4.60.
|
|
3241
|
-
"@rollup/rollup-win32-x64-msvc": "4.60.
|
|
3217
|
+
"@rollup/rollup-android-arm-eabi": "4.60.4",
|
|
3218
|
+
"@rollup/rollup-android-arm64": "4.60.4",
|
|
3219
|
+
"@rollup/rollup-darwin-arm64": "4.60.4",
|
|
3220
|
+
"@rollup/rollup-darwin-x64": "4.60.4",
|
|
3221
|
+
"@rollup/rollup-freebsd-arm64": "4.60.4",
|
|
3222
|
+
"@rollup/rollup-freebsd-x64": "4.60.4",
|
|
3223
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.60.4",
|
|
3224
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.60.4",
|
|
3225
|
+
"@rollup/rollup-linux-arm64-gnu": "4.60.4",
|
|
3226
|
+
"@rollup/rollup-linux-arm64-musl": "4.60.4",
|
|
3227
|
+
"@rollup/rollup-linux-loong64-gnu": "4.60.4",
|
|
3228
|
+
"@rollup/rollup-linux-loong64-musl": "4.60.4",
|
|
3229
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.60.4",
|
|
3230
|
+
"@rollup/rollup-linux-ppc64-musl": "4.60.4",
|
|
3231
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.60.4",
|
|
3232
|
+
"@rollup/rollup-linux-riscv64-musl": "4.60.4",
|
|
3233
|
+
"@rollup/rollup-linux-s390x-gnu": "4.60.4",
|
|
3234
|
+
"@rollup/rollup-linux-x64-gnu": "4.60.4",
|
|
3235
|
+
"@rollup/rollup-linux-x64-musl": "4.60.4",
|
|
3236
|
+
"@rollup/rollup-openbsd-x64": "4.60.4",
|
|
3237
|
+
"@rollup/rollup-openharmony-arm64": "4.60.4",
|
|
3238
|
+
"@rollup/rollup-win32-arm64-msvc": "4.60.4",
|
|
3239
|
+
"@rollup/rollup-win32-ia32-msvc": "4.60.4",
|
|
3240
|
+
"@rollup/rollup-win32-x64-gnu": "4.60.4",
|
|
3241
|
+
"@rollup/rollup-win32-x64-msvc": "4.60.4",
|
|
3242
3242
|
"fsevents": "~2.3.2"
|
|
3243
3243
|
}
|
|
3244
3244
|
},
|
|
@@ -3699,17 +3699,17 @@
|
|
|
3699
3699
|
}
|
|
3700
3700
|
},
|
|
3701
3701
|
"node_modules/vue": {
|
|
3702
|
-
"version": "3.5.
|
|
3703
|
-
"resolved": "https://registry.npmjs.org/vue/-/vue-3.5.
|
|
3704
|
-
"integrity": "sha512-
|
|
3702
|
+
"version": "3.5.34",
|
|
3703
|
+
"resolved": "https://registry.npmjs.org/vue/-/vue-3.5.34.tgz",
|
|
3704
|
+
"integrity": "sha512-WdLBG9gm02OgJIG9axd5Hpx0TFLdzVgfG2evFFu8Rur5O/IoGc5cMjnjh3tPL6GnRGsYvUhBSKVPYVcxRKpMCA==",
|
|
3705
3705
|
"dev": true,
|
|
3706
3706
|
"license": "MIT",
|
|
3707
3707
|
"dependencies": {
|
|
3708
|
-
"@vue/compiler-dom": "3.5.
|
|
3709
|
-
"@vue/compiler-sfc": "3.5.
|
|
3710
|
-
"@vue/runtime-dom": "3.5.
|
|
3711
|
-
"@vue/server-renderer": "3.5.
|
|
3712
|
-
"@vue/shared": "3.5.
|
|
3708
|
+
"@vue/compiler-dom": "3.5.34",
|
|
3709
|
+
"@vue/compiler-sfc": "3.5.34",
|
|
3710
|
+
"@vue/runtime-dom": "3.5.34",
|
|
3711
|
+
"@vue/server-renderer": "3.5.34",
|
|
3712
|
+
"@vue/shared": "3.5.34"
|
|
3713
3713
|
},
|
|
3714
3714
|
"peerDependencies": {
|
|
3715
3715
|
"typescript": "*"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bigal",
|
|
3
|
-
"version": "15.11.
|
|
3
|
+
"version": "15.11.9",
|
|
4
4
|
"description": "A type-safe PostgreSQL ORM for Node.js, written in TypeScript. Features a fluent query builder, decorator-based models, and immutable query state.",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|