@seamapi/types 1.783.0 → 1.784.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 +28 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +14 -0
- package/dist/index.cjs +28 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +10 -0
- package/lib/seam/connect/openapi.js +28 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +32 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
|
@@ -23706,6 +23706,11 @@ declare const _default: {
|
|
|
23706
23706
|
'application/json': {
|
|
23707
23707
|
schema: {
|
|
23708
23708
|
properties: {
|
|
23709
|
+
access_code_id: {
|
|
23710
|
+
description: string;
|
|
23711
|
+
format: string;
|
|
23712
|
+
type: string;
|
|
23713
|
+
};
|
|
23709
23714
|
access_grant_ids: {
|
|
23710
23715
|
description: string;
|
|
23711
23716
|
items: {
|
|
@@ -27059,6 +27064,11 @@ declare const _default: {
|
|
|
27059
27064
|
'application/json': {
|
|
27060
27065
|
schema: {
|
|
27061
27066
|
properties: {
|
|
27067
|
+
access_code_id: {
|
|
27068
|
+
description: string;
|
|
27069
|
+
format: string;
|
|
27070
|
+
type: string;
|
|
27071
|
+
};
|
|
27062
27072
|
access_grant_id: {
|
|
27063
27073
|
description: string;
|
|
27064
27074
|
format: string;
|
|
@@ -31476,6 +31476,15 @@ export default {
|
|
|
31476
31476
|
type: 'string',
|
|
31477
31477
|
},
|
|
31478
31478
|
},
|
|
31479
|
+
{
|
|
31480
|
+
in: 'query',
|
|
31481
|
+
name: 'access_code_id',
|
|
31482
|
+
schema: {
|
|
31483
|
+
description: 'ID of the access code by which you want to filter the list of Access Grants.',
|
|
31484
|
+
format: 'uuid',
|
|
31485
|
+
type: 'string',
|
|
31486
|
+
},
|
|
31487
|
+
},
|
|
31479
31488
|
{
|
|
31480
31489
|
in: 'query',
|
|
31481
31490
|
name: 'access_grant_key',
|
|
@@ -31540,6 +31549,11 @@ export default {
|
|
|
31540
31549
|
'application/json': {
|
|
31541
31550
|
schema: {
|
|
31542
31551
|
properties: {
|
|
31552
|
+
access_code_id: {
|
|
31553
|
+
description: 'ID of the access code by which you want to filter the list of Access Grants.',
|
|
31554
|
+
format: 'uuid',
|
|
31555
|
+
type: 'string',
|
|
31556
|
+
},
|
|
31543
31557
|
access_grant_ids: {
|
|
31544
31558
|
description: 'IDs of the access grants to retrieve.',
|
|
31545
31559
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -34880,6 +34894,15 @@ export default {
|
|
|
34880
34894
|
type: 'string',
|
|
34881
34895
|
},
|
|
34882
34896
|
},
|
|
34897
|
+
{
|
|
34898
|
+
in: 'query',
|
|
34899
|
+
name: 'access_code_id',
|
|
34900
|
+
schema: {
|
|
34901
|
+
description: 'ID of the access code for which you want to retrieve all access methods.',
|
|
34902
|
+
format: 'uuid',
|
|
34903
|
+
type: 'string',
|
|
34904
|
+
},
|
|
34905
|
+
},
|
|
34883
34906
|
],
|
|
34884
34907
|
responses: {
|
|
34885
34908
|
200: {
|
|
@@ -34926,6 +34949,11 @@ export default {
|
|
|
34926
34949
|
'application/json': {
|
|
34927
34950
|
schema: {
|
|
34928
34951
|
properties: {
|
|
34952
|
+
access_code_id: {
|
|
34953
|
+
description: 'ID of the access code for which you want to retrieve all access methods.',
|
|
34954
|
+
format: 'uuid',
|
|
34955
|
+
type: 'string',
|
|
34956
|
+
},
|
|
34929
34957
|
access_grant_id: {
|
|
34930
34958
|
description: 'ID of Access Grant to list access methods for.',
|
|
34931
34959
|
format: 'uuid',
|