@coscine/api-client 3.0.0 → 3.1.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 (42) hide show
  1. package/dist/index.js +1803 -1614
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.umd.js +1803 -1614
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/lib/Coscine.Api/api.js +1069 -179
  6. package/dist/lib/Coscine.Api/api.js.map +1 -1
  7. package/dist/lib/apis.js +37 -37
  8. package/dist/lib/apis.js.map +1 -1
  9. package/dist/types/Coscine.Api/api.d.ts +801 -89
  10. package/dist/types/apis.d.ts +11 -6
  11. package/dist/types/index.d.ts +22 -12
  12. package/package.json +1 -1
  13. package/dist/lib/Coscine.Api.Blob/api.js +0 -301
  14. package/dist/lib/Coscine.Api.Blob/api.js.map +0 -1
  15. package/dist/lib/Coscine.Api.Blob/base.js +0 -65
  16. package/dist/lib/Coscine.Api.Blob/base.js.map +0 -1
  17. package/dist/lib/Coscine.Api.Blob/common.js +0 -153
  18. package/dist/lib/Coscine.Api.Blob/common.js.map +0 -1
  19. package/dist/lib/Coscine.Api.Blob/configuration.js +0 -43
  20. package/dist/lib/Coscine.Api.Blob/configuration.js.map +0 -1
  21. package/dist/lib/Coscine.Api.Blob/index.js +0 -32
  22. package/dist/lib/Coscine.Api.Blob/index.js.map +0 -1
  23. package/dist/lib/Coscine.Api.Tree/api.js +0 -231
  24. package/dist/lib/Coscine.Api.Tree/api.js.map +0 -1
  25. package/dist/lib/Coscine.Api.Tree/base.js +0 -65
  26. package/dist/lib/Coscine.Api.Tree/base.js.map +0 -1
  27. package/dist/lib/Coscine.Api.Tree/common.js +0 -153
  28. package/dist/lib/Coscine.Api.Tree/common.js.map +0 -1
  29. package/dist/lib/Coscine.Api.Tree/configuration.js +0 -43
  30. package/dist/lib/Coscine.Api.Tree/configuration.js.map +0 -1
  31. package/dist/lib/Coscine.Api.Tree/index.js +0 -32
  32. package/dist/lib/Coscine.Api.Tree/index.js.map +0 -1
  33. package/dist/types/Coscine.Api.Blob/api.d.ts +0 -155
  34. package/dist/types/Coscine.Api.Blob/base.d.ts +0 -55
  35. package/dist/types/Coscine.Api.Blob/common.d.ts +0 -65
  36. package/dist/types/Coscine.Api.Blob/configuration.d.ts +0 -83
  37. package/dist/types/Coscine.Api.Blob/index.d.ts +0 -13
  38. package/dist/types/Coscine.Api.Tree/api.d.ts +0 -122
  39. package/dist/types/Coscine.Api.Tree/base.d.ts +0 -55
  40. package/dist/types/Coscine.Api.Tree/common.d.ts +0 -65
  41. package/dist/types/Coscine.Api.Tree/configuration.d.ts +0 -83
  42. package/dist/types/Coscine.Api.Tree/index.d.ts +0 -13
