@salesforce/lds-adapters-industries-serviceprocess 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.
@@ -0,0 +1,3 @@
1
+ declare let getCaseServiceProcessLayoutData: any;
2
+ declare let getCaseServiceProcessLayoutData_imperative: any;
3
+ export { getCaseServiceProcessLayoutData, getCaseServiceProcessLayoutData_imperative };
@@ -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 { ServiceProcessRequestLayoutDataRepresentation as types_ServiceProcessRequestLayoutDataRepresentation_ServiceProcessRequestLayoutDataRepresentation } from '../types/ServiceProcessRequestLayoutDataRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ Id: 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_ServiceProcessRequestLayoutDataRepresentation_ServiceProcessRequestLayoutDataRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServiceProcessRequestLayoutDataRepresentation_ServiceProcessRequestLayoutDataRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ServiceProcessRequestLayoutDataRepresentation_ServiceProcessRequestLayoutDataRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ServiceProcessRequestLayoutDataRepresentation_ServiceProcessRequestLayoutDataRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ServiceProcessRequestLayoutDataRepresentation_ServiceProcessRequestLayoutDataRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ServiceProcessRequestLayoutDataRepresentation_ServiceProcessRequestLayoutDataRepresentation, any>;
13
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ServiceProcessRequestLayoutDataRepresentation_ServiceProcessRequestLayoutDataRepresentation>): $64$luvio_engine_ErrorSnapshot;
14
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
15
+ export default createResourceRequest;
@@ -0,0 +1,44 @@
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 = "10b841857be09fc35579a2967e4d8fae";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: AttributeRepresentation, existing: AttributeRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AttributeRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: AttributeRepresentationNormalized, incoming: AttributeRepresentationNormalized): boolean;
8
+ export declare function deepFreeze(input: AttributeRepresentation): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: AttributeRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * Service process attribute representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface AttributeRepresentationNormalized {
18
+ /** svc catalog item attribute api name */
19
+ apiName: string;
20
+ /** svc catalog item attribute id */
21
+ attributeId: string;
22
+ /** svc catalog item attribute name */
23
+ attributeName: string;
24
+ /** svc catalog item attribute's child attributes */
25
+ childAttributes: Array<AttributeRepresentation>;
26
+ /** svc catalog item attribute data type */
27
+ dataType: string;
28
+ /** svc catalog item attribute order */
29
+ sortOrder: string;
30
+ }
31
+ /**
32
+ * Service process attribute representation
33
+ *
34
+ * Keys:
35
+ * (none)
36
+ */
37
+ export interface AttributeRepresentation {
38
+ apiName: string;
39
+ attributeId: string;
40
+ attributeName: string;
41
+ childAttributes: Array<AttributeRepresentation>;
42
+ dataType: string;
43
+ sortOrder: string;
44
+ }
@@ -0,0 +1,29 @@
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 = "a4d0f7f9049e0cb90446bb35e008f1cc";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: GenericObjectOutput, existing: GenericObjectOutputNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GenericObjectOutputNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: GenericObjectOutputNormalized, incoming: GenericObjectOutputNormalized): boolean;
8
+ export declare function deepFreeze(input: GenericObjectOutput): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: GenericObjectOutput, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * Generic attributes value object
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface GenericObjectOutputNormalized {
18
+ /** Value */
19
+ value: {};
20
+ }
21
+ /**
22
+ * Generic attributes value object
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface GenericObjectOutput {
28
+ value: {};
29
+ }
@@ -0,0 +1,42 @@
1
+ import { AttributeRepresentation as AttributeRepresentation_AttributeRepresentation } from './AttributeRepresentation';
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 = "8ddab14772351735ea4bbfe183d1d6ab";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: SectionRepresentation, existing: SectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SectionRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: SectionRepresentationNormalized, incoming: SectionRepresentationNormalized): boolean;
9
+ export declare function deepFreeze(input: SectionRepresentation): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * Service process section representation
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface SectionRepresentationNormalized {
19
+ /** svc catalog item section api name */
20
+ apiName: string;
21
+ /** svc catalog item section attributes */
22
+ attributes: Array<AttributeRepresentation_AttributeRepresentation>;
23
+ /** svc catalog item section id */
24
+ sectionId: string;
25
+ /** svc catalog item section name */
26
+ sectionName: string;
27
+ /** svc catalog item section order */
28
+ sectionOrder: string;
29
+ }
30
+ /**
31
+ * Service process section representation
32
+ *
33
+ * Keys:
34
+ * (none)
35
+ */
36
+ export interface SectionRepresentation {
37
+ apiName: string;
38
+ attributes: Array<AttributeRepresentation_AttributeRepresentation>;
39
+ sectionId: string;
40
+ sectionName: string;
41
+ sectionOrder: string;
42
+ }
@@ -0,0 +1,34 @@
1
+ import { GenericObjectOutput as GenericObjectOutput_GenericObjectOutput } from './GenericObjectOutput';
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 = "879389a967a265b2df31d45f330b74e6";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ServiceCatalogRequestDataRepresentation, existing: ServiceCatalogRequestDataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceCatalogRequestDataRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ServiceCatalogRequestDataRepresentationNormalized, incoming: ServiceCatalogRequestDataRepresentationNormalized): boolean;
9
+ export declare function deepFreeze(input: ServiceCatalogRequestDataRepresentation): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ServiceCatalogRequestDataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * Service catalog request data representation
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface ServiceCatalogRequestDataRepresentationNormalized {
19
+ /** service catalog request data */
20
+ data: {
21
+ [key: string]: GenericObjectOutput_GenericObjectOutput;
22
+ };
23
+ }
24
+ /**
25
+ * Service catalog request data representation
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface ServiceCatalogRequestDataRepresentation {
31
+ data: {
32
+ [key: string]: GenericObjectOutput_GenericObjectOutput;
33
+ };
34
+ }
@@ -0,0 +1,35 @@
1
+ import { ServiceCatalogRequestDataRepresentation as ServiceCatalogRequestDataRepresentation_ServiceCatalogRequestDataRepresentation } from './ServiceCatalogRequestDataRepresentation';
2
+ import { SectionRepresentation as SectionRepresentation_SectionRepresentation } from './SectionRepresentation';
3
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
4
+ export declare const TTL = 60000;
5
+ export declare const VERSION = "07b60c128d5c52337e1ff98961cd73e6";
6
+ export declare function validate(obj: any, path?: string): TypeError | null;
7
+ export declare const RepresentationType: string;
8
+ export declare function normalize(input: ServiceProcessRequestLayoutDataRepresentation, existing: ServiceProcessRequestLayoutDataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceProcessRequestLayoutDataRepresentationNormalized;
9
+ export declare const select: () => $64$luvio_engine_BaseFragment;
10
+ export declare function equals(existing: ServiceProcessRequestLayoutDataRepresentationNormalized, incoming: ServiceProcessRequestLayoutDataRepresentationNormalized): boolean;
11
+ export declare function deepFreeze(input: ServiceProcessRequestLayoutDataRepresentation): void;
12
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
13
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ServiceProcessRequestLayoutDataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
14
+ /**
15
+ * Service process layout data output representation
16
+ *
17
+ * Keys:
18
+ * (none)
19
+ */
20
+ export interface ServiceProcessRequestLayoutDataRepresentationNormalized {
21
+ /** svc catalog request */
22
+ data: ServiceCatalogRequestDataRepresentation_ServiceCatalogRequestDataRepresentation;
23
+ /** svc catalog item sections */
24
+ sections: Array<SectionRepresentation_SectionRepresentation>;
25
+ }
26
+ /**
27
+ * Service process layout data output representation
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface ServiceProcessRequestLayoutDataRepresentation {
33
+ data: ServiceCatalogRequestDataRepresentation_ServiceCatalogRequestDataRepresentation;
34
+ sections: Array<SectionRepresentation_SectionRepresentation>;
35
+ }
@@ -0,0 +1,39 @@
1
+ import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const ObjectFreeze: {
3
+ <T extends Function>(f: T): T;
4
+ <T_1 extends {
5
+ [idx: string]: object | U | null | undefined;
6
+ }, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
7
+ <T_2>(o: T_2): Readonly<T_2>;
8
+ }, ObjectKeys: {
9
+ (o: object): string[];
10
+ (o: {}): string[];
11
+ }, ObjectCreate: {
12
+ (o: object | null): any;
13
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
14
+ }, ObjectAssign: {
15
+ <T extends {}, U>(target: T, source: U): T & U;
16
+ <T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
17
+ <T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
18
+ (target: object, ...sources: any[]): any;
19
+ };
20
+ export declare const ArrayIsArray: (arg: any) => arg is any[];
21
+ export declare const JSONStringify: {
22
+ (value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
23
+ (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
24
+ };
25
+ type AllowedPrimitives = boolean | string | number | Date | null;
26
+ type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
27
+ export type RecursivePartial<T> = null | {
28
+ [P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
29
+ };
30
+ export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
31
+ export declare function equalsObject<U, V extends {
32
+ [key: string]: U;
33
+ }>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
34
+ export declare function deepFreeze(value: any): void;
35
+ export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
36
+ __ref: string;
37
+ };
38
+ export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
39
+ export {};