keplar-api 0.0.25 → 0.0.27

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## keplar-api@0.0.25
1
+ ## keplar-api@0.0.27
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install keplar-api@0.0.25 --save
39
+ npm install keplar-api@0.0.27 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -15,6 +15,12 @@
15
15
  * @interface ApiProjectsProjectIdSearchTranscriptsPostRequest
16
16
  */
17
17
  export interface ApiProjectsProjectIdSearchTranscriptsPostRequest {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof ApiProjectsProjectIdSearchTranscriptsPostRequest
22
+ */
23
+ sampleN?: number;
18
24
  /**
19
25
  *
20
26
  * @type {number}
@@ -32,6 +32,7 @@ function ApiProjectsProjectIdSearchTranscriptsPostRequestFromJSONTyped(json, ign
32
32
  return json;
33
33
  }
34
34
  return {
35
+ 'sampleN': json['sampleN'] == null ? undefined : json['sampleN'],
35
36
  'page': json['page'] == null ? undefined : json['page'],
36
37
  'limit': json['limit'] == null ? undefined : json['limit'],
37
38
  };
@@ -45,6 +46,7 @@ function ApiProjectsProjectIdSearchTranscriptsPostRequestToJSONTyped(value, igno
45
46
  return value;
46
47
  }
47
48
  return {
49
+ 'sampleN': value['sampleN'],
48
50
  'page': value['page'],
49
51
  'limit': value['limit'],
50
52
  };
@@ -9,6 +9,8 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { ArtifactDataCreate } from './ArtifactDataCreate';
13
+ import type { ArtifactMetadata } from './ArtifactMetadata';
12
14
  /**
13
15
  *
14
16
  * @export
@@ -33,6 +35,24 @@ export interface CreateArtifactRequest {
33
35
  * @memberof CreateArtifactRequest
34
36
  */
35
37
  query?: string;
38
+ /**
39
+ *
40
+ * @type {ArtifactDataCreate}
41
+ * @memberof CreateArtifactRequest
42
+ */
43
+ data?: ArtifactDataCreate;
44
+ /**
45
+ *
46
+ * @type {ArtifactMetadata}
47
+ * @memberof CreateArtifactRequest
48
+ */
49
+ metadata?: ArtifactMetadata;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof CreateArtifactRequest
54
+ */
55
+ title?: string;
36
56
  }
37
57
  /**
38
58
  * @export
@@ -19,6 +19,8 @@ exports.CreateArtifactRequestFromJSON = CreateArtifactRequestFromJSON;
19
19
  exports.CreateArtifactRequestFromJSONTyped = CreateArtifactRequestFromJSONTyped;
20
20
  exports.CreateArtifactRequestToJSON = CreateArtifactRequestToJSON;
21
21
  exports.CreateArtifactRequestToJSONTyped = CreateArtifactRequestToJSONTyped;
22
+ var ArtifactDataCreate_1 = require("./ArtifactDataCreate");
23
+ var ArtifactMetadata_1 = require("./ArtifactMetadata");
22
24
  /**
23
25
  * @export
24
26
  */
@@ -43,6 +45,9 @@ function CreateArtifactRequestFromJSONTyped(json, ignoreDiscriminator) {
43
45
  'kind': json['kind'] == null ? undefined : json['kind'],
44
46
  'versionGroupId': json['versionGroupId'] == null ? undefined : json['versionGroupId'],
45
47
  'query': json['query'] == null ? undefined : json['query'],
48
+ 'data': json['data'] == null ? undefined : (0, ArtifactDataCreate_1.ArtifactDataCreateFromJSON)(json['data']),
49
+ 'metadata': json['metadata'] == null ? undefined : (0, ArtifactMetadata_1.ArtifactMetadataFromJSON)(json['metadata']),
50
+ 'title': json['title'] == null ? undefined : json['title'],
46
51
  };
47
52
  }
48
53
  function CreateArtifactRequestToJSON(json) {
@@ -57,5 +62,8 @@ function CreateArtifactRequestToJSONTyped(value, ignoreDiscriminator) {
57
62
  'kind': value['kind'],
58
63
  'versionGroupId': value['versionGroupId'],
59
64
  'query': value['query'],
65
+ 'data': (0, ArtifactDataCreate_1.ArtifactDataCreateToJSON)(value['data']),
66
+ 'metadata': (0, ArtifactMetadata_1.ArtifactMetadataToJSON)(value['metadata']),
67
+ 'title': value['title'],
60
68
  };
61
69
  }
@@ -21,6 +21,12 @@ export interface FeatureConfig {
21
21
  * @memberof FeatureConfig
22
22
  */
23
23
  disableKeplarPanelCreation?: boolean;
24
+ /**
25
+ *
26
+ * @type {boolean}
27
+ * @memberof FeatureConfig
28
+ */
29
+ signupDisabled?: boolean;
24
30
  }
25
31
  /**
26
32
  * Check if a given object implements the FeatureConfig interface.
@@ -33,6 +33,7 @@ function FeatureConfigFromJSONTyped(json, ignoreDiscriminator) {
33
33
  }
34
34
  return {
35
35
  'disableKeplarPanelCreation': json['disableKeplarPanelCreation'] == null ? undefined : json['disableKeplarPanelCreation'],
36
+ 'signupDisabled': json['signupDisabled'] == null ? undefined : json['signupDisabled'],
36
37
  };
37
38
  }
38
39
  function FeatureConfigToJSON(json) {
@@ -45,5 +46,6 @@ function FeatureConfigToJSONTyped(value, ignoreDiscriminator) {
45
46
  }
46
47
  return {
47
48
  'disableKeplarPanelCreation': value['disableKeplarPanelCreation'],
49
+ 'signupDisabled': value['signupDisabled'],
48
50
  };
49
51
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keplar-api",
3
- "version": "0.0.25",
3
+ "version": "0.0.27",
4
4
  "description": "OpenAPI client for keplar-api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -19,6 +19,12 @@ import { mapValues } from '../runtime';
19
19
  * @interface ApiProjectsProjectIdSearchTranscriptsPostRequest
20
20
  */
