@seamapi/types 1.165.0 → 1.166.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 +12 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +27 -0
- package/lib/seam/connect/models/acs/entrance.d.ts +18 -0
- package/lib/seam/connect/models/acs/entrance.js +4 -0
- package/lib/seam/connect/models/acs/entrance.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/entrance.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +12 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.cjs
CHANGED
|
@@ -842,6 +842,17 @@ var openapi_default = {
|
|
|
842
842
|
acs_system_id: { format: "uuid", type: "string" },
|
|
843
843
|
created_at: { format: "date-time", type: "string" },
|
|
844
844
|
display_name: { type: "string" },
|
|
845
|
+
errors: {
|
|
846
|
+
items: {
|
|
847
|
+
properties: {
|
|
848
|
+
error_code: { type: "string" },
|
|
849
|
+
message: { type: "string" }
|
|
850
|
+
},
|
|
851
|
+
required: ["error_code", "message"],
|
|
852
|
+
type: "object"
|
|
853
|
+
},
|
|
854
|
+
type: "array"
|
|
855
|
+
},
|
|
845
856
|
latch_metadata: {
|
|
846
857
|
nullable: true,
|
|
847
858
|
properties: {
|
|
@@ -900,6 +911,7 @@ var openapi_default = {
|
|
|
900
911
|
"acs_system_id",
|
|
901
912
|
"created_at",
|
|
902
913
|
"latch_metadata",
|
|
914
|
+
"errors",
|
|
903
915
|
"visionline_metadata"
|
|
904
916
|
],
|
|
905
917
|
type: "object"
|