@salesforce/lds-adapters-industries-externaldocument 1.124.2 → 1.124.4

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 (25) hide show
  1. package/dist/es/es2018/industries-externaldocument.js +766 -766
  2. package/dist/{types → es/es2018/types}/src/generated/adapters/adapter-utils.d.ts +66 -66
  3. package/dist/{types → es/es2018/types}/src/generated/adapters/createExternalDocument.d.ts +15 -15
  4. package/dist/{types → es/es2018/types}/src/generated/adapters/getExternalDocument.d.ts +27 -27
  5. package/dist/{types → es/es2018/types}/src/generated/adapters/saveExternalDocument.d.ts +15 -15
  6. package/dist/{types → es/es2018/types}/src/generated/artifacts/main.d.ts +3 -3
  7. package/dist/{types → es/es2018/types}/src/generated/artifacts/sfdc.d.ts +5 -5
  8. package/dist/{types → es/es2018/types}/src/generated/resources/getConnectExternalDocument.d.ts +16 -16
  9. package/dist/{types → es/es2018/types}/src/generated/resources/patchConnectExternalDocument.d.ts +13 -13
  10. package/dist/{types → es/es2018/types}/src/generated/resources/postConnectExternalDocument.d.ts +13 -13
  11. package/dist/{types → es/es2018/types}/src/generated/types/ExternalDocCreationInputRepresentation.d.ts +39 -39
  12. package/dist/{types → es/es2018/types}/src/generated/types/ExternalDocCreationInputRepresentationWrapper.d.ts +39 -39
  13. package/dist/{types → es/es2018/types}/src/generated/types/ExternalDocCreationOutputRepresentation.d.ts +48 -48
  14. package/dist/{types → es/es2018/types}/src/generated/types/ExternalDocumentMetadataRepresentation.d.ts +30 -30
  15. package/dist/{types → es/es2018/types}/src/generated/types/ExternalDocumentOutputRepresentation.d.ts +45 -45
  16. package/dist/{types → es/es2018/types}/src/generated/types/ObjectReferenceRepresentation.d.ts +33 -33
  17. package/dist/{types → es/es2018/types}/src/generated/types/SaveExternalDocumentInputRepresentation.d.ts +36 -36
  18. package/dist/{types → es/es2018/types}/src/generated/types/SaveExternalDocumentInputRepresentationWrapper.d.ts +39 -39
  19. package/dist/{types → es/es2018/types}/src/generated/types/SaveExternalDocumentRepresentation.d.ts +45 -45
  20. package/dist/{types → es/es2018/types}/src/generated/types/type-utils.d.ts +39 -39
  21. package/package.json +5 -5
  22. package/sfdc/index.d.ts +1 -1
  23. package/sfdc/index.js +795 -795
  24. package/dist/umd/es2018/industries-externaldocument.js +0 -811
  25. package/dist/umd/es5/industries-externaldocument.js +0 -816