21
21
  export interface ApiProjectsProjectIdSearchTranscriptsPostRequest {
22
+ /**
23
+ *
24
+ * @type {number}
25
+ * @memberof ApiProjectsProjectIdSearchTranscriptsPostRequest
26
+ */
27
+ sampleN?: number;
22
28
  /**
23
29
  *
24
30
  * @type {number}
@@ -50,6 +56,7 @@ export function ApiProjectsProjectIdSearchTranscriptsPostRequestFromJSONTyped(js
50
56
  }
51
57
  return {
52
58
 
59
+ 'sampleN': json['sampleN'] == null ? undefined : json['sampleN'],
53
60
  'page': json['page'] == null ? undefined : json['page'],
54
61
  'limit': json['limit'] == null ? undefined : json['limit'],
55
62
  };
@@ -66,6 +73,7 @@ export function ApiProjectsProjectIdSearchTranscriptsPostRequestToJSONTyped(valu
66
73
 
67
74
  return {
68
75
 
76
+ 'sampleN': value['sampleN'],
69
77
  'page': value['page'],
70
78
  'limit': value['limit'],
71
79
  };
@@ -13,6 +13,21 @@
13
13
  */
14
14
 
15
15
  import { mapValues } from '../runtime';
16
+ import type { ArtifactDataCreate } from './ArtifactDataCreate';
17
+ import {
18
+ ArtifactDataCreateFromJSON,
19
+ ArtifactDataCreateFromJSONTyped,
20
+ ArtifactDataCreateToJSON,
21
+ ArtifactDataCreateToJSONTyped,
22
+ } from './ArtifactDataCreate';
23
+ import type { ArtifactMetadata } from './ArtifactMetadata';
24
+ import {
25
+ ArtifactMetadataFromJSON,
26
+ ArtifactMetadataFromJSONTyped,
27
+ ArtifactMetadataToJSON,
28
+ ArtifactMetadataToJSONTyped,
29
+ } from './ArtifactMetadata';
30
+
16
31
  /**
17
32
  *
18
33
  * @export
@@ -37,6 +52,24 @@ export interface CreateArtifactRequest {
37
52
  * @memberof CreateArtifactRequest
38
53
  */
39
54
  query?: string;
55
+ /**
56
+ *
57
+ * @type {ArtifactDataCreate}
58
+ * @memberof CreateArtifactRequest
59
+ */
60
+ data?: ArtifactDataCreate;
61
+ /**
62
+ *
63
+ * @type {ArtifactMetadata}
64
+ * @memberof CreateArtifactRequest
65
+ */
66
+ metadata?: ArtifactMetadata;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof CreateArtifactRequest
71
+ */
72
+ title?: string;
40
73
  }
41
74
 
42
75
 
@@ -70,6 +103,9 @@ export function CreateArtifactRequestFromJSONTyped(json: any, ignoreDiscriminato
70
103
  'kind': json['kind'] == null ? undefined : json['kind'],
71
104
  'versionGroupId': json['versionGroupId'] == null ? undefined : json['versionGroupId'],
72
105
  'query': json['query'] == null ? undefined : json['query'],
106
+ 'data': json['data'] == null ? undefined : ArtifactDataCreateFromJSON(json['data']),
107
+ 'metadata': json['metadata'] == null ? undefined : ArtifactMetadataFromJSON(json['metadata']),
108
+ 'title': json['title'] == null ? undefined : json['title'],
73
109
  };
74
110
  }
75
111
 
@@ -87,6 +123,9 @@ export function CreateArtifactRequestToJSONTyped(value?: CreateArtifactRequest |
87
123
  'kind': value['kind'],
88
124
  'versionGroupId': value['versionGroupId'],
89
125
  'query': value['query'],
126
+ 'data': ArtifactDataCreateToJSON(value['data']),
127
+ 'metadata': ArtifactMetadataToJSON(value['metadata']),
128
+ 'title': value['title'],
90
129
  };
91
130
  }
92
131
 
@@ -25,6 +25,12 @@ export interface FeatureConfig {
25
25
  * @memberof FeatureConfig
26
26
  */
27
27
  disableKeplarPanelCreation?: boolean;
28
+ /**
29
+ *
30
+ * @type {boolean}
31
+ * @memberof FeatureConfig
32
+ */
33
+ signupDisabled?: boolean;
28
34
  }
29
35
 
30
36
  /**
@@ -45,6 +51,7 @@ export function FeatureConfigFromJSONTyped(json: any, ignoreDiscriminator: boole
45
51
  return {
46
52
 
47
53
  'disableKeplarPanelCreation': json['disableKeplarPanelCreation'] == null ? undefined : json['disableKeplarPanelCreation'],
54
+ 'signupDisabled': json['signupDisabled'] == null ? undefined : json['signupDisabled'],
48
55
  };
49
56
  }
50
57
 
@@ -60,6 +67,7 @@ export function FeatureConfigToJSONTyped(value?: FeatureConfig | null, ignoreDis
60
67
  return {
61
68
 
62
69
  'disableKeplarPanelCreation': value['disableKeplarPanelCreation'],
70
+ 'signupDisabled': value['signupDisabled'],
63
71
  };
64
72
  }
65
73