@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/cjs/meta.d.ts
CHANGED
|
@@ -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. */
|
|
@@ -12138,6 +12145,8 @@ interface MessageEnvelope {
|
|
|
12138
12145
|
identity?: IdentificationData;
|
|
12139
12146
|
/** Stringify payload. */
|
|
12140
12147
|
data?: string;
|
|
12148
|
+
/** Details related to the account */
|
|
12149
|
+
accountInfo?: AccountInfo;
|
|
12141
12150
|
}
|
|
12142
12151
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
12143
12152
|
/**
|