two-stroke 6.5.2 → 6.5.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
CHANGED
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"type-check": "./bin/type-check.mjs"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@cloudflare/vitest-pool-workers": "^0.12.
|
|
13
|
+
"@cloudflare/vitest-pool-workers": "^0.12.21",
|
|
14
14
|
"@sentry/cli": "^3.3.0",
|
|
15
15
|
"@types/node": "^25.3.3",
|
|
16
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
17
|
-
"@typescript-eslint/parser": "^8.
|
|
16
|
+
"@typescript-eslint/eslint-plugin": "^8.57.1",
|
|
17
|
+
"@typescript-eslint/parser": "^8.57.1",
|
|
18
18
|
"@vitest/coverage-istanbul": "^4.0.18",
|
|
19
19
|
"eslint-config-prettier": "^10.1.8",
|
|
20
|
-
"eslint-config-two-stroke": "^1.
|
|
20
|
+
"eslint-config-two-stroke": "^1.5.0",
|
|
21
21
|
"eslint-config-typescript": "^3.0.0",
|
|
22
22
|
"jose": "^6.2.0",
|
|
23
23
|
"jwk-subtle": "^1.1.5",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"url": "https://github.com/change-engine/two-stroke"
|
|
58
58
|
},
|
|
59
59
|
"type": "module",
|
|
60
|
-
"version": "6.5.
|
|
60
|
+
"version": "6.5.3",
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@types/eslint": "^9.6.1",
|
|
63
63
|
"eslint": "^10.0.3",
|
|
@@ -8826,7 +8826,7 @@ type AIGatewayHeaders = {
|
|
|
8826
8826
|
[key: string]: string | number | boolean | object;
|
|
8827
8827
|
};
|
|
8828
8828
|
type AIGatewayUniversalRequest = {
|
|
8829
|
-
provider: AIGatewayProviders | string;
|
|
8829
|
+
provider: AIGatewayProviders | string;
|
|
8830
8830
|
endpoint: string;
|
|
8831
8831
|
headers: Partial<AIGatewayHeaders>;
|
|
8832
8832
|
query: unknown;
|
|
@@ -8842,7 +8842,7 @@ declare abstract class AiGateway {
|
|
|
8842
8842
|
gateway?: UniversalGatewayOptions;
|
|
8843
8843
|
extraHeaders?: object;
|
|
8844
8844
|
}): Promise<Response>;
|
|
8845
|
-
getUrl(provider?: AIGatewayProviders | string): Promise<string>;
|
|
8845
|
+
getUrl(provider?: AIGatewayProviders | string): Promise<string>;
|
|
8846
8846
|
}
|
|
8847
8847
|
/**
|
|
8848
8848
|
* @deprecated AutoRAG has been replaced by AI Search. Use AiSearchInternalError instead.
|