diff --git a/backend/openapi/components/responses/success-get-room.yaml b/backend/openapi/components/responses/success-get-room.yaml index 8571ac4..2e21f11 100644 --- a/backend/openapi/components/responses/success-get-room.yaml +++ b/backend/openapi/components/responses/success-get-room.yaml @@ -10,7 +10,7 @@ content: roomId: 'room-123' roomIdPrefix: 'room' creationDate: 1620000000000 - autoDeletionDate: 1620000800000 + autoDeletionDate: 1900000000000 preferences: chatPreferences: enabled: true @@ -32,7 +32,7 @@ content: roomId: 'room-123' roomIdPrefix: 'room' creationDate: 1620000000000 - autoDeletionDate: 1620000800000 + autoDeletionDate: 1900000000000 preferences: chatPreferences: enabled: true diff --git a/backend/openapi/components/responses/success-get-rooms.yaml b/backend/openapi/components/responses/success-get-rooms.yaml index 143c61e..ff4276a 100644 --- a/backend/openapi/components/responses/success-get-rooms.yaml +++ b/backend/openapi/components/responses/success-get-rooms.yaml @@ -19,7 +19,7 @@ content: - roomId: 'room-123' roomIdPrefix: 'room' creationDate: 1620000000000 - autoDeletionDate: 1620000800000 + autoDeletionDate: 1900000000000 preferences: chatPreferences: enabled: true @@ -32,7 +32,7 @@ content: - roomId: 'room-456' roomIdPrefix: 'room' creationDate: 1620001000000 - autoDeletionDate: 1620001800000 + autoDeletionDate: 1900000000000 preferences: chatPreferences: enabled: false @@ -62,7 +62,7 @@ content: - roomId: 'room-123' roomIdPrefix: 'room' creationDate: 1620000000000 - autoDeletionDate: 1620000800000 + autoDeletionDate: 1900000000000 preferences: chatPreferences: enabled: true @@ -73,7 +73,7 @@ content: - roomId: 'room-456' roomIdPrefix: 'room' creationDate: 1620001000000 - autoDeletionDate: 1620001800000 + autoDeletionDate: 1900000000000 preferences: chatPreferences: enabled: false diff --git a/backend/openapi/components/schemas/meet-room-options.yaml b/backend/openapi/components/schemas/meet-room-options.yaml index 10a38ee..60d88ab 100644 --- a/backend/openapi/components/schemas/meet-room-options.yaml +++ b/backend/openapi/components/schemas/meet-room-options.yaml @@ -2,7 +2,7 @@ type: object properties: autoDeletionDate: type: [number, 'null'] - example: 1620000000000 + example: 1900000000000 description: > The date and time when the room will be deleted (must be one hour in the future or more) represented in milliseconds since the Unix epoch. diff --git a/backend/openapi/components/schemas/meet-room.yaml b/backend/openapi/components/schemas/meet-room.yaml index 3ed6e54..9beadb6 100644 --- a/backend/openapi/components/schemas/meet-room.yaml +++ b/backend/openapi/components/schemas/meet-room.yaml @@ -17,7 +17,7 @@ properties: The creation date of the room in milliseconds since the Unix epoch. autoDeletionDate: type: [number, 'null'] - example: 1620000800000 + example: 1900000000000 description: > The date and time when the room will be deleted (must be one hour in the future or more) represented in milliseconds since the Unix epoch. diff --git a/backend/openapi/openvidu-meet-api.yaml b/backend/openapi/openvidu-meet-api.yaml index 7a16d3c..72d2a3a 100644 --- a/backend/openapi/openvidu-meet-api.yaml +++ b/backend/openapi/openvidu-meet-api.yaml @@ -2,7 +2,7 @@ openapi: 3.1.0 info: $ref: './info/info.yaml' servers: - - url: /meet/api/v1 + - url: /api/v1 description: OpenVidu Meet API tags: $ref: './tags/tags.yaml' diff --git a/backend/openapi/openvidu-meet-internal-api.yaml b/backend/openapi/openvidu-meet-internal-api.yaml index 8fafa4d..4f206a2 100644 --- a/backend/openapi/openvidu-meet-internal-api.yaml +++ b/backend/openapi/openvidu-meet-internal-api.yaml @@ -2,7 +2,7 @@ openapi: 3.1.0 info: $ref: './info/info.yaml' servers: - - url: /meet/internal-api/v1 + - url: /internal-api/v1 description: OpenVidu Meet Internal API tags: $ref: './tags/tags.yaml'