@seamapi/types 1.460.0 → 1.460.1
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 +331 -120
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +848 -238
- package/dist/index.cjs +331 -120
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +2338 -276
- package/lib/seam/connect/models/batch.js +7 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/customer/access-grant-resources.d.ts +18 -18
- package/lib/seam/connect/models/customer/access-grant-resources.js +2 -1
- package/lib/seam/connect/models/customer/access-grant-resources.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-data.d.ts +15 -15
- package/lib/seam/connect/models/phones/phone-session.d.ts +167 -0
- package/lib/seam/connect/models/phones/phone-session.js +3 -0
- package/lib/seam/connect/models/phones/phone-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +199 -33
- package/lib/seam/connect/openapi.js +319 -113
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +619 -175
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/batch.ts +7 -0
- package/src/lib/seam/connect/models/customer/access-grant-resources.ts +2 -1
- package/src/lib/seam/connect/models/phones/phone-session.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +341 -113
- package/src/lib/seam/connect/route-types.ts +789 -189
|
@@ -11187,6 +11187,138 @@ declare const _default: {
|
|
|
11187
11187
|
};
|
|
11188
11188
|
type: string;
|
|
11189
11189
|
};
|
|
11190
|
+
user_identity: {
|
|
11191
|
+
description: string;
|
|
11192
|
+
properties: {
|
|
11193
|
+
acs_user_ids: {
|
|
11194
|
+
description: string;
|
|
11195
|
+
items: {
|
|
11196
|
+
format: string;
|
|
11197
|
+
type: string;
|
|
11198
|
+
};
|
|
11199
|
+
type: string;
|
|
11200
|
+
};
|
|
11201
|
+
created_at: {
|
|
11202
|
+
description: string;
|
|
11203
|
+
format: string;
|
|
11204
|
+
type: string;
|
|
11205
|
+
};
|
|
11206
|
+
display_name: {
|
|
11207
|
+
minLength: number;
|
|
11208
|
+
type: string;
|
|
11209
|
+
};
|
|
11210
|
+
email_address: {
|
|
11211
|
+
description: string;
|
|
11212
|
+
format: string;
|
|
11213
|
+
nullable: boolean;
|
|
11214
|
+
type: string;
|
|
11215
|
+
};
|
|
11216
|
+
errors: {
|
|
11217
|
+
description: string;
|
|
11218
|
+
items: {
|
|
11219
|
+
description: string;
|
|
11220
|
+
discriminator: {
|
|
11221
|
+
propertyName: string;
|
|
11222
|
+
};
|
|
11223
|
+
oneOf: {
|
|
11224
|
+
description: string;
|
|
11225
|
+
properties: {
|
|
11226
|
+
acs_system_id: {
|
|
11227
|
+
description: string;
|
|
11228
|
+
format: string;
|
|
11229
|
+
type: string;
|
|
11230
|
+
};
|
|
11231
|
+
acs_user_id: {
|
|
11232
|
+
description: string;
|
|
11233
|
+
format: string;
|
|
11234
|
+
type: string;
|
|
11235
|
+
};
|
|
11236
|
+
created_at: {
|
|
11237
|
+
description: string;
|
|
11238
|
+
format: string;
|
|
11239
|
+
type: string;
|
|
11240
|
+
};
|
|
11241
|
+
error_code: {
|
|
11242
|
+
description: string;
|
|
11243
|
+
enum: string[];
|
|
11244
|
+
type: string;
|
|
11245
|
+
};
|
|
11246
|
+
message: {
|
|
11247
|
+
description: string;
|
|
11248
|
+
type: string;
|
|
11249
|
+
};
|
|
11250
|
+
};
|
|
11251
|
+
required: string[];
|
|
11252
|
+
type: string;
|
|
11253
|
+
}[];
|
|
11254
|
+
};
|
|
11255
|
+
type: string;
|
|
11256
|
+
};
|
|
11257
|
+
full_name: {
|
|
11258
|
+
minLength: number;
|
|
11259
|
+
nullable: boolean;
|
|
11260
|
+
type: string;
|
|
11261
|
+
};
|
|
11262
|
+
phone_number: {
|
|
11263
|
+
description: string;
|
|
11264
|
+
nullable: boolean;
|
|
11265
|
+
type: string;
|
|
11266
|
+
};
|
|
11267
|
+
user_identity_id: {
|
|
11268
|
+
description: string;
|
|
11269
|
+
format: string;
|
|
11270
|
+
type: string;
|
|
11271
|
+
};
|
|
11272
|
+
user_identity_key: {
|
|
11273
|
+
description: string;
|
|
11274
|
+
minLength: number;
|
|
11275
|
+
nullable: boolean;
|
|
11276
|
+
type: string;
|
|
11277
|
+
};
|
|
11278
|
+
warnings: {
|
|
11279
|
+
description: string;
|
|
11280
|
+
items: {
|
|
11281
|
+
description: string;
|
|
11282
|
+
discriminator: {
|
|
11283
|
+
propertyName: string;
|
|
11284
|
+
};
|
|
11285
|
+
oneOf: {
|
|
11286
|
+
description: string;
|
|
11287
|
+
properties: {
|
|
11288
|
+
created_at: {
|
|
11289
|
+
description: string;
|
|
11290
|
+
format: string;
|
|
11291
|
+
type: string;
|
|
11292
|
+
};
|
|
11293
|
+
message: {
|
|
11294
|
+
description: string;
|
|
11295
|
+
type: string;
|
|
11296
|
+
};
|
|
11297
|
+
warning_code: {
|
|
11298
|
+
description: string;
|
|
11299
|
+
enum: string[];
|
|
11300
|
+
type: string;
|
|
11301
|
+
};
|
|
11302
|
+
};
|
|
11303
|
+
required: string[];
|
|
11304
|
+
type: string;
|
|
11305
|
+
}[];
|
|
11306
|
+
};
|
|
11307
|
+
type: string;
|
|
11308
|
+
};
|
|
11309
|
+
workspace_id: {
|
|
11310
|
+
description: string;
|
|
11311
|
+
format: string;
|
|
11312
|
+
type: string;
|
|
11313
|
+
};
|
|
11314
|
+
};
|
|
11315
|
+
required: string[];
|
|
11316
|
+
type: string;
|
|
11317
|
+
};
|
|
11318
|
+
workspace_id: {
|
|
11319
|
+
description: string;
|
|
11320
|
+
type: string;
|
|
11321
|
+
};
|
|
11190
11322
|
};
|
|
11191
11323
|
required: string[];
|
|
11192
11324
|
type: string;
|
|
@@ -16991,7 +17123,6 @@ declare const _default: {
|
|
|
16991
17123
|
schema: {
|
|
16992
17124
|
properties: {
|
|
16993
17125
|
batch: {
|
|
16994
|
-
description: string;
|
|
16995
17126
|
properties: {
|
|
16996
17127
|
acs_entrances: {
|
|
16997
17128
|
items: {
|
|
@@ -16999,29 +17130,35 @@ declare const _default: {
|
|
|
16999
17130
|
};
|
|
17000
17131
|
type: string;
|
|
17001
17132
|
};
|
|
17133
|
+
acs_systems: {
|
|
17134
|
+
items: {
|
|
17135
|
+
$ref: string;
|
|
17136
|
+
};
|
|
17137
|
+
type: string;
|
|
17138
|
+
};
|
|
17002
17139
|
batch_type: {
|
|
17003
17140
|
enum: string[];
|
|
17004
17141
|
type: string;
|
|
17005
17142
|
};
|
|
17006
|
-
|
|
17143
|
+
connected_accounts: {
|
|
17007
17144
|
items: {
|
|
17008
17145
|
$ref: string;
|
|
17009
17146
|
};
|
|
17010
17147
|
type: string;
|
|
17011
17148
|
};
|
|
17012
|
-
|
|
17149
|
+
devices: {
|
|
17013
17150
|
items: {
|
|
17014
17151
|
$ref: string;
|
|
17015
17152
|
};
|
|
17016
17153
|
type: string;
|
|
17017
17154
|
};
|
|
17018
|
-
|
|
17155
|
+
spaces: {
|
|
17019
17156
|
items: {
|
|
17020
17157
|
$ref: string;
|
|
17021
17158
|
};
|
|
17022
17159
|
type: string;
|
|
17023
17160
|
};
|
|
17024
|
-
|
|
17161
|
+
user_identities: {
|
|
17025
17162
|
items: {
|
|
17026
17163
|
$ref: string;
|
|
17027
17164
|
};
|
|
@@ -17030,7 +17167,6 @@ declare const _default: {
|
|
|
17030
17167
|
};
|
|
17031
17168
|
required: string[];
|
|
17032
17169
|
type: string;
|
|
17033
|
-
'x-route-path': string;
|
|
17034
17170
|
};
|
|
17035
17171
|
ok: {
|
|
17036
17172
|
type: string;
|
|
@@ -17117,7 +17253,6 @@ declare const _default: {
|
|
|
17117
17253
|
schema: {
|
|
17118
17254
|
properties: {
|
|
17119
17255
|
batch: {
|
|
17120
|
-
description: string;
|
|
17121
17256
|
properties: {
|
|
17122
17257
|
acs_entrances: {
|
|
17123
17258
|
items: {
|
|
@@ -17125,29 +17260,35 @@ declare const _default: {
|
|
|
17125
17260
|
};
|
|
17126
17261
|
type: string;
|
|
17127
17262
|
};
|
|
17263
|
+
acs_systems: {
|
|
17264
|
+
items: {
|
|
17265
|
+
$ref: string;
|
|
17266
|
+
};
|
|
17267
|
+
type: string;
|
|
17268
|
+
};
|
|
17128
17269
|
batch_type: {
|
|
17129
17270
|
enum: string[];
|
|
17130
17271
|
type: string;
|
|
17131
17272
|
};
|
|
17132
|
-
|
|
17273
|
+
connected_accounts: {
|
|
17133
17274
|
items: {
|
|
17134
17275
|
$ref: string;
|
|
17135
17276
|
};
|
|
17136
17277
|
type: string;
|
|
17137
17278
|
};
|
|
17138
|
-
|
|
17279
|
+
devices: {
|
|
17139
17280
|
items: {
|
|
17140
17281
|
$ref: string;
|
|
17141
17282
|
};
|
|
17142
17283
|
type: string;
|
|
17143
17284
|
};
|
|
17144
|
-
|
|
17285
|
+
spaces: {
|
|
17145
17286
|
items: {
|
|
17146
17287
|
$ref: string;
|
|
17147
17288
|
};
|
|
17148
17289
|
type: string;
|
|
17149
17290
|
};
|
|
17150
|
-
|
|
17291
|
+
user_identities: {
|
|
17151
17292
|
items: {
|
|
17152
17293
|
$ref: string;
|
|
17153
17294
|
};
|
|
@@ -17156,7 +17297,6 @@ declare const _default: {
|
|
|
17156
17297
|
};
|
|
17157
17298
|
required: string[];
|
|
17158
17299
|
type: string;
|
|
17159
|
-
'x-route-path': string;
|
|
17160
17300
|
};
|
|
17161
17301
|
ok: {
|
|
17162
17302
|
type: string;
|
|
@@ -35916,7 +36056,7 @@ declare const _default: {
|
|
|
35916
36056
|
'x-undocumented': string;
|
|
35917
36057
|
};
|
|
35918
36058
|
};
|
|
35919
|
-
'/seam/console/v1/
|
|
36059
|
+
'/seam/console/v1/get_resource_locator': {
|
|
35920
36060
|
get: {
|
|
35921
36061
|
description: string;
|
|
35922
36062
|
operationId: string;
|
|
@@ -35938,7 +36078,21 @@ declare const _default: {
|
|
|
35938
36078
|
ok: {
|
|
35939
36079
|
type: string;
|
|
35940
36080
|
};
|
|
35941
|
-
|
|
36081
|
+
resource_locator: {
|
|
36082
|
+
properties: {
|
|
36083
|
+
acs_system_id: {
|
|
36084
|
+
format: string;
|
|
36085
|
+
type: string;
|
|
36086
|
+
};
|
|
36087
|
+
device_id: {
|
|
36088
|
+
format: string;
|
|
36089
|
+
type: string;
|
|
36090
|
+
};
|
|
36091
|
+
resource_type: {
|
|
36092
|
+
type: string;
|
|
36093
|
+
};
|
|
36094
|
+
};
|
|
36095
|
+
required: string[];
|
|
35942
36096
|
type: string;
|
|
35943
36097
|
};
|
|
35944
36098
|
};
|
|
@@ -36007,7 +36161,21 @@ declare const _default: {
|
|
|
36007
36161
|
ok: {
|
|
36008
36162
|
type: string;
|
|
36009
36163
|
};
|
|
36010
|
-
|
|
36164
|
+
resource_locator: {
|
|
36165
|
+
properties: {
|
|
36166
|
+
acs_system_id: {
|
|
36167
|
+
format: string;
|
|
36168
|
+
type: string;
|
|
36169
|
+
};
|
|
36170
|
+
device_id: {
|
|
36171
|
+
format: string;
|
|
36172
|
+
type: string;
|
|
36173
|
+
};
|
|
36174
|
+
resource_type: {
|
|
36175
|
+
type: string;
|
|
36176
|
+
};
|
|
36177
|
+
};
|
|
36178
|
+
required: string[];
|
|
36011
36179
|
type: string;
|
|
36012
36180
|
};
|
|
36013
36181
|
};
|
|
@@ -38504,29 +38672,29 @@ declare const _default: {
|
|
|
38504
38672
|
};
|
|
38505
38673
|
type: string;
|
|
38506
38674
|
};
|
|
38507
|
-
|
|
38508
|
-
enum: string[];
|
|
38509
|
-
type: string;
|
|
38510
|
-
};
|
|
38511
|
-
devices: {
|
|
38675
|
+
acs_systems: {
|
|
38512
38676
|
items: {
|
|
38513
38677
|
$ref: string;
|
|
38514
38678
|
};
|
|
38515
38679
|
type: string;
|
|
38516
38680
|
};
|
|
38517
|
-
|
|
38681
|
+
batch_type: {
|
|
38682
|
+
enum: string[];
|
|
38683
|
+
type: string;
|
|
38684
|
+
};
|
|
38685
|
+
connected_accounts: {
|
|
38518
38686
|
items: {
|
|
38519
38687
|
$ref: string;
|
|
38520
38688
|
};
|
|
38521
38689
|
type: string;
|
|
38522
38690
|
};
|
|
38523
|
-
|
|
38691
|
+
devices: {
|
|
38524
38692
|
items: {
|
|
38525
38693
|
$ref: string;
|
|
38526
38694
|
};
|
|
38527
38695
|
type: string;
|
|
38528
38696
|
};
|
|
38529
|
-
|
|
38697
|
+
spaces: {
|
|
38530
38698
|
items: {
|
|
38531
38699
|
$ref: string;
|
|
38532
38700
|
};
|
|
@@ -38535,7 +38703,6 @@ declare const _default: {
|
|
|
38535
38703
|
};
|
|
38536
38704
|
required: string[];
|
|
38537
38705
|
type: string;
|
|
38538
|
-
'x-route-path': string;
|
|
38539
38706
|
};
|
|
38540
38707
|
ok: {
|
|
38541
38708
|
type: string;
|
|
@@ -38630,29 +38797,29 @@ declare const _default: {
|
|
|
38630
38797
|
};
|
|
38631
38798
|
type: string;
|
|
38632
38799
|
};
|
|
38633
|
-
|
|
38634
|
-
enum: string[];
|
|
38635
|
-
type: string;
|
|
38636
|
-
};
|
|
38637
|
-
devices: {
|
|
38800
|
+
acs_systems: {
|
|
38638
38801
|
items: {
|
|
38639
38802
|
$ref: string;
|
|
38640
38803
|
};
|
|
38641
38804
|
type: string;
|
|
38642
38805
|
};
|
|
38643
|
-
|
|
38806
|
+
batch_type: {
|
|
38807
|
+
enum: string[];
|
|
38808
|
+
type: string;
|
|
38809
|
+
};
|
|
38810
|
+
connected_accounts: {
|
|
38644
38811
|
items: {
|
|
38645
38812
|
$ref: string;
|
|
38646
38813
|
};
|
|
38647
38814
|
type: string;
|
|
38648
38815
|
};
|
|
38649
|
-
|
|
38816
|
+
devices: {
|
|
38650
38817
|
items: {
|
|
38651
38818
|
$ref: string;
|
|
38652
38819
|
};
|
|
38653
38820
|
type: string;
|
|
38654
38821
|
};
|
|
38655
|
-
|
|
38822
|
+
spaces: {
|
|
38656
38823
|
items: {
|
|
38657
38824
|
$ref: string;
|
|
38658
38825
|
};
|
|
@@ -38661,7 +38828,6 @@ declare const _default: {
|
|
|
38661
38828
|
};
|
|
38662
38829
|
required: string[];
|
|
38663
38830
|
type: string;
|
|
38664
|
-
'x-route-path': string;
|
|
38665
38831
|
};
|
|
38666
38832
|
ok: {
|
|
38667
38833
|
type: string;
|