@seamapi/types 1.441.2 → 1.442.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 +41 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +52 -1
- package/dist/index.cjs +41 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +46 -0
- package/lib/seam/connect/openapi.js +41 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +45 -0
- package/src/lib/seam/connect/route-types.ts +6 -1
|
@@ -16487,6 +16487,8 @@ export interface Routes {
|
|
|
16487
16487
|
connected_account_id?: string | undefined;
|
|
16488
16488
|
/** IDs of the entrances for which you want to retrieve all entrances. */
|
|
16489
16489
|
acs_entrance_ids?: string[] | undefined;
|
|
16490
|
+
/** String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`. */
|
|
16491
|
+
search?: string | undefined;
|
|
16490
16492
|
};
|
|
16491
16493
|
formData: {};
|
|
16492
16494
|
jsonResponse: {
|
|
@@ -47905,7 +47907,10 @@ export interface Routes {
|
|
|
47905
47907
|
method: 'GET' | 'POST';
|
|
47906
47908
|
queryParams: {};
|
|
47907
47909
|
jsonBody: {};
|
|
47908
|
-
commonParams: {
|
|
47910
|
+
commonParams: {
|
|
47911
|
+
/** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`. */
|
|
47912
|
+
search?: string | undefined;
|
|
47913
|
+
};
|
|
47909
47914
|
formData: {};
|
|
47910
47915
|
jsonResponse: {
|
|
47911
47916
|
spaces: Array<{
|
package/package.json
CHANGED
|
@@ -32121,6 +32121,16 @@ export default {
|
|
|
32121
32121
|
type: 'array',
|
|
32122
32122
|
},
|
|
32123
32123
|
},
|
|
32124
|
+
{
|
|
32125
|
+
in: 'query',
|
|
32126
|
+
name: 'search',
|
|
32127
|
+
schema: {
|
|
32128
|
+
description:
|
|
32129
|
+
'String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.',
|
|
32130
|
+
minLength: 1,
|
|
32131
|
+
type: 'string',
|
|
32132
|
+
},
|
|
32133
|
+
},
|
|
32124
32134
|
],
|
|
32125
32135
|
responses: {
|
|
32126
32136
|
200: {
|
|
@@ -32210,6 +32220,12 @@ export default {
|
|
|
32210
32220
|
type: 'string',
|
|
32211
32221
|
'x-deprecated': 'Use `space_id`.',
|
|
32212
32222
|
},
|
|
32223
|
+
search: {
|
|
32224
|
+
description:
|
|
32225
|
+
'String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.',
|
|
32226
|
+
minLength: 1,
|
|
32227
|
+
type: 'string',
|
|
32228
|
+
},
|
|
32213
32229
|
space_id: {
|
|
32214
32230
|
description:
|
|
32215
32231
|
'ID of the space for which you want to list entrances.',
|
|
@@ -47309,6 +47325,18 @@ export default {
|
|
|
47309
47325
|
get: {
|
|
47310
47326
|
description: 'Returns a list of all spaces.',
|
|
47311
47327
|
operationId: 'spacesListGet',
|
|
47328
|
+
parameters: [
|
|
47329
|
+
{
|
|
47330
|
+
in: 'query',
|
|
47331
|
+
name: 'search',
|
|
47332
|
+
schema: {
|
|
47333
|
+
description:
|
|
47334
|
+
'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
|
|
47335
|
+
minLength: 1,
|
|
47336
|
+
type: 'string',
|
|
47337
|
+
},
|
|
47338
|
+
},
|
|
47339
|
+
],
|
|
47312
47340
|
responses: {
|
|
47313
47341
|
200: {
|
|
47314
47342
|
content: {
|
|
@@ -47348,6 +47376,23 @@ export default {
|
|
|
47348
47376
|
post: {
|
|
47349
47377
|
description: 'Returns a list of all spaces.',
|
|
47350
47378
|
operationId: 'spacesListPost',
|
|
47379
|
+
requestBody: {
|
|
47380
|
+
content: {
|
|
47381
|
+
'application/json': {
|
|
47382
|
+
schema: {
|
|
47383
|
+
properties: {
|
|
47384
|
+
search: {
|
|
47385
|
+
description:
|
|
47386
|
+
'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
|
|
47387
|
+
minLength: 1,
|
|
47388
|
+
type: 'string',
|
|
47389
|
+
},
|
|
47390
|
+
},
|
|
47391
|
+
type: 'object',
|
|
47392
|
+
},
|
|
47393
|
+
},
|
|
47394
|
+
},
|
|
47395
|
+
},
|
|
47351
47396
|
responses: {
|
|
47352
47397
|
200: {
|
|
47353
47398
|
content: {
|
|
@@ -18668,6 +18668,8 @@ export interface Routes {
|
|
|
18668
18668
|
connected_account_id?: string | undefined
|
|
18669
18669
|
/** IDs of the entrances for which you want to retrieve all entrances. */
|
|
18670
18670
|
acs_entrance_ids?: string[] | undefined
|
|
18671
|
+
/** String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`. */
|
|
18672
|
+
search?: string | undefined
|
|
18671
18673
|
}
|
|
18672
18674
|
formData: {}
|
|
18673
18675
|
jsonResponse: {
|
|
@@ -56607,7 +56609,10 @@ export interface Routes {
|
|
|
56607
56609
|
method: 'GET' | 'POST'
|
|
56608
56610
|
queryParams: {}
|
|
56609
56611
|
jsonBody: {}
|
|
56610
|
-
commonParams: {
|
|
56612
|
+
commonParams: {
|
|
56613
|
+
/** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`. */
|
|
56614
|
+
search?: string | undefined
|
|
56615
|
+
}
|
|
56611
56616
|
formData: {}
|
|
56612
56617
|
jsonResponse: {
|
|
56613
56618
|
spaces: Array<{
|