@seamapi/http 1.74.0 → 1.75.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 +106 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +33 -2
- package/dist/index.cjs +108 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/routes/seam/customer/v1/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/customer/v1/index.js +1 -0
- package/lib/seam/connect/routes/seam/customer/v1/index.js.map +1 -1
- package/lib/seam/connect/routes/seam/customer/v1/spaces/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/customer/v1/spaces/index.js +6 -0
- package/lib/seam/connect/routes/seam/customer/v1/spaces/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/customer/v1/spaces/spaces.d.ts +34 -0
- package/lib/seam/connect/routes/seam/customer/v1/spaces/spaces.js +98 -0
- package/lib/seam/connect/routes/seam/customer/v1/spaces/spaces.js.map +1 -0
- package/lib/seam/connect/routes/seam/customer/v1/v1.d.ts +2 -0
- package/lib/seam/connect/routes/seam/customer/v1/v1.js +4 -3
- package/lib/seam/connect/routes/seam/customer/v1/v1.js.map +1 -1
- package/lib/seam/connect/routes/seam-http-endpoints.d.ts +3 -1
- package/lib/seam/connect/routes/seam-http-endpoints.js +8 -0
- package/lib/seam/connect/routes/seam-http-endpoints.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/routes/seam/customer/v1/index.ts +1 -0
- package/src/lib/seam/connect/routes/seam/customer/v1/spaces/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/customer/v1/spaces/spaces.ts +201 -0
- package/src/lib/seam/connect/routes/seam/customer/v1/v1.ts +5 -5
- package/src/lib/seam/connect/routes/seam-http-endpoints.ts +20 -0
- package/src/lib/version.ts +1 -1
|
@@ -620,6 +620,12 @@ import {
|
|
|
620
620
|
type SeamCustomerV1SettingsUpdateRequest,
|
|
621
621
|
SeamHttpSeamCustomerV1Settings,
|
|
622
622
|
} from './seam/customer/v1/settings/index.js'
|
|
623
|
+
import {
|
|
624
|
+
type SeamCustomerV1SpacesCreateOptions,
|
|
625
|
+
type SeamCustomerV1SpacesCreateParameters,
|
|
626
|
+
type SeamCustomerV1SpacesCreateRequest,
|
|
627
|
+
SeamHttpSeamCustomerV1Spaces,
|
|
628
|
+
} from './seam/customer/v1/spaces/index.js'
|
|
623
629
|
import {
|
|
624
630
|
SeamHttpSeamPartnerV1BuildingBlocksSpaces,
|
|
625
631
|
type SeamPartnerV1BuildingBlocksSpacesAutoMapOptions,
|
|
@@ -3151,6 +3157,19 @@ export class SeamHttpEndpoints {
|
|
|
3151
3157
|
}
|
|
3152
3158
|
}
|
|
3153
3159
|
|
|
3160
|
+
get '/seam/customer/v1/spaces/create'(): (
|
|
3161
|
+
parameters?: SeamCustomerV1SpacesCreateParameters,
|
|
3162
|
+
options?: SeamCustomerV1SpacesCreateOptions,
|
|
3163
|
+
) => SeamCustomerV1SpacesCreateRequest {
|
|
3164
|
+
const { client, defaults } = this
|
|
3165
|
+
return function seamCustomerV1SpacesCreate(
|
|
3166
|
+
...args: Parameters<SeamHttpSeamCustomerV1Spaces['create']>
|
|
3167
|
+
): ReturnType<SeamHttpSeamCustomerV1Spaces['create']> {
|
|
3168
|
+
const seam = SeamHttpSeamCustomerV1Spaces.fromClient(client, defaults)
|
|
3169
|
+
return seam.create(...args)
|
|
3170
|
+
}
|
|
3171
|
+
}
|
|
3172
|
+
|
|
3154
3173
|
get '/seam/partner/v1/building_blocks/spaces/auto_map'(): (
|
|
3155
3174
|
parameters?: SeamPartnerV1BuildingBlocksSpacesAutoMapParameters,
|
|
3156
3175
|
options?: SeamPartnerV1BuildingBlocksSpacesAutoMapOptions,
|
|
@@ -4453,6 +4472,7 @@ export type SeamHttpEndpointMutationPaths =
|
|
|
4453
4472
|
| '/seam/customer/v1/automations/delete'
|
|
4454
4473
|
| '/seam/customer/v1/automations/update'
|
|
4455
4474
|
| '/seam/customer/v1/settings/update'
|
|
4475
|
+
| '/seam/customer/v1/spaces/create'
|
|
4456
4476
|
| '/spaces/add_acs_entrances'
|
|
4457
4477
|
| '/spaces/add_devices'
|
|
4458
4478
|
| '/spaces/create'
|
package/src/lib/version.ts
CHANGED