@vantage-sh/vantage-client 2.15.0 → 2.16.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
@@ -6763,7 +6763,9 @@ interface components {
6763
6763
  tag_key?: string;
6764
6764
  tag_keys?: string[];
6765
6765
  /** @description Whether the Tag is hidden from the Vantage UI. */
6766
- hidden: boolean;
6766
+ hidden?: boolean;
6767
+ /** @description Whether the Tag is marked as preferred in the Vantage UI. */
6768
+ preferred?: boolean;
6767
6769
  };
6768
6770
  /** @description Teams model */
6769
6771
  Teams: {
@@ -10214,6 +10216,10 @@ interface operations {
10214
10216
  getCostAlerts: {
10215
10217
  parameters: {
10216
10218
  query?: {
10219
+ /** @description The page of results to return. */
10220
+ page?: number;
10221
+ /** @description The amount of results to return. The maximum is 5000. */
10222
+ limit?: number;
10217
10223
  /** @description Search cost alerts by title. */
10218
10224
  q?: string;
10219
10225
  /** @description The workspace token of the cost alerts to return. */
package/dist/index.d.ts CHANGED
@@ -6763,7 +6763,9 @@ interface components {
6763
6763
  tag_key?: string;
6764
6764
  tag_keys?: string[];
6765
6765
  /** @description Whether the Tag is hidden from the Vantage UI. */
6766
- hidden: boolean;
6766
+ hidden?: boolean;
6767
+ /** @description Whether the Tag is marked as preferred in the Vantage UI. */
6768
+ preferred?: boolean;
6767
6769
  };
6768
6770
  /** @description Teams model */
6769
6771
  Teams: {
@@ -10214,6 +10216,10 @@ interface operations {
10214
10216
  getCostAlerts: {
10215
10217
  parameters: {
10216
10218
  query?: {
10219
+ /** @description The page of results to return. */
10220
+ page?: number;
10221
+ /** @description The amount of results to return. The maximum is 5000. */
10222
+ limit?: number;
10217
10223
  /** @description Search cost alerts by title. */
10218
10224
  q?: string;
10219
10225
  /** @description The workspace token of the cost alerts to return. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vantage-sh/vantage-client",
3
- "version": "2.15.0",
3
+ "version": "2.16.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",