@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ai-sdk/gateway
2
2
 
3
+ ## 1.0.40
4
+
5
+ ### Patch Changes
6
+
7
+ - f6a9bf3: feat (provider/gateway): add user and tags provider options
8
+
3
9
  ## 1.0.39
4
10
 
5
11
  ### Patch Changes
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.39" : "0.0.0-test";
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.39" : "0.0.0-test";
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";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ai-sdk/gateway",
3
3
  "private": false,
4
- "version": "1.0.39",
4
+ "version": "1.0.40",
5
5
  "license": "Apache-2.0",
6
6
  "sideEffects": false,
7
7
  "main": "./dist/index.js",