@openmeter/sdk 1.0.0-beta-2d0d41748bfc → 1.0.0-beta-321eb1a76d4a

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.
@@ -5685,6 +5685,7 @@ export interface components {
5685
5685
  meterSlug?: string;
5686
5686
  /**
5687
5687
  * Meter group by filters
5688
+ * @deprecated
5688
5689
  * @description Optional meter group by filters.
5689
5690
  * Useful if the meter scope is broader than what feature tracks.
5690
5691
  * Example scenario would be a meter tracking all token use with groupBy fields for the model,
@@ -5747,6 +5748,7 @@ export interface components {
5747
5748
  meterSlug?: string;
5748
5749
  /**
5749
5750
  * Meter group by filters
5751
+ * @deprecated
5750
5752
  * @description Optional meter group by filters.
5751
5753
  * Useful if the meter scope is broader than what feature tracks.
5752
5754
  * Example scenario would be a meter tracking all token use with groupBy fields for the model,
@@ -11238,9 +11240,12 @@ export interface components {
11238
11240
  *
11239
11241
  * For example: ?filterCustomerId=customer-1&filterCustomerId=customer-2 */
11240
11242
  'MeterQuery.filterCustomerId': string[];
11241
- /** @description Simple filter for group bys with exact match.
11243
+ /**
11244
+ * @deprecated
11245
+ * @description Simple filter for group bys with exact match.
11242
11246
  *
11243
- * For example: ?filterGroupBy[vendor]=openai&filterGroupBy[model]=gpt-4-turbo */
11247
+ * For example: ?filterGroupBy[vendor]=openai&filterGroupBy[model]=gpt-4-turbo
11248
+ */
11244
11249
  'MeterQuery.filterGroupBy': {
11245
11250
  [key: string]: string;
11246
11251
  };
@@ -17310,7 +17315,7 @@ export interface operations {
17310
17315
  query?: {
17311
17316
  /** @description Filter by meterSlug */
17312
17317
  meterSlug?: string[];
17313
- /** @description Filter by meterGroupByFilters */
17318
+ /** @description Include archived features in response. */
17314
17319
  includeArchived?: boolean;
17315
17320
  /** @description Page index.
17316
17321
  *
@@ -19223,9 +19228,12 @@ export interface operations {
19223
19228
  *
19224
19229
  * For example: ?filterCustomerId=customer-1&filterCustomerId=customer-2 */
19225
19230
  filterCustomerId?: components['parameters']['MeterQuery.filterCustomerId'];
19226
- /** @description Simple filter for group bys with exact match.
19231
+ /**
19232
+ * @deprecated
19233
+ * @description Simple filter for group bys with exact match.
19227
19234
  *
19228
- * For example: ?filterGroupBy[vendor]=openai&filterGroupBy[model]=gpt-4-turbo */
19235
+ * For example: ?filterGroupBy[vendor]=openai&filterGroupBy[model]=gpt-4-turbo
19236
+ */
19229
19237
  filterGroupBy?: components['parameters']['MeterQuery.filterGroupBy'];
19230
19238
  /** @description Optional advanced meter group by filters.
19231
19239
  * You can use this to filter for values of the meter groupBy fields. */
@@ -22107,9 +22115,12 @@ export interface operations {
22107
22115
  *
22108
22116
  * For example: ?filterCustomerId=customer-1&filterCustomerId=customer-2 */
22109
22117
  filterCustomerId?: components['parameters']['MeterQuery.filterCustomerId'];
22110
- /** @description Simple filter for group bys with exact match.
22118
+ /**
22119
+ * @deprecated
22120
+ * @description Simple filter for group bys with exact match.
22111
22121
  *
22112
- * For example: ?filterGroupBy[vendor]=openai&filterGroupBy[model]=gpt-4-turbo */
22122
+ * For example: ?filterGroupBy[vendor]=openai&filterGroupBy[model]=gpt-4-turbo
22123
+ */
22113
22124
  filterGroupBy?: components['parameters']['MeterQuery.filterGroupBy'];
22114
22125
  /** @description Optional advanced meter group by filters.
22115
22126
  * You can use this to filter for values of the meter groupBy fields. */
@@ -5458,7 +5458,7 @@ exports.listFeaturesQueryParams = zod_1.z.object({
5458
5458
  includeArchived: zod_1.z.coerce
5459
5459
  .boolean()
5460
5460
  .optional()
5461
- .describe('Filter by meterGroupByFilters'),
5461
+ .describe('Include archived features in response.'),
5462
5462
  limit: zod_1.z.coerce
5463
5463
  .number()
5464
5464
  .min(1)