@seamapi/types 1.779.0 → 1.780.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 +4 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -2
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +1 -0
- package/lib/seam/connect/openapi.js +4 -2
- 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 +6 -2
- package/src/lib/seam/connect/route-types.ts +2 -2
|
@@ -23650,6 +23650,7 @@ declare const _default: {
|
|
|
23650
23650
|
};
|
|
23651
23651
|
access_grant_key: {
|
|
23652
23652
|
description: string;
|
|
23653
|
+
nullable: boolean;
|
|
23653
23654
|
type: string;
|
|
23654
23655
|
};
|
|
23655
23656
|
acs_entrance_id: {
|
|
@@ -31412,7 +31412,8 @@ export default {
|
|
|
31412
31412
|
in: 'query',
|
|
31413
31413
|
name: 'access_grant_key',
|
|
31414
31414
|
schema: {
|
|
31415
|
-
description: 'Filter Access Grants by access_grant_key.',
|
|
31415
|
+
description: 'Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key.',
|
|
31416
|
+
nullable: true,
|
|
31416
31417
|
type: 'string',
|
|
31417
31418
|
},
|
|
31418
31419
|
},
|
|
@@ -31477,7 +31478,8 @@ export default {
|
|
|
31477
31478
|
type: 'array',
|
|
31478
31479
|
},
|
|
31479
31480
|
access_grant_key: {
|
|
31480
|
-
description: 'Filter Access Grants by access_grant_key.',
|
|
31481
|
+
description: 'Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key.',
|
|
31482
|
+
nullable: true,
|
|
31481
31483
|
type: 'string',
|
|
31482
31484
|
},
|
|
31483
31485
|
acs_entrance_id: {
|