@seamapi/types 1.85.0 → 1.85.1
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/README.md +5 -0
- package/dist/connect.cjs +6 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +22 -2
- package/lib/seam/connect/openapi.d.ts +20 -0
- package/lib/seam/connect/openapi.js +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -0
- package/src/lib/seam/connect/route-types.ts +2 -2
package/README.md
CHANGED
|
@@ -36,6 +36,10 @@ Each entrypoint may export one or more of the following:
|
|
|
36
36
|
|
|
37
37
|
## Installation
|
|
38
38
|
|
|
39
|
+
_This is a low-level package meant for applications and libraries with particular dependency requirements.
|
|
40
|
+
These types and schemas are entirely contained in the [seam package]. Seam recommends using that package instead
|
|
41
|
+
for simpler dependency management._
|
|
42
|
+
|
|
39
43
|
### Types Only
|
|
40
44
|
|
|
41
45
|
Add this as a development dependency to your project using [npm] with
|
|
@@ -53,6 +57,7 @@ $ npm install @seamapi/types
|
|
|
53
57
|
```
|
|
54
58
|
|
|
55
59
|
[npm]: https://www.npmjs.com/
|
|
60
|
+
[seam package]: https://www.npmjs.com/package/seam
|
|
56
61
|
|
|
57
62
|
## Development and Testing
|
|
58
63
|
|
package/dist/connect.cjs
CHANGED
|
@@ -7500,9 +7500,11 @@ var openapi_default = {
|
|
|
7500
7500
|
properties: {
|
|
7501
7501
|
custom_metadata_has: {
|
|
7502
7502
|
additionalProperties: {
|
|
7503
|
+
nullable: true,
|
|
7503
7504
|
oneOf: [
|
|
7504
7505
|
{ maxLength: 500, type: "string" },
|
|
7505
|
-
{ type: "boolean" }
|
|
7506
|
+
{ type: "boolean" },
|
|
7507
|
+
{ format: "null", nullable: true, type: "string" }
|
|
7506
7508
|
]
|
|
7507
7509
|
},
|
|
7508
7510
|
description: "Returns devices where the webview's custom_metadata contains all of the provided key/value pairs.",
|
|
@@ -7689,9 +7691,11 @@ var openapi_default = {
|
|
|
7689
7691
|
properties: {
|
|
7690
7692
|
custom_metadata_has: {
|
|
7691
7693
|
additionalProperties: {
|
|
7694
|
+
nullable: true,
|
|
7692
7695
|
oneOf: [
|
|
7693
7696
|
{ maxLength: 500, type: "string" },
|
|
7694
|
-
{ type: "boolean" }
|
|
7697
|
+
{ type: "boolean" },
|
|
7698
|
+
{ format: "null", nullable: true, type: "string" }
|
|
7695
7699
|
]
|
|
7696
7700
|
},
|
|
7697
7701
|
description: "Returns devices where the account's custom_metadata contains all of the provided key/value pairs.",
|