@seamapi/types 1.963.0 → 1.964.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 +44 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -0
- package/dist/index.cjs +44 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +44 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +45 -0
- package/src/lib/seam/connect/route-types.ts +10 -0
package/dist/connect.d.cts
CHANGED
|
@@ -113911,6 +113911,16 @@ type Routes = {
|
|
|
113911
113911
|
};
|
|
113912
113912
|
maxDuration: undefined;
|
|
113913
113913
|
};
|
|
113914
|
+
'/seam/webhooks/[provider]/[subscription_id]': {
|
|
113915
|
+
route: '/seam/webhooks/[provider]/[subscription_id]';
|
|
113916
|
+
method: 'POST';
|
|
113917
|
+
queryParams: {};
|
|
113918
|
+
jsonBody: any;
|
|
113919
|
+
commonParams: {};
|
|
113920
|
+
formData: {};
|
|
113921
|
+
jsonResponse: {};
|
|
113922
|
+
maxDuration: undefined;
|
|
113923
|
+
};
|
|
113914
113924
|
'/spaces/add_acs_entrances': {
|
|
113915
113925
|
route: '/spaces/add_acs_entrances';
|
|
113916
113926
|
method: 'POST' | 'PUT';
|
package/dist/index.cjs
CHANGED
|
@@ -82466,6 +82466,50 @@ var openapi = {
|
|
|
82466
82466
|
"x-undocumented": "Partner building blocks/UI only."
|
|
82467
82467
|
}
|
|
82468
82468
|
},
|
|
82469
|
+
"/seam/webhooks/[provider]/[subscription_id]": {
|
|
82470
|
+
post: {
|
|
82471
|
+
description: "Receives an inbound webhook delivery for a provider subscription.",
|
|
82472
|
+
operationId: "seamWebhooksByProviderBySubscriptionIdPost",
|
|
82473
|
+
parameters: [
|
|
82474
|
+
{
|
|
82475
|
+
in: "query",
|
|
82476
|
+
name: "provider",
|
|
82477
|
+
required: true,
|
|
82478
|
+
schema: { type: "string" }
|
|
82479
|
+
},
|
|
82480
|
+
{
|
|
82481
|
+
in: "query",
|
|
82482
|
+
name: "subscription_id",
|
|
82483
|
+
required: true,
|
|
82484
|
+
schema: { type: "string" }
|
|
82485
|
+
}
|
|
82486
|
+
],
|
|
82487
|
+
requestBody: { content: { "application/json": { schema: {} } } },
|
|
82488
|
+
responses: {
|
|
82489
|
+
200: {
|
|
82490
|
+
content: {
|
|
82491
|
+
"application/json": {
|
|
82492
|
+
schema: {
|
|
82493
|
+
properties: { ok: { type: "boolean" } },
|
|
82494
|
+
required: ["ok"],
|
|
82495
|
+
type: "object"
|
|
82496
|
+
}
|
|
82497
|
+
}
|
|
82498
|
+
},
|
|
82499
|
+
description: "OK"
|
|
82500
|
+
},
|
|
82501
|
+
400: { description: "Bad Request" },
|
|
82502
|
+
401: { description: "Unauthorized" }
|
|
82503
|
+
},
|
|
82504
|
+
summary: "/seam/webhooks/[provider]/[subscription_id]",
|
|
82505
|
+
tags: ["/webhooks"],
|
|
82506
|
+
"x-fern-sdk-group-name": ["seam", "webhooks", "[provider]"],
|
|
82507
|
+
"x-fern-sdk-method-name": "by_subscription_id",
|
|
82508
|
+
"x-response-key": null,
|
|
82509
|
+
"x-title": "Receive a Provider Webhook",
|
|
82510
|
+
"x-undocumented": "Internal endpoint for inbound provider webhooks"
|
|
82511
|
+
}
|
|
82512
|
+
},
|
|
82469
82513
|
"/spaces/add_acs_entrances": {
|
|
82470
82514
|
post: {
|
|
82471
82515
|
description: "Adds [entrances](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) to a specific space.",
|