Skip to content

Commit d06fb12

Browse files
committed
chore(api): regenerate table API artifacts
1 parent 1554d11 commit d06fb12

2 files changed

Lines changed: 96 additions & 24 deletions

File tree

apps/docs/openapi-v2-tables.json

Lines changed: 81 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4979,7 +4979,16 @@
49794979
},
49804980
"type": {
49814981
"type": "string",
4982-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
4982+
"enum": [
4983+
"string",
4984+
"number",
4985+
"currency",
4986+
"boolean",
4987+
"date",
4988+
"ttl",
4989+
"json",
4990+
"select"
4991+
],
49834992
"description": "Data type of values stored in the column."
49844993
},
49854994
"required": {
@@ -5257,7 +5266,16 @@
52575266
},
52585267
"type": {
52595268
"type": "string",
5260-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
5269+
"enum": [
5270+
"string",
5271+
"number",
5272+
"currency",
5273+
"boolean",
5274+
"date",
5275+
"ttl",
5276+
"json",
5277+
"select"
5278+
],
52615279
"description": "Column data type."
52625280
},
52635281
"required": {
@@ -5436,7 +5454,16 @@
54365454
},
54375455
"type": {
54385456
"type": "string",
5439-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
5457+
"enum": [
5458+
"string",
5459+
"number",
5460+
"currency",
5461+
"boolean",
5462+
"date",
5463+
"ttl",
5464+
"json",
5465+
"select"
5466+
],
54405467
"description": "Data type of values stored in the column."
54415468
},
54425469
"required": {
@@ -5536,7 +5563,16 @@
55365563
},
55375564
"type": {
55385565
"type": "string",
5539-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
5566+
"enum": [
5567+
"string",
5568+
"number",
5569+
"currency",
5570+
"boolean",
5571+
"date",
5572+
"ttl",
5573+
"json",
5574+
"select"
5575+
],
55405576
"description": "Column data type."
55415577
},
55425578
"required": {
@@ -5633,7 +5669,7 @@
56335669
"type": {
56345670
"description": "Replacement column data type.",
56355671
"type": "string",
5636-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"]
5672+
"enum": ["string", "number", "currency", "boolean", "date", "ttl", "json", "select"]
56375673
},
56385674
"required": {
56395675
"description": "Whether inserts must supply a value for this column.",
@@ -7397,7 +7433,16 @@
73977433
},
73987434
"type": {
73997435
"type": "string",
7400-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
7436+
"enum": [
7437+
"string",
7438+
"number",
7439+
"currency",
7440+
"boolean",
7441+
"date",
7442+
"ttl",
7443+
"json",
7444+
"select"
7445+
],
74017446
"description": "Data type of values stored in the column."
74027447
},
74037448
"required": {
@@ -7597,7 +7642,16 @@
75977642
},
75987643
"type": {
75997644
"type": "string",
7600-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
7645+
"enum": [
7646+
"string",
7647+
"number",
7648+
"currency",
7649+
"boolean",
7650+
"date",
7651+
"ttl",
7652+
"json",
7653+
"select"
7654+
],
76017655
"description": "Output column data type."
76027656
},
76037657
"required": {
@@ -7738,7 +7792,16 @@
77387792
},
77397793
"type": {
77407794
"type": "string",
7741-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
7795+
"enum": [
7796+
"string",
7797+
"number",
7798+
"currency",
7799+
"boolean",
7800+
"date",
7801+
"ttl",
7802+
"json",
7803+
"select"
7804+
],
77427805
"description": "Output column data type."
77437806
},
77447807
"required": {
@@ -7856,7 +7919,16 @@
78567919
},
78577920
"type": {
78587921
"type": "string",
7859-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
7922+
"enum": [
7923+
"string",
7924+
"number",
7925+
"currency",
7926+
"boolean",
7927+
"date",
7928+
"ttl",
7929+
"json",
7930+
"select"
7931+
],
78607932
"description": "Data type of values stored in the column."
78617933
},
78627934
"required": {

packages/sim-cli/src/generated/v2-api.ts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export type AddTableColumnBody = {
181181
column: {
182182
id?: string
183183
name: string
184-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
184+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
185185
required?: boolean
186186
unique?: boolean
187187
options?: Array<{
@@ -198,7 +198,7 @@ type AddTableColumnResponseRef0 = {
198198
columns: Array<{
199199
id?: string
200200
name: string
201-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
201+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
202202
required: boolean
203203
unique: boolean
204204
workflowGroupId?: string
@@ -248,7 +248,7 @@ export type AddWorkflowGroupBody = {
248248
}
249249
outputColumns: Array<{
250250
name: string
251-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
251+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
252252
required?: boolean
253253
unique?: boolean
254254
}>
@@ -283,7 +283,7 @@ type AddWorkflowGroupResponseRef1 = {
283283
columns: Array<{
284284
id?: string
285285
name: string
286-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
286+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
287287
required: boolean
288288
unique: boolean
289289
workflowGroupId?: string
@@ -1821,7 +1821,7 @@ export type CreateTableBody = {
18211821
columns: Array<{
18221822
id?: string
18231823
name: string
1824-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
1824+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
18251825
required?: boolean
18261826
unique?: boolean
18271827
options?: Array<{
@@ -1853,7 +1853,7 @@ type CreateTableResponseRef1 = {
18531853
columns: Array<{
18541854
id?: string
18551855
name: string
1856-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
1856+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
18571857
required: boolean
18581858
unique: boolean
18591859
workflowGroupId?: string
@@ -2805,7 +2805,7 @@ type DeleteTableColumnResponseRef0 = {
28052805
columns: Array<{
28062806
id?: string
28072807
name: string
2808-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
2808+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
28092809
required: boolean
28102810
unique: boolean
28112811
workflowGroupId?: string
@@ -3066,7 +3066,7 @@ type DeleteWorkflowGroupResponseRef0 = {
30663066
columns: Array<{
30673067
id?: string
30683068
name: string
3069-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
3069+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
30703070
required: boolean
30713071
unique: boolean
30723072
workflowGroupId?: string
@@ -4219,7 +4219,7 @@ type GetTableResponseRef1 = {
42194219
columns: Array<{
42204220
id?: string
42214221
name: string
4222-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
4222+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
42234223
required: boolean
42244224
unique: boolean
42254225
workflowGroupId?: string
@@ -5975,7 +5975,7 @@ type ListTablesResponseRef0 = {
59755975
columns: Array<{
59765976
id?: string
59775977
name: string
5978-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
5978+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
59795979
required: boolean
59805980
unique: boolean
59815981
workflowGroupId?: string
@@ -8319,7 +8319,7 @@ type UpdateTableResponseRef1 = {
83198319
columns: Array<{
83208320
id?: string
83218321
name: string
8322-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
8322+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
83238323
required: boolean
83248324
unique: boolean
83258325
workflowGroupId?: string
@@ -8361,7 +8361,7 @@ export type UpdateTableColumnBody = {
83618361
columnName: string
83628362
updates: {
83638363
name?: string
8364-
type?: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
8364+
type?: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
83658365
required?: boolean
83668366
unique?: boolean
83678367
options?: Array<{
@@ -8377,7 +8377,7 @@ type UpdateTableColumnResponseRef0 = {
83778377
columns: Array<{
83788378
id?: string
83798379
name: string
8380-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
8380+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
83818381
required: boolean
83828382
unique: boolean
83838383
workflowGroupId?: string
@@ -8640,7 +8640,7 @@ export type UpdateWorkflowGroupBody = {
86408640
}>
86418641
newOutputColumns?: Array<{
86428642
name: string
8643-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
8643+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
86448644
required?: boolean
86458645
unique?: boolean
86468646
}>
@@ -8686,7 +8686,7 @@ type UpdateWorkflowGroupResponseRef1 = {
86868686
columns: Array<{
86878687
id?: string
86888688
name: string
8689-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
8689+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
86908690
required: boolean
86918691
unique: boolean
86928692
workflowGroupId?: string

0 commit comments

Comments
 (0)