@grom.js/bot-api-spec 0.2.0 → 0.3.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/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ interface ApiTypeObject {
|
|
|
17
17
|
* Fields of the object representing this type.
|
|
18
18
|
*/
|
|
19
19
|
fields: Array<FieldOrParam>;
|
|
20
|
+
oneOf?: never;
|
|
20
21
|
}
|
|
21
22
|
interface ApiTypeOneOf {
|
|
22
23
|
/**
|
|
@@ -31,6 +32,7 @@ interface ApiTypeOneOf {
|
|
|
31
32
|
* Array of possible types this type can be.
|
|
32
33
|
*/
|
|
33
34
|
oneOf: Array<ValueTypeApiType>;
|
|
35
|
+
fields?: never;
|
|
34
36
|
}
|
|
35
37
|
interface ApiMethod {
|
|
36
38
|
/**
|
package/package.json
CHANGED