@seamapi/types 1.485.0 → 1.487.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.485.0",
3
+ "version": "1.487.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -15,6 +15,8 @@ import { connect_webview } from './connect-webviews/connect-webview.js'
15
15
  import { connected_account } from './connected-accounts/index.js'
16
16
  import { device } from './devices/index.js'
17
17
  import { unmanaged_device } from './devices/unmanaged-device.js'
18
+ import { seam_event } from './events/seam-event.js'
19
+ import { instant_key } from './instant-keys/instant-key.js'
18
20
  import { space } from './spaces/index.js'
19
21
  import { user_identity } from './user-identities/index.js'
20
22
  import { workspace } from './workspaces/index.js'
@@ -68,6 +70,8 @@ export const workspaces_batch = z
68
70
  connect_webviews: connect_webview.array().optional(),
69
71
  access_methods: access_method.array().optional(),
70
72
  access_grants: access_grant.array().optional(),
73
+ events: seam_event.array().optional(),
74
+ instant_keys: instant_key.array().optional(),
71
75
  })
72
76
  .describe('A batch of workspace resources.')
73
77
 
@@ -96,6 +100,8 @@ export const batch = z
96
100
  connect_webviews: connect_webview.array().optional(),
97
101
  access_methods: access_method.array().optional(),
98
102
  access_grants: access_grant.array().optional(),
103
+ events: seam_event.array().optional(),
104
+ instant_keys: instant_key.array().optional(),
99
105
  })
100
106
  .describe('A batch of workspace resources.')
101
107
 
@@ -29212,6 +29212,14 @@ export default {
29212
29212
  items: { $ref: '#/components/schemas/device' },
29213
29213
  type: 'array',
29214
29214
  },
29215
+ events: {
29216
+ items: { $ref: '#/components/schemas/event' },
29217
+ type: 'array',
29218
+ },
29219
+ instant_keys: {
29220
+ items: { $ref: '#/components/schemas/instant_key' },
29221
+ type: 'array',
29222
+ },
29215
29223
  spaces: {
29216
29224
  items: { $ref: '#/components/schemas/space' },
29217
29225
  type: 'array',
@@ -29379,6 +29387,14 @@ export default {
29379
29387
  items: { $ref: '#/components/schemas/device' },
29380
29388
  type: 'array',
29381
29389
  },
29390
+ events: {
29391
+ items: { $ref: '#/components/schemas/event' },
29392
+ type: 'array',
29393
+ },
29394
+ instant_keys: {
29395
+ items: { $ref: '#/components/schemas/instant_key' },
29396
+ type: 'array',
29397
+ },
29382
29398
  spaces: {
29383
29399
  items: { $ref: '#/components/schemas/space' },
29384
29400
  type: 'array',
@@ -56663,6 +56679,14 @@ export default {
56663
56679
  items: { $ref: '#/components/schemas/device' },
56664
56680
  type: 'array',
56665
56681
  },
56682
+ events: {
56683
+ items: { $ref: '#/components/schemas/event' },
56684
+ type: 'array',
56685
+ },
56686
+ instant_keys: {
56687
+ items: { $ref: '#/components/schemas/instant_key' },
56688
+ type: 'array',
56689
+ },
56666
56690
  spaces: {
56667
56691
  items: { $ref: '#/components/schemas/space' },
56668
56692
  type: 'array',
@@ -56805,6 +56829,14 @@ export default {
56805
56829
  items: { $ref: '#/components/schemas/device' },
56806
56830
  type: 'array',
56807
56831
  },
56832
+ events: {
56833
+ items: { $ref: '#/components/schemas/event' },
56834
+ type: 'array',
56835
+ },
56836
+ instant_keys: {
56837
+ items: { $ref: '#/components/schemas/instant_key' },
56838
+ type: 'array',
56839
+ },
56808
56840
  spaces: {
56809
56841
  items: { $ref: '#/components/schemas/space' },
56810
56842
  type: 'array',