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