@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
|
@@ -83867,6 +83867,16 @@ export type Routes = {
|
|
|
83867
83867
|
};
|
|
83868
83868
|
maxDuration: undefined;
|
|
83869
83869
|
};
|
|
83870
|
+
'/seam/webhooks/[provider]/[subscription_id]': {
|
|
83871
|
+
route: '/seam/webhooks/[provider]/[subscription_id]';
|
|
83872
|
+
method: 'POST';
|
|
83873
|
+
queryParams: {};
|
|
83874
|
+
jsonBody: any;
|
|
83875
|
+
commonParams: {};
|
|
83876
|
+
formData: {};
|
|
83877
|
+
jsonResponse: {};
|
|
83878
|
+
maxDuration: undefined;
|
|
83879
|
+
};
|
|
83870
83880
|
'/spaces/add_acs_entrances': {
|
|
83871
83881
|
route: '/spaces/add_acs_entrances';
|
|
83872
83882
|
method: 'POST' | 'PUT';
|
package/package.json
CHANGED
|
@@ -81034,6 +81034,51 @@ const openapi: OpenAPISpec = {
|
|
|
81034
81034
|
'x-undocumented': 'Partner building blocks/UI only.',
|
|
81035
81035
|
},
|
|
81036
81036
|
},
|
|
81037
|
+
'/seam/webhooks/[provider]/[subscription_id]': {
|
|
81038
|
+
post: {
|
|
81039
|
+
description:
|
|
81040
|
+
'Receives an inbound webhook delivery for a provider subscription.',
|
|
81041
|
+
operationId: 'seamWebhooksByProviderBySubscriptionIdPost',
|
|
81042
|
+
parameters: [
|
|
81043
|
+
{
|
|
81044
|
+
in: 'query',
|
|
81045
|
+
name: 'provider',
|
|
81046
|
+
required: true,
|
|
81047
|
+
schema: { type: 'string' },
|
|
81048
|
+
},
|
|
81049
|
+
{
|
|
81050
|
+
in: 'query',
|
|
81051
|
+
name: 'subscription_id',
|
|
81052
|
+
required: true,
|
|
81053
|
+
schema: { type: 'string' },
|
|
81054
|
+
},
|
|
81055
|
+
],
|
|
81056
|
+
requestBody: { content: { 'application/json': { schema: {} } } },
|
|
81057
|
+
responses: {
|
|
81058
|
+
200: {
|
|
81059
|
+
content: {
|
|
81060
|
+
'application/json': {
|
|
81061
|
+
schema: {
|
|
81062
|
+
properties: { ok: { type: 'boolean' } },
|
|
81063
|
+
required: ['ok'],
|
|
81064
|
+
type: 'object',
|
|
81065
|
+
},
|
|
81066
|
+
},
|
|
81067
|
+
},
|
|
81068
|
+
description: 'OK',
|
|
81069
|
+
},
|
|
81070
|
+
400: { description: 'Bad Request' },
|
|
81071
|
+
401: { description: 'Unauthorized' },
|
|
81072
|
+
},
|
|
81073
|
+
summary: '/seam/webhooks/[provider]/[subscription_id]',
|
|
81074
|
+
tags: ['/webhooks'],
|
|
81075
|
+
'x-fern-sdk-group-name': ['seam', 'webhooks', '[provider]'],
|
|
81076
|
+
'x-fern-sdk-method-name': 'by_subscription_id',
|
|
81077
|
+
'x-response-key': null,
|
|
81078
|
+
'x-title': 'Receive a Provider Webhook',
|
|
81079
|
+
'x-undocumented': 'Internal endpoint for inbound provider webhooks',
|
|
81080
|
+
},
|
|
81081
|
+
},
|
|
81037
81082
|
'/spaces/add_acs_entrances': {
|
|
81038
81083
|
post: {
|
|
81039
81084
|
description:
|
|
@@ -102152,6 +102152,16 @@ export type Routes = {
|
|
|
102152
102152
|
}
|
|
102153
102153
|
maxDuration: undefined
|
|
102154
102154
|
}
|
|
102155
|
+
'/seam/webhooks/[provider]/[subscription_id]': {
|
|
102156
|
+
route: '/seam/webhooks/[provider]/[subscription_id]'
|
|
102157
|
+
method: 'POST'
|
|
102158
|
+
queryParams: {}
|
|
102159
|
+
jsonBody: any
|
|
102160
|
+
commonParams: {}
|
|
102161
|
+
formData: {}
|
|
102162
|
+
jsonResponse: {}
|
|
102163
|
+
maxDuration: undefined
|
|
102164
|
+
}
|
|
102155
102165
|
'/spaces/add_acs_entrances': {
|
|
102156
102166
|
route: '/spaces/add_acs_entrances'
|
|
102157
102167
|
method: 'POST' | 'PUT'
|