@seamapi/types 1.602.0 → 1.604.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 +125 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +201 -2
- package/dist/index.cjs +125 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +6 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +4 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +15 -0
- package/lib/seam/connect/openapi.d.ts +145 -2
- package/lib/seam/connect/openapi.js +124 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +48 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +136 -4
- package/src/lib/seam/connect/route-types.ts +48 -0
|
@@ -1643,6 +1643,10 @@ export default {
|
|
|
1643
1643
|
},
|
|
1644
1644
|
type: 'array',
|
|
1645
1645
|
},
|
|
1646
|
+
reservation_key: {
|
|
1647
|
+
description: 'Reservation key for the access grant.',
|
|
1648
|
+
type: 'string',
|
|
1649
|
+
},
|
|
1646
1650
|
space_ids: {
|
|
1647
1651
|
description: 'IDs of the spaces to which the Access Grant gives access.',
|
|
1648
1652
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -25555,6 +25559,10 @@ export default {
|
|
|
25555
25559
|
},
|
|
25556
25560
|
type: 'array',
|
|
25557
25561
|
},
|
|
25562
|
+
reservation_key: {
|
|
25563
|
+
description: 'Reservation key for the access grant.',
|
|
25564
|
+
type: 'string',
|
|
25565
|
+
},
|
|
25558
25566
|
space_ids: {
|
|
25559
25567
|
description: 'Set of IDs of existing spaces to which access is being granted.',
|
|
25560
25568
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -26440,6 +26448,10 @@ export default {
|
|
|
26440
26448
|
},
|
|
26441
26449
|
type: 'array',
|
|
26442
26450
|
},
|
|
26451
|
+
reservation_key: {
|
|
26452
|
+
description: 'Reservation key for the access grant.',
|
|
26453
|
+
type: 'string',
|
|
26454
|
+
},
|
|
26443
26455
|
space_ids: {
|
|
26444
26456
|
description: 'IDs of the spaces to which the Access Grant gives access.',
|
|
26445
26457
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -26648,6 +26660,10 @@ export default {
|
|
|
26648
26660
|
},
|
|
26649
26661
|
type: 'array',
|
|
26650
26662
|
},
|
|
26663
|
+
reservation_key: {
|
|
26664
|
+
description: 'Reservation key for the access grant.',
|
|
26665
|
+
type: 'string',
|
|
26666
|
+
},
|
|
26651
26667
|
space_ids: {
|
|
26652
26668
|
description: 'IDs of the spaces to which the Access Grant gives access.',
|
|
26653
26669
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -26871,6 +26887,10 @@ export default {
|
|
|
26871
26887
|
},
|
|
26872
26888
|
type: 'array',
|
|
26873
26889
|
},
|
|
26890
|
+
reservation_key: {
|
|
26891
|
+
description: 'Reservation key for the access grant.',
|
|
26892
|
+
type: 'string',
|
|
26893
|
+
},
|
|
26874
26894
|
space_ids: {
|
|
26875
26895
|
description: 'IDs of the spaces to which the Access Grant gives access.',
|
|
26876
26896
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -27091,6 +27111,10 @@ export default {
|
|
|
27091
27111
|
},
|
|
27092
27112
|
type: 'array',
|
|
27093
27113
|
},
|
|
27114
|
+
reservation_key: {
|
|
27115
|
+
description: 'Reservation key for the access grant.',
|
|
27116
|
+
type: 'string',
|
|
27117
|
+
},
|
|
27094
27118
|
space_ids: {
|
|
27095
27119
|
description: 'IDs of the spaces to which the Access Grant gives access.',
|
|
27096
27120
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -55906,6 +55930,35 @@ export default {
|
|
|
55906
55930
|
type: 'string',
|
|
55907
55931
|
},
|
|
55908
55932
|
},
|
|
55933
|
+
{
|
|
55934
|
+
in: 'query',
|
|
55935
|
+
name: 'limit',
|
|
55936
|
+
schema: {
|
|
55937
|
+
default: 500,
|
|
55938
|
+
description: 'Maximum number of records to return per page.',
|
|
55939
|
+
exclusiveMinimum: true,
|
|
55940
|
+
minimum: 0,
|
|
55941
|
+
type: 'integer',
|
|
55942
|
+
},
|
|
55943
|
+
},
|
|
55944
|
+
{
|
|
55945
|
+
in: 'query',
|
|
55946
|
+
name: 'created_before',
|
|
55947
|
+
schema: {
|
|
55948
|
+
description: 'Timestamp by which to limit returned user identities. Returns user identities created before this timestamp.',
|
|
55949
|
+
format: 'date-time',
|
|
55950
|
+
type: 'string',
|
|
55951
|
+
},
|
|
55952
|
+
},
|
|
55953
|
+
{
|
|
55954
|
+
in: 'query',
|
|
55955
|
+
name: 'page_cursor',
|
|
55956
|
+
schema: {
|
|
55957
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
55958
|
+
nullable: true,
|
|
55959
|
+
type: 'string',
|
|
55960
|
+
},
|
|
55961
|
+
},
|
|
55909
55962
|
],
|
|
55910
55963
|
responses: {
|
|
55911
55964
|
200: {
|
|
@@ -55914,12 +55967,13 @@ export default {
|
|
|
55914
55967
|
schema: {
|
|
55915
55968
|
properties: {
|
|
55916
55969
|
ok: { type: 'boolean' },
|
|
55970
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
55917
55971
|
user_identities: {
|
|
55918
55972
|
items: { $ref: '#/components/schemas/user_identity' },
|
|
55919
55973
|
type: 'array',
|
|
55920
55974
|
},
|
|
55921
55975
|
},
|
|
55922
|
-
required: ['user_identities', 'ok'],
|
|
55976
|
+
required: ['user_identities', 'pagination', 'ok'],
|
|
55923
55977
|
type: 'object',
|
|
55924
55978
|
},
|
|
55925
55979
|
},
|
|
@@ -55951,11 +56005,28 @@ export default {
|
|
|
55951
56005
|
'application/json': {
|
|
55952
56006
|
schema: {
|
|
55953
56007
|
properties: {
|
|
56008
|
+
created_before: {
|
|
56009
|
+
description: 'Timestamp by which to limit returned user identities. Returns user identities created before this timestamp.',
|
|
56010
|
+
format: 'date-time',
|
|
56011
|
+
type: 'string',
|
|
56012
|
+
},
|
|
55954
56013
|
credential_manager_acs_system_id: {
|
|
55955
56014
|
description: '`acs_system_id` of the credential manager by which you want to filter the list of user identities.',
|
|
55956
56015
|
format: 'uuid',
|
|
55957
56016
|
type: 'string',
|
|
55958
56017
|
},
|
|
56018
|
+
limit: {
|
|
56019
|
+
default: 500,
|
|
56020
|
+
description: 'Maximum number of records to return per page.',
|
|
56021
|
+
exclusiveMinimum: true,
|
|
56022
|
+
minimum: 0,
|
|
56023
|
+
type: 'integer',
|
|
56024
|
+
},
|
|
56025
|
+
page_cursor: {
|
|
56026
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
56027
|
+
nullable: true,
|
|
56028
|
+
type: 'string',
|
|
56029
|
+
},
|
|
55959
56030
|
search: {
|
|
55960
56031
|
description: 'String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
|
|
55961
56032
|
type: 'string',
|
|
@@ -55973,12 +56044,13 @@ export default {
|
|
|
55973
56044
|
schema: {
|
|
55974
56045
|
properties: {
|
|
55975
56046
|
ok: { type: 'boolean' },
|
|
56047
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
55976
56048
|
user_identities: {
|
|
55977
56049
|
items: { $ref: '#/components/schemas/user_identity' },
|
|
55978
56050
|
type: 'array',
|
|
55979
56051
|
},
|
|
55980
56052
|
},
|
|
55981
|
-
required: ['user_identities', 'ok'],
|
|
56053
|
+
required: ['user_identities', 'pagination', 'ok'],
|
|
55982
56054
|
type: 'object',
|
|
55983
56055
|
},
|
|
55984
56056
|
},
|
|
@@ -56998,6 +57070,35 @@ export default {
|
|
|
56998
57070
|
type: 'string',
|
|
56999
57071
|
},
|
|
57000
57072
|
},
|
|
57073
|
+
{
|
|
57074
|
+
in: 'query',
|
|
57075
|
+
name: 'limit',
|
|
57076
|
+
schema: {
|
|
57077
|
+
default: 500,
|
|
57078
|
+
description: 'Maximum number of records to return per page.',
|
|
57079
|
+
exclusiveMinimum: true,
|
|
57080
|
+
minimum: 0,
|
|
57081
|
+
type: 'integer',
|
|
57082
|
+
},
|
|
57083
|
+
},
|
|
57084
|
+
{
|
|
57085
|
+
in: 'query',
|
|
57086
|
+
name: 'created_before',
|
|
57087
|
+
schema: {
|
|
57088
|
+
description: 'Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp.',
|
|
57089
|
+
format: 'date-time',
|
|
57090
|
+
type: 'string',
|
|
57091
|
+
},
|
|
57092
|
+
},
|
|
57093
|
+
{
|
|
57094
|
+
in: 'query',
|
|
57095
|
+
name: 'page_cursor',
|
|
57096
|
+
schema: {
|
|
57097
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
57098
|
+
nullable: true,
|
|
57099
|
+
type: 'string',
|
|
57100
|
+
},
|
|
57101
|
+
},
|
|
57001
57102
|
],
|
|
57002
57103
|
responses: {
|
|
57003
57104
|
200: {
|
|
@@ -57006,6 +57107,7 @@ export default {
|
|
|
57006
57107
|
schema: {
|
|
57007
57108
|
properties: {
|
|
57008
57109
|
ok: { type: 'boolean' },
|
|
57110
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
57009
57111
|
user_identities: {
|
|
57010
57112
|
items: {
|
|
57011
57113
|
description: 'Represents an unmanaged user identity. Unmanaged user identities do not have keys.',
|
|
@@ -57176,7 +57278,7 @@ export default {
|
|
|
57176
57278
|
type: 'array',
|
|
57177
57279
|
},
|
|
57178
57280
|
},
|
|
57179
|
-
required: ['user_identities', 'ok'],
|
|
57281
|
+
required: ['user_identities', 'pagination', 'ok'],
|
|
57180
57282
|
type: 'object',
|
|
57181
57283
|
},
|
|
57182
57284
|
},
|
|
@@ -57208,6 +57310,23 @@ export default {
|
|
|
57208
57310
|
'application/json': {
|
|
57209
57311
|
schema: {
|
|
57210
57312
|
properties: {
|
|
57313
|
+
created_before: {
|
|
57314
|
+
description: 'Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp.',
|
|
57315
|
+
format: 'date-time',
|
|
57316
|
+
type: 'string',
|
|
57317
|
+
},
|
|
57318
|
+
limit: {
|
|
57319
|
+
default: 500,
|
|
57320
|
+
description: 'Maximum number of records to return per page.',
|
|
57321
|
+
exclusiveMinimum: true,
|
|
57322
|
+
minimum: 0,
|
|
57323
|
+
type: 'integer',
|
|
57324
|
+
},
|
|
57325
|
+
page_cursor: {
|
|
57326
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
57327
|
+
nullable: true,
|
|
57328
|
+
type: 'string',
|
|
57329
|
+
},
|
|
57211
57330
|
search: {
|
|
57212
57331
|
description: 'String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
|
|
57213
57332
|
type: 'string',
|
|
@@ -57225,6 +57344,7 @@ export default {
|
|
|
57225
57344
|
schema: {
|
|
57226
57345
|
properties: {
|
|
57227
57346
|
ok: { type: 'boolean' },
|
|
57347
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
57228
57348
|
user_identities: {
|
|
57229
57349
|
items: {
|
|
57230
57350
|
description: 'Represents an unmanaged user identity. Unmanaged user identities do not have keys.',
|
|
@@ -57395,7 +57515,7 @@ export default {
|
|
|
57395
57515
|
type: 'array',
|
|
57396
57516
|
},
|
|
57397
57517
|
},
|
|
57398
|
-
required: ['user_identities', 'ok'],
|
|
57518
|
+
required: ['user_identities', 'pagination', 'ok'],
|
|
57399
57519
|
type: 'object',
|
|
57400
57520
|
},
|
|
57401
57521
|
},
|