Skip to content

Commit 37ddf61

Browse files
authored
feat: Sync with Seam API via 91f5bb19f232a0bec76e36590897cd51a4673859 (#2735)
1 parent f495085 commit 37ddf61

File tree

3 files changed

+44
-4
lines changed

3 files changed

+44
-4
lines changed

src/lib/seam/connect/models/customer/customer-portal.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,12 @@ export const portal_configuration_base = z.object({
172172
resource_type: z.enum(['reservation', 'space']),
173173
resource_key: z.string(),
174174
})
175-
.optional()
176-
.describe(
177-
'Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource.',
178-
),
175+
.optional().describe(`
176+
---
177+
undocumented: Internal endpoint for customer portals.
178+
---
179+
Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource.
180+
`),
179181
})
180182

181183
export const portal_configuration = portal_configuration_base

src/lib/seam/connect/models/customer/user-identity-resources.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ export const staff_member_resource = base_user_identity_resource.extend({
124124
}).describe(`
125125
---
126126
route_path: /seam/customer/v1/staff_members
127+
undocumented: Internal resource for customer portals.
127128
---
128129
Represents a staff member for a specific customer.
129130
`)

src/lib/seam/connect/openapi.ts

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25390,6 +25390,7 @@ export default {
2539025390
required: ['name', 'staff_member_key'],
2539125391
type: 'object',
2539225392
'x-route-path': '/seam/customer/v1/staff_members',
25393+
'x-undocumented': 'Internal resource for customer portals.',
2539325394
},
2539425395
thermostat_daily_program: {
2539525396
description:
@@ -31859,6 +31860,8 @@ export default {
3185931860
},
3186031861
timeline_events: {
3186131862
items: {
31863+
description:
31864+
'Timeline event for access code lifecycle activity.',
3186231865
properties: {
3186331866
actor: {
3186431867
description:
@@ -31924,6 +31927,7 @@ export default {
3192431927
'access_code.unmanaged.failed_to_convert_to_managed',
3192531928
],
3192631929
type: 'string',
31930+
'x-undocumented': 'Unreleased.',
3192731931
},
3192831932
occurred_at: {
3192931933
description:
@@ -31963,6 +31967,7 @@ export default {
3196331967
'actor',
3196431968
],
3196531969
type: 'object',
31970+
'x-undocumented': 'Unreleased.',
3196631971
},
3196731972
type: 'array',
3196831973
},
@@ -31991,6 +31996,7 @@ export default {
3199131996
'x-fern-sdk-return-value': 'timeline_events',
3199231997
'x-response-key': 'timeline_events',
3199331998
'x-title': 'Get Access Code Timeline',
31999+
'x-undocumented': 'Unreleased.',
3199432000
},
3199532001
post: {
3199632002
description:
@@ -32079,6 +32085,8 @@ export default {
3207932085
},
3208032086
timeline_events: {
3208132087
items: {
32088+
description:
32089+
'Timeline event for access code lifecycle activity.',
3208232090
properties: {
3208332091
actor: {
3208432092
description:
@@ -32144,6 +32152,7 @@ export default {
3214432152
'access_code.unmanaged.failed_to_convert_to_managed',
3214532153
],
3214632154
type: 'string',
32155+
'x-undocumented': 'Unreleased.',
3214732156
},
3214832157
occurred_at: {
3214932158
description:
@@ -32183,6 +32192,7 @@ export default {
3218332192
'actor',
3218432193
],
3218532194
type: 'object',
32195+
'x-undocumented': 'Unreleased.',
3218632196
},
3218732197
type: 'array',
3218832198
},
@@ -32211,6 +32221,7 @@ export default {
3221132221
'x-fern-sdk-return-value': 'timeline_events',
3221232222
'x-response-key': 'timeline_events',
3221332223
'x-title': 'Get Access Code Timeline',
32224+
'x-undocumented': 'Unreleased.',
3221432225
},
3221532226
},
3221632227
'/access_codes/list': {
@@ -49652,6 +49663,8 @@ export default {
4965249663
},
4965349664
required: ['resource_type', 'resource_key'],
4965449665
type: 'object',
49666+
'x-undocumented':
49667+
'Internal endpoint for customer portals.',
4965549668
},
4965649669
exclude_locale_picker: {
4965749670
default: false,
@@ -50654,6 +50667,8 @@ export default {
5065450667
required: ['name', 'staff_member_key'],
5065550668
type: 'object',
5065650669
'x-route-path': '/seam/customer/v1/staff_members',
50670+
'x-undocumented':
50671+
'Internal resource for customer portals.',
5065750672
},
5065850673
type: 'array',
5065950674
},
@@ -51887,6 +51902,8 @@ export default {
5188751902
required: ['name', 'staff_member_key'],
5188851903
type: 'object',
5188951904
'x-route-path': '/seam/customer/v1/staff_members',
51905+
'x-undocumented':
51906+
'Internal resource for customer portals.',
5189051907
},
5189151908
type: 'array',
5189251909
},
@@ -52121,6 +52138,7 @@ export default {
5212152138
'x-fern-sdk-return-value': 'deep_link',
5212252139
'x-response-key': 'deep_link',
5212352140
'x-title': 'Create Reservation Deep Link',
52141+
'x-undocumented': 'Internal endpoint for customer portals.',
5212452142
},
5212552143
},
5212652144
'/devices/delete': {
@@ -64193,6 +64211,7 @@ export default {
6419364211
'x-fern-sdk-return-value': 'automation',
6419464212
'x-response-key': 'automation',
6419564213
'x-title': 'Get Customer Automation Configuration',
64214+
'x-undocumented': 'Internal endpoint for customer portals.',
6419664215
},
6419764216
post: {
6419864217
description:
@@ -64491,6 +64510,7 @@ export default {
6449164510
'x-fern-sdk-return-value': 'automation',
6449264511
'x-response-key': 'automation',
6449364512
'x-title': 'Get Customer Automation Configuration',
64513+
'x-undocumented': 'Internal endpoint for customer portals.',
6449464514
},
6449564515
},
6449664516
'/seam/customer/v1/customers/automations/update': {
@@ -64779,6 +64799,7 @@ export default {
6477964799
'x-fern-sdk-method-name': 'update',
6478064800
'x-response-key': null,
6478164801
'x-title': 'Update Customer Automation Configuration',
64802+
'x-undocumented': 'Internal endpoint for customer portals.',
6478264803
},
6478364804
post: {
6478464805
description:
@@ -65065,6 +65086,7 @@ export default {
6506565086
'x-fern-sdk-method-name': 'update',
6506665087
'x-response-key': null,
6506765088
'x-title': 'Update Customer Automation Configuration',
65089+
'x-undocumented': 'Internal endpoint for customer portals.',
6506865090
},
6506965091
},
6507065092
'/seam/customer/v1/customers/list': {
@@ -65249,6 +65271,7 @@ export default {
6524965271
'x-fern-sdk-method-name': 'me',
6525065272
'x-response-key': null,
6525165273
'x-title': 'Me',
65274+
'x-undocumented': 'Internal endpoint for customer portals.',
6525265275
},
6525365276
post: {
6525465277
description:
@@ -65285,6 +65308,7 @@ export default {
6528565308
'x-fern-sdk-method-name': 'me',
6528665309
'x-response-key': null,
6528765310
'x-title': 'Me',
65311+
'x-undocumented': 'Internal endpoint for customer portals.',
6528865312
},
6528965313
},
6529065314
'/seam/customer/v1/customers/open_portal': {
@@ -66149,6 +66173,8 @@ export default {
6614966173
},
6615066174
required: ['resource_type', 'resource_key'],
6615166175
type: 'object',
66176+
'x-undocumented':
66177+
'Internal endpoint for customer portals.',
6615266178
},
6615366179
exclude_locale_picker: {
6615466180
default: false,
@@ -66554,6 +66580,8 @@ export default {
6655466580
},
6655566581
required: ['resource_type', 'resource_key'],
6655666582
type: 'object',
66583+
'x-undocumented':
66584+
'Internal endpoint for customer portals.',
6655766585
},
6655866586
exclude_locale_picker: {
6655966587
default: false,
@@ -69263,6 +69291,7 @@ export default {
6926369291
'x-fern-sdk-method-name': 'push_common_areas',
6926469292
'x-response-key': null,
6926569293
'x-title': 'Push Common Areas',
69294+
'x-undocumented': 'Internal endpoint for customer portals.',
6926669295
},
6926769296
},
6926869297
'/seam/customer/v1/staff_members/get': {
@@ -69336,6 +69365,8 @@ export default {
6933669365
required: ['staff_member_key', 'name'],
6933769366
type: 'object',
6933869367
'x-route-path': '/seam/customer/v1/staff_members',
69368+
'x-undocumented':
69369+
'Internal resource for customer portals.',
6933969370
},
6934069371
},
6934169372
required: ['access_grant', 'spaces', 'staff_member', 'ok'],
@@ -69433,6 +69464,8 @@ export default {
6943369464
required: ['staff_member_key', 'name'],
6943469465
type: 'object',
6943569466
'x-route-path': '/seam/customer/v1/staff_members',
69467+
'x-undocumented':
69468+
'Internal resource for customer portals.',
6943669469
},
6943769470
},
6943869471
required: ['access_grant', 'spaces', 'staff_member', 'ok'],
@@ -69555,6 +69588,8 @@ export default {
6955569588
required: ['staff_member_key', 'name'],
6955669589
type: 'object',
6955769590
'x-route-path': '/seam/customer/v1/staff_members',
69591+
'x-undocumented':
69592+
'Internal resource for customer portals.',
6955869593
},
6955969594
type: 'array',
6956069595
},
@@ -69667,6 +69702,8 @@ export default {
6966769702
required: ['staff_member_key', 'name'],
6966869703
type: 'object',
6966969704
'x-route-path': '/seam/customer/v1/staff_members',
69705+
'x-undocumented':
69706+
'Internal resource for customer portals.',
6967069707
},
6967169708
type: 'array',
6967269709
},

0 commit comments

Comments
 (0)