@seamapi/types 1.76.1 → 1.78.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 +6 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +29 -3
- package/lib/seam/connect/openapi.d.ts +6 -2
- package/lib/seam/connect/openapi.js +5 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +23 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5 -2
- package/src/lib/seam/connect/route-types.ts +26 -1
package/dist/connect.cjs
CHANGED
|
@@ -9785,7 +9785,8 @@ var openapi_default = {
|
|
|
9785
9785
|
ble_capability: { default: true, type: "boolean" },
|
|
9786
9786
|
hce_capability: { default: false, type: "boolean" },
|
|
9787
9787
|
nfc_capability: { default: false, type: "boolean" },
|
|
9788
|
-
seos_applet_version: { default: "1.0.0", type: "string" }
|
|
9788
|
+
seos_applet_version: { default: "1.0.0", type: "string" },
|
|
9789
|
+
seos_tsm_endpoint_id: { default: 1, type: "number" }
|
|
9789
9790
|
},
|
|
9790
9791
|
type: "object"
|
|
9791
9792
|
},
|
|
@@ -12177,10 +12178,12 @@ var openapi_default = {
|
|
|
12177
12178
|
"application/json": {
|
|
12178
12179
|
schema: {
|
|
12179
12180
|
properties: {
|
|
12180
|
-
|
|
12181
|
+
action_attempt: {
|
|
12182
|
+
$ref: "#/components/schemas/action_attempt"
|
|
12183
|
+
},
|
|
12181
12184
|
ok: { type: "boolean" }
|
|
12182
12185
|
},
|
|
12183
|
-
required: ["
|
|
12186
|
+
required: ["action_attempt", "ok"],
|
|
12184
12187
|
type: "object"
|
|
12185
12188
|
}
|
|
12186
12189
|
}
|