@seamapi/types 1.62.0 → 1.63.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 +45 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +86 -0
- package/lib/seam/connect/openapi.d.ts +74 -0
- package/lib/seam/connect/openapi.js +45 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +45 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.d.cts
CHANGED
|
@@ -6232,6 +6232,80 @@ declare const _default: {
|
|
|
6232
6232
|
'x-fern-sdk-method-name': string;
|
|
6233
6233
|
};
|
|
6234
6234
|
};
|
|
6235
|
+
'/acs/entrances/grant_access': {
|
|
6236
|
+
post: {
|
|
6237
|
+
operationId: string;
|
|
6238
|
+
requestBody: {
|
|
6239
|
+
content: {
|
|
6240
|
+
'application/json': {
|
|
6241
|
+
schema: {
|
|
6242
|
+
properties: {
|
|
6243
|
+
acs_entrance_id: {
|
|
6244
|
+
format: string;
|
|
6245
|
+
type: string;
|
|
6246
|
+
};
|
|
6247
|
+
acs_user_id: {
|
|
6248
|
+
format: string;
|
|
6249
|
+
type: string;
|
|
6250
|
+
};
|
|
6251
|
+
};
|
|
6252
|
+
required: string[];
|
|
6253
|
+
type: string;
|
|
6254
|
+
};
|
|
6255
|
+
};
|
|
6256
|
+
};
|
|
6257
|
+
};
|
|
6258
|
+
responses: {
|
|
6259
|
+
200: {
|
|
6260
|
+
content: {
|
|
6261
|
+
'application/json': {
|
|
6262
|
+
schema: {
|
|
6263
|
+
properties: {
|
|
6264
|
+
ok: {
|
|
6265
|
+
type: string;
|
|
6266
|
+
};
|
|
6267
|
+
};
|
|
6268
|
+
required: string[];
|
|
6269
|
+
type: string;
|
|
6270
|
+
};
|
|
6271
|
+
};
|
|
6272
|
+
};
|
|
6273
|
+
description: string;
|
|
6274
|
+
};
|
|
6275
|
+
400: {
|
|
6276
|
+
description: string;
|
|
6277
|
+
};
|
|
6278
|
+
401: {
|
|
6279
|
+
description: string;
|
|
6280
|
+
};
|
|
6281
|
+
};
|
|
6282
|
+
security: ({
|
|
6283
|
+
api_key: never[];
|
|
6284
|
+
client_session?: never;
|
|
6285
|
+
pat_with_workspace?: never;
|
|
6286
|
+
console_session?: never;
|
|
6287
|
+
} | {
|
|
6288
|
+
client_session: never[];
|
|
6289
|
+
api_key?: never;
|
|
6290
|
+
pat_with_workspace?: never;
|
|
6291
|
+
console_session?: never;
|
|
6292
|
+
} | {
|
|
6293
|
+
pat_with_workspace: never[];
|
|
6294
|
+
api_key?: never;
|
|
6295
|
+
client_session?: never;
|
|
6296
|
+
console_session?: never;
|
|
6297
|
+
} | {
|
|
6298
|
+
console_session: never[];
|
|
6299
|
+
api_key?: never;
|
|
6300
|
+
client_session?: never;
|
|
6301
|
+
pat_with_workspace?: never;
|
|
6302
|
+
})[];
|
|
6303
|
+
summary: string;
|
|
6304
|
+
tags: never[];
|
|
6305
|
+
'x-fern-sdk-group-name': string[];
|
|
6306
|
+
'x-fern-sdk-method-name': string;
|
|
6307
|
+
};
|
|
6308
|
+
};
|
|
6235
6309
|
'/acs/entrances/list': {
|
|
6236
6310
|
post: {
|
|
6237
6311
|
operationId: string;
|
|
@@ -15099,6 +15173,18 @@ interface Routes {
|
|
|
15099
15173
|
};
|
|
15100
15174
|
};
|
|
15101
15175
|
};
|
|
15176
|
+
'/acs/entrances/grant_access': {
|
|
15177
|
+
route: '/acs/entrances/grant_access';
|
|
15178
|
+
method: 'POST';
|
|
15179
|
+
queryParams: {};
|
|
15180
|
+
jsonBody: {
|
|
15181
|
+
acs_entrance_id: string;
|
|
15182
|
+
acs_user_id: string;
|
|
15183
|
+
};
|
|
15184
|
+
commonParams: {};
|
|
15185
|
+
formData: {};
|
|
15186
|
+
jsonResponse: {};
|
|
15187
|
+
};
|
|
15102
15188
|
'/acs/entrances/list': {
|
|
15103
15189
|
route: '/acs/entrances/list';
|
|
15104
15190
|
method: 'GET' | 'POST';
|
|
@@ -6155,6 +6155,80 @@ declare const _default: {
|
|
|
6155
6155
|
'x-fern-sdk-method-name': string;
|
|
6156
6156
|
};
|
|
6157
6157
|
};
|
|
6158
|
+
'/acs/entrances/grant_access': {
|
|
6159
|
+
post: {
|
|
6160
|
+
operationId: string;
|
|
6161
|
+
requestBody: {
|
|
6162
|
+
content: {
|
|
6163
|
+
'application/json': {
|
|
6164
|
+
schema: {
|
|
6165
|
+
properties: {
|
|
6166
|
+
acs_entrance_id: {
|
|
6167
|
+
format: string;
|
|
6168
|
+
type: string;
|
|
6169
|
+
};
|
|
6170
|
+
acs_user_id: {
|
|
6171
|
+
format: string;
|
|
6172
|
+
type: string;
|
|
6173
|
+
};
|
|
6174
|
+
};
|
|
6175
|
+
required: string[];
|
|
6176
|
+
type: string;
|
|
6177
|
+
};
|
|
6178
|
+
};
|
|
6179
|
+
};
|
|
6180
|
+
};
|
|
6181
|
+
responses: {
|
|
6182
|
+
200: {
|
|
6183
|
+
content: {
|
|
6184
|
+
'application/json': {
|
|
6185
|
+
schema: {
|
|
6186
|
+
properties: {
|
|
6187
|
+
ok: {
|
|
6188
|
+
type: string;
|
|
6189
|
+
};
|
|
6190
|
+
};
|
|
6191
|
+
required: string[];
|
|
6192
|
+
type: string;
|
|
6193
|
+
};
|
|
6194
|
+
};
|
|
6195
|
+
};
|
|
6196
|
+
description: string;
|
|
6197
|
+
};
|
|
6198
|
+
400: {
|
|
6199
|
+
description: string;
|
|
6200
|
+
};
|
|
6201
|
+
401: {
|
|
6202
|
+
description: string;
|
|
6203
|
+
};
|
|
6204
|
+
};
|
|
6205
|
+
security: ({
|
|
6206
|
+
api_key: never[];
|
|
6207
|
+
client_session?: never;
|
|
6208
|
+
pat_with_workspace?: never;
|
|
6209
|
+
console_session?: never;
|
|
6210
|
+
} | {
|
|
6211
|
+
client_session: never[];
|
|
6212
|
+
api_key?: never;
|
|
6213
|
+
pat_with_workspace?: never;
|
|
6214
|
+
console_session?: never;
|
|
6215
|
+
} | {
|
|
6216
|
+
pat_with_workspace: never[];
|
|
6217
|
+
api_key?: never;
|
|
6218
|
+
client_session?: never;
|
|
6219
|
+
console_session?: never;
|
|
6220
|
+
} | {
|
|
6221
|
+
console_session: never[];
|
|
6222
|
+
api_key?: never;
|
|
6223
|
+
client_session?: never;
|
|
6224
|
+
pat_with_workspace?: never;
|
|
6225
|
+
})[];
|
|
6226
|
+
summary: string;
|
|
6227
|
+
tags: never[];
|
|
6228
|
+
'x-fern-sdk-group-name': string[];
|
|
6229
|
+
'x-fern-sdk-method-name': string;
|
|
6230
|
+
};
|
|
6231
|
+
};
|
|
6158
6232
|
'/acs/entrances/list': {
|
|
6159
6233
|
post: {
|
|
6160
6234
|
operationId: string;
|
|
@@ -4426,6 +4426,51 @@ export default {
|
|
|
4426
4426
|
'x-fern-sdk-method-name': 'get',
|
|
4427
4427
|
},
|
|
4428
4428
|
},
|
|
4429
|
+
'/acs/entrances/grant_access': {
|
|
4430
|
+
post: {
|
|
4431
|
+
operationId: 'acsEntrancesGrantAccessPost',
|
|
4432
|
+
requestBody: {
|
|
4433
|
+
content: {
|
|
4434
|
+
'application/json': {
|
|
4435
|
+
schema: {
|
|
4436
|
+
properties: {
|
|
4437
|
+
acs_entrance_id: { format: 'uuid', type: 'string' },
|
|
4438
|
+
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4439
|
+
},
|
|
4440
|
+
required: ['acs_entrance_id', 'acs_user_id'],
|
|
4441
|
+
type: 'object',
|
|
4442
|
+
},
|
|
4443
|
+
},
|
|
4444
|
+
},
|
|
4445
|
+
},
|
|
4446
|
+
responses: {
|
|
4447
|
+
200: {
|
|
4448
|
+
content: {
|
|
4449
|
+
'application/json': {
|
|
4450
|
+
schema: {
|
|
4451
|
+
properties: { ok: { type: 'boolean' } },
|
|
4452
|
+
required: ['ok'],
|
|
4453
|
+
type: 'object',
|
|
4454
|
+
},
|
|
4455
|
+
},
|
|
4456
|
+
},
|
|
4457
|
+
description: 'OK',
|
|
4458
|
+
},
|
|
4459
|
+
400: { description: 'Bad Request' },
|
|
4460
|
+
401: { description: 'Unauthorized' },
|
|
4461
|
+
},
|
|
4462
|
+
security: [
|
|
4463
|
+
{ api_key: [] },
|
|
4464
|
+
{ client_session: [] },
|
|
4465
|
+
{ pat_with_workspace: [] },
|
|
4466
|
+
{ console_session: [] },
|
|
4467
|
+
],
|
|
4468
|
+
summary: '/acs/entrances/grant_access',
|
|
4469
|
+
tags: [],
|
|
4470
|
+
'x-fern-sdk-group-name': ['acs', 'entrances'],
|
|
4471
|
+
'x-fern-sdk-method-name': 'grant_access',
|
|
4472
|
+
},
|
|
4473
|
+
},
|
|
4429
4474
|
'/acs/entrances/list': {
|
|
4430
4475
|
post: {
|
|
4431
4476
|
operationId: 'acsEntrancesListPost',
|