@seamapi/types 1.880.0 → 1.881.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 +3 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -1
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +2 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +3 -2
- package/src/lib/seam/connect/route-types.ts +2 -1
|
@@ -12651,7 +12651,8 @@ export type Routes = {
|
|
|
12651
12651
|
space_ids?: string[] | undefined;
|
|
12652
12652
|
/** Set of keys of existing spaces to which access is being granted. */
|
|
12653
12653
|
space_keys?: string[] | undefined;
|
|
12654
|
-
/**
|
|
12654
|
+
/**
|
|
12655
|
+
* @deprecated Create a space first, then reference it using `space_ids`.*/
|
|
12655
12656
|
location?: {
|
|
12656
12657
|
/** Name of the location. */
|
|
12657
12658
|
name?: string | undefined;
|
package/package.json
CHANGED
|
@@ -37052,8 +37052,7 @@ const openapi: OpenAPISpec = {
|
|
|
37052
37052
|
type: 'string',
|
|
37053
37053
|
},
|
|
37054
37054
|
location: {
|
|
37055
|
-
|
|
37056
|
-
'When used, creates a new location with the given entrances and devices, and gives the user access to this location.',
|
|
37055
|
+
deprecated: true,
|
|
37057
37056
|
properties: {
|
|
37058
37057
|
acs_entrance_ids: {
|
|
37059
37058
|
default: [],
|
|
@@ -37077,6 +37076,8 @@ const openapi: OpenAPISpec = {
|
|
|
37077
37076
|
},
|
|
37078
37077
|
},
|
|
37079
37078
|
type: 'object',
|
|
37079
|
+
'x-deprecated':
|
|
37080
|
+
'Create a space first, then reference it using `space_ids`.',
|
|
37080
37081
|
},
|
|
37081
37082
|
location_ids: {
|
|
37082
37083
|
deprecated: true,
|
|
@@ -14368,7 +14368,8 @@ export type Routes = {
|
|
|
14368
14368
|
space_ids?: string[] | undefined
|
|
14369
14369
|
/** Set of keys of existing spaces to which access is being granted. */
|
|
14370
14370
|
space_keys?: string[] | undefined
|
|
14371
|
-
/**
|
|
14371
|
+
/**
|
|
14372
|
+
* @deprecated Create a space first, then reference it using `space_ids`.*/
|
|
14372
14373
|
location?:
|
|
14373
14374
|
| {
|
|
14374
14375
|
/** Name of the location. */
|