@explo-tech/fido-api 0.0.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.
@@ -0,0 +1,32 @@
1
+ /**
2
+ * fido API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: unspecified
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import { RequestFile } from './models';
14
+ import { Namespace } from './namespace';
15
+
16
+ export class NamespaceRequest {
17
+ 'namespace': Namespace;
18
+
19
+ static discriminator: string | undefined = undefined;
20
+
21
+ static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
22
+ {
23
+ "name": "namespace",
24
+ "baseName": "namespace",
25
+ "type": "Namespace"
26
+ } ];
27
+
28
+ static getAttributeTypeMap() {
29
+ return NamespaceRequest.attributeTypeMap;
30
+ }
31
+ }
32
+
@@ -0,0 +1,32 @@
1
+ /**
2
+ * fido API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: unspecified
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import { RequestFile } from './models';
14
+ import { DataSource } from './dataSource';
15
+
16
+ export class NamespaceResponseMetadata {
17
+ 'dataSources': Array<DataSource>;
18
+
19
+ static discriminator: string | undefined = undefined;
20
+
21
+ static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
22
+ {
23
+ "name": "dataSources",
24
+ "baseName": "dataSources",
25
+ "type": "Array<DataSource>"
26
+ } ];
27
+
28
+ static getAttributeTypeMap() {
29
+ return NamespaceResponseMetadata.attributeTypeMap;
30
+ }
31
+ }
32
+
@@ -0,0 +1,37 @@
1
+ /**
2
+ * fido API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: unspecified
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import { RequestFile } from './models';
14
+
15
+ export class PagingConfiguration {
16
+ 'perPage'?: number;
17
+ 'page'?: number;
18
+
19
+ static discriminator: string | undefined = undefined;
20
+
21
+ static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
22
+ {
23
+ "name": "perPage",
24
+ "baseName": "perPage",
25
+ "type": "number"
26
+ },
27
+ {
28
+ "name": "page",
29
+ "baseName": "page",
30
+ "type": "number"
31
+ } ];
32
+
33
+ static getAttributeTypeMap() {
34
+ return PagingConfiguration.attributeTypeMap;
35
+ }
36
+ }
37
+
@@ -0,0 +1,52 @@
1
+ /**
2
+ * fido API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: unspecified
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import { RequestFile } from './models';
14
+ import { PropertyType } from './propertyType';
15
+
16
+ export class PropertySchema {
17
+ 'array'?: boolean;
18
+ 'id': string;
19
+ 'name'?: string | null;
20
+ 'type': PropertyType;
21
+
22
+ static discriminator: string | undefined = undefined;
23
+
24
+ static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
25
+ {
26
+ "name": "array",
27
+ "baseName": "array",
28
+ "type": "boolean"
29
+ },
30
+ {
31
+ "name": "id",
32
+ "baseName": "id",
33
+ "type": "string"
34
+ },
35
+ {
36
+ "name": "name",
37
+ "baseName": "name",
38
+ "type": "string"
39
+ },
40
+ {
41
+ "name": "type",
42
+ "baseName": "type",
43
+ "type": "PropertyType"
44
+ } ];
45
+
46
+ static getAttributeTypeMap() {
47
+ return PropertySchema.attributeTypeMap;
48
+ }
49
+ }
50
+
51
+ export namespace PropertySchema {
52
+ }
@@ -0,0 +1,24 @@
1
+ /**
2
+ * fido API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: unspecified
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import { RequestFile } from './models';
14
+
15
+ export enum PropertyType {
16
+ Boolean = <any> 'BOOLEAN',
17
+ Date = <any> 'DATE',
18
+ Datetime = <any> 'DATETIME',
19
+ Decimal = <any> 'DECIMAL',
20
+ Double = <any> 'DOUBLE',
21
+ Integer = <any> 'INTEGER',
22
+ String = <any> 'STRING',
23
+ Unsupported = <any> 'UNSUPPORTED'
24
+ }
@@ -0,0 +1,31 @@
1
+ /**
2
+ * fido API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: unspecified
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import { RequestFile } from './models';
14
+
15
+ export class Record {
16
+ 'propertyValues': { [key: string]: Array<object>; };
17
+
18
+ static discriminator: string | undefined = undefined;
19
+
20
+ static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
21
+ {
22
+ "name": "propertyValues",
23
+ "baseName": "propertyValues",
24
+ "type": "{ [key: string]: Array<object>; }"
25
+ } ];
26
+
27
+ static getAttributeTypeMap() {
28
+ return Record.attributeTypeMap;
29
+ }
30
+ }
31
+
@@ -0,0 +1,39 @@
1
+ /**
2
+ * fido API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: unspecified
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import { RequestFile } from './models';
14
+ import { Namespace } from './namespace';
15
+ import { V1NamespacesIdGet200ResponseMeta } from './v1NamespacesIdGet200ResponseMeta';
16
+
17
+ export class V1NamespacesIdGet200Response {
18
+ 'namespace': Namespace;
19
+ 'meta': V1NamespacesIdGet200ResponseMeta | null;
20
+
21
+ static discriminator: string | undefined = undefined;
22
+
23
+ static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
24
+ {
25
+ "name": "namespace",
26
+ "baseName": "namespace",
27
+ "type": "Namespace"
28
+ },
29
+ {
30
+ "name": "meta",
31
+ "baseName": "meta",
32
+ "type": "V1NamespacesIdGet200ResponseMeta"
33
+ } ];
34
+
35
+ static getAttributeTypeMap() {
36
+ return V1NamespacesIdGet200Response.attributeTypeMap;
37
+ }
38
+ }
39
+
@@ -0,0 +1,32 @@
1
+ /**
2
+ * fido API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: unspecified
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import { RequestFile } from './models';
14
+ import { DataSource } from './dataSource';
15
+
16
+ export class V1NamespacesIdGet200ResponseMeta {
17
+ 'dataSources': Array<DataSource>;
18
+
19
+ static discriminator: string | undefined = undefined;
20
+
21
+ static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
22
+ {
23
+ "name": "dataSources",
24
+ "baseName": "dataSources",
25
+ "type": "Array<DataSource>"
26
+ } ];
27
+
28
+ static getAttributeTypeMap() {
29
+ return V1NamespacesIdGet200ResponseMeta.attributeTypeMap;
30
+ }
31
+ }
32
+
@@ -0,0 +1,37 @@
1
+ /**
2
+ * fido API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: unspecified
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import { RequestFile } from './models';
14
+
15
+ export class V1NamespacesIdGet4xxResponse {
16
+ 'status': number;
17
+ 'message': string;
18
+
19
+ static discriminator: string | undefined = undefined;
20
+
21
+ static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
22
+ {
23
+ "name": "status",
24
+ "baseName": "status",
25
+ "type": "number"
26
+ },
27
+ {
28
+ "name": "message",
29
+ "baseName": "message",
30
+ "type": "string"
31
+ } ];
32
+
33
+ static getAttributeTypeMap() {
34
+ return V1NamespacesIdGet4xxResponse.attributeTypeMap;
35
+ }
36
+ }
37
+
@@ -0,0 +1,51 @@
1
+ /**
2
+ * fido API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: unspecified
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import { RequestFile } from './models';
14
+ import { DataPage } from './dataPage';
15
+ import { DataResponseMetadata } from './dataResponseMetadata';
16
+
17
+ export class V1NamespacesNamespaceIdDataSourcesDataSourceIdPreviewPost200Response {
18
+ 'data': DataPage;
19
+ 'meta': DataResponseMetadata;
20
+ 'tableIdentifier': string;
21
+ 'requestTelemetry'?: object | null;
22
+
23
+ static discriminator: string | undefined = undefined;
24
+
25
+ static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
26
+ {
27
+ "name": "data",
28
+ "baseName": "data",
29
+ "type": "DataPage"
30
+ },
31
+ {
32
+ "name": "meta",
33
+ "baseName": "meta",
34
+ "type": "DataResponseMetadata"
35
+ },
36
+ {
37
+ "name": "tableIdentifier",
38
+ "baseName": "tableIdentifier",
39
+ "type": "string"
40
+ },
41
+ {
42
+ "name": "requestTelemetry",
43
+ "baseName": "requestTelemetry",
44
+ "type": "object"
45
+ } ];
46
+
47
+ static getAttributeTypeMap() {
48
+ return V1NamespacesNamespaceIdDataSourcesDataSourceIdPreviewPost200Response.attributeTypeMap;
49
+ }
50
+ }
51
+
@@ -0,0 +1,32 @@
1
+ /**
2
+ * fido API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: unspecified
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+
13
+ import { RequestFile } from './models';
14
+ import { DataSource } from './dataSource';
15
+
16
+ export class V1NamespacesNamespaceIdDataSourcesIdGet200Response {
17
+ 'dataSource': DataSource;
18
+
19
+ static discriminator: string | undefined = undefined;
20
+
21
+ static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
22
+ {
23
+ "name": "dataSource",
24
+ "baseName": "dataSource",
25
+ "type": "DataSource"
26
+ } ];
27
+
28
+ static getAttributeTypeMap() {
29
+ return V1NamespacesNamespaceIdDataSourcesIdGet200Response.attributeTypeMap;
30
+ }
31
+ }
32
+
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@explo-tech/fido-api",
3
+ "version": "0.0.0",
4
+ "description": "Fido api",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/trust-kaz/fido.git"
9
+ },
10
+ "publishConfig": {
11
+ "registry": "https://registry.npmjs.org"
12
+ },
13
+ "files": [
14
+ "model/",
15
+ "api/",
16
+ "api.ts"
17
+ ]
18
+ }