@seamapi/types 1.707.0 → 1.708.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 +8 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +30 -6
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +28 -4
- package/lib/seam/connect/openapi.js +8 -8
- 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 +8 -8
- package/src/lib/seam/connect/route-types.ts +2 -2
package/dist/connect.d.cts
CHANGED
|
@@ -73015,9 +73015,13 @@ declare const _default: {
|
|
|
73015
73015
|
name: string;
|
|
73016
73016
|
schema: {
|
|
73017
73017
|
description: string;
|
|
73018
|
-
|
|
73018
|
+
items: {
|
|
73019
|
+
format: string;
|
|
73020
|
+
type: string;
|
|
73021
|
+
};
|
|
73019
73022
|
type: string;
|
|
73020
73023
|
default?: never;
|
|
73024
|
+
format?: never;
|
|
73021
73025
|
nullable?: never;
|
|
73022
73026
|
deprecated?: never;
|
|
73023
73027
|
'x-deprecated'?: never;
|
|
@@ -73028,8 +73032,9 @@ declare const _default: {
|
|
|
73028
73032
|
schema: {
|
|
73029
73033
|
description: string;
|
|
73030
73034
|
type: string;
|
|
73031
|
-
|
|
73035
|
+
items?: never;
|
|
73032
73036
|
default?: never;
|
|
73037
|
+
format?: never;
|
|
73033
73038
|
nullable?: never;
|
|
73034
73039
|
deprecated?: never;
|
|
73035
73040
|
'x-deprecated'?: never;
|
|
@@ -73042,6 +73047,7 @@ declare const _default: {
|
|
|
73042
73047
|
description: string;
|
|
73043
73048
|
format: string;
|
|
73044
73049
|
type: string;
|
|
73050
|
+
items?: never;
|
|
73045
73051
|
nullable?: never;
|
|
73046
73052
|
deprecated?: never;
|
|
73047
73053
|
'x-deprecated'?: never;
|
|
@@ -73053,8 +73059,22 @@ declare const _default: {
|
|
|
73053
73059
|
description: string;
|
|
73054
73060
|
nullable: boolean;
|
|
73055
73061
|
type: string;
|
|
73062
|
+
items?: never;
|
|
73063
|
+
default?: never;
|
|
73056
73064
|
format?: never;
|
|
73065
|
+
deprecated?: never;
|
|
73066
|
+
'x-deprecated'?: never;
|
|
73067
|
+
};
|
|
73068
|
+
} | {
|
|
73069
|
+
in: string;
|
|
73070
|
+
name: string;
|
|
73071
|
+
schema: {
|
|
73072
|
+
description: string;
|
|
73073
|
+
format: string;
|
|
73074
|
+
type: string;
|
|
73075
|
+
items?: never;
|
|
73057
73076
|
default?: never;
|
|
73077
|
+
nullable?: never;
|
|
73058
73078
|
deprecated?: never;
|
|
73059
73079
|
'x-deprecated'?: never;
|
|
73060
73080
|
};
|
|
@@ -73067,6 +73087,7 @@ declare const _default: {
|
|
|
73067
73087
|
type: string;
|
|
73068
73088
|
'x-deprecated': string;
|
|
73069
73089
|
description?: never;
|
|
73090
|
+
items?: never;
|
|
73070
73091
|
default?: never;
|
|
73071
73092
|
nullable?: never;
|
|
73072
73093
|
};
|
|
@@ -73142,9 +73163,12 @@ declare const _default: {
|
|
|
73142
73163
|
'application/json': {
|
|
73143
73164
|
schema: {
|
|
73144
73165
|
properties: {
|
|
73145
|
-
|
|
73166
|
+
access_grant_ids: {
|
|
73146
73167
|
description: string;
|
|
73147
|
-
|
|
73168
|
+
items: {
|
|
73169
|
+
format: string;
|
|
73170
|
+
type: string;
|
|
73171
|
+
};
|
|
73148
73172
|
type: string;
|
|
73149
73173
|
};
|
|
73150
73174
|
access_grant_key: {
|
|
@@ -127062,8 +127086,8 @@ type Routes = {
|
|
|
127062
127086
|
queryParams: {};
|
|
127063
127087
|
jsonBody: {};
|
|
127064
127088
|
commonParams: {
|
|
127065
|
-
/**
|
|
127066
|
-
|
|
127089
|
+
/** IDs of the access grants to retrieve. */
|
|
127090
|
+
access_grant_ids?: string[] | undefined;
|
|
127067
127091
|
/** Customer key for which you want to list access grants. */
|
|
127068
127092
|
customer_key?: string | undefined;
|
|
127069
127093
|
/** Numerical limit on the number of access grants to return. */
|
package/dist/index.cjs
CHANGED
|
@@ -32923,11 +32923,11 @@ var openapi_default = {
|
|
|
32923
32923
|
parameters: [
|
|
32924
32924
|
{
|
|
32925
32925
|
in: "query",
|
|
32926
|
-
name: "
|
|
32926
|
+
name: "access_grant_ids",
|
|
32927
32927
|
schema: {
|
|
32928
|
-
description: "
|
|
32929
|
-
format: "uuid",
|
|
32930
|
-
type: "
|
|
32928
|
+
description: "IDs of the access grants to retrieve.",
|
|
32929
|
+
items: { format: "uuid", type: "string" },
|
|
32930
|
+
type: "array"
|
|
32931
32931
|
}
|
|
32932
32932
|
},
|
|
32933
32933
|
{
|
|
@@ -33066,10 +33066,10 @@ var openapi_default = {
|
|
|
33066
33066
|
"application/json": {
|
|
33067
33067
|
schema: {
|
|
33068
33068
|
properties: {
|
|
33069
|
-
|
|
33070
|
-
description: "
|
|
33071
|
-
format: "uuid",
|
|
33072
|
-
type: "
|
|
33069
|
+
access_grant_ids: {
|
|
33070
|
+
description: "IDs of the access grants to retrieve.",
|
|
33071
|
+
items: { format: "uuid", type: "string" },
|
|
33072
|
+
type: "array"
|
|
33073
33073
|
},
|
|
33074
33074
|
access_grant_key: {
|
|
33075
33075
|
description: "Filter Access Grants by access_grant_key.",
|