@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 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: { oneOf: [{ pattern: "^\\d+$", type: "string" }, {}] }
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: { device_id: { format: "uuid", type: "string" } },
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
  }