@ndla/types-backend 1.0.34 → 1.0.35

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.
Files changed (61) hide show
  1. package/build/article-api-openapi.d.ts +1092 -0
  2. package/build/article-api-openapi.js +7 -0
  3. package/build/article-api-openapi.js.map +1 -0
  4. package/build/article-api.d.ts +57 -156
  5. package/build/article-api.js +27 -13
  6. package/build/article-api.js.map +1 -1
  7. package/build/audio-api-openapi.d.ts +2153 -0
  8. package/build/audio-api-openapi.js +7 -0
  9. package/build/audio-api-openapi.js.map +1 -0
  10. package/build/audio-api.d.ts +69 -190
  11. package/build/audio-api.js +27 -13
  12. package/build/audio-api.js.map +1 -1
  13. package/build/concept-api-openapi.d.ts +1682 -0
  14. package/build/concept-api-openapi.js +7 -0
  15. package/build/concept-api-openapi.js.map +1 -0
  16. package/build/concept-api.d.ts +69 -221
  17. package/build/concept-api.js +27 -21
  18. package/build/concept-api.js.map +1 -1
  19. package/build/draft-api-openapi.d.ts +2893 -0
  20. package/build/draft-api-openapi.js +7 -0
  21. package/build/draft-api-openapi.js.map +1 -0
  22. package/build/draft-api.d.ts +117 -292
  23. package/build/draft-api.js +27 -13
  24. package/build/draft-api.js.map +1 -1
  25. package/build/frontpage-api-openapi.d.ts +800 -0
  26. package/build/frontpage-api-openapi.js +7 -0
  27. package/build/frontpage-api-openapi.js.map +1 -0
  28. package/build/frontpage-api.d.ts +53 -121
  29. package/build/frontpage-api.js +27 -1
  30. package/build/frontpage-api.js.map +1 -1
  31. package/build/image-api-openapi.d.ts +2192 -0
  32. package/build/image-api-openapi.js +7 -0
  33. package/build/image-api-openapi.js.map +1 -0
  34. package/build/image-api.d.ts +61 -174
  35. package/build/image-api.js +27 -13
  36. package/build/image-api.js.map +1 -1
  37. package/build/learningpath-api-openapi.d.ts +2671 -0
  38. package/build/learningpath-api-openapi.js +7 -0
  39. package/build/learningpath-api-openapi.js.map +1 -0
  40. package/build/learningpath-api.d.ts +71 -143
  41. package/build/learningpath-api.js +27 -1
  42. package/build/learningpath-api.js.map +1 -1
  43. package/build/myndla-api-openapi.d.ts +2718 -0
  44. package/build/myndla-api-openapi.js +7 -0
  45. package/build/myndla-api-openapi.js.map +1 -0
  46. package/build/myndla-api.d.ts +69 -125
  47. package/build/myndla-api.js +27 -1
  48. package/build/myndla-api.js.map +1 -1
  49. package/build/oembed-proxy-openapi.d.ts +249 -0
  50. package/build/oembed-proxy-openapi.js +7 -0
  51. package/build/oembed-proxy-openapi.js.map +1 -0
  52. package/build/oembed-proxy.d.ts +15 -0
  53. package/build/oembed-proxy.js +30 -0
  54. package/build/oembed-proxy.js.map +1 -0
  55. package/build/search-api-openapi.d.ts +1525 -0
  56. package/build/search-api-openapi.js +7 -0
  57. package/build/search-api-openapi.js.map +1 -0
  58. package/build/search-api.d.ts +121 -422
  59. package/build/search-api.js +27 -33
  60. package/build/search-api.js.map +1 -1
  61. package/package.json +2 -1
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by openapi-typescript.
4
+ * Do not make direct changes to the file.
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ //# sourceMappingURL=myndla-api-openapi.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"myndla-api-openapi.js","sourceRoot":"","sources":["../myndla-api-openapi.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
@@ -1,125 +1,69 @@
1
- export interface IBreadcrumbDTO {
2
- id: string;
3
- name: string;
4
- }
5
- export interface IConfigMetaDTO {
6
- key: string;
7
- value: (boolean | string[]);
8
- updatedAt: string;
9
- updatedBy: string;
10
- }
11
- export interface IConfigMetaRestrictedDTO {
12
- key: string;
13
- value: (boolean | string[]);
14
- }
15
- export interface IFolderDTO {
16
- id: string;
17
- name: string;
18
- status: string;
19
- parentId?: string;
20
- breadcrumbs: IBreadcrumbDTO[];
21
- subfolders: IFolderDataDTO[];
22
- resources: IResourceDTO[];
23
- rank: number;
24
- created: string;
25
- updated: string;
26
- shared?: string;
27
- description?: string;
28
- owner?: IOwnerDTO;
29
- }
30
- export type IFolderDataDTO = IFolderDTO;
31
- export interface IMyNDLAGroupDTO {
32
- id: string;
33
- displayName: string;
34
- isPrimarySchool: boolean;
35
- parentId?: string;
36
- }
37
- export interface IMyNDLAUserDTO {
38
- id: number;
39
- feideId: string;
40
- username: string;
41
- email: string;
42
- displayName: string;
43
- favoriteSubjects: string[];
44
- role: UserRole;
45
- organization: string;
46
- groups: IMyNDLAGroupDTO[];
47
- arenaEnabled: boolean;
48
- arenaAccepted: boolean;
49
- shareNameAccepted: boolean;
50
- }
51
- export interface INewFolderDTO {
52
- name: string;
53
- parentId?: string;
54
- status?: string;
55
- description?: string;
56
- }
57
- export interface INewResourceDTO {
58
- resourceType: ResourceType;
59
- path: string;
60
- tags?: string[];
61
- resourceId: string;
62
- }
63
- export interface IOwnerDTO {
64
- name: string;
65
- }
66
- export interface IResourceDTO {
67
- id: string;
68
- resourceType: ResourceType;
69
- path: string;
70
- created: string;
71
- tags: string[];
72
- resourceId: string;
73
- rank?: number;
74
- }
75
- export interface IResourceStatsDTO {
76
- type: string;
77
- number: number;
78
- }
79
- export interface ISingleResourceStatsDTO {
80
- id: string;
81
- favourites: number;
82
- }
83
- export interface IStatsDTO {
84
- numberOfUsers: number;
85
- numberOfFolders: number;
86
- numberOfResources: number;
87
- numberOfTags: number;
88
- numberOfSubjects: number;
89
- numberOfSharedFolders: number;
90
- numberOfMyNdlaLearningPaths: number;
91
- favouritedResources: IResourceStatsDTO[];
92
- favourited: {
93
- [key: string]: number;
94
- };
95
- users: IUserStatsDTO;
96
- }
97
- export interface IUpdatedFolderDTO {
98
- name?: string;
99
- status?: string;
100
- description?: string;
101
- }
102
- export interface IUpdatedMyNDLAUserDTO {
103
- favoriteSubjects?: string[];
104
- arenaEnabled?: boolean;
105
- arenaAccepted?: boolean;
106
- shareNameAccepted?: boolean;
107
- }
108
- export interface IUpdatedResourceDTO {
109
- tags?: string[];
110
- resourceId?: string;
111
- }
112
- export interface IUserFolderDTO {
113
- folders: IFolderDTO[];
114
- sharedFolders: IFolderDTO[];
115
- }
116
- export interface IUserStatsDTO {
117
- total: number;
118
- employees: number;
119
- students: number;
120
- withFavourites: number;
121
- noFavourites: number;
122
- arena: number;
123
- }
124
- export type ResourceType = ("article" | "audio" | "concept" | "image" | "learningpath" | "multidisciplinary" | "topic" | "video");
125
- export type UserRole = ("employee" | "student");
1
+ import * as openapi from "./myndla-api-openapi";
2
+ type schemas = openapi.components["schemas"];
3
+ export { openapi };
4
+ export type AllErrors = schemas["AllErrors"];
5
+ export type IAllErrors = schemas["AllErrors"];
6
+ export type BreadcrumbDTO = schemas["BreadcrumbDTO"];
7
+ export type IBreadcrumbDTO = schemas["BreadcrumbDTO"];
8
+ export type ConfigKey = schemas["ConfigKey"];
9
+ export type IConfigKey = schemas["ConfigKey"];
10
+ export type ConfigMetaDTO = schemas["ConfigMetaDTO"];
11
+ export type IConfigMetaDTO = schemas["ConfigMetaDTO"];
12
+ export type ConfigMetaRestrictedDTO = schemas["ConfigMetaRestrictedDTO"];
13
+ export type IConfigMetaRestrictedDTO = schemas["ConfigMetaRestrictedDTO"];
14
+ export type ConfigMetaValueDTO = schemas["ConfigMetaValueDTO"];
15
+ export type IConfigMetaValueDTO = schemas["ConfigMetaValueDTO"];
16
+ export type ErrorBody = schemas["ErrorBody"];
17
+ export type IErrorBody = schemas["ErrorBody"];
18
+ export type ExportedUserDataDTO = schemas["ExportedUserDataDTO"];
19
+ export type IExportedUserDataDTO = schemas["ExportedUserDataDTO"];
20
+ export type FolderDTO = schemas["FolderDTO"];
21
+ export type IFolderDTO = schemas["FolderDTO"];
22
+ export type FolderDataDTO = schemas["FolderDataDTO"];
23
+ export type IFolderDataDTO = schemas["FolderDataDTO"];
24
+ export type FolderSortRequestDTO = schemas["FolderSortRequestDTO"];
25
+ export type IFolderSortRequestDTO = schemas["FolderSortRequestDTO"];
26
+ export type FolderStatus = schemas["FolderStatus"];
27
+ export type IFolderStatus = schemas["FolderStatus"];
28
+ export type Map_Long = schemas["Map_Long"];
29
+ export type IMap_Long = schemas["Map_Long"];
30
+ export type Map_Map_String_Long = schemas["Map_Map_String_Long"];
31
+ export type IMap_Map_String_Long = schemas["Map_Map_String_Long"];
32
+ export type MyNDLAGroupDTO = schemas["MyNDLAGroupDTO"];
33
+ export type IMyNDLAGroupDTO = schemas["MyNDLAGroupDTO"];
34
+ export type MyNDLAUserDTO = schemas["MyNDLAUserDTO"];
35
+ export type IMyNDLAUserDTO = schemas["MyNDLAUserDTO"];
36
+ export type NewFolderDTO = schemas["NewFolderDTO"];
37
+ export type INewFolderDTO = schemas["NewFolderDTO"];
38
+ export type NewResourceDTO = schemas["NewResourceDTO"];
39
+ export type INewResourceDTO = schemas["NewResourceDTO"];
40
+ export type NotFoundWithSupportedLanguages = schemas["NotFoundWithSupportedLanguages"];
41
+ export type INotFoundWithSupportedLanguages = schemas["NotFoundWithSupportedLanguages"];
42
+ export type OwnerDTO = schemas["OwnerDTO"];
43
+ export type IOwnerDTO = schemas["OwnerDTO"];
44
+ export type ResourceDTO = schemas["ResourceDTO"];
45
+ export type IResourceDTO = schemas["ResourceDTO"];
46
+ export type ResourceStatsDTO = schemas["ResourceStatsDTO"];
47
+ export type IResourceStatsDTO = schemas["ResourceStatsDTO"];
48
+ export type ResourceType = schemas["ResourceType"];
49
+ export type IResourceType = schemas["ResourceType"];
50
+ export type SingleResourceStatsDTO = schemas["SingleResourceStatsDTO"];
51
+ export type ISingleResourceStatsDTO = schemas["SingleResourceStatsDTO"];
52
+ export type StatsDTO = schemas["StatsDTO"];
53
+ export type IStatsDTO = schemas["StatsDTO"];
54
+ export type UpdatedFolderDTO = schemas["UpdatedFolderDTO"];
55
+ export type IUpdatedFolderDTO = schemas["UpdatedFolderDTO"];
56
+ export type UpdatedMyNDLAUserDTO = schemas["UpdatedMyNDLAUserDTO"];
57
+ export type IUpdatedMyNDLAUserDTO = schemas["UpdatedMyNDLAUserDTO"];
58
+ export type UpdatedResourceDTO = schemas["UpdatedResourceDTO"];
59
+ export type IUpdatedResourceDTO = schemas["UpdatedResourceDTO"];
60
+ export type UserFolderDTO = schemas["UserFolderDTO"];
61
+ export type IUserFolderDTO = schemas["UserFolderDTO"];
62
+ export type UserRole = schemas["UserRole"];
63
+ export type IUserRole = schemas["UserRole"];
64
+ export type UserStatsDTO = schemas["UserStatsDTO"];
65
+ export type IUserStatsDTO = schemas["UserStatsDTO"];
66
+ export type ValidationErrorBody = schemas["ValidationErrorBody"];
67
+ export type IValidationErrorBody = schemas["ValidationErrorBody"];
68
+ export type ValidationMessage = schemas["ValidationMessage"];
69
+ export type IValidationMessage = schemas["ValidationMessage"];
@@ -1,4 +1,30 @@
1
1
  "use strict";
