@seamapi/types 1.18.0 → 1.18.2
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 +6 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +7 -8
- package/dist/devicedb.cjs +1 -0
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +3 -0
- package/lib/seam/connect/openapi.d.ts +5 -7
- package/lib/seam/connect/openapi.js +6 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -1
- package/lib/seam/devicedb/public-models.d.ts +3 -0
- package/lib/seam/devicedb/public-models.js +1 -0
- package/lib/seam/devicedb/public-models.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +6 -3
- package/src/lib/seam/connect/route-types.ts +2 -1
- package/src/lib/seam/devicedb/public-models.ts +1 -0
package/dist/connect.cjs
CHANGED
|
@@ -3062,9 +3062,9 @@ var openapi_default = {
|
|
|
3062
3062
|
schema: {
|
|
3063
3063
|
properties: {
|
|
3064
3064
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3065
|
-
code: {
|
|
3065
|
+
code: { pattern: "^\\d+$", type: "string" }
|
|
3066
3066
|
},
|
|
3067
|
-
required: ["acs_user_id"],
|
|
3067
|
+
required: ["acs_user_id", "code"],
|
|
3068
3068
|
type: "object"
|
|
3069
3069
|
}
|
|
3070
3070
|
}
|
|
@@ -6691,7 +6691,10 @@ var openapi_default = {
|
|
|
6691
6691
|
content: {
|
|
6692
6692
|
"application/json": {
|
|
6693
6693
|
schema: {
|
|
6694
|
-
properties: {
|
|
6694
|
+
properties: {
|
|
6695
|
+
device_id: { format: "uuid", type: "string" },
|
|
6696
|
+
user_identifier_key: { type: "string" }
|
|
6697
|
+
},
|
|
6695
6698
|
required: ["device_id"],
|
|
6696
6699
|
type: "object"
|
|
6697
6700
|
}
|