Skip to content

Commit

Permalink
Generated clients from rev: ac06a68cf8fc5a015b6d4e188254f1c52d830253
Browse files Browse the repository at this point in the history
  • Loading branch information
odlbot committed Sep 23, 2024
1 parent da6f090 commit f0e0cf4
Show file tree
Hide file tree
Showing 5 changed files with 108 additions and 417 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.9.18
2024.9.23
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.9.18"
version = "2024.9.23"
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.9.18",
"version": "2024.9.23",
"description": "Library for requesting data from mit-open APIs",
"main": "dist/cjs/index.js",
"scripts": {
Expand Down
66 changes: 35 additions & 31 deletions src/typescript/mit-open-api-axios/src/v0/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,34 @@ export const CurrentEducationEnum = {
export type CurrentEducationEnum = typeof CurrentEducationEnum[keyof typeof CurrentEducationEnum];


/**
* * `online` - Online * `hybrid` - Hybrid * `in_person` - In-Person * `offline` - Offline
* @export
* @enum {string}
*/

export const DeliveryEnum = {
/**
* Online
*/
Online: 'online',
/**
* Hybrid
*/
Hybrid: 'hybrid',
/**
* In-Person
*/
InPerson: 'in_person',
/**
* Offline
*/
Offline: 'offline'
} as const;

export type DeliveryEnum = typeof DeliveryEnum[keyof typeof DeliveryEnum];


/**
* Serializer for Channel model of type department
* @export
Expand Down Expand Up @@ -984,30 +1012,6 @@ export const GoalsEnum = {
export type GoalsEnum = typeof GoalsEnum[keyof typeof GoalsEnum];


/**
* * `online` - Online * `hybrid` - Hybrid * `in_person` - In-Person
* @export
* @enum {string}
*/

export const LearningFormatEnum = {
/**
* Online
*/
Online: 'online',
/**
* Hybrid
*/
Hybrid: 'hybrid',
/**
* In-Person
*/
InPerson: 'in_person'
} as const;

export type LearningFormatEnum = typeof LearningFormatEnum[keyof typeof LearningFormatEnum];


/**
* Serializer for a minimal preview of Learning Paths
* @export
Expand Down Expand Up @@ -1607,10 +1611,10 @@ export interface PatchedProfileRequest {
'time_commitment'?: PatchedProfileRequestTimeCommitment;
/**
*
* @type {Array<LearningFormatEnum>}
* @type {Array<DeliveryEnum>}
* @memberof PatchedProfileRequest
*/
'learning_format'?: Array<LearningFormatEnum>;
'delivery'?: Array<DeliveryEnum>;
}
/**
* @type PatchedProfileRequestCertificateDesired
Expand Down Expand Up @@ -1836,7 +1840,7 @@ export interface PreferencesSearch {
* @type {Array<string>}
* @memberof PreferencesSearch
*/
'learning_format'?: Array<string>;
'delivery'?: Array<string>;
}
/**
* Serializer for Profile
Expand Down Expand Up @@ -1954,10 +1958,10 @@ export interface Profile {
'time_commitment'?: PatchedProfileRequestTimeCommitment;
/**
*
* @type {Array<LearningFormatEnum>}
* @type {Array<DeliveryEnum>}
* @memberof Profile
*/
'learning_format'?: Array<LearningFormatEnum>;
'delivery'?: Array<DeliveryEnum>;
/**
*
* @type {PreferencesSearch}
Expand Down Expand Up @@ -2057,10 +2061,10 @@ export interface ProfileRequest {
'time_commitment'?: PatchedProfileRequestTimeCommitment;
/**
*
* @type {Array<LearningFormatEnum>}
* @type {Array<DeliveryEnum>}
* @memberof ProfileRequest
*/
'learning_format'?: Array<LearningFormatEnum>;
'delivery'?: Array<DeliveryEnum>;
}
/**
* Serializer for Program Certificates
Expand Down
Loading

0 comments on commit f0e0cf4

Please sign in to comment.