@seamapi/types 1.498.0 → 1.500.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 +77 -139
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +140 -170
- package/dist/index.cjs +77 -139
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +86 -0
- package/lib/seam/connect/models/batch.js +3 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +65 -170
- package/lib/seam/connect/openapi.js +51 -115
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +32 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +51 -115
- package/src/lib/seam/connect/route-types.ts +36 -0
|
@@ -8124,6 +8124,28 @@ export default {
|
|
|
8124
8124
|
type: 'object',
|
|
8125
8125
|
'x-route-path': '/connected_accounts',
|
|
8126
8126
|
},
|
|
8127
|
+
customization_profile: {
|
|
8128
|
+
description: 'A customization profile.',
|
|
8129
|
+
properties: {
|
|
8130
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
8131
|
+
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
8132
|
+
logo_url: { format: 'uri', type: 'string' },
|
|
8133
|
+
name: { nullable: true, type: 'string' },
|
|
8134
|
+
primary_color: { type: 'string' },
|
|
8135
|
+
secondary_color: { type: 'string' },
|
|
8136
|
+
workspace_id: { format: 'uuid', type: 'string' },
|
|
8137
|
+
},
|
|
8138
|
+
required: [
|
|
8139
|
+
'workspace_id',
|
|
8140
|
+
'name',
|
|
8141
|
+
'customization_profile_id',
|
|
8142
|
+
'created_at',
|
|
8143
|
+
],
|
|
8144
|
+
type: 'object',
|
|
8145
|
+
'x-route-path': '/workspaces/customization_profiles',
|
|
8146
|
+
'x-title': 'Customization Profile',
|
|
8147
|
+
'x-undocumented': 'Unreleased.',
|
|
8148
|
+
},
|
|
8127
8149
|
device: {
|
|
8128
8150
|
description: 'Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam.',
|
|
8129
8151
|
properties: {
|
|
@@ -26396,6 +26418,12 @@ export default {
|
|
|
26396
26418
|
items: { $ref: '#/components/schemas/instant_key' },
|
|
26397
26419
|
type: 'array',
|
|
26398
26420
|
},
|
|
26421
|
+
noise_thresholds: {
|
|
26422
|
+
items: {
|
|
26423
|
+
$ref: '#/components/schemas/noise_threshold',
|
|
26424
|
+
},
|
|
26425
|
+
type: 'array',
|
|
26426
|
+
},
|
|
26399
26427
|
spaces: {
|
|
26400
26428
|
items: { $ref: '#/components/schemas/space' },
|
|
26401
26429
|
type: 'array',
|
|
@@ -26603,6 +26631,12 @@ export default {
|
|
|
26603
26631
|
items: { $ref: '#/components/schemas/instant_key' },
|
|
26604
26632
|
type: 'array',
|
|
26605
26633
|
},
|
|
26634
|
+
noise_thresholds: {
|
|
26635
|
+
items: {
|
|
26636
|
+
$ref: '#/components/schemas/noise_threshold',
|
|
26637
|
+
},
|
|
26638
|
+
type: 'array',
|
|
26639
|
+
},
|
|
26606
26640
|
spaces: {
|
|
26607
26641
|
items: { $ref: '#/components/schemas/space' },
|
|
26608
26642
|
type: 'array',
|
|
@@ -52053,29 +52087,7 @@ export default {
|
|
|
52053
52087
|
schema: {
|
|
52054
52088
|
properties: {
|
|
52055
52089
|
customization_profile: {
|
|
52056
|
-
|
|
52057
|
-
properties: {
|
|
52058
|
-
created_at: { format: 'date-time', type: 'string' },
|
|
52059
|
-
customization_profile_id: {
|
|
52060
|
-
format: 'uuid',
|
|
52061
|
-
type: 'string',
|
|
52062
|
-
},
|
|
52063
|
-
logo_url: { format: 'uri', type: 'string' },
|
|
52064
|
-
name: { nullable: true, type: 'string' },
|
|
52065
|
-
primary_color: { type: 'string' },
|
|
52066
|
-
secondary_color: { type: 'string' },
|
|
52067
|
-
workspace_id: { format: 'uuid', type: 'string' },
|
|
52068
|
-
},
|
|
52069
|
-
required: [
|
|
52070
|
-
'workspace_id',
|
|
52071
|
-
'name',
|
|
52072
|
-
'customization_profile_id',
|
|
52073
|
-
'created_at',
|
|
52074
|
-
],
|
|
52075
|
-
type: 'object',
|
|
52076
|
-
'x-route-path': '/workspaces/customization_profiles',
|
|
52077
|
-
'x-title': 'Customization Profile',
|
|
52078
|
-
'x-undocumented': 'Unreleased.',
|
|
52090
|
+
$ref: '#/components/schemas/customization_profile',
|
|
52079
52091
|
},
|
|
52080
52092
|
ok: { type: 'boolean' },
|
|
52081
52093
|
},
|
|
@@ -52124,29 +52136,7 @@ export default {
|
|
|
52124
52136
|
schema: {
|
|
52125
52137
|
properties: {
|
|
52126
52138
|
customization_profile: {
|
|
52127
|
-
|
|
52128
|
-
properties: {
|
|
52129
|
-
created_at: { format: 'date-time', type: 'string' },
|
|
52130
|
-
customization_profile_id: {
|
|
52131
|
-
format: 'uuid',
|
|
52132
|
-
type: 'string',
|
|
52133
|
-
},
|
|
52134
|
-
logo_url: { format: 'uri', type: 'string' },
|
|
52135
|
-
name: { nullable: true, type: 'string' },
|
|
52136
|
-
primary_color: { type: 'string' },
|
|
52137
|
-
secondary_color: { type: 'string' },
|
|
52138
|
-
workspace_id: { format: 'uuid', type: 'string' },
|
|
52139
|
-
},
|
|
52140
|
-
required: [
|
|
52141
|
-
'workspace_id',
|
|
52142
|
-
'name',
|
|
52143
|
-
'customization_profile_id',
|
|
52144
|
-
'created_at',
|
|
52145
|
-
],
|
|
52146
|
-
type: 'object',
|
|
52147
|
-
'x-route-path': '/workspaces/customization_profiles',
|
|
52148
|
-
'x-title': 'Customization Profile',
|
|
52149
|
-
'x-undocumented': 'Unreleased.',
|
|
52139
|
+
$ref: '#/components/schemas/customization_profile',
|
|
52150
52140
|
},
|
|
52151
52141
|
ok: { type: 'boolean' },
|
|
52152
52142
|
},
|
|
@@ -52198,29 +52188,7 @@ export default {
|
|
|
52198
52188
|
schema: {
|
|
52199
52189
|
properties: {
|
|
52200
52190
|
customization_profile: {
|
|
52201
|
-
|
|
52202
|
-
properties: {
|
|
52203
|
-
created_at: { format: 'date-time', type: 'string' },
|
|
52204
|
-
customization_profile_id: {
|
|
52205
|
-
format: 'uuid',
|
|
52206
|
-
type: 'string',
|
|
52207
|
-
},
|
|
52208
|
-
logo_url: { format: 'uri', type: 'string' },
|
|
52209
|
-
name: { nullable: true, type: 'string' },
|
|
52210
|
-
primary_color: { type: 'string' },
|
|
52211
|
-
secondary_color: { type: 'string' },
|
|
52212
|
-
workspace_id: { format: 'uuid', type: 'string' },
|
|
52213
|
-
},
|
|
52214
|
-
required: [
|
|
52215
|
-
'workspace_id',
|
|
52216
|
-
'name',
|
|
52217
|
-
'customization_profile_id',
|
|
52218
|
-
'created_at',
|
|
52219
|
-
],
|
|
52220
|
-
type: 'object',
|
|
52221
|
-
'x-route-path': '/workspaces/customization_profiles',
|
|
52222
|
-
'x-title': 'Customization Profile',
|
|
52223
|
-
'x-undocumented': 'Unreleased.',
|
|
52191
|
+
$ref: '#/components/schemas/customization_profile',
|
|
52224
52192
|
},
|
|
52225
52193
|
ok: { type: 'boolean' },
|
|
52226
52194
|
},
|
|
@@ -52262,29 +52230,7 @@ export default {
|
|
|
52262
52230
|
properties: {
|
|
52263
52231
|
customization_profiles: {
|
|
52264
52232
|
items: {
|
|
52265
|
-
|
|
52266
|
-
properties: {
|
|
52267
|
-
created_at: { format: 'date-time', type: 'string' },
|
|
52268
|
-
customization_profile_id: {
|
|
52269
|
-
format: 'uuid',
|
|
52270
|
-
type: 'string',
|
|
52271
|
-
},
|
|
52272
|
-
logo_url: { format: 'uri', type: 'string' },
|
|
52273
|
-
name: { nullable: true, type: 'string' },
|
|
52274
|
-
primary_color: { type: 'string' },
|
|
52275
|
-
secondary_color: { type: 'string' },
|
|
52276
|
-
workspace_id: { format: 'uuid', type: 'string' },
|
|
52277
|
-
},
|
|
52278
|
-
required: [
|
|
52279
|
-
'workspace_id',
|
|
52280
|
-
'name',
|
|
52281
|
-
'customization_profile_id',
|
|
52282
|
-
'created_at',
|
|
52283
|
-
],
|
|
52284
|
-
type: 'object',
|
|
52285
|
-
'x-route-path': '/workspaces/customization_profiles',
|
|
52286
|
-
'x-title': 'Customization Profile',
|
|
52287
|
-
'x-undocumented': 'Unreleased.',
|
|
52233
|
+
$ref: '#/components/schemas/customization_profile',
|
|
52288
52234
|
},
|
|
52289
52235
|
type: 'array',
|
|
52290
52236
|
},
|
|
@@ -52326,29 +52272,7 @@ export default {
|
|
|
52326
52272
|
properties: {
|
|
52327
52273
|
customization_profiles: {
|
|
52328
52274
|
items: {
|
|
52329
|
-
|
|
52330
|
-
properties: {
|
|
52331
|
-
created_at: { format: 'date-time', type: 'string' },
|
|
52332
|
-
customization_profile_id: {
|
|
52333
|
-
format: 'uuid',
|
|
52334
|
-
type: 'string',
|
|
52335
|
-
},
|
|
52336
|
-
logo_url: { format: 'uri', type: 'string' },
|
|
52337
|
-
name: { nullable: true, type: 'string' },
|
|
52338
|
-
primary_color: { type: 'string' },
|
|
52339
|
-
secondary_color: { type: 'string' },
|
|
52340
|
-
workspace_id: { format: 'uuid', type: 'string' },
|
|
52341
|
-
},
|
|
52342
|
-
required: [
|
|
52343
|
-
'workspace_id',
|
|
52344
|
-
'name',
|
|
52345
|
-
'customization_profile_id',
|
|
52346
|
-
'created_at',
|
|
52347
|
-
],
|
|
52348
|
-
type: 'object',
|
|
52349
|
-
'x-route-path': '/workspaces/customization_profiles',
|
|
52350
|
-
'x-title': 'Customization Profile',
|
|
52351
|
-
'x-undocumented': 'Unreleased.',
|
|
52275
|
+
$ref: '#/components/schemas/customization_profile',
|
|
52352
52276
|
},
|
|
52353
52277
|
type: 'array',
|
|
52354
52278
|
},
|
|
@@ -52615,6 +52539,12 @@ export default {
|
|
|
52615
52539
|
items: { $ref: '#/components/schemas/instant_key' },
|
|
52616
52540
|
type: 'array',
|
|
52617
52541
|
},
|
|
52542
|
+
noise_thresholds: {
|
|
52543
|
+
items: {
|
|
52544
|
+
$ref: '#/components/schemas/noise_threshold',
|
|
52545
|
+
},
|
|
52546
|
+
type: 'array',
|
|
52547
|
+
},
|
|
52618
52548
|
spaces: {
|
|
52619
52549
|
items: { $ref: '#/components/schemas/space' },
|
|
52620
52550
|
type: 'array',
|
|
@@ -52802,6 +52732,12 @@ export default {
|
|
|
52802
52732
|
items: { $ref: '#/components/schemas/instant_key' },
|
|
52803
52733
|
type: 'array',
|
|
52804
52734
|
},
|
|
52735
|
+
noise_thresholds: {
|
|
52736
|
+
items: {
|
|
52737
|
+
$ref: '#/components/schemas/noise_threshold',
|
|
52738
|
+
},
|
|
52739
|
+
type: 'array',
|
|
52740
|
+
},
|
|
52805
52741
|
spaces: {
|
|
52806
52742
|
items: { $ref: '#/components/schemas/space' },
|
|
52807
52743
|
type: 'array',
|