@seamapi/types 1.504.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.
@@ -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: string[];
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.504.0",
3
+ "version": "1.506.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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
  },
@@ -57615,7 +57627,7 @@ export default {
57615
57627
  'x-fern-sdk-group-name': ['workspaces'],
57616
57628
  'x-fern-sdk-method-name': 'update',
57617
57629
  'x-response-key': null,
57618
- 'x-title': 'Udpate a Workspace',
57630
+ 'x-title': 'Update a Workspace',
57619
57631
  },
57620
57632
  post: {
57621
57633
  description:
@@ -57692,7 +57704,7 @@ export default {
57692
57704
  'x-fern-sdk-group-name': ['workspaces'],
57693
57705
  'x-fern-sdk-method-name': 'update',
57694
57706
  'x-response-key': null,
57695
- 'x-title': 'Udpate a Workspace',
57707
+ 'x-title': 'Update a Workspace',
57696
57708
  },
57697
57709
  },
57698
57710
  },
@@ -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: string[]
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'