@seamapi/types 1.608.0 → 1.610.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 +38 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +46 -2
- package/dist/index.cjs +38 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +40 -2
- package/lib/seam/connect/openapi.js +38 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +41 -0
- package/src/lib/seam/connect/route-types.ts +6 -0
|
@@ -11818,6 +11818,8 @@ export type Routes = {
|
|
|
11818
11818
|
space_id?: string | undefined;
|
|
11819
11819
|
/** Filter Access Grants by access_grant_key. */
|
|
11820
11820
|
access_grant_key?: string | undefined;
|
|
11821
|
+
/** Filter Access Grants by reservation_key. */
|
|
11822
|
+
reservation_key?: string | undefined;
|
|
11821
11823
|
};
|
|
11822
11824
|
formData: {};
|
|
11823
11825
|
jsonResponse: {
|
|
@@ -12033,6 +12035,8 @@ export type Routes = {
|
|
|
12033
12035
|
acs_system_id?: string | undefined;
|
|
12034
12036
|
/** ID of the entrance by which you want to filter the list of unmanaged Access Grants. */
|
|
12035
12037
|
acs_entrance_id?: string | undefined;
|
|
12038
|
+
/** Filter unmanaged Access Grants by reservation_key. */
|
|
12039
|
+
reservation_key?: string | undefined;
|
|
12036
12040
|
};
|
|
12037
12041
|
formData: {};
|
|
12038
12042
|
jsonResponse: {
|
|
@@ -59050,6 +59054,8 @@ export type Routes = {
|
|
|
59050
59054
|
limit?: number;
|
|
59051
59055
|
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|
|
59052
59056
|
created_before?: Date | undefined;
|
|
59057
|
+
/** String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names. */
|
|
59058
|
+
search?: string | undefined;
|
|
59053
59059
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
59054
59060
|
page_cursor?: ((string | undefined) | null) | undefined;
|
|
59055
59061
|
};
|
package/package.json
CHANGED
|
@@ -29082,6 +29082,14 @@ export default {
|
|
|
29082
29082
|
type: 'string',
|
|
29083
29083
|
},
|
|
29084
29084
|
},
|
|
29085
|
+
{
|
|
29086
|
+
in: 'query',
|
|
29087
|
+
name: 'reservation_key',
|
|
29088
|
+
schema: {
|
|
29089
|
+
description: 'Filter Access Grants by reservation_key.',
|
|
29090
|
+
type: 'string',
|
|
29091
|
+
},
|
|
29092
|
+
},
|
|
29085
29093
|
],
|
|
29086
29094
|
responses: {
|
|
29087
29095
|
200: {
|
|
@@ -29155,6 +29163,10 @@ export default {
|
|
|
29155
29163
|
type: 'string',
|
|
29156
29164
|
'x-deprecated': 'Use `space_id`.',
|
|
29157
29165
|
},
|
|
29166
|
+
reservation_key: {
|
|
29167
|
+
description: 'Filter Access Grants by reservation_key.',
|
|
29168
|
+
type: 'string',
|
|
29169
|
+
},
|
|
29158
29170
|
space_id: {
|
|
29159
29171
|
description:
|
|
29160
29172
|
'ID of the space by which you want to filter the list of Access Grants.',
|
|
@@ -29795,6 +29807,14 @@ export default {
|
|
|
29795
29807
|
type: 'string',
|
|
29796
29808
|
},
|
|
29797
29809
|
},
|
|
29810
|
+
{
|
|
29811
|
+
in: 'query',
|
|
29812
|
+
name: 'reservation_key',
|
|
29813
|
+
schema: {
|
|
29814
|
+
description: 'Filter unmanaged Access Grants by reservation_key.',
|
|
29815
|
+
type: 'string',
|
|
29816
|
+
},
|
|
29817
|
+
},
|
|
29798
29818
|
],
|
|
29799
29819
|
responses: {
|
|
29800
29820
|
200: {
|
|
@@ -30033,6 +30053,11 @@ export default {
|
|
|
30033
30053
|
format: 'uuid',
|
|
30034
30054
|
type: 'string',
|
|
30035
30055
|
},
|
|
30056
|
+
reservation_key: {
|
|
30057
|
+
description:
|
|
30058
|
+
'Filter unmanaged Access Grants by reservation_key.',
|
|
30059
|
+
type: 'string',
|
|
30060
|
+
},
|
|
30036
30061
|
user_identity_id: {
|
|
30037
30062
|
description:
|
|
30038
30063
|
'ID of user identity by which you want to filter the list of unmanaged Access Grants.',
|
|
@@ -53288,6 +53313,16 @@ export default {
|
|
|
53288
53313
|
type: 'string',
|
|
53289
53314
|
},
|
|
53290
53315
|
},
|
|
53316
|
+
{
|
|
53317
|
+
in: 'query',
|
|
53318
|
+
name: 'search',
|
|
53319
|
+
schema: {
|
|
53320
|
+
description:
|
|
53321
|
+
'String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names.',
|
|
53322
|
+
minLength: 1,
|
|
53323
|
+
type: 'string',
|
|
53324
|
+
},
|
|
53325
|
+
},
|
|
53291
53326
|
{
|
|
53292
53327
|
in: 'query',
|
|
53293
53328
|
name: 'page_cursor',
|
|
@@ -53409,6 +53444,12 @@ export default {
|
|
|
53409
53444
|
nullable: true,
|
|
53410
53445
|
type: 'string',
|
|
53411
53446
|
},
|
|
53447
|
+
search: {
|
|
53448
|
+
description:
|
|
53449
|
+
'String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names.',
|
|
53450
|
+
minLength: 1,
|
|
53451
|
+
type: 'string',
|
|
53452
|
+
},
|
|
53412
53453
|
space_id: {
|
|
53413
53454
|
description: 'Filter reservations by space ID (UUID).',
|
|
53414
53455
|
format: 'uuid',
|
|
@@ -13557,6 +13557,8 @@ export type Routes = {
|
|
|
13557
13557
|
space_id?: string | undefined
|
|
13558
13558
|
/** Filter Access Grants by access_grant_key. */
|
|
13559
13559
|
access_grant_key?: string | undefined
|
|
13560
|
+
/** Filter Access Grants by reservation_key. */
|
|
13561
|
+
reservation_key?: string | undefined
|
|
13560
13562
|
}
|
|
13561
13563
|
formData: {}
|
|
13562
13564
|
jsonResponse: {
|
|
@@ -13772,6 +13774,8 @@ export type Routes = {
|
|
|
13772
13774
|
acs_system_id?: string | undefined
|
|
13773
13775
|
/** ID of the entrance by which you want to filter the list of unmanaged Access Grants. */
|
|
13774
13776
|
acs_entrance_id?: string | undefined
|
|
13777
|
+
/** Filter unmanaged Access Grants by reservation_key. */
|
|
13778
|
+
reservation_key?: string | undefined
|
|
13775
13779
|
}
|
|
13776
13780
|
formData: {}
|
|
13777
13781
|
jsonResponse: {
|
|
@@ -70361,6 +70365,8 @@ export type Routes = {
|
|
|
70361
70365
|
limit?: number
|
|
70362
70366
|
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|
|
70363
70367
|
created_before?: Date | undefined
|
|
70368
|
+
/** String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names. */
|
|
70369
|
+
search?: string | undefined
|
|
70364
70370
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
70365
70371
|
page_cursor?: ((string | undefined) | null) | undefined
|
|
70366
70372
|
}
|