@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
|
@@ -12840,8 +12840,8 @@ export type Routes = {
|
|
|
12840
12840
|
location_id?: string | undefined;
|
|
12841
12841
|
/** ID of the space by which you want to filter the list of Access Grants. */
|
|
12842
12842
|
space_id?: string | undefined;
|
|
12843
|
-
/** Filter Access Grants by access_grant_key. */
|
|
12844
|
-
access_grant_key?: string | undefined;
|
|
12843
|
+
/** Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key. */
|
|
12844
|
+
access_grant_key?: (string | null) | undefined;
|
|
12845
12845
|
/** Filter Access Grants by reservation_key. */
|
|
12846
12846
|
reservation_key?: string | undefined;
|
|
12847
12847
|
};
|
package/package.json
CHANGED
|
@@ -34920,7 +34920,9 @@ export default {
|
|
|
34920
34920
|
in: 'query',
|
|
34921
34921
|
name: 'access_grant_key',
|
|
34922
34922
|
schema: {
|
|
34923
|
-
description:
|
|
34923
|
+
description:
|
|
34924
|
+
'Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key.',
|
|
34925
|
+
nullable: true,
|
|
34924
34926
|
type: 'string',
|
|
34925
34927
|
},
|
|
34926
34928
|
},
|
|
@@ -34985,7 +34987,9 @@ export default {
|
|
|
34985
34987
|
type: 'array',
|
|
34986
34988
|
},
|
|
34987
34989
|
access_grant_key: {
|
|
34988
|
-
description:
|
|
34990
|
+
description:
|
|
34991
|
+
'Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key.',
|
|
34992
|
+
nullable: true,
|
|
34989
34993
|
type: 'string',
|
|
34990
34994
|
},
|
|
34991
34995
|
acs_entrance_id: {
|
|
@@ -14783,8 +14783,8 @@ export type Routes = {
|
|
|
14783
14783
|
location_id?: string | undefined
|
|
14784
14784
|
/** ID of the space by which you want to filter the list of Access Grants. */
|
|
14785
14785
|
space_id?: string | undefined
|
|
14786
|
-
/** Filter Access Grants by access_grant_key. */
|
|
14787
|
-
access_grant_key?: string | undefined
|
|
14786
|
+
/** Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key. */
|
|
14787
|
+
access_grant_key?: (string | null) | undefined
|
|
14788
14788
|
/** Filter Access Grants by reservation_key. */
|
|
14789
14789
|
reservation_key?: string | undefined
|
|
14790
14790
|
}
|