@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
package/dist/connect.d.cts
CHANGED
|
@@ -86086,6 +86086,7 @@ declare const _default: {
|
|
|
86086
86086
|
};
|
|
86087
86087
|
access_grant_key: {
|
|
86088
86088
|
description: string;
|
|
86089
|
+
nullable: boolean;
|
|
86089
86090
|
type: string;
|
|
86090
86091
|
};
|
|
86091
86092
|
acs_entrance_id: {
|
|
@@ -148511,8 +148512,8 @@ type Routes = {
|
|
|
148511
148512
|
location_id?: string | undefined;
|
|
148512
148513
|
/** ID of the space by which you want to filter the list of Access Grants. */
|
|
148513
148514
|
space_id?: string | undefined;
|
|
148514
|
-
/** Filter Access Grants by access_grant_key. */
|
|
148515
|
-
access_grant_key?: string | undefined;
|
|
148515
|
+
/** Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key. */
|
|
148516
|
+
access_grant_key?: (string | null) | undefined;
|
|
148516
148517
|
/** Filter Access Grants by reservation_key. */
|
|
148517
148518
|
reservation_key?: string | undefined;
|
|
148518
148519
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -38088,7 +38088,8 @@ var openapi_default = {
|
|
|
38088
38088
|
in: "query",
|
|
38089
38089
|
name: "access_grant_key",
|
|
38090
38090
|
schema: {
|
|
38091
|
-
description: "Filter Access Grants by access_grant_key.",
|
|
38091
|
+
description: "Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key.",
|
|
38092
|
+
nullable: true,
|
|
38092
38093
|
type: "string"
|
|
38093
38094
|
}
|
|
38094
38095
|
},
|
|
@@ -38153,7 +38154,8 @@ var openapi_default = {
|
|
|
38153
38154
|
type: "array"
|
|
38154
38155
|
},
|
|
38155
38156
|
access_grant_key: {
|
|
38156
|
-
description: "Filter Access Grants by access_grant_key.",
|
|
38157
|
+
description: "Filter Access Grants by access_grant_key. Use null to filter for Access Grants without an access_grant_key.",
|
|
38158
|
+
nullable: true,
|
|
38157
38159
|
type: "string"
|
|
38158
38160
|
},
|
|
38159
38161
|
acs_entrance_id: {
|