2
- // DO NOT EDIT: generated file by scala-tsi
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
3
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.openapi = void 0;
27
+ // This file was generated by OpenApiPlugin, do not edit it manually
28
+ var openapi = __importStar(require("./myndla-api-openapi"));
29
+ exports.openapi = openapi;
4
30
  //# sourceMappingURL=myndla-api.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"myndla-api.js","sourceRoot":"","sources":["../myndla-api.ts"],"names":[],"mappings":";AAAA,2CAA2C"}
1
+ {"version":3,"file":"myndla-api.js","sourceRoot":"","sources":["../myndla-api.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,oEAAoE;AACpE,4DAAgD;AAGvC,0BAAO"}
@@ -0,0 +1,249 @@
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+ export type paths = {
6
+ "/oembed-proxy/v1/oembed": {
7
+ parameters: {
8
+ query?: never;
9
+ header?: never;
10
+ path?: never;
11
+ cookie?: never;
12
+ };
13
+ /**
14
+ * Returns oEmbed information for a given url.
15
+ * @description Returns oEmbed information for a given url.
16
+ */
17
+ get: operations["getOembed-proxyV1Oembed"];
18
+ put?: never;
19
+ post?: never;
20
+ delete?: never;
21
+ options?: never;
22
+ head?: never;
23
+ patch?: never;
24
+ trace?: never;
25
+ };
26
+ };
27
+ export type webhooks = Record<string, never>;
28
+ export type components = {
29
+ schemas: {
30
+ /** AllErrors */
31
+ AllErrors: components["schemas"]["ErrorBody"] | components["schemas"]["NotFoundWithSupportedLanguages"] | components["schemas"]["ValidationErrorBody"];
32
+ /**
33
+ * ErrorBody
34
+ * @description Information about an error
35
+ */
36
+ ErrorBody: {
37
+ /** @description Code stating the type of error */
38
+ code: string;
39
+ /** @description Description of the error */
40
+ description: string;
41
+ /** @description When the error occurred */
42
+ occurredAt: string;
43
+ /**
44
+ * Format: int32
45
+ * @description Numeric http status code
46
+ */
47
+ statusCode: number;
48
+ };
49
+ /**
50
+ * NotFoundWithSupportedLanguages
51
+ * @description Information about an error
52
+ */
53
+ NotFoundWithSupportedLanguages: {
54
+ /** @description Code stating the type of error */
55
+ code: string;
56
+ /** @description Description of the error */
57
+ description: string;
58
+ /** @description When the error occurred */
59
+ occurredAt: string;
60
+ /** @description List of supported languages */
61
+ supportedLanguages?: string[];
62
+ /**
63
+ * Format: int32
64
+ * @description Numeric http status code
65
+ */
66
+ statusCode: number;
67
+ };
68
+ /**
69
+ * OEmbedDTO
70
+ * @description oEmbed information for an url.
71
+ */
72
+ OEmbedDTO: {
73
+ /** @description The resource type */
74
+ type: string;
75
+ /** @description The oEmbed version number. This must be 1.0. */
76
+ version: string;
77
+ /** @description A text title, describing the resource. */
78
+ title?: string;
79
+ /** @description A text description, describing the resource. Not standard. */
80
+ description?: string;
81
+ /** @description The name of the author/owner of the resource. */
82
+ authorName?: string;
83
+ /** @description A URL for the author/owner of the resource. */
84
+ authorUrl?: string;
85
+ /** @description The name of the resource provider. */
86
+ providerName?: string;
87
+ /** @description The url of the resource provider. */
88
+ providerUrl?: string;
89
+ /**
90
+ * Format: int64
91
+ * @description The suggested cache lifetime for this resource, in seconds. Consumers may choose to use this value or not.
92
+ */
93
+ cacheAge?: number;
94
+ /** @description A URL to a thumbnail image representing the resource. The thumbnail must respect any maxwidth and maxheight parameters. If this parameter is present, thumbnail_width and thumbnail_height must also be present. */
95
+ thumbnailUrl?: string;
96
+ /**
97
+ * Format: int64
98
+ * @description The width of the optional thumbnail. If this parameter is present, thumbnail_url and thumbnail_height must also be present.
99
+ */
100
+ thumbnailWidth?: number;
101
+ /**
102
+ * Format: int64
103
+ * @description The height of the optional thumbnail. If this parameter is present, thumbnail_url and thumbnail_width must also be present.
104
+ */
105
+ thumbnailHeight?: number;
106
+ /** @description The source URL of the image. Consumers should be able to insert this URL into an <img> element. Only HTTP and HTTPS URLs are valid. Required if type is photo. */
107
+ url?: string;
108
+ /**
109
+ * Format: int64
110
+ * @description The width in pixels. Required if type is photo/video/rich
111
+ */
112
+ width?: number;
113
+ /**
114
+ * Format: int64
115
+ * @description The height in pixels. Required if type is photo/video/rich
116
+ */
117
+ height?: number;
118
+ /** @description The HTML required to embed a video player. The HTML should have no padding or margins. Consumers may wish to load the HTML in an off-domain iframe to avoid XSS vulnerabilities. Required if type is video/rich. */
119
+ html?: string;
120
+ };
121
+ /**
122
+ * ValidationErrorBody
123
+ * @description Information about an error
124
+ */
125
+ ValidationErrorBody: {
126
+ /** @description Code stating the type of error */
127
+ code: string;
128
+ /** @description Description of the error */
129
+ description: string;
130
+ /** @description When the error occurred */
131
+ occurredAt: string;
132
+ /** @description List of validation messages */
133
+ messages?: components["schemas"]["ValidationMessage"][];
134
+ /**
135
+ * Format: int32
136
+ * @description Numeric http status code
137
+ */
138
+ statusCode: number;
139
+ };
140
+ /**
141
+ * ValidationMessage
142
+ * @description A message describing a validation error on a specific field
143
+ */
144
+ ValidationMessage: {
145
+ /** @description The field the error occured in */
146
+ field: string;
147
+ /** @description The validation message */
148
+ message: string;
149
+ };
150
+ };
151
+ responses: never;
152
+ parameters: never;
153
+ requestBodies: never;
154
+ headers: never;
155
+ pathItems: never;
156
+ };
157
+ export type $defs = Record<string, never>;
158
+ export interface operations {
159
+ "getOembed-proxyV1Oembed": {
160
+ parameters: {
161
+ query: {
162
+ /** @description The URL to retrieve embedding information for */
163
+ url: string;
164
+ /** @description The maximum width of the embedded resource */
165
+ maxwidth?: string;
166
+ /** @description The maximum height of the embedded resource */
167
+ maxheight?: string;
168
+ };
169
+ header?: never;
170
+ path?: never;
171
+ cookie?: never;
172
+ };
173
+ requestBody?: never;
174
+ responses: {
175
+ 200: {
176
+ headers: {
177
+ [name: string]: unknown;
178
+ };
179
+ content: {
180
+ "application/json": components["schemas"]["OEmbedDTO"];
181
+ };
182
+ };
183
+ 400: {
184
+ headers: {
185
+ [name: string]: unknown;
186
+ };
187
+ content: {
188
+ "application/json": components["schemas"]["AllErrors"];
189
+ };
190
+ };
191
+ 401: {
192
+ headers: {
193
+ [name: string]: unknown;
194
+ };
195
+ content: {
196
+ "application/json": components["schemas"]["AllErrors"];
197
+ };
198
+ };
199
+ 403: {
200
+ headers: {
201
+ [name: string]: unknown;
202
+ };
203
+ content: {
204
+ "application/json": components["schemas"]["AllErrors"];
205
+ };
206
+ };
207
+ 404: {
208
+ headers: {
209
+ [name: string]: unknown;
210
+ };
211
+ content: {
212
+ "application/json": components["schemas"]["AllErrors"];
213
+ };
214
+ };
215
+ 410: {
216
+ headers: {
217
+ [name: string]: unknown;
218
+ };
219
+ content: {
220
+ "application/json": components["schemas"]["AllErrors"];
221
+ };
222
+ };
223
+ 422: {
224
+ headers: {
225
+ [name: string]: unknown;
226
+ };
227
+ content: {
228
+ "application/json": components["schemas"]["AllErrors"];
229
+ };
230
+ };
231
+ 500: {
232
+ headers: {
233
+ [name: string]: unknown;
234
+ };
235
+ content: {
236
+ "application/json": components["schemas"]["ErrorBody"];
237
+ };
238
+ };
239
+ 502: {
240
+ headers: {
241
+ [name: string]: unknown;
242
+ };
243
+ content: {
244
+ "application/json": components["schemas"]["AllErrors"];
245
+ };
246
+ };
247
+ };
248
+ };
249
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by openapi-typescript.
4
+ * Do not make direct changes to the file.
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ //# sourceMappingURL=oembed-proxy-openapi.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oembed-proxy-openapi.js","sourceRoot":"","sources":["../oembed-proxy-openapi.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
@@ -0,0 +1,15 @@
1
+ import * as openapi from "./oembed-proxy-openapi";
2
+ type schemas = openapi.components["schemas"];
3
+ export { openapi };
4
+ export type AllErrors = schemas["AllErrors"];
5
+ export type IAllErrors = schemas["AllErrors"];
6
+ export type ErrorBody = schemas["ErrorBody"];
7
+ export type IErrorBody = schemas["ErrorBody"];
8
+ export type NotFoundWithSupportedLanguages = schemas["NotFoundWithSupportedLanguages"];
9
+ export type INotFoundWithSupportedLanguages = schemas["NotFoundWithSupportedLanguages"];
10
+ export type OEmbedDTO = schemas["OEmbedDTO"];
11
+ export type IOEmbedDTO = schemas["OEmbedDTO"];
12
+ export type ValidationErrorBody = schemas["ValidationErrorBody"];
13
+ export type IValidationErrorBody = schemas["ValidationErrorBody"];
14
+ export type ValidationMessage = schemas["ValidationMessage"];
15
+ export type IValidationMessage = schemas["ValidationMessage"];
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.openapi = void 0;
27
+ // This file was generated by OpenApiPlugin, do not edit it manually
28
+ var openapi = __importStar(require("./oembed-proxy-openapi"));
29
+ exports.openapi = openapi;
30
+ //# sourceMappingURL=oembed-proxy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oembed-proxy.js","sourceRoot":"","sources":["../oembed-proxy.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,oEAAoE;AACpE,8DAAkD;AAGzC,0BAAO"}