Cleans up .gitignore and typings

Removes redundant entries from .gitignore to streamline the ignored files list.

Deletes an obsolete properties model file, simplifying the codebase and removing unnecessary files.
This commit is contained in:
Carlos Santos 2025-07-22 17:21:06 +02:00
parent 0debf5b35b
commit f4c2ab42f8
2 changed files with 1 additions and 39 deletions

7
.gitignore vendored
View File

@ -61,9 +61,4 @@ frontend/webcomponent/test-results/.last-run.json
frontend/webcomponent/test_localstorage_state.json
**test-results/**
frontend/webcomponent/src/typings/ce/command.model.d.ts
frontend/webcomponent/src/typings/ce/command.model.ts
frontend/webcomponent/src/typings/ce/event.model.d.ts
frontend/webcomponent/src/typings/ce/event.model.ts
frontend/webcomponent/src/typings/ce/message.type.d.ts
frontend/webcomponent/src/typings/ce/message.type.ts
frontend/webcomponent/src/typings/

View File

@ -1,33 +0,0 @@
/**
* THIS HEADER IS AUTOGENERATED. DO NOT MODIFY MANUALLY.
* ! For any changes, please update the '/openvidu-meet/typings' directory.
**/
export enum WebComponentProperty {
/**
* The base URL of the OpenVidu Meet room.
* @required This attribute is required unless `recording-url` is provided.
*/
ROOM_URL = 'room-url',
/**
* The URL of a recording to view.
* @required This attribute is required if `room-url` is not provided.
*/
RECORDING_URL = 'recording-url',
/**
* Display name for the local participant.
*/
PARTICIPANT_NAME = 'participant-name',
/**
* URL to redirect to when leaving the meeting.
* Redirection occurs after the `CLOSED` event fires.
*/
LEAVE_REDIRECT_URL = 'leave-redirect-url',
/**
* Whether to show only recordings instead of live meetings.
*/
SHOW_ONLY_RECORDINGS = 'show-only-recordings'
}