@vantage-sh/vantage-client 2.11.0 → 2.12.0

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/dist/index.d.mts CHANGED
@@ -6281,14 +6281,14 @@ interface components {
6281
6281
  title: string;
6282
6282
  scenario_model_tokens?: string[];
6283
6283
  business_metric_token?: string | null;
6284
- set_as_default?: boolean;
6284
+ set_as_default?: boolean | null;
6285
6285
  };
6286
6286
  /** @description Update a scenario-model ReportForecast. */
6287
6287
  updateReportForecast: {
6288
6288
  title?: string;
6289
6289
  scenario_model_tokens?: string[];
6290
6290
  business_metric_token?: string | null;
6291
- set_as_default?: boolean;
6291
+ set_as_default?: boolean | null;
6292
6292
  };
6293
6293
  /** @description ResourceReportColumns model */
6294
6294
  ResourceReportColumns: {
@@ -6951,6 +6951,10 @@ interface components {
6951
6951
  * @example bsnss_mtrc_abc123
6952
6952
  */
6953
6953
  business_metric_token?: string | null;
6954
+ /** @description The business metric label key used for this virtual tag value. */
6955
+ label_key?: string | null;
6956
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
6957
+ label_values?: string[] | null;
6954
6958
  cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
6955
6959
  /** @description The display name for this allocation value. */
6956
6960
  display_name?: string | null;
@@ -7056,6 +7060,10 @@ interface components {
7056
7060
  name?: string;
7057
7061
  /** @description The token of an associated business metric. */
7058
7062
  business_metric_token?: string;
7063
+ /** @description The business metric label key used for this virtual tag value. */
7064
+ label_key?: string;
7065
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
7066
+ label_values?: string[];
7059
7067
  /** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
7060
7068
  display_name?: string;
7061
7069
  label_transforms?: {
@@ -7113,6 +7121,10 @@ interface components {
7113
7121
  name?: string;
7114
7122
  /** @description The token of an associated business metric. */
7115
7123
  business_metric_token?: string;
7124
+ /** @description The business metric label key used for this virtual tag value. */
7125
+ label_key?: string;
7126
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
7127
+ label_values?: string[];
7116
7128
  /** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
7117
7129
  display_name?: string;
7118
7130
  label_transforms?: {
@@ -7183,6 +7195,10 @@ interface components {
7183
7195
  name?: string;
7184
7196
  /** @description The token of an associated business metric. */
7185
7197
  business_metric_token?: string;
7198
+ /** @description The business metric label key used for this virtual tag value. */
7199
+ label_key?: string;
7200
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
7201
+ label_values?: string[];
7186
7202
  /** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
7187
7203
  display_name?: string;
7188
7204
  label_transforms?: {
package/dist/index.d.ts CHANGED
@@ -6281,14 +6281,14 @@ interface components {
6281
6281
  title: string;
6282
6282
  scenario_model_tokens?: string[];
6283
6283
  business_metric_token?: string | null;
6284
- set_as_default?: boolean;
6284
+ set_as_default?: boolean | null;
6285
6285
  };
6286
6286
  /** @description Update a scenario-model ReportForecast. */
6287
6287
  updateReportForecast: {
6288
6288
  title?: string;
6289
6289
  scenario_model_tokens?: string[];
6290
6290
  business_metric_token?: string | null;
6291
- set_as_default?: boolean;
6291
+ set_as_default?: boolean | null;
6292
6292
  };
6293
6293
  /** @description ResourceReportColumns model */
6294
6294
  ResourceReportColumns: {
@@ -6951,6 +6951,10 @@ interface components {
6951
6951
  * @example bsnss_mtrc_abc123
6952
6952
  */
6953
6953
  business_metric_token?: string | null;
6954
+ /** @description The business metric label key used for this virtual tag value. */
6955
+ label_key?: string | null;
6956
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
6957
+ label_values?: string[] | null;
6954
6958
  cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
6955
6959
  /** @description The display name for this allocation value. */
6956
6960
  display_name?: string | null;
@@ -7056,6 +7060,10 @@ interface components {
7056
7060
  name?: string;
7057
7061
  /** @description The token of an associated business metric. */
7058
7062
  business_metric_token?: string;
7063
+ /** @description The business metric label key used for this virtual tag value. */
7064
+ label_key?: string;
7065
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
7066
+ label_values?: string[];
7059
7067
  /** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
7060
7068
  display_name?: string;
7061
7069
  label_transforms?: {
@@ -7113,6 +7121,10 @@ interface components {
7113
7121
  name?: string;
7114
7122
  /** @description The token of an associated business metric. */
7115
7123
  business_metric_token?: string;
7124
+ /** @description The business metric label key used for this virtual tag value. */
7125
+ label_key?: string;
7126
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
7127
+ label_values?: string[];
7116
7128
  /** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
7117
7129
  display_name?: string;
7118
7130
  label_transforms?: {
@@ -7183,6 +7195,10 @@ interface components {
7183
7195
  name?: string;
7184
7196
  /** @description The token of an associated business metric. */
7185
7197
  business_metric_token?: string;
7198
+ /** @description The business metric label key used for this virtual tag value. */
7199
+ label_key?: string;
7200
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
7201
+ label_values?: string[];
7186
7202
  /** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
7187
7203
  display_name?: string;
7188
7204
  label_transforms?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vantage-sh/vantage-client",
3
- "version": "2.11.0",
3
+ "version": "2.12.0",
4
4
  "description": "The Vantage Client SDK for TypeScript and JavaScript applications.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@biomejs/biome": "2.2.5",
27
- "@types/node": "^25.0.3",
27
+ "@types/node": "^26.0.1",
28
28
  "dotenv": "^17.4.2",
29
29
  "openapi-typescript": "^7.10.1",
30
30
  "tsup": "^8.5.1",