-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
103 changed files
with
3,070 additions
and
2,124 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
apps/server/src/infra/etherpad-client/etherpad-api-client/.openapi-generator-ignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# OpenAPI Generator Ignore | ||
# Generated by openapi-generator https://github.com/openapitools/openapi-generator | ||
|
||
# Use this file to prevent files from being overwritten by the generator. | ||
# The patterns follow closely to .gitignore or .dockerignore. | ||
|
||
# As an example, the C# client generator defines ApiClient.cs. | ||
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line: | ||
#ApiClient.cs | ||
|
||
# You can match any string of characters against a directory, file or extension with a single asterisk (*): | ||
#foo/*/qux | ||
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux | ||
|
||
# You can recursively match patterns against a directory, file or extension with a double asterisk (**): | ||
#foo/**/qux | ||
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux | ||
|
||
# You can also negate patterns with an exclamation (!). | ||
# For example, you can ignore all files in a docs folder with the file extension .md: | ||
#docs/*.md | ||
# Then explicitly reverse the ignore rule for a single file: | ||
#!docs/README.md | ||
.gitignore | ||
.npmignore | ||
git_push.sh | ||
FILES | ||
VERSION |
60 changes: 60 additions & 0 deletions
60
apps/server/src/infra/etherpad-client/etherpad-api-client/.openapi-generator/FILES
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
api.ts | ||
api/author-api.ts | ||
api/default-api.ts | ||
api/group-api.ts | ||
api/pad-api.ts | ||
api/session-api.ts | ||
base.ts | ||
common.ts | ||
configuration.ts | ||
index.ts | ||
models/create-author-using-get200-response-data.ts | ||
models/create-author-using-get200-response.ts | ||
models/create-diff-htmlusing-get200-response.ts | ||
models/create-group-using-get200-response-data.ts | ||
models/create-group-using-get200-response.ts | ||
models/create-group-using-get400-response.ts | ||
models/create-group-using-get401-response.ts | ||
models/create-group-using-get500-response.ts | ||
models/create-session-using-get200-response-data.ts | ||
models/create-session-using-get200-response.ts | ||
models/delete-group-using-get200-response.ts | ||
models/get-author-name-using-get200-response-data-info.ts | ||
models/get-author-name-using-get200-response-data.ts | ||
models/get-author-name-using-get200-response.ts | ||
models/get-chat-head-using-get200-response-data.ts | ||
models/get-chat-head-using-get200-response.ts | ||
models/get-chat-history-using-get200-response-data-messages-inner.ts | ||
models/get-chat-history-using-get200-response-data.ts | ||
models/get-chat-history-using-get200-response.ts | ||
models/get-htmlusing-get200-response-data.ts | ||
models/get-htmlusing-get200-response.ts | ||
models/get-last-edited-using-get200-response-data.ts | ||
models/get-last-edited-using-get200-response.ts | ||
models/get-public-status-using-get200-response-data.ts | ||
models/get-public-status-using-get200-response.ts | ||
models/get-read-only-idusing-get200-response-data.ts | ||
models/get-read-only-idusing-get200-response.ts | ||
models/get-revisions-count-using-get200-response-data.ts | ||
models/get-revisions-count-using-get200-response.ts | ||
models/get-session-info-using-get200-response-data-info.ts | ||
models/get-session-info-using-get200-response-data.ts | ||
models/get-session-info-using-get200-response.ts | ||
models/get-text-using-get200-response-data.ts | ||
models/get-text-using-get200-response.ts | ||
models/index.ts | ||
models/list-all-groups-using-get200-response-data.ts | ||
models/list-all-groups-using-get200-response.ts | ||
models/list-authors-of-pad-using-get200-response-data.ts | ||
models/list-authors-of-pad-using-get200-response.ts | ||
models/list-pads-using-get200-response-data.ts | ||
models/list-pads-using-get200-response.ts | ||
models/list-sessions-of-group-using-get200-response-data.ts | ||
models/list-sessions-of-group-using-get200-response.ts | ||
models/message.ts | ||
models/pad-users-count-using-get200-response-data.ts | ||
models/pad-users-count-using-get200-response.ts | ||
models/pad-users-using-get200-response-data.ts | ||
models/pad-users-using-get200-response.ts | ||
models/session-info.ts | ||
models/user-info.ts |
1 change: 1 addition & 0 deletions
1
apps/server/src/infra/etherpad-client/etherpad-api-client/.openapi-generator/VERSION
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
7.6.0 |
182 changes: 102 additions & 80 deletions
182
apps/server/src/infra/etherpad-client/etherpad-api-client/api/author-api.ts
Large diffs are not rendered by default.
Oops, something went wrong.
400 changes: 225 additions & 175 deletions
400
apps/server/src/infra/etherpad-client/etherpad-api-client/api/default-api.ts
Large diffs are not rendered by default.
Oops, something went wrong.
268 changes: 159 additions & 109 deletions
268
apps/server/src/infra/etherpad-client/etherpad-api-client/api/group-api.ts
Large diffs are not rendered by default.
Oops, something went wrong.
724 changes: 410 additions & 314 deletions
724
apps/server/src/infra/etherpad-client/etherpad-api-client/api/pad-api.ts
Large diffs are not rendered by default.
Oops, something went wrong.
116 changes: 65 additions & 51 deletions
116
apps/server/src/infra/etherpad-client/etherpad-api-client/api/session-api.ts
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
...c/infra/etherpad-client/etherpad-api-client/models/create-author-using-get200-response.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Etherpad API | ||
* Etherpad is a real-time collaborative editor scalable to thousands of simultaneous real time users. It provides full data export capabilities, and runs on your server, under your control. | ||
* | ||
* The version of the OpenAPI document: 1.3.0 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
// May contain unused imports in some cases | ||
// @ts-ignore | ||
import type { CreateAuthorUsingGET200ResponseData } from './create-author-using-get200-response-data'; | ||
|
||
/** | ||
* | ||
* @export | ||
* @interface CreateAuthorUsingGET200Response | ||
*/ | ||
export interface CreateAuthorUsingGET200Response { | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof CreateAuthorUsingGET200Response | ||
*/ | ||
'code'?: number; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof CreateAuthorUsingGET200Response | ||
*/ | ||
'message'?: string; | ||
/** | ||
* | ||
* @type {CreateAuthorUsingGET200ResponseData} | ||
* @memberof CreateAuthorUsingGET200Response | ||
*/ | ||
'data'?: CreateAuthorUsingGET200ResponseData; | ||
} | ||
|
42 changes: 42 additions & 0 deletions
42
...infra/etherpad-client/etherpad-api-client/models/create-diff-htmlusing-get200-response.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Etherpad API | ||
* Etherpad is a real-time collaborative editor scalable to thousands of simultaneous real time users. It provides full data export capabilities, and runs on your server, under your control. | ||
* | ||
* The version of the OpenAPI document: 1.3.0 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
|
||
/** | ||
* | ||
* @export | ||
* @interface CreateDiffHTMLUsingGET200Response | ||
*/ | ||
export interface CreateDiffHTMLUsingGET200Response { | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof CreateDiffHTMLUsingGET200Response | ||
*/ | ||
'code'?: number; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof CreateDiffHTMLUsingGET200Response | ||
*/ | ||
'message'?: string; | ||
/** | ||
* | ||
* @type {object} | ||
* @memberof CreateDiffHTMLUsingGET200Response | ||
*/ | ||
'data'?: object; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.