@ai-sdk/gateway 1.0.39 → 1.0.40
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/CHANGELOG.md +6 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -115,6 +115,8 @@ declare const gateway: GatewayProvider;
|
|
|
115
115
|
declare const gatewayProviderOptions: _ai_sdk_provider_utils.LazyValidator<{
|
|
116
116
|
only?: string[] | undefined;
|
|
117
117
|
order?: string[] | undefined;
|
|
118
|
+
user?: string | undefined;
|
|
119
|
+
tags?: string[] | undefined;
|
|
118
120
|
}>;
|
|
119
121
|
type GatewayProviderOptions = InferValidator<typeof gatewayProviderOptions>;
|
|
120
122
|
|
package/dist/index.d.ts
CHANGED
|
@@ -115,6 +115,8 @@ declare const gateway: GatewayProvider;
|
|
|
115
115
|
declare const gatewayProviderOptions: _ai_sdk_provider_utils.LazyValidator<{
|
|
116
116
|
only?: string[] | undefined;
|
|
117
117
|
order?: string[] | undefined;
|
|
118
|
+
user?: string | undefined;
|
|
119
|
+
tags?: string[] | undefined;
|
|
118
120
|
}>;
|
|
119
121
|
type GatewayProviderOptions = InferValidator<typeof gatewayProviderOptions>;
|
|
120
122
|
|
package/dist/index.js
CHANGED
|
@@ -719,7 +719,7 @@ async function getVercelRequestId() {
|
|
|
719
719
|
var import_provider_utils8 = require("@ai-sdk/provider-utils");
|
|
720
720
|
|
|
721
721
|
// src/version.ts
|
|
722
|
-
var VERSION = true ? "1.0.
|
|
722
|
+
var VERSION = true ? "1.0.40" : "0.0.0-test";
|
|
723
723
|
|
|
724
724
|
// src/gateway-provider.ts
|
|
725
725
|
var AI_GATEWAY_PROTOCOL_VERSION = "0.0.1";
|
package/dist/index.mjs
CHANGED
|
@@ -717,7 +717,7 @@ async function getVercelRequestId() {
|
|
|
717
717
|
import { withUserAgentSuffix } from "@ai-sdk/provider-utils";
|
|
718
718
|
|
|
719
719
|
// src/version.ts
|
|
720
|
-
var VERSION = true ? "1.0.
|
|
720
|
+
var VERSION = true ? "1.0.40" : "0.0.0-test";
|
|
721
721
|
|
|
722
722
|
// src/gateway-provider.ts
|
|
723
723
|
var AI_GATEWAY_PROTOCOL_VERSION = "0.0.1";
|