@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
|
@@ -11805,8 +11805,8 @@ export type Routes = {
|
|
|
11805
11805
|
queryParams: {};
|
|
11806
11806
|
jsonBody: {};
|
|
11807
11807
|
commonParams: {
|
|
11808
|
-
/**
|
|
11809
|
-
|
|
11808
|
+
/** IDs of the access grants to retrieve. */
|
|
11809
|
+
access_grant_ids?: string[] | undefined;
|
|
11810
11810
|
/** Customer key for which you want to list access grants. */
|
|
11811
11811
|
customer_key?: string | undefined;
|
|
11812
11812
|
/** Numerical limit on the number of access grants to return. */
|
package/package.json
CHANGED
|
@@ -29902,11 +29902,11 @@ export default {
|
|
|
29902
29902
|
parameters: [
|
|
29903
29903
|
{
|
|
29904
29904
|
in: 'query',
|
|
29905
|
-
name: '
|
|
29905
|
+
name: 'access_grant_ids',
|
|
29906
29906
|
schema: {
|
|
29907
|
-
description: '
|
|
29908
|
-
format: 'uuid',
|
|
29909
|
-
type: '
|
|
29907
|
+
description: 'IDs of the access grants to retrieve.',
|
|
29908
|
+
items: { format: 'uuid', type: 'string' },
|
|
29909
|
+
type: 'array',
|
|
29910
29910
|
},
|
|
29911
29911
|
},
|
|
29912
29912
|
{
|
|
@@ -30052,10 +30052,10 @@ export default {
|
|
|
30052
30052
|
'application/json': {
|
|
30053
30053
|
schema: {
|
|
30054
30054
|
properties: {
|
|
30055
|
-
|
|
30056
|
-
description: '
|
|
30057
|
-
format: 'uuid',
|
|
30058
|
-
type: '
|
|
30055
|
+
access_grant_ids: {
|
|
30056
|
+
description: 'IDs of the access grants to retrieve.',
|
|
30057
|
+
items: { format: 'uuid', type: 'string' },
|
|
30058
|
+
type: 'array',
|
|
30059
30059
|
},
|
|
30060
30060
|
access_grant_key: {
|
|
30061
30061
|
description: 'Filter Access Grants by access_grant_key.',
|
|
@@ -13545,8 +13545,8 @@ export type Routes = {
|
|
|
13545
13545
|
queryParams: {}
|
|
13546
13546
|
jsonBody: {}
|
|
13547
13547
|
commonParams: {
|
|
13548
|
-
/**
|
|
13549
|
-
|
|
13548
|
+
/** IDs of the access grants to retrieve. */
|
|
13549
|
+
access_grant_ids?: string[] | undefined
|
|
13550
13550
|
/** Customer key for which you want to list access grants. */
|
|
13551
13551
|
customer_key?: string | undefined
|
|
13552
13552
|
/** Numerical limit on the number of access grants to return. */
|