@salesforce/lds-adapters-platform-lightning-types 1.321.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/LICENSE.txt +82 -0
  2. package/dist/es/es2018/platform-lightning-types.js +698 -0
  3. package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
  4. package/dist/es/es2018/types/src/generated/adapters/getLightningTypes.d.ts +32 -0
  5. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
  6. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -0
  7. package/dist/es/es2018/types/src/generated/resources/getConnectLightningTypes.d.ts +20 -0
  8. package/dist/es/es2018/types/src/generated/types/ExperienceModelDesignConfigInputRepresentation.d.ts +34 -0
  9. package/dist/es/es2018/types/src/generated/types/ExperienceModelFilterConfigInputRepresentation.d.ts +28 -0
  10. package/dist/es/es2018/types/src/generated/types/ExperienceModelFilterPropertyNamesListWrapper.d.ts +28 -0
  11. package/dist/es/es2018/types/src/generated/types/ExperienceModelRenditionConfigInputRepresentation.d.ts +34 -0
  12. package/dist/es/es2018/types/src/generated/types/ExperienceModelSchemaConfigInputRepresentation.d.ts +35 -0
  13. package/dist/es/es2018/types/src/generated/types/ExperienceModelSourceDescriptorInputRepresentation.d.ts +31 -0
  14. package/dist/es/es2018/types/src/generated/types/ExperienceModelTypesCollectionRepresentation.d.ts +29 -0
  15. package/dist/es/es2018/types/src/generated/types/ExperienceModelTypesConfigInputListWrapper.d.ts +32 -0
  16. package/dist/es/es2018/types/src/generated/types/ExperienceModelTypesConfigInputRepresentation.d.ts +56 -0
  17. package/dist/es/es2018/types/src/generated/types/ExperienceModelTypesErrorRepresentation.d.ts +31 -0
  18. package/dist/es/es2018/types/src/generated/types/ExperienceModelTypesInputRepresentation.d.ts +35 -0
  19. package/dist/es/es2018/types/src/generated/types/ExperienceModelTypesRepresentation.d.ts +78 -0
  20. package/dist/es/es2018/types/src/generated/types/LightningTypeCollectionRepresentation.d.ts +51 -0
  21. package/dist/es/es2018/types/src/generated/types/LightningTypeSummaryRepresentation.d.ts +53 -0
  22. package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
  23. package/package.json +66 -0
  24. package/sfdc/index.d.ts +1 -0
  25. package/sfdc/index.js +733 -0
  26. package/src/raml/api.raml +393 -0
  27. package/src/raml/luvio.raml +21 -0