@@ -1,122 +0,0 @@
1
- /**
2
- * Coscine.Api.Tree
3
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
- *
5
- * The version of the OpenAPI document: 2.10.0
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { Configuration } from './configuration';
13
- import { AxiosPromise, AxiosInstance } from 'axios';
14
- import { RequestArgs, BaseAPI } from './base';
15
- /**
16
- * TreeApi - axios parameter creator
17
- * @export
18
- */
19
- export declare const TreeApiAxiosParamCreator: (configuration?: Configuration) => {
20
- /**
21
- *
22
- * @summary This method retrieves the metadata
23
- * @param {string} resourceId Id of a resource
24
- * @param {string} [path] Path to the file
25
- * @param {string} [mimeType] Requested MimeType of the metadata
26
- * @param {*} [options] Override http request option.
27
- * @throws {RequiredError}
28
- */
29
- treeGetMetadataWithParameter: (resourceId: string, path?: string, mimeType?: string, options?: any) => Promise<RequestArgs>;
30
- /**
31
- *
32
- * @summary This method stores the metadata of the file
33
- * @param {string} resourceId Id of the resource
34
- * @param {string} [path] Path to the file
35
- * @param {string} [mimeType] Requested MimeType of the metadata
36
- * @param {*} [options] Override http request option.
37
- * @throws {RequiredError}
38
- */
39
- treeStoreMetadataForFileWithParameter: (resourceId: string, path?: string, mimeType?: string, options?: any) => Promise<RequestArgs>;
40
- };
41
- /**
42
- * TreeApi - functional programming interface
43
- * @export
44
- */
45
- export declare const TreeApiFp: (configuration?: Configuration) => {
46
- /**
47
- *
48
- * @summary This method retrieves the metadata
49
- * @param {string} resourceId Id of a resource
50
- * @param {string} [path] Path to the file
51
- * @param {string} [mimeType] Requested MimeType of the metadata
52
- * @param {*} [options] Override http request option.
53
- * @throws {RequiredError}
54
- */
55
- treeGetMetadataWithParameter(resourceId: string, path?: string, mimeType?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
56
- /**
57
- *
58
- * @summary This method stores the metadata of the file
59
- * @param {string} resourceId Id of the resource
60
- * @param {string} [path] Path to the file
61
- * @param {string} [mimeType] Requested MimeType of the metadata
62
- * @param {*} [options] Override http request option.
63
- * @throws {RequiredError}
64
- */
65
- treeStoreMetadataForFileWithParameter(resourceId: string, path?: string, mimeType?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
66
- };
67
- /**
68
- * TreeApi - factory interface
69
- * @export
70
- */
71
- export declare const TreeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
72
- /**
73
- *
74
- * @summary This method retrieves the metadata
75
- * @param {string} resourceId Id of a resource
76
- * @param {string} [path] Path to the file
77
- * @param {string} [mimeType] Requested MimeType of the metadata
78
- * @param {*} [options] Override http request option.
79
- * @throws {RequiredError}
80
- */
81
- treeGetMetadataWithParameter(resourceId: string, path?: string, mimeType?: string, options?: any): AxiosPromise<any>;
82
- /**
83
- *
84
- * @summary This method stores the metadata of the file
85
- * @param {string} resourceId Id of the resource
86
- * @param {string} [path] Path to the file
87
- * @param {string} [mimeType] Requested MimeType of the metadata
88
- * @param {*} [options] Override http request option.
89
- * @throws {RequiredError}
90
- */
91
- treeStoreMetadataForFileWithParameter(resourceId: string, path?: string, mimeType?: string, options?: any): AxiosPromise<any>;
92
- };
93
- /**
94
- * TreeApi - object-oriented interface
95
- * @export
96
- * @class TreeApi
97
- * @extends {BaseAPI}
98
- */
99
- export declare class TreeApi extends BaseAPI {
100
- /**
101
- *
102
- * @summary This method retrieves the metadata
103
- * @param {string} resourceId Id of a resource
104
- * @param {string} [path] Path to the file
105
- * @param {string} [mimeType] Requested MimeType of the metadata
106
- * @param {*} [options] Override http request option.
107
- * @throws {RequiredError}
108
- * @memberof TreeApi
109
- */
110
- treeGetMetadataWithParameter(resourceId: string, path?: string, mimeType?: string, options?: any): Promise<import("axios").AxiosResponse<any>>;
111
- /**
112
- *
113
- * @summary This method stores the metadata of the file
114
- * @param {string} resourceId Id of the resource
115
- * @param {string} [path] Path to the file
116
- * @param {string} [mimeType] Requested MimeType of the metadata
117
- * @param {*} [options] Override http request option.
118
- * @throws {RequiredError}
119
- * @memberof TreeApi
120
- */
121
- treeStoreMetadataForFileWithParameter(resourceId: string, path?: string, mimeType?: string, options?: any): Promise<import("axios").AxiosResponse<any>>;
122
- }
@@ -1,55 +0,0 @@
1
- /**
2
- * Coscine.Api.Tree
3
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
- *
5
- * The version of the OpenAPI document: 2.10.0
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { Configuration } from "./configuration";
13
- import { AxiosInstance } from 'axios';
14
- export declare const BASE_PATH: string;
15
- /**
16
- *
17
- * @export
18
- */
19
- export declare const COLLECTION_FORMATS: {
20
- csv: string;
21
- ssv: string;
22
- tsv: string;
23
- pipes: string;
24
- };
25
- /**
26
- *
27
- * @export
28
- * @interface RequestArgs
29
- */
30
- export interface RequestArgs {
31
- url: string;
32
- options: any;
33
- }
34
- /**
35
- *
36
- * @export
37
- * @class BaseAPI
38
- */
39
- export declare class BaseAPI {
40
- protected basePath: string;
41
- protected axios: AxiosInstance;
42
- protected configuration: Configuration | undefined;
43
- constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
44
- }
45
- /**
46
- *
47
- * @export
48
- * @class RequiredError
49
- * @extends {Error}
50
- */
51
- export declare class RequiredError extends Error {
52
- field: string;
53
- name: "RequiredError";
54
- constructor(field: string, msg?: string);
55
- }
@@ -1,65 +0,0 @@
1
- /**
2
- * Coscine.Api.Tree
3
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
- *
5
- * The version of the OpenAPI document: 2.10.0
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { Configuration } from "./configuration";
13
- import { RequestArgs } from "./base";
14
- import { AxiosInstance } from 'axios';
15
- /**
16
- *
17
- * @export
18
- */
19
- export declare const DUMMY_BASE_URL = "https://example.com";
20
- /**
21
- *
22
- * @throws {RequiredError}
23
- * @export
24
- */
25
- export declare const assertParamExists: (functionName: string, paramName: string, paramValue: unknown) => void;
26
- /**
27
- *
28
- * @export
29
- */
30
- export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration) => Promise<void>;
31
- /**
32
- *
33
- * @export
34
- */
35
- export declare const setBasicAuthToObject: (object: any, configuration?: Configuration) => void;
36
- /**
37
- *
38
- * @export
39
- */
40
- export declare const setBearerAuthToObject: (object: any, configuration?: Configuration) => Promise<void>;
41
- /**
42
- *
43
- * @export
44
- */
45
- export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration) => Promise<void>;
46
- /**
47
- *
48
- * @export
49
- */
50
- export declare const setSearchParams: (url: URL, ...objects: any[]) => void;
51
- /**
52
- *
53
- * @export
54
- */
55
- export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration) => any;
56
- /**
57
- *
58
- * @export
59
- */
60
- export declare const toPathString: (url: URL) => string;
61
- /**
62
- *
63
- * @export
64
- */
65
- export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => (axios?: AxiosInstance, basePath?: string) => Promise<import("axios").AxiosResponse<any>>;
@@ -1,83 +0,0 @@
1
- /**
2
- * Coscine.Api.Tree
3
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
- *
5
- * The version of the OpenAPI document: 2.10.0
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- export interface ConfigurationParameters {
13
- apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
14
- username?: string;
15
- password?: string;
16
- accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
17
- basePath?: string;
18
- baseOptions?: any;
19
- formDataCtor?: new () => any;
20
- }
21
- export declare class Configuration {
22
- /**
23
- * parameter for apiKey security
24
- * @param name security name
25
- * @memberof Configuration
26
- */
27
- apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
28
- /**
29
- * parameter for basic security
30
- *
31
- * @type {string}
32
- * @memberof Configuration
33
- */
34
- username?: string;
35
- /**
36
- * parameter for basic security
37
- *
38
- * @type {string}
39
- * @memberof Configuration
40
- */
41
- password?: string;
42
- /**
43
- * parameter for oauth2 security
44
- * @param name security name
45
- * @param scopes oauth2 scope
46
- * @memberof Configuration
47
- */
48
- accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
49
- /**
50
- * override base path
51
- *
52
- * @type {string}
53
- * @memberof Configuration
54
- */
55
- basePath?: string;
56
- /**
57
- * base options for axios calls
58
- *
59
- * @type {any}
60
- * @memberof Configuration
61
- */
62
- baseOptions?: any;
63
- /**
64
- * The FormData constructor that will be used to create multipart form data
65
- * requests. You can inject this here so that execution environments that
66
- * do not support the FormData class can still run the generated client.
67
- *
68
- * @type {new () => FormData}
69
- */
70
- formDataCtor?: new () => any;
71
- constructor(param?: ConfigurationParameters);
72
- /**
73
- * Check if the given MIME is a JSON MIME.
74
- * JSON MIME examples:
75
- * application/json
76
- * application/json; charset=UTF8
77
- * APPLICATION/JSON
78
- * application/vnd.company+json
79
- * @param mime - MIME (Multipurpose Internet Mail Extensions)
80
- * @return True if the given MIME is JSON, false otherwise.
81
- */
82
- isJsonMime(mime: string): boolean;
83
- }
@@ -1,13 +0,0 @@
1
- /**
2
- * Coscine.Api.Tree
3
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
- *
5
- * The version of the OpenAPI document: 2.10.0
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- export * from "./api";
13
- export * from "./configuration";