@bitbitpress/client 1.2.2 → 1.2.3
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/dist/generated/openapi.d.ts +18 -10
- package/package.json +1 -1
|
@@ -1102,19 +1102,23 @@ export interface paths {
|
|
|
1102
1102
|
configurationKeyName?: string;
|
|
1103
1103
|
/** @description How many recent stored synthesis outputs to expose in the streamed `synthesisHistory` / `synthesisHistoryEntries` fields. Defaults to 0 (no history emitted). When > 0, the final data event includes a `synthesisHistoryEntries` array of up to N `{ synthesisOutputId, data }` (most-recent first; each row's payload paired with its output id, so submissions can attach to a specific historical output), and — DEPRECATED, for older app builds — an index-aligned `synthesisHistory` array of the same bare `data` payloads. The first entry is the current synthesis itself — the same payload `data` is derived from — and the remaining entries are older stored rows. */
|
|
1104
1104
|
synthesisHistoryLimit?: number;
|
|
1105
|
-
/** @description Per-request overrides for search options. */
|
|
1105
|
+
/** @description Per-request overrides for the entry agent's search options (merged over the config). Deliberately limited to per-request scoping — a recency window and tag filters. Search SHAPE (which data sources, search type, mime/asset types, result/bit counts) is a config-design decision and is NOT overridable per request. */
|
|
1106
1106
|
searchOptionsOverrides?: {
|
|
1107
1107
|
/** @description Override for search lookback window in minutes (e.g. 1440 for last 24 hours). */
|
|
1108
1108
|
lookbackMinutes?: number;
|
|
1109
|
+
/** @description Only include assets carrying at least one of these tags. */
|
|
1110
|
+
includeTags?: string[];
|
|
1111
|
+
/** @description Exclude assets carrying any of these tags. */
|
|
1112
|
+
excludeTags?: string[];
|
|
1109
1113
|
};
|
|
1110
|
-
/** @description Inputs used as context for the synthesis: externalId (
|
|
1114
|
+
/** @description Inputs used as context for the synthesis. Each agent only receives the input types listed in its own config. Types: text (freeform), externalId (an asset by external id, injected as context), assetIds (comma-separated INTERNAL asset ids, injected as context), synthesisOutputIds (comma-separated SynthesisOutput ids whose data is injected as context), excludeExternalIds / excludeAssetIds (comma-separated ids excluded from search). */
|
|
1111
1115
|
inputs?: {
|
|
1112
1116
|
/**
|
|
1113
|
-
* @description
|
|
1117
|
+
* @description Input type. externalId = one asset by external id; assetIds = internal asset ids (comma-separated); synthesisOutputIds = prior output ids (comma-separated); text = freeform; excludeExternalIds / excludeAssetIds = ids to exclude from search (comma-separated).
|
|
1114
1118
|
* @enum {string}
|
|
1115
1119
|
*/
|
|
1116
|
-
type: "externalId" | "text" | "excludeExternalIds";
|
|
1117
|
-
/** @description
|
|
1120
|
+
type: "externalId" | "text" | "assetIds" | "synthesisOutputIds" | "excludeExternalIds" | "excludeAssetIds";
|
|
1121
|
+
/** @description The input value: an external id / freeform text, or a comma-separated list of ids for assetIds / synthesisOutputIds / excludeExternalIds / excludeAssetIds. */
|
|
1118
1122
|
value: string;
|
|
1119
1123
|
}[];
|
|
1120
1124
|
/** @description Optional output definition. Omit to use the output schema declared on the config named by `configurationKeyName` (`output.outputSchema`). */
|
|
@@ -1270,19 +1274,23 @@ export interface paths {
|
|
|
1270
1274
|
keyName: string;
|
|
1271
1275
|
/** @description How many recent stored synthesis outputs to expose in the streamed `synthesisHistory` / `synthesisHistoryEntries` fields. Defaults to 0. See `/v1/user/synthesize` for the full semantics. */
|
|
1272
1276
|
synthesisHistoryLimit?: number;
|
|
1273
|
-
/** @description Per-request overrides for search options. */
|
|
1277
|
+
/** @description Per-request overrides for the entry agent's search options (merged over the config). Deliberately limited to per-request scoping — a recency window and tag filters. Search SHAPE (which data sources, search type, mime/asset types, result/bit counts) is a config-design decision and is NOT overridable per request. */
|
|
1274
1278
|
searchOptionsOverrides?: {
|
|
1275
1279
|
/** @description Override for search lookback window in minutes (e.g. 1440 for last 24 hours). */
|
|
1276
1280
|
lookbackMinutes?: number;
|
|
1281
|
+
/** @description Only include assets carrying at least one of these tags. */
|
|
1282
|
+
includeTags?: string[];
|
|
1283
|
+
/** @description Exclude assets carrying any of these tags. */
|
|
1284
|
+
excludeTags?: string[];
|
|
1277
1285
|
};
|
|
1278
|
-
/** @description Inputs used as context for the synthesis: externalId (
|
|
1286
|
+
/** @description Inputs used as context for the synthesis. Each agent only receives the input types listed in its own config. Types: text (freeform), externalId (an asset by external id), assetIds (comma-separated INTERNAL asset ids), synthesisOutputIds (comma-separated SynthesisOutput ids whose data is injected as context), excludeExternalIds / excludeAssetIds (comma-separated ids excluded from search). */
|
|
1279
1287
|
inputs?: {
|
|
1280
1288
|
/**
|
|
1281
|
-
* @description
|
|
1289
|
+
* @description Input type. externalId = one asset by external id; assetIds = internal asset ids (comma-separated); synthesisOutputIds = prior output ids (comma-separated); text = freeform; excludeExternalIds / excludeAssetIds = ids to exclude from search (comma-separated).
|
|
1282
1290
|
* @enum {string}
|
|
1283
1291
|
*/
|
|
1284
|
-
type: "externalId" | "text" | "excludeExternalIds";
|
|
1285
|
-
/** @description
|
|
1292
|
+
type: "externalId" | "text" | "assetIds" | "synthesisOutputIds" | "excludeExternalIds" | "excludeAssetIds";
|
|
1293
|
+
/** @description The input value: an external id / freeform text, or a comma-separated list of ids for assetIds / synthesisOutputIds / excludeExternalIds / excludeAssetIds. */
|
|
1286
1294
|
value: string;
|
|
1287
1295
|
}[];
|
|
1288
1296
|
/** @description Optional output definition. Omit to use the output schema declared on the UI's attached config (`output.outputSchema`). */
|