@seamapi/types 1.86.0 → 1.88.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 +66 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +137 -0
- package/lib/seam/connect/openapi.d.ts +132 -0
- package/lib/seam/connect/openapi.js +66 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -0
- package/lib/seam/connect/unstable/models/events/access_code_events.d.ts +70 -0
- package/lib/seam/connect/unstable/models/events/access_code_events.js +33 -0
- package/lib/seam/connect/unstable/models/events/access_code_events.js.map +1 -0
- package/lib/seam/connect/unstable/models/events/connected_account_events.d.ts +48 -0
- package/lib/seam/connect/unstable/models/events/connected_account_events.js +24 -0
- package/lib/seam/connect/unstable/models/events/connected_account_events.js.map +1 -0
- package/lib/seam/connect/unstable/models/events/device_events.d.ts +63 -0
- package/lib/seam/connect/unstable/models/events/device_events.js +21 -0
- package/lib/seam/connect/unstable/models/events/device_events.js.map +1 -0
- package/lib/seam/connect/unstable/models/events/lock_events.d.ts +42 -0
- package/lib/seam/connect/unstable/models/events/lock_events.js +22 -0
- package/lib/seam/connect/unstable/models/events/lock_events.js.map +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +66 -0
- package/src/lib/seam/connect/route-types.ts +5 -0
- package/src/lib/seam/connect/unstable/models/events/access_code_events.ts +37 -0
- package/src/lib/seam/connect/unstable/models/events/connected_account_events.ts +27 -0
- package/src/lib/seam/connect/unstable/models/events/device_events.ts +24 -0
- package/src/lib/seam/connect/unstable/models/events/lock_events.ts +25 -0
package/dist/connect.cjs
CHANGED
|
@@ -7935,6 +7935,17 @@ var openapi_default = {
|
|
|
7935
7935
|
nullable: true,
|
|
7936
7936
|
type: "string"
|
|
7937
7937
|
},
|
|
7938
|
+
custom_metadata_has: {
|
|
7939
|
+
additionalProperties: {
|
|
7940
|
+
nullable: true,
|
|
7941
|
+
oneOf: [
|
|
7942
|
+
{ maxLength: 500, type: "string" },
|
|
7943
|
+
{ type: "boolean" },
|
|
7944
|
+
{ format: "null", nullable: true, type: "string" }
|
|
7945
|
+
]
|
|
7946
|
+
},
|
|
7947
|
+
type: "object"
|
|
7948
|
+
},
|
|
7938
7949
|
device_ids: {
|
|
7939
7950
|
items: { format: "uuid", type: "string" },
|
|
7940
7951
|
type: "array"
|
|
@@ -8232,6 +8243,17 @@ var openapi_default = {
|
|
|
8232
8243
|
nullable: true,
|
|
8233
8244
|
type: "string"
|
|
8234
8245
|
},
|
|
8246
|
+
custom_metadata_has: {
|
|
8247
|
+
additionalProperties: {
|
|
8248
|
+
nullable: true,
|
|
8249
|
+
oneOf: [
|
|
8250
|
+
{ maxLength: 500, type: "string" },
|
|
8251
|
+
{ type: "boolean" },
|
|
8252
|
+
{ format: "null", nullable: true, type: "string" }
|
|
8253
|
+
]
|
|
8254
|
+
},
|
|
8255
|
+
type: "object"
|
|
8256
|
+
},
|
|
8235
8257
|
device_ids: {
|
|
8236
8258
|
items: { format: "uuid", type: "string" },
|
|
8237
8259
|
type: "array"
|
|
@@ -8500,6 +8522,17 @@ var openapi_default = {
|
|
|
8500
8522
|
"application/json": {
|
|
8501
8523
|
schema: {
|
|
8502
8524
|
properties: {
|
|
8525
|
+
custom_metadata: {
|
|
8526
|
+
additionalProperties: {
|
|
8527
|
+
nullable: true,
|
|
8528
|
+
oneOf: [
|
|
8529
|
+
{ maxLength: 500, type: "string" },
|
|
8530
|
+
{ type: "boolean" },
|
|
8531
|
+
{ format: "null", nullable: true, type: "string" }
|
|
8532
|
+
]
|
|
8533
|
+
},
|
|
8534
|
+
type: "object"
|
|
8535
|
+
},
|
|
8503
8536
|
device_id: { format: "uuid", type: "string" },
|
|
8504
8537
|
is_managed: { default: true, type: "boolean" },
|
|
8505
8538
|
name: { nullable: true, type: "string" },
|
|
@@ -8546,6 +8579,17 @@ var openapi_default = {
|
|
|
8546
8579
|
"application/json": {
|
|
8547
8580
|
schema: {
|
|
8548
8581
|
properties: {
|
|
8582
|
+
custom_metadata: {
|
|
8583
|
+
additionalProperties: {
|
|
8584
|
+
nullable: true,
|
|
8585
|
+
oneOf: [
|
|
8586
|
+
{ maxLength: 500, type: "string" },
|
|
8587
|
+
{ type: "boolean" },
|
|
8588
|
+
{ format: "null", nullable: true, type: "string" }
|
|
8589
|
+
]
|
|
8590
|
+
},
|
|
8591
|
+
type: "object"
|
|
8592
|
+
},
|
|
8549
8593
|
device_id: { format: "uuid", type: "string" },
|
|
8550
8594
|
is_managed: { default: true, type: "boolean" },
|
|
8551
8595
|
name: { nullable: true, type: "string" },
|
|
@@ -9043,6 +9087,17 @@ var openapi_default = {
|
|
|
9043
9087
|
nullable: true,
|
|
9044
9088
|
type: "string"
|
|
9045
9089
|
},
|
|
9090
|
+
custom_metadata_has: {
|
|
9091
|
+
additionalProperties: {
|
|
9092
|
+
nullable: true,
|
|
9093
|
+
oneOf: [
|
|
9094
|
+
{ maxLength: 500, type: "string" },
|
|
9095
|
+
{ type: "boolean" },
|
|
9096
|
+
{ format: "null", nullable: true, type: "string" }
|
|
9097
|
+
]
|
|
9098
|
+
},
|
|
9099
|
+
type: "object"
|
|
9100
|
+
},
|
|
9046
9101
|
device_ids: {
|
|
9047
9102
|
items: { format: "uuid", type: "string" },
|
|
9048
9103
|
type: "array"
|
|
@@ -10662,6 +10717,17 @@ var openapi_default = {
|
|
|
10662
10717
|
nullable: true,
|
|
10663
10718
|
type: "string"
|
|
10664
10719
|
},
|
|
10720
|
+
custom_metadata_has: {
|
|
10721
|
+
additionalProperties: {
|
|
10722
|
+
nullable: true,
|
|
10723
|
+
oneOf: [
|
|
10724
|
+
{ maxLength: 500, type: "string" },
|
|
10725
|
+
{ type: "boolean" },
|
|
10726
|
+
{ format: "null", nullable: true, type: "string" }
|
|
10727
|
+
]
|
|
10728
|
+
},
|
|
10729
|
+
type: "object"
|
|
10730
|
+
},
|
|
10665
10731
|
device_ids: {
|
|
10666
10732
|
items: { format: "uuid", type: "string" },
|
|
10667
10733
|
type: "array"
|