@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
|
@@ -74868,6 +74868,50 @@ const openapi = {
|
|
|
74868
74868
|
'x-undocumented': 'Partner building blocks/UI only.',
|
|
74869
74869
|
},
|
|
74870
74870
|
},
|
|
74871
|
+
'/seam/webhooks/[provider]/[subscription_id]': {
|
|
74872
|
+
post: {
|
|
74873
|
+
description: 'Receives an inbound webhook delivery for a provider subscription.',
|
|
74874
|
+
operationId: 'seamWebhooksByProviderBySubscriptionIdPost',
|
|
74875
|
+
parameters: [
|
|
74876
|
+
{
|
|
74877
|
+
in: 'query',
|
|
74878
|
+
name: 'provider',
|
|
74879
|
+
required: true,
|
|
74880
|
+
schema: { type: 'string' },
|
|
74881
|
+
},
|
|
74882
|
+
{
|
|
74883
|
+
in: 'query',
|
|
74884
|
+
name: 'subscription_id',
|
|
74885
|
+
required: true,
|
|
74886
|
+
schema: { type: 'string' },
|
|
74887
|
+
},
|
|
74888
|
+
],
|
|
74889
|
+
requestBody: { content: { 'application/json': { schema: {} } } },
|
|
74890
|
+
responses: {
|
|
74891
|
+
200: {
|
|
74892
|
+
content: {
|
|
74893
|
+
'application/json': {
|
|
74894
|
+
schema: {
|
|
74895
|
+
properties: { ok: { type: 'boolean' } },
|
|
74896
|
+
required: ['ok'],
|
|
74897
|
+
type: 'object',
|
|
74898
|
+
},
|
|
74899
|
+
},
|
|
74900
|
+
},
|
|
74901
|
+
description: 'OK',
|
|
74902
|
+
},
|
|
74903
|
+
400: { description: 'Bad Request' },
|
|
74904
|
+
401: { description: 'Unauthorized' },
|
|
74905
|
+
},
|
|
74906
|
+
summary: '/seam/webhooks/[provider]/[subscription_id]',
|
|
74907
|
+
tags: ['/webhooks'],
|
|
74908
|
+
'x-fern-sdk-group-name': ['seam', 'webhooks', '[provider]'],
|
|
74909
|
+
'x-fern-sdk-method-name': 'by_subscription_id',
|
|
74910
|
+
'x-response-key': null,
|
|
74911
|
+
'x-title': 'Receive a Provider Webhook',
|
|
74912
|
+
'x-undocumented': 'Internal endpoint for inbound provider webhooks',
|
|
74913
|
+
},
|
|
74914
|
+
},
|
|
74871
74915
|
'/spaces/add_acs_entrances': {
|
|
74872
74916
|
post: {
|
|
74873
74917
|
description: 'Adds [entrances](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) to a specific space.',
|