Skip to content

Commit 1575a18

Browse files
committed
chore(api): regenerate table API artifacts
1 parent f41ca09 commit 1575a18

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
@@ -1874,7 +1874,7 @@ export type CreateTableBody = {
18741874
columns: Array<{
18751875
id?: string
18761876
name: string
1877-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
1877+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
18781878
required?: boolean
18791879
unique?: boolean
18801880
options?: Array<{
@@ -1906,7 +1906,7 @@ type CreateTableResponseRef1 = {
19061906
columns: Array<{
19071907
id?: string
19081908
name: string
1909-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
1909+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
19101910
required: boolean
19111911
unique: boolean
19121912
workflowGroupId?: string
@@ -2858,7 +2858,7 @@ type DeleteTableColumnResponseRef0 = {
28582858
columns: Array<{
28592859
id?: string
28602860
name: string
2861-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
2861+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
28622862
required: boolean
28632863
unique: boolean
28642864
workflowGroupId?: string
@@ -3119,7 +3119,7 @@ type DeleteWorkflowGroupResponseRef0 = {
31193119
columns: Array<{
31203120
id?: string
31213121
name: string
3122-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
3122+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
31233123
required: boolean
31243124
unique: boolean
31253125
workflowGroupId?: string
@@ -4272,7 +4272,7 @@ type GetTableResponseRef1 = {
42724272
columns: Array<{
42734273
id?: string
42744274
name: string
4275-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
4275+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
42764276
required: boolean
42774277
unique: boolean
42784278
workflowGroupId?: string
@@ -6028,7 +6028,7 @@ type ListTablesResponseRef0 = {
60286028
columns: Array<{
60296029
id?: string
60306030
name: string
6031-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
6031+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
60326032
required: boolean
60336033
unique: boolean
60346034
workflowGroupId?: string
@@ -8372,7 +8372,7 @@ type UpdateTableResponseRef1 = {
83728372
columns: Array<{
83738373
id?: string
83748374
name: string
8375-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
8375+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
83768376
required: boolean
83778377
unique: boolean
83788378
workflowGroupId?: string
@@ -8414,7 +8414,7 @@ export type UpdateTableColumnBody = {
84148414
columnName: string
84158415
updates: {
84168416
name?: string
8417-
type?: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
8417+
type?: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
84188418
required?: boolean
84198419
unique?: boolean
84208420
options?: Array<{
@@ -8430,7 +8430,7 @@ type UpdateTableColumnResponseRef0 = {
84308430
columns: Array<{
84318431
id?: string
84328432
name: string
8433-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
8433+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
84348434
required: boolean
84358435
unique: boolean
84368436
workflowGroupId?: string
@@ -8693,7 +8693,7 @@ export type UpdateWorkflowGroupBody = {
86938693
}>
86948694
newOutputColumns?: Array<{
86958695
name: string
8696-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
8696+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
86978697
required?: boolean
86988698
unique?: boolean
86998699
}>
@@ -8739,7 +8739,7 @@ type UpdateWorkflowGroupResponseRef1 = {
87398739
columns: Array<{
87408740
id?: string
87418741
name: string
8742-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
8742+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
87438743
required: boolean
87448744
unique: boolean
87458745
workflowGroupId?: string

0 commit comments

Comments
 (0)