@seamapi/http 1.100.0 → 1.102.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 +323 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +81 -3
- package/dist/index.cjs +329 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/routes/seam/customer/v1/connector-customers/connector-customers.d.ts +34 -0
- package/lib/seam/connect/routes/seam/customer/v1/connector-customers/connector-customers.js +104 -0
- package/lib/seam/connect/routes/seam/customer/v1/connector-customers/connector-customers.js.map +1 -0
- package/lib/seam/connect/routes/seam/customer/v1/connector-customers/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/customer/v1/connector-customers/index.js +6 -0
- package/lib/seam/connect/routes/seam/customer/v1/connector-customers/index.js.map +1 -0
- 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/v1.d.ts +2 -0
- package/lib/seam/connect/routes/seam/customer/v1/v1.js +4 -0
- package/lib/seam/connect/routes/seam/customer/v1/v1.js.map +1 -1
- 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/v1/customers/customers.d.ts +34 -0
- package/lib/seam/connect/routes/seam/v1/customers/customers.js +98 -0
- package/lib/seam/connect/routes/seam/v1/customers/customers.js.map +1 -0
- package/lib/seam/connect/routes/seam/v1/customers/index.d.ts +1 -0
- package/lib/seam/connect/routes/seam/v1/customers/index.js +6 -0
- package/lib/seam/connect/routes/seam/v1/customers/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/v1/index.d.ts +2 -0
- package/lib/seam/connect/routes/seam/v1/index.js +7 -0
- package/lib/seam/connect/routes/seam/v1/index.js.map +1 -0
- package/lib/seam/connect/routes/seam/v1/v1.d.ts +21 -0
- package/lib/seam/connect/routes/seam/v1/v1.js +92 -0
- package/lib/seam/connect/routes/seam/v1/v1.js.map +1 -0
- package/lib/seam/connect/routes/seam-http-endpoints.d.ts +6 -2
- package/lib/seam/connect/routes/seam-http-endpoints.js +19 -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/connector-customers/connector-customers.ts +214 -0
- package/src/lib/seam/connect/routes/seam/customer/v1/connector-customers/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/customer/v1/index.ts +1 -0
- package/src/lib/seam/connect/routes/seam/customer/v1/v1.ts +8 -0
- package/src/lib/seam/connect/routes/seam/index.ts +1 -0
- package/src/lib/seam/connect/routes/seam/v1/customers/customers.ts +197 -0
- package/src/lib/seam/connect/routes/seam/v1/customers/index.ts +6 -0
- package/src/lib/seam/connect/routes/seam/v1/index.ts +7 -0
- package/src/lib/seam/connect/routes/seam/v1/v1.ts +168 -0
- package/src/lib/seam/connect/routes/seam-http-endpoints.ts +48 -0
- package/src/lib/version.ts +1 -1
|
@@ -36,6 +36,7 @@ import { SeamPaginator } from 'lib/seam/connect/seam-paginator.js'
|
|
|
36
36
|
import { SeamHttpSeamCustomerV1AccessGrants } from './access-grants/index.js'
|
|
37
37
|
import { SeamHttpSeamCustomerV1AutomationRuns } from './automation-runs/index.js'
|
|
38
38
|
import { SeamHttpSeamCustomerV1Automations } from './automations/index.js'
|
|
39
|
+
import { SeamHttpSeamCustomerV1ConnectorCustomers } from './connector-customers/index.js'
|
|
39
40
|
import { SeamHttpSeamCustomerV1Connectors } from './connectors/index.js'
|
|
40
41
|
import { SeamHttpSeamCustomerV1Customers } from './customers/index.js'
|
|
41
42
|
import { SeamHttpSeamCustomerV1Events } from './events/index.js'
|
|
@@ -198,6 +199,13 @@ export class SeamHttpSeamCustomerV1 {
|
|
|
198
199
|
)
|
|
199
200
|
}
|
|
200
201
|
|
|
202
|
+
get connectorCustomers(): SeamHttpSeamCustomerV1ConnectorCustomers {
|
|
203
|
+
return SeamHttpSeamCustomerV1ConnectorCustomers.fromClient(
|
|
204
|
+
this.client,
|
|
205
|
+
this.defaults,
|
|
206
|
+
)
|
|
207
|
+
}
|
|
208
|
+
|
|
201
209
|
get connectors(): SeamHttpSeamCustomerV1Connectors {
|
|
202
210
|
return SeamHttpSeamCustomerV1Connectors.fromClient(
|
|
203
211
|
this.client,
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Automatically generated by codegen/smith.ts.
|
|
3
|
+
* Do not edit this file or add other files to this directory.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import type { RouteRequestBody, RouteResponse } from '@seamapi/types/connect'
|
|
7
|
+
|
|
8
|
+
import { seamApiLtsVersion } from 'lib/lts-version.js'
|
|
9
|
+
import {
|
|
10
|
+
getAuthHeadersForClientSessionToken,
|
|
11
|
+
warnOnInsecureuserIdentifierKey,
|
|
12
|
+
} from 'lib/seam/connect/auth.js'
|
|
13
|
+
import { type Client, createClient } from 'lib/seam/connect/client.js'
|
|
14
|
+
import {
|
|
15
|
+
isSeamHttpOptionsWithApiKey,
|
|
16
|
+
isSeamHttpOptionsWithClient,
|
|
17
|
+
isSeamHttpOptionsWithClientSessionToken,
|
|
18
|
+
isSeamHttpOptionsWithConsoleSessionToken,
|
|
19
|
+
isSeamHttpOptionsWithPersonalAccessToken,
|
|
20
|
+
type SeamHttpFromPublishableKeyOptions,
|
|
21
|
+
SeamHttpInvalidOptionsError,
|
|
22
|
+
type SeamHttpOptions,
|
|
23
|
+
type SeamHttpOptionsWithApiKey,
|
|
24
|
+
type SeamHttpOptionsWithClient,
|
|
25
|
+
type SeamHttpOptionsWithClientSessionToken,
|
|
26
|
+
type SeamHttpOptionsWithConsoleSessionToken,
|
|
27
|
+
type SeamHttpOptionsWithPersonalAccessToken,
|
|
28
|
+
type SeamHttpRequestOptions,
|
|
29
|
+
} from 'lib/seam/connect/options.js'
|
|
30
|
+
import {
|
|
31
|
+
limitToSeamHttpRequestOptions,
|
|
32
|
+
parseOptions,
|
|
33
|
+
} from 'lib/seam/connect/parse-options.js'
|
|
34
|
+
import { SeamHttpClientSessions } from 'lib/seam/connect/routes/client-sessions/index.js'
|
|
35
|
+
import { SeamHttpRequest } from 'lib/seam/connect/seam-http-request.js'
|
|
36
|
+
import { SeamPaginator } from 'lib/seam/connect/seam-paginator.js'
|
|
37
|
+
import type { SetNonNullable } from 'lib/types.js'
|
|
38
|
+
|
|
39
|
+
export class SeamHttpSeamV1Customers {
|
|
40
|
+
client: Client
|
|
41
|
+
readonly defaults: Required<SeamHttpRequestOptions>
|
|
42
|
+
readonly ltsVersion = seamApiLtsVersion
|
|
43
|
+
static ltsVersion = seamApiLtsVersion
|
|
44
|
+
|
|
45
|
+
constructor(apiKeyOrOptions: string | SeamHttpOptions = {}) {
|
|
46
|
+
const options = parseOptions(apiKeyOrOptions)
|
|
47
|
+
this.client = 'client' in options ? options.client : createClient(options)
|
|
48
|
+
this.defaults = limitToSeamHttpRequestOptions(options)
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
static fromClient(
|
|
52
|
+
client: SeamHttpOptionsWithClient['client'],
|
|
53
|
+
options: Omit<SeamHttpOptionsWithClient, 'client'> = {},
|
|
54
|
+
): SeamHttpSeamV1Customers {
|
|
55
|
+
const constructorOptions = { ...options, client }
|
|
56
|
+
if (!isSeamHttpOptionsWithClient(constructorOptions)) {
|
|
57
|
+
throw new SeamHttpInvalidOptionsError('Missing client')
|
|
58
|
+
}
|
|
59
|
+
return new SeamHttpSeamV1Customers(constructorOptions)
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
static fromApiKey(
|
|
63
|
+
apiKey: SeamHttpOptionsWithApiKey['apiKey'],
|
|
64
|
+
options: Omit<SeamHttpOptionsWithApiKey, 'apiKey'> = {},
|
|
65
|
+
): SeamHttpSeamV1Customers {
|
|
66
|
+
const constructorOptions = { ...options, apiKey }
|
|
67
|
+
if (!isSeamHttpOptionsWithApiKey(constructorOptions)) {
|
|
68
|
+
throw new SeamHttpInvalidOptionsError('Missing apiKey')
|
|
69
|
+
}
|
|
70
|
+
return new SeamHttpSeamV1Customers(constructorOptions)
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
static fromClientSessionToken(
|
|
74
|
+
clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'],
|
|
75
|
+
options: Omit<
|
|
76
|
+
SeamHttpOptionsWithClientSessionToken,
|
|
77
|
+
'clientSessionToken'
|
|
78
|
+
> = {},
|
|
79
|
+
): SeamHttpSeamV1Customers {
|
|
80
|
+
const constructorOptions = { ...options, clientSessionToken }
|
|
81
|
+
if (!isSeamHttpOptionsWithClientSessionToken(constructorOptions)) {
|
|
82
|
+
throw new SeamHttpInvalidOptionsError('Missing clientSessionToken')
|
|
83
|
+
}
|
|
84
|
+
return new SeamHttpSeamV1Customers(constructorOptions)
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
static async fromPublishableKey(
|
|
88
|
+
publishableKey: string,
|
|
89
|
+
userIdentifierKey: string,
|
|
90
|
+
options: SeamHttpFromPublishableKeyOptions = {},
|
|
91
|
+
): Promise<SeamHttpSeamV1Customers> {
|
|
92
|
+
warnOnInsecureuserIdentifierKey(userIdentifierKey)
|
|
93
|
+
const clientOptions = parseOptions({ ...options, publishableKey })
|
|
94
|
+
if (isSeamHttpOptionsWithClient(clientOptions)) {
|
|
95
|
+
throw new SeamHttpInvalidOptionsError(
|
|
96
|
+
'The client option cannot be used with SeamHttpSeamV1Customers.fromPublishableKey',
|
|
97
|
+
)
|
|
98
|
+
}
|
|
99
|
+
const client = createClient(clientOptions)
|
|
100
|
+
const clientSessions = SeamHttpClientSessions.fromClient(client)
|
|
101
|
+
const { token } = await clientSessions.getOrCreate({
|
|
102
|
+
user_identifier_key: userIdentifierKey,
|
|
103
|
+
})
|
|
104
|
+
return SeamHttpSeamV1Customers.fromClientSessionToken(token, options)
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
static fromConsoleSessionToken(
|
|
108
|
+
consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'],
|
|
109
|
+
workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'],
|
|
110
|
+
options: Omit<
|
|
111
|
+
SeamHttpOptionsWithConsoleSessionToken,
|
|
112
|
+
'consoleSessionToken' | 'workspaceId'
|
|
113
|
+
> = {},
|
|
114
|
+
): SeamHttpSeamV1Customers {
|
|
115
|
+
const constructorOptions = { ...options, consoleSessionToken, workspaceId }
|
|
116
|
+
if (!isSeamHttpOptionsWithConsoleSessionToken(constructorOptions)) {
|
|
117
|
+
throw new SeamHttpInvalidOptionsError(
|
|
118
|
+
'Missing consoleSessionToken or workspaceId',
|
|
119
|
+
)
|
|
120
|
+
}
|
|
121
|
+
return new SeamHttpSeamV1Customers(constructorOptions)
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
static fromPersonalAccessToken(
|
|
125
|
+
personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'],
|
|
126
|
+
workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'],
|
|
127
|
+
options: Omit<
|
|
128
|
+
SeamHttpOptionsWithPersonalAccessToken,
|
|
129
|
+
'personalAccessToken' | 'workspaceId'
|
|
130
|
+
> = {},
|
|
131
|
+
): SeamHttpSeamV1Customers {
|
|
132
|
+
const constructorOptions = { ...options, personalAccessToken, workspaceId }
|
|
133
|
+
if (!isSeamHttpOptionsWithPersonalAccessToken(constructorOptions)) {
|
|
134
|
+
throw new SeamHttpInvalidOptionsError(
|
|
135
|
+
'Missing personalAccessToken or workspaceId',
|
|
136
|
+
)
|
|
137
|
+
}
|
|
138
|
+
return new SeamHttpSeamV1Customers(constructorOptions)
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(
|
|
142
|
+
request: SeamHttpRequest<TResponse, TResponseKey>,
|
|
143
|
+
): SeamPaginator<TResponse, TResponseKey> {
|
|
144
|
+
return new SeamPaginator<TResponse, TResponseKey>(this, request)
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
async updateClientSessionToken(
|
|
148
|
+
clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'],
|
|
149
|
+
): Promise<void> {
|
|
150
|
+
const { headers } = this.client.defaults
|
|
151
|
+
const authHeaders = getAuthHeadersForClientSessionToken({
|
|
152
|
+
clientSessionToken,
|
|
153
|
+
})
|
|
154
|
+
for (const key of Object.keys(authHeaders)) {
|
|
155
|
+
if (headers[key] == null) {
|
|
156
|
+
throw new Error(
|
|
157
|
+
'Cannot update a clientSessionToken on a client created without a clientSessionToken',
|
|
158
|
+
)
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
this.client.defaults.headers = { ...headers, ...authHeaders }
|
|
162
|
+
const clientSessions = SeamHttpClientSessions.fromClient(this.client)
|
|
163
|
+
await clientSessions.get()
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
pushData(
|
|
167
|
+
parameters?: SeamV1CustomersPushDataParameters,
|
|
168
|
+
options: SeamV1CustomersPushDataOptions = {},
|
|
169
|
+
): SeamV1CustomersPushDataRequest {
|
|
170
|
+
return new SeamHttpRequest(this, {
|
|
171
|
+
pathname: '/seam/v1/customers/push_data',
|
|
172
|
+
method: 'POST',
|
|
173
|
+
body: parameters,
|
|
174
|
+
responseKey: undefined,
|
|
175
|
+
options,
|
|
176
|
+
})
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
export type SeamV1CustomersPushDataParameters =
|
|
181
|
+
RouteRequestBody<'/seam/v1/customers/push_data'>
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* @deprecated Use SeamV1CustomersPushDataParameters instead.
|
|
185
|
+
*/
|
|
186
|
+
export type SeamV1CustomersPushDataBody = SeamV1CustomersPushDataParameters
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* @deprecated Use SeamV1CustomersPushDataRequest instead.
|
|
190
|
+
*/
|
|
191
|
+
export type SeamV1CustomersPushDataResponse = SetNonNullable<
|
|
192
|
+
Required<RouteResponse<'/seam/v1/customers/push_data'>>
|
|
193
|
+
>
|
|
194
|
+
|
|
195
|
+
export type SeamV1CustomersPushDataRequest = SeamHttpRequest<void, undefined>
|
|
196
|
+
|
|
197
|
+
export interface SeamV1CustomersPushDataOptions {}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Automatically generated by codegen/smith.ts.
|
|
3
|
+
* Do not edit this file or add other files to this directory.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { seamApiLtsVersion } from 'lib/lts-version.js'
|
|
7
|
+
import {
|
|
8
|
+
getAuthHeadersForClientSessionToken,
|
|
9
|
+
warnOnInsecureuserIdentifierKey,
|
|
10
|
+
} from 'lib/seam/connect/auth.js'
|
|
11
|
+
import { type Client, createClient } from 'lib/seam/connect/client.js'
|
|
12
|
+
import {
|
|
13
|
+
isSeamHttpOptionsWithApiKey,
|
|
14
|
+
isSeamHttpOptionsWithClient,
|
|
15
|
+
isSeamHttpOptionsWithClientSessionToken,
|
|
16
|
+
isSeamHttpOptionsWithConsoleSessionToken,
|
|
17
|
+
isSeamHttpOptionsWithPersonalAccessToken,
|
|
18
|
+
type SeamHttpFromPublishableKeyOptions,
|
|
19
|
+
SeamHttpInvalidOptionsError,
|
|
20
|
+
type SeamHttpOptions,
|
|
21
|
+
type SeamHttpOptionsWithApiKey,
|
|
22
|
+
type SeamHttpOptionsWithClient,
|
|
23
|
+
type SeamHttpOptionsWithClientSessionToken,
|
|
24
|
+
type SeamHttpOptionsWithConsoleSessionToken,
|
|
25
|
+
type SeamHttpOptionsWithPersonalAccessToken,
|
|
26
|
+
type SeamHttpRequestOptions,
|
|
27
|
+
} from 'lib/seam/connect/options.js'
|
|
28
|
+
import {
|
|
29
|
+
limitToSeamHttpRequestOptions,
|
|
30
|
+
parseOptions,
|
|
31
|
+
} from 'lib/seam/connect/parse-options.js'
|
|
32
|
+
import { SeamHttpClientSessions } from 'lib/seam/connect/routes/client-sessions/index.js'
|
|
33
|
+
import type { SeamHttpRequest } from 'lib/seam/connect/seam-http-request.js'
|
|
34
|
+
import { SeamPaginator } from 'lib/seam/connect/seam-paginator.js'
|
|
35
|
+
|
|
36
|
+
import { SeamHttpSeamV1Customers } from './customers/index.js'
|
|
37
|
+
|
|
38
|
+
export class SeamHttpSeamV1 {
|
|
39
|
+
client: Client
|
|
40
|
+
readonly defaults: Required<SeamHttpRequestOptions>
|
|
41
|
+
readonly ltsVersion = seamApiLtsVersion
|
|
42
|
+
static ltsVersion = seamApiLtsVersion
|
|
43
|
+
|
|
44
|
+
constructor(apiKeyOrOptions: string | SeamHttpOptions = {}) {
|
|
45
|
+
const options = parseOptions(apiKeyOrOptions)
|
|
46
|
+
this.client = 'client' in options ? options.client : createClient(options)
|
|
47
|
+
this.defaults = limitToSeamHttpRequestOptions(options)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
static fromClient(
|
|
51
|
+
client: SeamHttpOptionsWithClient['client'],
|
|
52
|
+
options: Omit<SeamHttpOptionsWithClient, 'client'> = {},
|
|
53
|
+
): SeamHttpSeamV1 {
|
|
54
|
+
const constructorOptions = { ...options, client }
|
|
55
|
+
if (!isSeamHttpOptionsWithClient(constructorOptions)) {
|
|
56
|
+
throw new SeamHttpInvalidOptionsError('Missing client')
|
|
57
|
+
}
|
|
58
|
+
return new SeamHttpSeamV1(constructorOptions)
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
static fromApiKey(
|
|
62
|
+
apiKey: SeamHttpOptionsWithApiKey['apiKey'],
|
|
63
|
+
options: Omit<SeamHttpOptionsWithApiKey, 'apiKey'> = {},
|
|
64
|
+
): SeamHttpSeamV1 {
|
|
65
|
+
const constructorOptions = { ...options, apiKey }
|
|
66
|
+
if (!isSeamHttpOptionsWithApiKey(constructorOptions)) {
|
|
67
|
+
throw new SeamHttpInvalidOptionsError('Missing apiKey')
|
|
68
|
+
}
|
|
69
|
+
return new SeamHttpSeamV1(constructorOptions)
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
static fromClientSessionToken(
|
|
73
|
+
clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'],
|
|
74
|
+
options: Omit<
|
|
75
|
+
SeamHttpOptionsWithClientSessionToken,
|
|
76
|
+
'clientSessionToken'
|
|
77
|
+
> = {},
|
|
78
|
+
): SeamHttpSeamV1 {
|
|
79
|
+
const constructorOptions = { ...options, clientSessionToken }
|
|
80
|
+
if (!isSeamHttpOptionsWithClientSessionToken(constructorOptions)) {
|
|
81
|
+
throw new SeamHttpInvalidOptionsError('Missing clientSessionToken')
|
|
82
|
+
}
|
|
83
|
+
return new SeamHttpSeamV1(constructorOptions)
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
static async fromPublishableKey(
|
|
87
|
+
publishableKey: string,
|
|
88
|
+
userIdentifierKey: string,
|
|
89
|
+
options: SeamHttpFromPublishableKeyOptions = {},
|
|
90
|
+
): Promise<SeamHttpSeamV1> {
|
|
91
|
+
warnOnInsecureuserIdentifierKey(userIdentifierKey)
|
|
92
|
+
const clientOptions = parseOptions({ ...options, publishableKey })
|
|
93
|
+
if (isSeamHttpOptionsWithClient(clientOptions)) {
|
|
94
|
+
throw new SeamHttpInvalidOptionsError(
|
|
95
|
+
'The client option cannot be used with SeamHttpSeamV1.fromPublishableKey',
|
|
96
|
+
)
|
|
97
|
+
}
|
|
98
|
+
const client = createClient(clientOptions)
|
|
99
|
+
const clientSessions = SeamHttpClientSessions.fromClient(client)
|
|
100
|
+
const { token } = await clientSessions.getOrCreate({
|
|
101
|
+
user_identifier_key: userIdentifierKey,
|
|
102
|
+
})
|
|
103
|
+
return SeamHttpSeamV1.fromClientSessionToken(token, options)
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
static fromConsoleSessionToken(
|
|
107
|
+
consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'],
|
|
108
|
+
workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'],
|
|
109
|
+
options: Omit<
|
|
110
|
+
SeamHttpOptionsWithConsoleSessionToken,
|
|
111
|
+
'consoleSessionToken' | 'workspaceId'
|
|
112
|
+
> = {},
|
|
113
|
+
): SeamHttpSeamV1 {
|
|
114
|
+
const constructorOptions = { ...options, consoleSessionToken, workspaceId }
|
|
115
|
+
if (!isSeamHttpOptionsWithConsoleSessionToken(constructorOptions)) {
|
|
116
|
+
throw new SeamHttpInvalidOptionsError(
|
|
117
|
+
'Missing consoleSessionToken or workspaceId',
|
|
118
|
+
)
|
|
119
|
+
}
|
|
120
|
+
return new SeamHttpSeamV1(constructorOptions)
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
static fromPersonalAccessToken(
|
|
124
|
+
personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'],
|
|
125
|
+
workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'],
|
|
126
|
+
options: Omit<
|
|
127
|
+
SeamHttpOptionsWithPersonalAccessToken,
|
|
128
|
+
'personalAccessToken' | 'workspaceId'
|
|
129
|
+
> = {},
|
|
130
|
+
): SeamHttpSeamV1 {
|
|
131
|
+
const constructorOptions = { ...options, personalAccessToken, workspaceId }
|
|
132
|
+
if (!isSeamHttpOptionsWithPersonalAccessToken(constructorOptions)) {
|
|
133
|
+
throw new SeamHttpInvalidOptionsError(
|
|
134
|
+
'Missing personalAccessToken or workspaceId',
|
|
135
|
+
)
|
|
136
|
+
}
|
|
137
|
+
return new SeamHttpSeamV1(constructorOptions)
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(
|
|
141
|
+
request: SeamHttpRequest<TResponse, TResponseKey>,
|
|
142
|
+
): SeamPaginator<TResponse, TResponseKey> {
|
|
143
|
+
return new SeamPaginator<TResponse, TResponseKey>(this, request)
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
async updateClientSessionToken(
|
|
147
|
+
clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'],
|
|
148
|
+
): Promise<void> {
|
|
149
|
+
const { headers } = this.client.defaults
|
|
150
|
+
const authHeaders = getAuthHeadersForClientSessionToken({
|
|
151
|
+
clientSessionToken,
|
|
152
|
+
})
|
|
153
|
+
for (const key of Object.keys(authHeaders)) {
|
|
154
|
+
if (headers[key] == null) {
|
|
155
|
+
throw new Error(
|
|
156
|
+
'Cannot update a clientSessionToken on a client created without a clientSessionToken',
|
|
157
|
+
)
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
this.client.defaults.headers = { ...headers, ...authHeaders }
|
|
161
|
+
const clientSessions = SeamHttpClientSessions.fromClient(this.client)
|
|
162
|
+
await clientSessions.get()
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
get customers(): SeamHttpSeamV1Customers {
|
|
166
|
+
return SeamHttpSeamV1Customers.fromClient(this.client, this.defaults)
|
|
167
|
+
}
|
|
168
|
+
}
|
|
@@ -617,6 +617,12 @@ import {
|
|
|
617
617
|
type SeamCustomerV1AutomationsUpdateRequest,
|
|
618
618
|
SeamHttpSeamCustomerV1Automations,
|
|
619
619
|
} from './seam/customer/v1/automations/index.js'
|
|
620
|
+
import {
|
|
621
|
+
type SeamCustomerV1ConnectorCustomersListOptions,
|
|
622
|
+
type SeamCustomerV1ConnectorCustomersListParameters,
|
|
623
|
+
type SeamCustomerV1ConnectorCustomersListRequest,
|
|
624
|
+
SeamHttpSeamCustomerV1ConnectorCustomers,
|
|
625
|
+
} from './seam/customer/v1/connector-customers/index.js'
|
|
620
626
|
import {
|
|
621
627
|
type SeamCustomerV1ConnectorsAuthorizeOptions,
|
|
622
628
|
type SeamCustomerV1ConnectorsAuthorizeParameters,
|
|
@@ -707,6 +713,12 @@ import {
|
|
|
707
713
|
type SeamPartnerV1BuildingBlocksSpacesAutoMapParameters,
|
|
708
714
|
type SeamPartnerV1BuildingBlocksSpacesAutoMapRequest,
|
|
709
715
|
} from './seam/partner/v1/building-blocks/spaces/index.js'
|
|
716
|
+
import {
|
|
717
|
+
SeamHttpSeamV1Customers,
|
|
718
|
+
type SeamV1CustomersPushDataOptions,
|
|
719
|
+
type SeamV1CustomersPushDataParameters,
|
|
720
|
+
type SeamV1CustomersPushDataRequest,
|
|
721
|
+
} from './seam/v1/customers/index.js'
|
|
710
722
|
import {
|
|
711
723
|
SeamHttpSpaces,
|
|
712
724
|
type SpacesAddAcsEntrancesOptions,
|
|
@@ -3223,6 +3235,27 @@ export class SeamHttpEndpoints {
|
|
|
3223
3235
|
}
|
|
3224
3236
|
}
|
|
3225
3237
|
|
|
3238
|
+
get '/seam/customer/v1/connector_customers/list'(): (
|
|
3239
|
+
parameters?: SeamCustomerV1ConnectorCustomersListParameters,
|
|
3240
|
+
options?: SeamCustomerV1ConnectorCustomersListOptions,
|
|
3241
|
+
) => SeamCustomerV1ConnectorCustomersListRequest {
|
|
3242
|
+
const { client, defaults } = this
|
|
3243
|
+
if (!this.defaults.isUndocumentedApiEnabled) {
|
|
3244
|
+
throw new Error(
|
|
3245
|
+
'Cannot use undocumented API without isUndocumentedApiEnabled',
|
|
3246
|
+
)
|
|
3247
|
+
}
|
|
3248
|
+
return function seamCustomerV1ConnectorCustomersList(
|
|
3249
|
+
...args: Parameters<SeamHttpSeamCustomerV1ConnectorCustomers['list']>
|
|
3250
|
+
): ReturnType<SeamHttpSeamCustomerV1ConnectorCustomers['list']> {
|
|
3251
|
+
const seam = SeamHttpSeamCustomerV1ConnectorCustomers.fromClient(
|
|
3252
|
+
client,
|
|
3253
|
+
defaults,
|
|
3254
|
+
)
|
|
3255
|
+
return seam.list(...args)
|
|
3256
|
+
}
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3226
3259
|
get '/seam/customer/v1/connectors/authorize'(): (
|
|
3227
3260
|
parameters?: SeamCustomerV1ConnectorsAuthorizeParameters,
|
|
3228
3261
|
options?: SeamCustomerV1ConnectorsAuthorizeOptions,
|
|
@@ -3616,6 +3649,19 @@ export class SeamHttpEndpoints {
|
|
|
3616
3649
|
}
|
|
3617
3650
|
}
|
|
3618
3651
|
|
|
3652
|
+
get '/seam/v1/customers/push_data'(): (
|
|
3653
|
+
parameters?: SeamV1CustomersPushDataParameters,
|
|
3654
|
+
options?: SeamV1CustomersPushDataOptions,
|
|
3655
|
+
) => SeamV1CustomersPushDataRequest {
|
|
3656
|
+
const { client, defaults } = this
|
|
3657
|
+
return function seamV1CustomersPushData(
|
|
3658
|
+
...args: Parameters<SeamHttpSeamV1Customers['pushData']>
|
|
3659
|
+
): ReturnType<SeamHttpSeamV1Customers['pushData']> {
|
|
3660
|
+
const seam = SeamHttpSeamV1Customers.fromClient(client, defaults)
|
|
3661
|
+
return seam.pushData(...args)
|
|
3662
|
+
}
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3619
3665
|
get '/spaces/add_acs_entrances'(): (
|
|
3620
3666
|
parameters?: SpacesAddAcsEntrancesParameters,
|
|
3621
3667
|
options?: SpacesAddAcsEntrancesOptions,
|
|
@@ -4788,6 +4834,7 @@ export type SeamHttpEndpointQueryPaths =
|
|
|
4788
4834
|
| '/seam/customer/v1/access_grants/list'
|
|
4789
4835
|
| '/seam/customer/v1/automation_runs/list'
|
|
4790
4836
|
| '/seam/customer/v1/automations/get'
|
|
4837
|
+
| '/seam/customer/v1/connector_customers/list'
|
|
4791
4838
|
| '/seam/customer/v1/connectors/authorize'
|
|
4792
4839
|
| '/seam/customer/v1/connectors/connector_types'
|
|
4793
4840
|
| '/seam/customer/v1/connectors/list'
|
|
@@ -4937,6 +4984,7 @@ export type SeamHttpEndpointMutationPaths =
|
|
|
4937
4984
|
| '/seam/customer/v1/customers/open_portal'
|
|
4938
4985
|
| '/seam/customer/v1/settings/update'
|
|
4939
4986
|
| '/seam/customer/v1/spaces/create'
|
|
4987
|
+
| '/seam/v1/customers/push_data'
|
|
4940
4988
|
| '/spaces/add_acs_entrances'
|
|
4941
4989
|
| '/spaces/add_devices'
|
|
4942
4990
|
| '/spaces/create'
|
package/src/lib/version.ts
CHANGED