@rlvt/datasources-openapi-client 1.0.389 → 1.0.391
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/build/api.d.ts +4 -4
- package/build/definitions.d.ts +4 -4
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -9963,7 +9963,7 @@ export default class {
|
|
|
9963
9963
|
columns: {
|
|
9964
9964
|
name: string;
|
|
9965
9965
|
description?: string | undefined;
|
|
9966
|
-
type:
|
|
9966
|
+
type: FieldMapType;
|
|
9967
9967
|
default?: string | number | boolean | undefined;
|
|
9968
9968
|
nullable: boolean;
|
|
9969
9969
|
}[];
|
|
@@ -9971,7 +9971,7 @@ export default class {
|
|
|
9971
9971
|
query: string;
|
|
9972
9972
|
name: string;
|
|
9973
9973
|
description?: string | undefined;
|
|
9974
|
-
type:
|
|
9974
|
+
type: FieldMapType;
|
|
9975
9975
|
nullable: boolean;
|
|
9976
9976
|
}[] | undefined;
|
|
9977
9977
|
uniqueKeys?: {
|
|
@@ -10111,7 +10111,7 @@ export default class {
|
|
|
10111
10111
|
columns: {
|
|
10112
10112
|
name: string;
|
|
10113
10113
|
description?: string | undefined;
|
|
10114
|
-
type:
|
|
10114
|
+
type: FieldMapType;
|
|
10115
10115
|
default?: string | number | boolean | undefined;
|
|
10116
10116
|
nullable: boolean;
|
|
10117
10117
|
}[];
|
|
@@ -10119,7 +10119,7 @@ export default class {
|
|
|
10119
10119
|
query: string;
|
|
10120
10120
|
name: string;
|
|
10121
10121
|
description?: string | undefined;
|
|
10122
|
-
type:
|
|
10122
|
+
type: FieldMapType;
|
|
10123
10123
|
nullable: boolean;
|
|
10124
10124
|
}[] | undefined;
|
|
10125
10125
|
uniqueKeys?: {
|
package/build/definitions.d.ts
CHANGED
|
@@ -5145,7 +5145,7 @@ export declare type CreateSchemaBody = {
|
|
|
5145
5145
|
datasourceId: string;
|
|
5146
5146
|
columns: {
|
|
5147
5147
|
name: string;
|
|
5148
|
-
type:
|
|
5148
|
+
type: FieldMapType;
|
|
5149
5149
|
nullable: boolean;
|
|
5150
5150
|
default?: string | number | (false) | (true) | string;
|
|
5151
5151
|
description?: string;
|
|
@@ -5153,7 +5153,7 @@ export declare type CreateSchemaBody = {
|
|
|
5153
5153
|
description?: string;
|
|
5154
5154
|
virtualColumns?: {
|
|
5155
5155
|
name: string;
|
|
5156
|
-
type:
|
|
5156
|
+
type: FieldMapType;
|
|
5157
5157
|
query: string;
|
|
5158
5158
|
nullable: boolean;
|
|
5159
5159
|
description?: string;
|
|
@@ -5335,7 +5335,7 @@ export declare type UpdateSchemaBody = {
|
|
|
5335
5335
|
datasourceId: string;
|
|
5336
5336
|
columns: {
|
|
5337
5337
|
name: string;
|
|
5338
|
-
type:
|
|
5338
|
+
type: FieldMapType;
|
|
5339
5339
|
nullable: boolean;
|
|
5340
5340
|
default?: string | number | (false) | (true) | string;
|
|
5341
5341
|
description?: string;
|
|
@@ -5343,7 +5343,7 @@ export declare type UpdateSchemaBody = {
|
|
|
5343
5343
|
description?: string;
|
|
5344
5344
|
virtualColumns?: {
|
|
5345
5345
|
name: string;
|
|
5346
|
-
type:
|
|
5346
|
+
type: FieldMapType;
|
|
5347
5347
|
query: string;
|
|
5348
5348
|
nullable: boolean;
|
|
5349
5349
|
description?: string;
|
package/package.json
CHANGED