@@ -1,48 +1,48 @@
1
- import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
- export declare const TTL = 60000;
3
- export declare const VERSION = "62b6ff2897ad48f08a170ff28e50d628";
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
- isSuccess: boolean;
8
- }
9
- export type ExternalDocCreationOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
- export type PartialExternalDocCreationOutputRepresentationNormalizedKeyMetadata = 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): ExternalDocCreationOutputRepresentationNormalizedKeyMetadata;
13
- export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ExternalDocCreationOutputRepresentation): string;
14
- export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ExternalDocCreationOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
15
- export declare function normalize(input: ExternalDocCreationOutputRepresentation, existing: ExternalDocCreationOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalDocCreationOutputRepresentationNormalized;
16
- export declare const select: () => $64$luvio_engine_BaseFragment;
17
- export declare function equals(existing: ExternalDocCreationOutputRepresentationNormalized, incoming: ExternalDocCreationOutputRepresentationNormalized): boolean;
18
- export declare function deepFreeze(input: ExternalDocCreationOutputRepresentation): void;
19
- export declare const ingest: $64$luvio_engine_ResourceIngest;
20
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalDocCreationOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
21
- /**
22
- * Output representation for Create External Document
23
- *
24
- * Keys:
25
- * isSuccess (boolean): isSuccess
26
- */
27
- export interface ExternalDocCreationOutputRepresentationNormalized {
28
- /** External Document Storage information */
29
- externalDocumentDetails: {};
30
- /** Boolean flag determines if the api is Success */
31
- isSuccess: boolean;
32
- /** Provides a description of the error message in case of failure */
33
- message: string;
34
- /** Provides a description of the error message in case of failure */
35
- ssoLinkUrl: string;
36
- }
37
- /**
38
- * Output representation for Create External Document
39
- *
40
- * Keys:
41
- * isSuccess (boolean): isSuccess
42
- */
43
- export interface ExternalDocCreationOutputRepresentation {
44
- externalDocumentDetails: {};
45
- isSuccess: boolean;
46
- message: string;
47
- ssoLinkUrl: string;
48
- }
1
+ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ export declare const TTL = 60000;
3
+ export declare const VERSION = "62b6ff2897ad48f08a170ff28e50d628";
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
+ isSuccess: boolean;
8
+ }
9
+ export type ExternalDocCreationOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
+ export type PartialExternalDocCreationOutputRepresentationNormalizedKeyMetadata = 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): ExternalDocCreationOutputRepresentationNormalizedKeyMetadata;
13
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ExternalDocCreationOutputRepresentation): string;
14
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ExternalDocCreationOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function normalize(input: ExternalDocCreationOutputRepresentation, existing: ExternalDocCreationOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalDocCreationOutputRepresentationNormalized;
16
+ export declare const select: () => $64$luvio_engine_BaseFragment;
17
+ export declare function equals(existing: ExternalDocCreationOutputRepresentationNormalized, incoming: ExternalDocCreationOutputRepresentationNormalized): boolean;
18
+ export declare function deepFreeze(input: ExternalDocCreationOutputRepresentation): void;
19
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
20
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalDocCreationOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
21
+ /**
22
+ * Output representation for Create External Document
23
+ *
24
+ * Keys:
25
+ * isSuccess (boolean): isSuccess
26
+ */
27
+ export interface ExternalDocCreationOutputRepresentationNormalized {
28
+ /** External Document Storage information */
29
+ externalDocumentDetails: {};
30
+ /** Boolean flag determines if the api is Success */
31
+ isSuccess: boolean;
32
+ /** Provides a description of the error message in case of failure */
33
+ message: string;
34
+ /** Provides a description of the error message in case of failure */
35
+ ssoLinkUrl: string;
36
+ }
37
+ /**
38
+ * Output representation for Create External Document
39
+ *
40
+ * Keys:
41
+ * isSuccess (boolean): isSuccess
42
+ */
43
+ export interface ExternalDocCreationOutputRepresentation {
44
+ externalDocumentDetails: {};
45
+ isSuccess: boolean;
46
+ message: string;
47
+ ssoLinkUrl: string;
48
+ }
@@ -1,30 +1,30 @@
1
- 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';
2
- export declare const TTL = 60000;
3
- export declare const VERSION = "ca59a7ea65525ab8f3e56e8a800e69db";
4
- export declare function validate(obj: any, path?: string): TypeError | null;
5
- export declare const RepresentationType: string;
6
- export declare function normalize(input: ExternalDocumentMetadataRepresentation, existing: ExternalDocumentMetadataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalDocumentMetadataRepresentationNormalized;
7
- export declare const select: () => $64$luvio_engine_BaseFragment;
8
- export declare function equals(existing: ExternalDocumentMetadataRepresentationNormalized, incoming: ExternalDocumentMetadataRepresentationNormalized): boolean;
9
- export declare function deepFreeze(input: ExternalDocumentMetadataRepresentation): void;
10
- export declare const ingest: $64$luvio_engine_ResourceIngest;
11
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalDocumentMetadataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
- /**
13
- * Input representation of external document metadata
14
- *
15
- * Keys:
16
- * (none)
17
- */
18
- export interface ExternalDocumentMetadataRepresentationNormalized {
19
- /** ObjectReferences List */
20
- objectReferences: Array<{}>;
21
- }
22
- /**
23
- * Input representation of external document metadata
24
- *
25
- * Keys:
26
- * (none)
27
- */
28
- export interface ExternalDocumentMetadataRepresentation {
29
- objectReferences: Array<{}>;
30
- }
1
+ 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';
2
+ export declare const TTL = 60000;
3
+ export declare const VERSION = "ca59a7ea65525ab8f3e56e8a800e69db";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ExternalDocumentMetadataRepresentation, existing: ExternalDocumentMetadataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalDocumentMetadataRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: ExternalDocumentMetadataRepresentationNormalized, incoming: ExternalDocumentMetadataRepresentationNormalized): boolean;
9
+ export declare function deepFreeze(input: ExternalDocumentMetadataRepresentation): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalDocumentMetadataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * Input representation of external document metadata
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface ExternalDocumentMetadataRepresentationNormalized {
19
+ /** ObjectReferences List */
20
+ objectReferences: Array<{}>;
21
+ }
22
+ /**
23
+ * Input representation of external document metadata
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface ExternalDocumentMetadataRepresentation {
29
+ objectReferences: Array<{}>;
30
+ }
@@ -1,45 +1,45 @@
1
- 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';
2
- export declare const TTL = 60000;
3
- export declare const VERSION = "641dbe0f048b436a2f7b34ac9bf1ddd1";
4
- export declare function validate(obj: any, path?: string): TypeError | null;
5
- export declare const RepresentationType: string;
6
- export declare function normalize(input: ExternalDocumentOutputRepresentation, existing: ExternalDocumentOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalDocumentOutputRepresentationNormalized;
7
- export declare const select: () => $64$luvio_engine_BaseFragment;
8
- export declare function equals(existing: ExternalDocumentOutputRepresentationNormalized, incoming: ExternalDocumentOutputRepresentationNormalized): boolean;
9
- export declare function deepFreeze(input: ExternalDocumentOutputRepresentation): void;
10
- export declare const ingest: $64$luvio_engine_ResourceIngest;
11
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalDocumentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
- /**
13
- * Output representation for External Document
14
- *
15
- * Keys:
16
- * (none)
17
- */
18
- export interface ExternalDocumentOutputRepresentationNormalized {
19
- /** The ID for the Salesforce Content Version */
20
- contentVersionId: string;
21
- /** The ID for the external document */
22
- externalDocumentId: string;
23
- /** The ID for the external user */
24
- externalUserId: string;
25
- /** The api name for Salesforce Reference Object */
26
- referenceObject: string;
27
- /** The ID for the Salesforce Reference Object */
28
- referenceObjectId: string;
29
- /** The url to access the external document */
30
- url: string;
31
- }
32
- /**
33
- * Output representation for External Document
34
- *
35
- * Keys:
36
- * (none)
37
- */
38
- export interface ExternalDocumentOutputRepresentation {
39
- contentVersionId: string;
40
- externalDocumentId: string;
41
- externalUserId: string;
42
- referenceObject: string;
43
- referenceObjectId: string;
44
- url: string;
45
- }
1
+ 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';
2
+ export declare const TTL = 60000;
3
+ export declare const VERSION = "641dbe0f048b436a2f7b34ac9bf1ddd1";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ExternalDocumentOutputRepresentation, existing: ExternalDocumentOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalDocumentOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: ExternalDocumentOutputRepresentationNormalized, incoming: ExternalDocumentOutputRepresentationNormalized): boolean;
9
+ export declare function deepFreeze(input: ExternalDocumentOutputRepresentation): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExternalDocumentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * Output representation for External Document
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface ExternalDocumentOutputRepresentationNormalized {
19
+ /** The ID for the Salesforce Content Version */
20
+ contentVersionId: string;
21
+ /** The ID for the external document */
22
+ externalDocumentId: string;
23
+ /** The ID for the external user */
24
+ externalUserId: string;
25
+ /** The api name for Salesforce Reference Object */
26
+ referenceObject: string;
27
+ /** The ID for the Salesforce Reference Object */
28
+ referenceObjectId: string;
29
+ /** The url to access the external document */
30
+ url: string;
31
+ }
32
+ /**
33
+ * Output representation for External Document
34
+ *
35
+ * Keys:
36
+ * (none)
37
+ */
38
+ export interface ExternalDocumentOutputRepresentation {
39
+ contentVersionId: string;
40
+ externalDocumentId: string;
41
+ externalUserId: string;
42
+ referenceObject: string;
43
+ referenceObjectId: string;
44
+ url: string;
45
+ }
@@ -1,33 +1,33 @@
1
- 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';
2
- export declare const TTL = 60000;
3
- export declare const VERSION = "fd5e100066fa0ed69114ad1ed555d953";
4
- export declare function validate(obj: any, path?: string): TypeError | null;
5
- export declare const RepresentationType: string;
6
- export declare function normalize(input: ObjectReferenceRepresentation, existing: ObjectReferenceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ObjectReferenceRepresentationNormalized;
7
- export declare const select: () => $64$luvio_engine_BaseFragment;
8
- export declare function equals(existing: ObjectReferenceRepresentationNormalized, incoming: ObjectReferenceRepresentationNormalized): boolean;
9
- export declare function deepFreeze(input: ObjectReferenceRepresentation): void;
10
- export declare const ingest: $64$luvio_engine_ResourceIngest;
11
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ObjectReferenceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
- /**
13
- * Input representation of objectReference
14
- *
15
- * Keys:
16
- * (none)
17
- */
18
- export interface ObjectReferenceRepresentationNormalized {
19
- /** ObjectId */
20
- objectId: string;
21
- /** ObjectType */
22
- objectType: string;
23
- }
24
- /**
25
- * Input representation of objectReference
26
- *
27
- * Keys:
28
- * (none)
29
- */
30
- export interface ObjectReferenceRepresentation {
31
- objectId: string;
32
- objectType: string;
33
- }
1
+ 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';
2
+ export declare const TTL = 60000;
3
+ export declare const VERSION = "fd5e100066fa0ed69114ad1ed555d953";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ObjectReferenceRepresentation, existing: ObjectReferenceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ObjectReferenceRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: ObjectReferenceRepresentationNormalized, incoming: ObjectReferenceRepresentationNormalized): boolean;
9
+ export declare function deepFreeze(input: ObjectReferenceRepresentation): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ObjectReferenceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * Input representation of objectReference
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface ObjectReferenceRepresentationNormalized {
19
+ /** ObjectId */
20
+ objectId: string;
21
+ /** ObjectType */
22
+ objectType: string;
23
+ }
24
+ /**
25
+ * Input representation of objectReference
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface ObjectReferenceRepresentation {
31
+ objectId: string;
32
+ objectType: string;
33
+ }
@@ -1,36 +1,36 @@
1
- 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';
2
- export declare const TTL = 60000;
3
- export declare const VERSION = "48fe9e58c122cd5e65971a98f5318aa6";
4
- export declare function validate(obj: any, path?: string): TypeError | null;
5
- export declare const RepresentationType: string;
6
- export declare function normalize(input: SaveExternalDocumentInputRepresentation, existing: SaveExternalDocumentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SaveExternalDocumentInputRepresentationNormalized;
7
- export declare const select: () => $64$luvio_engine_BaseFragment;
8
- export declare function equals(existing: SaveExternalDocumentInputRepresentationNormalized, incoming: SaveExternalDocumentInputRepresentationNormalized): boolean;
9
- export declare function deepFreeze(input: SaveExternalDocumentInputRepresentation): void;
10
- export declare const ingest: $64$luvio_engine_ResourceIngest;
11
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SaveExternalDocumentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
- /**
13
- * Input representation to save external document to salesforce
14
- *
15
- * Keys:
16
- * (none)
17
- */
18
- export interface SaveExternalDocumentInputRepresentationNormalized {
19
- /** External Document ID */
20
- externalDocumentId: string;
21
- /** Is Async */
22
- isAsync: boolean;
23
- /** Metadata */
24
- metadata: {};
25
- }
26
- /**
27
- * Input representation to save external document to salesforce
28
- *
29
- * Keys:
30
- * (none)
31
- */
32
- export interface SaveExternalDocumentInputRepresentation {
33
- externalDocumentId: string;
34
- isAsync: boolean;
35
- metadata: {};
36
- }
1
+ 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';
2
+ export declare const TTL = 60000;
3
+ export declare const VERSION = "48fe9e58c122cd5e65971a98f5318aa6";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: SaveExternalDocumentInputRepresentation, existing: SaveExternalDocumentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SaveExternalDocumentInputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: SaveExternalDocumentInputRepresentationNormalized, incoming: SaveExternalDocumentInputRepresentationNormalized): boolean;
9
+ export declare function deepFreeze(input: SaveExternalDocumentInputRepresentation): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SaveExternalDocumentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * Input representation to save external document to salesforce
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface SaveExternalDocumentInputRepresentationNormalized {
19
+ /** External Document ID */
20
+ externalDocumentId: string;
21
+ /** Is Async */
22
+ isAsync: boolean;
23
+ /** Metadata */
24
+ metadata: {};
25
+ }
26
+ /**
27
+ * Input representation to save external document to salesforce
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface SaveExternalDocumentInputRepresentation {
33
+ externalDocumentId: string;
34
+ isAsync: boolean;
35
+ metadata: {};
36
+ }
@@ -1,39 +1,39 @@
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 { SaveExternalDocumentInputRepresentation as SaveExternalDocumentInputRepresentation_SaveExternalDocumentInputRepresentation } from './SaveExternalDocumentInputRepresentation';
3
- export declare const VERSION = "488462ca73b932b3be884105b032af25";
4
- export declare function validate(obj: any, path?: string): TypeError | null;
5
- export declare const RepresentationType: string;
6
- export declare function normalize(input: SaveExternalDocumentInputRepresentationWrapper, existing: SaveExternalDocumentInputRepresentationWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SaveExternalDocumentInputRepresentationWrapperNormalized;
7
- export interface DynamicIngestParams {
8
- saveExternalDocumentInput: $64$luvio_engine_ResourceIngest;
9
- }
10
- export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: SaveExternalDocumentInputRepresentationWrapper, existing: SaveExternalDocumentInputRepresentationWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => SaveExternalDocumentInputRepresentationWrapperNormalized;
11
- export declare const select: () => $64$luvio_engine_FragmentSelection;
12
- export interface DynamicSelectParams {
13
- saveExternalDocumentInput?: $64$luvio_engine_LinkSelection;
14
- }
15
- export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
16
- export declare function equals(existing: SaveExternalDocumentInputRepresentationWrapperNormalized, incoming: SaveExternalDocumentInputRepresentationWrapperNormalized): boolean;
17
- export declare function deepFreeze(input: SaveExternalDocumentInputRepresentationWrapper): void;
18
- export declare const ingest: $64$luvio_engine_ResourceIngest;
19
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SaveExternalDocumentInputRepresentationWrapper, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
20
- export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
21
- /**
22
- * Wrapper for SaveExternalDocumentInputRepresentation
23
- *
24
- * Keys:
25
- * (none)
26
- */
27
- export interface SaveExternalDocumentInputRepresentationWrapperNormalized {
28
- /** Input representation to save external document update */
29
- saveExternalDocumentInput: $64$luvio_engine_StoreLink;
30
- }
31
- /**
32
- * Wrapper for SaveExternalDocumentInputRepresentation
33
- *
34
- * Keys:
35
- * (none)
36
- */
37
- export interface SaveExternalDocumentInputRepresentationWrapper {
38
- saveExternalDocumentInput: SaveExternalDocumentInputRepresentation_SaveExternalDocumentInputRepresentation;
39
- }
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 { SaveExternalDocumentInputRepresentation as SaveExternalDocumentInputRepresentation_SaveExternalDocumentInputRepresentation } from './SaveExternalDocumentInputRepresentation';
3
+ export declare const VERSION = "488462ca73b932b3be884105b032af25";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: SaveExternalDocumentInputRepresentationWrapper, existing: SaveExternalDocumentInputRepresentationWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SaveExternalDocumentInputRepresentationWrapperNormalized;
7
+ export interface DynamicIngestParams {
8
+ saveExternalDocumentInput: $64$luvio_engine_ResourceIngest;
9
+ }
10
+ export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: SaveExternalDocumentInputRepresentationWrapper, existing: SaveExternalDocumentInputRepresentationWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => SaveExternalDocumentInputRepresentationWrapperNormalized;
11
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
12
+ export interface DynamicSelectParams {
13
+ saveExternalDocumentInput?: $64$luvio_engine_LinkSelection;
14
+ }
15
+ export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
16
+ export declare function equals(existing: SaveExternalDocumentInputRepresentationWrapperNormalized, incoming: SaveExternalDocumentInputRepresentationWrapperNormalized): boolean;
17
+ export declare function deepFreeze(input: SaveExternalDocumentInputRepresentationWrapper): void;
18
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
19
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SaveExternalDocumentInputRepresentationWrapper, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
20
+ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
21
+ /**
22
+ * Wrapper for SaveExternalDocumentInputRepresentation
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface SaveExternalDocumentInputRepresentationWrapperNormalized {
28
+ /** Input representation to save external document update */
29
+ saveExternalDocumentInput: $64$luvio_engine_StoreLink;
30
+ }
31
+ /**
32
+ * Wrapper for SaveExternalDocumentInputRepresentation
33
+ *
34
+ * Keys:
35
+ * (none)
36
+ */
37
+ export interface SaveExternalDocumentInputRepresentationWrapper {
38
+ saveExternalDocumentInput: SaveExternalDocumentInputRepresentation_SaveExternalDocumentInputRepresentation;
39
+ }
@@ -1,45 +1,45 @@
1
- import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
- export declare const TTL = 60000;
3
- export declare const VERSION = "0073b6a90cebc73156c21fe3fd09256a";
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 SaveExternalDocumentRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
- export type PartialSaveExternalDocumentRepresentationNormalizedKeyMetadata = 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): SaveExternalDocumentRepresentationNormalizedKeyMetadata;
13
- export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: SaveExternalDocumentRepresentation): string;
14
- export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: SaveExternalDocumentRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
15
- export declare function normalize(input: SaveExternalDocumentRepresentation, existing: SaveExternalDocumentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SaveExternalDocumentRepresentationNormalized;
16
- export declare const select: () => $64$luvio_engine_BaseFragment;
17
- export declare function equals(existing: SaveExternalDocumentRepresentationNormalized, incoming: SaveExternalDocumentRepresentationNormalized): boolean;
18
- export declare function deepFreeze(input: SaveExternalDocumentRepresentation): void;
19
- export declare const ingest: $64$luvio_engine_ResourceIngest;
20
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SaveExternalDocumentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
21
- /**
22
- * Output representation for Save External Document
23
- *
24
- * Keys:
25
- * id (string): id
26
- */
27
- export interface SaveExternalDocumentRepresentationNormalized {
28
- /** The ID for the external document */
29
- id: string;
30
- /** The isSuccess flag for SaveExternalDocument */
31
- isSuccess: boolean;
32
- /** The response message for SaveExternalDocument */
33
- message?: string;
34
- }
35
- /**
36
- * Output representation for Save External Document
37
- *
38
- * Keys:
39
- * id (string): id
40
- */
41
- export interface SaveExternalDocumentRepresentation {
42
- id: string;
43
- isSuccess: boolean;
44
- message?: string;
45
- }
1
+ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ export declare const TTL = 60000;
3
+ export declare const VERSION = "0073b6a90cebc73156c21fe3fd09256a";
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 SaveExternalDocumentRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
+ export type PartialSaveExternalDocumentRepresentationNormalizedKeyMetadata = 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): SaveExternalDocumentRepresentationNormalizedKeyMetadata;
13
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: SaveExternalDocumentRepresentation): string;
14
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: SaveExternalDocumentRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function normalize(input: SaveExternalDocumentRepresentation, existing: SaveExternalDocumentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SaveExternalDocumentRepresentationNormalized;
16
+ export declare const select: () => $64$luvio_engine_BaseFragment;
17
+ export declare function equals(existing: SaveExternalDocumentRepresentationNormalized, incoming: SaveExternalDocumentRepresentationNormalized): boolean;
18
+ export declare function deepFreeze(input: SaveExternalDocumentRepresentation): void;
19
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
20
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SaveExternalDocumentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
21
+ /**
22
+ * Output representation for Save External Document
23
+ *
24
+ * Keys:
25
+ * id (string): id
26
+ */
27
+ export interface SaveExternalDocumentRepresentationNormalized {
28
+ /** The ID for the external document */
29
+ id: string;
30
+ /** The isSuccess flag for SaveExternalDocument */
31
+ isSuccess: boolean;
32
+ /** The response message for SaveExternalDocument */
33
+ message?: string;
34
+ }
35
+ /**
36
+ * Output representation for Save External Document
37
+ *
38
+ * Keys:
39
+ * id (string): id
40
+ */
41
+ export interface SaveExternalDocumentRepresentation {
42
+ id: string;
43
+ isSuccess: boolean;
44
+ message?: string;
45
+ }