@seamapi/types 1.73.0 → 1.75.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 +65 -20
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +39 -39
- package/lib/seam/connect/openapi.d.ts +27 -25
- package/lib/seam/connect/openapi.js +64 -19
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -14
- package/lib/seam/connect/unstable/models/user-identity.d.ts +9 -12
- package/lib/seam/connect/unstable/models/user-identity.js +4 -5
- package/lib/seam/connect/unstable/models/user-identity.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +64 -19
- package/src/lib/seam/connect/route-types.ts +12 -14
- package/src/lib/seam/connect/unstable/models/user-identity.ts +4 -5
package/dist/connect.cjs
CHANGED
|
@@ -5134,6 +5134,7 @@ var openapi_default = {
|
|
|
5134
5134
|
},
|
|
5135
5135
|
card_format: { enum: ["TLCode", "rfid48"], type: "string" },
|
|
5136
5136
|
code: { pattern: "^\\d+$", type: "string" },
|
|
5137
|
+
ends_at: { format: "date-time", type: "string" },
|
|
5137
5138
|
external_type: {
|
|
5138
5139
|
enum: [
|
|
5139
5140
|
"pti_card",
|
|
@@ -5144,7 +5145,8 @@ var openapi_default = {
|
|
|
5144
5145
|
type: "string"
|
|
5145
5146
|
},
|
|
5146
5147
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
5147
|
-
is_override_key: { type: "boolean" }
|
|
5148
|
+
is_override_key: { type: "boolean" },
|
|
5149
|
+
starts_at: { format: "date-time", type: "string" }
|
|
5148
5150
|
},
|
|
5149
5151
|
required: ["acs_user_id", "access_method"],
|
|
5150
5152
|
type: "object"
|
|
@@ -10997,9 +10999,12 @@ var openapi_default = {
|
|
|
10997
10999
|
nullable: true,
|
|
10998
11000
|
type: "string"
|
|
10999
11001
|
},
|
|
11000
|
-
|
|
11001
|
-
|
|
11002
|
-
|
|
11002
|
+
full_name: { minLength: 1, nullable: true, type: "string" },
|
|
11003
|
+
user_identity_key: {
|
|
11004
|
+
minLength: 1,
|
|
11005
|
+
nullable: true,
|
|
11006
|
+
type: "string"
|
|
11007
|
+
}
|
|
11003
11008
|
},
|
|
11004
11009
|
type: "object"
|
|
11005
11010
|
}
|
|
@@ -11016,21 +11021,31 @@ var openapi_default = {
|
|
|
11016
11021
|
user_identity: {
|
|
11017
11022
|
properties: {
|
|
11018
11023
|
created_at: { format: "date-time", type: "string" },
|
|
11019
|
-
display_name: { type: "string" },
|
|
11024
|
+
display_name: { minLength: 1, type: "string" },
|
|
11020
11025
|
email_address: {
|
|
11021
11026
|
format: "email",
|
|
11022
11027
|
nullable: true,
|
|
11023
11028
|
type: "string"
|
|
11024
11029
|
},
|
|
11025
|
-
|
|
11026
|
-
|
|
11030
|
+
full_name: {
|
|
11031
|
+
minLength: 1,
|
|
11032
|
+
nullable: true,
|
|
11033
|
+
type: "string"
|
|
11034
|
+
},
|
|
11027
11035
|
user_identity_id: { format: "uuid", type: "string" },
|
|
11028
|
-
user_identity_key: {
|
|
11036
|
+
user_identity_key: {
|
|
11037
|
+
minLength: 1,
|
|
11038
|
+
nullable: true,
|
|
11039
|
+
type: "string"
|
|
11040
|
+
},
|
|
11029
11041
|
workspace_id: { format: "uuid", type: "string" }
|
|
11030
11042
|
},
|
|
11031
11043
|
required: [
|
|
11032
11044
|
"user_identity_id",
|
|
11045
|
+
"user_identity_key",
|
|
11046
|
+
"email_address",
|
|
11033
11047
|
"display_name",
|
|
11048
|
+
"full_name",
|
|
11034
11049
|
"created_at",
|
|
11035
11050
|
"workspace_id"
|
|
11036
11051
|
],
|
|
@@ -11280,21 +11295,31 @@ var openapi_default = {
|
|
|
11280
11295
|
user_identity: {
|
|
11281
11296
|
properties: {
|
|
11282
11297
|
created_at: { format: "date-time", type: "string" },
|
|
11283
|
-
display_name: { type: "string" },
|
|
11298
|
+
display_name: { minLength: 1, type: "string" },
|
|
11284
11299
|
email_address: {
|
|
11285
11300
|
format: "email",
|
|
11286
11301
|
nullable: true,
|
|
11287
11302
|
type: "string"
|
|
11288
11303
|
},
|
|
11289
|
-
|
|
11290
|
-
|
|
11304
|
+
full_name: {
|
|
11305
|
+
minLength: 1,
|
|
11306
|
+
nullable: true,
|
|
11307
|
+
type: "string"
|
|
11308
|
+
},
|
|
11291
11309
|
user_identity_id: { format: "uuid", type: "string" },
|
|
11292
|
-
user_identity_key: {
|
|
11310
|
+
user_identity_key: {
|
|
11311
|
+
minLength: 1,
|
|
11312
|
+
nullable: true,
|
|
11313
|
+
type: "string"
|
|
11314
|
+
},
|
|
11293
11315
|
workspace_id: { format: "uuid", type: "string" }
|
|
11294
11316
|
},
|
|
11295
11317
|
required: [
|
|
11296
11318
|
"user_identity_id",
|
|
11319
|
+
"user_identity_key",
|
|
11320
|
+
"email_address",
|
|
11297
11321
|
"display_name",
|
|
11322
|
+
"full_name",
|
|
11298
11323
|
"created_at",
|
|
11299
11324
|
"workspace_id"
|
|
11300
11325
|
],
|
|
@@ -11421,21 +11446,31 @@ var openapi_default = {
|
|
|
11421
11446
|
items: {
|
|
11422
11447
|
properties: {
|
|
11423
11448
|
created_at: { format: "date-time", type: "string" },
|
|
11424
|
-
display_name: { type: "string" },
|
|
11449
|
+
display_name: { minLength: 1, type: "string" },
|
|
11425
11450
|
email_address: {
|
|
11426
11451
|
format: "email",
|
|
11427
11452
|
nullable: true,
|
|
11428
11453
|
type: "string"
|
|
11429
11454
|
},
|
|
11430
|
-
|
|
11431
|
-
|
|
11455
|
+
full_name: {
|
|
11456
|
+
minLength: 1,
|
|
11457
|
+
nullable: true,
|
|
11458
|
+
type: "string"
|
|
11459
|
+
},
|
|
11432
11460
|
user_identity_id: { format: "uuid", type: "string" },
|
|
11433
|
-
user_identity_key: {
|
|
11461
|
+
user_identity_key: {
|
|
11462
|
+
minLength: 1,
|
|
11463
|
+
nullable: true,
|
|
11464
|
+
type: "string"
|
|
11465
|
+
},
|
|
11434
11466
|
workspace_id: { format: "uuid", type: "string" }
|
|
11435
11467
|
},
|
|
11436
11468
|
required: [
|
|
11437
11469
|
"user_identity_id",
|
|
11470
|
+
"user_identity_key",
|
|
11471
|
+
"email_address",
|
|
11438
11472
|
"display_name",
|
|
11473
|
+
"full_name",
|
|
11439
11474
|
"created_at",
|
|
11440
11475
|
"workspace_id"
|
|
11441
11476
|
],
|
|
@@ -11477,21 +11512,31 @@ var openapi_default = {
|
|
|
11477
11512
|
items: {
|
|
11478
11513
|
properties: {
|
|
11479
11514
|
created_at: { format: "date-time", type: "string" },
|
|
11480
|
-
display_name: { type: "string" },
|
|
11515
|
+
display_name: { minLength: 1, type: "string" },
|
|
11481
11516
|
email_address: {
|
|
11482
11517
|
format: "email",
|
|
11483
11518
|
nullable: true,
|
|
11484
11519
|
type: "string"
|
|
11485
11520
|
},
|
|
11486
|
-
|
|
11487
|
-
|
|
11521
|
+
full_name: {
|
|
11522
|
+
minLength: 1,
|
|
11523
|
+
nullable: true,
|
|
11524
|
+
type: "string"
|
|
11525
|
+
},
|
|
11488
11526
|
user_identity_id: { format: "uuid", type: "string" },
|
|
11489
|
-
user_identity_key: {
|
|
11527
|
+
user_identity_key: {
|
|
11528
|
+
minLength: 1,
|
|
11529
|
+
nullable: true,
|
|
11530
|
+
type: "string"
|
|
11531
|
+
},
|
|
11490
11532
|
workspace_id: { format: "uuid", type: "string" }
|
|
11491
11533
|
},
|
|
11492
11534
|
required: [
|
|
11493
11535
|
"user_identity_id",
|
|
11536
|
+
"user_identity_key",
|
|
11537
|
+
"email_address",
|
|
11494
11538
|
"display_name",
|
|
11539
|
+
"full_name",
|
|
11495
11540
|
"created_at",
|
|
11496
11541
|
"workspace_id"
|
|
11497
11542
|
],
|