@salesforce/lds-adapters-cms-orchestrator 1.124.2 → 1.124.3
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/dist/es/es2018/cms-orchestrator.js +1762 -1762
- package/dist/{types → es/es2018/types}/src/generated/adapters/adapter-utils.d.ts +66 -66
- package/dist/{types → es/es2018/types}/src/generated/adapters/createManagedContentOrchestrationInstance.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/adapters/getManagedContentOrchestrationDefinitions.d.ts +28 -28
- package/dist/{types → es/es2018/types}/src/generated/adapters/getManagedContentOrchestrationInstances.d.ts +26 -26
- package/dist/{types → es/es2018/types}/src/generated/adapters/getManagedContentRunningOrchestrationHistoryEvents.d.ts +26 -26
- package/dist/{types → es/es2018/types}/src/generated/artifacts/main.d.ts +4 -4
- package/dist/{types → es/es2018/types}/src/generated/artifacts/sfdc.d.ts +8 -8
- package/dist/{types → es/es2018/types}/src/generated/resources/getConnectCmsContentsOrchestrationDefinitions.d.ts +17 -17
- package/dist/{types → es/es2018/types}/src/generated/resources/getConnectCmsContentsOrchestrationHistoryEvents.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/resources/getConnectCmsContentsOrchestrationInstances.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/resources/postConnectCmsContentsOrchestrationInstances.d.ts +13 -13
- package/dist/{types → es/es2018/types}/src/generated/types/ManagedContentOrchestrationDefinitionCollectionRepresentation.d.ts +52 -52
- package/dist/{types → es/es2018/types}/src/generated/types/ManagedContentOrchestrationDefinitionRepresentation.d.ts +51 -51
- package/dist/{types → es/es2018/types}/src/generated/types/ManagedContentOrchestrationInstanceCollectionRepresentation.d.ts +40 -40
- package/dist/{types → es/es2018/types}/src/generated/types/ManagedContentOrchestrationInstanceInputRepresentation.d.ts +32 -32
- package/dist/{types → es/es2018/types}/src/generated/types/ManagedContentOrchestrationInstanceInputWrapperRepresentation.d.ts +29 -29
- package/dist/{types → es/es2018/types}/src/generated/types/ManagedContentOrchestrationInstanceRepresentation.d.ts +55 -55
- package/dist/{types → es/es2018/types}/src/generated/types/ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation.d.ts +31 -31
- package/dist/{types → es/es2018/types}/src/generated/types/ManagedContentRunningOrchestrationHistoryEventRepresentation.d.ts +72 -72
- package/dist/{types → es/es2018/types}/src/generated/types/type-utils.d.ts +39 -39
- package/package.json +5 -5
- package/sfdc/index.d.ts +1 -1
- package/sfdc/index.js +1804 -1804
- package/dist/umd/es2018/cms-orchestrator.js +0 -1816
- package/dist/umd/es5/cms-orchestrator.js +0 -1823
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot } from '@luvio/engine';
|
|
2
|
-
export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
3
|
-
declare const ObjectKeys: {
|
|
4
|
-
(o: object): string[];
|
|
5
|
-
(o: {}): string[];
|
|
6
|
-
}, ObjectFreeze: {
|
|
7
|
-
<T extends Function>(f: T): T;
|
|
8
|
-
<T_1 extends {
|
|
9
|
-
[idx: string]: object | U | null | undefined;
|
|
10
|
-
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
11
|
-
<T_2>(o: T_2): Readonly<T_2>;
|
|
12
|
-
}, ObjectCreate: {
|
|
13
|
-
(o: object | null): any;
|
|
14
|
-
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
15
|
-
};
|
|
16
|
-
export { ObjectFreeze, ObjectCreate, ObjectKeys };
|
|
17
|
-
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
18
|
-
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
19
|
-
export interface AdapterValidationConfig {
|
|
20
|
-
displayName: string;
|
|
21
|
-
parameters: {
|
|
22
|
-
required: string[];
|
|
23
|
-
optional: string[];
|
|
24
|
-
unsupported?: string[];
|
|
25
|
-
};
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* Validates an adapter config is well-formed.
|
|
29
|
-
* @param config The config to validate.
|
|
30
|
-
* @param adapter The adapter validation configuration.
|
|
31
|
-
* @param oneOf The keys the config must contain at least one of.
|
|
32
|
-
* @throws A TypeError if config doesn't satisfy the adapter's config validation.
|
|
33
|
-
*/
|
|
34
|
-
export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
|
|
35
|
-
export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
|
|
36
|
-
export type UncoercedConfiguration<Base, Options extends {
|
|
37
|
-
[key in keyof Base]?: any;
|
|
38
|
-
}> = {
|
|
39
|
-
[Key in keyof Base]?: Base[Key] | Options[Key];
|
|
40
|
-
};
|
|
41
|
-
export type Untrusted<Base> = Partial<Base>;
|
|
42
|
-
export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
|
|
43
|
-
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>;
|
|
44
|
-
export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
|
|
45
|
-
export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
|
|
46
|
-
export declare const snapshotRefreshOptions: {
|
|
47
|
-
overrides: {
|
|
48
|
-
headers: {
|
|
49
|
-
'Cache-Control': string;
|
|
50
|
-
};
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
|
-
/**
|
|
54
|
-
* A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
|
|
55
|
-
* This is needed because insertion order for JSON.stringify(object) affects output:
|
|
56
|
-
* JSON.stringify({a: 1, b: 2})
|
|
57
|
-
* "{"a":1,"b":2}"
|
|
58
|
-
* JSON.stringify({b: 2, a: 1})
|
|
59
|
-
* "{"b":2,"a":1}"
|
|
60
|
-
* @param data Data to be JSON-stringified.
|
|
61
|
-
* @returns JSON.stringified value with consistent ordering of keys.
|
|
62
|
-
*/
|
|
63
|
-
export declare function stableJSONStringify(node: any): string | undefined;
|
|
64
|
-
export declare function getFetchResponseStatusText(status: number): string;
|
|
65
|
-
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
66
|
-
export declare const keyPrefix = "CMSOrchestrator";
|
|
1
|
+
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
3
|
+
declare const ObjectKeys: {
|
|
4
|
+
(o: object): string[];
|
|
5
|
+
(o: {}): string[];
|
|
6
|
+
}, ObjectFreeze: {
|
|
7
|
+
<T extends Function>(f: T): T;
|
|
8
|
+
<T_1 extends {
|
|
9
|
+
[idx: string]: object | U | null | undefined;
|
|
10
|
+
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
11
|
+
<T_2>(o: T_2): Readonly<T_2>;
|
|
12
|
+
}, ObjectCreate: {
|
|
13
|
+
(o: object | null): any;
|
|
14
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
15
|
+
};
|
|
16
|
+
export { ObjectFreeze, ObjectCreate, ObjectKeys };
|
|
17
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
18
|
+
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
19
|
+
export interface AdapterValidationConfig {
|
|
20
|
+
displayName: string;
|
|
21
|
+
parameters: {
|
|
22
|
+
required: string[];
|
|
23
|
+
optional: string[];
|
|
24
|
+
unsupported?: string[];
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Validates an adapter config is well-formed.
|
|
29
|
+
* @param config The config to validate.
|
|
30
|
+
* @param adapter The adapter validation configuration.
|
|
31
|
+
* @param oneOf The keys the config must contain at least one of.
|
|
32
|
+
* @throws A TypeError if config doesn't satisfy the adapter's config validation.
|
|
33
|
+
*/
|
|
34
|
+
export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
|
|
35
|
+
export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
|
|
36
|
+
export type UncoercedConfiguration<Base, Options extends {
|
|
37
|
+
[key in keyof Base]?: any;
|
|
38
|
+
}> = {
|
|
39
|
+
[Key in keyof Base]?: Base[Key] | Options[Key];
|
|
40
|
+
};
|
|
41
|
+
export type Untrusted<Base> = Partial<Base>;
|
|
42
|
+
export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
|
|
43
|
+
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>;
|
|
44
|
+
export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
|
|
45
|
+
export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
|
|
46
|
+
export declare const snapshotRefreshOptions: {
|
|
47
|
+
overrides: {
|
|
48
|
+
headers: {
|
|
49
|
+
'Cache-Control': string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
|
|
55
|
+
* This is needed because insertion order for JSON.stringify(object) affects output:
|
|
56
|
+
* JSON.stringify({a: 1, b: 2})
|
|
57
|
+
* "{"a":1,"b":2}"
|
|
58
|
+
* JSON.stringify({b: 2, a: 1})
|
|
59
|
+
* "{"b":2,"a":1}"
|
|
60
|
+
* @param data Data to be JSON-stringified.
|
|
61
|
+
* @returns JSON.stringified value with consistent ordering of keys.
|
|
62
|
+
*/
|
|
63
|
+
export declare function stableJSONStringify(node: any): string | undefined;
|
|
64
|
+
export declare function getFetchResponseStatusText(status: number): string;
|
|
65
|
+
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
66
|
+
export declare const keyPrefix = "CMSOrchestrator";
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
-
import { ManagedContentOrchestrationInstanceInputRepresentation as types_ManagedContentOrchestrationInstanceInputRepresentation_ManagedContentOrchestrationInstanceInputRepresentation } from '../types/ManagedContentOrchestrationInstanceInputRepresentation';
|
|
3
|
-
import { ResourceRequestConfig as resources_postConnectCmsContentsOrchestrationInstances_ResourceRequestConfig } from '../resources/postConnectCmsContentsOrchestrationInstances';
|
|
4
|
-
import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
5
|
-
import { ManagedContentOrchestrationInstanceRepresentation as types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation } from '../types/ManagedContentOrchestrationInstanceRepresentation';
|
|
6
|
-
export declare const adapterName = "createManagedContentOrchestrationInstance";
|
|
7
|
-
export declare const createManagedContentOrchestrationInstance_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
-
export interface CreateManagedContentOrchestrationInstanceConfig {
|
|
9
|
-
mContentOrchInstanceInput: types_ManagedContentOrchestrationInstanceInputRepresentation_ManagedContentOrchestrationInstanceInputRepresentation;
|
|
10
|
-
}
|
|
11
|
-
export declare function createResourceParams(config: CreateManagedContentOrchestrationInstanceConfig): resources_postConnectCmsContentsOrchestrationInstances_ResourceRequestConfig;
|
|
12
|
-
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateManagedContentOrchestrationInstanceConfig>): adapter$45$utils_Untrusted<CreateManagedContentOrchestrationInstanceConfig>;
|
|
13
|
-
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateManagedContentOrchestrationInstanceConfig | null;
|
|
14
|
-
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateManagedContentOrchestrationInstanceConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, any>>;
|
|
15
|
-
export declare const createManagedContentOrchestrationInstanceAdapterFactory: $64$luvio_engine_AdapterFactory<CreateManagedContentOrchestrationInstanceConfig, types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation>;
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ManagedContentOrchestrationInstanceInputRepresentation as types_ManagedContentOrchestrationInstanceInputRepresentation_ManagedContentOrchestrationInstanceInputRepresentation } from '../types/ManagedContentOrchestrationInstanceInputRepresentation';
|
|
3
|
+
import { ResourceRequestConfig as resources_postConnectCmsContentsOrchestrationInstances_ResourceRequestConfig } from '../resources/postConnectCmsContentsOrchestrationInstances';
|
|
4
|
+
import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
5
|
+
import { ManagedContentOrchestrationInstanceRepresentation as types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation } from '../types/ManagedContentOrchestrationInstanceRepresentation';
|
|
6
|
+
export declare const adapterName = "createManagedContentOrchestrationInstance";
|
|
7
|
+
export declare const createManagedContentOrchestrationInstance_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface CreateManagedContentOrchestrationInstanceConfig {
|
|
9
|
+
mContentOrchInstanceInput: types_ManagedContentOrchestrationInstanceInputRepresentation_ManagedContentOrchestrationInstanceInputRepresentation;
|
|
10
|
+
}
|
|
11
|
+
export declare function createResourceParams(config: CreateManagedContentOrchestrationInstanceConfig): resources_postConnectCmsContentsOrchestrationInstances_ResourceRequestConfig;
|
|
12
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateManagedContentOrchestrationInstanceConfig>): adapter$45$utils_Untrusted<CreateManagedContentOrchestrationInstanceConfig>;
|
|
13
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateManagedContentOrchestrationInstanceConfig | null;
|
|
14
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateManagedContentOrchestrationInstanceConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, any>>;
|
|
15
|
+
export declare const createManagedContentOrchestrationInstanceAdapterFactory: $64$luvio_engine_AdapterFactory<CreateManagedContentOrchestrationInstanceConfig, types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation>;
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
-
import { ResourceRequestConfig as resources_getConnectCmsContentsOrchestrationDefinitions_ResourceRequestConfig } from '../resources/getConnectCmsContentsOrchestrationDefinitions';
|
|
3
|
-
import { 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';
|
|
4
|
-
import { ManagedContentOrchestrationDefinitionCollectionRepresentation as types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation } from '../types/ManagedContentOrchestrationDefinitionCollectionRepresentation';
|
|
5
|
-
export declare const adapterName = "getManagedContentOrchestrationDefinitions";
|
|
6
|
-
export declare const getManagedContentOrchestrationDefinitions_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
-
export interface GetManagedContentOrchestrationDefinitionsConfig {
|
|
8
|
-
managedContentVariantId?: string;
|
|
9
|
-
page?: number;
|
|
10
|
-
pageSize?: number;
|
|
11
|
-
}
|
|
12
|
-
export declare function createResourceParams(config: GetManagedContentOrchestrationDefinitionsConfig): resources_getConnectCmsContentsOrchestrationDefinitions_ResourceRequestConfig;
|
|
13
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig): string;
|
|
14
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
-
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetManagedContentOrchestrationDefinitionsConfig>): adapter$45$utils_Untrusted<GetManagedContentOrchestrationDefinitionsConfig>;
|
|
16
|
-
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetManagedContentOrchestrationDefinitionsConfig | null;
|
|
17
|
-
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig): $64$luvio_engine_Fragment;
|
|
18
|
-
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig): $64$luvio_engine_Snapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any>;
|
|
19
|
-
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig, resourceParams: resources_getConnectCmsContentsOrchestrationDefinitions_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>): Promise<import("@luvio/engine").
|
|
20
|
-
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig, resourceParams: resources_getConnectCmsContentsOrchestrationDefinitions_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
-
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any>>;
|
|
22
|
-
export type BuildSnapshotContext = {
|
|
23
|
-
luvio: $64$luvio_engine_Luvio;
|
|
24
|
-
config: GetManagedContentOrchestrationDefinitionsConfig;
|
|
25
|
-
};
|
|
26
|
-
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any>>;
|
|
27
|
-
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>): $64$luvio_engine_Snapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any>;
|
|
28
|
-
export declare const getManagedContentOrchestrationDefinitionsAdapterFactory: $64$luvio_engine_AdapterFactory<GetManagedContentOrchestrationDefinitionsConfig, types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>;
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_getConnectCmsContentsOrchestrationDefinitions_ResourceRequestConfig } from '../resources/getConnectCmsContentsOrchestrationDefinitions';
|
|
3
|
+
import { 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';
|
|
4
|
+
import { ManagedContentOrchestrationDefinitionCollectionRepresentation as types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation } from '../types/ManagedContentOrchestrationDefinitionCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getManagedContentOrchestrationDefinitions";
|
|
6
|
+
export declare const getManagedContentOrchestrationDefinitions_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface GetManagedContentOrchestrationDefinitionsConfig {
|
|
8
|
+
managedContentVariantId?: string;
|
|
9
|
+
page?: number;
|
|
10
|
+
pageSize?: number;
|
|
11
|
+
}
|
|
12
|
+
export declare function createResourceParams(config: GetManagedContentOrchestrationDefinitionsConfig): resources_getConnectCmsContentsOrchestrationDefinitions_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetManagedContentOrchestrationDefinitionsConfig>): adapter$45$utils_Untrusted<GetManagedContentOrchestrationDefinitionsConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetManagedContentOrchestrationDefinitionsConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig): $64$luvio_engine_Snapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig, resourceParams: resources_getConnectCmsContentsOrchestrationDefinitions_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig, resourceParams: resources_getConnectCmsContentsOrchestrationDefinitions_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationDefinitionsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetManagedContentOrchestrationDefinitionsConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>): $64$luvio_engine_Snapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any>;
|
|
28
|
+
export declare const getManagedContentOrchestrationDefinitionsAdapterFactory: $64$luvio_engine_AdapterFactory<GetManagedContentOrchestrationDefinitionsConfig, types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>;
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
-
import { ResourceRequestConfig as resources_getConnectCmsContentsOrchestrationInstances_ResourceRequestConfig } from '../resources/getConnectCmsContentsOrchestrationInstances';
|
|
3
|
-
import { 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';
|
|
4
|
-
import { ManagedContentOrchestrationInstanceCollectionRepresentation as types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation } from '../types/ManagedContentOrchestrationInstanceCollectionRepresentation';
|
|
5
|
-
export declare const adapterName = "getManagedContentOrchestrationInstances";
|
|
6
|
-
export declare const getManagedContentOrchestrationInstances_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
-
export interface GetManagedContentOrchestrationInstancesConfig {
|
|
8
|
-
managedContentVariantId?: string;
|
|
9
|
-
}
|
|
10
|
-
export declare function createResourceParams(config: GetManagedContentOrchestrationInstancesConfig): resources_getConnectCmsContentsOrchestrationInstances_ResourceRequestConfig;
|
|
11
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig): string;
|
|
12
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
-
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetManagedContentOrchestrationInstancesConfig>): adapter$45$utils_Untrusted<GetManagedContentOrchestrationInstancesConfig>;
|
|
14
|
-
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetManagedContentOrchestrationInstancesConfig | null;
|
|
15
|
-
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig): $64$luvio_engine_Fragment;
|
|
16
|
-
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig): $64$luvio_engine_Snapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any>;
|
|
17
|
-
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig, resourceParams: resources_getConnectCmsContentsOrchestrationInstances_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>): Promise<import("@luvio/engine").
|
|
18
|
-
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig, resourceParams: resources_getConnectCmsContentsOrchestrationInstances_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
19
|
-
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any>>;
|
|
20
|
-
export type BuildSnapshotContext = {
|
|
21
|
-
luvio: $64$luvio_engine_Luvio;
|
|
22
|
-
config: GetManagedContentOrchestrationInstancesConfig;
|
|
23
|
-
};
|
|
24
|
-
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any>>;
|
|
25
|
-
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_Snapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any>;
|
|
26
|
-
export declare const getManagedContentOrchestrationInstancesAdapterFactory: $64$luvio_engine_AdapterFactory<GetManagedContentOrchestrationInstancesConfig, types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>;
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_getConnectCmsContentsOrchestrationInstances_ResourceRequestConfig } from '../resources/getConnectCmsContentsOrchestrationInstances';
|
|
3
|
+
import { 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';
|
|
4
|
+
import { ManagedContentOrchestrationInstanceCollectionRepresentation as types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation } from '../types/ManagedContentOrchestrationInstanceCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getManagedContentOrchestrationInstances";
|
|
6
|
+
export declare const getManagedContentOrchestrationInstances_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface GetManagedContentOrchestrationInstancesConfig {
|
|
8
|
+
managedContentVariantId?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare function createResourceParams(config: GetManagedContentOrchestrationInstancesConfig): resources_getConnectCmsContentsOrchestrationInstances_ResourceRequestConfig;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetManagedContentOrchestrationInstancesConfig>): adapter$45$utils_Untrusted<GetManagedContentOrchestrationInstancesConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetManagedContentOrchestrationInstancesConfig | null;
|
|
15
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig): $64$luvio_engine_Fragment;
|
|
16
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig): $64$luvio_engine_Snapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any>;
|
|
17
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig, resourceParams: resources_getConnectCmsContentsOrchestrationInstances_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any>>;
|
|
18
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig, resourceParams: resources_getConnectCmsContentsOrchestrationInstances_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
19
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentOrchestrationInstancesConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any>>;
|
|
20
|
+
export type BuildSnapshotContext = {
|
|
21
|
+
luvio: $64$luvio_engine_Luvio;
|
|
22
|
+
config: GetManagedContentOrchestrationInstancesConfig;
|
|
23
|
+
};
|
|
24
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any>>;
|
|
25
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_Snapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any>;
|
|
26
|
+
export declare const getManagedContentOrchestrationInstancesAdapterFactory: $64$luvio_engine_AdapterFactory<GetManagedContentOrchestrationInstancesConfig, types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>;
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
-
import { ResourceRequestConfig as resources_getConnectCmsContentsOrchestrationHistoryEvents_ResourceRequestConfig } from '../resources/getConnectCmsContentsOrchestrationHistoryEvents';
|
|
3
|
-
import { 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';
|
|
4
|
-
import { ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation as types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation } from '../types/ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation';
|
|
5
|
-
export declare const adapterName = "getManagedContentRunningOrchestrationHistoryEvents";
|
|
6
|
-
export declare const getManagedContentRunningOrchestrationHistoryEvents_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
-
export interface GetManagedContentRunningOrchestrationHistoryEventsConfig {
|
|
8
|
-
managedContentVariantId?: string;
|
|
9
|
-
}
|
|
10
|
-
export declare function createResourceParams(config: GetManagedContentRunningOrchestrationHistoryEventsConfig): resources_getConnectCmsContentsOrchestrationHistoryEvents_ResourceRequestConfig;
|
|
11
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig): string;
|
|
12
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
-
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetManagedContentRunningOrchestrationHistoryEventsConfig>): adapter$45$utils_Untrusted<GetManagedContentRunningOrchestrationHistoryEventsConfig>;
|
|
14
|
-
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetManagedContentRunningOrchestrationHistoryEventsConfig | null;
|
|
15
|
-
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig): $64$luvio_engine_Fragment;
|
|
16
|
-
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig): $64$luvio_engine_Snapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any>;
|
|
17
|
-
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig, resourceParams: resources_getConnectCmsContentsOrchestrationHistoryEvents_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>): Promise<import("@luvio/engine").
|
|
18
|
-
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig, resourceParams: resources_getConnectCmsContentsOrchestrationHistoryEvents_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
19
|
-
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any>>;
|
|
20
|
-
export type BuildSnapshotContext = {
|
|
21
|
-
luvio: $64$luvio_engine_Luvio;
|
|
22
|
-
config: GetManagedContentRunningOrchestrationHistoryEventsConfig;
|
|
23
|
-
};
|
|
24
|
-
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any>>;
|
|
25
|
-
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>): $64$luvio_engine_Snapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any>;
|
|
26
|
-
export declare const getManagedContentRunningOrchestrationHistoryEventsAdapterFactory: $64$luvio_engine_AdapterFactory<GetManagedContentRunningOrchestrationHistoryEventsConfig, types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>;
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_getConnectCmsContentsOrchestrationHistoryEvents_ResourceRequestConfig } from '../resources/getConnectCmsContentsOrchestrationHistoryEvents';
|
|
3
|
+
import { 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';
|
|
4
|
+
import { ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation as types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation } from '../types/ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getManagedContentRunningOrchestrationHistoryEvents";
|
|
6
|
+
export declare const getManagedContentRunningOrchestrationHistoryEvents_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface GetManagedContentRunningOrchestrationHistoryEventsConfig {
|
|
8
|
+
managedContentVariantId?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare function createResourceParams(config: GetManagedContentRunningOrchestrationHistoryEventsConfig): resources_getConnectCmsContentsOrchestrationHistoryEvents_ResourceRequestConfig;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetManagedContentRunningOrchestrationHistoryEventsConfig>): adapter$45$utils_Untrusted<GetManagedContentRunningOrchestrationHistoryEventsConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetManagedContentRunningOrchestrationHistoryEventsConfig | null;
|
|
15
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig): $64$luvio_engine_Fragment;
|
|
16
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig): $64$luvio_engine_Snapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any>;
|
|
17
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig, resourceParams: resources_getConnectCmsContentsOrchestrationHistoryEvents_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any>>;
|
|
18
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig, resourceParams: resources_getConnectCmsContentsOrchestrationHistoryEvents_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
19
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetManagedContentRunningOrchestrationHistoryEventsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any>>;
|
|
20
|
+
export type BuildSnapshotContext = {
|
|
21
|
+
luvio: $64$luvio_engine_Luvio;
|
|
22
|
+
config: GetManagedContentRunningOrchestrationHistoryEventsConfig;
|
|
23
|
+
};
|
|
24
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any>>;
|
|
25
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>): $64$luvio_engine_Snapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any>;
|
|
26
|
+
export declare const getManagedContentRunningOrchestrationHistoryEventsAdapterFactory: $64$luvio_engine_AdapterFactory<GetManagedContentRunningOrchestrationHistoryEventsConfig, types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { getManagedContentOrchestrationDefinitionsAdapterFactory } from '../adapters/getManagedContentOrchestrationDefinitions';
|
|
2
|
-
export { getManagedContentOrchestrationInstancesAdapterFactory } from '../adapters/getManagedContentOrchestrationInstances';
|
|
3
|
-
export { createManagedContentOrchestrationInstanceAdapterFactory } from '../adapters/createManagedContentOrchestrationInstance';
|
|
4
|
-
export { getManagedContentRunningOrchestrationHistoryEventsAdapterFactory } from '../adapters/getManagedContentRunningOrchestrationHistoryEvents';
|
|
1
|
+
export { getManagedContentOrchestrationDefinitionsAdapterFactory } from '../adapters/getManagedContentOrchestrationDefinitions';
|
|
2
|
+
export { getManagedContentOrchestrationInstancesAdapterFactory } from '../adapters/getManagedContentOrchestrationInstances';
|
|
3
|
+
export { createManagedContentOrchestrationInstanceAdapterFactory } from '../adapters/createManagedContentOrchestrationInstance';
|
|
4
|
+
export { getManagedContentRunningOrchestrationHistoryEventsAdapterFactory } from '../adapters/getManagedContentRunningOrchestrationHistoryEvents';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
declare let createManagedContentOrchestrationInstance: any;
|
|
2
|
-
declare let getManagedContentOrchestrationDefinitions: any;
|
|
3
|
-
declare let getManagedContentOrchestrationInstances: any;
|
|
4
|
-
declare let getManagedContentRunningOrchestrationHistoryEvents: any;
|
|
5
|
-
declare let getManagedContentOrchestrationDefinitions_imperative: any;
|
|
6
|
-
declare let getManagedContentOrchestrationInstances_imperative: any;
|
|
7
|
-
declare let getManagedContentRunningOrchestrationHistoryEvents_imperative: any;
|
|
8
|
-
export { createManagedContentOrchestrationInstance, getManagedContentOrchestrationDefinitions, getManagedContentOrchestrationInstances, getManagedContentRunningOrchestrationHistoryEvents, getManagedContentOrchestrationDefinitions_imperative, getManagedContentOrchestrationInstances_imperative, getManagedContentRunningOrchestrationHistoryEvents_imperative };
|
|
1
|
+
declare let createManagedContentOrchestrationInstance: any;
|
|
2
|
+
declare let getManagedContentOrchestrationDefinitions: any;
|
|
3
|
+
declare let getManagedContentOrchestrationInstances: any;
|
|
4
|
+
declare let getManagedContentRunningOrchestrationHistoryEvents: any;
|
|
5
|
+
declare let getManagedContentOrchestrationDefinitions_imperative: any;
|
|
6
|
+
declare let getManagedContentOrchestrationInstances_imperative: any;
|
|
7
|
+
declare let getManagedContentRunningOrchestrationHistoryEvents_imperative: any;
|
|
8
|
+
export { createManagedContentOrchestrationInstance, getManagedContentOrchestrationDefinitions, getManagedContentOrchestrationInstances, getManagedContentRunningOrchestrationHistoryEvents, getManagedContentOrchestrationDefinitions_imperative, getManagedContentOrchestrationInstances_imperative, getManagedContentRunningOrchestrationHistoryEvents_imperative };
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { ManagedContentOrchestrationDefinitionCollectionRepresentation as types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation } from '../types/ManagedContentOrchestrationDefinitionCollectionRepresentation';
|
|
3
|
-
export interface ResourceRequestConfig {
|
|
4
|
-
queryParams: {
|
|
5
|
-
managedContentVariantId?: string;
|
|
6
|
-
page?: number;
|
|
7
|
-
pageSize?: number;
|
|
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(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
14
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any>;
|
|
15
|
-
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
16
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
17
|
-
export default createResourceRequest;
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { ManagedContentOrchestrationDefinitionCollectionRepresentation as types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation } from '../types/ManagedContentOrchestrationDefinitionCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
managedContentVariantId?: string;
|
|
6
|
+
page?: number;
|
|
7
|
+
pageSize?: number;
|
|
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(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
14
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any>;
|
|
15
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
16
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
17
|
+
export default createResourceRequest;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation as types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation } from '../types/ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation';
|
|
3
|
-
export interface ResourceRequestConfig {
|
|
4
|
-
queryParams: {
|
|
5
|
-
managedContentVariantId?: 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(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any>;
|
|
13
|
-
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
-
export default createResourceRequest;
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation as types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation } from '../types/ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
managedContentVariantId?: 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(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { ManagedContentOrchestrationInstanceCollectionRepresentation as types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation } from '../types/ManagedContentOrchestrationInstanceCollectionRepresentation';
|
|
3
|
-
export interface ResourceRequestConfig {
|
|
4
|
-
queryParams: {
|
|
5
|
-
managedContentVariantId?: 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(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any>;
|
|
13
|
-
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
-
export default createResourceRequest;
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { ManagedContentOrchestrationInstanceCollectionRepresentation as types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation } from '../types/ManagedContentOrchestrationInstanceCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
managedContentVariantId?: 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(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { ManagedContentOrchestrationInstanceInputRepresentation as types_ManagedContentOrchestrationInstanceInputRepresentation_ManagedContentOrchestrationInstanceInputRepresentation } from '../types/ManagedContentOrchestrationInstanceInputRepresentation';
|
|
2
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { ManagedContentOrchestrationInstanceRepresentation as types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation } from '../types/ManagedContentOrchestrationInstanceRepresentation';
|
|
4
|
-
export interface ResourceRequestConfig {
|
|
5
|
-
body: {
|
|
6
|
-
mContentOrchInstanceInput: types_ManagedContentOrchestrationInstanceInputRepresentation_ManagedContentOrchestrationInstanceInputRepresentation;
|
|
7
|
-
};
|
|
8
|
-
}
|
|
9
|
-
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, any>;
|
|
12
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
-
export default createResourceRequest;
|
|
1
|
+
import { ManagedContentOrchestrationInstanceInputRepresentation as types_ManagedContentOrchestrationInstanceInputRepresentation_ManagedContentOrchestrationInstanceInputRepresentation } from '../types/ManagedContentOrchestrationInstanceInputRepresentation';
|
|
2
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { ManagedContentOrchestrationInstanceRepresentation as types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation } from '../types/ManagedContentOrchestrationInstanceRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
body: {
|
|
6
|
+
mContentOrchInstanceInput: types_ManagedContentOrchestrationInstanceInputRepresentation_ManagedContentOrchestrationInstanceInputRepresentation;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation, any>;
|
|
12
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
+
export default createResourceRequest;
|