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