@seamapi/types 1.464.5 → 1.465.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 +93 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +135 -0
- package/dist/index.cjs +93 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +123 -0
- package/lib/seam/connect/openapi.js +93 -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 +96 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.d.cts
CHANGED
|
@@ -73294,6 +73294,129 @@ declare const _default: {
|
|
|
73294
73294
|
'x-title': string;
|
|
73295
73295
|
};
|
|
73296
73296
|
};
|
|
73297
|
+
'/instant_keys/delete': {
|
|
73298
|
+
delete: {
|
|
73299
|
+
description: string;
|
|
73300
|
+
operationId: string;
|
|
73301
|
+
parameters: {
|
|
73302
|
+
in: string;
|
|
73303
|
+
name: string;
|
|
73304
|
+
required: boolean;
|
|
73305
|
+
schema: {
|
|
73306
|
+
description: string;
|
|
73307
|
+
format: string;
|
|
73308
|
+
type: string;
|
|
73309
|
+
};
|
|
73310
|
+
}[];
|
|
73311
|
+
responses: {
|
|
73312
|
+
200: {
|
|
73313
|
+
content: {
|
|
73314
|
+
'application/json': {
|
|
73315
|
+
schema: {
|
|
73316
|
+
properties: {
|
|
73317
|
+
ok: {
|
|
73318
|
+
type: string;
|
|
73319
|
+
};
|
|
73320
|
+
};
|
|
73321
|
+
required: string[];
|
|
73322
|
+
type: string;
|
|
73323
|
+
};
|
|
73324
|
+
};
|
|
73325
|
+
};
|
|
73326
|
+
description: string;
|
|
73327
|
+
};
|
|
73328
|
+
400: {
|
|
73329
|
+
description: string;
|
|
73330
|
+
};
|
|
73331
|
+
401: {
|
|
73332
|
+
description: string;
|
|
73333
|
+
};
|
|
73334
|
+
};
|
|
73335
|
+
security: ({
|
|
73336
|
+
api_key: never[];
|
|
73337
|
+
pat_with_workspace?: never;
|
|
73338
|
+
console_session_with_workspace?: never;
|
|
73339
|
+
} | {
|
|
73340
|
+
pat_with_workspace: never[];
|
|
73341
|
+
api_key?: never;
|
|
73342
|
+
console_session_with_workspace?: never;
|
|
73343
|
+
} | {
|
|
73344
|
+
console_session_with_workspace: never[];
|
|
73345
|
+
api_key?: never;
|
|
73346
|
+
pat_with_workspace?: never;
|
|
73347
|
+
})[];
|
|
73348
|
+
summary: string;
|
|
73349
|
+
tags: never[];
|
|
73350
|
+
'x-fern-sdk-group-name': string[];
|
|
73351
|
+
'x-fern-sdk-method-name': string;
|
|
73352
|
+
'x-response-key': null;
|
|
73353
|
+
'x-title': string;
|
|
73354
|
+
};
|
|
73355
|
+
post: {
|
|
73356
|
+
description: string;
|
|
73357
|
+
operationId: string;
|
|
73358
|
+
requestBody: {
|
|
73359
|
+
content: {
|
|
73360
|
+
'application/json': {
|
|
73361
|
+
schema: {
|
|
73362
|
+
properties: {
|
|
73363
|
+
instant_key_id: {
|
|
73364
|
+
description: string;
|
|
73365
|
+
format: string;
|
|
73366
|
+
type: string;
|
|
73367
|
+
};
|
|
73368
|
+
};
|
|
73369
|
+
required: string[];
|
|
73370
|
+
type: string;
|
|
73371
|
+
};
|
|
73372
|
+
};
|
|
73373
|
+
};
|
|
73374
|
+
};
|
|
73375
|
+
responses: {
|
|
73376
|
+
200: {
|
|
73377
|
+
content: {
|
|
73378
|
+
'application/json': {
|
|
73379
|
+
schema: {
|
|
73380
|
+
properties: {
|
|
73381
|
+
ok: {
|
|
73382
|
+
type: string;
|
|
73383
|
+
};
|
|
73384
|
+
};
|
|
73385
|
+
required: string[];
|
|
73386
|
+
type: string;
|
|
73387
|
+
};
|
|
73388
|
+
};
|
|
73389
|
+
};
|
|
73390
|
+
description: string;
|
|
73391
|
+
};
|
|
73392
|
+
400: {
|
|
73393
|
+
description: string;
|
|
73394
|
+
};
|
|
73395
|
+
401: {
|
|
73396
|
+
description: string;
|
|
73397
|
+
};
|
|
73398
|
+
};
|
|
73399
|
+
security: ({
|
|
73400
|
+
api_key: never[];
|
|
73401
|
+
pat_with_workspace?: never;
|
|
73402
|
+
console_session_with_workspace?: never;
|
|
73403
|
+
} | {
|
|
73404
|
+
pat_with_workspace: never[];
|
|
73405
|
+
api_key?: never;
|
|
73406
|
+
console_session_with_workspace?: never;
|
|
73407
|
+
} | {
|
|
73408
|
+
console_session_with_workspace: never[];
|
|
73409
|
+
api_key?: never;
|
|
73410
|
+
pat_with_workspace?: never;
|
|
73411
|
+
})[];
|
|
73412
|
+
summary: string;
|
|
73413
|
+
tags: never[];
|
|
73414
|
+
'x-fern-sdk-group-name': string[];
|
|
73415
|
+
'x-fern-sdk-method-name': string;
|
|
73416
|
+
'x-response-key': null;
|
|
73417
|
+
'x-title': string;
|
|
73418
|
+
};
|
|
73419
|
+
};
|
|
73297
73420
|
'/instant_keys/get': {
|
|
73298
73421
|
get: {
|
|
73299
73422
|
description: string;
|
|
@@ -126192,6 +126315,18 @@ type Routes = {
|
|
|
126192
126315
|
})[];
|
|
126193
126316
|
};
|
|
126194
126317
|
};
|
|
126318
|
+
'/instant_keys/delete': {
|
|
126319
|
+
route: '/instant_keys/delete';
|
|
126320
|
+
method: 'DELETE' | 'POST';
|
|
126321
|
+
queryParams: {};
|
|
126322
|
+
jsonBody: {};
|
|
126323
|
+
commonParams: {
|
|
126324
|
+
/** ID of the Instant Key that you want to delete. */
|
|
126325
|
+
instant_key_id: string;
|
|
126326
|
+
};
|
|
126327
|
+
formData: {};
|
|
126328
|
+
jsonResponse: {};
|
|
126329
|
+
};
|
|
126195
126330
|
'/instant_keys/get': {
|
|
126196
126331
|
route: '/instant_keys/get';
|
|
126197
126332
|
method: 'GET' | 'POST';
|
package/dist/index.cjs
CHANGED
|
@@ -44634,6 +44634,99 @@ var openapi_default = {
|
|
|
44634
44634
|
"x-title": "List Events"
|
|
44635
44635
|
}
|
|
44636
44636
|
},
|
|
44637
|
+
"/instant_keys/delete": {
|
|
44638
|
+
delete: {
|
|
44639
|
+
description: "Deletes a specified [Instant Key](https://docs.seam.co/latest/capability-guides/instant-keys).",
|
|
44640
|
+
operationId: "instantKeysDeleteDelete",
|
|
44641
|
+
parameters: [
|
|
44642
|
+
{
|
|
44643
|
+
in: "query",
|
|
44644
|
+
name: "instant_key_id",
|
|
44645
|
+
required: true,
|
|
44646
|
+
schema: {
|
|
44647
|
+
description: "ID of the Instant Key that you want to delete.",
|
|
44648
|
+
format: "uuid",
|
|
44649
|
+
type: "string"
|
|
44650
|
+
}
|
|
44651
|
+
}
|
|
44652
|
+
],
|
|
44653
|
+
responses: {
|
|
44654
|
+
200: {
|
|
44655
|
+
content: {
|
|
44656
|
+
"application/json": {
|
|
44657
|
+
schema: {
|
|
44658
|
+
properties: { ok: { type: "boolean" } },
|
|
44659
|
+
required: ["ok"],
|
|
44660
|
+
type: "object"
|
|
44661
|
+
}
|
|
44662
|
+
}
|
|
44663
|
+
},
|
|
44664
|
+
description: "OK"
|
|
44665
|
+
},
|
|
44666
|
+
400: { description: "Bad Request" },
|
|
44667
|
+
401: { description: "Unauthorized" }
|
|
44668
|
+
},
|
|
44669
|
+
security: [
|
|
44670
|
+
{ api_key: [] },
|
|
44671
|
+
{ pat_with_workspace: [] },
|
|
44672
|
+
{ console_session_with_workspace: [] }
|
|
44673
|
+
],
|
|
44674
|
+
summary: "/instant_keys/delete",
|
|
44675
|
+
tags: [],
|
|
44676
|
+
"x-fern-sdk-group-name": ["instant_keys"],
|
|
44677
|
+
"x-fern-sdk-method-name": "delete",
|
|
44678
|
+
"x-response-key": null,
|
|
44679
|
+
"x-title": "Delete an Instant Key"
|
|
44680
|
+
},
|
|
44681
|
+
post: {
|
|
44682
|
+
description: "Deletes a specified [Instant Key](https://docs.seam.co/latest/capability-guides/instant-keys).",
|
|
44683
|
+
operationId: "instantKeysDeletePost",
|
|
44684
|
+
requestBody: {
|
|
44685
|
+
content: {
|
|
44686
|
+
"application/json": {
|
|
44687
|
+
schema: {
|
|
44688
|
+
properties: {
|
|
44689
|
+
instant_key_id: {
|
|
44690
|
+
description: "ID of the Instant Key that you want to delete.",
|
|
44691
|
+
format: "uuid",
|
|
44692
|
+
type: "string"
|
|
44693
|
+
}
|
|
44694
|
+
},
|
|
44695
|
+
required: ["instant_key_id"],
|
|
44696
|
+
type: "object"
|
|
44697
|
+
}
|
|
44698
|
+
}
|
|
44699
|
+
}
|
|
44700
|
+
},
|
|
44701
|
+
responses: {
|
|
44702
|
+
200: {
|
|
44703
|
+
content: {
|
|
44704
|
+
"application/json": {
|
|
44705
|
+
schema: {
|
|
44706
|
+
properties: { ok: { type: "boolean" } },
|
|
44707
|
+
required: ["ok"],
|
|
44708
|
+
type: "object"
|
|
44709
|
+
}
|
|
44710
|
+
}
|
|
44711
|
+
},
|
|
44712
|
+
description: "OK"
|
|
44713
|
+
},
|
|
44714
|
+
400: { description: "Bad Request" },
|
|
44715
|
+
401: { description: "Unauthorized" }
|
|
44716
|
+
},
|
|
44717
|
+
security: [
|
|
44718
|
+
{ api_key: [] },
|
|
44719
|
+
{ pat_with_workspace: [] },
|
|
44720
|
+
{ console_session_with_workspace: [] }
|
|
44721
|
+
],
|
|
44722
|
+
summary: "/instant_keys/delete",
|
|
44723
|
+
tags: [],
|
|
44724
|
+
"x-fern-sdk-group-name": ["instant_keys"],
|
|
44725
|
+
"x-fern-sdk-method-name": "delete",
|
|
44726
|
+
"x-response-key": null,
|
|
44727
|
+
"x-title": "Delete an Instant Key"
|
|
44728
|
+
}
|
|
44729
|
+
},
|
|
44637
44730
|
"/instant_keys/get": {
|
|
44638
44731
|
get: {
|
|
44639
44732
|
description: "Gets an [instant key](https://docs.seam.co/latest/capability-guides/mobile-access/instant-keys).",
|