@wix/auto_sdk_ai-gateway_generators 1.0.59 → 1.0.60

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.
@@ -7979,6 +7979,8 @@ interface UsageMetadata {
7979
7979
  totalTokenCount?: number | null;
7980
7980
  /** Optional. Number of tokens of thoughts for thinking models. */
7981
7981
  thoughtsTokenCount?: number | null;
7982
+ /** Optional. Number of cached input tokens. */
7983
+ cachedContentTokenCount?: number | null;
7982
7984
  /**
7983
7985
  * Output only. List of modalities that were processed in the request input.
7984
7986
  * @maxSize 10
@@ -7989,6 +7991,11 @@ interface UsageMetadata {
7989
7991
  * @maxSize 10
7990
7992
  */
7991
7993
  candidatesTokensDetails?: ModalityTokenCount[];
7994
+ /**
7995
+ * Output only. List of modalities that were cached from the input
7996
+ * @maxSize 10
7997
+ */
7998
+ cacheTokensDetails?: ModalityTokenCount[];
7992
7999
  }
7993
8000
  interface ModalityTokenCount {
7994
8001
  /** The modality associated with this token count. */