Skip to content

Commit

Permalink
rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
pjaudiomv committed Nov 9, 2024
1 parent 9ad9cf2 commit e659448
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion openapi.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/models/Meeting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,10 @@ export interface Meeting {
comments?: string;
/**
*
* @type {{ [key: string]: string; }}
* @type {object}
* @memberof Meeting
*/
customFields?: { [key: string]: string; };
customFields?: object;
/**
*
* @type {number}
Expand Down
4 changes: 2 additions & 2 deletions src/models/MeetingBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,10 @@ export interface MeetingBase {
comments?: string;
/**
*
* @type {{ [key: string]: string; }}
* @type {object}
* @memberof MeetingBase
*/
customFields?: { [key: string]: string; };
customFields?: object;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/models/MeetingCreate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,10 @@ export interface MeetingCreate {
comments?: string;
/**
*
* @type {{ [key: string]: string; }}
* @type {object}
* @memberof MeetingCreate
*/
customFields?: { [key: string]: string; };
customFields?: object;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/models/MeetingPartialUpdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,10 @@ export interface MeetingPartialUpdate {
comments?: string;
/**
*
* @type {{ [key: string]: string; }}
* @type {object}
* @memberof MeetingPartialUpdate
*/
customFields?: { [key: string]: string; };
customFields?: object;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/models/MeetingUpdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,10 @@ export interface MeetingUpdate {
comments?: string;
/**
*
* @type {{ [key: string]: string; }}
* @type {object}
* @memberof MeetingUpdate
*/
customFields?: { [key: string]: string; };
customFields?: object;
}

/**
Expand Down

0 comments on commit e659448

Please sign in to comment.