@daytonaio/api-client 0.8.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/.openapi-generator/FILES +10 -0
  2. package/README.md +2 -2
  3. package/api/toolbox-api.ts +626 -0
  4. package/dist/api/toolbox-api.d.ts +280 -0
  5. package/dist/api/toolbox-api.js +577 -0
  6. package/dist/esm/api/toolbox-api.d.ts +280 -0
  7. package/dist/esm/api/toolbox-api.js +577 -0
  8. package/dist/esm/models/completion-context.d.ts +30 -0
  9. package/dist/esm/models/completion-context.js +14 -0
  10. package/dist/esm/models/completion-item.d.ts +60 -0
  11. package/dist/esm/models/completion-item.js +14 -0
  12. package/dist/esm/models/completion-list.d.ts +31 -0
  13. package/dist/esm/models/completion-list.js +14 -0
  14. package/dist/esm/models/index.d.ts +10 -0
  15. package/dist/esm/models/index.js +10 -0
  16. package/dist/esm/models/lsp-completion-params.d.ts +50 -0
  17. package/dist/esm/models/lsp-completion-params.js +14 -0
  18. package/dist/esm/models/lsp-document-request.d.ts +36 -0
  19. package/dist/esm/models/lsp-document-request.js +14 -0
  20. package/dist/esm/models/lsp-location.d.ts +31 -0
  21. package/dist/esm/models/lsp-location.js +14 -0
  22. package/dist/esm/models/lsp-server-request.d.ts +30 -0
  23. package/dist/esm/models/lsp-server-request.js +14 -0
  24. package/dist/esm/models/lsp-symbol.d.ts +37 -0
  25. package/dist/esm/models/lsp-symbol.js +14 -0
  26. package/dist/esm/models/position.d.ts +30 -0
  27. package/dist/esm/models/position.js +14 -0
  28. package/dist/esm/models/range.d.ts +31 -0
  29. package/dist/esm/models/range.js +14 -0
  30. package/dist/models/completion-context.d.ts +30 -0
  31. package/dist/models/completion-context.js +15 -0
  32. package/dist/models/completion-item.d.ts +60 -0
  33. package/dist/models/completion-item.js +15 -0
  34. package/dist/models/completion-list.d.ts +31 -0
  35. package/dist/models/completion-list.js +15 -0
  36. package/dist/models/index.d.ts +10 -0
  37. package/dist/models/index.js +10 -0
  38. package/dist/models/lsp-completion-params.d.ts +50 -0
  39. package/dist/models/lsp-completion-params.js +15 -0
  40. package/dist/models/lsp-document-request.d.ts +36 -0
  41. package/dist/models/lsp-document-request.js +15 -0
  42. package/dist/models/lsp-location.d.ts +31 -0
  43. package/dist/models/lsp-location.js +15 -0
  44. package/dist/models/lsp-server-request.d.ts +30 -0
  45. package/dist/models/lsp-server-request.js +15 -0
  46. package/dist/models/lsp-symbol.d.ts +37 -0
  47. package/dist/models/lsp-symbol.js +15 -0
  48. package/dist/models/position.d.ts +30 -0
  49. package/dist/models/position.js +15 -0
  50. package/dist/models/range.d.ts +31 -0
  51. package/dist/models/range.js +15 -0
  52. package/models/completion-context.ts +36 -0
  53. package/models/completion-item.ts +66 -0
  54. package/models/completion-list.ts +39 -0
  55. package/models/index.ts +10 -0
  56. package/models/lsp-completion-params.ts +60 -0
  57. package/models/lsp-document-request.ts +42 -0
  58. package/models/lsp-location.ts +39 -0
  59. package/models/lsp-server-request.ts +36 -0
  60. package/models/lsp-symbol.ts +45 -0
  61. package/models/position.ts +36 -0
  62. package/models/range.ts +39 -0
  63. package/package.json +1 -1
@@ -0,0 +1,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Daytona Workspaces
5
+ * Daytona Workspaces API Docs
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface LspDocumentRequest
21
+ */
22
+ export interface LspDocumentRequest {
23
+ /**
24
+ * Language identifier
25
+ * @type {string}
26
+ * @memberof LspDocumentRequest
27
+ */
28
+ 'languageId': string;
29
+ /**
30
+ * Path to the project
31
+ * @type {string}
32
+ * @memberof LspDocumentRequest
33
+ */
34
+ 'pathToProject': string;
35
+ /**
36
+ * Document URI
37
+ * @type {string}
38
+ * @memberof LspDocumentRequest
39
+ */
40
+ 'uri': string;
41
+ }
42
+
@@ -0,0 +1,39 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Daytona Workspaces
5
+ * Daytona Workspaces API Docs
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { Range } from './range';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface LspLocation
24
+ */
25
+ export interface LspLocation {
26
+ /**
27
+ *
28
+ * @type {Range}
29
+ * @memberof LspLocation
30
+ */
31
+ 'range': Range;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof LspLocation
36
+ */
37
+ 'uri': string;
38
+ }
39
+
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Daytona Workspaces
5
+ * Daytona Workspaces API Docs
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface LspServerRequest
21
+ */
22
+ export interface LspServerRequest {
23
+ /**
24
+ * Language identifier
25
+ * @type {string}
26
+ * @memberof LspServerRequest
27
+ */
28
+ 'languageId': string;
29
+ /**
30
+ * Path to the project
31
+ * @type {string}
32
+ * @memberof LspServerRequest
33
+ */
34
+ 'pathToProject': string;
35
+ }
36
+
@@ -0,0 +1,45 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Daytona Workspaces
5
+ * Daytona Workspaces API Docs
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { LspLocation } from './lsp-location';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface LspSymbol
24
+ */
25
+ export interface LspSymbol {
26
+ /**
27
+ *
28
+ * @type {number}
29
+ * @memberof LspSymbol
30
+ */
31
+ 'kind': number;
32
+ /**
33
+ *
34
+ * @type {LspLocation}
35
+ * @memberof LspSymbol
36
+ */
37
+ 'location': LspLocation;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof LspSymbol
42
+ */
43
+ 'name': string;
44
+ }
45
+
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Daytona Workspaces
5
+ * Daytona Workspaces API Docs
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface Position
21
+ */
22
+ export interface Position {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof Position
27
+ */
28
+ 'line': number;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof Position
33
+ */
34
+ 'character': number;
35
+ }
36
+
@@ -0,0 +1,39 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Daytona Workspaces
5
+ * Daytona Workspaces API Docs
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { Position } from './position';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface Range
24
+ */
25
+ export interface Range {
26
+ /**
27
+ *
28
+ * @type {Position}
29
+ * @memberof Range
30
+ */
31
+ 'start': Position;
32
+ /**
33
+ *
34
+ * @type {Position}
35
+ * @memberof Range
36
+ */
37
+ 'end': Position;
38
+ }
39
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daytonaio/api-client",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "OpenAPI client for @daytonaio/api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {