@salesforce/lds-adapters-platform-external-connectivity 1.280.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-connectivity.js +1678 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/adapters/createConnection.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/adapters/getConnectionDetails.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/getConnections.d.ts +26 -0
- package/dist/es/es2018/types/src/generated/adapters/getConnectorDetails.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/getConnectors.d.ts +26 -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/getExternalConnectivityConnections.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/resources/getExternalConnectivityConnectionsByConnectionDeveloperName.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/getExternalConnectivityConnectors.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/resources/getExternalConnectivityConnectorsByConnectorDeveloperName.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/postExternalConnectivityConnections.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/types/AuthenticationParameterDefinitionRepresentation.d.ts +46 -0
- package/dist/es/es2018/types/src/generated/types/AuthenticationParameterRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/AuthenticationTypeDefinitionRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/AuthenticationTypeInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/AuthenticationTypeRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/ConnectorIconMetadataRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectionCreatedRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectionDetailsRepresentation.d.ts +60 -0
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectionInputRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectionListRepresentation.d.ts +39 -0
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectionRepresentation.d.ts +64 -0
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectorDetailsRepresentation.d.ts +61 -0
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectorListRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectorRepresentation.d.ts +57 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
- package/package.json +66 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +1758 -0
- package/src/raml/api.raml +396 -0
- package/src/raml/luvio.raml +51 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot, AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
3
|
+
declare const ObjectKeys: {
|
|
4
|
+
(o: object): string[];
|
|
5
|
+
(o: {}): string[];
|
|
6
|
+
}, ObjectCreate: {
|
|
7
|
+
(o: object | null): any;
|
|
8
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
9
|
+
};
|
|
10
|
+
export { ObjectCreate, ObjectKeys };
|
|
11
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
12
|
+
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
13
|
+
export interface AdapterValidationConfig {
|
|
14
|
+
displayName: string;
|
|
15
|
+
parameters: {
|
|
16
|
+
required: string[];
|
|
17
|
+
optional: string[];
|
|
18
|
+
unsupported?: string[];
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Validates an adapter config is well-formed.
|
|
23
|
+
* @param config The config to validate.
|
|
24
|
+
* @param adapter The adapter validation configuration.
|
|
25
|
+
* @param oneOf The keys the config must contain at least one of.
|
|
26
|
+
* @throws A TypeError if config doesn't satisfy the adapter's config validation.
|
|
27
|
+
*/
|
|
28
|
+
export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
|
|
29
|
+
export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
|
|
30
|
+
export type UncoercedConfiguration<Base, Options extends {
|
|
31
|
+
[key in keyof Base]?: any;
|
|
32
|
+
}> = {
|
|
33
|
+
[Key in keyof Base]?: Base[Key] | Options[Key];
|
|
34
|
+
};
|
|
35
|
+
export type Untrusted<Base> = Partial<Base>;
|
|
36
|
+
export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
|
|
37
|
+
export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
|
|
38
|
+
export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
|
|
39
|
+
export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
|
|
40
|
+
export declare const snapshotRefreshOptions: {
|
|
41
|
+
overrides: {
|
|
42
|
+
headers: {
|
|
43
|
+
'Cache-Control': string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
|
|
49
|
+
* This is needed because insertion order for JSON.stringify(object) affects output:
|
|
50
|
+
* JSON.stringify({a: 1, b: 2})
|
|
51
|
+
* "{"a":1,"b":2}"
|
|
52
|
+
* JSON.stringify({b: 2, a: 1})
|
|
53
|
+
* "{"b":2,"a":1}"
|
|
54
|
+
* @param data Data to be JSON-stringified.
|
|
55
|
+
* @returns JSON.stringified value with consistent ordering of keys.
|
|
56
|
+
*/
|
|
57
|
+
export declare function stableJSONStringify(node: any): string | undefined;
|
|
58
|
+
export declare function getFetchResponseStatusText(status: number): string;
|
|
59
|
+
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
60
|
+
export declare function generateParamConfigMetadata(name: string, required: boolean, resourceType: $64$luvio_engine_AdapterConfigMetadata['resourceType'], typeCheckShape: $64$luvio_engine_AdapterConfigMetadata['typeCheckShape'], isArrayShape?: boolean, coerceFn?: (v: unknown) => unknown): $64$luvio_engine_AdapterConfigMetadata;
|
|
61
|
+
export declare function buildAdapterValidationConfig(displayName: string, paramsMeta: $64$luvio_engine_AdapterConfigMetadata[]): AdapterValidationConfig;
|
|
62
|
+
export declare const keyPrefix = "external-connectivity";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_postExternalConnectivityConnections_ResourceRequestConfig } from '../resources/postExternalConnectivityConnections';
|
|
4
|
+
import { ExternalConnectivityConnectionCreatedRepresentation as types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation } from '../types/ExternalConnectivityConnectionCreatedRepresentation';
|
|
5
|
+
export declare const adapterName = "createConnection";
|
|
6
|
+
export declare const createConnection_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const createConnection_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface CreateConnectionConfig {
|
|
9
|
+
authenticationTypeInput: {};
|
|
10
|
+
connectorDeveloperName: string;
|
|
11
|
+
description: string;
|
|
12
|
+
name: string;
|
|
13
|
+
}
|
|
14
|
+
export declare const createResourceParams: (config: CreateConnectionConfig) => resources_postExternalConnectivityConnections_ResourceRequestConfig;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateConnectionConfig>): adapter$45$utils_Untrusted<CreateConnectionConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateConnectionConfig | null;
|
|
17
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateConnectionConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation, any>>;
|
|
18
|
+
export declare const createConnectionAdapterFactory: $64$luvio_engine_AdapterFactory<CreateConnectionConfig, types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getExternalConnectivityConnectionsByConnectionDeveloperName_ResourceRequestConfig } from '../resources/getExternalConnectivityConnectionsByConnectionDeveloperName';
|
|
4
|
+
import { ExternalConnectivityConnectionDetailsRepresentation as types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation } from '../types/ExternalConnectivityConnectionDetailsRepresentation';
|
|
5
|
+
export declare const adapterName = "getConnectionDetails";
|
|
6
|
+
export declare const getConnectionDetails_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getConnectionDetails_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetConnectionDetailsConfig {
|
|
9
|
+
connectionDeveloperName: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: GetConnectionDetailsConfig) => resources_getExternalConnectivityConnectionsByConnectionDeveloperName_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetConnectionDetailsConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetConnectionDetailsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetConnectionDetailsConfig>): adapter$45$utils_Untrusted<GetConnectionDetailsConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetConnectionDetailsConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetConnectionDetailsConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetConnectionDetailsConfig): $64$luvio_engine_Snapshot<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetConnectionDetailsConfig, resourceParams: resources_getExternalConnectivityConnectionsByConnectionDeveloperName_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetConnectionDetailsConfig, resourceParams: resources_getExternalConnectivityConnectionsByConnectionDeveloperName_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetConnectionDetailsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetConnectionDetailsConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation>): $64$luvio_engine_Snapshot<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation, any>;
|
|
27
|
+
export declare const getConnectionDetailsAdapterFactory: $64$luvio_engine_AdapterFactory<GetConnectionDetailsConfig, types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getExternalConnectivityConnections_ResourceRequestConfig } from '../resources/getExternalConnectivityConnections';
|
|
4
|
+
import { ExternalConnectivityConnectionListRepresentation as types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation } from '../types/ExternalConnectivityConnectionListRepresentation';
|
|
5
|
+
export declare const adapterName = "getConnections";
|
|
6
|
+
export declare const getConnections_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getConnections_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetConnectionsConfig {
|
|
9
|
+
}
|
|
10
|
+
export declare const createResourceParams: (config: GetConnectionsConfig) => resources_getExternalConnectivityConnections_ResourceRequestConfig;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetConnectionsConfig): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetConnectionsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetConnectionsConfig>): adapter$45$utils_Untrusted<GetConnectionsConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetConnectionsConfig | null;
|
|
15
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetConnectionsConfig): $64$luvio_engine_Fragment;
|
|
16
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetConnectionsConfig): $64$luvio_engine_Snapshot<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation, any>;
|
|
17
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetConnectionsConfig, resourceParams: resources_getExternalConnectivityConnections_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation, any>>;
|
|
18
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetConnectionsConfig, resourceParams: resources_getExternalConnectivityConnections_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
19
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetConnectionsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation, any>>;
|
|
20
|
+
export type BuildSnapshotContext = {
|
|
21
|
+
luvio: $64$luvio_engine_Luvio;
|
|
22
|
+
config: GetConnectionsConfig;
|
|
23
|
+
};
|
|
24
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation, any>>;
|
|
25
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation>): $64$luvio_engine_Snapshot<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation, any>;
|
|
26
|
+
export declare const getConnectionsAdapterFactory: $64$luvio_engine_AdapterFactory<GetConnectionsConfig, types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getExternalConnectivityConnectorsByConnectorDeveloperName_ResourceRequestConfig } from '../resources/getExternalConnectivityConnectorsByConnectorDeveloperName';
|
|
4
|
+
import { ExternalConnectivityConnectorDetailsRepresentation as types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation } from '../types/ExternalConnectivityConnectorDetailsRepresentation';
|
|
5
|
+
export declare const adapterName = "getConnectorDetails";
|
|
6
|
+
export declare const getConnectorDetails_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getConnectorDetails_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetConnectorDetailsConfig {
|
|
9
|
+
connectorDeveloperName: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: GetConnectorDetailsConfig) => resources_getExternalConnectivityConnectorsByConnectorDeveloperName_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetConnectorDetailsConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetConnectorDetailsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetConnectorDetailsConfig>): adapter$45$utils_Untrusted<GetConnectorDetailsConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetConnectorDetailsConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetConnectorDetailsConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetConnectorDetailsConfig): $64$luvio_engine_Snapshot<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetConnectorDetailsConfig, resourceParams: resources_getExternalConnectivityConnectorsByConnectorDeveloperName_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetConnectorDetailsConfig, resourceParams: resources_getExternalConnectivityConnectorsByConnectorDeveloperName_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetConnectorDetailsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetConnectorDetailsConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation>): $64$luvio_engine_Snapshot<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation, any>;
|
|
27
|
+
export declare const getConnectorDetailsAdapterFactory: $64$luvio_engine_AdapterFactory<GetConnectorDetailsConfig, types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getExternalConnectivityConnectors_ResourceRequestConfig } from '../resources/getExternalConnectivityConnectors';
|
|
4
|
+
import { ExternalConnectivityConnectorListRepresentation as types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation } from '../types/ExternalConnectivityConnectorListRepresentation';
|
|
5
|
+
export declare const adapterName = "getConnectors";
|
|
6
|
+
export declare const getConnectors_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getConnectors_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetConnectorsConfig {
|
|
9
|
+
}
|
|
10
|
+
export declare const createResourceParams: (config: GetConnectorsConfig) => resources_getExternalConnectivityConnectors_ResourceRequestConfig;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetConnectorsConfig): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetConnectorsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetConnectorsConfig>): adapter$45$utils_Untrusted<GetConnectorsConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetConnectorsConfig | null;
|
|
15
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetConnectorsConfig): $64$luvio_engine_Fragment;
|
|
16
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetConnectorsConfig): $64$luvio_engine_Snapshot<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation, any>;
|
|
17
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetConnectorsConfig, resourceParams: resources_getExternalConnectivityConnectors_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation, any>>;
|
|
18
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetConnectorsConfig, resourceParams: resources_getExternalConnectivityConnectors_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
19
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetConnectorsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation, any>>;
|
|
20
|
+
export type BuildSnapshotContext = {
|
|
21
|
+
luvio: $64$luvio_engine_Luvio;
|
|
22
|
+
config: GetConnectorsConfig;
|
|
23
|
+
};
|
|
24
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation, any>>;
|
|
25
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation>): $64$luvio_engine_Snapshot<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation, any>;
|
|
26
|
+
export declare const getConnectorsAdapterFactory: $64$luvio_engine_AdapterFactory<GetConnectorsConfig, types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { getConnectionsAdapterFactory } from '../adapters/getConnections';
|
|
2
|
+
export { createConnectionAdapterFactory } from '../adapters/createConnection';
|
|
3
|
+
export { getConnectionDetailsAdapterFactory } from '../adapters/getConnectionDetails';
|
|
4
|
+
export { getConnectorsAdapterFactory } from '../adapters/getConnectors';
|
|
5
|
+
export { getConnectorDetailsAdapterFactory } from '../adapters/getConnectorDetails';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare let createConnection: any;
|
|
2
|
+
declare let getConnectionDetails: any;
|
|
3
|
+
declare let getConnections: any;
|
|
4
|
+
declare let getConnectorDetails: any;
|
|
5
|
+
declare let getConnectors: any;
|
|
6
|
+
declare let getConnectionDetails_imperative: any;
|
|
7
|
+
declare let getConnections_imperative: any;
|
|
8
|
+
declare let getConnectorDetails_imperative: any;
|
|
9
|
+
declare let getConnectors_imperative: any;
|
|
10
|
+
export { createConnection, getConnectionDetails, getConnections, getConnectorDetails, getConnectors, getConnectionDetails_imperative, getConnections_imperative, getConnectorDetails_imperative, getConnectors_imperative, };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { ExternalConnectivityConnectionListRepresentation as types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation } from '../types/ExternalConnectivityConnectionListRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
}
|
|
5
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
6
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
7
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
8
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation): void;
|
|
9
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation, any>;
|
|
10
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExternalConnectivityConnectionListRepresentation_ExternalConnectivityConnectionListRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
11
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
12
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { ExternalConnectivityConnectionDetailsRepresentation as types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation } from '../types/ExternalConnectivityConnectionDetailsRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
connectionDeveloperName: string;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
10
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation): void;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExternalConnectivityConnectionDetailsRepresentation_ExternalConnectivityConnectionDetailsRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { ExternalConnectivityConnectorListRepresentation as types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation } from '../types/ExternalConnectivityConnectorListRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
}
|
|
5
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
6
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
7
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
8
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation): void;
|
|
9
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation, any>;
|
|
10
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExternalConnectivityConnectorListRepresentation_ExternalConnectivityConnectorListRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
11
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
12
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { ExternalConnectivityConnectorDetailsRepresentation as types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation } from '../types/ExternalConnectivityConnectorDetailsRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
connectorDeveloperName: string;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
10
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation): void;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExternalConnectivityConnectorDetailsRepresentation_ExternalConnectivityConnectorDetailsRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { ExternalConnectivityConnectionCreatedRepresentation as types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation } from '../types/ExternalConnectivityConnectionCreatedRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
body: {
|
|
5
|
+
authenticationTypeInput: {};
|
|
6
|
+
connectorDeveloperName: string;
|
|
7
|
+
description: string;
|
|
8
|
+
name: string;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
12
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation): void;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ExternalConnectivityConnectionCreatedRepresentation_ExternalConnectivityConnectionCreatedRepresentation, any>;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,46 @@
|
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "66295146e074f20bfc229bd375d6664b";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AuthenticationParameterDefinitionRepresentation, existing: AuthenticationParameterDefinitionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AuthenticationParameterDefinitionRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AuthenticationParameterDefinitionRepresentationNormalized, incoming: AuthenticationParameterDefinitionRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: AuthenticationParameterDefinitionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output representation for External Connectivity Connector Authentication Parameter Definition
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface AuthenticationParameterDefinitionRepresentationNormalized {
|
|
17
|
+
/** External Connectivity Connector Authentication Parameter Definition Description */
|
|
18
|
+
description: string;
|
|
19
|
+
/** External Connectivity Connector Authentication Parameter Definition Label */
|
|
20
|
+
label: string;
|
|
21
|
+
/** External Connectivity Connector Authentication Parameter Definition Max Length */
|
|
22
|
+
maxLength: number;
|
|
23
|
+
/** External Connectivity Connector Authentication Parameter Definition Name */
|
|
24
|
+
name: string;
|
|
25
|
+
/** External Connectivity Connector Authentication Parameter Definition Required Flag */
|
|
26
|
+
required: boolean;
|
|
27
|
+
/** External Connectivity Connector Authentication Parameter Definition Secret Flag */
|
|
28
|
+
secret: boolean;
|
|
29
|
+
/** External Connectivity Connector Authentication Parameter Definition Value Type */
|
|
30
|
+
valueType: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Output representation for External Connectivity Connector Authentication Parameter Definition
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* (none)
|
|
37
|
+
*/
|
|
38
|
+
export interface AuthenticationParameterDefinitionRepresentation {
|
|
39
|
+
description: string;
|
|
40
|
+
label: string;
|
|
41
|
+
maxLength: number;
|
|
42
|
+
name: string;
|
|
43
|
+
required: boolean;
|
|
44
|
+
secret: boolean;
|
|
45
|
+
valueType: string;
|
|
46
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { AuthenticationParameterDefinitionRepresentation as AuthenticationParameterDefinitionRepresentation_AuthenticationParameterDefinitionRepresentation } from './AuthenticationParameterDefinitionRepresentation';
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "b6f5766061711fa5aa8a985706db4257";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: AuthenticationParameterRepresentation, existing: AuthenticationParameterRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AuthenticationParameterRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: AuthenticationParameterRepresentationNormalized, incoming: AuthenticationParameterRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: AuthenticationParameterRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Output representation for External Connectivity Connection Authentication Parameter
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface AuthenticationParameterRepresentationNormalized {
|
|
18
|
+
/** External Connectivity Connection Authentication Parameter Definition */
|
|
19
|
+
authenticationParameterDefinition: AuthenticationParameterDefinitionRepresentation_AuthenticationParameterDefinitionRepresentation;
|
|
20
|
+
/** External Connectivity Connection Authentication Parameter Value */
|
|
21
|
+
value: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Output representation for External Connectivity Connection Authentication Parameter
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface AuthenticationParameterRepresentation {
|
|
30
|
+
authenticationParameterDefinition: AuthenticationParameterDefinitionRepresentation_AuthenticationParameterDefinitionRepresentation;
|
|
31
|
+
value: string;
|
|
32
|
+
}
|
package/dist/es/es2018/types/src/generated/types/AuthenticationTypeDefinitionRepresentation.d.ts
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { AuthenticationParameterDefinitionRepresentation as AuthenticationParameterDefinitionRepresentation_AuthenticationParameterDefinitionRepresentation } from './AuthenticationParameterDefinitionRepresentation';
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "b1b93d8d132735fdf8de89f324f890c6";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: AuthenticationTypeDefinitionRepresentation, existing: AuthenticationTypeDefinitionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AuthenticationTypeDefinitionRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: AuthenticationTypeDefinitionRepresentationNormalized, incoming: AuthenticationTypeDefinitionRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: AuthenticationTypeDefinitionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Output representation for External Connectivity Connector Authentication Type Definition
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface AuthenticationTypeDefinitionRepresentationNormalized {
|
|
18
|
+
/** External Connectivity Connector Authentication Parameter Definitions */
|
|
19
|
+
authenticationParameterDefinitions: Array<AuthenticationParameterDefinitionRepresentation_AuthenticationParameterDefinitionRepresentation>;
|
|
20
|
+
/** External Connectivity Connector Authentication Protocol */
|
|
21
|
+
authenticationProtocol: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Output representation for External Connectivity Connector Authentication Type Definition
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface AuthenticationTypeDefinitionRepresentation {
|
|
30
|
+
authenticationParameterDefinitions: Array<AuthenticationParameterDefinitionRepresentation_AuthenticationParameterDefinitionRepresentation>;
|
|
31
|
+
authenticationProtocol: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "49186b30692e30db26608c4b690bbadb";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AuthenticationTypeInputRepresentation, existing: AuthenticationTypeInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AuthenticationTypeInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AuthenticationTypeInputRepresentationNormalized, incoming: AuthenticationTypeInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: AuthenticationTypeInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation for authentication type
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface AuthenticationTypeInputRepresentationNormalized {
|
|
17
|
+
/** Sets the Authentication Parameter Inputs */
|
|
18
|
+
authenticationParameterInputs: Array<{}>;
|
|
19
|
+
/** Sets the Authentication Protocol */
|
|
20
|
+
authenticationProtocol: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Input representation for authentication type
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface AuthenticationTypeInputRepresentation {
|
|
29
|
+
authenticationParameterInputs: Array<{}>;
|
|
30
|
+
authenticationProtocol: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { AuthenticationParameterRepresentation as AuthenticationParameterRepresentation_AuthenticationParameterRepresentation } from './AuthenticationParameterRepresentation';
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "2a0d4fc9602c8bd5be81010a26fe1b93";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: AuthenticationTypeRepresentation, existing: AuthenticationTypeRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AuthenticationTypeRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: AuthenticationTypeRepresentationNormalized, incoming: AuthenticationTypeRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: AuthenticationTypeRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Output representation for External Connectivity Connection Authentication Type
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface AuthenticationTypeRepresentationNormalized {
|
|
18
|
+
/** External Connectivity Connection Authentication Parameters */
|
|
19
|
+
authenticationParameters: Array<AuthenticationParameterRepresentation_AuthenticationParameterRepresentation>;
|
|
20
|
+
/** External Connectivity Connection Authentication Protocol */
|
|
21
|
+
authenticationProtocol: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Output representation for External Connectivity Connection Authentication Type
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface AuthenticationTypeRepresentation {
|
|
30
|
+
authenticationParameters: Array<AuthenticationParameterRepresentation_AuthenticationParameterRepresentation>;
|
|
31
|
+
authenticationProtocol: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "54fb20364328df270a574d67876c79f5";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ConnectorIconMetadataRepresentation, existing: ConnectorIconMetadataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ConnectorIconMetadataRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ConnectorIconMetadataRepresentationNormalized, incoming: ConnectorIconMetadataRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ConnectorIconMetadataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output representation for Connector Icon Metadata
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ConnectorIconMetadataRepresentationNormalized {
|
|
17
|
+
/** IconMetadata Alternate Text */
|
|
18
|
+
alternateText: string;
|
|
19
|
+
/** IconMetadata Dimensions */
|
|
20
|
+
dimensions: string;
|
|
21
|
+
/** IconMetadata Name */
|
|
22
|
+
name: string;
|
|
23
|
+
/** IconMetadata Resource Url */
|
|
24
|
+
resourceUrl: string;
|
|
25
|
+
/** IconMetadata Size */
|
|
26
|
+
size: number;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Output representation for Connector Icon Metadata
|
|
30
|
+
*
|
|
31
|
+
* Keys:
|
|
32
|
+
* (none)
|
|
33
|
+
*/
|
|
34
|
+
export interface ConnectorIconMetadataRepresentation {
|
|
35
|
+
alternateText: string;
|
|
36
|
+
dimensions: string;
|
|
37
|
+
name: string;
|
|
38
|
+
resourceUrl: string;
|
|
39
|
+
size: number;
|
|
40
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
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';
|
|
2
|
+
export declare const TTL = 500;
|
|
3
|
+
export declare const VERSION = "139e6c6cae3db78f5efabb1639252ac2";
|
|
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
|
+
developerName: string;
|
|
8
|
+
}
|
|
9
|
+
export type ExternalConnectivityConnectionCreatedRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialExternalConnectivityConnectionCreatedRepresentationNormalizedKeyMetadata = 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): ExternalConnectivityConnectionCreatedRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ExternalConnectivityConnectionCreatedRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ExternalConnectivityConnectionCreatedRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: ExternalConnectivityConnectionCreatedRepresentation, existing: ExternalConnectivityConnectionCreatedRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalConnectivityConnectionCreatedRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
17
|
+
export declare function equals(existing: ExternalConnectivityConnectionCreatedRepresentationNormalized, incoming: ExternalConnectivityConnectionCreatedRepresentationNormalized): boolean;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExternalConnectivityConnectionCreatedRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
/**
|
|
21
|
+
* Output representation for External Connectivity Connection Created
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* developerName (string): developerName
|
|
25
|
+
*/
|
|
26
|
+
export interface ExternalConnectivityConnectionCreatedRepresentationNormalized {
|
|
27
|
+
/** External Connectivity Connection Developer Name */
|
|
28
|
+
developerName: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Output representation for External Connectivity Connection Created
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* developerName (string): developerName
|
|
35
|
+
*/
|
|
36
|
+
export interface ExternalConnectivityConnectionCreatedRepresentation {
|
|
37
|
+
developerName: string;
|
|
38
|
+
}
|