@deepnoodle/mobius 0.0.19 → 0.0.20
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/api/index.d.ts +9 -9
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/schema.d.ts +87 -87
- package/dist/api/schema.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/api/schema.d.ts
CHANGED
|
@@ -2177,16 +2177,16 @@ export interface paths {
|
|
|
2177
2177
|
cookie?: never;
|
|
2178
2178
|
};
|
|
2179
2179
|
/**
|
|
2180
|
-
* List
|
|
2181
|
-
* @description List project-scoped
|
|
2180
|
+
* List tables
|
|
2181
|
+
* @description List project-scoped tables visible to the caller.
|
|
2182
2182
|
*/
|
|
2183
|
-
get: operations["
|
|
2183
|
+
get: operations["listTables"];
|
|
2184
2184
|
put?: never;
|
|
2185
2185
|
/**
|
|
2186
|
-
* Create a
|
|
2187
|
-
* @description Create a project-scoped
|
|
2186
|
+
* Create a table
|
|
2187
|
+
* @description Create a project-scoped table with a typed column schema.
|
|
2188
2188
|
*/
|
|
2189
|
-
post: operations["
|
|
2189
|
+
post: operations["createTable"];
|
|
2190
2190
|
delete?: never;
|
|
2191
2191
|
options?: never;
|
|
2192
2192
|
head?: never;
|
|
@@ -2201,21 +2201,21 @@ export interface paths {
|
|
|
2201
2201
|
cookie?: never;
|
|
2202
2202
|
};
|
|
2203
2203
|
/**
|
|
2204
|
-
* Get a
|
|
2205
|
-
* @description Get
|
|
2204
|
+
* Get a table
|
|
2205
|
+
* @description Get table metadata and schema by table name.
|
|
2206
2206
|
*/
|
|
2207
|
-
get: operations["
|
|
2207
|
+
get: operations["getTable"];
|
|
2208
2208
|
/**
|
|
2209
|
-
* Update a
|
|
2210
|
-
* @description Update
|
|
2209
|
+
* Update a table
|
|
2210
|
+
* @description Update table description or schema and resync declared indexes.
|
|
2211
2211
|
*/
|
|
2212
|
-
put: operations["
|
|
2212
|
+
put: operations["updateTable"];
|
|
2213
2213
|
post?: never;
|
|
2214
2214
|
/**
|
|
2215
|
-
* Delete a
|
|
2216
|
-
* @description Delete one
|
|
2215
|
+
* Delete a table and all its rows
|
|
2216
|
+
* @description Delete one table and all rows stored under it.
|
|
2217
2217
|
*/
|
|
2218
|
-
delete: operations["
|
|
2218
|
+
delete: operations["deleteTable"];
|
|
2219
2219
|
options?: never;
|
|
2220
2220
|
head?: never;
|
|
2221
2221
|
patch?: never;
|
|
@@ -2229,10 +2229,10 @@ export interface paths {
|
|
|
2229
2229
|
cookie?: never;
|
|
2230
2230
|
};
|
|
2231
2231
|
/**
|
|
2232
|
-
* Get
|
|
2233
|
-
* @description Returns an operational snapshot for one
|
|
2232
|
+
* Get table storage stats
|
|
2233
|
+
* @description Returns an operational snapshot for one table: row count, approximate data/index bytes, declared index shape, and whether the backend search index is present. Values are point-in-time estimates intended for capacity planning and operator UI, not billing.
|
|
2234
2234
|
*/
|
|
2235
|
-
get: operations["
|
|
2235
|
+
get: operations["getTableStats"];
|
|
2236
2236
|
put?: never;
|
|
2237
2237
|
post?: never;
|
|
2238
2238
|
delete?: never;
|
|
@@ -2252,9 +2252,9 @@ export interface paths {
|
|
|
2252
2252
|
put?: never;
|
|
2253
2253
|
/**
|
|
2254
2254
|
* Insert a row
|
|
2255
|
-
* @description Validate and insert one row into the named
|
|
2255
|
+
* @description Validate and insert one row into the named table.
|
|
2256
2256
|
*/
|
|
2257
|
-
post: operations["
|
|
2257
|
+
post: operations["insertTableRow"];
|
|
2258
2258
|
delete?: never;
|
|
2259
2259
|
options?: never;
|
|
2260
2260
|
head?: never;
|
|
@@ -2274,7 +2274,7 @@ export interface paths {
|
|
|
2274
2274
|
* Query rows
|
|
2275
2275
|
* @description Filter, sort, and paginate rows. Filter keys are column names; values are either a direct equality match or an operator object: `{"$eq": v}`, `{"$ne": v}`, `{"$gt": v}`, `{"$gte": v}`, `{"$lt": v}`, `{"$lte": v}`, `{"$in": [v,...]}`, `{"$exists": bool}`.
|
|
2276
2276
|
*/
|
|
2277
|
-
post: operations["
|
|
2277
|
+
post: operations["queryTableRows"];
|
|
2278
2278
|
delete?: never;
|
|
2279
2279
|
options?: never;
|
|
2280
2280
|
head?: never;
|
|
@@ -2292,9 +2292,9 @@ export interface paths {
|
|
|
2292
2292
|
put?: never;
|
|
2293
2293
|
/**
|
|
2294
2294
|
* Search rows
|
|
2295
|
-
* @description Full-text keyword search over row data within one
|
|
2295
|
+
* @description Full-text keyword search over row data within one table. Optional field filters use the same syntax as row queries and are applied before text search.
|
|
2296
2296
|
*/
|
|
2297
|
-
post: operations["
|
|
2297
|
+
post: operations["searchTableRows"];
|
|
2298
2298
|
delete?: never;
|
|
2299
2299
|
options?: never;
|
|
2300
2300
|
head?: never;
|
|
@@ -2316,7 +2316,7 @@ export interface paths {
|
|
|
2316
2316
|
*
|
|
2317
2317
|
* Returns 201 Created when a new row was inserted, 200 OK when an existing row was updated.
|
|
2318
2318
|
*/
|
|
2319
|
-
post: operations["
|
|
2319
|
+
post: operations["upsertTableRow"];
|
|
2320
2320
|
delete?: never;
|
|
2321
2321
|
options?: never;
|
|
2322
2322
|
head?: never;
|
|
@@ -2334,9 +2334,9 @@ export interface paths {
|
|
|
2334
2334
|
put?: never;
|
|
2335
2335
|
/**
|
|
2336
2336
|
* Bulk insert rows
|
|
2337
|
-
* @description Validate and insert up to 1,000 rows into the named
|
|
2337
|
+
* @description Validate and insert up to 1,000 rows into the named table.
|
|
2338
2338
|
*/
|
|
2339
|
-
post: operations["
|
|
2339
|
+
post: operations["bulkInsertTableRows"];
|
|
2340
2340
|
delete?: never;
|
|
2341
2341
|
options?: never;
|
|
2342
2342
|
head?: never;
|
|
@@ -2352,23 +2352,23 @@ export interface paths {
|
|
|
2352
2352
|
};
|
|
2353
2353
|
/**
|
|
2354
2354
|
* Get a row by ID
|
|
2355
|
-
* @description Get one
|
|
2355
|
+
* @description Get one table row by row ID.
|
|
2356
2356
|
*/
|
|
2357
|
-
get: operations["
|
|
2357
|
+
get: operations["getTableRow"];
|
|
2358
2358
|
put?: never;
|
|
2359
2359
|
post?: never;
|
|
2360
2360
|
/**
|
|
2361
2361
|
* Delete a row
|
|
2362
|
-
* @description Delete one row from the named
|
|
2362
|
+
* @description Delete one row from the named table.
|
|
2363
2363
|
*/
|
|
2364
|
-
delete: operations["
|
|
2364
|
+
delete: operations["deleteTableRow"];
|
|
2365
2365
|
options?: never;
|
|
2366
2366
|
head?: never;
|
|
2367
2367
|
/**
|
|
2368
2368
|
* Update a row (PATCH — merges into existing data)
|
|
2369
2369
|
* @description Validate and merge fields into an existing row, optionally checking the current row version.
|
|
2370
2370
|
*/
|
|
2371
|
-
patch: operations["
|
|
2371
|
+
patch: operations["updateTableRow"];
|
|
2372
2372
|
trace?: never;
|
|
2373
2373
|
};
|
|
2374
2374
|
"/v1/projects/{project}/artifacts:slot": {
|
|
@@ -4700,10 +4700,10 @@ export interface components {
|
|
|
4700
4700
|
expires_at?: string;
|
|
4701
4701
|
};
|
|
4702
4702
|
/**
|
|
4703
|
-
* @description Determines the event source and required `source_config` shape: schedule, webhook, event, channel_message,
|
|
4703
|
+
* @description Determines the event source and required `source_config` shape: schedule, webhook, event, channel_message, table_row, or email.
|
|
4704
4704
|
* @enum {string}
|
|
4705
4705
|
*/
|
|
4706
|
-
TriggerKind: "schedule" | "webhook" | "event" | "channel_message" | "
|
|
4706
|
+
TriggerKind: "schedule" | "webhook" | "event" | "channel_message" | "table_row" | "email";
|
|
4707
4707
|
/**
|
|
4708
4708
|
* @description Controls overlapping runs from the same trigger:
|
|
4709
4709
|
* - `allow` — start new runs unconditionally.
|
|
@@ -4915,9 +4915,9 @@ export interface components {
|
|
|
4915
4915
|
/** @description Restricts which sender types fire the trigger. When omitted, all sender types are eligible. */
|
|
4916
4916
|
sender_types?: components["schemas"]["ChannelMessageSenderType"][];
|
|
4917
4917
|
};
|
|
4918
|
-
/** @description Source configuration for `
|
|
4919
|
-
|
|
4920
|
-
/** @description Name of the
|
|
4918
|
+
/** @description Source configuration for `table_row` triggers. */
|
|
4919
|
+
TableRowSourceConfig: {
|
|
4920
|
+
/** @description Name of the table to watch. When omitted, the trigger fires for row changes in any table within the project. */
|
|
4921
4921
|
table_name?: string;
|
|
4922
4922
|
/** @description Row change events that fire the trigger. When omitted, all three events (inserted, updated, deleted) fire the trigger. */
|
|
4923
4923
|
events?: ("inserted" | "updated" | "deleted")[];
|
|
@@ -4929,8 +4929,8 @@ export interface components {
|
|
|
4929
4929
|
/** @description Optional Go regular expression matched against the email subject. When omitted, all subjects pass the filter. */
|
|
4930
4930
|
subject_pattern?: string;
|
|
4931
4931
|
};
|
|
4932
|
-
/** @description Typed source configuration. The shape is determined by the trigger's `kind` (`schedule` → `ScheduleSourceConfig`, `webhook` → `WebhookSourceConfig`, `event` → `EventSourceConfig`, `channel_message` → `ChannelMessageSourceConfig`, `
|
|
4933
|
-
TriggerSourceConfig: components["schemas"]["ScheduleSourceConfig"] | components["schemas"]["WebhookSourceConfig"] | components["schemas"]["EventSourceConfig"] | components["schemas"]["ChannelMessageSourceConfig"] | components["schemas"]["
|
|
4932
|
+
/** @description Typed source configuration. The shape is determined by the trigger's `kind` (`schedule` → `ScheduleSourceConfig`, `webhook` → `WebhookSourceConfig`, `event` → `EventSourceConfig`, `channel_message` → `ChannelMessageSourceConfig`, `table_row` → `TableRowSourceConfig`, `email` → `EmailSourceConfig`); mismatches are rejected with 400. */
|
|
4933
|
+
TriggerSourceConfig: components["schemas"]["ScheduleSourceConfig"] | components["schemas"]["WebhookSourceConfig"] | components["schemas"]["EventSourceConfig"] | components["schemas"]["ChannelMessageSourceConfig"] | components["schemas"]["TableRowSourceConfig"] | components["schemas"]["EmailSourceConfig"];
|
|
4934
4934
|
/** @description Event source that starts one or more workflow targets. */
|
|
4935
4935
|
Trigger: {
|
|
4936
4936
|
/** @description Unique identifier for this trigger. */
|
|
@@ -5080,7 +5080,7 @@ export interface components {
|
|
|
5080
5080
|
has_more: boolean;
|
|
5081
5081
|
};
|
|
5082
5082
|
/** @description Creates a trigger. The request is discriminated by `kind`, and each variant requires the matching `source_config` schema. */
|
|
5083
|
-
CreateTriggerRequest: components["schemas"]["CreateScheduleTriggerRequest"] | components["schemas"]["CreateWebhookTriggerRequest"] | components["schemas"]["CreateEventTriggerRequest"] | components["schemas"]["CreateChannelMessageTriggerRequest"] | components["schemas"]["
|
|
5083
|
+
CreateTriggerRequest: components["schemas"]["CreateScheduleTriggerRequest"] | components["schemas"]["CreateWebhookTriggerRequest"] | components["schemas"]["CreateEventTriggerRequest"] | components["schemas"]["CreateChannelMessageTriggerRequest"] | components["schemas"]["CreateTableRowTriggerRequest"] | components["schemas"]["CreateEmailTriggerRequest"];
|
|
5084
5084
|
/** @description Creates a schedule trigger from a cron expression or fixed interval. */
|
|
5085
5085
|
CreateScheduleTriggerRequest: {
|
|
5086
5086
|
/** @description Human-readable trigger name, unique within the project. */
|
|
@@ -5161,17 +5161,17 @@ export interface components {
|
|
|
5161
5161
|
/** @description Initial tag set. */
|
|
5162
5162
|
tags?: components["schemas"]["TagMap"];
|
|
5163
5163
|
};
|
|
5164
|
-
/** @description Creates a trigger that fires when a
|
|
5165
|
-
|
|
5164
|
+
/** @description Creates a trigger that fires when a table row is inserted, updated, or deleted. */
|
|
5165
|
+
CreateTableRowTriggerRequest: {
|
|
5166
5166
|
/** @description Human-readable trigger name, unique within the project. */
|
|
5167
5167
|
name: string;
|
|
5168
5168
|
/**
|
|
5169
|
-
* @description Discriminator value — must be `
|
|
5169
|
+
* @description Discriminator value — must be `table_row`. (enum property replaced by openapi-typescript)
|
|
5170
5170
|
* @enum {string}
|
|
5171
5171
|
*/
|
|
5172
|
-
kind: "
|
|
5172
|
+
kind: "table_row";
|
|
5173
5173
|
/** @description Data-table-row-specific source configuration. */
|
|
5174
|
-
source_config: components["schemas"]["
|
|
5174
|
+
source_config: components["schemas"]["TableRowSourceConfig"];
|
|
5175
5175
|
/** @description Workflows to start when this trigger fires (inline convenience; stored as sub-resources). */
|
|
5176
5176
|
targets?: components["schemas"]["CreateTriggerTargetRequest"][];
|
|
5177
5177
|
/** @description Policy for overlapping runs started by this trigger. */
|
|
@@ -6210,7 +6210,7 @@ export interface components {
|
|
|
6210
6210
|
AgentInvocationErrorType: "agent_unavailable" | "agent_error" | "timeout" | "tool_violation" | "schema_violation" | "no_tools_available" | "forbidden" | "cancelled";
|
|
6211
6211
|
/** @description Counts of tool calls made by the agent during one invocation. Names are surfaced in the durable record; full call traces ship via OTel when configured. */
|
|
6212
6212
|
AgentInvocationToolCall: {
|
|
6213
|
-
/** @description Tool name (e.g. `
|
|
6213
|
+
/** @description Tool name (e.g. `mobius_query_table`). */
|
|
6214
6214
|
name: string;
|
|
6215
6215
|
/** @description Number of times the tool was invoked during the loop. */
|
|
6216
6216
|
count: number;
|
|
@@ -6615,17 +6615,17 @@ export interface components {
|
|
|
6615
6615
|
/** @default false */
|
|
6616
6616
|
unique: boolean;
|
|
6617
6617
|
};
|
|
6618
|
-
|
|
6618
|
+
TableSchema: {
|
|
6619
6619
|
columns: components["schemas"]["ColumnDef"][];
|
|
6620
6620
|
indexes?: components["schemas"]["IndexDef"][];
|
|
6621
6621
|
};
|
|
6622
|
-
|
|
6622
|
+
Table: {
|
|
6623
6623
|
id: string;
|
|
6624
6624
|
org_id: string;
|
|
6625
6625
|
project_id: string;
|
|
6626
6626
|
name: string;
|
|
6627
6627
|
description?: string;
|
|
6628
|
-
schema: components["schemas"]["
|
|
6628
|
+
schema: components["schemas"]["TableSchema"];
|
|
6629
6629
|
tags?: {
|
|
6630
6630
|
[key: string]: string;
|
|
6631
6631
|
};
|
|
@@ -6634,12 +6634,12 @@ export interface components {
|
|
|
6634
6634
|
/** Format: date-time */
|
|
6635
6635
|
updated_at: string;
|
|
6636
6636
|
};
|
|
6637
|
-
|
|
6638
|
-
items: components["schemas"]["
|
|
6637
|
+
TableListResponse: {
|
|
6638
|
+
items: components["schemas"]["Table"][];
|
|
6639
6639
|
has_more: boolean;
|
|
6640
6640
|
next_cursor?: string;
|
|
6641
6641
|
};
|
|
6642
|
-
|
|
6642
|
+
TableStats: {
|
|
6643
6643
|
table_id: string;
|
|
6644
6644
|
/** Format: int64 */
|
|
6645
6645
|
row_count: number;
|
|
@@ -6657,16 +6657,16 @@ export interface components {
|
|
|
6657
6657
|
/** Format: date-time */
|
|
6658
6658
|
newest_row_updated_at?: string;
|
|
6659
6659
|
};
|
|
6660
|
-
|
|
6660
|
+
CreateTableRequest: {
|
|
6661
6661
|
name: string;
|
|
6662
6662
|
description?: string;
|
|
6663
|
-
schema: components["schemas"]["
|
|
6663
|
+
schema: components["schemas"]["TableSchema"];
|
|
6664
6664
|
};
|
|
6665
|
-
|
|
6665
|
+
UpdateTableRequest: {
|
|
6666
6666
|
description?: string;
|
|
6667
|
-
schema?: components["schemas"]["
|
|
6667
|
+
schema?: components["schemas"]["TableSchema"];
|
|
6668
6668
|
};
|
|
6669
|
-
|
|
6669
|
+
TableRow: {
|
|
6670
6670
|
id: string;
|
|
6671
6671
|
table_id: string;
|
|
6672
6672
|
data: {
|
|
@@ -6709,7 +6709,7 @@ export interface components {
|
|
|
6709
6709
|
cursor?: string;
|
|
6710
6710
|
};
|
|
6711
6711
|
QueryRowsResponse: {
|
|
6712
|
-
rows: components["schemas"]["
|
|
6712
|
+
rows: components["schemas"]["TableRow"][];
|
|
6713
6713
|
has_more: boolean;
|
|
6714
6714
|
limit?: number;
|
|
6715
6715
|
next_cursor?: string;
|
|
@@ -6727,7 +6727,7 @@ export interface components {
|
|
|
6727
6727
|
cursor?: string;
|
|
6728
6728
|
};
|
|
6729
6729
|
SearchRowsResponse: {
|
|
6730
|
-
rows: components["schemas"]["
|
|
6730
|
+
rows: components["schemas"]["TableRow"][];
|
|
6731
6731
|
has_more: boolean;
|
|
6732
6732
|
limit?: number;
|
|
6733
6733
|
next_cursor?: string;
|
|
@@ -6739,7 +6739,7 @@ export interface components {
|
|
|
6739
6739
|
};
|
|
6740
6740
|
BulkInsertRowsResponse: {
|
|
6741
6741
|
inserted: number;
|
|
6742
|
-
rows: components["schemas"]["
|
|
6742
|
+
rows: components["schemas"]["TableRow"][];
|
|
6743
6743
|
};
|
|
6744
6744
|
UpsertRowRequest: {
|
|
6745
6745
|
/** @description Column names used to match an existing row. */
|
|
@@ -6750,7 +6750,7 @@ export interface components {
|
|
|
6750
6750
|
};
|
|
6751
6751
|
};
|
|
6752
6752
|
UpsertRowResponse: {
|
|
6753
|
-
row: components["schemas"]["
|
|
6753
|
+
row: components["schemas"]["TableRow"];
|
|
6754
6754
|
/** @description True when a new row was inserted; false when an existing row was updated. */
|
|
6755
6755
|
created: boolean;
|
|
6756
6756
|
};
|
|
@@ -7141,7 +7141,7 @@ export interface components {
|
|
|
7141
7141
|
TagFilterParam: string[];
|
|
7142
7142
|
/** @description Optional project scope for this request. When `project_id` is provided, the API key operation is resolved in that project's permission context. When `project_id` is omitted, the request is treated as org-level and project-pinned keys are excluded. */
|
|
7143
7143
|
APIKeyProjectIDParam: components["schemas"]["ProjectID"];
|
|
7144
|
-
/** @description Reference type name, such as `slack.channel` or `
|
|
7144
|
+
/** @description Reference type name, such as `slack.channel` or `table.table`. */
|
|
7145
7145
|
ReferenceTypeParam: string;
|
|
7146
7146
|
/** @description Trigger target ID. */
|
|
7147
7147
|
TriggerTargetIDParam: string;
|
|
@@ -8929,7 +8929,7 @@ export interface operations {
|
|
|
8929
8929
|
path: {
|
|
8930
8930
|
/** @description Project handle (unique per organization) */
|
|
8931
8931
|
project: components["parameters"]["ProjectHandleParam"];
|
|
8932
|
-
/** @description Reference type name, such as `slack.channel` or `
|
|
8932
|
+
/** @description Reference type name, such as `slack.channel` or `table.table`. */
|
|
8933
8933
|
reference_type: components["parameters"]["ReferenceTypeParam"];
|
|
8934
8934
|
};
|
|
8935
8935
|
cookie?: never;
|
|
@@ -8968,7 +8968,7 @@ export interface operations {
|
|
|
8968
8968
|
path: {
|
|
8969
8969
|
/** @description Project handle (unique per organization) */
|
|
8970
8970
|
project: components["parameters"]["ProjectHandleParam"];
|
|
8971
|
-
/** @description Reference type name, such as `slack.channel` or `
|
|
8971
|
+
/** @description Reference type name, such as `slack.channel` or `table.table`. */
|
|
8972
8972
|
reference_type: components["parameters"]["ReferenceTypeParam"];
|
|
8973
8973
|
};
|
|
8974
8974
|
cookie?: never;
|
|
@@ -11889,7 +11889,7 @@ export interface operations {
|
|
|
11889
11889
|
404: components["responses"]["NotFound"];
|
|
11890
11890
|
};
|
|
11891
11891
|
};
|
|
11892
|
-
|
|
11892
|
+
listTables: {
|
|
11893
11893
|
parameters: {
|
|
11894
11894
|
query?: {
|
|
11895
11895
|
/** @description Cursor for pagination (opaque string from previous response) */
|
|
@@ -11912,13 +11912,13 @@ export interface operations {
|
|
|
11912
11912
|
[name: string]: unknown;
|
|
11913
11913
|
};
|
|
11914
11914
|
content: {
|
|
11915
|
-
"application/json": components["schemas"]["
|
|
11915
|
+
"application/json": components["schemas"]["TableListResponse"];
|
|
11916
11916
|
};
|
|
11917
11917
|
};
|
|
11918
11918
|
401: components["responses"]["Unauthorized"];
|
|
11919
11919
|
};
|
|
11920
11920
|
};
|
|
11921
|
-
|
|
11921
|
+
createTable: {
|
|
11922
11922
|
parameters: {
|
|
11923
11923
|
query?: never;
|
|
11924
11924
|
header?: never;
|
|
@@ -11930,7 +11930,7 @@ export interface operations {
|
|
|
11930
11930
|
};
|
|
11931
11931
|
requestBody: {
|
|
11932
11932
|
content: {
|
|
11933
|
-
"application/json": components["schemas"]["
|
|
11933
|
+
"application/json": components["schemas"]["CreateTableRequest"];
|
|
11934
11934
|
};
|
|
11935
11935
|
};
|
|
11936
11936
|
responses: {
|
|
@@ -11940,14 +11940,14 @@ export interface operations {
|
|
|
11940
11940
|
[name: string]: unknown;
|
|
11941
11941
|
};
|
|
11942
11942
|
content: {
|
|
11943
|
-
"application/json": components["schemas"]["
|
|
11943
|
+
"application/json": components["schemas"]["Table"];
|
|
11944
11944
|
};
|
|
11945
11945
|
};
|
|
11946
11946
|
400: components["responses"]["BadRequest"];
|
|
11947
11947
|
401: components["responses"]["Unauthorized"];
|
|
11948
11948
|
};
|
|
11949
11949
|
};
|
|
11950
|
-
|
|
11950
|
+
getTable: {
|
|
11951
11951
|
parameters: {
|
|
11952
11952
|
query?: never;
|
|
11953
11953
|
header?: never;
|
|
@@ -11967,14 +11967,14 @@ export interface operations {
|
|
|
11967
11967
|
[name: string]: unknown;
|
|
11968
11968
|
};
|
|
11969
11969
|
content: {
|
|
11970
|
-
"application/json": components["schemas"]["
|
|
11970
|
+
"application/json": components["schemas"]["Table"];
|
|
11971
11971
|
};
|
|
11972
11972
|
};
|
|
11973
11973
|
401: components["responses"]["Unauthorized"];
|
|
11974
11974
|
404: components["responses"]["NotFound"];
|
|
11975
11975
|
};
|
|
11976
11976
|
};
|
|
11977
|
-
|
|
11977
|
+
updateTable: {
|
|
11978
11978
|
parameters: {
|
|
11979
11979
|
query?: never;
|
|
11980
11980
|
header?: never;
|
|
@@ -11988,7 +11988,7 @@ export interface operations {
|
|
|
11988
11988
|
};
|
|
11989
11989
|
requestBody: {
|
|
11990
11990
|
content: {
|
|
11991
|
-
"application/json": components["schemas"]["
|
|
11991
|
+
"application/json": components["schemas"]["UpdateTableRequest"];
|
|
11992
11992
|
};
|
|
11993
11993
|
};
|
|
11994
11994
|
responses: {
|
|
@@ -11998,7 +11998,7 @@ export interface operations {
|
|
|
11998
11998
|
[name: string]: unknown;
|
|
11999
11999
|
};
|
|
12000
12000
|
content: {
|
|
12001
|
-
"application/json": components["schemas"]["
|
|
12001
|
+
"application/json": components["schemas"]["Table"];
|
|
12002
12002
|
};
|
|
12003
12003
|
};
|
|
12004
12004
|
400: components["responses"]["BadRequest"];
|
|
@@ -12006,7 +12006,7 @@ export interface operations {
|
|
|
12006
12006
|
404: components["responses"]["NotFound"];
|
|
12007
12007
|
};
|
|
12008
12008
|
};
|
|
12009
|
-
|
|
12009
|
+
deleteTable: {
|
|
12010
12010
|
parameters: {
|
|
12011
12011
|
query?: never;
|
|
12012
12012
|
header?: never;
|
|
@@ -12031,7 +12031,7 @@ export interface operations {
|
|
|
12031
12031
|
404: components["responses"]["NotFound"];
|
|
12032
12032
|
};
|
|
12033
12033
|
};
|
|
12034
|
-
|
|
12034
|
+
getTableStats: {
|
|
12035
12035
|
parameters: {
|
|
12036
12036
|
query?: never;
|
|
12037
12037
|
header?: never;
|
|
@@ -12051,14 +12051,14 @@ export interface operations {
|
|
|
12051
12051
|
[name: string]: unknown;
|
|
12052
12052
|
};
|
|
12053
12053
|
content: {
|
|
12054
|
-
"application/json": components["schemas"]["
|
|
12054
|
+
"application/json": components["schemas"]["TableStats"];
|
|
12055
12055
|
};
|
|
12056
12056
|
};
|
|
12057
12057
|
401: components["responses"]["Unauthorized"];
|
|
12058
12058
|
404: components["responses"]["NotFound"];
|
|
12059
12059
|
};
|
|
12060
12060
|
};
|
|
12061
|
-
|
|
12061
|
+
insertTableRow: {
|
|
12062
12062
|
parameters: {
|
|
12063
12063
|
query?: never;
|
|
12064
12064
|
header?: never;
|
|
@@ -12082,7 +12082,7 @@ export interface operations {
|
|
|
12082
12082
|
[name: string]: unknown;
|
|
12083
12083
|
};
|
|
12084
12084
|
content: {
|
|
12085
|
-
"application/json": components["schemas"]["
|
|
12085
|
+
"application/json": components["schemas"]["TableRow"];
|
|
12086
12086
|
};
|
|
12087
12087
|
};
|
|
12088
12088
|
400: components["responses"]["BadRequest"];
|
|
@@ -12090,7 +12090,7 @@ export interface operations {
|
|
|
12090
12090
|
404: components["responses"]["NotFound"];
|
|
12091
12091
|
};
|
|
12092
12092
|
};
|
|
12093
|
-
|
|
12093
|
+
queryTableRows: {
|
|
12094
12094
|
parameters: {
|
|
12095
12095
|
query?: never;
|
|
12096
12096
|
header?: never;
|
|
@@ -12122,7 +12122,7 @@ export interface operations {
|
|
|
12122
12122
|
404: components["responses"]["NotFound"];
|
|
12123
12123
|
};
|
|
12124
12124
|
};
|
|
12125
|
-
|
|
12125
|
+
searchTableRows: {
|
|
12126
12126
|
parameters: {
|
|
12127
12127
|
query?: never;
|
|
12128
12128
|
header?: never;
|
|
@@ -12154,7 +12154,7 @@ export interface operations {
|
|
|
12154
12154
|
404: components["responses"]["NotFound"];
|
|
12155
12155
|
};
|
|
12156
12156
|
};
|
|
12157
|
-
|
|
12157
|
+
upsertTableRow: {
|
|
12158
12158
|
parameters: {
|
|
12159
12159
|
query?: never;
|
|
12160
12160
|
header?: never;
|
|
@@ -12196,7 +12196,7 @@ export interface operations {
|
|
|
12196
12196
|
409: components["responses"]["Conflict"];
|
|
12197
12197
|
};
|
|
12198
12198
|
};
|
|
12199
|
-
|
|
12199
|
+
bulkInsertTableRows: {
|
|
12200
12200
|
parameters: {
|
|
12201
12201
|
query?: never;
|
|
12202
12202
|
header?: never;
|
|
@@ -12228,7 +12228,7 @@ export interface operations {
|
|
|
12228
12228
|
404: components["responses"]["NotFound"];
|
|
12229
12229
|
};
|
|
12230
12230
|
};
|
|
12231
|
-
|
|
12231
|
+
getTableRow: {
|
|
12232
12232
|
parameters: {
|
|
12233
12233
|
query?: never;
|
|
12234
12234
|
header?: never;
|
|
@@ -12249,14 +12249,14 @@ export interface operations {
|
|
|
12249
12249
|
[name: string]: unknown;
|
|
12250
12250
|
};
|
|
12251
12251
|
content: {
|
|
12252
|
-
"application/json": components["schemas"]["
|
|
12252
|
+
"application/json": components["schemas"]["TableRow"];
|
|
12253
12253
|
};
|
|
12254
12254
|
};
|
|
12255
12255
|
401: components["responses"]["Unauthorized"];
|
|
12256
12256
|
404: components["responses"]["NotFound"];
|
|
12257
12257
|
};
|
|
12258
12258
|
};
|
|
12259
|
-
|
|
12259
|
+
deleteTableRow: {
|
|
12260
12260
|
parameters: {
|
|
12261
12261
|
query?: never;
|
|
12262
12262
|
header?: never;
|
|
@@ -12282,7 +12282,7 @@ export interface operations {
|
|
|
12282
12282
|
404: components["responses"]["NotFound"];
|
|
12283
12283
|
};
|
|
12284
12284
|
};
|
|
12285
|
-
|
|
12285
|
+
updateTableRow: {
|
|
12286
12286
|
parameters: {
|
|
12287
12287
|
query?: never;
|
|
12288
12288
|
header?: never;
|
|
@@ -12307,7 +12307,7 @@ export interface operations {
|
|
|
12307
12307
|
[name: string]: unknown;
|
|
12308
12308
|
};
|
|
12309
12309
|
content: {
|
|
12310
|
-
"application/json": components["schemas"]["
|
|
12310
|
+
"application/json": components["schemas"]["TableRow"];
|
|
12311
12311
|
};
|
|
12312
12312
|
};
|
|
12313
12313
|
400: components["responses"]["BadRequest"];
|