@seamapi/types 1.705.0 → 1.707.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 +22 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +24 -8
- package/dist/index.cjs +22 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +21 -8
- package/lib/seam/connect/openapi.js +22 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +22 -0
- package/src/lib/seam/connect/route-types.ts +3 -0
package/dist/connect.cjs
CHANGED
|
@@ -32921,6 +32921,15 @@ var openapi_default = {
|
|
|
32921
32921
|
description: "Gets an Access Grant.",
|
|
32922
32922
|
operationId: "accessGrantsListGet",
|
|
32923
32923
|
parameters: [
|
|
32924
|
+
{
|
|
32925
|
+
in: "query",
|
|
32926
|
+
name: "access_grant_id",
|
|
32927
|
+
schema: {
|
|
32928
|
+
description: "ID of the access grant to retrieve.",
|
|
32929
|
+
format: "uuid",
|
|
32930
|
+
type: "string"
|
|
32931
|
+
}
|
|
32932
|
+
},
|
|
32924
32933
|
{
|
|
32925
32934
|
in: "query",
|
|
32926
32935
|
name: "customer_key",
|
|
@@ -33057,6 +33066,11 @@ var openapi_default = {
|
|
|
33057
33066
|
"application/json": {
|
|
33058
33067
|
schema: {
|
|
33059
33068
|
properties: {
|
|
33069
|
+
access_grant_id: {
|
|
33070
|
+
description: "ID of the access grant to retrieve.",
|
|
33071
|
+
format: "uuid",
|
|
33072
|
+
type: "string"
|
|
33073
|
+
},
|
|
33060
33074
|
access_grant_key: {
|
|
33061
33075
|
description: "Filter Access Grants by access_grant_key.",
|
|
33062
33076
|
type: "string"
|
|
@@ -58389,6 +58403,10 @@ var openapi_default = {
|
|
|
58389
58403
|
type: "string"
|
|
58390
58404
|
},
|
|
58391
58405
|
code: { nullable: true, type: "string" },
|
|
58406
|
+
instant_key_url: {
|
|
58407
|
+
format: "uri",
|
|
58408
|
+
type: "string"
|
|
58409
|
+
},
|
|
58392
58410
|
is_card_encoding_required: { type: "boolean" },
|
|
58393
58411
|
is_issued: { type: "boolean" },
|
|
58394
58412
|
mode: { type: "string" }
|
|
@@ -58504,6 +58522,10 @@ var openapi_default = {
|
|
|
58504
58522
|
type: "string"
|
|
58505
58523
|
},
|
|
58506
58524
|
code: { nullable: true, type: "string" },
|
|
58525
|
+
instant_key_url: {
|
|
58526
|
+
format: "uri",
|
|
58527
|
+
type: "string"
|
|
58528
|
+
},
|
|
58507
58529
|
is_card_encoding_required: { type: "boolean" },
|
|
58508
58530
|
is_issued: { type: "boolean" },
|
|
58509
58531
|
mode: { type: "string" }
|