@seamapi/types 1.838.0 → 1.839.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 +22 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5 -0
- package/dist/index.cjs +22 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +20 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +22 -0
- package/src/lib/seam/connect/route-types.ts +5 -0
package/dist/connect.d.cts
CHANGED
|
@@ -132284,6 +132284,8 @@ type Routes = {
|
|
|
132284
132284
|
device_ids?: string[] | undefined;
|
|
132285
132285
|
/** IDs of the entrances that you want to add to the new space. */
|
|
132286
132286
|
acs_entrance_ids?: string[] | undefined;
|
|
132287
|
+
/** IDs of connected accounts (third-party accounts) to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account a space came from. */
|
|
132288
|
+
connected_account_ids?: string[] | undefined;
|
|
132287
132289
|
/** Space key of the parent space for this space. */
|
|
132288
132290
|
parent_space_key?: string | undefined;
|
|
132289
132291
|
/** Name of the parent space for this space. */
|
|
@@ -133363,6 +133365,7 @@ type Routes = {
|
|
|
133363
133365
|
needs_review?: boolean | undefined;
|
|
133364
133366
|
is_draft?: boolean | undefined;
|
|
133365
133367
|
is_common_area?: boolean | undefined;
|
|
133368
|
+
connected_account_ids: string[];
|
|
133366
133369
|
}[];
|
|
133367
133370
|
};
|
|
133368
133371
|
maxDuration: undefined;
|
|
@@ -133425,6 +133428,8 @@ type Routes = {
|
|
|
133425
133428
|
device_ids?: string[] | undefined;
|
|
133426
133429
|
/** IDs of the entrances that you want to add to the new space. */
|
|
133427
133430
|
acs_entrance_ids?: string[] | undefined;
|
|
133431
|
+
/** IDs of connected accounts to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account(s) a space came from. */
|
|
133432
|
+
connected_account_ids?: string[] | undefined;
|
|
133428
133433
|
/** Customer key for which you want to create the space. */
|
|
133429
133434
|
customer_key?: string | undefined;
|
|
133430
133435
|
/** Reservation/stay-related defaults for the space. */
|
package/dist/index.cjs
CHANGED
|
@@ -73336,6 +73336,11 @@ var openapi = {
|
|
|
73336
73336
|
items: { format: "uuid", type: "string" },
|
|
73337
73337
|
type: "array"
|
|
73338
73338
|
},
|
|
73339
|
+
connected_account_ids: {
|
|
73340
|
+
description: "IDs of connected accounts (third-party accounts) to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account a space came from.",
|
|
73341
|
+
items: { format: "uuid", type: "string" },
|
|
73342
|
+
type: "array"
|
|
73343
|
+
},
|
|
73339
73344
|
device_ids: {
|
|
73340
73345
|
description: "IDs of the devices that you want to add to the new space.",
|
|
73341
73346
|
items: { format: "uuid", type: "string" },
|
|
@@ -74886,6 +74891,10 @@ var openapi = {
|
|
|
74886
74891
|
},
|
|
74887
74892
|
type: "array"
|
|
74888
74893
|
},
|
|
74894
|
+
connected_account_ids: {
|
|
74895
|
+
items: { format: "uuid", type: "string" },
|
|
74896
|
+
type: "array"
|
|
74897
|
+
},
|
|
74889
74898
|
devices: {
|
|
74890
74899
|
items: {
|
|
74891
74900
|
properties: {
|
|
@@ -74918,7 +74927,8 @@ var openapi = {
|
|
|
74918
74927
|
"name",
|
|
74919
74928
|
"partner_resource_key",
|
|
74920
74929
|
"devices",
|
|
74921
|
-
"acs_entrances"
|
|
74930
|
+
"acs_entrances",
|
|
74931
|
+
"connected_account_ids"
|
|
74922
74932
|
],
|
|
74923
74933
|
type: "object"
|
|
74924
74934
|
},
|
|
@@ -75014,6 +75024,10 @@ var openapi = {
|
|
|
75014
75024
|
},
|
|
75015
75025
|
type: "array"
|
|
75016
75026
|
},
|
|
75027
|
+
connected_account_ids: {
|
|
75028
|
+
items: { format: "uuid", type: "string" },
|
|
75029
|
+
type: "array"
|
|
75030
|
+
},
|
|
75017
75031
|
devices: {
|
|
75018
75032
|
items: {
|
|
75019
75033
|
properties: {
|
|
@@ -75046,7 +75060,8 @@ var openapi = {
|
|
|
75046
75060
|
"name",
|
|
75047
75061
|
"partner_resource_key",
|
|
75048
75062
|
"devices",
|
|
75049
|
-
"acs_entrances"
|
|
75063
|
+
"acs_entrances",
|
|
75064
|
+
"connected_account_ids"
|
|
75050
75065
|
],
|
|
75051
75066
|
type: "object"
|
|
75052
75067
|
},
|
|
@@ -75432,6 +75447,11 @@ var openapi = {
|
|
|
75432
75447
|
items: { format: "uuid", type: "string" },
|
|
75433
75448
|
type: "array"
|
|
75434
75449
|
},
|
|
75450
|
+
connected_account_ids: {
|
|
75451
|
+
description: "IDs of connected accounts to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account(s) a space came from.",
|
|
75452
|
+
items: { format: "uuid", type: "string" },
|
|
75453
|
+
type: "array"
|
|
75454
|
+
},
|
|
75435
75455
|
customer_data: {
|
|
75436
75456
|
description: "Reservation/stay-related defaults for the space.",
|
|
75437
75457
|
properties: {
|