@redotech/redo-api-schema 2.2.43 → 2.2.44
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/lib/openapi.d.ts +17 -17
- package/lib/openapi.yaml +10 -15
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -123,7 +123,7 @@ export interface paths {
|
|
|
123
123
|
|
|
124
124
|
export interface webhooks {
|
|
125
125
|
"return": {
|
|
126
|
-
/** Return event
|
|
126
|
+
/** Return event */
|
|
127
127
|
post: operations["Webhook return event"];
|
|
128
128
|
};
|
|
129
129
|
}
|
|
@@ -186,20 +186,27 @@ export interface components {
|
|
|
186
186
|
}]>;
|
|
187
187
|
/**
|
|
188
188
|
* Problem details
|
|
189
|
-
* @description See [RFC 7807 Section 3](https://datatracker.ietf.org/doc/html/rfc7807#section-3).
|
|
189
|
+
* @description Problem details. See [RFC 7807 Section 3](https://datatracker.ietf.org/doc/html/rfc7807#section-3).
|
|
190
190
|
*/
|
|
191
191
|
"error.schema": {
|
|
192
|
-
/**
|
|
192
|
+
/**
|
|
193
|
+
* Detail
|
|
194
|
+
* @description Human-readable description of the problem.
|
|
195
|
+
*/
|
|
193
196
|
detail?: string;
|
|
194
|
-
/**
|
|
197
|
+
/**
|
|
198
|
+
* Format: uri-reference
|
|
199
|
+
* @description A URI reference that identifies this problem.
|
|
200
|
+
*/
|
|
195
201
|
instance?: string;
|
|
196
|
-
/**
|
|
197
|
-
|
|
198
|
-
|
|
202
|
+
/**
|
|
203
|
+
* Title
|
|
204
|
+
* @description Human-readable summary of the problem type.
|
|
205
|
+
*/
|
|
199
206
|
title?: string;
|
|
200
207
|
/**
|
|
201
208
|
* Format: uri-reference
|
|
202
|
-
* @description A URI reference
|
|
209
|
+
* @description A URI reference that identifies the problem type.
|
|
203
210
|
* @default about:blank
|
|
204
211
|
*/
|
|
205
212
|
type?: string;
|
|
@@ -1062,16 +1069,9 @@ export interface operations {
|
|
|
1062
1069
|
};
|
|
1063
1070
|
};
|
|
1064
1071
|
};
|
|
1065
|
-
/** Return event
|
|
1072
|
+
/** Return event */
|
|
1066
1073
|
"Webhook return event": {
|
|
1067
|
-
/**
|
|
1068
|
-
* @description Return event webhook.
|
|
1069
|
-
*
|
|
1070
|
-
* <!-- theme: warning -->
|
|
1071
|
-
* > #### Note
|
|
1072
|
-
* >
|
|
1073
|
-
* > This is not an actual Redo API endpoint, but a webhook.
|
|
1074
|
-
*/
|
|
1074
|
+
/** @description Return event webhook. */
|
|
1075
1075
|
requestBody: {
|
|
1076
1076
|
content: {
|
|
1077
1077
|
"application/json": {
|
package/lib/openapi.yaml
CHANGED
|
@@ -133,23 +133,23 @@ components:
|
|
|
133
133
|
type: object
|
|
134
134
|
title: Comment
|
|
135
135
|
error.schema:
|
|
136
|
-
description: See [RFC 7807 Section 3](https://datatracker.ietf.org/doc/html/rfc7807#section-3).
|
|
136
|
+
description: Problem details. See [RFC 7807 Section 3](https://datatracker.ietf.org/doc/html/rfc7807#section-3).
|
|
137
137
|
properties:
|
|
138
138
|
detail:
|
|
139
|
-
description:
|
|
139
|
+
description: Human-readable description of the problem.
|
|
140
|
+
title: Detail
|
|
140
141
|
type: string
|
|
141
142
|
instance:
|
|
142
|
-
description: A URI reference that identifies
|
|
143
|
+
description: A URI reference that identifies this problem.
|
|
144
|
+
format: uri-reference
|
|
143
145
|
type: string
|
|
144
|
-
status:
|
|
145
|
-
description: The HTTP status code ([[RFC7231], Section 6](https://datatracker.ietf.org/doc/html/rfc7231#section-6)) generated by the origin server for this occurrence of the problem.
|
|
146
|
-
type: number
|
|
147
146
|
title:
|
|
148
|
-
description:
|
|
147
|
+
description: Human-readable summary of the problem type.
|
|
148
|
+
title: Title
|
|
149
149
|
type: string
|
|
150
150
|
type:
|
|
151
151
|
default: about:blank
|
|
152
|
-
description: A URI reference
|
|
152
|
+
description: A URI reference that identifies the problem type.
|
|
153
153
|
format: uri-reference
|
|
154
154
|
type: string
|
|
155
155
|
title: Problem details
|
|
@@ -1166,11 +1166,6 @@ webhooks:
|
|
|
1166
1166
|
type: object
|
|
1167
1167
|
description: |
|
|
1168
1168
|
Return event webhook.
|
|
1169
|
-
|
|
1170
|
-
<!-- theme: warning -->
|
|
1171
|
-
> #### Note
|
|
1172
|
-
>
|
|
1173
|
-
> This is not an actual Redo API endpoint, but a webhook.
|
|
1174
1169
|
required: true
|
|
1175
1170
|
responses:
|
|
1176
1171
|
2xx:
|
|
@@ -1179,7 +1174,7 @@ webhooks:
|
|
|
1179
1174
|
description: Error. The event will be retried multiple times and then discarded.
|
|
1180
1175
|
security:
|
|
1181
1176
|
- UserBearer: []
|
|
1182
|
-
summary: Return event
|
|
1177
|
+
summary: Return event
|
|
1183
1178
|
tags:
|
|
1184
1179
|
- Returns
|
|
1185
|
-
summary: Return event
|
|
1180
|
+
summary: Return event
|
package/package.json
CHANGED