@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
|
@@ -11805,6 +11805,8 @@ export type Routes = {
|
|
|
11805
11805
|
queryParams: {};
|
|
11806
11806
|
jsonBody: {};
|
|
11807
11807
|
commonParams: {
|
|
11808
|
+
/** ID of the access grant to retrieve. */
|
|
11809
|
+
access_grant_id?: string | undefined;
|
|
11808
11810
|
/** Customer key for which you want to list access grants. */
|
|
11809
11811
|
customer_key?: string | undefined;
|
|
11810
11812
|
/** Numerical limit on the number of access grants to return. */
|
|
@@ -55264,6 +55266,7 @@ export type Routes = {
|
|
|
55264
55266
|
is_issued: boolean;
|
|
55265
55267
|
is_card_encoding_required?: boolean | undefined;
|
|
55266
55268
|
code?: (string | null) | undefined;
|
|
55269
|
+
instant_key_url?: string | undefined;
|
|
55267
55270
|
}[];
|
|
55268
55271
|
};
|
|
55269
55272
|
};
|
package/package.json
CHANGED
|
@@ -29900,6 +29900,15 @@ export default {
|
|
|
29900
29900
|
description: 'Gets an Access Grant.',
|
|
29901
29901
|
operationId: 'accessGrantsListGet',
|
|
29902
29902
|
parameters: [
|
|
29903
|
+
{
|
|
29904
|
+
in: 'query',
|
|
29905
|
+
name: 'access_grant_id',
|
|
29906
|
+
schema: {
|
|
29907
|
+
description: 'ID of the access grant to retrieve.',
|
|
29908
|
+
format: 'uuid',
|
|
29909
|
+
type: 'string',
|
|
29910
|
+
},
|
|
29911
|
+
},
|
|
29903
29912
|
{
|
|
29904
29913
|
in: 'query',
|
|
29905
29914
|
name: 'customer_key',
|
|
@@ -30043,6 +30052,11 @@ export default {
|
|
|
30043
30052
|
'application/json': {
|
|
30044
30053
|
schema: {
|
|
30045
30054
|
properties: {
|
|
30055
|
+
access_grant_id: {
|
|
30056
|
+
description: 'ID of the access grant to retrieve.',
|
|
30057
|
+
format: 'uuid',
|
|
30058
|
+
type: 'string',
|
|
30059
|
+
},
|
|
30046
30060
|
access_grant_key: {
|
|
30047
30061
|
description: 'Filter Access Grants by access_grant_key.',
|
|
30048
30062
|
type: 'string',
|
|
@@ -56768,6 +56782,10 @@ export default {
|
|
|
56768
56782
|
type: 'string',
|
|
56769
56783
|
},
|
|
56770
56784
|
code: { nullable: true, type: 'string' },
|
|
56785
|
+
instant_key_url: {
|
|
56786
|
+
format: 'uri',
|
|
56787
|
+
type: 'string',
|
|
56788
|
+
},
|
|
56771
56789
|
is_card_encoding_required: { type: 'boolean' },
|
|
56772
56790
|
is_issued: { type: 'boolean' },
|
|
56773
56791
|
mode: { type: 'string' },
|
|
@@ -56884,6 +56902,10 @@ export default {
|
|
|
56884
56902
|
type: 'string',
|
|
56885
56903
|
},
|
|
56886
56904
|
code: { nullable: true, type: 'string' },
|
|
56905
|
+
instant_key_url: {
|
|
56906
|
+
format: 'uri',
|
|
56907
|
+
type: 'string',
|
|
56908
|
+
},
|
|
56887
56909
|
is_card_encoding_required: { type: 'boolean' },
|
|
56888
56910
|
is_issued: { type: 'boolean' },
|
|
56889
56911
|
mode: { type: 'string' },
|
|
@@ -13545,6 +13545,8 @@ export type Routes = {
|
|
|
13545
13545
|
queryParams: {}
|
|
13546
13546
|
jsonBody: {}
|
|
13547
13547
|
commonParams: {
|
|
13548
|
+
/** ID of the access grant to retrieve. */
|
|
13549
|
+
access_grant_id?: string | undefined
|
|
13548
13550
|
/** Customer key for which you want to list access grants. */
|
|
13549
13551
|
customer_key?: string | undefined
|
|
13550
13552
|
/** Numerical limit on the number of access grants to return. */
|
|
@@ -66197,6 +66199,7 @@ export type Routes = {
|
|
|
66197
66199
|
is_issued: boolean
|
|
66198
66200
|
is_card_encoding_required?: boolean | undefined
|
|
66199
66201
|
code?: (string | null) | undefined
|
|
66202
|
+
instant_key_url?: string | undefined
|
|
66200
66203
|
}[]
|
|
66201
66204
|
}
|
|
66202
66205
|
}
|