@salesforce/lds-adapters-industries-contextrules 1.285.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/industries-contextrules.js +898 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/adapters/createContextTagMapping.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/adapters/deleteContextTagMapping.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/adapters/getContextTagMapping.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/adapters/getContextTagMappings.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/updateContextTagMapping.d.ts +18 -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 +9 -0
- package/dist/es/es2018/types/src/generated/resources/deleteConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberMappingNameByMappingNameAndRuleLibraryApiNameAndVersionNumber.d.ts +14 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberMappingNameByMappingNameAndRuleLibraryApiNameAndVersionNumber.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/patchConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/types/RuleLibraryTagMappingsCreateUpdateOutputRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/RuleLibraryTagMappingsInputRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/RuleLibraryTagMappingsListWrapperRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/RuleLibraryTagMappingsOverallInputRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/RuleLibraryTagMappingsReadOutputRepresentation.d.ts +56 -0
- package/dist/es/es2018/types/src/generated/types/RuleLibraryTagMappingsReadOutputRepresentationList.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
- package/package.json +67 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +1004 -0
- package/src/raml/api.raml +178 -0
- package/src/raml/luvio.raml +46 -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 = "contextrules";
|
|
@@ -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 { RuleLibraryTagMappingsListWrapperRepresentation as types_RuleLibraryTagMappingsListWrapperRepresentation_RuleLibraryTagMappingsListWrapperRepresentation } from '../types/RuleLibraryTagMappingsListWrapperRepresentation';
|
|
4
|
+
import { ResourceRequestConfig as resources_postConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig } from '../resources/postConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber';
|
|
5
|
+
import { RuleLibraryTagMappingsCreateUpdateOutputRepresentation as types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation } from '../types/RuleLibraryTagMappingsCreateUpdateOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "createContextTagMapping";
|
|
7
|
+
export declare const createContextTagMapping_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
8
|
+
export declare const createContextTagMapping_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
9
|
+
export interface CreateContextTagMappingConfig {
|
|
10
|
+
ruleLibraryApiName: string;
|
|
11
|
+
versionNumber: string;
|
|
12
|
+
contextTagMappings: types_RuleLibraryTagMappingsListWrapperRepresentation_RuleLibraryTagMappingsListWrapperRepresentation;
|
|
13
|
+
}
|
|
14
|
+
export declare const createResourceParams: (config: CreateContextTagMappingConfig) => resources_postConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateContextTagMappingConfig>): adapter$45$utils_Untrusted<CreateContextTagMappingConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateContextTagMappingConfig | null;
|
|
17
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateContextTagMappingConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, any>>;
|
|
18
|
+
export declare const createContextTagMappingAdapterFactory: $64$luvio_engine_AdapterFactory<CreateContextTagMappingConfig, types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, DeleteAdapterFactory as $64$luvio_engine_DeleteAdapterFactory } 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_deleteConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberMappingNameByMappingNameAndRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig } from '../resources/deleteConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberMappingNameByMappingNameAndRuleLibraryApiNameAndVersionNumber';
|
|
4
|
+
export declare const adapterName = "deleteContextTagMapping";
|
|
5
|
+
export declare const deleteContextTagMapping_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
6
|
+
export declare const deleteContextTagMapping_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface DeleteContextTagMappingConfig {
|
|
8
|
+
mappingName: string;
|
|
9
|
+
ruleLibraryApiName: string;
|
|
10
|
+
versionNumber: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: DeleteContextTagMappingConfig) => resources_deleteConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberMappingNameByMappingNameAndRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<DeleteContextTagMappingConfig>): adapter$45$utils_Untrusted<DeleteContextTagMappingConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): DeleteContextTagMappingConfig | null;
|
|
15
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: DeleteContextTagMappingConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<void>;
|
|
16
|
+
export declare const deleteContextTagMappingAdapterFactory: $64$luvio_engine_DeleteAdapterFactory<DeleteContextTagMappingConfig>;
|
|
@@ -0,0 +1,30 @@
|
|
|
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, UncoercedConfiguration as adapter$45$utils_UncoercedConfiguration } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberMappingNameByMappingNameAndRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig } from '../resources/getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberMappingNameByMappingNameAndRuleLibraryApiNameAndVersionNumber';
|
|
4
|
+
import { RuleLibraryTagMappingsReadOutputRepresentation as types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation, KeyParams as types_RuleLibraryTagMappingsReadOutputRepresentation_KeyParams } from '../types/RuleLibraryTagMappingsReadOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "getContextTagMapping";
|
|
6
|
+
export declare const getContextTagMapping_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getContextTagMapping_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetContextTagMappingConfig {
|
|
9
|
+
mappingName: string;
|
|
10
|
+
ruleLibraryApiName: string;
|
|
11
|
+
versionNumber: string;
|
|
12
|
+
}
|
|
13
|
+
export declare const createResourceParams: (config: GetContextTagMappingConfig) => resources_getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberMappingNameByMappingNameAndRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig;
|
|
14
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingConfig): string;
|
|
15
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetContextTagMappingConfig>): adapter$45$utils_Untrusted<GetContextTagMappingConfig>;
|
|
17
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetContextTagMappingConfig | null;
|
|
18
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingConfig): $64$luvio_engine_Fragment;
|
|
19
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingConfig): $64$luvio_engine_Snapshot<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation, any>;
|
|
20
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingConfig, resourceParams: resources_getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberMappingNameByMappingNameAndRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation, any>>;
|
|
21
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingConfig, resourceParams: resources_getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberMappingNameByMappingNameAndRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
22
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation, any>>;
|
|
23
|
+
export type BuildSnapshotContext = {
|
|
24
|
+
luvio: $64$luvio_engine_Luvio;
|
|
25
|
+
config: GetContextTagMappingConfig;
|
|
26
|
+
};
|
|
27
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation, any>>;
|
|
28
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation>): $64$luvio_engine_Snapshot<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation, any>;
|
|
29
|
+
export declare const getContextTagMappingAdapterFactory: $64$luvio_engine_AdapterFactory<GetContextTagMappingConfig, types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation>;
|
|
30
|
+
export declare const notifyChangeFactory: (luvio: $64$luvio_engine_Luvio, options?: $64$luvio_engine_DispatchResourceRequestContext) => (configs: adapter$45$utils_UncoercedConfiguration<types_RuleLibraryTagMappingsReadOutputRepresentation_KeyParams, any>[]) => void;
|
|
@@ -0,0 +1,28 @@
|
|
|
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_getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig } from '../resources/getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber';
|
|
4
|
+
import { RuleLibraryTagMappingsReadOutputRepresentationList as types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList } from '../types/RuleLibraryTagMappingsReadOutputRepresentationList';
|
|
5
|
+
export declare const adapterName = "getContextTagMappings";
|
|
6
|
+
export declare const getContextTagMappings_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getContextTagMappings_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetContextTagMappingsConfig {
|
|
9
|
+
ruleLibraryApiName: string;
|
|
10
|
+
versionNumber: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: GetContextTagMappingsConfig) => resources_getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingsConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetContextTagMappingsConfig>): adapter$45$utils_Untrusted<GetContextTagMappingsConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetContextTagMappingsConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingsConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingsConfig): $64$luvio_engine_Snapshot<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingsConfig, resourceParams: resources_getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList>): Promise<import("@luvio/engine").FulfilledSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList, {}> | import("@luvio/engine").StaleSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList, {}> | import("@luvio/engine").PendingSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingsConfig, resourceParams: resources_getConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetContextTagMappingsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetContextTagMappingsConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList>): $64$luvio_engine_Snapshot<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList, any>;
|
|
28
|
+
export declare const getContextTagMappingsAdapterFactory: $64$luvio_engine_AdapterFactory<GetContextTagMappingsConfig, types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList>;
|
|
@@ -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 { RuleLibraryTagMappingsListWrapperRepresentation as types_RuleLibraryTagMappingsListWrapperRepresentation_RuleLibraryTagMappingsListWrapperRepresentation } from '../types/RuleLibraryTagMappingsListWrapperRepresentation';
|
|
4
|
+
import { ResourceRequestConfig as resources_patchConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig } from '../resources/patchConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber';
|
|
5
|
+
import { RuleLibraryTagMappingsCreateUpdateOutputRepresentation as types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation } from '../types/RuleLibraryTagMappingsCreateUpdateOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "updateContextTagMapping";
|
|
7
|
+
export declare const updateContextTagMapping_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
8
|
+
export declare const updateContextTagMapping_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
9
|
+
export interface UpdateContextTagMappingConfig {
|
|
10
|
+
ruleLibraryApiName: string;
|
|
11
|
+
versionNumber: string;
|
|
12
|
+
contextTagMappings: types_RuleLibraryTagMappingsListWrapperRepresentation_RuleLibraryTagMappingsListWrapperRepresentation;
|
|
13
|
+
}
|
|
14
|
+
export declare const createResourceParams: (config: UpdateContextTagMappingConfig) => resources_patchConnectContextRulesContextTagMappingsRuleLibraryApiNameVersionNumberByRuleLibraryApiNameAndVersionNumber_ResourceRequestConfig;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateContextTagMappingConfig>): adapter$45$utils_Untrusted<UpdateContextTagMappingConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): UpdateContextTagMappingConfig | null;
|
|
17
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: UpdateContextTagMappingConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, any>>;
|
|
18
|
+
export declare const updateContextTagMappingAdapterFactory: $64$luvio_engine_AdapterFactory<UpdateContextTagMappingConfig, types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { getContextTagMappingsAdapterFactory } from '../adapters/getContextTagMappings';
|
|
2
|
+
export { updateContextTagMappingAdapterFactory } from '../adapters/updateContextTagMapping';
|
|
3
|
+
export { createContextTagMappingAdapterFactory } from '../adapters/createContextTagMapping';
|
|
4
|
+
export { deleteContextTagMappingAdapterFactory } from '../adapters/deleteContextTagMapping';
|
|
5
|
+
export { getContextTagMappingAdapterFactory } from '../adapters/getContextTagMapping';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare let createContextTagMapping: any;
|
|
2
|
+
declare let deleteContextTagMapping: any;
|
|
3
|
+
declare let getContextTagMapping: any;
|
|
4
|
+
declare let getContextTagMappingNotifyChange: any;
|
|
5
|
+
declare let getContextTagMappings: any;
|
|
6
|
+
declare let updateContextTagMapping: any;
|
|
7
|
+
declare let getContextTagMapping_imperative: any;
|
|
8
|
+
declare let getContextTagMappings_imperative: any;
|
|
9
|
+
export { createContextTagMapping, deleteContextTagMapping, getContextTagMapping, getContextTagMappingNotifyChange, getContextTagMappings, updateContextTagMapping, getContextTagMapping_imperative, getContextTagMappings_imperative, };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
export interface ResourceRequestConfig {
|
|
3
|
+
urlParams: {
|
|
4
|
+
mappingName: string;
|
|
5
|
+
ruleLibraryApiName: string;
|
|
6
|
+
versionNumber: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
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(cacheKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
|
|
12
|
+
export declare function evictSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
|
|
13
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
14
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { RuleLibraryTagMappingsReadOutputRepresentationList as types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList } from '../types/RuleLibraryTagMappingsReadOutputRepresentationList';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
ruleLibraryApiName: string;
|
|
6
|
+
versionNumber: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList): void;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList>): $64$luvio_engine_FulfilledSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList, {}> | $64$luvio_engine_StaleSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList, {}> | $64$luvio_engine_PendingSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList, any>;
|
|
14
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_RuleLibraryTagMappingsReadOutputRepresentationList_RuleLibraryTagMappingsReadOutputRepresentationList>): $64$luvio_engine_ErrorSnapshot;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { RuleLibraryTagMappingsReadOutputRepresentation as types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation } from '../types/RuleLibraryTagMappingsReadOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
mappingName: string;
|
|
6
|
+
ruleLibraryApiName: string;
|
|
7
|
+
versionNumber: string;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation): void;
|
|
14
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation, any>;
|
|
15
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
16
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
17
|
+
export default createResourceRequest;
|
|
18
|
+
export declare function createResourceRequestFromRepresentation(representation: types_RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation): $64$luvio_engine_ResourceRequest;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { RuleLibraryTagMappingsListWrapperRepresentation as types_RuleLibraryTagMappingsListWrapperRepresentation_RuleLibraryTagMappingsListWrapperRepresentation } from '../types/RuleLibraryTagMappingsListWrapperRepresentation';
|
|
2
|
+
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';
|
|
3
|
+
import { RuleLibraryTagMappingsCreateUpdateOutputRepresentation as types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation } from '../types/RuleLibraryTagMappingsCreateUpdateOutputRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
urlParams: {
|
|
6
|
+
ruleLibraryApiName: string;
|
|
7
|
+
versionNumber: string;
|
|
8
|
+
};
|
|
9
|
+
body: {
|
|
10
|
+
contextTagMappings: types_RuleLibraryTagMappingsListWrapperRepresentation_RuleLibraryTagMappingsListWrapperRepresentation;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
14
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation): void;
|
|
15
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, any>;
|
|
16
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
17
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { RuleLibraryTagMappingsListWrapperRepresentation as types_RuleLibraryTagMappingsListWrapperRepresentation_RuleLibraryTagMappingsListWrapperRepresentation } from '../types/RuleLibraryTagMappingsListWrapperRepresentation';
|
|
2
|
+
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';
|
|
3
|
+
import { RuleLibraryTagMappingsCreateUpdateOutputRepresentation as types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation } from '../types/RuleLibraryTagMappingsCreateUpdateOutputRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
urlParams: {
|
|
6
|
+
ruleLibraryApiName: string;
|
|
7
|
+
versionNumber: string;
|
|
8
|
+
};
|
|
9
|
+
body: {
|
|
10
|
+
contextTagMappings: types_RuleLibraryTagMappingsListWrapperRepresentation_RuleLibraryTagMappingsListWrapperRepresentation;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
14
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation): void;
|
|
15
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_RuleLibraryTagMappingsCreateUpdateOutputRepresentation_RuleLibraryTagMappingsCreateUpdateOutputRepresentation, any>;
|
|
16
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
17
|
+
export default createResourceRequest;
|
|
@@ -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, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const TTL = 1000;
|
|
3
|
+
export declare const VERSION = "7dab3fcadff55a173b214b22d1670519";
|
|
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
|
+
id: Array<string>;
|
|
8
|
+
}
|
|
9
|
+
export type RuleLibraryTagMappingsCreateUpdateOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialRuleLibraryTagMappingsCreateUpdateOutputRepresentationNormalizedKeyMetadata = 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): RuleLibraryTagMappingsCreateUpdateOutputRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: RuleLibraryTagMappingsCreateUpdateOutputRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: RuleLibraryTagMappingsCreateUpdateOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: RuleLibraryTagMappingsCreateUpdateOutputRepresentation, existing: RuleLibraryTagMappingsCreateUpdateOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RuleLibraryTagMappingsCreateUpdateOutputRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
17
|
+
export declare function equals(existing: RuleLibraryTagMappingsCreateUpdateOutputRepresentationNormalized, incoming: RuleLibraryTagMappingsCreateUpdateOutputRepresentationNormalized): 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: RuleLibraryTagMappingsCreateUpdateOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
/**
|
|
21
|
+
* Output representation of create and update tag mapping
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* id (Array<string>): ids
|
|
25
|
+
*/
|
|
26
|
+
export interface RuleLibraryTagMappingsCreateUpdateOutputRepresentationNormalized {
|
|
27
|
+
/** List of Ids of tag mapping */
|
|
28
|
+
ids: Array<string>;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Output representation of create and update tag mapping
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* id (Array<string>): ids
|
|
35
|
+
*/
|
|
36
|
+
export interface RuleLibraryTagMappingsCreateUpdateOutputRepresentation {
|
|
37
|
+
ids: Array<string>;
|
|
38
|
+
}
|
package/dist/es/es2018/types/src/generated/types/RuleLibraryTagMappingsInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
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 = "5ab6c8a530b34dbd6ca4146015f4b13d";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: RuleLibraryTagMappingsInputRepresentation, existing: RuleLibraryTagMappingsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RuleLibraryTagMappingsInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: RuleLibraryTagMappingsInputRepresentationNormalized, incoming: RuleLibraryTagMappingsInputRepresentationNormalized): 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: RuleLibraryTagMappingsInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Tag mapping input representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface RuleLibraryTagMappingsInputRepresentationNormalized {
|
|
17
|
+
/** Mapping name */
|
|
18
|
+
mappingName: string;
|
|
19
|
+
/** Sequence number */
|
|
20
|
+
sequenceNumber: number;
|
|
21
|
+
/** Tag Name */
|
|
22
|
+
tagName: string;
|
|
23
|
+
/** The usage sub type */
|
|
24
|
+
usageSubtype: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Tag mapping input representation
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface RuleLibraryTagMappingsInputRepresentation {
|
|
33
|
+
mappingName: string;
|
|
34
|
+
sequenceNumber: number;
|
|
35
|
+
tagName: string;
|
|
36
|
+
usageSubtype: string;
|
|
37
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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 = "d054ceaa69301625d5f51ba21d344091";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: RuleLibraryTagMappingsListWrapperRepresentation, existing: RuleLibraryTagMappingsListWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RuleLibraryTagMappingsListWrapperRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: RuleLibraryTagMappingsListWrapperRepresentationNormalized, incoming: RuleLibraryTagMappingsListWrapperRepresentationNormalized): 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: RuleLibraryTagMappingsListWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Tag mapping input representation list
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface RuleLibraryTagMappingsListWrapperRepresentationNormalized {
|
|
17
|
+
/** The list of tag mappings */
|
|
18
|
+
ruleLibraryTagMappingInputList: Array<unknown>;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Tag mapping input representation list
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface RuleLibraryTagMappingsListWrapperRepresentation {
|
|
27
|
+
ruleLibraryTagMappingInputList: Array<unknown>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { RuleLibraryTagMappingsListWrapperRepresentation as RuleLibraryTagMappingsListWrapperRepresentation_RuleLibraryTagMappingsListWrapperRepresentation } from './RuleLibraryTagMappingsListWrapperRepresentation';
|
|
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 = "1813a91aeada2ccfd5903796d3d5113c";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: RuleLibraryTagMappingsOverallInputRepresentation, existing: RuleLibraryTagMappingsOverallInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RuleLibraryTagMappingsOverallInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: RuleLibraryTagMappingsOverallInputRepresentationNormalized, incoming: RuleLibraryTagMappingsOverallInputRepresentationNormalized): 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: RuleLibraryTagMappingsOverallInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Tag mapping input representation list
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface RuleLibraryTagMappingsOverallInputRepresentationNormalized {
|
|
18
|
+
/** The list representation of tag mappings */
|
|
19
|
+
contextTagMappings: RuleLibraryTagMappingsListWrapperRepresentation_RuleLibraryTagMappingsListWrapperRepresentation;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Tag mapping input representation list
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface RuleLibraryTagMappingsOverallInputRepresentation {
|
|
28
|
+
contextTagMappings: RuleLibraryTagMappingsListWrapperRepresentation_RuleLibraryTagMappingsListWrapperRepresentation;
|
|
29
|
+
}
|
package/dist/es/es2018/types/src/generated/types/RuleLibraryTagMappingsReadOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
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, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const TTL = 1000;
|
|
3
|
+
export declare const VERSION = "4b7bef672f4996c31c5a042959681437";
|
|
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
|
+
id: string;
|
|
8
|
+
}
|
|
9
|
+
export type RuleLibraryTagMappingsReadOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialRuleLibraryTagMappingsReadOutputRepresentationNormalizedKeyMetadata = 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): RuleLibraryTagMappingsReadOutputRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: RuleLibraryTagMappingsReadOutputRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: RuleLibraryTagMappingsReadOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: RuleLibraryTagMappingsReadOutputRepresentation, existing: RuleLibraryTagMappingsReadOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RuleLibraryTagMappingsReadOutputRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
17
|
+
export declare function equals(existing: RuleLibraryTagMappingsReadOutputRepresentationNormalized, incoming: RuleLibraryTagMappingsReadOutputRepresentationNormalized): 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: RuleLibraryTagMappingsReadOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
/**
|
|
21
|
+
* Output representation of read tag mapping
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* id (string): mappingName
|
|
25
|
+
*/
|
|
26
|
+
export interface RuleLibraryTagMappingsReadOutputRepresentationNormalized {
|
|
27
|
+
/** Id of the tag mapping */
|
|
28
|
+
id: string;
|
|
29
|
+
/** Mapping name */
|
|
30
|
+
mappingName: string;
|
|
31
|
+
/** API name of the rule library */
|
|
32
|
+
ruleLibraryApiName: string;
|
|
33
|
+
/** Sequence number */
|
|
34
|
+
sequenceNumber?: number;
|
|
35
|
+
/** Tag name */
|
|
36
|
+
tagName: string;
|
|
37
|
+
/** Usage subtype */
|
|
38
|
+
usageSubtype?: string;
|
|
39
|
+
/** Version number */
|
|
40
|
+
versionNumber: number;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Output representation of read tag mapping
|
|
44
|
+
*
|
|
45
|
+
* Keys:
|
|
46
|
+
* id (string): mappingName
|
|
47
|
+
*/
|
|
48
|
+
export interface RuleLibraryTagMappingsReadOutputRepresentation {
|
|
49
|
+
id: string;
|
|
50
|
+
mappingName: string;
|
|
51
|
+
ruleLibraryApiName: string;
|
|
52
|
+
sequenceNumber?: number;
|
|
53
|
+
tagName: string;
|
|
54
|
+
usageSubtype?: string;
|
|
55
|
+
versionNumber: number;
|
|
56
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { RuleLibraryTagMappingsReadOutputRepresentation as RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation } from './RuleLibraryTagMappingsReadOutputRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 1000;
|
|
4
|
+
export declare const VERSION = "3839d94c828e170861b071d1d1fe5292";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: RuleLibraryTagMappingsReadOutputRepresentationList, existing: RuleLibraryTagMappingsReadOutputRepresentationListNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RuleLibraryTagMappingsReadOutputRepresentationListNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: RuleLibraryTagMappingsReadOutputRepresentationListNormalized, incoming: RuleLibraryTagMappingsReadOutputRepresentationListNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: RuleLibraryTagMappingsReadOutputRepresentationList, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Output representation list of read tag mapping
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface RuleLibraryTagMappingsReadOutputRepresentationListNormalized {
|
|
19
|
+
/** List of RuleLibraryTagMappingsReadOutputRepresentation */
|
|
20
|
+
ruleLibraryTagMappings: Array<$64$luvio_engine_StoreLink>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Output representation list of read tag mapping
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface RuleLibraryTagMappingsReadOutputRepresentationList {
|
|
29
|
+
ruleLibraryTagMappings: Array<RuleLibraryTagMappingsReadOutputRepresentation_RuleLibraryTagMappingsReadOutputRepresentation>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectKeys: {
|
|
3
|
+
(o: object): string[];
|
|
4
|
+
(o: {}): string[];
|
|
5
|
+
}, ObjectCreate: {
|
|
6
|
+
(o: object | null): any;
|
|
7
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
8
|
+
}, ObjectAssign: {
|
|
9
|
+
<T extends {}, U>(target: T, source: U): T & U;
|
|
10
|
+
<T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
|
|
11
|
+
<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;
|
|
12
|
+
(target: object, ...sources: any[]): any;
|
|
13
|
+
};
|
|
14
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
15
|
+
export declare const JSONStringify: {
|
|
16
|
+
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
|
|
17
|
+
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
|
|
18
|
+
};
|
|
19
|
+
type AllowedPrimitives = boolean | string | number | Date | null;
|
|
20
|
+
type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
|
|
21
|
+
export type RecursivePartial<T> = null | {
|
|
22
|
+
[P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
|
|
23
|
+
};
|
|
24
|
+
export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
|
|
25
|
+
export declare function equalsObject<U, V extends {
|
|
26
|
+
[key: string]: U;
|
|
27
|
+
}>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
|
|
28
|
+
export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
|
|
29
|
+
__ref: string;
|
|
30
|
+
};
|
|
31
|
+
export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
32
|
+
export {};
|