@seamapi/types 1.1031.0 → 1.1033.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.
|
@@ -79899,11 +79899,11 @@ export type Routes = {
|
|
|
79899
79899
|
route: '/seam/console/v1/sites/delete';
|
|
79900
79900
|
method: 'DELETE' | 'POST';
|
|
79901
79901
|
queryParams: {};
|
|
79902
|
-
jsonBody: {
|
|
79902
|
+
jsonBody: {};
|
|
79903
|
+
commonParams: {
|
|
79903
79904
|
/** ID of the site that you want to delete. */
|
|
79904
79905
|
site_id: string;
|
|
79905
79906
|
};
|
|
79906
|
-
commonParams: {};
|
|
79907
79907
|
formData: {};
|
|
79908
79908
|
jsonResponse: {};
|
|
79909
79909
|
maxDuration: undefined;
|
|
@@ -87954,11 +87954,11 @@ export type Routes = {
|
|
|
87954
87954
|
route: '/seam/instant_key/v1/preview/get';
|
|
87955
87955
|
method: 'GET' | 'POST';
|
|
87956
87956
|
queryParams: {};
|
|
87957
|
-
jsonBody: {
|
|
87957
|
+
jsonBody: {};
|
|
87958
|
+
commonParams: {
|
|
87958
87959
|
/** The short code of the instant key to preview. */
|
|
87959
87960
|
instant_key_url: string;
|
|
87960
87961
|
};
|
|
87961
|
-
commonParams: {};
|
|
87962
87962
|
formData: {};
|
|
87963
87963
|
jsonResponse: {
|
|
87964
87964
|
/** Represents a preview of an Instant Key with hotel, guest, and access information. */
|
package/package.json
CHANGED
|
@@ -38423,6 +38423,11 @@ const openapi: OpenAPISpec = {
|
|
|
38423
38423
|
scheme: 'bearer',
|
|
38424
38424
|
type: 'http',
|
|
38425
38425
|
},
|
|
38426
|
+
certified_client_optional: {
|
|
38427
|
+
bearerFormat: 'Certified Client (Optional)',
|
|
38428
|
+
scheme: 'bearer',
|
|
38429
|
+
type: 'http',
|
|
38430
|
+
},
|
|
38426
38431
|
client_session: {
|
|
38427
38432
|
bearerFormat: 'Client Session Token',
|
|
38428
38433
|
scheme: 'bearer',
|
|
@@ -64702,7 +64707,7 @@ const openapi: OpenAPISpec = {
|
|
|
64702
64707
|
'400': { description: 'Bad Request' },
|
|
64703
64708
|
'401': { description: 'Unauthorized' },
|
|
64704
64709
|
},
|
|
64705
|
-
security: [{
|
|
64710
|
+
security: [{}, { certified_client_optional: [] }],
|
|
64706
64711
|
summary: '/seam/bridge/v1/bridge_client_sessions/create',
|
|
64707
64712
|
tags: [],
|
|
64708
64713
|
'x-fern-sdk-group-name': [
|
|
@@ -67858,23 +67863,18 @@ const openapi: OpenAPISpec = {
|
|
|
67858
67863
|
delete: {
|
|
67859
67864
|
description: 'Deletes a site.',
|
|
67860
67865
|
operationId: 'seamConsoleV1SitesDeleteDelete',
|
|
67861
|
-
|
|
67862
|
-
|
|
67863
|
-
'
|
|
67864
|
-
|
|
67865
|
-
|
|
67866
|
-
|
|
67867
|
-
|
|
67868
|
-
|
|
67869
|
-
|
|
67870
|
-
},
|
|
67871
|
-
},
|
|
67872
|
-
required: ['site_id'],
|
|
67873
|
-
type: 'object',
|
|
67874
|
-
},
|
|
67866
|
+
parameters: [
|
|
67867
|
+
{
|
|
67868
|
+
in: 'query',
|
|
67869
|
+
name: 'site_id',
|
|
67870
|
+
required: true,
|
|
67871
|
+
schema: {
|
|
67872
|
+
description: 'ID of the site that you want to delete.',
|
|
67873
|
+
format: 'uuid',
|
|
67874
|
+
type: 'string',
|
|
67875
67875
|
},
|
|
67876
67876
|
},
|
|
67877
|
-
|
|
67877
|
+
],
|
|
67878
67878
|
responses: {
|
|
67879
67879
|
'200': {
|
|
67880
67880
|
content: {
|
|
@@ -79718,23 +79718,17 @@ const openapi: OpenAPISpec = {
|
|
|
79718
79718
|
'/seam/instant_key/v1/preview/get': {
|
|
79719
79719
|
get: {
|
|
79720
79720
|
operationId: 'seamInstantKeyV1PreviewGetGet',
|
|
79721
|
-
|
|
79722
|
-
|
|
79723
|
-
'
|
|
79724
|
-
|
|
79725
|
-
|
|
79726
|
-
|
|
79727
|
-
|
|
79728
|
-
|
|
79729
|
-
type: 'string',
|
|
79730
|
-
},
|
|
79731
|
-
},
|
|
79732
|
-
required: ['instant_key_url'],
|
|
79733
|
-
type: 'object',
|
|
79734
|
-
},
|
|
79721
|
+
parameters: [
|
|
79722
|
+
{
|
|
79723
|
+
in: 'query',
|
|
79724
|
+
name: 'instant_key_url',
|
|
79725
|
+
required: true,
|
|
79726
|
+
schema: {
|
|
79727
|
+
description: 'The short code of the instant key to preview.',
|
|
79728
|
+
type: 'string',
|
|
79735
79729
|
},
|
|
79736
79730
|
},
|
|
79737
|
-
|
|
79731
|
+
],
|
|
79738
79732
|
responses: {
|
|
79739
79733
|
'200': {
|
|
79740
79734
|
content: {
|
|
@@ -95956,11 +95956,11 @@ export type Routes = {
|
|
|
95956
95956
|
route: '/seam/console/v1/sites/delete'
|
|
95957
95957
|
method: 'DELETE' | 'POST'
|
|
95958
95958
|
queryParams: {}
|
|
95959
|
-
jsonBody: {
|
|
95959
|
+
jsonBody: {}
|
|
95960
|
+
commonParams: {
|
|
95960
95961
|
/** ID of the site that you want to delete. */
|
|
95961
95962
|
site_id: string
|
|
95962
95963
|
}
|
|
95963
|
-
commonParams: {}
|
|
95964
95964
|
formData: {}
|
|
95965
95965
|
jsonResponse: {}
|
|
95966
95966
|
maxDuration: undefined
|
|
@@ -105410,11 +105410,11 @@ export type Routes = {
|
|
|
105410
105410
|
route: '/seam/instant_key/v1/preview/get'
|
|
105411
105411
|
method: 'GET' | 'POST'
|
|
105412
105412
|
queryParams: {}
|
|
105413
|
-
jsonBody: {
|
|
105413
|
+
jsonBody: {}
|
|
105414
|
+
commonParams: {
|
|
105414
105415
|
/** The short code of the instant key to preview. */
|
|
105415
105416
|
instant_key_url: string
|
|
105416
105417
|
}
|
|
105417
|
-
commonParams: {}
|
|
105418
105418
|
formData: {}
|
|
105419
105419
|
jsonResponse: {
|
|
105420
105420
|
/** Represents a preview of an Instant Key with hotel, guest, and access information. */
|