Skip to content

Commit c41d26a

Browse files
authored
feat: Sync with Seam API via a300a65263c53bc2c2f6ddd864f3b7e32004e886 (#2552)
1 parent 17d92b1 commit c41d26a

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52841,7 +52841,7 @@ export default {
5284152841
parameters: [
5284252842
{
5284352843
in: 'query',
52844-
name: 'workspace_slug',
52844+
name: 'slug',
5284552845
required: true,
5284652846
schema: {
5284752847
description: 'Workspace slug',
@@ -52911,13 +52911,13 @@ export default {
5291152911
minLength: 1,
5291252912
type: 'string',
5291352913
},
52914-
workspace_slug: {
52914+
slug: {
5291552915
description: 'Workspace slug',
5291652916
minLength: 1,
5291752917
type: 'string',
5291852918
},
5291952919
},
52920-
required: ['workspace_slug'],
52920+
required: ['slug'],
5292152921
type: 'object',
5292252922
},
5292352923
},
@@ -55402,6 +55402,7 @@ export default {
5540255402
type: 'string',
5540355403
},
5540455404
ok: { type: 'boolean' },
55405+
slug: { nullable: true, type: 'string' },
5540555406
},
5540655407
required: ['ok'],
5540755408
type: 'object',
@@ -55444,6 +55445,7 @@ export default {
5544455445
type: 'string',
5544555446
},
5544655447
ok: { type: 'boolean' },
55448+
slug: { nullable: true, type: 'string' },
5544755449
},
5544855450
required: ['ok'],
5544955451
type: 'object',
@@ -55486,6 +55488,11 @@ export default {
5548655488
],
5548755489
type: 'string',
5548855490
},
55491+
slug: {
55492+
description: 'Slug to set on the workspace.',
55493+
nullable: true,
55494+
type: 'string',
55495+
},
5548955496
},
5549055497
type: 'object',
5549155498
},
@@ -55536,6 +55543,11 @@ export default {
5553655543
],
5553755544
type: 'string',
5553855545
},
55546+
slug: {
55547+
description: 'Slug to set on the workspace.',
55548+
nullable: true,
55549+
type: 'string',
55550+
},
5553955551
},
5554055552
type: 'object',
5554155553
},

src/lib/seam/connect/route-types.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62029,7 +62029,7 @@ export type Routes = {
6202962029
jsonBody: {}
6203062030
commonParams: {
6203162031
/** Workspace slug */
62032-
workspace_slug: string
62032+
slug: string
6203362033
/** Connector name/type. If not provided, workspace_slug will be used as connector_name */
6203462034
connector_name?: string | undefined
6203562035
}
@@ -64910,6 +64910,7 @@ export type Routes = {
6491064910
| 'property_tours'
6491164911
)
6491264912
| undefined
64913+
slug?: (string | null) | undefined
6491364914
}
6491464915
maxDuration: undefined
6491564916
}
@@ -64928,6 +64929,8 @@ export type Routes = {
6492864929
| 'property_tours'
6492964930
)
6493064931
| undefined
64932+
/** Slug to set on the workspace. */
64933+
slug?: (string | null) | undefined
6493164934
}
6493264935
commonParams: {}
6493364936
formData: {}

0 commit comments

Comments
 (0)