Skip to content

Commit 036d0f6

Browse files
committed
chore(api): regenerate table API artifacts
1 parent 7262afe commit 036d0f6

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
@@ -4088,7 +4088,16 @@
40884088
},
40894089
"type": {
40904090
"type": "string",
4091-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
4091+
"enum": [
4092+
"string",
4093+
"number",
4094+
"currency",
4095+
"boolean",
4096+
"date",
4097+
"ttl",
4098+
"json",
4099+
"select"
4100+
],
40924101
"description": "Data type of values stored in the column."
40934102
},
40944103
"required": {
@@ -4365,7 +4374,16 @@
43654374
},
43664375
"type": {
43674376
"type": "string",
4368-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
4377+
"enum": [
4378+
"string",
4379+
"number",
4380+
"currency",
4381+
"boolean",
4382+
"date",
4383+
"ttl",
4384+
"json",
4385+
"select"
4386+
],
43694387
"description": "Column data type."
43704388
},
43714389
"required": {
@@ -4544,7 +4562,16 @@
45444562
},
45454563
"type": {
45464564
"type": "string",
4547-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
4565+
"enum": [
4566+
"string",
4567+
"number",
4568+
"currency",
4569+
"boolean",
4570+
"date",
4571+
"ttl",
4572+
"json",
4573+
"select"
4574+
],
45484575
"description": "Data type of values stored in the column."
45494576
},
45504577
"required": {
@@ -4644,7 +4671,16 @@
46444671
},
46454672
"type": {
46464673
"type": "string",
4647-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
4674+
"enum": [
4675+
"string",
4676+
"number",
4677+
"currency",
4678+
"boolean",
4679+
"date",
4680+
"ttl",
4681+
"json",
4682+
"select"
4683+
],
46484684
"description": "Column data type."
46494685
},
46504686
"required": {
@@ -4741,7 +4777,7 @@
47414777
"type": {
47424778
"description": "Replacement column data type.",
47434779
"type": "string",
4744-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"]
4780+
"enum": ["string", "number", "currency", "boolean", "date", "ttl", "json", "select"]
47454781
},
47464782
"required": {
47474783
"description": "Whether inserts must supply a value for this column.",
@@ -6413,7 +6449,16 @@
64136449
},
64146450
"type": {
64156451
"type": "string",
6416-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
6452+
"enum": [
6453+
"string",
6454+
"number",
6455+
"currency",
6456+
"boolean",
6457+
"date",
6458+
"ttl",
6459+
"json",
6460+
"select"
6461+
],
64176462
"description": "Data type of values stored in the column."
64186463
},
64196464
"required": {
@@ -6613,7 +6658,16 @@
66136658
},
66146659
"type": {
66156660
"type": "string",
6616-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
6661+
"enum": [
6662+
"string",
6663+
"number",
6664+
"currency",
6665+
"boolean",
6666+
"date",
6667+
"ttl",
6668+
"json",
6669+
"select"
6670+
],
66176671
"description": "Output column data type."
66186672
},
66196673
"required": {
@@ -6754,7 +6808,16 @@
67546808
},
67556809
"type": {
67566810
"type": "string",
6757-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
6811+
"enum": [
6812+
"string",
6813+
"number",
6814+
"currency",
6815+
"boolean",
6816+
"date",
6817+
"ttl",
6818+
"json",
6819+
"select"
6820+
],
67586821
"description": "Output column data type."
67596822
},
67606823
"required": {
@@ -6872,7 +6935,16 @@
68726935
},
68736936
"type": {
68746937
"type": "string",
6875-
"enum": ["string", "number", "currency", "boolean", "date", "json", "select"],
6938+
"enum": [
6939+
"string",
6940+
"number",
6941+
"currency",
6942+
"boolean",
6943+
"date",
6944+
"ttl",
6945+
"json",
6946+
"select"
6947+
],
68766948
"description": "Data type of values stored in the column."
68776949
},
68786950
"required": {

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

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export type AddTableColumnBody = {
123123
column: {
124124
id?: string
125125
name: string
126-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
126+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
127127
required?: boolean
128128
unique?: boolean
129129
options?: Array<{
@@ -140,7 +140,7 @@ type AddTableColumnResponseRef0 = {
140140
columns: Array<{
141141
id?: string
142142
name: string
143-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
143+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
144144
required: boolean
145145
unique: boolean
146146
workflowGroupId?: string
@@ -190,7 +190,7 @@ export type AddWorkflowGroupBody = {
190190
}
191191
outputColumns: Array<{
192192
name: string
193-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
193+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
194194
required?: boolean
195195
unique?: boolean
196196
}>
@@ -225,7 +225,7 @@ type AddWorkflowGroupResponseRef1 = {
225225
columns: Array<{
226226
id?: string
227227
name: string
228-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
228+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
229229
required: boolean
230230
unique: boolean
231231
workflowGroupId?: string
@@ -1225,7 +1225,7 @@ export type CreateTableBody = {
12251225
columns: Array<{
12261226
id?: string
12271227
name: string
1228-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
1228+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
12291229
required?: boolean
12301230
unique?: boolean
12311231
options?: Array<{
@@ -1256,7 +1256,7 @@ type CreateTableResponseRef1 = {
12561256
columns: Array<{
12571257
id?: string
12581258
name: string
1259-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
1259+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
12601260
required: boolean
12611261
unique: boolean
12621262
workflowGroupId?: string
@@ -2002,7 +2002,7 @@ type DeleteTableColumnResponseRef0 = {
20022002
columns: Array<{
20032003
id?: string
20042004
name: string
2005-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
2005+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
20062006
required: boolean
20072007
unique: boolean
20082008
workflowGroupId?: string
@@ -2246,7 +2246,7 @@ type DeleteWorkflowGroupResponseRef0 = {
22462246
columns: Array<{
22472247
id?: string
22482248
name: string
2249-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
2249+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
22502250
required: boolean
22512251
unique: boolean
22522252
workflowGroupId?: string
@@ -2960,7 +2960,7 @@ type GetTableResponseRef1 = {
29602960
columns: Array<{
29612961
id?: string
29622962
name: string
2963-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
2963+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
29642964
required: boolean
29652965
unique: boolean
29662966
workflowGroupId?: string
@@ -4147,7 +4147,7 @@ type ListTablesResponseRef0 = {
41474147
columns: Array<{
41484148
id?: string
41494149
name: string
4150-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
4150+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
41514151
required: boolean
41524152
unique: boolean
41534153
workflowGroupId?: string
@@ -5691,7 +5691,7 @@ type UpdateTableResponseRef1 = {
56915691
columns: Array<{
56925692
id?: string
56935693
name: string
5694-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
5694+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
56955695
required: boolean
56965696
unique: boolean
56975697
workflowGroupId?: string
@@ -5733,7 +5733,7 @@ export type UpdateTableColumnBody = {
57335733
columnName: string
57345734
updates: {
57355735
name?: string
5736-
type?: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
5736+
type?: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
57375737
required?: boolean
57385738
unique?: boolean
57395739
options?: Array<{
@@ -5749,7 +5749,7 @@ type UpdateTableColumnResponseRef0 = {
57495749
columns: Array<{
57505750
id?: string
57515751
name: string
5752-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
5752+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
57535753
required: boolean
57545754
unique: boolean
57555755
workflowGroupId?: string
@@ -6000,7 +6000,7 @@ export type UpdateWorkflowGroupBody = {
60006000
}>
60016001
newOutputColumns?: Array<{
60026002
name: string
6003-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
6003+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
60046004
required?: boolean
60056005
unique?: boolean
60066006
}>
@@ -6046,7 +6046,7 @@ type UpdateWorkflowGroupResponseRef1 = {
60466046
columns: Array<{
60476047
id?: string
60486048
name: string
6049-
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'json' | 'select'
6049+
type: 'string' | 'number' | 'currency' | 'boolean' | 'date' | 'ttl' | 'json' | 'select'
60506050
required: boolean
60516051
unique: boolean
60526052
workflowGroupId?: string

0 commit comments

Comments
 (0)