@seamapi/types 1.82.0 → 1.83.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 +9 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +33 -0
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +17 -0
- package/lib/seam/connect/unstable/models/acs/user.d.ts +9 -0
- package/lib/seam/connect/unstable/models/acs/user.js +3 -0
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/models/index.d.ts +1 -0
- package/lib/seam/connect/unstable/models/index.js +1 -0
- package/lib/seam/connect/unstable/models/index.js.map +1 -1
- package/lib/seam/connect/unstable/schemas.d.ts +1 -1
- package/lib/seam/connect/unstable/schemas.js +1 -1
- package/lib/seam/connect/unstable/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +17 -0
- package/src/lib/seam/connect/unstable/models/acs/user.ts +3 -0
- package/src/lib/seam/connect/unstable/models/index.ts +1 -0
- package/src/lib/seam/connect/unstable/schemas.ts +1 -0
package/dist/connect.cjs
CHANGED
|
@@ -294,6 +294,9 @@ var openapi_default = {
|
|
|
294
294
|
hid_acs_system_id: { format: "uuid", type: "string" },
|
|
295
295
|
is_suspended: { type: "boolean" },
|
|
296
296
|
phone_number: { nullable: true, type: "string" },
|
|
297
|
+
user_identity_email_address: { type: "string" },
|
|
298
|
+
user_identity_id: { type: "string" },
|
|
299
|
+
user_identity_phone_number: { type: "string" },
|
|
297
300
|
workspace_id: { format: "uuid", type: "string" }
|
|
298
301
|
},
|
|
299
302
|
required: [
|
|
@@ -6288,7 +6291,12 @@ var openapi_default = {
|
|
|
6288
6291
|
schema: {
|
|
6289
6292
|
properties: {
|
|
6290
6293
|
acs_system_id: { format: "uuid", type: "string" },
|
|
6291
|
-
|
|
6294
|
+
user_identity_email_address: { type: "string" },
|
|
6295
|
+
user_identity_id: { format: "uuid", type: "string" },
|
|
6296
|
+
user_identity_phone_number: {
|
|
6297
|
+
nullable: true,
|
|
6298
|
+
type: "string"
|
|
6299
|
+
}
|
|
6292
6300
|
},
|
|
6293
6301
|
type: "object"
|
|
6294
6302
|
}
|