@wix/auto_sdk_ai-gateway_generators 1.0.59 → 1.0.61
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/build/cjs/index.d.ts +9 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +9 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +9 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +9 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +9 -9
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +18 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +9 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +9 -9
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +18 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +9 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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. */
|
|
@@ -12139,6 +12146,8 @@ interface MessageEnvelope {
|
|
|
12139
12146
|
identity?: IdentificationData;
|
|
12140
12147
|
/** Stringify payload. */
|
|
12141
12148
|
data?: string;
|
|
12149
|
+
/** Details related to the account */
|
|
12150
|
+
accountInfo?: AccountInfo;
|
|
12142
12151
|
}
|
|
12143
12152
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
12144
12153
|
/**
|