@salesforce/lds-adapters-cms-orchestrator 1.100.2
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/cms-orchestrator.js +1770 -0
- package/dist/types/src/generated/adapters/adapter-utils.d.ts +66 -0
- package/dist/types/src/generated/adapters/createManagedContentOrchestrationInstance.d.ts +15 -0
- package/dist/types/src/generated/adapters/getManagedContentOrchestrationDefinitions.d.ts +28 -0
- package/dist/types/src/generated/adapters/getManagedContentOrchestrationInstances.d.ts +26 -0
- package/dist/types/src/generated/adapters/getManagedContentRunningOrchestrationHistoryEvents.d.ts +26 -0
- package/dist/types/src/generated/artifacts/main.d.ts +4 -0
- package/dist/types/src/generated/artifacts/sfdc.d.ts +8 -0
- package/dist/types/src/generated/resources/getConnectCmsContentsOrchestrationDefinitions.d.ts +17 -0
- package/dist/types/src/generated/resources/getConnectCmsContentsOrchestrationHistoryEvents.d.ts +15 -0
- package/dist/types/src/generated/resources/getConnectCmsContentsOrchestrationInstances.d.ts +15 -0
- package/dist/types/src/generated/resources/postConnectCmsContentsOrchestrationInstances.d.ts +13 -0
- package/dist/types/src/generated/types/ManagedContentOrchestrationDefinitionCollectionRepresentation.d.ts +52 -0
- package/dist/types/src/generated/types/ManagedContentOrchestrationDefinitionRepresentation.d.ts +51 -0
- package/dist/types/src/generated/types/ManagedContentOrchestrationInstanceCollectionRepresentation.d.ts +40 -0
- package/dist/types/src/generated/types/ManagedContentOrchestrationInstanceInputRepresentation.d.ts +32 -0
- package/dist/types/src/generated/types/ManagedContentOrchestrationInstanceInputWrapperRepresentation.d.ts +29 -0
- package/dist/types/src/generated/types/ManagedContentOrchestrationInstanceRepresentation.d.ts +55 -0
- package/dist/types/src/generated/types/ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation.d.ts +31 -0
- package/dist/types/src/generated/types/ManagedContentRunningOrchestrationHistoryEventRepresentation.d.ts +69 -0
- package/dist/types/src/generated/types/type-utils.d.ts +39 -0
- package/dist/umd/es2018/cms-orchestrator.js +1781 -0
- package/dist/umd/es5/cms-orchestrator.js +1788 -0
- package/package.json +67 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +1824 -0
- package/src/raml/api.raml +236 -0
- package/src/raml/luvio.raml +41 -0
|
@@ -0,0 +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";
|
|
@@ -0,0 +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>;
|
|
@@ -0,0 +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").PendingSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, any> | import("@luvio/engine").FulfilledSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ManagedContentOrchestrationDefinitionCollectionRepresentation_ManagedContentOrchestrationDefinitionCollectionRepresentation, {}>>;
|
|
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>;
|
|
@@ -0,0 +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").PendingSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, any> | import("@luvio/engine").FulfilledSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ManagedContentOrchestrationInstanceCollectionRepresentation_ManagedContentOrchestrationInstanceCollectionRepresentation, {}>>;
|
|
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>;
|
package/dist/types/src/generated/adapters/getManagedContentRunningOrchestrationHistoryEvents.d.ts
ADDED
|
@@ -0,0 +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").PendingSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, any> | import("@luvio/engine").FulfilledSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation_ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, {}>>;
|
|
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>;
|
|
@@ -0,0 +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';
|
|
@@ -0,0 +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 };
|
|
@@ -0,0 +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;
|
package/dist/types/src/generated/resources/getConnectCmsContentsOrchestrationHistoryEvents.d.ts
ADDED
|
@@ -0,0 +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;
|
|
@@ -0,0 +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;
|
|
@@ -0,0 +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;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
import { ManagedContentOrchestrationDefinitionRepresentation as ManagedContentOrchestrationDefinitionRepresentation_ManagedContentOrchestrationDefinitionRepresentation } from './ManagedContentOrchestrationDefinitionRepresentation';
|
|
3
|
+
export declare const TTL = 3600000;
|
|
4
|
+
export declare const VERSION = "d2a7fad15081fd4cd737c942d3e7e5a7";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: ManagedContentOrchestrationDefinitionCollectionRepresentation, existing: ManagedContentOrchestrationDefinitionCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ManagedContentOrchestrationDefinitionCollectionRepresentationNormalized;
|
|
8
|
+
export interface DynamicIngestParams {
|
|
9
|
+
orchestrationDefinitions: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
}
|
|
11
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ManagedContentOrchestrationDefinitionCollectionRepresentation, existing: ManagedContentOrchestrationDefinitionCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ManagedContentOrchestrationDefinitionCollectionRepresentationNormalized;
|
|
12
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
13
|
+
export interface DynamicSelectParams {
|
|
14
|
+
orchestrationDefinitions?: $64$luvio_engine_LinkSelection;
|
|
15
|
+
}
|
|
16
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
17
|
+
export declare function equals(existing: ManagedContentOrchestrationDefinitionCollectionRepresentationNormalized, incoming: ManagedContentOrchestrationDefinitionCollectionRepresentationNormalized): boolean;
|
|
18
|
+
export declare function deepFreeze(input: ManagedContentOrchestrationDefinitionCollectionRepresentation): void;
|
|
19
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
20
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ManagedContentOrchestrationDefinitionCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
21
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
22
|
+
/**
|
|
23
|
+
* Managed content orchestration definition collection representation.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ManagedContentOrchestrationDefinitionCollectionRepresentationNormalized {
|
|
29
|
+
/** Uri to the current page of Managed content orchestration definitions. */
|
|
30
|
+
currentPageUri: string;
|
|
31
|
+
/** Uri to the next page of Managed content orchestration definitions. */
|
|
32
|
+
nextPageUri: string | null;
|
|
33
|
+
/** Managed content orchestration definitions. */
|
|
34
|
+
orchestrationDefinitions: Array<$64$luvio_engine_StoreLink>;
|
|
35
|
+
/** Uri to the previous page of Managed content orchestration definitions. */
|
|
36
|
+
previousPageUri: string | null;
|
|
37
|
+
/** Total number of Managed content orchestration definitions. */
|
|
38
|
+
totalDefinitions: number;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Managed content orchestration definition collection representation.
|
|
42
|
+
*
|
|
43
|
+
* Keys:
|
|
44
|
+
* (none)
|
|
45
|
+
*/
|
|
46
|
+
export interface ManagedContentOrchestrationDefinitionCollectionRepresentation {
|
|
47
|
+
currentPageUri: string;
|
|
48
|
+
nextPageUri: string | null;
|
|
49
|
+
orchestrationDefinitions: Array<ManagedContentOrchestrationDefinitionRepresentation_ManagedContentOrchestrationDefinitionRepresentation>;
|
|
50
|
+
previousPageUri: string | null;
|
|
51
|
+
totalDefinitions: number;
|
|
52
|
+
}
|
package/dist/types/src/generated/types/ManagedContentOrchestrationDefinitionRepresentation.d.ts
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const TTL = 3600000;
|
|
3
|
+
export declare const VERSION = "4972d9e3ead7c764617c098f7cdf912c";
|
|
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 ManagedContentOrchestrationDefinitionRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialManagedContentOrchestrationDefinitionRepresentationNormalizedKeyMetadata = 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): ManagedContentOrchestrationDefinitionRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ManagedContentOrchestrationDefinitionRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ManagedContentOrchestrationDefinitionRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: ManagedContentOrchestrationDefinitionRepresentation, existing: ManagedContentOrchestrationDefinitionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ManagedContentOrchestrationDefinitionRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
17
|
+
export declare function equals(existing: ManagedContentOrchestrationDefinitionRepresentationNormalized, incoming: ManagedContentOrchestrationDefinitionRepresentationNormalized): boolean;
|
|
18
|
+
export declare function deepFreeze(input: ManagedContentOrchestrationDefinitionRepresentation): void;
|
|
19
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
20
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ManagedContentOrchestrationDefinitionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
21
|
+
/**
|
|
22
|
+
* Managed content orchestration definition representation.
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* id (string): developerName
|
|
26
|
+
*/
|
|
27
|
+
export interface ManagedContentOrchestrationDefinitionRepresentationNormalized {
|
|
28
|
+
/** Managed content orchestration definition ID. */
|
|
29
|
+
definitionId: string;
|
|
30
|
+
/** Managed content orchestration description. */
|
|
31
|
+
description: string | null;
|
|
32
|
+
/** Managed content orchestration developer name. */
|
|
33
|
+
developerName: string;
|
|
34
|
+
/** Managed content orchestration label. */
|
|
35
|
+
label: string;
|
|
36
|
+
/** Managed content orchestration version ID. */
|
|
37
|
+
versionId: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Managed content orchestration definition representation.
|
|
41
|
+
*
|
|
42
|
+
* Keys:
|
|
43
|
+
* id (string): developerName
|
|
44
|
+
*/
|
|
45
|
+
export interface ManagedContentOrchestrationDefinitionRepresentation {
|
|
46
|
+
definitionId: string;
|
|
47
|
+
description: string | null;
|
|
48
|
+
developerName: string;
|
|
49
|
+
label: string;
|
|
50
|
+
versionId: string;
|
|
51
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
import { ManagedContentOrchestrationInstanceRepresentation as ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation } from './ManagedContentOrchestrationInstanceRepresentation';
|
|
3
|
+
export declare const TTL = 100;
|
|
4
|
+
export declare const VERSION = "f9f67586e8cd826574cc122b14ced0e8";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: ManagedContentOrchestrationInstanceCollectionRepresentation, existing: ManagedContentOrchestrationInstanceCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ManagedContentOrchestrationInstanceCollectionRepresentationNormalized;
|
|
8
|
+
export interface DynamicIngestParams {
|
|
9
|
+
orchestrationInstances: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
}
|
|
11
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ManagedContentOrchestrationInstanceCollectionRepresentation, existing: ManagedContentOrchestrationInstanceCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ManagedContentOrchestrationInstanceCollectionRepresentationNormalized;
|
|
12
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
13
|
+
export interface DynamicSelectParams {
|
|
14
|
+
orchestrationInstances?: $64$luvio_engine_LinkSelection;
|
|
15
|
+
}
|
|
16
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
17
|
+
export declare function equals(existing: ManagedContentOrchestrationInstanceCollectionRepresentationNormalized, incoming: ManagedContentOrchestrationInstanceCollectionRepresentationNormalized): boolean;
|
|
18
|
+
export declare function deepFreeze(input: ManagedContentOrchestrationInstanceCollectionRepresentation): void;
|
|
19
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
20
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ManagedContentOrchestrationInstanceCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
21
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
22
|
+
/**
|
|
23
|
+
* Managed content orchestration instance collection representation.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ManagedContentOrchestrationInstanceCollectionRepresentationNormalized {
|
|
29
|
+
/** Managed content orchestration instances. */
|
|
30
|
+
orchestrationInstances: Array<$64$luvio_engine_StoreLink>;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Managed content orchestration instance collection representation.
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* (none)
|
|
37
|
+
*/
|
|
38
|
+
export interface ManagedContentOrchestrationInstanceCollectionRepresentation {
|
|
39
|
+
orchestrationInstances: Array<ManagedContentOrchestrationInstanceRepresentation_ManagedContentOrchestrationInstanceRepresentation>;
|
|
40
|
+
}
|
package/dist/types/src/generated/types/ManagedContentOrchestrationInstanceInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "32bd9e20c9fd89ee3154eb89480cb9d5";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ManagedContentOrchestrationInstanceInputRepresentation, existing: ManagedContentOrchestrationInstanceInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ManagedContentOrchestrationInstanceInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ManagedContentOrchestrationInstanceInputRepresentationNormalized, incoming: ManagedContentOrchestrationInstanceInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ManagedContentOrchestrationInstanceInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ManagedContentOrchestrationInstanceInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for Managed Content Orchestration Instance.
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ManagedContentOrchestrationInstanceInputRepresentationNormalized {
|
|
18
|
+
/** Managed Content Variant Id. */
|
|
19
|
+
managedContentVariantId: string;
|
|
20
|
+
/** Orchestration Definition Developer name. */
|
|
21
|
+
orchestrationDefinitionDeveloperName: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Input representation for Managed Content Orchestration Instance.
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface ManagedContentOrchestrationInstanceInputRepresentation {
|
|
30
|
+
managedContentVariantId: string;
|
|
31
|
+
orchestrationDefinitionDeveloperName: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ManagedContentOrchestrationInstanceInputRepresentation as ManagedContentOrchestrationInstanceInputRepresentation_ManagedContentOrchestrationInstanceInputRepresentation } from './ManagedContentOrchestrationInstanceInputRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "905a112b2d609cd9e2f3dc69f4a522cc";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ManagedContentOrchestrationInstanceInputWrapperRepresentation, existing: ManagedContentOrchestrationInstanceInputWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ManagedContentOrchestrationInstanceInputWrapperRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ManagedContentOrchestrationInstanceInputWrapperRepresentationNormalized, incoming: ManagedContentOrchestrationInstanceInputWrapperRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: ManagedContentOrchestrationInstanceInputWrapperRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ManagedContentOrchestrationInstanceInputWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Wrapper around input representation for Managed Content Orchestration Instance.
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ManagedContentOrchestrationInstanceInputWrapperRepresentationNormalized {
|
|
19
|
+
mContentOrchInstanceInput: ManagedContentOrchestrationInstanceInputRepresentation_ManagedContentOrchestrationInstanceInputRepresentation;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Wrapper around input representation for Managed Content Orchestration Instance.
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface ManagedContentOrchestrationInstanceInputWrapperRepresentation {
|
|
28
|
+
mContentOrchInstanceInput: ManagedContentOrchestrationInstanceInputRepresentation_ManagedContentOrchestrationInstanceInputRepresentation;
|
|
29
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
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, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
import { ManagedContentOrchestrationDefinitionRepresentation as ManagedContentOrchestrationDefinitionRepresentation_ManagedContentOrchestrationDefinitionRepresentation } from './ManagedContentOrchestrationDefinitionRepresentation';
|
|
3
|
+
export declare const TTL = 100;
|
|
4
|
+
export declare const VERSION = "fd41d1688072d0b3d7e856f50ad268a8";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
8
|
+
id: string;
|
|
9
|
+
}
|
|
10
|
+
export type ManagedContentOrchestrationInstanceRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export type PartialManagedContentOrchestrationInstanceRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ManagedContentOrchestrationInstanceRepresentationNormalizedKeyMetadata;
|
|
14
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ManagedContentOrchestrationInstanceRepresentation): string;
|
|
15
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ManagedContentOrchestrationInstanceRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function normalize(input: ManagedContentOrchestrationInstanceRepresentation, existing: ManagedContentOrchestrationInstanceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ManagedContentOrchestrationInstanceRepresentationNormalized;
|
|
17
|
+
export interface DynamicIngestParams {
|
|
18
|
+
orchestrationDefinition: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
}
|
|
20
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ManagedContentOrchestrationInstanceRepresentation, existing: ManagedContentOrchestrationInstanceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ManagedContentOrchestrationInstanceRepresentationNormalized;
|
|
21
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
22
|
+
export interface DynamicSelectParams {
|
|
23
|
+
orchestrationDefinition?: $64$luvio_engine_LinkSelection;
|
|
24
|
+
}
|
|
25
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
26
|
+
export declare function equals(existing: ManagedContentOrchestrationInstanceRepresentationNormalized, incoming: ManagedContentOrchestrationInstanceRepresentationNormalized): boolean;
|
|
27
|
+
export declare function deepFreeze(input: ManagedContentOrchestrationInstanceRepresentation): void;
|
|
28
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
29
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ManagedContentOrchestrationInstanceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
30
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
31
|
+
/**
|
|
32
|
+
* Managed content orchestration instance representation.
|
|
33
|
+
*
|
|
34
|
+
* Keys:
|
|
35
|
+
* id (string): managedContentVariantId
|
|
36
|
+
*/
|
|
37
|
+
export interface ManagedContentOrchestrationInstanceRepresentationNormalized {
|
|
38
|
+
/** Managed content orchestration instance ID. */
|
|
39
|
+
managedContentOrchestrationInstanceId: string;
|
|
40
|
+
/** Managed Content Variant ID. */
|
|
41
|
+
managedContentVariantId: string;
|
|
42
|
+
/** Managed content orchestration definition. */
|
|
43
|
+
orchestrationDefinition: $64$luvio_engine_StoreLink;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Managed content orchestration instance representation.
|
|
47
|
+
*
|
|
48
|
+
* Keys:
|
|
49
|
+
* id (string): managedContentVariantId
|
|
50
|
+
*/
|
|
51
|
+
export interface ManagedContentOrchestrationInstanceRepresentation {
|
|
52
|
+
managedContentOrchestrationInstanceId: string;
|
|
53
|
+
managedContentVariantId: string;
|
|
54
|
+
orchestrationDefinition: ManagedContentOrchestrationDefinitionRepresentation_ManagedContentOrchestrationDefinitionRepresentation;
|
|
55
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ManagedContentRunningOrchestrationHistoryEventRepresentation as ManagedContentRunningOrchestrationHistoryEventRepresentation_ManagedContentRunningOrchestrationHistoryEventRepresentation } from './ManagedContentRunningOrchestrationHistoryEventRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 100;
|
|
4
|
+
export declare const VERSION = "8d2b53591bb32ebdac40a28e64c15c48";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, existing: ManagedContentRunningOrchestrationHistoryEventCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ManagedContentRunningOrchestrationHistoryEventCollectionRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
9
|
+
export declare function equals(existing: ManagedContentRunningOrchestrationHistoryEventCollectionRepresentationNormalized, incoming: ManagedContentRunningOrchestrationHistoryEventCollectionRepresentationNormalized): boolean;
|
|
10
|
+
export declare function deepFreeze(input: ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation): void;
|
|
11
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
+
/**
|
|
14
|
+
* Managed content running orchestration history event collection representation.
|
|
15
|
+
*
|
|
16
|
+
* Keys:
|
|
17
|
+
* (none)
|
|
18
|
+
*/
|
|
19
|
+
export interface ManagedContentRunningOrchestrationHistoryEventCollectionRepresentationNormalized {
|
|
20
|
+
/** Managed content running orchestration history events */
|
|
21
|
+
historyEvents: Array<ManagedContentRunningOrchestrationHistoryEventRepresentation_ManagedContentRunningOrchestrationHistoryEventRepresentation>;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Managed content running orchestration history event collection representation.
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface ManagedContentRunningOrchestrationHistoryEventCollectionRepresentation {
|
|
30
|
+
historyEvents: Array<ManagedContentRunningOrchestrationHistoryEventRepresentation_ManagedContentRunningOrchestrationHistoryEventRepresentation>;
|
|
31
|
+
}
|