@seamapi/types 1.39.0 → 1.40.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 +21 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +21 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -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 +21 -4
- package/src/lib/seam/connect/route-types.ts +12 -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" },
|
|
@@ -3555,7 +3560,11 @@ var openapi_default = {
|
|
|
3555
3560
|
type: "array"
|
|
3556
3561
|
},
|
|
3557
3562
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3558
|
-
email: {
|
|
3563
|
+
email: {
|
|
3564
|
+
description: "Deprecated: use email_address.",
|
|
3565
|
+
format: "email",
|
|
3566
|
+
type: "string"
|
|
3567
|
+
},
|
|
3559
3568
|
full_name: { type: "string" },
|
|
3560
3569
|
phone_number: { nullable: true, type: "string" }
|
|
3561
3570
|
},
|
|
@@ -3853,7 +3862,11 @@ var openapi_default = {
|
|
|
3853
3862
|
schema: {
|
|
3854
3863
|
properties: {
|
|
3855
3864
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3856
|
-
email: {
|
|
3865
|
+
email: {
|
|
3866
|
+
description: "Deprecated: use email_address.",
|
|
3867
|
+
format: "email",
|
|
3868
|
+
type: "string"
|
|
3869
|
+
},
|
|
3857
3870
|
full_name: { type: "string" },
|
|
3858
3871
|
phone_number: { nullable: true, type: "string" }
|
|
3859
3872
|
},
|
|
@@ -3896,7 +3909,11 @@ var openapi_default = {
|
|
|
3896
3909
|
schema: {
|
|
3897
3910
|
properties: {
|
|
3898
3911
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3899
|
-
email: {
|
|
3912
|
+
email: {
|
|
3913
|
+
description: "Deprecated: use email_address.",
|
|
3914
|
+
format: "email",
|
|
3915
|
+
type: "string"
|
|
3916
|
+
},
|
|
3900
3917
|
full_name: { type: "string" },
|
|
3901
3918
|
phone_number: { nullable: true, type: "string" }
|
|
3902
3919
|
},
|