@seamapi/types 1.775.0 → 1.777.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +94 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +123 -0
- package/dist/index.cjs +94 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +106 -0
- package/lib/seam/connect/openapi.js +94 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +17 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +94 -0
- package/src/lib/seam/connect/route-types.ts +19 -0
|
@@ -60741,6 +60741,20 @@ export type Routes = {
|
|
|
60741
60741
|
};
|
|
60742
60742
|
maxDuration: undefined;
|
|
60743
60743
|
};
|
|
60744
|
+
'/seam/console/v1/workspace/feature_flags/list': {
|
|
60745
|
+
route: '/seam/console/v1/workspace/feature_flags/list';
|
|
60746
|
+
method: 'GET' | 'POST';
|
|
60747
|
+
queryParams: {};
|
|
60748
|
+
jsonBody: {};
|
|
60749
|
+
commonParams: {};
|
|
60750
|
+
formData: {};
|
|
60751
|
+
jsonResponse: {
|
|
60752
|
+
feature_flags: {
|
|
60753
|
+
[x: string]: boolean;
|
|
60754
|
+
};
|
|
60755
|
+
};
|
|
60756
|
+
maxDuration: undefined;
|
|
60757
|
+
};
|
|
60744
60758
|
'/seam/customer/v1/access_grants/list': {
|
|
60745
60759
|
route: '/seam/customer/v1/access_grants/list';
|
|
60746
60760
|
method: 'GET' | 'POST';
|
|
@@ -66073,6 +66087,9 @@ export type Routes = {
|
|
|
66073
66087
|
} | undefined;
|
|
66074
66088
|
/** Business vertical of the customer portal. */
|
|
66075
66089
|
business_vertical?: ('neutral' | 'short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
66090
|
+
feature_flags?: {
|
|
66091
|
+
RESERVATION_UI_V2?: boolean | undefined;
|
|
66092
|
+
} | undefined;
|
|
66076
66093
|
};
|
|
66077
66094
|
};
|
|
66078
66095
|
maxDuration: undefined;
|
package/package.json
CHANGED
|
@@ -61214,6 +61214,88 @@ export default {
|
|
|
61214
61214
|
'x-undocumented': 'Internal endpoint for Console',
|
|
61215
61215
|
},
|
|
61216
61216
|
},
|
|
61217
|
+
'/seam/console/v1/workspace/feature_flags/list': {
|
|
61218
|
+
get: {
|
|
61219
|
+
description: 'Lists workspace feature flags.',
|
|
61220
|
+
operationId: 'seamConsoleV1WorkspaceFeatureFlagsListGet',
|
|
61221
|
+
responses: {
|
|
61222
|
+
200: {
|
|
61223
|
+
content: {
|
|
61224
|
+
'application/json': {
|
|
61225
|
+
schema: {
|
|
61226
|
+
properties: {
|
|
61227
|
+
feature_flags: {
|
|
61228
|
+
additionalProperties: { type: 'boolean' },
|
|
61229
|
+
type: 'object',
|
|
61230
|
+
},
|
|
61231
|
+
ok: { type: 'boolean' },
|
|
61232
|
+
},
|
|
61233
|
+
required: ['feature_flags', 'ok'],
|
|
61234
|
+
type: 'object',
|
|
61235
|
+
},
|
|
61236
|
+
},
|
|
61237
|
+
},
|
|
61238
|
+
description: 'OK',
|
|
61239
|
+
},
|
|
61240
|
+
400: { description: 'Bad Request' },
|
|
61241
|
+
401: { description: 'Unauthorized' },
|
|
61242
|
+
},
|
|
61243
|
+
security: [{ console_session_with_workspace: [] }],
|
|
61244
|
+
summary: '/seam/console/v1/workspace/feature_flags/list',
|
|
61245
|
+
tags: [],
|
|
61246
|
+
'x-fern-sdk-group-name': [
|
|
61247
|
+
'seam',
|
|
61248
|
+
'console',
|
|
61249
|
+
'v1',
|
|
61250
|
+
'workspace',
|
|
61251
|
+
'feature_flags',
|
|
61252
|
+
],
|
|
61253
|
+
'x-fern-sdk-method-name': 'list',
|
|
61254
|
+
'x-fern-sdk-return-value': 'feature_flags',
|
|
61255
|
+
'x-response-key': 'feature_flags',
|
|
61256
|
+
'x-undocumented': 'Internal endpoint for Console',
|
|
61257
|
+
},
|
|
61258
|
+
post: {
|
|
61259
|
+
description: 'Lists workspace feature flags.',
|
|
61260
|
+
operationId: 'seamConsoleV1WorkspaceFeatureFlagsListPost',
|
|
61261
|
+
responses: {
|
|
61262
|
+
200: {
|
|
61263
|
+
content: {
|
|
61264
|
+
'application/json': {
|
|
61265
|
+
schema: {
|
|
61266
|
+
properties: {
|
|
61267
|
+
feature_flags: {
|
|
61268
|
+
additionalProperties: { type: 'boolean' },
|
|
61269
|
+
type: 'object',
|
|
61270
|
+
},
|
|
61271
|
+
ok: { type: 'boolean' },
|
|
61272
|
+
},
|
|
61273
|
+
required: ['feature_flags', 'ok'],
|
|
61274
|
+
type: 'object',
|
|
61275
|
+
},
|
|
61276
|
+
},
|
|
61277
|
+
},
|
|
61278
|
+
description: 'OK',
|
|
61279
|
+
},
|
|
61280
|
+
400: { description: 'Bad Request' },
|
|
61281
|
+
401: { description: 'Unauthorized' },
|
|
61282
|
+
},
|
|
61283
|
+
security: [{ console_session_with_workspace: [] }],
|
|
61284
|
+
summary: '/seam/console/v1/workspace/feature_flags/list',
|
|
61285
|
+
tags: [],
|
|
61286
|
+
'x-fern-sdk-group-name': [
|
|
61287
|
+
'seam',
|
|
61288
|
+
'console',
|
|
61289
|
+
'v1',
|
|
61290
|
+
'workspace',
|
|
61291
|
+
'feature_flags',
|
|
61292
|
+
],
|
|
61293
|
+
'x-fern-sdk-method-name': 'list',
|
|
61294
|
+
'x-fern-sdk-return-value': 'feature_flags',
|
|
61295
|
+
'x-response-key': 'feature_flags',
|
|
61296
|
+
'x-undocumented': 'Internal endpoint for Console',
|
|
61297
|
+
},
|
|
61298
|
+
},
|
|
61217
61299
|
'/seam/customer/v1/access_grants/list': {
|
|
61218
61300
|
get: {
|
|
61219
61301
|
description: 'Gets an Access Grant.',
|
|
@@ -66846,6 +66928,12 @@ export default {
|
|
|
66846
66928
|
'Whether to exclude the option to select a locale within the portal UI.',
|
|
66847
66929
|
type: 'boolean',
|
|
66848
66930
|
},
|
|
66931
|
+
feature_flags: {
|
|
66932
|
+
properties: {
|
|
66933
|
+
RESERVATION_UI_V2: { type: 'boolean' },
|
|
66934
|
+
},
|
|
66935
|
+
type: 'object',
|
|
66936
|
+
},
|
|
66849
66937
|
features: {
|
|
66850
66938
|
default: { $ref: '#/components/schemas/access_code' },
|
|
66851
66939
|
properties: {
|
|
@@ -67253,6 +67341,12 @@ export default {
|
|
|
67253
67341
|
'Whether to exclude the option to select a locale within the portal UI.',
|
|
67254
67342
|
type: 'boolean',
|
|
67255
67343
|
},
|
|
67344
|
+
feature_flags: {
|
|
67345
|
+
properties: {
|
|
67346
|
+
RESERVATION_UI_V2: { type: 'boolean' },
|
|
67347
|
+
},
|
|
67348
|
+
type: 'object',
|
|
67349
|
+
},
|
|
67256
67350
|
features: {
|
|
67257
67351
|
default: { $ref: '#/components/schemas/access_code' },
|
|
67258
67352
|
properties: {
|
|
@@ -72253,6 +72253,20 @@ export type Routes = {
|
|
|
72253
72253
|
}
|
|
72254
72254
|
maxDuration: undefined
|
|
72255
72255
|
}
|
|
72256
|
+
'/seam/console/v1/workspace/feature_flags/list': {
|
|
72257
|
+
route: '/seam/console/v1/workspace/feature_flags/list'
|
|
72258
|
+
method: 'GET' | 'POST'
|
|
72259
|
+
queryParams: {}
|
|
72260
|
+
jsonBody: {}
|
|
72261
|
+
commonParams: {}
|
|
72262
|
+
formData: {}
|
|
72263
|
+
jsonResponse: {
|
|
72264
|
+
feature_flags: {
|
|
72265
|
+
[x: string]: boolean
|
|
72266
|
+
}
|
|
72267
|
+
}
|
|
72268
|
+
maxDuration: undefined
|
|
72269
|
+
}
|
|
72256
72270
|
'/seam/customer/v1/access_grants/list': {
|
|
72257
72271
|
route: '/seam/customer/v1/access_grants/list'
|
|
72258
72272
|
method: 'GET' | 'POST'
|
|
@@ -78582,6 +78596,11 @@ export type Routes = {
|
|
|
78582
78596
|
| 'property_tours'
|
|
78583
78597
|
)
|
|
78584
78598
|
| undefined
|
|
78599
|
+
feature_flags?:
|
|
78600
|
+
| {
|
|
78601
|
+
RESERVATION_UI_V2?: boolean | undefined
|
|
78602
|
+
}
|
|
78603
|
+
| undefined
|
|
78585
78604
|
}
|
|
78586
78605
|
}
|
|
78587
78606
|
maxDuration: undefined
|