@seamapi/types 1.175.0 → 1.176.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 CHANGED
@@ -925,6 +925,17 @@ var openapi_default = {
925
925
  can_remove_acs_users_from_acs_access_groups: { type: "boolean" },
926
926
  connected_account_ids: { items: { type: "string" }, type: "array" },
927
927
  created_at: { format: "date-time", type: "string" },
928
+ errors: {
929
+ items: {
930
+ properties: {
931
+ error_code: { type: "string" },
932
+ message: { type: "string" }
933
+ },
934
+ required: ["error_code", "message"],
935
+ type: "object"
936
+ },
937
+ type: "array"
938
+ },
928
939
  external_type: {
929
940
  enum: [
930
941
  "pti_site",
@@ -960,6 +971,17 @@ var openapi_default = {
960
971
  description: "\n ---\n deprecated: use external_type_display_name\n ---\n ",
961
972
  type: "string"
962
973
  },
974
+ warnings: {
975
+ items: {
976
+ properties: {
977
+ message: { type: "string" },
978
+ warning_code: { type: "string" }
979
+ },
980
+ required: ["warning_code", "message"],
981
+ type: "object"
982
+ },
983
+ type: "array"
984
+ },
963
985
  workspace_id: { format: "uuid", type: "string" }
964
986
  },
965
987
  required: [
@@ -969,7 +991,9 @@ var openapi_default = {
969
991
  "workspace_id",
970
992
  "connected_account_ids",
971
993
  "image_url",
972
- "image_alt_text"
994
+ "image_alt_text",
995
+ "errors",
996
+ "warnings"
973
997
  ],
974
998
  type: "object"
975
999
  },