@seamapi/types 1.706.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 +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +15 -8
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +13 -8
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +14 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -19655,9 +19655,9 @@ declare const _default: {
|
|
|
19655
19655
|
name: string;
|
|
19656
19656
|
schema: {
|
|
19657
19657
|
description: string;
|
|
19658
|
+
format: string;
|
|
19658
19659
|
type: string;
|
|
19659
19660
|
default?: never;
|
|
19660
|
-
format?: never;
|
|
19661
19661
|
nullable?: never;
|
|
19662
19662
|
deprecated?: never;
|
|
19663
19663
|
'x-deprecated'?: never;
|
|
@@ -19666,10 +19666,10 @@ declare const _default: {
|
|
|
19666
19666
|
in: string;
|
|
19667
19667
|
name: string;
|
|
19668
19668
|
schema: {
|
|
19669
|
-
default: number;
|
|
19670
19669
|
description: string;
|
|
19671
|
-
format: string;
|
|
19672
19670
|
type: string;
|
|
19671
|
+
format?: never;
|
|
19672
|
+
default?: never;
|
|
19673
19673
|
nullable?: never;
|
|
19674
19674
|
deprecated?: never;
|
|
19675
19675
|
'x-deprecated'?: never;
|
|
@@ -19678,11 +19678,11 @@ declare const _default: {
|
|
|
19678
19678
|
in: string;
|
|
19679
19679
|
name: string;
|
|
19680
19680
|
schema: {
|
|
19681
|
+
default: number;
|
|
19681
19682
|
description: string;
|
|
19682
|
-
|
|
19683
|
+
format: string;
|
|
19683
19684
|
type: string;
|
|
19684
|
-
|
|
19685
|
-
format?: never;
|
|
19685
|
+
nullable?: never;
|
|
19686
19686
|
deprecated?: never;
|
|
19687
19687
|
'x-deprecated'?: never;
|
|
19688
19688
|
};
|
|
@@ -19691,10 +19691,10 @@ declare const _default: {
|
|
|
19691
19691
|
name: string;
|
|
19692
19692
|
schema: {
|
|
19693
19693
|
description: string;
|
|
19694
|
-
|
|
19694
|
+
nullable: boolean;
|
|
19695
19695
|
type: string;
|
|
19696
|
+
format?: never;
|
|
19696
19697
|
default?: never;
|
|
19697
|
-
nullable?: never;
|
|
19698
19698
|
deprecated?: never;
|
|
19699
19699
|
'x-deprecated'?: never;
|
|
19700
19700
|
};
|
|
@@ -19782,6 +19782,11 @@ declare const _default: {
|
|
|
19782
19782
|
'application/json': {
|
|
19783
19783
|
schema: {
|
|
19784
19784
|
properties: {
|
|
19785
|
+
access_grant_id: {
|
|
19786
|
+
description: string;
|
|
19787
|
+
format: string;
|
|
19788
|
+
type: string;
|
|
19789
|
+
};
|
|
19785
19790
|
access_grant_key: {
|
|
19786
19791
|
description: string;
|
|
19787
19792
|
type: string;
|
|
@@ -26912,6 +26912,15 @@ export default {
|
|
|
26912
26912
|
description: 'Gets an Access Grant.',
|
|
26913
26913
|
operationId: 'accessGrantsListGet',
|
|
26914
26914
|
parameters: [
|
|
26915
|
+
{
|
|
26916
|
+
in: 'query',
|
|
26917
|
+
name: 'access_grant_id',
|
|
26918
|
+
schema: {
|
|
26919
|
+
description: 'ID of the access grant to retrieve.',
|
|
26920
|
+
format: 'uuid',
|
|
26921
|
+
type: 'string',
|
|
26922
|
+
},
|
|
26923
|
+
},
|
|
26915
26924
|
{
|
|
26916
26925
|
in: 'query',
|
|
26917
26926
|
name: 'customer_key',
|
|
@@ -27048,6 +27057,11 @@ export default {
|
|
|
27048
27057
|
'application/json': {
|
|
27049
27058
|
schema: {
|
|
27050
27059
|
properties: {
|
|
27060
|
+
access_grant_id: {
|
|
27061
|
+
description: 'ID of the access grant to retrieve.',
|
|
27062
|
+
format: 'uuid',
|
|
27063
|
+
type: 'string',
|
|
27064
|
+
},
|
|
27051
27065
|
access_grant_key: {
|
|
27052
27066
|
description: 'Filter Access Grants by access_grant_key.',
|
|
27053
27067
|
type: 'string',
|