@seamapi/types 1.509.0 → 1.511.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 +95 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +174 -87
- package/dist/index.cjs +95 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +5 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-method.js +5 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +20 -0
- package/lib/seam/connect/openapi.d.ts +126 -87
- package/lib/seam/connect/openapi.js +87 -0
- 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/access-grants/access-grant.ts +7 -0
- package/src/lib/seam/connect/models/access-grants/access-method.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +97 -0
- package/src/lib/seam/connect/route-types.ts +32 -0
|
@@ -1600,6 +1600,11 @@ export default {
|
|
|
1600
1600
|
format: 'date-time',
|
|
1601
1601
|
type: 'string',
|
|
1602
1602
|
},
|
|
1603
|
+
customization_profile_id: {
|
|
1604
|
+
description: 'ID of the customization profile associated with the Access Grant.',
|
|
1605
|
+
format: 'uuid',
|
|
1606
|
+
type: 'string',
|
|
1607
|
+
},
|
|
1603
1608
|
display_name: {
|
|
1604
1609
|
description: 'Display name of the Access Grant.',
|
|
1605
1610
|
type: 'string',
|
|
@@ -1720,6 +1725,11 @@ export default {
|
|
|
1720
1725
|
format: 'date-time',
|
|
1721
1726
|
type: 'string',
|
|
1722
1727
|
},
|
|
1728
|
+
customization_profile_id: {
|
|
1729
|
+
description: 'ID of the customization profile associated with the access method.',
|
|
1730
|
+
format: 'uuid',
|
|
1731
|
+
type: 'string',
|
|
1732
|
+
},
|
|
1723
1733
|
display_name: {
|
|
1724
1734
|
description: 'Display name of the access method.',
|
|
1725
1735
|
type: 'string',
|
|
@@ -25047,6 +25057,11 @@ export default {
|
|
|
25047
25057
|
items: { format: 'uuid', type: 'string' },
|
|
25048
25058
|
type: 'array',
|
|
25049
25059
|
},
|
|
25060
|
+
customization_profile_id: {
|
|
25061
|
+
description: 'ID of the customization profile to apply to the Access Grant and its access methods.',
|
|
25062
|
+
format: 'uuid',
|
|
25063
|
+
type: 'string',
|
|
25064
|
+
},
|
|
25050
25065
|
device_ids: {
|
|
25051
25066
|
default: [],
|
|
25052
25067
|
description: 'Set of IDs of the [devices](https://docs.seam.co/latest/api/devices/list) to which access is being granted.',
|
|
@@ -34131,6 +34146,14 @@ export default {
|
|
|
34131
34146
|
description: 'Returns a list of all [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews).',
|
|
34132
34147
|
operationId: 'connectWebviewsListGet',
|
|
34133
34148
|
parameters: [
|
|
34149
|
+
{
|
|
34150
|
+
in: 'query',
|
|
34151
|
+
name: 'customer_key',
|
|
34152
|
+
schema: {
|
|
34153
|
+
description: 'Customer key for which you want to list connect webviews.',
|
|
34154
|
+
type: 'string',
|
|
34155
|
+
},
|
|
34156
|
+
},
|
|
34134
34157
|
{
|
|
34135
34158
|
in: 'query',
|
|
34136
34159
|
name: 'user_identifier_key',
|
|
@@ -34223,6 +34246,10 @@ export default {
|
|
|
34223
34246
|
description: 'Custom metadata pairs by which you want to [filter Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). Returns Connect Webviews with `custom_metadata` that contains all of the provided key:value pairs.',
|
|
34224
34247
|
type: 'object',
|
|
34225
34248
|
},
|
|
34249
|
+
customer_key: {
|
|
34250
|
+
description: 'Customer key for which you want to list connect webviews.',
|
|
34251
|
+
type: 'string',
|
|
34252
|
+
},
|
|
34226
34253
|
limit: {
|
|
34227
34254
|
default: 500,
|
|
34228
34255
|
description: 'Maximum number of records to return per page.',
|
|
@@ -36661,6 +36688,14 @@ export default {
|
|
|
36661
36688
|
type: 'array',
|
|
36662
36689
|
},
|
|
36663
36690
|
},
|
|
36691
|
+
{
|
|
36692
|
+
in: 'query',
|
|
36693
|
+
name: 'customer_key',
|
|
36694
|
+
schema: {
|
|
36695
|
+
description: 'Customer key for which you want to list devices.',
|
|
36696
|
+
type: 'string',
|
|
36697
|
+
},
|
|
36698
|
+
},
|
|
36664
36699
|
{
|
|
36665
36700
|
in: 'query',
|
|
36666
36701
|
name: 'connected_account_id',
|
|
@@ -37102,6 +37137,10 @@ export default {
|
|
|
37102
37137
|
items: { format: 'uuid', type: 'string' },
|
|
37103
37138
|
type: 'array',
|
|
37104
37139
|
},
|
|
37140
|
+
customer_key: {
|
|
37141
|
+
description: 'Customer key for which you want to list devices.',
|
|
37142
|
+
type: 'string',
|
|
37143
|
+
},
|
|
37105
37144
|
device_ids: {
|
|
37106
37145
|
description: 'Array of device IDs for which you want to list devices.',
|
|
37107
37146
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -37901,6 +37940,14 @@ export default {
|
|
|
37901
37940
|
type: 'array',
|
|
37902
37941
|
},
|
|
37903
37942
|
},
|
|
37943
|
+
{
|
|
37944
|
+
in: 'query',
|
|
37945
|
+
name: 'customer_key',
|
|
37946
|
+
schema: {
|
|
37947
|
+
description: 'Customer key for which you want to list devices.',
|
|
37948
|
+
type: 'string',
|
|
37949
|
+
},
|
|
37950
|
+
},
|
|
37904
37951
|
{
|
|
37905
37952
|
in: 'query',
|
|
37906
37953
|
name: 'connected_account_id',
|
|
@@ -38339,6 +38386,10 @@ export default {
|
|
|
38339
38386
|
items: { format: 'uuid', type: 'string' },
|
|
38340
38387
|
type: 'array',
|
|
38341
38388
|
},
|
|
38389
|
+
customer_key: {
|
|
38390
|
+
description: 'Customer key for which you want to list devices.',
|
|
38391
|
+
type: 'string',
|
|
38392
|
+
},
|
|
38342
38393
|
device_ids: {
|
|
38343
38394
|
description: 'Array of device IDs for which you want to list devices.',
|
|
38344
38395
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -40170,6 +40221,14 @@ export default {
|
|
|
40170
40221
|
type: 'array',
|
|
40171
40222
|
},
|
|
40172
40223
|
},
|
|
40224
|
+
{
|
|
40225
|
+
in: 'query',
|
|
40226
|
+
name: 'customer_key',
|
|
40227
|
+
schema: {
|
|
40228
|
+
description: 'Customer key for which you want to list devices.',
|
|
40229
|
+
type: 'string',
|
|
40230
|
+
},
|
|
40231
|
+
},
|
|
40173
40232
|
{
|
|
40174
40233
|
in: 'query',
|
|
40175
40234
|
name: 'connected_account_id',
|
|
@@ -40548,6 +40607,10 @@ export default {
|
|
|
40548
40607
|
items: { format: 'uuid', type: 'string' },
|
|
40549
40608
|
type: 'array',
|
|
40550
40609
|
},
|
|
40610
|
+
customer_key: {
|
|
40611
|
+
description: 'Customer key for which you want to list devices.',
|
|
40612
|
+
type: 'string',
|
|
40613
|
+
},
|
|
40551
40614
|
device_ids: {
|
|
40552
40615
|
description: 'Array of device IDs for which you want to list devices.',
|
|
40553
40616
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -41043,6 +41106,14 @@ export default {
|
|
|
41043
41106
|
type: 'array',
|
|
41044
41107
|
},
|
|
41045
41108
|
},
|
|
41109
|
+
{
|
|
41110
|
+
in: 'query',
|
|
41111
|
+
name: 'customer_key',
|
|
41112
|
+
schema: {
|
|
41113
|
+
description: 'Customer key for which you want to list devices.',
|
|
41114
|
+
type: 'string',
|
|
41115
|
+
},
|
|
41116
|
+
},
|
|
41046
41117
|
{
|
|
41047
41118
|
in: 'query',
|
|
41048
41119
|
name: 'connected_account_id',
|
|
@@ -41336,6 +41407,10 @@ export default {
|
|
|
41336
41407
|
items: { format: 'uuid', type: 'string' },
|
|
41337
41408
|
type: 'array',
|
|
41338
41409
|
},
|
|
41410
|
+
customer_key: {
|
|
41411
|
+
description: 'Customer key for which you want to list devices.',
|
|
41412
|
+
type: 'string',
|
|
41413
|
+
},
|
|
41339
41414
|
device_ids: {
|
|
41340
41415
|
description: 'Array of device IDs for which you want to list devices.',
|
|
41341
41416
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -47550,6 +47625,14 @@ export default {
|
|
|
47550
47625
|
type: 'array',
|
|
47551
47626
|
},
|
|
47552
47627
|
},
|
|
47628
|
+
{
|
|
47629
|
+
in: 'query',
|
|
47630
|
+
name: 'customer_key',
|
|
47631
|
+
schema: {
|
|
47632
|
+
description: 'Customer key for which you want to list devices.',
|
|
47633
|
+
type: 'string',
|
|
47634
|
+
},
|
|
47635
|
+
},
|
|
47553
47636
|
{
|
|
47554
47637
|
in: 'query',
|
|
47555
47638
|
name: 'connected_account_id',
|
|
@@ -47864,6 +47947,10 @@ export default {
|
|
|
47864
47947
|
items: { format: 'uuid', type: 'string' },
|
|
47865
47948
|
type: 'array',
|
|
47866
47949
|
},
|
|
47950
|
+
customer_key: {
|
|
47951
|
+
description: 'Customer key for which you want to list devices.',
|
|
47952
|
+
type: 'string',
|
|
47953
|
+
},
|
|
47867
47954
|
device_ids: {
|
|
47868
47955
|
description: 'Array of device IDs for which you want to list devices.',
|
|
47869
47956
|
items: { format: 'uuid', type: 'string' },
|