@seamapi/types 1.39.0 → 1.41.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 +56 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +69 -0
- package/lib/seam/connect/openapi.d.ts +51 -0
- package/lib/seam/connect/openapi.js +50 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +18 -0
- package/lib/seam/connect/unstable/models/acs/user.d.ts +3 -0
- package/lib/seam/connect/unstable/models/acs/user.js +6 -1
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +50 -4
- package/src/lib/seam/connect/route-types.ts +18 -0
- package/src/lib/seam/connect/unstable/models/acs/user.ts +6 -1
package/dist/connect.cjs
CHANGED
|
@@ -160,7 +160,12 @@ var openapi_default = {
|
|
|
160
160
|
acs_user_id: { format: "uuid", type: "string" },
|
|
161
161
|
created_at: { format: "date-time", type: "string" },
|
|
162
162
|
display_name: { type: "string" },
|
|
163
|
-
email: {
|
|
163
|
+
email: {
|
|
164
|
+
description: "Deprecated: use email_address.",
|
|
165
|
+
format: "email",
|
|
166
|
+
type: "string"
|
|
167
|
+
},
|
|
168
|
+
email_address: { format: "email", type: "string" },
|
|
164
169
|
external_type: { enum: ["pti_user"], type: "string" },
|
|
165
170
|
external_type_display_name: { type: "string" },
|
|
166
171
|
full_name: { type: "string" },
|
|
@@ -252,6 +257,10 @@ var openapi_default = {
|
|
|
252
257
|
device_count: { type: "number" },
|
|
253
258
|
token: { type: "string" },
|
|
254
259
|
user_identifier_key: { nullable: true, type: "string" },
|
|
260
|
+
user_identity_ids: {
|
|
261
|
+
items: { format: "uuid", type: "string" },
|
|
262
|
+
type: "array"
|
|
263
|
+
},
|
|
255
264
|
workspace_id: { format: "uuid", type: "string" }
|
|
256
265
|
},
|
|
257
266
|
required: [
|
|
@@ -262,6 +271,7 @@ var openapi_default = {
|
|
|
262
271
|
"device_count",
|
|
263
272
|
"connected_account_ids",
|
|
264
273
|
"connect_webview_ids",
|
|
274
|
+
"user_identity_ids",
|
|
265
275
|
"workspace_id"
|
|
266
276
|
],
|
|
267
277
|
type: "object"
|
|
@@ -3555,7 +3565,11 @@ var openapi_default = {
|
|
|
3555
3565
|
type: "array"
|
|
3556
3566
|
},
|
|
3557
3567
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3558
|
-
email: {
|
|
3568
|
+
email: {
|
|
3569
|
+
description: "Deprecated: use email_address.",
|
|
3570
|
+
format: "email",
|
|
3571
|
+
type: "string"
|
|
3572
|
+
},
|
|
3559
3573
|
full_name: { type: "string" },
|
|
3560
3574
|
phone_number: { nullable: true, type: "string" }
|
|
3561
3575
|
},
|
|
@@ -3853,7 +3867,11 @@ var openapi_default = {
|
|
|
3853
3867
|
schema: {
|
|
3854
3868
|
properties: {
|
|
3855
3869
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3856
|
-
email: {
|
|
3870
|
+
email: {
|
|
3871
|
+
description: "Deprecated: use email_address.",
|
|
3872
|
+
format: "email",
|
|
3873
|
+
type: "string"
|
|
3874
|
+
},
|
|
3857
3875
|
full_name: { type: "string" },
|
|
3858
3876
|
phone_number: { nullable: true, type: "string" }
|
|
3859
3877
|
},
|
|
@@ -3896,7 +3914,11 @@ var openapi_default = {
|
|
|
3896
3914
|
schema: {
|
|
3897
3915
|
properties: {
|
|
3898
3916
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3899
|
-
email: {
|
|
3917
|
+
email: {
|
|
3918
|
+
description: "Deprecated: use email_address.",
|
|
3919
|
+
format: "email",
|
|
3920
|
+
type: "string"
|
|
3921
|
+
},
|
|
3900
3922
|
full_name: { type: "string" },
|
|
3901
3923
|
phone_number: { nullable: true, type: "string" }
|
|
3902
3924
|
},
|
|
@@ -4056,7 +4078,11 @@ var openapi_default = {
|
|
|
4056
4078
|
nullable: true,
|
|
4057
4079
|
type: "string"
|
|
4058
4080
|
},
|
|
4059
|
-
user_identifier_key: { minLength: 1, type: "string" }
|
|
4081
|
+
user_identifier_key: { minLength: 1, type: "string" },
|
|
4082
|
+
user_identity_ids: {
|
|
4083
|
+
items: { type: "string" },
|
|
4084
|
+
type: "array"
|
|
4085
|
+
}
|
|
4060
4086
|
},
|
|
4061
4087
|
type: "object"
|
|
4062
4088
|
}
|
|
@@ -4110,7 +4136,11 @@ var openapi_default = {
|
|
|
4110
4136
|
nullable: true,
|
|
4111
4137
|
type: "string"
|
|
4112
4138
|
},
|
|
4113
|
-
user_identifier_key: { minLength: 1, type: "string" }
|
|
4139
|
+
user_identifier_key: { minLength: 1, type: "string" },
|
|
4140
|
+
user_identity_ids: {
|
|
4141
|
+
items: { type: "string" },
|
|
4142
|
+
type: "array"
|
|
4143
|
+
}
|
|
4114
4144
|
},
|
|
4115
4145
|
type: "object"
|
|
4116
4146
|
}
|
|
@@ -4256,7 +4286,11 @@ var openapi_default = {
|
|
|
4256
4286
|
nullable: true,
|
|
4257
4287
|
type: "string"
|
|
4258
4288
|
},
|
|
4259
|
-
user_identifier_key: { minLength: 1, type: "string" }
|
|
4289
|
+
user_identifier_key: { minLength: 1, type: "string" },
|
|
4290
|
+
user_identity_ids: {
|
|
4291
|
+
items: { type: "string" },
|
|
4292
|
+
type: "array"
|
|
4293
|
+
}
|
|
4260
4294
|
},
|
|
4261
4295
|
type: "object"
|
|
4262
4296
|
}
|
|
@@ -4310,7 +4344,11 @@ var openapi_default = {
|
|
|
4310
4344
|
nullable: true,
|
|
4311
4345
|
type: "string"
|
|
4312
4346
|
},
|
|
4313
|
-
user_identifier_key: { minLength: 1, type: "string" }
|
|
4347
|
+
user_identifier_key: { minLength: 1, type: "string" },
|
|
4348
|
+
user_identity_ids: {
|
|
4349
|
+
items: { type: "string" },
|
|
4350
|
+
type: "array"
|
|
4351
|
+
}
|
|
4314
4352
|
},
|
|
4315
4353
|
type: "object"
|
|
4316
4354
|
}
|
|
@@ -4360,7 +4398,11 @@ var openapi_default = {
|
|
|
4360
4398
|
items: { type: "string" },
|
|
4361
4399
|
type: "array"
|
|
4362
4400
|
},
|
|
4363
|
-
user_identifier_key: { type: "string" }
|
|
4401
|
+
user_identifier_key: { type: "string" },
|
|
4402
|
+
user_identity_ids: {
|
|
4403
|
+
items: { type: "string" },
|
|
4404
|
+
type: "array"
|
|
4405
|
+
}
|
|
4364
4406
|
},
|
|
4365
4407
|
type: "object"
|
|
4366
4408
|
}
|
|
@@ -4413,7 +4455,11 @@ var openapi_default = {
|
|
|
4413
4455
|
items: { type: "string" },
|
|
4414
4456
|
type: "array"
|
|
4415
4457
|
},
|
|
4416
|
-
user_identifier_key: { type: "string" }
|
|
4458
|
+
user_identifier_key: { type: "string" },
|
|
4459
|
+
user_identity_ids: {
|
|
4460
|
+
items: { type: "string" },
|
|
4461
|
+
type: "array"
|
|
4462
|
+
}
|
|
4417
4463
|
},
|
|
4418
4464
|
type: "object"
|
|
4419
4465
|
}
|