@vectorize-io/hindsight-client 0.4.20 → 0.4.22
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/index.d.mts +383 -13
- package/dist/index.d.ts +383 -13
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/generated/sdk.gen.ts +34 -0
- package/generated/types.gen.ts +404 -12
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -32,6 +32,136 @@ type AsyncOperationSubmitResponse = {
|
|
|
32
32
|
*/
|
|
33
33
|
status: string;
|
|
34
34
|
};
|
|
35
|
+
/**
|
|
36
|
+
* AuditLogEntry
|
|
37
|
+
*
|
|
38
|
+
* A single audit log entry.
|
|
39
|
+
*/
|
|
40
|
+
type AuditLogEntry = {
|
|
41
|
+
/**
|
|
42
|
+
* Id
|
|
43
|
+
*/
|
|
44
|
+
id: string;
|
|
45
|
+
/**
|
|
46
|
+
* Action
|
|
47
|
+
*/
|
|
48
|
+
action: string;
|
|
49
|
+
/**
|
|
50
|
+
* Transport
|
|
51
|
+
*/
|
|
52
|
+
transport: string;
|
|
53
|
+
/**
|
|
54
|
+
* Bank Id
|
|
55
|
+
*/
|
|
56
|
+
bank_id: string | null;
|
|
57
|
+
/**
|
|
58
|
+
* Started At
|
|
59
|
+
*/
|
|
60
|
+
started_at: string | null;
|
|
61
|
+
/**
|
|
62
|
+
* Ended At
|
|
63
|
+
*/
|
|
64
|
+
ended_at: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* Duration Ms
|
|
67
|
+
*
|
|
68
|
+
* Server-computed duration in milliseconds (started_at → ended_at). Null if not yet completed.
|
|
69
|
+
*/
|
|
70
|
+
duration_ms?: number | null;
|
|
71
|
+
/**
|
|
72
|
+
* Request
|
|
73
|
+
*/
|
|
74
|
+
request: {
|
|
75
|
+
[key: string]: unknown;
|
|
76
|
+
} | null;
|
|
77
|
+
/**
|
|
78
|
+
* Response
|
|
79
|
+
*/
|
|
80
|
+
response: {
|
|
81
|
+
[key: string]: unknown;
|
|
82
|
+
} | null;
|
|
83
|
+
/**
|
|
84
|
+
* Metadata
|
|
85
|
+
*/
|
|
86
|
+
metadata: {
|
|
87
|
+
[key: string]: unknown;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* AuditLogListResponse
|
|
92
|
+
*
|
|
93
|
+
* Response model for list audit logs endpoint.
|
|
94
|
+
*/
|
|
95
|
+
type AuditLogListResponse = {
|
|
96
|
+
/**
|
|
97
|
+
* Bank Id
|
|
98
|
+
*/
|
|
99
|
+
bank_id: string;
|
|
100
|
+
/**
|
|
101
|
+
* Total
|
|
102
|
+
*/
|
|
103
|
+
total: number;
|
|
104
|
+
/**
|
|
105
|
+
* Limit
|
|
106
|
+
*/
|
|
107
|
+
limit: number;
|
|
108
|
+
/**
|
|
109
|
+
* Offset
|
|
110
|
+
*/
|
|
111
|
+
offset: number;
|
|
112
|
+
/**
|
|
113
|
+
* Items
|
|
114
|
+
*/
|
|
115
|
+
items: Array<AuditLogEntry>;
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* AuditLogStatsBucket
|
|
119
|
+
*
|
|
120
|
+
* A single time bucket in audit log stats.
|
|
121
|
+
*/
|
|
122
|
+
type AuditLogStatsBucket = {
|
|
123
|
+
/**
|
|
124
|
+
* Time
|
|
125
|
+
*/
|
|
126
|
+
time: string;
|
|
127
|
+
/**
|
|
128
|
+
* Actions
|
|
129
|
+
*/
|
|
130
|
+
actions: {
|
|
131
|
+
[key: string]: number;
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* Total
|
|
135
|
+
*/
|
|
136
|
+
total: number;
|
|
137
|
+
};
|
|
138
|
+
/**
|
|
139
|
+
* AuditLogStatsResponse
|
|
140
|
+
*
|
|
141
|
+
* Response model for audit log stats endpoint.
|
|
142
|
+
*/
|
|
143
|
+
type AuditLogStatsResponse = {
|
|
144
|
+
/**
|
|
145
|
+
* Bank Id
|
|
146
|
+
*/
|
|
147
|
+
bank_id: string;
|
|
148
|
+
/**
|
|
149
|
+
* Period
|
|
150
|
+
*/
|
|
151
|
+
period: string;
|
|
152
|
+
/**
|
|
153
|
+
* Trunc
|
|
154
|
+
*/
|
|
155
|
+
trunc: string;
|
|
156
|
+
/**
|
|
157
|
+
* Start
|
|
158
|
+
*/
|
|
159
|
+
start: string;
|
|
160
|
+
/**
|
|
161
|
+
* Buckets
|
|
162
|
+
*/
|
|
163
|
+
buckets: Array<AuditLogStatsBucket>;
|
|
164
|
+
};
|
|
35
165
|
/**
|
|
36
166
|
* BackgroundResponse
|
|
37
167
|
*
|
|
@@ -569,7 +699,7 @@ type CreateMentalModelRequest = {
|
|
|
569
699
|
/**
|
|
570
700
|
* Trigger settings
|
|
571
701
|
*/
|
|
572
|
-
trigger?:
|
|
702
|
+
trigger?: MentalModelTriggerInput;
|
|
573
703
|
};
|
|
574
704
|
/**
|
|
575
705
|
* CreateMentalModelResponse
|
|
@@ -786,6 +916,22 @@ type DocumentResponse = {
|
|
|
786
916
|
* Tags associated with this document
|
|
787
917
|
*/
|
|
788
918
|
tags?: Array<string>;
|
|
919
|
+
/**
|
|
920
|
+
* Document Metadata
|
|
921
|
+
*
|
|
922
|
+
* Document metadata
|
|
923
|
+
*/
|
|
924
|
+
document_metadata?: {
|
|
925
|
+
[key: string]: unknown;
|
|
926
|
+
} | null;
|
|
927
|
+
/**
|
|
928
|
+
* Retain Params
|
|
929
|
+
*
|
|
930
|
+
* Parameters used during retain
|
|
931
|
+
*/
|
|
932
|
+
retain_params?: {
|
|
933
|
+
[key: string]: unknown;
|
|
934
|
+
} | null;
|
|
789
935
|
};
|
|
790
936
|
/**
|
|
791
937
|
* EntityDetailResponse
|
|
@@ -1242,7 +1388,7 @@ type MentalModelResponse = {
|
|
|
1242
1388
|
* Max Tokens
|
|
1243
1389
|
*/
|
|
1244
1390
|
max_tokens?: number;
|
|
1245
|
-
trigger?:
|
|
1391
|
+
trigger?: MentalModelTriggerOutput;
|
|
1246
1392
|
/**
|
|
1247
1393
|
* Last Refreshed At
|
|
1248
1394
|
*/
|
|
@@ -1265,7 +1411,7 @@ type MentalModelResponse = {
|
|
|
1265
1411
|
*
|
|
1266
1412
|
* Trigger settings for a mental model.
|
|
1267
1413
|
*/
|
|
1268
|
-
type
|
|
1414
|
+
type MentalModelTriggerInput = {
|
|
1269
1415
|
/**
|
|
1270
1416
|
* Refresh After Consolidation
|
|
1271
1417
|
*
|
|
@@ -1290,6 +1436,61 @@ type MentalModelTrigger = {
|
|
|
1290
1436
|
* Exclude specific mental models by ID from the reflect loop.
|
|
1291
1437
|
*/
|
|
1292
1438
|
exclude_mental_model_ids?: Array<string> | null;
|
|
1439
|
+
/**
|
|
1440
|
+
* Tags Match
|
|
1441
|
+
*
|
|
1442
|
+
* Override how the model's tags filter memories during refresh. If not set, defaults to 'all_strict' when the model has tags (security isolation) or 'any' when the model has no tags. Set to 'any' to include untagged memories alongside tagged ones during refresh.
|
|
1443
|
+
*/
|
|
1444
|
+
tags_match?: "any" | "all" | "any_strict" | "all_strict" | null;
|
|
1445
|
+
/**
|
|
1446
|
+
* Tag Groups
|
|
1447
|
+
*
|
|
1448
|
+
* Compound boolean tag expressions to use during refresh instead of the model's own tags. When set, these tag groups are passed to reflect and the model's flat tags are NOT used for filtering. Supports nested and/or/not expressions for complex tag-based scoping.
|
|
1449
|
+
*/
|
|
1450
|
+
tag_groups?: Array<TagGroupLeaf | TagGroupAndInput | TagGroupOrInput | TagGroupNotInput> | null;
|
|
1451
|
+
};
|
|
1452
|
+
/**
|
|
1453
|
+
* MentalModelTrigger
|
|
1454
|
+
*
|
|
1455
|
+
* Trigger settings for a mental model.
|
|
1456
|
+
*/
|
|
1457
|
+
type MentalModelTriggerOutput = {
|
|
1458
|
+
/**
|
|
1459
|
+
* Refresh After Consolidation
|
|
1460
|
+
*
|
|
1461
|
+
* If true, refresh this mental model after observations consolidation (real-time mode)
|
|
1462
|
+
*/
|
|
1463
|
+
refresh_after_consolidation?: boolean;
|
|
1464
|
+
/**
|
|
1465
|
+
* Fact Types
|
|
1466
|
+
*
|
|
1467
|
+
* Filter which fact types are retrieved during reflect. None means all types (world, experience, observation).
|
|
1468
|
+
*/
|
|
1469
|
+
fact_types?: Array<"world" | "experience" | "observation"> | null;
|
|
1470
|
+
/**
|
|
1471
|
+
* Exclude Mental Models
|
|
1472
|
+
*
|
|
1473
|
+
* If true, exclude all mental models from the reflect loop (skip search_mental_models tool).
|
|
1474
|
+
*/
|
|
1475
|
+
exclude_mental_models?: boolean;
|
|
1476
|
+
/**
|
|
1477
|
+
* Exclude Mental Model Ids
|
|
1478
|
+
*
|
|
1479
|
+
* Exclude specific mental models by ID from the reflect loop.
|
|
1480
|
+
*/
|
|
1481
|
+
exclude_mental_model_ids?: Array<string> | null;
|
|
1482
|
+
/**
|
|
1483
|
+
* Tags Match
|
|
1484
|
+
*
|
|
1485
|
+
* Override how the model's tags filter memories during refresh. If not set, defaults to 'all_strict' when the model has tags (security isolation) or 'any' when the model has no tags. Set to 'any' to include untagged memories alongside tagged ones during refresh.
|
|
1486
|
+
*/
|
|
1487
|
+
tags_match?: "any" | "all" | "any_strict" | "all_strict" | null;
|
|
1488
|
+
/**
|
|
1489
|
+
* Tag Groups
|
|
1490
|
+
*
|
|
1491
|
+
* Compound boolean tag expressions to use during refresh instead of the model's own tags. When set, these tag groups are passed to reflect and the model's flat tags are NOT used for filtering. Supports nested and/or/not expressions for complex tag-based scoping.
|
|
1492
|
+
*/
|
|
1493
|
+
tag_groups?: Array<TagGroupLeaf | TagGroupAndOutput | TagGroupOrOutput | TagGroupNotOutput> | null;
|
|
1293
1494
|
};
|
|
1294
1495
|
/**
|
|
1295
1496
|
* OperationResponse
|
|
@@ -1454,7 +1655,7 @@ type RecallRequest = {
|
|
|
1454
1655
|
*
|
|
1455
1656
|
* Compound tag filter using boolean groups. Groups in the list are AND-ed. Each group is a leaf {tags, match} or compound {and: [...]}, {or: [...]}, {not: ...}.
|
|
1456
1657
|
*/
|
|
1457
|
-
tag_groups?: Array<TagGroupLeaf |
|
|
1658
|
+
tag_groups?: Array<TagGroupLeaf | TagGroupAndInput | TagGroupOrInput | TagGroupNotInput> | null;
|
|
1458
1659
|
};
|
|
1459
1660
|
/**
|
|
1460
1661
|
* RecallResponse
|
|
@@ -1765,7 +1966,7 @@ type ReflectRequest = {
|
|
|
1765
1966
|
*
|
|
1766
1967
|
* Compound tag filter using boolean groups. Groups in the list are AND-ed. Each group is a leaf {tags, match} or compound {and: [...]}, {or: [...]}, {not: ...}.
|
|
1767
1968
|
*/
|
|
1768
|
-
tag_groups?: Array<TagGroupLeaf |
|
|
1969
|
+
tag_groups?: Array<TagGroupLeaf | TagGroupAndInput | TagGroupOrInput | TagGroupNotInput> | null;
|
|
1769
1970
|
/**
|
|
1770
1971
|
* Fact Types
|
|
1771
1972
|
*
|
|
@@ -1987,11 +2188,22 @@ type SourceFactsIncludeOptions = {
|
|
|
1987
2188
|
*
|
|
1988
2189
|
* Compound AND group: all child filters must match.
|
|
1989
2190
|
*/
|
|
1990
|
-
type
|
|
2191
|
+
type TagGroupAndInput = {
|
|
2192
|
+
/**
|
|
2193
|
+
* And
|
|
2194
|
+
*/
|
|
2195
|
+
and: Array<TagGroupLeaf | TagGroupAndInput | TagGroupOrInput | TagGroupNotInput>;
|
|
2196
|
+
};
|
|
2197
|
+
/**
|
|
2198
|
+
* TagGroupAnd
|
|
2199
|
+
*
|
|
2200
|
+
* Compound AND group: all child filters must match.
|
|
2201
|
+
*/
|
|
2202
|
+
type TagGroupAndOutput = {
|
|
1991
2203
|
/**
|
|
1992
2204
|
* And
|
|
1993
2205
|
*/
|
|
1994
|
-
and: Array<TagGroupLeaf |
|
|
2206
|
+
and: Array<TagGroupLeaf | TagGroupAndOutput | TagGroupOrOutput | TagGroupNotOutput>;
|
|
1995
2207
|
};
|
|
1996
2208
|
/**
|
|
1997
2209
|
* TagGroupLeaf
|
|
@@ -2013,22 +2225,44 @@ type TagGroupLeaf = {
|
|
|
2013
2225
|
*
|
|
2014
2226
|
* Compound NOT group: child filter must NOT match.
|
|
2015
2227
|
*/
|
|
2016
|
-
type
|
|
2228
|
+
type TagGroupNotInput = {
|
|
2017
2229
|
/**
|
|
2018
2230
|
* Not
|
|
2019
2231
|
*/
|
|
2020
|
-
not: TagGroupLeaf |
|
|
2232
|
+
not: TagGroupLeaf | TagGroupAndInput | TagGroupOrInput | TagGroupNotInput;
|
|
2233
|
+
};
|
|
2234
|
+
/**
|
|
2235
|
+
* TagGroupNot
|
|
2236
|
+
*
|
|
2237
|
+
* Compound NOT group: child filter must NOT match.
|
|
2238
|
+
*/
|
|
2239
|
+
type TagGroupNotOutput = {
|
|
2240
|
+
/**
|
|
2241
|
+
* Not
|
|
2242
|
+
*/
|
|
2243
|
+
not: TagGroupLeaf | TagGroupAndOutput | TagGroupOrOutput | TagGroupNotOutput;
|
|
2021
2244
|
};
|
|
2022
2245
|
/**
|
|
2023
2246
|
* TagGroupOr
|
|
2024
2247
|
*
|
|
2025
2248
|
* Compound OR group: at least one child filter must match.
|
|
2026
2249
|
*/
|
|
2027
|
-
type
|
|
2250
|
+
type TagGroupOrInput = {
|
|
2028
2251
|
/**
|
|
2029
2252
|
* Or
|
|
2030
2253
|
*/
|
|
2031
|
-
or: Array<TagGroupLeaf |
|
|
2254
|
+
or: Array<TagGroupLeaf | TagGroupAndInput | TagGroupOrInput | TagGroupNotInput>;
|
|
2255
|
+
};
|
|
2256
|
+
/**
|
|
2257
|
+
* TagGroupOr
|
|
2258
|
+
*
|
|
2259
|
+
* Compound OR group: at least one child filter must match.
|
|
2260
|
+
*/
|
|
2261
|
+
type TagGroupOrOutput = {
|
|
2262
|
+
/**
|
|
2263
|
+
* Or
|
|
2264
|
+
*/
|
|
2265
|
+
or: Array<TagGroupLeaf | TagGroupAndOutput | TagGroupOrOutput | TagGroupNotOutput>;
|
|
2032
2266
|
};
|
|
2033
2267
|
/**
|
|
2034
2268
|
* TagItem
|
|
@@ -2192,7 +2426,7 @@ type UpdateMentalModelRequest = {
|
|
|
2192
2426
|
/**
|
|
2193
2427
|
* Trigger settings
|
|
2194
2428
|
*/
|
|
2195
|
-
trigger?:
|
|
2429
|
+
trigger?: MentalModelTriggerInput | null;
|
|
2196
2430
|
};
|
|
2197
2431
|
/**
|
|
2198
2432
|
* UpdateWebhookRequest
|
|
@@ -2245,6 +2479,20 @@ type ValidationError = {
|
|
|
2245
2479
|
* Error Type
|
|
2246
2480
|
*/
|
|
2247
2481
|
type: string;
|
|
2482
|
+
/**
|
|
2483
|
+
* Input
|
|
2484
|
+
*/
|
|
2485
|
+
input?: unknown;
|
|
2486
|
+
/**
|
|
2487
|
+
* Context
|
|
2488
|
+
*/
|
|
2489
|
+
ctx?: {
|
|
2490
|
+
[key: string]: unknown;
|
|
2491
|
+
};
|
|
2492
|
+
/**
|
|
2493
|
+
* URL
|
|
2494
|
+
*/
|
|
2495
|
+
url?: string;
|
|
2248
2496
|
};
|
|
2249
2497
|
/**
|
|
2250
2498
|
* VersionResponse
|
|
@@ -4300,6 +4548,114 @@ type FileRetainResponses = {
|
|
|
4300
4548
|
*/
|
|
4301
4549
|
200: FileRetainResponse;
|
|
4302
4550
|
};
|
|
4551
|
+
type ListAuditLogsData = {
|
|
4552
|
+
body?: never;
|
|
4553
|
+
headers?: {
|
|
4554
|
+
/**
|
|
4555
|
+
* Authorization
|
|
4556
|
+
*/
|
|
4557
|
+
authorization?: string | null;
|
|
4558
|
+
};
|
|
4559
|
+
path: {
|
|
4560
|
+
/**
|
|
4561
|
+
* Bank Id
|
|
4562
|
+
*/
|
|
4563
|
+
bank_id: string;
|
|
4564
|
+
};
|
|
4565
|
+
query?: {
|
|
4566
|
+
/**
|
|
4567
|
+
* Action
|
|
4568
|
+
*
|
|
4569
|
+
* Filter by action type
|
|
4570
|
+
*/
|
|
4571
|
+
action?: string | null;
|
|
4572
|
+
/**
|
|
4573
|
+
* Transport
|
|
4574
|
+
*
|
|
4575
|
+
* Filter by transport (http, mcp, system)
|
|
4576
|
+
*/
|
|
4577
|
+
transport?: string | null;
|
|
4578
|
+
/**
|
|
4579
|
+
* Start Date
|
|
4580
|
+
*
|
|
4581
|
+
* Filter from this ISO datetime (inclusive)
|
|
4582
|
+
*/
|
|
4583
|
+
start_date?: string | null;
|
|
4584
|
+
/**
|
|
4585
|
+
* End Date
|
|
4586
|
+
*
|
|
4587
|
+
* Filter until this ISO datetime (exclusive)
|
|
4588
|
+
*/
|
|
4589
|
+
end_date?: string | null;
|
|
4590
|
+
/**
|
|
4591
|
+
* Limit
|
|
4592
|
+
*
|
|
4593
|
+
* Max items to return
|
|
4594
|
+
*/
|
|
4595
|
+
limit?: number;
|
|
4596
|
+
/**
|
|
4597
|
+
* Offset
|
|
4598
|
+
*
|
|
4599
|
+
* Offset for pagination
|
|
4600
|
+
*/
|
|
4601
|
+
offset?: number;
|
|
4602
|
+
};
|
|
4603
|
+
url: "/v1/default/banks/{bank_id}/audit-logs";
|
|
4604
|
+
};
|
|
4605
|
+
type ListAuditLogsErrors = {
|
|
4606
|
+
/**
|
|
4607
|
+
* Validation Error
|
|
4608
|
+
*/
|
|
4609
|
+
422: HttpValidationError;
|
|
4610
|
+
};
|
|
4611
|
+
type ListAuditLogsResponses = {
|
|
4612
|
+
/**
|
|
4613
|
+
* Successful Response
|
|
4614
|
+
*/
|
|
4615
|
+
200: AuditLogListResponse;
|
|
4616
|
+
};
|
|
4617
|
+
type AuditLogStatsData = {
|
|
4618
|
+
body?: never;
|
|
4619
|
+
headers?: {
|
|
4620
|
+
/**
|
|
4621
|
+
* Authorization
|
|
4622
|
+
*/
|
|
4623
|
+
authorization?: string | null;
|
|
4624
|
+
};
|
|
4625
|
+
path: {
|
|
4626
|
+
/**
|
|
4627
|
+
* Bank Id
|
|
4628
|
+
*/
|
|
4629
|
+
bank_id: string;
|
|
4630
|
+
};
|
|
4631
|
+
query?: {
|
|
4632
|
+
/**
|
|
4633
|
+
* Action
|
|
4634
|
+
*
|
|
4635
|
+
* Filter by action type
|
|
4636
|
+
*/
|
|
4637
|
+
action?: string | null;
|
|
4638
|
+
/**
|
|
4639
|
+
* Period
|
|
4640
|
+
*
|
|
4641
|
+
* Time period: 1d, 7d, or 30d
|
|
4642
|
+
*/
|
|
4643
|
+
period?: string;
|
|
4644
|
+
};
|
|
4645
|
+
url: "/v1/default/banks/{bank_id}/audit-logs/stats";
|
|
4646
|
+
};
|
|
4647
|
+
type AuditLogStatsErrors = {
|
|
4648
|
+
/**
|
|
4649
|
+
* Validation Error
|
|
4650
|
+
*/
|
|
4651
|
+
422: HttpValidationError;
|
|
4652
|
+
};
|
|
4653
|
+
type AuditLogStatsResponses = {
|
|
4654
|
+
/**
|
|
4655
|
+
* Successful Response
|
|
4656
|
+
*/
|
|
4657
|
+
200: AuditLogStatsResponse;
|
|
4658
|
+
};
|
|
4303
4659
|
|
|
4304
4660
|
type AuthToken = string | undefined;
|
|
4305
4661
|
interface Auth {
|
|
@@ -5047,9 +5403,22 @@ declare const retainMemories: <ThrowOnError extends boolean = false>(options: Op
|
|
|
5047
5403
|
* - Only parsers enabled on the server may be requested; others return HTTP 400.
|
|
5048
5404
|
*/
|
|
5049
5405
|
declare const fileRetain: <ThrowOnError extends boolean = false>(options: Options<FileRetainData, ThrowOnError>) => RequestResult<FileRetainResponses, FileRetainErrors, ThrowOnError, "fields">;
|
|
5406
|
+
/**
|
|
5407
|
+
* List audit logs
|
|
5408
|
+
*
|
|
5409
|
+
* List audit log entries for a bank, ordered by most recent first.
|
|
5410
|
+
*/
|
|
5411
|
+
declare const listAuditLogs: <ThrowOnError extends boolean = false>(options: Options<ListAuditLogsData, ThrowOnError>) => RequestResult<ListAuditLogsResponses, ListAuditLogsErrors, ThrowOnError, "fields">;
|
|
5412
|
+
/**
|
|
5413
|
+
* Audit log statistics
|
|
5414
|
+
*
|
|
5415
|
+
* Get audit log counts grouped by time bucket for charting.
|
|
5416
|
+
*/
|
|
5417
|
+
declare const auditLogStats: <ThrowOnError extends boolean = false>(options: Options<AuditLogStatsData, ThrowOnError>) => RequestResult<AuditLogStatsResponses, AuditLogStatsErrors, ThrowOnError, "fields">;
|
|
5050
5418
|
|
|
5051
5419
|
type sdk_gen_Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options<TData, ThrowOnError>;
|
|
5052
5420
|
declare const sdk_gen_addBankBackground: typeof addBankBackground;
|
|
5421
|
+
declare const sdk_gen_auditLogStats: typeof auditLogStats;
|
|
5053
5422
|
declare const sdk_gen_cancelOperation: typeof cancelOperation;
|
|
5054
5423
|
declare const sdk_gen_clearBankMemories: typeof clearBankMemories;
|
|
5055
5424
|
declare const sdk_gen_clearMemoryObservations: typeof clearMemoryObservations;
|
|
@@ -5079,6 +5448,7 @@ declare const sdk_gen_getObservationHistory: typeof getObservationHistory;
|
|
|
5079
5448
|
declare const sdk_gen_getOperationStatus: typeof getOperationStatus;
|
|
5080
5449
|
declare const sdk_gen_getVersion: typeof getVersion;
|
|
5081
5450
|
declare const sdk_gen_healthEndpointHealthGet: typeof healthEndpointHealthGet;
|
|
5451
|
+
declare const sdk_gen_listAuditLogs: typeof listAuditLogs;
|
|
5082
5452
|
declare const sdk_gen_listBanks: typeof listBanks;
|
|
5083
5453
|
declare const sdk_gen_listDirectives: typeof listDirectives;
|
|
5084
5454
|
declare const sdk_gen_listDocuments: typeof listDocuments;
|
|
@@ -5107,7 +5477,7 @@ declare const sdk_gen_updateDocument: typeof updateDocument;
|
|
|
5107
5477
|
declare const sdk_gen_updateMentalModel: typeof updateMentalModel;
|
|
5108
5478
|
declare const sdk_gen_updateWebhook: typeof updateWebhook;
|
|
5109
5479
|
declare namespace sdk_gen {
|
|
5110
|
-
export { type sdk_gen_Options as Options, sdk_gen_addBankBackground as addBankBackground, sdk_gen_cancelOperation as cancelOperation, sdk_gen_clearBankMemories as clearBankMemories, sdk_gen_clearMemoryObservations as clearMemoryObservations, sdk_gen_clearObservations as clearObservations, sdk_gen_createDirective as createDirective, sdk_gen_createMentalModel as createMentalModel, sdk_gen_createOrUpdateBank as createOrUpdateBank, sdk_gen_createWebhook as createWebhook, sdk_gen_deleteBank as deleteBank, sdk_gen_deleteDirective as deleteDirective, sdk_gen_deleteDocument as deleteDocument, sdk_gen_deleteMentalModel as deleteMentalModel, sdk_gen_deleteWebhook as deleteWebhook, sdk_gen_fileRetain as fileRetain, sdk_gen_getAgentStats as getAgentStats, sdk_gen_getBankConfig as getBankConfig, sdk_gen_getBankProfile as getBankProfile, sdk_gen_getChunk as getChunk, sdk_gen_getDirective as getDirective, sdk_gen_getDocument as getDocument, sdk_gen_getEntity as getEntity, sdk_gen_getGraph as getGraph, sdk_gen_getMemory as getMemory, sdk_gen_getMentalModel as getMentalModel, sdk_gen_getMentalModelHistory as getMentalModelHistory, sdk_gen_getObservationHistory as getObservationHistory, sdk_gen_getOperationStatus as getOperationStatus, sdk_gen_getVersion as getVersion, sdk_gen_healthEndpointHealthGet as healthEndpointHealthGet, sdk_gen_listBanks as listBanks, sdk_gen_listDirectives as listDirectives, sdk_gen_listDocuments as listDocuments, sdk_gen_listEntities as listEntities, sdk_gen_listMemories as listMemories, sdk_gen_listMentalModels as listMentalModels, sdk_gen_listOperations as listOperations, sdk_gen_listTags as listTags, sdk_gen_listWebhookDeliveries as listWebhookDeliveries, sdk_gen_listWebhooks as listWebhooks, sdk_gen_metricsEndpointMetricsGet as metricsEndpointMetricsGet, sdk_gen_recallMemories as recallMemories, sdk_gen_recoverConsolidation as recoverConsolidation, sdk_gen_reflect as reflect, sdk_gen_refreshMentalModel as refreshMentalModel, sdk_gen_regenerateEntityObservations as regenerateEntityObservations, sdk_gen_resetBankConfig as resetBankConfig, sdk_gen_retainMemories as retainMemories, sdk_gen_retryOperation as retryOperation, sdk_gen_triggerConsolidation as triggerConsolidation, sdk_gen_updateBank as updateBank, sdk_gen_updateBankConfig as updateBankConfig, sdk_gen_updateBankDisposition as updateBankDisposition, sdk_gen_updateDirective as updateDirective, sdk_gen_updateDocument as updateDocument, sdk_gen_updateMentalModel as updateMentalModel, sdk_gen_updateWebhook as updateWebhook };
|
|
5480
|
+
export { type sdk_gen_Options as Options, sdk_gen_addBankBackground as addBankBackground, sdk_gen_auditLogStats as auditLogStats, sdk_gen_cancelOperation as cancelOperation, sdk_gen_clearBankMemories as clearBankMemories, sdk_gen_clearMemoryObservations as clearMemoryObservations, sdk_gen_clearObservations as clearObservations, sdk_gen_createDirective as createDirective, sdk_gen_createMentalModel as createMentalModel, sdk_gen_createOrUpdateBank as createOrUpdateBank, sdk_gen_createWebhook as createWebhook, sdk_gen_deleteBank as deleteBank, sdk_gen_deleteDirective as deleteDirective, sdk_gen_deleteDocument as deleteDocument, sdk_gen_deleteMentalModel as deleteMentalModel, sdk_gen_deleteWebhook as deleteWebhook, sdk_gen_fileRetain as fileRetain, sdk_gen_getAgentStats as getAgentStats, sdk_gen_getBankConfig as getBankConfig, sdk_gen_getBankProfile as getBankProfile, sdk_gen_getChunk as getChunk, sdk_gen_getDirective as getDirective, sdk_gen_getDocument as getDocument, sdk_gen_getEntity as getEntity, sdk_gen_getGraph as getGraph, sdk_gen_getMemory as getMemory, sdk_gen_getMentalModel as getMentalModel, sdk_gen_getMentalModelHistory as getMentalModelHistory, sdk_gen_getObservationHistory as getObservationHistory, sdk_gen_getOperationStatus as getOperationStatus, sdk_gen_getVersion as getVersion, sdk_gen_healthEndpointHealthGet as healthEndpointHealthGet, sdk_gen_listAuditLogs as listAuditLogs, sdk_gen_listBanks as listBanks, sdk_gen_listDirectives as listDirectives, sdk_gen_listDocuments as listDocuments, sdk_gen_listEntities as listEntities, sdk_gen_listMemories as listMemories, sdk_gen_listMentalModels as listMentalModels, sdk_gen_listOperations as listOperations, sdk_gen_listTags as listTags, sdk_gen_listWebhookDeliveries as listWebhookDeliveries, sdk_gen_listWebhooks as listWebhooks, sdk_gen_metricsEndpointMetricsGet as metricsEndpointMetricsGet, sdk_gen_recallMemories as recallMemories, sdk_gen_recoverConsolidation as recoverConsolidation, sdk_gen_reflect as reflect, sdk_gen_refreshMentalModel as refreshMentalModel, sdk_gen_regenerateEntityObservations as regenerateEntityObservations, sdk_gen_resetBankConfig as resetBankConfig, sdk_gen_retainMemories as retainMemories, sdk_gen_retryOperation as retryOperation, sdk_gen_triggerConsolidation as triggerConsolidation, sdk_gen_updateBank as updateBank, sdk_gen_updateBankConfig as updateBankConfig, sdk_gen_updateBankDisposition as updateBankDisposition, sdk_gen_updateDirective as updateDirective, sdk_gen_updateDocument as updateDocument, sdk_gen_updateMentalModel as updateMentalModel, sdk_gen_updateWebhook as updateWebhook };
|
|
5111
5481
|
}
|
|
5112
5482
|
|
|
5113
5483
|
/**
|