@seamapi/types 1.783.0 → 1.784.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 +28 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +14 -0
- package/dist/index.cjs +28 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +10 -0
- package/lib/seam/connect/openapi.js +28 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +32 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
package/dist/connect.d.cts
CHANGED
|
@@ -86266,6 +86266,11 @@ declare const _default: {
|
|
|
86266
86266
|
'application/json': {
|
|
86267
86267
|
schema: {
|
|
86268
86268
|
properties: {
|
|
86269
|
+
access_code_id: {
|
|
86270
|
+
description: string;
|
|
86271
|
+
format: string;
|
|
86272
|
+
type: string;
|
|
86273
|
+
};
|
|
86269
86274
|
access_grant_ids: {
|
|
86270
86275
|
description: string;
|
|
86271
86276
|
items: {
|
|
@@ -89619,6 +89624,11 @@ declare const _default: {
|
|
|
89619
89624
|
'application/json': {
|
|
89620
89625
|
schema: {
|
|
89621
89626
|
properties: {
|
|
89627
|
+
access_code_id: {
|
|
89628
|
+
description: string;
|
|
89629
|
+
format: string;
|
|
89630
|
+
type: string;
|
|
89631
|
+
};
|
|
89622
89632
|
access_grant_id: {
|
|
89623
89633
|
description: string;
|
|
89624
89634
|
format: string;
|
|
@@ -148762,6 +148772,8 @@ type Routes = {
|
|
|
148762
148772
|
location_id?: string | undefined;
|
|
148763
148773
|
/** ID of the space by which you want to filter the list of Access Grants. */
|
|
148764
148774
|
space_id?: string | undefined;
|
|
148775
|
+
/** ID of the access code by which you want to filter the list of Access Grants. */
|
|
148776
|
+
access_code_id?: string | undefined;
|
|
148765
148777
|
/** Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key. */
|
|
148766
148778
|
access_grant_key?: (string | null) | undefined;
|
|
148767
148779
|
/** Filter Access Grants by reservation_key. */
|
|
@@ -152946,6 +152958,8 @@ type Routes = {
|
|
|
152946
152958
|
acs_entrance_id?: string | undefined;
|
|
152947
152959
|
/** ID of the space for which you want to retrieve all access methods. */
|
|
152948
152960
|
space_id?: string | undefined;
|
|
152961
|
+
/** ID of the access code for which you want to retrieve all access methods. */
|
|
152962
|
+
access_code_id?: string | undefined;
|
|
152949
152963
|
};
|
|
152950
152964
|
formData: {};
|
|
152951
152965
|
jsonResponse: {
|
package/dist/index.cjs
CHANGED
|
@@ -38172,6 +38172,15 @@ var openapi_default = {
|
|
|
38172
38172
|
type: "string"
|
|
38173
38173
|
}
|
|
38174
38174
|
},
|
|
38175
|
+
{
|
|
38176
|
+
in: "query",
|
|
38177
|
+
name: "access_code_id",
|
|
38178
|
+
schema: {
|
|
38179
|
+
description: "ID of the access code by which you want to filter the list of Access Grants.",
|
|
38180
|
+
format: "uuid",
|
|
38181
|
+
type: "string"
|
|
38182
|
+
}
|
|
38183
|
+
},
|
|
38175
38184
|
{
|
|
38176
38185
|
in: "query",
|
|
38177
38186
|
name: "access_grant_key",
|
|
@@ -38236,6 +38245,11 @@ var openapi_default = {
|
|
|
38236
38245
|
"application/json": {
|
|
38237
38246
|
schema: {
|
|
38238
38247
|
properties: {
|
|
38248
|
+
access_code_id: {
|
|
38249
|
+
description: "ID of the access code by which you want to filter the list of Access Grants.",
|
|
38250
|
+
format: "uuid",
|
|
38251
|
+
type: "string"
|
|
38252
|
+
},
|
|
38239
38253
|
access_grant_ids: {
|
|
38240
38254
|
description: "IDs of the access grants to retrieve.",
|
|
38241
38255
|
items: { format: "uuid", type: "string" },
|
|
@@ -41575,6 +41589,15 @@ var openapi_default = {
|
|
|
41575
41589
|
format: "uuid",
|
|
41576
41590
|
type: "string"
|
|
41577
41591
|
}
|
|
41592
|
+
},
|
|
41593
|
+
{
|
|
41594
|
+
in: "query",
|
|
41595
|
+
name: "access_code_id",
|
|
41596
|
+
schema: {
|
|
41597
|
+
description: "ID of the access code for which you want to retrieve all access methods.",
|
|
41598
|
+
format: "uuid",
|
|
41599
|
+
type: "string"
|
|
41600
|
+
}
|
|
41578
41601
|
}
|
|
41579
41602
|
],
|
|
41580
41603
|
responses: {
|
|
@@ -41622,6 +41645,11 @@ var openapi_default = {
|
|
|
41622
41645
|
"application/json": {
|
|
41623
41646
|
schema: {
|
|
41624
41647
|
properties: {
|
|
41648
|
+
access_code_id: {
|
|
41649
|
+
description: "ID of the access code for which you want to retrieve all access methods.",
|
|
41650
|
+
format: "uuid",
|
|
41651
|
+
type: "string"
|
|
41652
|
+
},
|
|
41625
41653
|
access_grant_id: {
|
|
41626
41654
|
description: "ID of Access Grant to list access methods for.",
|
|
41627
41655
|
format: "uuid",
|