@@ -0,0 +1,62 @@
1
+ import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot, AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata } from '@luvio/engine';
2
+ export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
3
+ declare const ObjectKeys: {
4
+ (o: object): string[];
5
+ (o: {}): string[];
6
+ }, ObjectCreate: {
7
+ (o: object | null): any;
8
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
9
+ };
10
+ export { ObjectCreate, ObjectKeys };
11
+ export declare const ArrayIsArray: (arg: any) => arg is any[];
12
+ export declare const ArrayPrototypePush: (...items: any[]) => number;
13
+ export interface AdapterValidationConfig {
14
+ displayName: string;
15
+ parameters: {
16
+ required: string[];
17
+ optional: string[];
18
+ unsupported?: string[];
19
+ };
20
+ }
21
+ /**
22
+ * Validates an adapter config is well-formed.
23
+ * @param config The config to validate.
24
+ * @param adapter The adapter validation configuration.
25
+ * @param oneOf The keys the config must contain at least one of.
26
+ * @throws A TypeError if config doesn't satisfy the adapter's config validation.
27
+ */
28
+ export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
29
+ export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
30
+ export type UncoercedConfiguration<Base, Options extends {
31
+ [key in keyof Base]?: any;
32
+ }> = {
33
+ [Key in keyof Base]?: Base[Key] | Options[Key];
34
+ };
35
+ export type Untrusted<Base> = Partial<Base>;
36
+ export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
37
+ export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
38
+ export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
39
+ export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
40
+ export declare const snapshotRefreshOptions: {
41
+ overrides: {
42
+ headers: {
43
+ 'Cache-Control': string;
44
+ };
45
+ };
46
+ };
47
+ /**
48
+ * A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
49
+ * This is needed because insertion order for JSON.stringify(object) affects output:
50
+ * JSON.stringify({a: 1, b: 2})
51
+ * "{"a":1,"b":2}"
52
+ * JSON.stringify({b: 2, a: 1})
53
+ * "{"b":2,"a":1}"
54
+ * @param data Data to be JSON-stringified.
55
+ * @returns JSON.stringified value with consistent ordering of keys.
56
+ */
57
+ export declare function stableJSONStringify(node: any): string | undefined;
58
+ export declare function getFetchResponseStatusText(status: number): string;
59
+ export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
60
+ export declare function generateParamConfigMetadata(name: string, required: boolean, resourceType: $64$luvio_engine_AdapterConfigMetadata['resourceType'], typeCheckShape: $64$luvio_engine_AdapterConfigMetadata['typeCheckShape'], isArrayShape?: boolean, coerceFn?: (v: unknown) => unknown): $64$luvio_engine_AdapterConfigMetadata;
61
+ export declare function buildAdapterValidationConfig(displayName: string, paramsMeta: $64$luvio_engine_AdapterConfigMetadata[]): AdapterValidationConfig;
62
+ export declare const keyPrefix = "lightning-types";
@@ -0,0 +1,32 @@
1
+ import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
2
+ import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
3
+ import { ResourceRequestConfig as resources_getConnectLightningTypes_ResourceRequestConfig } from '../resources/getConnectLightningTypes';
4
+ import { LightningTypeCollectionRepresentation as types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation } from '../types/LightningTypeCollectionRepresentation';
5
+ export declare const adapterName = "getLightningTypes";
6
+ export declare const getLightningTypes_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getLightningTypes_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetLightningTypesConfig {
9
+ editorConfigTarget?: string;
10
+ fullyQualifiedNames?: Array<string>;
11
+ language?: string;
12
+ page?: number;
13
+ pageSize?: number;
14
+ rendererConfigTarget?: string;
15
+ }
16
+ export declare const createResourceParams: (config: GetLightningTypesConfig) => resources_getConnectLightningTypes_ResourceRequestConfig;
17
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetLightningTypesConfig): string;
18
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetLightningTypesConfig): $64$luvio_engine_NormalizedKeyMetadata;
19
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetLightningTypesConfig>): adapter$45$utils_Untrusted<GetLightningTypesConfig>;
20
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetLightningTypesConfig | null;
21
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetLightningTypesConfig): $64$luvio_engine_Fragment;
22
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetLightningTypesConfig): $64$luvio_engine_Snapshot<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation, any>;
23
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetLightningTypesConfig, resourceParams: resources_getConnectLightningTypes_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation, any>>;
24
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetLightningTypesConfig, resourceParams: resources_getConnectLightningTypes_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
25
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetLightningTypesConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation, any>>;
26
+ export type BuildSnapshotContext = {
27
+ luvio: $64$luvio_engine_Luvio;
28
+ config: GetLightningTypesConfig;
29
+ };
30
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation, any>>;
31
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation>): $64$luvio_engine_Snapshot<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation, any>;
32
+ export declare const getLightningTypesAdapterFactory: $64$luvio_engine_AdapterFactory<GetLightningTypesConfig, types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation>;
@@ -0,0 +1 @@
1
+ export { getLightningTypesAdapterFactory } from '../adapters/getLightningTypes';
@@ -0,0 +1,3 @@
1
+ declare let getLightningTypes: any;
2
+ declare let getLightningTypes_imperative: any;
3
+ export { getLightningTypes, getLightningTypes_imperative };
@@ -0,0 +1,20 @@
1
+ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
+ import { LightningTypeCollectionRepresentation as types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation } from '../types/LightningTypeCollectionRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ queryParams: {
5
+ editorConfigTarget?: string;
6
+ fullyQualifiedNames?: Array<string>;
7
+ language?: string;
8
+ page?: number;
9
+ pageSize?: number;
10
+ rendererConfigTarget?: string;
11
+ };
12
+ }
13
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
14
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
15
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
16
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation): void;
17
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation, any>;
18
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_LightningTypeCollectionRepresentation_LightningTypeCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
19
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
20
+ export default createResourceRequest;
@@ -0,0 +1,34 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "cc4a7c5b0aa6d8dc99a7ceb60bad1f43";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExperienceModelDesignConfigInputRepresentation, existing: ExperienceModelDesignConfigInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelDesignConfigInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExperienceModelDesignConfigInputRepresentationNormalized, incoming: ExperienceModelDesignConfigInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelDesignConfigInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input Representation for Experience Model type design configuration
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExperienceModelDesignConfigInputRepresentationNormalized {
17
+ /** Boolean property if actions should be included */
18
+ actionConfig: boolean;
19
+ /** Boolean property if sub-view should be included */
20
+ subViewDefinitions: boolean;
21
+ /** A design configuration target. To fetch the design configuration for a particular target. */
22
+ target: string;
23
+ }
24
+ /**
25
+ * Input Representation for Experience Model type design configuration
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface ExperienceModelDesignConfigInputRepresentation {
31
+ actionConfig: boolean;
32
+ subViewDefinitions: boolean;
33
+ target: string;
34
+ }
@@ -0,0 +1,28 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "2dea0b5c029eda868a7916246dc7a16c";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExperienceModelFilterConfigInputRepresentation, existing: ExperienceModelFilterConfigInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelFilterConfigInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExperienceModelFilterConfigInputRepresentationNormalized, incoming: ExperienceModelFilterConfigInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelFilterConfigInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input Representation for Experience Model type Filter configuration
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExperienceModelFilterConfigInputRepresentationNormalized {
17
+ /** Indicates wrapper for list of properties to filter */
18
+ propertyNames: Array<string>;
19
+ }
20
+ /**
21
+ * Input Representation for Experience Model type Filter configuration
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface ExperienceModelFilterConfigInputRepresentation {
27
+ propertyNames: Array<string>;
28
+ }
@@ -0,0 +1,28 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "7703b0e77c07df185cd8c95285a5b307";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExperienceModelFilterPropertyNamesListWrapper, existing: ExperienceModelFilterPropertyNamesListWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelFilterPropertyNamesListWrapperNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExperienceModelFilterPropertyNamesListWrapperNormalized, incoming: ExperienceModelFilterPropertyNamesListWrapperNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelFilterPropertyNamesListWrapper, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * List Wrapper for Experience Model property names filter
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExperienceModelFilterPropertyNamesListWrapperNormalized {
17
+ /** Indicates list of properties to filter */
18
+ propertyNamesList: Array<string>;
19
+ }
20
+ /**
21
+ * List Wrapper for Experience Model property names filter
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface ExperienceModelFilterPropertyNamesListWrapper {
27
+ propertyNamesList: Array<string>;
28
+ }
@@ -0,0 +1,34 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "f08e1a116d16488ce25aee8866eae646";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExperienceModelRenditionConfigInputRepresentation, existing: ExperienceModelRenditionConfigInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelRenditionConfigInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExperienceModelRenditionConfigInputRepresentationNormalized, incoming: ExperienceModelRenditionConfigInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelRenditionConfigInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input Representation for Experience Model type rendition configuration
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExperienceModelRenditionConfigInputRepresentationNormalized {
17
+ /** Boolean property if actions should be included */
18
+ actionConfig: boolean;
19
+ /** Boolean property if sub-view should be included */
20
+ subViewDefinitions: boolean;
21
+ /** A rendition configuration target. To fetch the rendition configuration for a particular target. */
22
+ target: string;
23
+ }
24
+ /**
25
+ * Input Representation for Experience Model type rendition configuration
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface ExperienceModelRenditionConfigInputRepresentation {
31
+ actionConfig: boolean;
32
+ subViewDefinitions: boolean;
33
+ target: string;
34
+ }
@@ -0,0 +1,35 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "7badf179da51394b1447d07f367db89d";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExperienceModelSchemaConfigInputRepresentation, existing: ExperienceModelSchemaConfigInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelSchemaConfigInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExperienceModelSchemaConfigInputRepresentationNormalized, incoming: ExperienceModelSchemaConfigInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelSchemaConfigInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input Representation for Experience Model type schema configuration
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExperienceModelSchemaConfigInputRepresentationNormalized {
17
+ /** Filter configuration for schema */
18
+ filterConfig: {
19
+ [key: string]: unknown;
20
+ };
21
+ /** Boolean property if sub-schema should be included */
22
+ subSchemaDefinitions: boolean;
23
+ }
24
+ /**
25
+ * Input Representation for Experience Model type schema configuration
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface ExperienceModelSchemaConfigInputRepresentation {
31
+ filterConfig: {
32
+ [key: string]: unknown;
33
+ };
34
+ subSchemaDefinitions: boolean;
35
+ }
@@ -0,0 +1,31 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "2a76514028cf921277e8843cd72dc3be";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExperienceModelSourceDescriptorInputRepresentation, existing: ExperienceModelSourceDescriptorInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelSourceDescriptorInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExperienceModelSourceDescriptorInputRepresentationNormalized, incoming: ExperienceModelSourceDescriptorInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelSourceDescriptorInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input Representation for Experience Model source descriptor
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExperienceModelSourceDescriptorInputRepresentationNormalized {
17
+ /** Source descriptor */
18
+ descriptor: string;
19
+ /** Property name filter for source descriptor */
20
+ propertyName: string;
21
+ }
22
+ /**
23
+ * Input Representation for Experience Model source descriptor
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface ExperienceModelSourceDescriptorInputRepresentation {
29
+ descriptor: string;
30
+ propertyName: string;
31
+ }
@@ -0,0 +1,29 @@
1
+ import { ExperienceModelTypesRepresentation as ExperienceModelTypesRepresentation_ExperienceModelTypesRepresentation } from './ExperienceModelTypesRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "156dcf4cbf420ae52e0612fca9cb5f37";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ExperienceModelTypesCollectionRepresentation, existing: ExperienceModelTypesCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelTypesCollectionRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ExperienceModelTypesCollectionRepresentationNormalized, incoming: ExperienceModelTypesCollectionRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelTypesCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Represents a list/collection of Types.
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ExperienceModelTypesCollectionRepresentationNormalized {
18
+ /** The list of Types ordered alphabetically by title. */
19
+ types: Array<ExperienceModelTypesRepresentation_ExperienceModelTypesRepresentation>;
20
+ }
21
+ /**
22
+ * Represents a list/collection of Types.
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface ExperienceModelTypesCollectionRepresentation {
28
+ types: Array<ExperienceModelTypesRepresentation_ExperienceModelTypesRepresentation>;
29
+ }
@@ -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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "11f10d14802264864dbe12b8f56c243e";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExperienceModelTypesConfigInputListWrapper, existing: ExperienceModelTypesConfigInputListWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelTypesConfigInputListWrapperNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExperienceModelTypesConfigInputListWrapperNormalized, incoming: ExperienceModelTypesConfigInputListWrapperNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelTypesConfigInputListWrapper, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * List wrapper for Experience Model type config input
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExperienceModelTypesConfigInputListWrapperNormalized {
17
+ /** The list of Experience Model Types Configuration */
18
+ typeConfigList: Array<{
19
+ [key: string]: unknown;
20
+ }>;
21
+ }
22
+ /**
23
+ * List wrapper for Experience Model type config input
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface ExperienceModelTypesConfigInputListWrapper {
29
+ typeConfigList: Array<{
30
+ [key: string]: unknown;
31
+ }>;
32
+ }
@@ -0,0 +1,56 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "85535c154f0da296210284bb6967e7d2";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExperienceModelTypesConfigInputRepresentation, existing: ExperienceModelTypesConfigInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelTypesConfigInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExperienceModelTypesConfigInputRepresentationNormalized, incoming: ExperienceModelTypesConfigInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelTypesConfigInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input Representation for Experience Model types configuration
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExperienceModelTypesConfigInputRepresentationNormalized {
17
+ /** The descriptor of type. */
18
+ descriptor: string;
19
+ /** The design config. */
20
+ designConfig: {
21
+ [key: string]: unknown;
22
+ };
23
+ /** The rendition config. */
24
+ renditionConfig: {
25
+ [key: string]: unknown;
26
+ };
27
+ /** The schema config. */
28
+ schemaConfig: {
29
+ [key: string]: unknown;
30
+ };
31
+ /** The source descriptor. */
32
+ sourceDescriptor: {
33
+ [key: string]: unknown;
34
+ };
35
+ }
36
+ /**
37
+ * Input Representation for Experience Model types configuration
38
+ *
39
+ * Keys:
40
+ * (none)
41
+ */
42
+ export interface ExperienceModelTypesConfigInputRepresentation {
43
+ descriptor: string;
44
+ designConfig: {
45
+ [key: string]: unknown;
46
+ };
47
+ renditionConfig: {
48
+ [key: string]: unknown;
49
+ };
50
+ schemaConfig: {
51
+ [key: string]: unknown;
52
+ };
53
+ sourceDescriptor: {
54
+ [key: string]: unknown;
55
+ };
56
+ }
@@ -0,0 +1,31 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "beddbdf1ee8b69f9a92a034b646bf18d";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExperienceModelTypesErrorRepresentation, existing: ExperienceModelTypesErrorRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelTypesErrorRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExperienceModelTypesErrorRepresentationNormalized, incoming: ExperienceModelTypesErrorRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelTypesErrorRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Experience Mode Types Error Representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExperienceModelTypesErrorRepresentationNormalized {
17
+ /** Error Description */
18
+ errorDescription: string;
19
+ /** Error Title */
20
+ errorTitle: string;
21
+ }
22
+ /**
23
+ * Experience Mode Types Error Representation
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface ExperienceModelTypesErrorRepresentation {
29
+ errorDescription: string;
30
+ errorTitle: string;
31
+ }
@@ -0,0 +1,35 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "4a7af47770f70c01b60fa78ac64da3d9";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ExperienceModelTypesInputRepresentation, existing: ExperienceModelTypesInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelTypesInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ExperienceModelTypesInputRepresentationNormalized, incoming: ExperienceModelTypesInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelTypesInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input Representation for Experience Model types
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ExperienceModelTypesInputRepresentationNormalized {
17
+ /** The language/locale code. e.g., es or en_US. To retrieve the title and description in a particular language. If not provided, the logged-in user’s language is used. The fallback language is ENGLISH in case translations don't exist. */
18
+ language: string;
19
+ /** The list wrapper for Experience Model Types Configuration */
20
+ typeConfigs: Array<{
21
+ [key: string]: unknown;
22
+ }>;
23
+ }
24
+ /**
25
+ * Input Representation for Experience Model types
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface ExperienceModelTypesInputRepresentation {
31
+ language: string;
32
+ typeConfigs: Array<{
33
+ [key: string]: unknown;
34
+ }>;
35
+ }
@@ -0,0 +1,78 @@
1
+ import { ExperienceModelTypesErrorRepresentation as ExperienceModelTypesErrorRepresentation_ExperienceModelTypesErrorRepresentation } from './ExperienceModelTypesErrorRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "db091827d2323a6d29cbdc2877d1d647";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ExperienceModelTypesRepresentation, existing: ExperienceModelTypesRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExperienceModelTypesRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ExperienceModelTypesRepresentationNormalized, incoming: ExperienceModelTypesRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExperienceModelTypesRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Represents the details about Types.
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ExperienceModelTypesRepresentationNormalized {
18
+ /** The bundle type of the Type that was given in type descriptor in query params. */
19
+ bundleType: string;
20
+ /** The description of the Type that was given in its schema.json. */
21
+ description: string;
22
+ /** The type descriptor of the Type that was given in query params. */
23
+ descriptor: string;
24
+ /** The design configuration for the specified target. */
25
+ designConfig: {
26
+ [key: string]: unknown;
27
+ };
28
+ /** The developer name (aka apiName) of the Type. */
29
+ developerName: string;
30
+ /** Experience Model Types Error Details */
31
+ errorDetails: ExperienceModelTypesErrorRepresentation_ExperienceModelTypesErrorRepresentation;
32
+ /** The 18-char String ID of the Type. This is returned for the DB-Based (Custom) Types only. */
33
+ id: string;
34
+ /** The namespace prefix that is associated with the Type. Refer to a Type using the namespacePrefix__developerName notation (aka fullyQualifiedName). */
35
+ namespacePrefix: string;
36
+ /** The rendition configuration for the specified target. */
37
+ renditionConfig: {
38
+ [key: string]: unknown;
39
+ };
40
+ /** The JSON Schema definition (schema.json) of the Type */
41
+ schema: {
42
+ [key: string]: unknown;
43
+ };
44
+ /** The source descriptor of the Type that was given in query params. */
45
+ sourceDescriptor: {
46
+ [key: string]: string;
47
+ };
48
+ /** The title of the Type that was given in its schema.json. */
49
+ title: string;
50
+ }
51
+ /**
52
+ * Represents the details about Types.
53
+ *
54
+ * Keys:
55
+ * (none)
56
+ */
57
+ export interface ExperienceModelTypesRepresentation {
58
+ bundleType: string;
59
+ description: string;
60
+ descriptor: string;
61
+ designConfig: {
62
+ [key: string]: unknown;
63
+ };
64
+ developerName: string;
65
+ errorDetails: ExperienceModelTypesErrorRepresentation_ExperienceModelTypesErrorRepresentation;
66
+ id: string;
67
+ namespacePrefix: string;
68
+ renditionConfig: {
69
+ [key: string]: unknown;
70
+ };
71
+ schema: {
72
+ [key: string]: unknown;
73
+ };
74
+ sourceDescriptor: {
75
+ [key: string]: string;
76
+ };
77
+ title: string;
78
+ }