@openmeter/sdk 1.0.0-beta-d605dc80b487 → 1.0.0-beta-6eb43caa343d

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.
@@ -6163,7 +6163,8 @@ export interface components {
6163
6163
  * Token type
6164
6164
  * @description Static token type value.
6165
6165
  * Use this when the feature tracks a single token type (e.g., only input tokens).
6166
- * Expected values: input, output, cache_read, reasoning, cache_write.
6166
+ * Expected values: input, output, cache_read, reasoning, cache_write, request, response.
6167
+ * `request` is an alias for `input`, `response` is an alias for `output`.
6167
6168
  * Mutually exclusive with `tokenTypeProperty`.
6168
6169
  */
6169
6170
  tokenType?: string;
@@ -5791,7 +5791,7 @@ exports.CreateFeatureBody = zod
5791
5791
  tokenType: zod.coerce
5792
5792
  .string()
5793
5793
  .optional()
5794
- .describe('Static token type value.\nUse this when the feature tracks a single token type (e.g., only input tokens).\nExpected values: input, output, cache_read, reasoning, cache_write.\nMutually exclusive with `tokenTypeProperty`.'),
5794
+ .describe('Static token type value.\nUse this when the feature tracks a single token type (e.g., only input tokens).\nExpected values: input, output, cache_read, reasoning, cache_write, request, response.\n`request` is an alias for `input`, `response` is an alias for `output`.\nMutually exclusive with `tokenTypeProperty`.'),
5795
5795
  tokenTypeProperty: zod.coerce
5796
5796
  .string()
5797
5797
  .optional()