@seamapi/http 1.40.1 → 1.41.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 +312 -203
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +128 -84
- package/lib/seam/connect/routes/customers/customers.d.ts +47 -0
- package/lib/seam/connect/routes/customers/customers.js +105 -0
- package/lib/seam/connect/routes/customers/customers.js.map +1 -0
- package/lib/seam/connect/routes/customers/index.d.ts +1 -0
- package/lib/seam/connect/routes/{unstable-partner/resources → customers}/index.js +1 -1
- package/lib/seam/connect/routes/customers/index.js.map +1 -0
- package/lib/seam/connect/routes/devices/simulate/simulate.d.ts +1 -1
- package/lib/seam/connect/routes/index.d.ts +1 -0
- package/lib/seam/connect/routes/index.js +1 -0
- package/lib/seam/connect/routes/index.js.map +1 -1
- package/lib/seam/connect/routes/phones/simulate/simulate.d.ts +1 -1
- package/lib/seam/connect/routes/seam/customer/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/{partner/v1/resources → customer}/index.js +1 -1
- package/lib/seam/connect/routes/seam/customer/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/customer/v1/index.d.ts +3 -0
- package/lib/seam/connect/routes/seam/customer/v1/index.js +8 -0
- package/lib/seam/connect/routes/seam/customer/v1/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/customer/v1/portals/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/customer/v1/portals/index.js +6 -0
- package/lib/seam/connect/routes/seam/customer/v1/portals/index.js.map +1 -0
- package/lib/seam/connect/routes/{unstable-partner/resources/resources.d.ts → seam/customer/v1/portals/portals.d.ts} +20 -20
- package/lib/seam/connect/routes/{unstable-partner/resources/resources.js → seam/customer/v1/portals/portals.js} +21 -21
- package/lib/seam/connect/routes/{unstable-partner/resources/resources.js.map → seam/customer/v1/portals/portals.js.map} +1 -1
- package/lib/seam/connect/routes/seam/customer/v1/settings/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/customer/v1/settings/index.js +6 -0
- package/lib/seam/connect/routes/seam/customer/v1/settings/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/{partner/v1/resources/resources.d.ts → customer/v1/settings/settings.d.ts} +15 -15
- package/lib/seam/connect/routes/seam/{partner/v1/resources/resources.js → customer/v1/settings/settings.js} +14 -14
- package/lib/seam/connect/routes/seam/customer/v1/settings/settings.js.map +1 -0
- package/lib/seam/connect/routes/seam/{partner → customer}/v1/v1.d.ts +11 -11
- package/lib/seam/connect/routes/seam/{partner → customer}/v1/v1.js +15 -15
- package/lib/seam/connect/routes/seam/customer/v1/v1.js.map +1 -0
- package/lib/seam/connect/routes/seam/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/index.js +1 -0
- package/lib/seam/connect/routes/seam/index.js.map +1 -1
- package/lib/seam/connect/routes/seam/partner/v1/index.d.ts +0 -2
- package/lib/seam/connect/routes/seam/partner/v1/index.js +0 -2
- package/lib/seam/connect/routes/seam/partner/v1/index.js.map +1 -1
- package/lib/seam/connect/routes/seam-http-endpoints.d.ts +9 -6
- package/lib/seam/connect/routes/seam-http-endpoints.js +35 -20
- package/lib/seam/connect/routes/seam-http-endpoints.js.map +1 -1
- package/lib/seam/connect/routes/seam-http.d.ts +2 -0
- package/lib/seam/connect/routes/seam-http.js +4 -0
- package/lib/seam/connect/routes/seam-http.js.map +1 -1
- package/lib/seam/connect/routes/unstable-partner/index.d.ts +0 -1
- package/lib/seam/connect/routes/unstable-partner/index.js +0 -1
- package/lib/seam/connect/routes/unstable-partner/index.js.map +1 -1
- package/lib/seam/connect/routes/unstable-partner/unstable-partner.d.ts +0 -2
- package/lib/seam/connect/routes/unstable-partner/unstable-partner.js +0 -4
- package/lib/seam/connect/routes/unstable-partner/unstable-partner.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/customers/customers.ts +234 -0
- package/src/lib/seam/connect/routes/{seam/partner/v1/resources → customers}/index.ts +1 -1
- package/src/lib/seam/connect/routes/devices/simulate/simulate.ts +1 -1
- package/src/lib/seam/connect/routes/index.ts +1 -0
- package/src/lib/seam/connect/routes/phones/simulate/simulate.ts +1 -1
- package/src/lib/seam/connect/routes/{unstable-partner/resources → seam/customer}/index.ts +1 -1
- package/src/lib/seam/connect/routes/seam/customer/v1/index.ts +8 -0
- package/src/lib/seam/connect/routes/seam/customer/v1/portals/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/{partner/v1/resources/resources.ts → customer/v1/portals/portals.ts} +31 -32
- package/src/lib/seam/connect/routes/seam/customer/v1/settings/index.ts +6 -0
- package/src/lib/seam/connect/routes/{unstable-partner/resources/resources.ts → seam/customer/v1/settings/settings.ts} +30 -33
- package/src/lib/seam/connect/routes/seam/{partner → customer}/v1/v1.ts +20 -23
- package/src/lib/seam/connect/routes/seam/index.ts +1 -0
- package/src/lib/seam/connect/routes/seam/partner/v1/index.ts +0 -2
- package/src/lib/seam/connect/routes/seam-http-endpoints.ts +88 -51
- package/src/lib/seam/connect/routes/seam-http.ts +5 -0
- package/src/lib/seam/connect/routes/unstable-partner/index.ts +0 -1
- package/src/lib/seam/connect/routes/unstable-partner/unstable-partner.ts +0 -8
- package/src/lib/version.ts +1 -1
- package/lib/seam/connect/routes/seam/partner/v1/resources/index.d.ts +0 -1
- package/lib/seam/connect/routes/seam/partner/v1/resources/index.js.map +0 -1
- package/lib/seam/connect/routes/seam/partner/v1/resources/resources.js.map +0 -1
- package/lib/seam/connect/routes/seam/partner/v1/v1.js.map +0 -1
- package/lib/seam/connect/routes/unstable-partner/resources/index.d.ts +0 -1
- package/lib/seam/connect/routes/unstable-partner/resources/index.js.map +0 -1
|
@@ -33,10 +33,10 @@ import { SeamHttpClientSessions } from 'lib/seam/connect/routes/client-sessions/
|
|
|
33
33
|
import type { SeamHttpRequest } from 'lib/seam/connect/seam-http-request.js'
|
|
34
34
|
import { SeamPaginator } from 'lib/seam/connect/seam-paginator.js'
|
|
35
35
|
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
36
|
+
import { SeamHttpSeamCustomerV1Portals } from './portals/index.js'
|
|
37
|
+
import { SeamHttpSeamCustomerV1Settings } from './settings/index.js'
|
|
38
38
|
|
|
39
|
-
export class
|
|
39
|
+
export class SeamHttpSeamCustomerV1 {
|
|
40
40
|
client: Client
|
|
41
41
|
readonly defaults: Required<SeamHttpRequestOptions>
|
|
42
42
|
readonly ltsVersion = seamApiLtsVersion
|
|
@@ -56,23 +56,23 @@ export class SeamHttpSeamPartnerV1 {
|
|
|
56
56
|
static fromClient(
|
|
57
57
|
client: SeamHttpOptionsWithClient['client'],
|
|
58
58
|
options: Omit<SeamHttpOptionsWithClient, 'client'> = {},
|
|
59
|
-
):
|
|
59
|
+
): SeamHttpSeamCustomerV1 {
|
|
60
60
|
const constructorOptions = { ...options, client }
|
|
61
61
|
if (!isSeamHttpOptionsWithClient(constructorOptions)) {
|
|
62
62
|
throw new SeamHttpInvalidOptionsError('Missing client')
|
|
63
63
|
}
|
|
64
|
-
return new
|
|
64
|
+
return new SeamHttpSeamCustomerV1(constructorOptions)
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
static fromApiKey(
|
|
68
68
|
apiKey: SeamHttpOptionsWithApiKey['apiKey'],
|
|
69
69
|
options: Omit<SeamHttpOptionsWithApiKey, 'apiKey'> = {},
|
|
70
|
-
):
|
|
70
|
+
): SeamHttpSeamCustomerV1 {
|
|
71
71
|
const constructorOptions = { ...options, apiKey }
|
|
72
72
|
if (!isSeamHttpOptionsWithApiKey(constructorOptions)) {
|
|
73
73
|
throw new SeamHttpInvalidOptionsError('Missing apiKey')
|
|
74
74
|
}
|
|
75
|
-
return new
|
|
75
|
+
return new SeamHttpSeamCustomerV1(constructorOptions)
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
static fromClientSessionToken(
|
|
@@ -81,24 +81,24 @@ export class SeamHttpSeamPartnerV1 {
|
|
|
81
81
|
SeamHttpOptionsWithClientSessionToken,
|
|
82
82
|
'clientSessionToken'
|
|
83
83
|
> = {},
|
|
84
|
-
):
|
|
84
|
+
): SeamHttpSeamCustomerV1 {
|
|
85
85
|
const constructorOptions = { ...options, clientSessionToken }
|
|
86
86
|
if (!isSeamHttpOptionsWithClientSessionToken(constructorOptions)) {
|
|
87
87
|
throw new SeamHttpInvalidOptionsError('Missing clientSessionToken')
|
|
88
88
|
}
|
|
89
|
-
return new
|
|
89
|
+
return new SeamHttpSeamCustomerV1(constructorOptions)
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
static async fromPublishableKey(
|
|
93
93
|
publishableKey: string,
|
|
94
94
|
userIdentifierKey: string,
|
|
95
95
|
options: SeamHttpFromPublishableKeyOptions = {},
|
|
96
|
-
): Promise<
|
|
96
|
+
): Promise<SeamHttpSeamCustomerV1> {
|
|
97
97
|
warnOnInsecureuserIdentifierKey(userIdentifierKey)
|
|
98
98
|
const clientOptions = parseOptions({ ...options, publishableKey })
|
|
99
99
|
if (isSeamHttpOptionsWithClient(clientOptions)) {
|
|
100
100
|
throw new SeamHttpInvalidOptionsError(
|
|
101
|
-
'The client option cannot be used with
|
|
101
|
+
'The client option cannot be used with SeamHttpSeamCustomerV1.fromPublishableKey',
|
|
102
102
|
)
|
|
103
103
|
}
|
|
104
104
|
const client = createClient(clientOptions)
|
|
@@ -106,7 +106,7 @@ export class SeamHttpSeamPartnerV1 {
|
|
|
106
106
|
const { token } = await clientSessions.getOrCreate({
|
|
107
107
|
user_identifier_key: userIdentifierKey,
|
|
108
108
|
})
|
|
109
|
-
return
|
|
109
|
+
return SeamHttpSeamCustomerV1.fromClientSessionToken(token, options)
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
static fromConsoleSessionToken(
|
|
@@ -116,14 +116,14 @@ export class SeamHttpSeamPartnerV1 {
|
|
|
116
116
|
SeamHttpOptionsWithConsoleSessionToken,
|
|
117
117
|
'consoleSessionToken' | 'workspaceId'
|
|
118
118
|
> = {},
|
|
119
|
-
):
|
|
119
|
+
): SeamHttpSeamCustomerV1 {
|
|
120
120
|
const constructorOptions = { ...options, consoleSessionToken, workspaceId }
|
|
121
121
|
if (!isSeamHttpOptionsWithConsoleSessionToken(constructorOptions)) {
|
|
122
122
|
throw new SeamHttpInvalidOptionsError(
|
|
123
123
|
'Missing consoleSessionToken or workspaceId',
|
|
124
124
|
)
|
|
125
125
|
}
|
|
126
|
-
return new
|
|
126
|
+
return new SeamHttpSeamCustomerV1(constructorOptions)
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
static fromPersonalAccessToken(
|
|
@@ -133,14 +133,14 @@ export class SeamHttpSeamPartnerV1 {
|
|
|
133
133
|
SeamHttpOptionsWithPersonalAccessToken,
|
|
134
134
|
'personalAccessToken' | 'workspaceId'
|
|
135
135
|
> = {},
|
|
136
|
-
):
|
|
136
|
+
): SeamHttpSeamCustomerV1 {
|
|
137
137
|
const constructorOptions = { ...options, personalAccessToken, workspaceId }
|
|
138
138
|
if (!isSeamHttpOptionsWithPersonalAccessToken(constructorOptions)) {
|
|
139
139
|
throw new SeamHttpInvalidOptionsError(
|
|
140
140
|
'Missing personalAccessToken or workspaceId',
|
|
141
141
|
)
|
|
142
142
|
}
|
|
143
|
-
return new
|
|
143
|
+
return new SeamHttpSeamCustomerV1(constructorOptions)
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(
|
|
@@ -168,14 +168,11 @@ export class SeamHttpSeamPartnerV1 {
|
|
|
168
168
|
await clientSessions.get()
|
|
169
169
|
}
|
|
170
170
|
|
|
171
|
-
get
|
|
172
|
-
return
|
|
173
|
-
this.client,
|
|
174
|
-
this.defaults,
|
|
175
|
-
)
|
|
171
|
+
get portals(): SeamHttpSeamCustomerV1Portals {
|
|
172
|
+
return SeamHttpSeamCustomerV1Portals.fromClient(this.client, this.defaults)
|
|
176
173
|
}
|
|
177
174
|
|
|
178
|
-
get
|
|
179
|
-
return
|
|
175
|
+
get settings(): SeamHttpSeamCustomerV1Settings {
|
|
176
|
+
return SeamHttpSeamCustomerV1Settings.fromClient(this.client, this.defaults)
|
|
180
177
|
}
|
|
181
178
|
}
|
|
@@ -380,6 +380,15 @@ import {
|
|
|
380
380
|
type ConnectedAccountsUpdateRequest,
|
|
381
381
|
SeamHttpConnectedAccounts,
|
|
382
382
|
} from './connected-accounts/index.js'
|
|
383
|
+
import {
|
|
384
|
+
type CustomersCreatePortalOptions,
|
|
385
|
+
type CustomersCreatePortalParameters,
|
|
386
|
+
type CustomersCreatePortalRequest,
|
|
387
|
+
type CustomersPushDataOptions,
|
|
388
|
+
type CustomersPushDataParameters,
|
|
389
|
+
type CustomersPushDataRequest,
|
|
390
|
+
SeamHttpCustomers,
|
|
391
|
+
} from './customers/index.js'
|
|
383
392
|
import {
|
|
384
393
|
type DevicesDeleteOptions,
|
|
385
394
|
type DevicesDeleteParameters,
|
|
@@ -512,18 +521,24 @@ import {
|
|
|
512
521
|
type PhonesSimulateCreateSandboxPhoneRequest,
|
|
513
522
|
SeamHttpPhonesSimulate,
|
|
514
523
|
} from './phones/simulate/index.js'
|
|
524
|
+
import {
|
|
525
|
+
type SeamCustomerV1PortalsGetOptions,
|
|
526
|
+
type SeamCustomerV1PortalsGetParameters,
|
|
527
|
+
type SeamCustomerV1PortalsGetRequest,
|
|
528
|
+
SeamHttpSeamCustomerV1Portals,
|
|
529
|
+
} from './seam/customer/v1/portals/index.js'
|
|
530
|
+
import {
|
|
531
|
+
type SeamCustomerV1SettingsUpdateOptions,
|
|
532
|
+
type SeamCustomerV1SettingsUpdateParameters,
|
|
533
|
+
type SeamCustomerV1SettingsUpdateRequest,
|
|
534
|
+
SeamHttpSeamCustomerV1Settings,
|
|
535
|
+
} from './seam/customer/v1/settings/index.js'
|
|
515
536
|
import {
|
|
516
537
|
SeamHttpSeamPartnerV1BuildingBlocksSpaces,
|
|
517
538
|
type SeamPartnerV1BuildingBlocksSpacesAutoMapOptions,
|
|
518
539
|
type SeamPartnerV1BuildingBlocksSpacesAutoMapParameters,
|
|
519
540
|
type SeamPartnerV1BuildingBlocksSpacesAutoMapRequest,
|
|
520
541
|
} from './seam/partner/v1/building-blocks/spaces/index.js'
|
|
521
|
-
import {
|
|
522
|
-
SeamHttpSeamPartnerV1Resources,
|
|
523
|
-
type SeamPartnerV1ResourcesListOptions,
|
|
524
|
-
type SeamPartnerV1ResourcesListParameters,
|
|
525
|
-
type SeamPartnerV1ResourcesListRequest,
|
|
526
|
-
} from './seam/partner/v1/resources/index.js'
|
|
527
542
|
import {
|
|
528
543
|
SeamHttpSpaces,
|
|
529
544
|
type SpacesAddAcsEntrancesOptions,
|
|
@@ -713,12 +728,6 @@ import {
|
|
|
713
728
|
type UnstablePartnerBuildingBlocksOrganizeSpacesParameters,
|
|
714
729
|
type UnstablePartnerBuildingBlocksOrganizeSpacesRequest,
|
|
715
730
|
} from './unstable-partner/building-blocks/index.js'
|
|
716
|
-
import {
|
|
717
|
-
SeamHttpUnstablePartnerResources,
|
|
718
|
-
type UnstablePartnerResourcesPushOptions,
|
|
719
|
-
type UnstablePartnerResourcesPushParameters,
|
|
720
|
-
type UnstablePartnerResourcesPushRequest,
|
|
721
|
-
} from './unstable-partner/resources/index.js'
|
|
722
731
|
import {
|
|
723
732
|
SeamHttpUserIdentitiesEnrollmentAutomations,
|
|
724
733
|
type UserIdentitiesEnrollmentAutomationsDeleteOptions,
|
|
@@ -2240,6 +2249,32 @@ export class SeamHttpEndpoints {
|
|
|
2240
2249
|
}
|
|
2241
2250
|
}
|
|
2242
2251
|
|
|
2252
|
+
get ['/customers/create_portal'](): (
|
|
2253
|
+
parameters?: CustomersCreatePortalParameters,
|
|
2254
|
+
options?: CustomersCreatePortalOptions,
|
|
2255
|
+
) => CustomersCreatePortalRequest {
|
|
2256
|
+
const { client, defaults } = this
|
|
2257
|
+
return function customersCreatePortal(
|
|
2258
|
+
...args: Parameters<SeamHttpCustomers['createPortal']>
|
|
2259
|
+
): ReturnType<SeamHttpCustomers['createPortal']> {
|
|
2260
|
+
const seam = SeamHttpCustomers.fromClient(client, defaults)
|
|
2261
|
+
return seam.createPortal(...args)
|
|
2262
|
+
}
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
get ['/customers/push_data'](): (
|
|
2266
|
+
parameters?: CustomersPushDataParameters,
|
|
2267
|
+
options?: CustomersPushDataOptions,
|
|
2268
|
+
) => CustomersPushDataRequest {
|
|
2269
|
+
const { client, defaults } = this
|
|
2270
|
+
return function customersPushData(
|
|
2271
|
+
...args: Parameters<SeamHttpCustomers['pushData']>
|
|
2272
|
+
): ReturnType<SeamHttpCustomers['pushData']> {
|
|
2273
|
+
const seam = SeamHttpCustomers.fromClient(client, defaults)
|
|
2274
|
+
return seam.pushData(...args)
|
|
2275
|
+
}
|
|
2276
|
+
}
|
|
2277
|
+
|
|
2243
2278
|
get ['/devices/delete'](): (
|
|
2244
2279
|
parameters?: DevicesDeleteParameters,
|
|
2245
2280
|
options?: DevicesDeleteOptions,
|
|
@@ -2696,6 +2731,42 @@ export class SeamHttpEndpoints {
|
|
|
2696
2731
|
}
|
|
2697
2732
|
}
|
|
2698
2733
|
|
|
2734
|
+
get ['/seam/customer/v1/portals/get'](): (
|
|
2735
|
+
parameters?: SeamCustomerV1PortalsGetParameters,
|
|
2736
|
+
options?: SeamCustomerV1PortalsGetOptions,
|
|
2737
|
+
) => SeamCustomerV1PortalsGetRequest {
|
|
2738
|
+
const { client, defaults } = this
|
|
2739
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2740
|
+
throw new Error(
|
|
2741
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2742
|
+
)
|
|
2743
|
+
}
|
|
2744
|
+
return function seamCustomerV1PortalsGet(
|
|
2745
|
+
...args: Parameters<SeamHttpSeamCustomerV1Portals['get']>
|
|
2746
|
+
): ReturnType<SeamHttpSeamCustomerV1Portals['get']> {
|
|
2747
|
+
const seam = SeamHttpSeamCustomerV1Portals.fromClient(client, defaults)
|
|
2748
|
+
return seam.get(...args)
|
|
2749
|
+
}
|
|
2750
|
+
}
|
|
2751
|
+
|
|
2752
|
+
get ['/seam/customer/v1/settings/update'](): (
|
|
2753
|
+
parameters?: SeamCustomerV1SettingsUpdateParameters,
|
|
2754
|
+
options?: SeamCustomerV1SettingsUpdateOptions,
|
|
2755
|
+
) => SeamCustomerV1SettingsUpdateRequest {
|
|
2756
|
+
const { client, defaults } = this
|
|
2757
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2758
|
+
throw new Error(
|
|
2759
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2760
|
+
)
|
|
2761
|
+
}
|
|
2762
|
+
return function seamCustomerV1SettingsUpdate(
|
|
2763
|
+
...args: Parameters<SeamHttpSeamCustomerV1Settings['update']>
|
|
2764
|
+
): ReturnType<SeamHttpSeamCustomerV1Settings['update']> {
|
|
2765
|
+
const seam = SeamHttpSeamCustomerV1Settings.fromClient(client, defaults)
|
|
2766
|
+
return seam.update(...args)
|
|
2767
|
+
}
|
|
2768
|
+
}
|
|
2769
|
+
|
|
2699
2770
|
get ['/seam/partner/v1/building_blocks/spaces/auto_map'](): (
|
|
2700
2771
|
parameters?: SeamPartnerV1BuildingBlocksSpacesAutoMapParameters,
|
|
2701
2772
|
options?: SeamPartnerV1BuildingBlocksSpacesAutoMapOptions,
|
|
@@ -2717,24 +2788,6 @@ export class SeamHttpEndpoints {
|
|
|
2717
2788
|
}
|
|
2718
2789
|
}
|
|
2719
2790
|
|
|
2720
|
-
get ['/seam/partner/v1/resources/list'](): (
|
|
2721
|
-
parameters?: SeamPartnerV1ResourcesListParameters,
|
|
2722
|
-
options?: SeamPartnerV1ResourcesListOptions,
|
|
2723
|
-
) => SeamPartnerV1ResourcesListRequest {
|
|
2724
|
-
const { client, defaults } = this
|
|
2725
|
-
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
2726
|
-
throw new Error(
|
|
2727
|
-
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
2728
|
-
)
|
|
2729
|
-
}
|
|
2730
|
-
return function seamPartnerV1ResourcesList(
|
|
2731
|
-
...args: Parameters<SeamHttpSeamPartnerV1Resources['list']>
|
|
2732
|
-
): ReturnType<SeamHttpSeamPartnerV1Resources['list']> {
|
|
2733
|
-
const seam = SeamHttpSeamPartnerV1Resources.fromClient(client, defaults)
|
|
2734
|
-
return seam.list(...args)
|
|
2735
|
-
}
|
|
2736
|
-
}
|
|
2737
|
-
|
|
2738
2791
|
get ['/spaces/add_acs_entrances'](): (
|
|
2739
2792
|
parameters?: SpacesAddAcsEntrancesParameters,
|
|
2740
2793
|
options?: SpacesAddAcsEntrancesOptions,
|
|
@@ -3562,24 +3615,6 @@ export class SeamHttpEndpoints {
|
|
|
3562
3615
|
}
|
|
3563
3616
|
}
|
|
3564
3617
|
|
|
3565
|
-
get ['/unstable_partner/resources/push'](): (
|
|
3566
|
-
parameters?: UnstablePartnerResourcesPushParameters,
|
|
3567
|
-
options?: UnstablePartnerResourcesPushOptions,
|
|
3568
|
-
) => UnstablePartnerResourcesPushRequest {
|
|
3569
|
-
const { client, defaults } = this
|
|
3570
|
-
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3571
|
-
throw new Error(
|
|
3572
|
-
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3573
|
-
)
|
|
3574
|
-
}
|
|
3575
|
-
return function unstablePartnerResourcesPush(
|
|
3576
|
-
...args: Parameters<SeamHttpUnstablePartnerResources['push']>
|
|
3577
|
-
): ReturnType<SeamHttpUnstablePartnerResources['push']> {
|
|
3578
|
-
const seam = SeamHttpUnstablePartnerResources.fromClient(client, defaults)
|
|
3579
|
-
return seam.push(...args)
|
|
3580
|
-
}
|
|
3581
|
-
}
|
|
3582
|
-
|
|
3583
3618
|
get ['/user_identities/add_acs_user'](): (
|
|
3584
3619
|
parameters?: UserIdentitiesAddAcsUserParameters,
|
|
3585
3620
|
options?: UserIdentitiesAddAcsUserOptions,
|
|
@@ -4007,9 +4042,8 @@ export type SeamHttpEndpointQueryPaths =
|
|
|
4007
4042
|
| '/noise_sensors/noise_thresholds/list'
|
|
4008
4043
|
| '/phones/get'
|
|
4009
4044
|
| '/phones/list'
|
|
4010
|
-
| '/
|
|
4045
|
+
| '/seam/customer/v1/portals/get'
|
|
4011
4046
|
| '/seam/partner/v1/building_blocks/spaces/auto_map'
|
|
4012
|
-
| '/seam/partner/v1/resources/list'
|
|
4013
4047
|
| '/spaces/get'
|
|
4014
4048
|
| '/spaces/list'
|
|
4015
4049
|
| '/thermostats/get'
|
|
@@ -4093,6 +4127,8 @@ export type SeamHttpEndpointMutationPaths =
|
|
|
4093
4127
|
| '/connected_accounts/delete'
|
|
4094
4128
|
| '/connected_accounts/sync'
|
|
4095
4129
|
| '/connected_accounts/update'
|
|
4130
|
+
| '/customers/create_portal'
|
|
4131
|
+
| '/customers/push_data'
|
|
4096
4132
|
| '/devices/delete'
|
|
4097
4133
|
| '/devices/update'
|
|
4098
4134
|
| '/devices/simulate/connect'
|
|
@@ -4108,6 +4144,8 @@ export type SeamHttpEndpointMutationPaths =
|
|
|
4108
4144
|
| '/noise_sensors/noise_thresholds/update'
|
|
4109
4145
|
| '/noise_sensors/simulate/trigger_noise_threshold'
|
|
4110
4146
|
| '/phones/deactivate'
|
|
4147
|
+
| '/phones/simulate/create_sandbox_phone'
|
|
4148
|
+
| '/seam/customer/v1/settings/update'
|
|
4111
4149
|
| '/spaces/add_acs_entrances'
|
|
4112
4150
|
| '/spaces/add_devices'
|
|
4113
4151
|
| '/spaces/create'
|
|
@@ -4147,7 +4185,6 @@ export type SeamHttpEndpointMutationPaths =
|
|
|
4147
4185
|
| '/unstable_partner/building_blocks/connect_accounts'
|
|
4148
4186
|
| '/unstable_partner/building_blocks/manage_devices'
|
|
4149
4187
|
| '/unstable_partner/building_blocks/organize_spaces'
|
|
4150
|
-
| '/unstable_partner/resources/push'
|
|
4151
4188
|
| '/user_identities/add_acs_user'
|
|
4152
4189
|
| '/user_identities/create'
|
|
4153
4190
|
| '/user_identities/delete'
|
|
@@ -41,6 +41,7 @@ import { SeamHttpBridges } from './bridges/index.js'
|
|
|
41
41
|
import { SeamHttpClientSessions } from './client-sessions/index.js'
|
|
42
42
|
import { SeamHttpConnectWebviews } from './connect-webviews/index.js'
|
|
43
43
|
import { SeamHttpConnectedAccounts } from './connected-accounts/index.js'
|
|
44
|
+
import { SeamHttpCustomers } from './customers/index.js'
|
|
44
45
|
import { SeamHttpDevices } from './devices/index.js'
|
|
45
46
|
import { SeamHttpEvents } from './events/index.js'
|
|
46
47
|
import { SeamHttpLocks } from './locks/index.js'
|
|
@@ -220,6 +221,10 @@ export class SeamHttp {
|
|
|
220
221
|
return SeamHttpConnectedAccounts.fromClient(this.client, this.defaults)
|
|
221
222
|
}
|
|
222
223
|
|
|
224
|
+
get customers(): SeamHttpCustomers {
|
|
225
|
+
return SeamHttpCustomers.fromClient(this.client, this.defaults)
|
|
226
|
+
}
|
|
227
|
+
|
|
223
228
|
get devices(): SeamHttpDevices {
|
|
224
229
|
return SeamHttpDevices.fromClient(this.client, this.defaults)
|
|
225
230
|
}
|
|
@@ -34,7 +34,6 @@ import type { SeamHttpRequest } from 'lib/seam/connect/seam-http-request.js'
|
|
|
34
34
|
import { SeamPaginator } from 'lib/seam/connect/seam-paginator.js'
|
|
35
35
|
|
|
36
36
|
import { SeamHttpUnstablePartnerBuildingBlocks } from './building-blocks/index.js'
|
|
37
|
-
import { SeamHttpUnstablePartnerResources } from './resources/index.js'
|
|
38
37
|
|
|
39
38
|
export class SeamHttpUnstablePartner {
|
|
40
39
|
client: Client
|
|
@@ -174,11 +173,4 @@ export class SeamHttpUnstablePartner {
|
|
|
174
173
|
this.defaults,
|
|
175
174
|
)
|
|
176
175
|
}
|
|
177
|
-
|
|
178
|
-
get resources(): SeamHttpUnstablePartnerResources {
|
|
179
|
-
return SeamHttpUnstablePartnerResources.fromClient(
|
|
180
|
-
this.client,
|
|
181
|
-
this.defaults,
|
|
182
|
-
)
|
|
183
|
-
}
|
|
184
176
|
}
|
package/src/lib/version.ts
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './resources.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../src/lib/seam/connect/routes/seam/partner/v1/resources/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,gBAAgB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"resources.js","sourceRoot":"","sources":["../../../../../../../../src/lib/seam/connect/routes/seam/partner/v1/resources/resources.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"v1.js","sourceRoot":"","sources":["../../../../../../../src/lib/seam/connect/routes/seam/partner/v1/v1.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './resources.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/routes/unstable-partner/resources/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,gBAAgB,CAAA"}
|