@salesforce/lds-adapters-platform-external-services 0.131.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/LICENSE.txt +82 -0
- package/dist/es/es2018/platform-external-services.js +2228 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +66 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataShape.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getOpenApiSpec.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getStatistics.d.ts +25 -0
- package/dist/es/es2018/types/src/generated/adapters/getStatisticsForService.d.ts +26 -0
- package/dist/es/es2018/types/src/generated/adapters/validateSchema.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +10 -0
- package/dist/es/es2018/types/src/generated/resources/getExternalservicesExternalserviceschemarequest.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/resources/getExternalservicesStatisticsServices.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/resources/getExternalservicesStatisticsServicesByRegistrationName.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/postExternalservicesInferenceDatashapeByVersion.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/resources/postExternalservicesInferenceOpenapispecByVersion.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/resources/postExternalservicesSchemasValidationBySchemaName.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/types/ApiInfoRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/ApiListRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/ApiSchemaRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/DataShapeInferenceOutputRepresentation.d.ts +49 -0
- package/dist/es/es2018/types/src/generated/types/ExternalServiceSchemaRequestRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/ExternalServiceStatisticsBreakdownRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/ExternalServiceStatisticsForServiceRepresentation.d.ts +42 -0
- package/dist/es/es2018/types/src/generated/types/ExternalServiceStatisticsOutputRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/ExternalServiceStatisticsOverviewRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/InferenceErrorMessageRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/NamedCredentialListRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/NamedCredentialRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/OpenApiSpecInferenceInputRepresentation.d.ts +57 -0
- package/dist/es/es2018/types/src/generated/types/OpenApiSpecInferenceInputWrapperRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/OpenApiSpecInferenceOutputRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/OpenApiSpecInferenceParameterRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/SchemaValidationInputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/SchemaValidationInputWrapperRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/SchemaValidationMessageRepresentation.d.ts +53 -0
- package/dist/es/es2018/types/src/generated/types/SchemaValidationOutputRepresentation.d.ts +51 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +39 -0
- package/package.json +67 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +2291 -0
- package/src/raml/api.raml +485 -0
- package/src/raml/luvio.raml +43 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { ExternalServiceStatisticsBreakdownRepresentation as ExternalServiceStatisticsBreakdownRepresentation_ExternalServiceStatisticsBreakdownRepresentation } from './ExternalServiceStatisticsBreakdownRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "6bd958289eba0fb66f626c73737f8c00";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ExternalServiceStatisticsForServiceRepresentation, existing: ExternalServiceStatisticsForServiceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalServiceStatisticsForServiceRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ExternalServiceStatisticsForServiceRepresentationNormalized, incoming: ExternalServiceStatisticsForServiceRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: ExternalServiceStatisticsForServiceRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalServiceStatisticsForServiceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* External Services statistics results for a Service component
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ExternalServiceStatisticsForServiceRepresentationNormalized {
|
|
19
|
+
/** The size of the schema */
|
|
20
|
+
schemaSize: number;
|
|
21
|
+
/** The type of the schema */
|
|
22
|
+
schemaType: string;
|
|
23
|
+
/** The External Service registration name */
|
|
24
|
+
serviceName: string;
|
|
25
|
+
/** The statistics of the children components of this service */
|
|
26
|
+
statistics: Array<ExternalServiceStatisticsBreakdownRepresentation_ExternalServiceStatisticsBreakdownRepresentation>;
|
|
27
|
+
/** The system version of the service registration */
|
|
28
|
+
systemVersion: number;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* External Services statistics results for a Service component
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface ExternalServiceStatisticsForServiceRepresentation {
|
|
37
|
+
schemaSize: number;
|
|
38
|
+
schemaType: string;
|
|
39
|
+
serviceName: string;
|
|
40
|
+
statistics: Array<ExternalServiceStatisticsBreakdownRepresentation_ExternalServiceStatisticsBreakdownRepresentation>;
|
|
41
|
+
systemVersion: number;
|
|
42
|
+
}
|
package/dist/es/es2018/types/src/generated/types/ExternalServiceStatisticsOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ExternalServiceStatisticsForServiceRepresentation as ExternalServiceStatisticsForServiceRepresentation_ExternalServiceStatisticsForServiceRepresentation } from './ExternalServiceStatisticsForServiceRepresentation';
|
|
2
|
+
import { ExternalServiceStatisticsOverviewRepresentation as ExternalServiceStatisticsOverviewRepresentation_ExternalServiceStatisticsOverviewRepresentation } from './ExternalServiceStatisticsOverviewRepresentation';
|
|
3
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
4
|
+
export declare const VERSION = "4246bda5c0cab4f897003ca8900ef381";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: ExternalServiceStatisticsOutputRepresentation, existing: ExternalServiceStatisticsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalServiceStatisticsOutputRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
9
|
+
export declare function equals(existing: ExternalServiceStatisticsOutputRepresentationNormalized, incoming: ExternalServiceStatisticsOutputRepresentationNormalized): boolean;
|
|
10
|
+
export declare function deepFreeze(input: ExternalServiceStatisticsOutputRepresentation): void;
|
|
11
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalServiceStatisticsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
+
/**
|
|
14
|
+
* External Services statistics results for a single service or overview of all services
|
|
15
|
+
*
|
|
16
|
+
* Keys:
|
|
17
|
+
* (none)
|
|
18
|
+
*/
|
|
19
|
+
export interface ExternalServiceStatisticsOutputRepresentationNormalized {
|
|
20
|
+
/** Number of external service registrations */
|
|
21
|
+
serviceCount: number;
|
|
22
|
+
/** List of the services statistics breakdown */
|
|
23
|
+
services: Array<ExternalServiceStatisticsForServiceRepresentation_ExternalServiceStatisticsForServiceRepresentation>;
|
|
24
|
+
/** Count statistics overview for operation and object components */
|
|
25
|
+
statistics: Array<ExternalServiceStatisticsOverviewRepresentation_ExternalServiceStatisticsOverviewRepresentation>;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* External Services statistics results for a single service or overview of all services
|
|
29
|
+
*
|
|
30
|
+
* Keys:
|
|
31
|
+
* (none)
|
|
32
|
+
*/
|
|
33
|
+
export interface ExternalServiceStatisticsOutputRepresentation {
|
|
34
|
+
serviceCount: number;
|
|
35
|
+
services: Array<ExternalServiceStatisticsForServiceRepresentation_ExternalServiceStatisticsForServiceRepresentation>;
|
|
36
|
+
statistics: Array<ExternalServiceStatisticsOverviewRepresentation_ExternalServiceStatisticsOverviewRepresentation>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "3ff0c02babe6583f09a09544b2c045fd";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ExternalServiceStatisticsOverviewRepresentation, existing: ExternalServiceStatisticsOverviewRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalServiceStatisticsOverviewRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ExternalServiceStatisticsOverviewRepresentationNormalized, incoming: ExternalServiceStatisticsOverviewRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ExternalServiceStatisticsOverviewRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalServiceStatisticsOverviewRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* External Services statistics overview results for Operation and Object
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ExternalServiceStatisticsOverviewRepresentationNormalized {
|
|
18
|
+
/** The active count of the component */
|
|
19
|
+
activeCount: number;
|
|
20
|
+
/** The component type of this statistics for */
|
|
21
|
+
statisticFor: string;
|
|
22
|
+
/** The total count of the component */
|
|
23
|
+
totalCount: number;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* External Services statistics overview results for Operation and Object
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface ExternalServiceStatisticsOverviewRepresentation {
|
|
32
|
+
activeCount: number;
|
|
33
|
+
statisticFor: string;
|
|
34
|
+
totalCount: number;
|
|
35
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "68601d043a553523b207d5fcc707e053";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: InferenceErrorMessageRepresentation, existing: InferenceErrorMessageRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InferenceErrorMessageRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: InferenceErrorMessageRepresentationNormalized, incoming: InferenceErrorMessageRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: InferenceErrorMessageRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InferenceErrorMessageRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Data shape inferring errors
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface InferenceErrorMessageRepresentationNormalized {
|
|
18
|
+
/** Error message */
|
|
19
|
+
message: string;
|
|
20
|
+
/** Severity of the error */
|
|
21
|
+
severityLevel: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Data shape inferring errors
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface InferenceErrorMessageRepresentation {
|
|
30
|
+
message: string;
|
|
31
|
+
severityLevel: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { NamedCredentialRepresentation as NamedCredentialRepresentation_NamedCredentialRepresentation } from './NamedCredentialRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "818fc823bf775b3f4de73f470004954c";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: NamedCredentialListRepresentation, existing: NamedCredentialListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): NamedCredentialListRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: NamedCredentialListRepresentationNormalized, incoming: NamedCredentialListRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: NamedCredentialListRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: NamedCredentialListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* A list of Named Credentials.
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface NamedCredentialListRepresentationNormalized {
|
|
19
|
+
/** List of Named Credentials */
|
|
20
|
+
namedCredentials: Array<NamedCredentialRepresentation_NamedCredentialRepresentation>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* A list of Named Credentials.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface NamedCredentialListRepresentation {
|
|
29
|
+
namedCredentials: Array<NamedCredentialRepresentation_NamedCredentialRepresentation>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "e6025df393856f22d452546780fe5bfc";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: NamedCredentialRepresentation, existing: NamedCredentialRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): NamedCredentialRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: NamedCredentialRepresentationNormalized, incoming: NamedCredentialRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: NamedCredentialRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: NamedCredentialRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Information about a Named Credential.
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface NamedCredentialRepresentationNormalized {
|
|
18
|
+
/** Endpoint of this Named Credential */
|
|
19
|
+
endpoint: string;
|
|
20
|
+
/** Master Label of this Named Credential */
|
|
21
|
+
masterLabel: string;
|
|
22
|
+
/** Name of this Named Credential */
|
|
23
|
+
name: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Information about a Named Credential.
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface NamedCredentialRepresentation {
|
|
32
|
+
endpoint: string;
|
|
33
|
+
masterLabel: string;
|
|
34
|
+
name: string;
|
|
35
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { OpenApiSpecInferenceParameterRepresentation as OpenApiSpecInferenceParameterRepresentation_OpenApiSpecInferenceParameterRepresentation } from './OpenApiSpecInferenceParameterRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "5e72ab2c3ac76748fad0e754087f0be2";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: OpenApiSpecInferenceInputRepresentation, existing: OpenApiSpecInferenceInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OpenApiSpecInferenceInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: OpenApiSpecInferenceInputRepresentationNormalized, incoming: OpenApiSpecInferenceInputRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: OpenApiSpecInferenceInputRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: OpenApiSpecInferenceInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Data input for inferring Open Api specification
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface OpenApiSpecInferenceInputRepresentationNormalized {
|
|
19
|
+
/** Sets the description of the external service */
|
|
20
|
+
description: string;
|
|
21
|
+
/** Sets the external service Id */
|
|
22
|
+
externalServiceId?: string;
|
|
23
|
+
/** Sets the method of the external service */
|
|
24
|
+
method: string;
|
|
25
|
+
/** Sets the name of the external service */
|
|
26
|
+
name: string;
|
|
27
|
+
/** Sets the descripton of the external service action/operation */
|
|
28
|
+
operationDescription: string;
|
|
29
|
+
/** Sets the name of the external service action/operation */
|
|
30
|
+
operationName: string;
|
|
31
|
+
/** Sets the parameters of the external service */
|
|
32
|
+
parameters: Array<OpenApiSpecInferenceParameterRepresentation_OpenApiSpecInferenceParameterRepresentation>;
|
|
33
|
+
/** Sets the path of the external service */
|
|
34
|
+
path: string;
|
|
35
|
+
/** Sets the request body */
|
|
36
|
+
requestBody?: {};
|
|
37
|
+
/** Sets the response body */
|
|
38
|
+
responseBody: {};
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Data input for inferring Open Api specification
|
|
42
|
+
*
|
|
43
|
+
* Keys:
|
|
44
|
+
* (none)
|
|
45
|
+
*/
|
|
46
|
+
export interface OpenApiSpecInferenceInputRepresentation {
|
|
47
|
+
description: string;
|
|
48
|
+
externalServiceId?: string;
|
|
49
|
+
method: string;
|
|
50
|
+
name: string;
|
|
51
|
+
operationDescription: string;
|
|
52
|
+
operationName: string;
|
|
53
|
+
parameters: Array<OpenApiSpecInferenceParameterRepresentation_OpenApiSpecInferenceParameterRepresentation>;
|
|
54
|
+
path: string;
|
|
55
|
+
requestBody?: {};
|
|
56
|
+
responseBody: {};
|
|
57
|
+
}
|
package/dist/es/es2018/types/src/generated/types/OpenApiSpecInferenceInputWrapperRepresentation.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { OpenApiSpecInferenceInputRepresentation as OpenApiSpecInferenceInputRepresentation_OpenApiSpecInferenceInputRepresentation } from './OpenApiSpecInferenceInputRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "1b98ec761abef85793e3c964f1d0432f";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: OpenApiSpecInferenceInputWrapperRepresentation, existing: OpenApiSpecInferenceInputWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OpenApiSpecInferenceInputWrapperRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: OpenApiSpecInferenceInputWrapperRepresentationNormalized, incoming: OpenApiSpecInferenceInputWrapperRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: OpenApiSpecInferenceInputWrapperRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: OpenApiSpecInferenceInputWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Wrapper for data input for inferring Open Api specification
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface OpenApiSpecInferenceInputWrapperRepresentationNormalized {
|
|
19
|
+
input: OpenApiSpecInferenceInputRepresentation_OpenApiSpecInferenceInputRepresentation;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Wrapper for data input for inferring Open Api specification
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface OpenApiSpecInferenceInputWrapperRepresentation {
|
|
28
|
+
input: OpenApiSpecInferenceInputRepresentation_OpenApiSpecInferenceInputRepresentation;
|
|
29
|
+
}
|
package/dist/es/es2018/types/src/generated/types/OpenApiSpecInferenceOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { InferenceErrorMessageRepresentation as InferenceErrorMessageRepresentation_InferenceErrorMessageRepresentation } from './InferenceErrorMessageRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 500;
|
|
4
|
+
export declare const VERSION = "9f5779e32b8c9e02976609db89831dbb";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: OpenApiSpecInferenceOutputRepresentation, existing: OpenApiSpecInferenceOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OpenApiSpecInferenceOutputRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
9
|
+
export declare function equals(existing: OpenApiSpecInferenceOutputRepresentationNormalized, incoming: OpenApiSpecInferenceOutputRepresentationNormalized): boolean;
|
|
10
|
+
export declare function deepFreeze(input: OpenApiSpecInferenceOutputRepresentation): void;
|
|
11
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: OpenApiSpecInferenceOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
+
/**
|
|
14
|
+
* Represents the inferred Open Api specification
|
|
15
|
+
*
|
|
16
|
+
* Keys:
|
|
17
|
+
* (none)
|
|
18
|
+
*/
|
|
19
|
+
export interface OpenApiSpecInferenceOutputRepresentationNormalized {
|
|
20
|
+
/** Error messages */
|
|
21
|
+
errorMessages: Array<InferenceErrorMessageRepresentation_InferenceErrorMessageRepresentation>;
|
|
22
|
+
/** Inferred schema of the Open Api specification */
|
|
23
|
+
schema: string;
|
|
24
|
+
/** Whether or not the inference was successful */
|
|
25
|
+
success: boolean;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Represents the inferred Open Api specification
|
|
29
|
+
*
|
|
30
|
+
* Keys:
|
|
31
|
+
* (none)
|
|
32
|
+
*/
|
|
33
|
+
export interface OpenApiSpecInferenceOutputRepresentation {
|
|
34
|
+
errorMessages: Array<InferenceErrorMessageRepresentation_InferenceErrorMessageRepresentation>;
|
|
35
|
+
schema: string;
|
|
36
|
+
success: boolean;
|
|
37
|
+
}
|
package/dist/es/es2018/types/src/generated/types/OpenApiSpecInferenceParameterRepresentation.d.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "fa838219b8a26071c8a50ef9e92b2b60";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: OpenApiSpecInferenceParameterRepresentation, existing: OpenApiSpecInferenceParameterRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OpenApiSpecInferenceParameterRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: OpenApiSpecInferenceParameterRepresentationNormalized, incoming: OpenApiSpecInferenceParameterRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: OpenApiSpecInferenceParameterRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: OpenApiSpecInferenceParameterRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Represents information of a parameter
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface OpenApiSpecInferenceParameterRepresentationNormalized {
|
|
18
|
+
/** Sets the description for the parameter */
|
|
19
|
+
description?: string;
|
|
20
|
+
/** Sets the location of the parameter */
|
|
21
|
+
location: string;
|
|
22
|
+
/** Sets the name of the parameter */
|
|
23
|
+
name: string;
|
|
24
|
+
/** Sets requiredness of the parameter */
|
|
25
|
+
required: boolean;
|
|
26
|
+
/** Sets the data type of the parameter */
|
|
27
|
+
type: string;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Represents information of a parameter
|
|
31
|
+
*
|
|
32
|
+
* Keys:
|
|
33
|
+
* (none)
|
|
34
|
+
*/
|
|
35
|
+
export interface OpenApiSpecInferenceParameterRepresentation {
|
|
36
|
+
description?: string;
|
|
37
|
+
location: string;
|
|
38
|
+
name: string;
|
|
39
|
+
required: boolean;
|
|
40
|
+
type: string;
|
|
41
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "78b701c21e07fa5a687a740404f27d28";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: SchemaValidationInputRepresentation, existing: SchemaValidationInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SchemaValidationInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: SchemaValidationInputRepresentationNormalized, incoming: SchemaValidationInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: SchemaValidationInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SchemaValidationInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for schema validation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface SchemaValidationInputRepresentationNormalized {
|
|
18
|
+
/** Sets the schema of the external service */
|
|
19
|
+
schema: string;
|
|
20
|
+
/** Sets the external service name */
|
|
21
|
+
schemaName: string;
|
|
22
|
+
/** Sets the system version of the external service */
|
|
23
|
+
systemVersion: number;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Input representation for schema validation
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface SchemaValidationInputRepresentation {
|
|
32
|
+
schema: string;
|
|
33
|
+
schemaName: string;
|
|
34
|
+
systemVersion: number;
|
|
35
|
+
}
|
package/dist/es/es2018/types/src/generated/types/SchemaValidationInputWrapperRepresentation.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { SchemaValidationInputRepresentation as SchemaValidationInputRepresentation_SchemaValidationInputRepresentation } from './SchemaValidationInputRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "30c7a78da1dbd3f286bc15b8a01cd953";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: SchemaValidationInputWrapperRepresentation, existing: SchemaValidationInputWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SchemaValidationInputWrapperRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: SchemaValidationInputWrapperRepresentationNormalized, incoming: SchemaValidationInputWrapperRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: SchemaValidationInputWrapperRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SchemaValidationInputWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Wrapper for input representation for schema validation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface SchemaValidationInputWrapperRepresentationNormalized {
|
|
19
|
+
schema: SchemaValidationInputRepresentation_SchemaValidationInputRepresentation;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Wrapper for input representation for schema validation
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface SchemaValidationInputWrapperRepresentation {
|
|
28
|
+
schema: SchemaValidationInputRepresentation_SchemaValidationInputRepresentation;
|
|
29
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "970029a80f127a32c6e30cda09b02a11";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: SchemaValidationMessageRepresentation, existing: SchemaValidationMessageRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SchemaValidationMessageRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: SchemaValidationMessageRepresentationNormalized, incoming: SchemaValidationMessageRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: SchemaValidationMessageRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SchemaValidationMessageRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Information about a schema validation result
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface SchemaValidationMessageRepresentationNormalized {
|
|
18
|
+
/** End column corresponding to the schema validation result */
|
|
19
|
+
endColumn?: number | null;
|
|
20
|
+
/** End line corresponding to the schema validation result */
|
|
21
|
+
endLine?: number | null;
|
|
22
|
+
/** End position corresponding to the schema validation result */
|
|
23
|
+
endPosition?: number | null;
|
|
24
|
+
/** Message for schema validation result */
|
|
25
|
+
message: string;
|
|
26
|
+
/** Start column corresponding to the schema validation result */
|
|
27
|
+
startColumn?: number | null;
|
|
28
|
+
/** Start line corresponding to the schema validation result */
|
|
29
|
+
startLine?: number | null;
|
|
30
|
+
/** Start position corresponding to the schema validation result */
|
|
31
|
+
startPosition?: number | null;
|
|
32
|
+
/** Validation class for schema validation result */
|
|
33
|
+
validationClass: string;
|
|
34
|
+
/** Validation level for schema validation result */
|
|
35
|
+
validationLevel: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Information about a schema validation result
|
|
39
|
+
*
|
|
40
|
+
* Keys:
|
|
41
|
+
* (none)
|
|
42
|
+
*/
|
|
43
|
+
export interface SchemaValidationMessageRepresentation {
|
|
44
|
+
endColumn?: number | null;
|
|
45
|
+
endLine?: number | null;
|
|
46
|
+
endPosition?: number | null;
|
|
47
|
+
message: string;
|
|
48
|
+
startColumn?: number | null;
|
|
49
|
+
startLine?: number | null;
|
|
50
|
+
startPosition?: number | null;
|
|
51
|
+
validationClass: string;
|
|
52
|
+
validationLevel: string;
|
|
53
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { SchemaValidationMessageRepresentation as SchemaValidationMessageRepresentation_SchemaValidationMessageRepresentation } from './SchemaValidationMessageRepresentation';
|
|
2
|
+
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "056d3062f884a64afdf97b374daf2e75";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
7
|
+
schemaName: string;
|
|
8
|
+
}
|
|
9
|
+
export type SchemaValidationOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialSchemaValidationOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): SchemaValidationOutputRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: SchemaValidationOutputRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: SchemaValidationOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: SchemaValidationOutputRepresentation, existing: SchemaValidationOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SchemaValidationOutputRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
17
|
+
export declare function equals(existing: SchemaValidationOutputRepresentationNormalized, incoming: SchemaValidationOutputRepresentationNormalized): boolean;
|
|
18
|
+
export declare function deepFreeze(input: SchemaValidationOutputRepresentation): void;
|
|
19
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
20
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SchemaValidationOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
21
|
+
/**
|
|
22
|
+
* A list of schema validation results
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* schemaName (string): schemaName
|
|
26
|
+
*/
|
|
27
|
+
export interface SchemaValidationOutputRepresentationNormalized {
|
|
28
|
+
/** Name of this schema */
|
|
29
|
+
schemaName: string;
|
|
30
|
+
/** Size of the schema */
|
|
31
|
+
schemaSize: number;
|
|
32
|
+
/** Type of schema */
|
|
33
|
+
schemaType: string;
|
|
34
|
+
/** List of schema validation messages */
|
|
35
|
+
schemaValidation: Array<SchemaValidationMessageRepresentation_SchemaValidationMessageRepresentation>;
|
|
36
|
+
/** System version used for this schema */
|
|
37
|
+
systemVersion: number;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* A list of schema validation results
|
|
41
|
+
*
|
|
42
|
+
* Keys:
|
|
43
|
+
* schemaName (string): schemaName
|
|
44
|
+
*/
|
|
45
|
+
export interface SchemaValidationOutputRepresentation {
|
|
46
|
+
schemaName: string;
|
|
47
|
+
schemaSize: number;
|
|
48
|
+
schemaType: string;
|
|
49
|
+
schemaValidation: Array<SchemaValidationMessageRepresentation_SchemaValidationMessageRepresentation>;
|
|
50
|
+
systemVersion: number;
|
|
51
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectFreeze: {
|
|
3
|
+
<T extends Function>(f: T): T;
|
|
4
|
+
<T_1 extends {
|
|
5
|
+
[idx: string]: object | U | null | undefined;
|
|
6
|
+
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
7
|
+
<T_2>(o: T_2): Readonly<T_2>;
|
|
8
|
+
}, ObjectKeys: {
|
|
9
|
+
(o: object): string[];
|
|
10
|
+
(o: {}): string[];
|
|
11
|
+
}, ObjectCreate: {
|
|
12
|
+
(o: object | null): any;
|
|
13
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
14
|
+
}, ObjectAssign: {
|
|
15
|
+
<T extends {}, U>(target: T, source: U): T & U;
|
|
16
|
+
<T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
|
|
17
|
+
<T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
|
|
18
|
+
(target: object, ...sources: any[]): any;
|
|
19
|
+
};
|
|
20
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
21
|
+
export declare const JSONStringify: {
|
|
22
|
+
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
|
|
23
|
+
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
|
|
24
|
+
};
|
|
25
|
+
type AllowedPrimitives = boolean | string | number | Date | null;
|
|
26
|
+
type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
|
|
27
|
+
export type RecursivePartial<T> = null | {
|
|
28
|
+
[P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
|
|
29
|
+
};
|
|
30
|
+
export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
|
|
31
|
+
export declare function equalsObject<U, V extends {
|
|
32
|
+
[key: string]: U;
|
|
33
|
+
}>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
|
|
34
|
+
export declare function deepFreeze(value: any): void;
|
|
35
|
+
export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
|
|
36
|
+
__ref: string;
|
|
37
|
+
};
|
|
38
|
+
export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
39
|
+
export {};
|