@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.d.cts
CHANGED
|
@@ -73015,9 +73015,9 @@ declare const _default: {
|
|
|
73015
73015
|
name: string;
|
|
73016
73016
|
schema: {
|
|
73017
73017
|
description: string;
|
|
73018
|
+
format: string;
|
|
73018
73019
|
type: string;
|
|
73019
73020
|
default?: never;
|
|
73020
|
-
format?: never;
|
|
73021
73021
|
nullable?: never;
|
|
73022
73022
|
deprecated?: never;
|
|
73023
73023
|
'x-deprecated'?: never;
|
|
@@ -73026,10 +73026,10 @@ declare const _default: {
|
|
|
73026
73026
|
in: string;
|
|
73027
73027
|
name: string;
|
|
73028
73028
|
schema: {
|
|
73029
|
-
default: number;
|
|
73030
73029
|
description: string;
|
|
73031
|
-
format: string;
|
|
73032
73030
|
type: string;
|
|
73031
|
+
format?: never;
|
|
73032
|
+
default?: never;
|
|
73033
73033
|
nullable?: never;
|
|
73034
73034
|
deprecated?: never;
|
|
73035
73035
|
'x-deprecated'?: never;
|
|
@@ -73038,11 +73038,11 @@ declare const _default: {
|
|
|
73038
73038
|
in: string;
|
|
73039
73039
|
name: string;
|
|
73040
73040
|
schema: {
|
|
73041
|
+
default: number;
|
|
73041
73042
|
description: string;
|
|
73042
|
-
|
|
73043
|
+
format: string;
|
|
73043
73044
|
type: string;
|
|
73044
|
-
|
|
73045
|
-
format?: never;
|
|
73045
|
+
nullable?: never;
|
|
73046
73046
|
deprecated?: never;
|
|
73047
73047
|
'x-deprecated'?: never;
|
|
73048
73048
|
};
|
|
@@ -73051,10 +73051,10 @@ declare const _default: {
|
|
|
73051
73051
|
name: string;
|
|
73052
73052
|
schema: {
|
|
73053
73053
|
description: string;
|
|
73054
|
-
|
|
73054
|
+
nullable: boolean;
|
|
73055
73055
|
type: string;
|
|
73056
|
+
format?: never;
|
|
73056
73057
|
default?: never;
|
|
73057
|
-
nullable?: never;
|
|
73058
73058
|
deprecated?: never;
|
|
73059
73059
|
'x-deprecated'?: never;
|
|
73060
73060
|
};
|
|
@@ -73142,6 +73142,11 @@ declare const _default: {
|
|
|
73142
73142
|
'application/json': {
|
|
73143
73143
|
schema: {
|
|
73144
73144
|
properties: {
|
|
73145
|
+
access_grant_id: {
|
|
73146
|
+
description: string;
|
|
73147
|
+
format: string;
|
|
73148
|
+
type: string;
|
|
73149
|
+
};
|
|
73145
73150
|
access_grant_key: {
|
|
73146
73151
|
description: string;
|
|
73147
73152
|
type: string;
|
|
@@ -100941,6 +100946,10 @@ declare const _default: {
|
|
|
100941
100946
|
nullable: boolean;
|
|
100942
100947
|
type: string;
|
|
100943
100948
|
};
|
|
100949
|
+
instant_key_url: {
|
|
100950
|
+
format: string;
|
|
100951
|
+
type: string;
|
|
100952
|
+
};
|
|
100944
100953
|
is_card_encoding_required: {
|
|
100945
100954
|
type: string;
|
|
100946
100955
|
};
|
|
@@ -101082,6 +101091,10 @@ declare const _default: {
|
|
|
101082
101091
|
nullable: boolean;
|
|
101083
101092
|
type: string;
|
|
101084
101093
|
};
|
|
101094
|
+
instant_key_url: {
|
|
101095
|
+
format: string;
|
|
101096
|
+
type: string;
|
|
101097
|
+
};
|
|
101085
101098
|
is_card_encoding_required: {
|
|
101086
101099
|
type: string;
|
|
101087
101100
|
};
|
|
@@ -127049,6 +127062,8 @@ type Routes = {
|
|
|
127049
127062
|
queryParams: {};
|
|
127050
127063
|
jsonBody: {};
|
|
127051
127064
|
commonParams: {
|
|
127065
|
+
/** ID of the access grant to retrieve. */
|
|
127066
|
+
access_grant_id?: string | undefined;
|
|
127052
127067
|
/** Customer key for which you want to list access grants. */
|
|
127053
127068
|
customer_key?: string | undefined;
|
|
127054
127069
|
/** Numerical limit on the number of access grants to return. */
|
|
@@ -170508,6 +170523,7 @@ type Routes = {
|
|
|
170508
170523
|
is_issued: boolean;
|
|
170509
170524
|
is_card_encoding_required?: boolean | undefined;
|
|
170510
170525
|
code?: (string | null) | undefined;
|
|
170526
|
+
instant_key_url?: string | undefined;
|
|
170511
170527
|
}[];
|
|
170512
170528
|
};
|
|
170513
170529
|
};
|
package/dist/index.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" }
|