@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
package/build/es/index.d.mts
CHANGED
|
@@ -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. */
|
|
@@ -12133,6 +12140,8 @@ interface MessageEnvelope {
|
|
|
12133
12140
|
identity?: IdentificationData;
|
|
12134
12141
|
/** Stringify payload. */
|
|
12135
12142
|
data?: string;
|
|
12143
|
+
/** Details related to the account */
|
|
12144
|
+
accountInfo?: AccountInfo;
|
|
12136
12145
|
}
|
|
12137
12146
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
12138
12147
|
/**
|