Skip to content

Commit

Permalink
Generated clients from rev: 2d2eb957ce6d0d89ab275330e3287ff4e83fd048
Browse files Browse the repository at this point in the history
  • Loading branch information
odlbot committed Dec 10, 2024
1 parent 7dbf2f0 commit 5270df9
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.12.9
2024.12.10
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "open-api-clients"
version = "2024.12.9"
version = "2024.12.10"
description = ""
authors = []
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/typescript/mit-open-api-axios/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mitodl/open-api-axios",
"version": "2024.12.9",
"version": "2024.12.10",
"description": "Library for requesting data from mit-open APIs",
"main": "dist/cjs/index.js",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions src/typescript/mit-open-api-axios/src/v0/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3089,6 +3089,12 @@ export interface PodcastEpisode {
* @memberof PodcastEpisode
*/
'id': number;
/**
* Get the podcast id(s) the episode belongs to
* @type {Array<string>}
* @memberof PodcastEpisode
*/
'podcasts': Array<string>;
/**
*
* @type {string}
Expand Down
16 changes: 13 additions & 3 deletions src/typescript/mit-open-api-axios/src/v1/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ export interface ContentFileSearchResponseMetadataAggregationsValueInner {
'doc_count': number;
}
/**
* * `page` - page * `file` - file * `vertical` - vertical
* * `page` - page * `file` - file * `video` - video * `pdf` - pdf
* @export
* @enum {string}
*/
Expand All @@ -441,9 +441,13 @@ export const ContentTypeEnum = {
*/
File: 'file',
/**
* vertical
* video
*/
Video: 'video',
/**
* pdf
*/
Vertical: 'vertical'
Pdf: 'pdf'
} as const;

export type ContentTypeEnum = typeof ContentTypeEnum[keyof typeof ContentTypeEnum];
Expand Down Expand Up @@ -3971,6 +3975,12 @@ export interface PodcastEpisode {
* @memberof PodcastEpisode
*/
'id': number;
/**
* Get the podcast id(s) the episode belongs to
* @type {Array<string>}
* @memberof PodcastEpisode
*/
'podcasts': Array<string>;
/**
*
* @type {string}
Expand Down

0 comments on commit 5270df9

Please sign in to comment.