keplar-api 0.0.25 → 0.0.26
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.
|
|
1
|
+
## keplar-api@0.0.26
|
|
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.
|
|
39
|
+
npm install keplar-api@0.0.26 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -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
|
@@ -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
|
|