@teemill/projects 1.46.6 → 1.48.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.
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.46.6
7
+ * The version of the OpenAPI document: 1.48.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -21,10 +21,6 @@ import globalAxios from 'axios';
21
21
 
22
22
  export const BASE_PATH = "https://localhost:8080".replace(/\/+$/, "");
23
23
 
24
- /**
25
- *
26
- * @export
27
- */
28
24
  export const COLLECTION_FORMATS = {
29
25
  csv: ",",
30
26
  ssv: " ",
@@ -32,21 +28,11 @@ export const COLLECTION_FORMATS = {
32
28
  pipes: "|",
33
29
  };
34
30
 
35
- /**
36
- *
37
- * @export
38
- * @interface RequestArgs
39
- */
40
31
  export interface RequestArgs {
41
32
  url: string;
42
33
  options: RawAxiosRequestConfig;
43
34
  }
44
35
 
45
- /**
46
- *
47
- * @export
48
- * @class BaseAPI
49
- */
50
36
  export class BaseAPI {
51
37
  protected configuration: Configuration | undefined;
52
38
 
@@ -58,12 +44,6 @@ export class BaseAPI {
58
44
  }
59
45
  };
60
46
 
61
- /**
62
- *
63
- * @export
64
- * @class RequiredError
65
- * @extends {Error}
66
- */
67
47
  export class RequiredError extends Error {
68
48
  constructor(public field: string, msg?: string) {
69
49
  super(msg);
@@ -78,9 +58,5 @@ interface ServerMap {
78
58
  }[];
79
59
  }
80
60
 
81
- /**
82
- *
83
- * @export
84
- */
85
61
  export const operationServerMap: ServerMap = {
86
62
  }
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.46.6
7
+ * The version of the OpenAPI document: 1.48.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -12,7 +12,6 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
-
16
15
  import type { Configuration } from "./configuration";
17
16
  import type { RequestArgs } from "./base";
18
17
  import type { AxiosInstance, AxiosResponse } from 'axios';
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.46.6
7
+ * The version of the OpenAPI document: 1.48.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,49 +28,32 @@ export class Configuration {
28
28
  /**
29
29
  * parameter for apiKey security
30
30
  * @param name security name
31
- * @memberof Configuration
32
31
  */
33
32
  apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
34
33
  /**
35
34
  * parameter for basic security
36
- *
37
- * @type {string}
38
- * @memberof Configuration
39
35
  */
40
36
  username?: string;
41
37
  /**
42
38
  * parameter for basic security
43
- *
44
- * @type {string}
45
- * @memberof Configuration
46
39
  */
47
40
  password?: string;
48
41
  /**
49
42
  * parameter for oauth2 security
50
43
  * @param name security name
51
44
  * @param scopes oauth2 scope
52
- * @memberof Configuration
53
45
  */
54
46
  accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
55
47
  /**
56
48
  * override base path
57
- *
58
- * @type {string}
59
- * @memberof Configuration
60
49
  */
61
50
  basePath?: string;
62
51
  /**
63
52
  * override server index
64
- *
65
- * @type {number}
66
- * @memberof Configuration
67
53
  */
68
54
  serverIndex?: number;
69
55
  /**
70
56
  * base options for axios calls
71
- *
72
- * @type {any}
73
- * @memberof Configuration
74
57
  */
75
58
  baseOptions?: any;
76
59
  /**