@seamapi/types 1.505.0 → 1.506.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 +14 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +22 -4
- package/dist/index.cjs +14 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +19 -3
- package/lib/seam/connect/openapi.js +14 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -4
- package/src/lib/seam/connect/route-types.ts +3 -1
|
@@ -58018,7 +58018,9 @@ export type Routes = {
|
|
|
58018
58018
|
jsonBody: {};
|
|
58019
58019
|
commonParams: {
|
|
58020
58020
|
/** IDs of the spaces that you want to get along with their related resources. */
|
|
58021
|
-
space_ids
|
|
58021
|
+
space_ids?: string[] | undefined;
|
|
58022
|
+
/** Keys of the spaces that you want to get along with their related resources. */
|
|
58023
|
+
space_keys?: string[] | undefined;
|
|
58022
58024
|
include?: ('spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems')[] | undefined;
|
|
58023
58025
|
exclude?: ('spaces' | 'devices' | 'acs_entrances' | 'connected_accounts' | 'acs_systems')[] | undefined;
|
|
58024
58026
|
};
|
package/package.json
CHANGED
|
@@ -49696,7 +49696,6 @@ export default {
|
|
|
49696
49696
|
{
|
|
49697
49697
|
in: 'query',
|
|
49698
49698
|
name: 'space_ids',
|
|
49699
|
-
required: true,
|
|
49700
49699
|
schema: {
|
|
49701
49700
|
description:
|
|
49702
49701
|
'IDs of the spaces that you want to get along with their related resources.',
|
|
@@ -49704,10 +49703,19 @@ export default {
|
|
|
49704
49703
|
type: 'array',
|
|
49705
49704
|
},
|
|
49706
49705
|
},
|
|
49706
|
+
{
|
|
49707
|
+
in: 'query',
|
|
49708
|
+
name: 'space_keys',
|
|
49709
|
+
schema: {
|
|
49710
|
+
description:
|
|
49711
|
+
'Keys of the spaces that you want to get along with their related resources.',
|
|
49712
|
+
items: { type: 'string' },
|
|
49713
|
+
type: 'array',
|
|
49714
|
+
},
|
|
49715
|
+
},
|
|
49707
49716
|
{
|
|
49708
49717
|
in: 'query',
|
|
49709
49718
|
name: 'include',
|
|
49710
|
-
required: false,
|
|
49711
49719
|
schema: {
|
|
49712
49720
|
items: {
|
|
49713
49721
|
enum: [
|
|
@@ -49725,7 +49733,6 @@ export default {
|
|
|
49725
49733
|
{
|
|
49726
49734
|
in: 'query',
|
|
49727
49735
|
name: 'exclude',
|
|
49728
|
-
required: false,
|
|
49729
49736
|
schema: {
|
|
49730
49737
|
items: {
|
|
49731
49738
|
enum: [
|
|
@@ -49844,8 +49851,13 @@ export default {
|
|
|
49844
49851
|
items: { format: 'uuid', type: 'string' },
|
|
49845
49852
|
type: 'array',
|
|
49846
49853
|
},
|
|
49854
|
+
space_keys: {
|
|
49855
|
+
description:
|
|
49856
|
+
'Keys of the spaces that you want to get along with their related resources.',
|
|
49857
|
+
items: { type: 'string' },
|
|
49858
|
+
type: 'array',
|
|
49859
|
+
},
|
|
49847
49860
|
},
|
|
49848
|
-
required: ['space_ids'],
|
|
49849
49861
|
type: 'object',
|
|
49850
49862
|
},
|
|
49851
49863
|
},
|
|
@@ -68958,7 +68958,9 @@ export type Routes = {
|
|
|
68958
68958
|
jsonBody: {}
|
|
68959
68959
|
commonParams: {
|
|
68960
68960
|
/** IDs of the spaces that you want to get along with their related resources. */
|
|
68961
|
-
space_ids
|
|
68961
|
+
space_ids?: string[] | undefined
|
|
68962
|
+
/** Keys of the spaces that you want to get along with their related resources. */
|
|
68963
|
+
space_keys?: string[] | undefined
|
|
68962
68964
|
include?:
|
|
68963
68965
|
| (
|
|
68964
68966
|
| 'spaces'
|