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