@salesforce/lds-adapters-industries-interesttagging 0.1.0-dev1

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 (54) hide show
  1. package/LICENSE.txt +82 -0
  2. package/dist/es/es2018/industries-interesttagging.js +1694 -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/createInterestTagEntityAssignment.d.ts +22 -0
  5. package/dist/es/es2018/types/src/generated/adapters/createInterestTagsAndCategories.d.ts +16 -0
  6. package/dist/es/es2018/types/src/generated/adapters/getInterestTagEntityAssignments.d.ts +31 -0
  7. package/dist/es/es2018/types/src/generated/adapters/getTagCategoriesByTagId.d.ts +31 -0
  8. package/dist/es/es2018/types/src/generated/adapters/getTagsByCategoryId.d.ts +31 -0
  9. package/dist/es/es2018/types/src/generated/adapters/getTagsByRecordId.d.ts +31 -0
  10. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +6 -0
  11. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +11 -0
  12. package/dist/es/es2018/types/src/generated/resources/deleteConnectInterestTagsTags.d.ts +11 -0
  13. package/dist/es/es2018/types/src/generated/resources/deleteConnectInterestTagsTagsByTagId.d.ts +14 -0
  14. package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsAssignments.d.ts +18 -0
  15. package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsAssignmentsEntityByRecordId.d.ts +21 -0
  16. package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsAssignmentsTagByTagId.d.ts +21 -0
  17. package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsCategories.d.ts +19 -0
  18. package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsTags.d.ts +19 -0
  19. package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsTagsByTagId.d.ts +22 -0
  20. package/dist/es/es2018/types/src/generated/resources/patchConnectInterestTagsTags.d.ts +12 -0
  21. package/dist/es/es2018/types/src/generated/resources/patchConnectInterestTagsTagsByTagId.d.ts +15 -0
  22. package/dist/es/es2018/types/src/generated/resources/postConnectInterestTagsAssignments.d.ts +19 -0
  23. package/dist/es/es2018/types/src/generated/resources/postConnectInterestTagsAssignmentsTagByTagId.d.ts +22 -0
  24. package/dist/es/es2018/types/src/generated/resources/postConnectInterestTagsTagsAndCategories.d.ts +13 -0
  25. package/dist/es/es2018/types/src/generated/types/CategoryCreatedResult.d.ts +31 -0
  26. package/dist/es/es2018/types/src/generated/types/InterestTagAndCategoryCreateInputRepresentation.d.ts +29 -0
  27. package/dist/es/es2018/types/src/generated/types/InterestTagAndCategoryCreateOutputRepresentation.d.ts +50 -0
  28. package/dist/es/es2018/types/src/generated/types/InterestTagAndCategoryErrorOutputRepresentation.d.ts +31 -0
  29. package/dist/es/es2018/types/src/generated/types/InterestTagAndCategoryItemInputRepresentation.d.ts +41 -0
  30. package/dist/es/es2018/types/src/generated/types/InterestTagAssignmentInputRepresentation.d.ts +43 -0
  31. package/dist/es/es2018/types/src/generated/types/InterestTagAssignmentOutputRepresentation.d.ts +50 -0
  32. package/dist/es/es2018/types/src/generated/types/InterestTagCreateCollectionOutputRepresentation.d.ts +29 -0
  33. package/dist/es/es2018/types/src/generated/types/InterestTagCreateInputListRepresentation.d.ts +28 -0
  34. package/dist/es/es2018/types/src/generated/types/InterestTagCreateInputRepresentation.d.ts +37 -0
  35. package/dist/es/es2018/types/src/generated/types/InterestTagCreateResult.d.ts +37 -0
  36. package/dist/es/es2018/types/src/generated/types/InterestTagItemInputRepresentation.d.ts +37 -0
  37. package/dist/es/es2018/types/src/generated/types/InterestTagListRepresentation.d.ts +30 -0
  38. package/dist/es/es2018/types/src/generated/types/InterestTagRepresentation.d.ts +38 -0
  39. package/dist/es/es2018/types/src/generated/types/InterestTagUpdateInputRepresentation.d.ts +37 -0
  40. package/dist/es/es2018/types/src/generated/types/InterestTagUpdateOutputRepresentation.d.ts +31 -0
  41. package/dist/es/es2018/types/src/generated/types/RecordsForTag.d.ts +31 -0
  42. package/dist/es/es2018/types/src/generated/types/TagCategoryListRepresentation.d.ts +29 -0
  43. package/dist/es/es2018/types/src/generated/types/TagCategoryRepresentation.d.ts +34 -0
  44. package/dist/es/es2018/types/src/generated/types/TagCategoryWithParentRepresentation.d.ts +43 -0
  45. package/dist/es/es2018/types/src/generated/types/TagCreatedOutputRepresentation.d.ts +31 -0
  46. package/dist/es/es2018/types/src/generated/types/TagRecordAssignment.d.ts +37 -0
  47. package/dist/es/es2018/types/src/generated/types/TagRecordAssignmentCollectionRepresentation.d.ts +29 -0
  48. package/dist/es/es2018/types/src/generated/types/TagsForRecord.d.ts +31 -0
  49. package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
  50. package/package.json +75 -0
  51. package/sfdc/index.d.ts +1 -0
  52. package/sfdc/index.js +1775 -0
  53. package/src/raml/api.raml +659 -0
  54. package/src/raml/luvio.raml +53 -0
@@ -0,0 +1,29 @@
1
+ import { InterestTagAndCategoryItemInputRepresentation as InterestTagAndCategoryItemInputRepresentation_InterestTagAndCategoryItemInputRepresentation } from './InterestTagAndCategoryItemInputRepresentation';
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 = "87ee091b4fec5d252b7afb4a33330e25";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: InterestTagAndCategoryCreateInputRepresentation, existing: InterestTagAndCategoryCreateInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagAndCategoryCreateInputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: InterestTagAndCategoryCreateInputRepresentationNormalized, incoming: InterestTagAndCategoryCreateInputRepresentationNormalized): 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: InterestTagAndCategoryCreateInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Interest Tags and Categories create input
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface InterestTagAndCategoryCreateInputRepresentationNormalized {
18
+ /** List of Interest tags and categories to be created */
19
+ interestTags: Array<InterestTagAndCategoryItemInputRepresentation_InterestTagAndCategoryItemInputRepresentation>;
20
+ }
21
+ /**
22
+ * Interest Tags and Categories create input
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface InterestTagAndCategoryCreateInputRepresentation {
28
+ interestTags: Array<InterestTagAndCategoryItemInputRepresentation_InterestTagAndCategoryItemInputRepresentation>;
29
+ }
@@ -0,0 +1,50 @@
1
+ import { CategoryCreatedResult as CategoryCreatedResult_CategoryCreatedResult } from './CategoryCreatedResult';
2
+ import { InterestTagAndCategoryErrorOutputRepresentation as InterestTagAndCategoryErrorOutputRepresentation_InterestTagAndCategoryErrorOutputRepresentation } from './InterestTagAndCategoryErrorOutputRepresentation';
3
+ import { TagCreatedOutputRepresentation as TagCreatedOutputRepresentation_TagCreatedOutputRepresentation } from './TagCreatedOutputRepresentation';
4
+ 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';
5
+ export declare const TTL = 10000;
6
+ export declare const VERSION = "15a824d2c5496eabd6c3f95e8bd0da38";
7
+ export declare function validate(obj: any, path?: string): TypeError | null;
8
+ export declare const RepresentationType: string;
9
+ export interface KeyParams extends $64$luvio_engine_KeyMetadata {
10
+ isSuccess: boolean;
11
+ }
12
+ export type InterestTagAndCategoryCreateOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
13
+ export type PartialInterestTagAndCategoryCreateOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
15
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): InterestTagAndCategoryCreateOutputRepresentationNormalizedKeyMetadata;
16
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: InterestTagAndCategoryCreateOutputRepresentation): string;
17
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: InterestTagAndCategoryCreateOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
18
+ export declare function normalize(input: InterestTagAndCategoryCreateOutputRepresentation, existing: InterestTagAndCategoryCreateOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagAndCategoryCreateOutputRepresentationNormalized;
19
+ export declare const select: () => $64$luvio_engine_BaseFragment;
20
+ export declare function equals(existing: InterestTagAndCategoryCreateOutputRepresentationNormalized, incoming: InterestTagAndCategoryCreateOutputRepresentationNormalized): boolean;
21
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
22
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagAndCategoryCreateOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
23
+ /**
24
+ * Output representation for interest tag and category creation.
25
+ *
26
+ * Keys:
27
+ * isSuccess (boolean): isSuccess
28
+ */
29
+ export interface InterestTagAndCategoryCreateOutputRepresentationNormalized {
30
+ /** List of categories that were created */
31
+ categories: Array<CategoryCreatedResult_CategoryCreatedResult>;
32
+ /** List of errors that occurred during processing */
33
+ errors: Array<InterestTagAndCategoryErrorOutputRepresentation_InterestTagAndCategoryErrorOutputRepresentation>;
34
+ /** Indicates whether the operation was successful (true when no errors, false when errors are present) */
35
+ isSuccess: boolean;
36
+ /** List of tags that were created */
37
+ tags: Array<TagCreatedOutputRepresentation_TagCreatedOutputRepresentation>;
38
+ }
39
+ /**
40
+ * Output representation for interest tag and category creation.
41
+ *
42
+ * Keys:
43
+ * isSuccess (boolean): isSuccess
44
+ */
45
+ export interface InterestTagAndCategoryCreateOutputRepresentation {
46
+ categories: Array<CategoryCreatedResult_CategoryCreatedResult>;
47
+ errors: Array<InterestTagAndCategoryErrorOutputRepresentation_InterestTagAndCategoryErrorOutputRepresentation>;
48
+ isSuccess: boolean;
49
+ tags: Array<TagCreatedOutputRepresentation_TagCreatedOutputRepresentation>;
50
+ }
@@ -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 = "a88a609432f6331b67dc096194c32855";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: InterestTagAndCategoryErrorOutputRepresentation, existing: InterestTagAndCategoryErrorOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagAndCategoryErrorOutputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: InterestTagAndCategoryErrorOutputRepresentationNormalized, incoming: InterestTagAndCategoryErrorOutputRepresentationNormalized): 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: InterestTagAndCategoryErrorOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Interest tag and category error output representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface InterestTagAndCategoryErrorOutputRepresentationNormalized {
17
+ /** Error message describing what went wrong */
18
+ message: string;
19
+ /** Type of error that occurred (TagCreation, CategoryCreation, TagAndCategoryAssociation, TagAndRecordAssociation) */
20
+ type: string;
21
+ }
22
+ /**
23
+ * Interest tag and category error output representation
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface InterestTagAndCategoryErrorOutputRepresentation {
29
+ message: string;
30
+ type: string;
31
+ }
@@ -0,0 +1,41 @@
1
+ import { InterestTagItemInputRepresentation as InterestTagItemInputRepresentation_InterestTagItemInputRepresentation } from './InterestTagItemInputRepresentation';
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 = "e17ed2392aaf9085a56e364e9c93647b";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: InterestTagAndCategoryItemInputRepresentation, existing: InterestTagAndCategoryItemInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagAndCategoryItemInputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: InterestTagAndCategoryItemInputRepresentationNormalized, incoming: InterestTagAndCategoryItemInputRepresentationNormalized): 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: InterestTagAndCategoryItemInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Interest Tag and Category item input
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface InterestTagAndCategoryItemInputRepresentationNormalized {
18
+ /** Description of the category */
19
+ categoryDescription?: string;
20
+ /** Icon of the category */
21
+ categoryIcon?: string;
22
+ /** ID of the category */
23
+ categoryId?: string;
24
+ /** Name of the category */
25
+ categoryName?: string;
26
+ /** List of tags associated with this category */
27
+ tags: Array<InterestTagItemInputRepresentation_InterestTagItemInputRepresentation>;
28
+ }
29
+ /**
30
+ * Interest Tag and Category item input
31
+ *
32
+ * Keys:
33
+ * (none)
34
+ */
35
+ export interface InterestTagAndCategoryItemInputRepresentation {
36
+ categoryDescription?: string;
37
+ categoryIcon?: string;
38
+ categoryId?: string;
39
+ categoryName?: string;
40
+ tags: Array<InterestTagItemInputRepresentation_InterestTagItemInputRepresentation>;
41
+ }
@@ -0,0 +1,43 @@
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 = "ee94e56a46b61d955e6a46e1745437ed";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: InterestTagAssignmentInputRepresentation, existing: InterestTagAssignmentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagAssignmentInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: InterestTagAssignmentInputRepresentationNormalized, incoming: InterestTagAssignmentInputRepresentationNormalized): 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: InterestTagAssignmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation for interest tag entity assignment
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface InterestTagAssignmentInputRepresentationNormalized {
17
+ /** Entity records to be assigned to a tag */
18
+ recordsForTag: {
19
+ RecordIds: Array<string>;
20
+ TagId: string;
21
+ };
22
+ /** tags to be assigned to an entity */
23
+ tagsForRecord: {
24
+ RecordId: string;
25
+ TagIds: Array<string>;
26
+ };
27
+ }
28
+ /**
29
+ * Input representation for interest tag entity assignment
30
+ *
31
+ * Keys:
32
+ * (none)
33
+ */
34
+ export interface InterestTagAssignmentInputRepresentation {
35
+ recordsForTag: {
36
+ RecordIds: Array<string>;
37
+ TagId: string;
38
+ };
39
+ tagsForRecord: {
40
+ RecordId: string;
41
+ TagIds: Array<string>;
42
+ };
43
+ }
@@ -0,0 +1,50 @@
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 = 10000;
3
+ export declare const VERSION = "d1e3c71d06accea875e9f0c6f41bd7bd";
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
+ errors: Array<string>;
8
+ isCreated: boolean;
9
+ isSuccess: boolean;
10
+ }
11
+ export type InterestTagAssignmentOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
12
+ export type PartialInterestTagAssignmentOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
13
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
14
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): InterestTagAssignmentOutputRepresentationNormalizedKeyMetadata;
15
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: InterestTagAssignmentOutputRepresentation): string;
16
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: InterestTagAssignmentOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
17
+ export declare function normalize(input: InterestTagAssignmentOutputRepresentation, existing: InterestTagAssignmentOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagAssignmentOutputRepresentationNormalized;
18
+ export declare const select: () => $64$luvio_engine_BaseFragment;
19
+ export declare function equals(existing: InterestTagAssignmentOutputRepresentationNormalized, incoming: InterestTagAssignmentOutputRepresentationNormalized): boolean;
20
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
21
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagAssignmentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
22
+ /**
23
+ * Interest tag entity assignment output representation.
24
+ *
25
+ * Keys:
26
+ * errors (Array<string>): errors
27
+ * isCreated (boolean): isCreated
28
+ * isSuccess (boolean): isSuccess
29
+ */
30
+ export interface InterestTagAssignmentOutputRepresentationNormalized {
31
+ /** Error messages occurred for the interest tag entity assignments */
32
+ errors: Array<string>;
33
+ /** Created flag whether the Interest Tag Entity assignment was successfully created or not */
34
+ isCreated: boolean;
35
+ /** Success flag for Create of Interest Tag Entity assignment */
36
+ isSuccess: boolean;
37
+ }
38
+ /**
39
+ * Interest tag entity assignment output representation.
40
+ *
41
+ * Keys:
42
+ * errors (Array<string>): errors
43
+ * isCreated (boolean): isCreated
44
+ * isSuccess (boolean): isSuccess
45
+ */
46
+ export interface InterestTagAssignmentOutputRepresentation {
47
+ errors: Array<string>;
48
+ isCreated: boolean;
49
+ isSuccess: boolean;
50
+ }
@@ -0,0 +1,29 @@
1
+ import { InterestTagCreateResult as InterestTagCreateResult_InterestTagCreateResult } from './InterestTagCreateResult';
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 = "ad4faa1900ccb44cb5a3bd1b67d5675a";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: InterestTagCreateCollectionOutputRepresentation, existing: InterestTagCreateCollectionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagCreateCollectionOutputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: InterestTagCreateCollectionOutputRepresentationNormalized, incoming: InterestTagCreateCollectionOutputRepresentationNormalized): 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: InterestTagCreateCollectionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * A Collection of interest tag output representation- InterestTagCreateResult.
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface InterestTagCreateCollectionOutputRepresentationNormalized {
18
+ /** List of Interest Tag Records created */
19
+ results: Array<InterestTagCreateResult_InterestTagCreateResult>;
20
+ }
21
+ /**
22
+ * A Collection of interest tag output representation- InterestTagCreateResult.
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface InterestTagCreateCollectionOutputRepresentation {
28
+ results: Array<InterestTagCreateResult_InterestTagCreateResult>;
29
+ }
@@ -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 = "79f0e4660c9b852ee8ed74b7511c2618";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: InterestTagCreateInputListRepresentation, existing: InterestTagCreateInputListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagCreateInputListRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: InterestTagCreateInputListRepresentationNormalized, incoming: InterestTagCreateInputListRepresentationNormalized): 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: InterestTagCreateInputListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Interest Tags create input list
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface InterestTagCreateInputListRepresentationNormalized {
17
+ /** List of Interest tags to be created */
18
+ interestTagList: Array<{}>;
19
+ }
20
+ /**
21
+ * Interest Tags create input list
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface InterestTagCreateInputListRepresentation {
27
+ interestTagList: Array<{}>;
28
+ }
@@ -0,0 +1,37 @@
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 = "3a41b68d4be1549222b91c5860aa7525";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: InterestTagCreateInputRepresentation, existing: InterestTagCreateInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagCreateInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: InterestTagCreateInputRepresentationNormalized, incoming: InterestTagCreateInputRepresentationNormalized): 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: InterestTagCreateInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation for creating interest tags
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface InterestTagCreateInputRepresentationNormalized {
17
+ /** CategoryId of the Interest Tag */
18
+ categoryId: string;
19
+ /** Id of the reecord to which Interest Tag needs to be associated to */
20
+ recordId: string;
21
+ /** Description of the Interest Tag */
22
+ tagDescription: string;
23
+ /** Name of the Interest Tag */
24
+ tagName: string;
25
+ }
26
+ /**
27
+ * Input representation for creating interest tags
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface InterestTagCreateInputRepresentation {
33
+ categoryId: string;
34
+ recordId: string;
35
+ tagDescription: string;
36
+ tagName: string;
37
+ }
@@ -0,0 +1,37 @@
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 = "c0ac115777cdb3294b9acdddfee831cf";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: InterestTagCreateResult, existing: InterestTagCreateResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagCreateResultNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: InterestTagCreateResultNormalized, incoming: InterestTagCreateResultNormalized): 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: InterestTagCreateResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Create interest tag results representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface InterestTagCreateResultNormalized {
17
+ /** Error message of the Interest Tag that could be created */
18
+ error: string;
19
+ /** Created flag whether the Interest Tag was successfully created or not */
20
+ isCreated: boolean;
21
+ /** Success flag for Create of Interest Tags */
22
+ isSuccess: boolean;
23
+ /** Interest Tag Id that got created. */
24
+ tagId: string;
25
+ }
26
+ /**
27
+ * Create interest tag results representation
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface InterestTagCreateResult {
33
+ error: string;
34
+ isCreated: boolean;
35
+ isSuccess: boolean;
36
+ tagId: string;
37
+ }
@@ -0,0 +1,37 @@
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 = "4eaa9946b6f8a2d6576eed4962c02e9f";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: InterestTagItemInputRepresentation, existing: InterestTagItemInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagItemInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: InterestTagItemInputRepresentationNormalized, incoming: InterestTagItemInputRepresentationNormalized): 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: InterestTagItemInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Interest Tag item input
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface InterestTagItemInputRepresentationNormalized {
17
+ /** ID of the record to associate with the tag */
18
+ recordId?: string;
19
+ /** Description of the tag */
20
+ tagDescription?: string;
21
+ /** ID of the tag */
22
+ tagId?: string;
23
+ /** Name of the tag */
24
+ tagName?: string;
25
+ }
26
+ /**
27
+ * Interest Tag item input
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface InterestTagItemInputRepresentation {
33
+ recordId?: string;
34
+ tagDescription?: string;
35
+ tagId?: string;
36
+ tagName?: string;
37
+ }
@@ -0,0 +1,30 @@
1
+ import { InterestTagRepresentation as InterestTagRepresentation_InterestTagRepresentation } from './InterestTagRepresentation';
2
+ 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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const TTL = 10000;
4
+ export declare const VERSION = "a7f32ea47ff9fb394c6f9e13003a5595";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: InterestTagListRepresentation, existing: InterestTagListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagListRepresentationNormalized;
8
+ export declare const select: () => $64$luvio_engine_BaseFragment;
9
+ export declare function equals(existing: InterestTagListRepresentationNormalized, incoming: InterestTagListRepresentationNormalized): boolean;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * A list of interest tags.
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface InterestTagListRepresentationNormalized {
19
+ /** interest tag list */
20
+ tags: Array<InterestTagRepresentation_InterestTagRepresentation>;
21
+ }
22
+ /**
23
+ * A list of interest tags.
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface InterestTagListRepresentation {
29
+ tags: Array<InterestTagRepresentation_InterestTagRepresentation>;
30
+ }
@@ -0,0 +1,38 @@
1
+ import { TagCategoryRepresentation as TagCategoryRepresentation_TagCategoryRepresentation } from './TagCategoryRepresentation';
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 = "c52de2b59e2e5f6049a808d60097e50f";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: InterestTagRepresentation, existing: InterestTagRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: InterestTagRepresentationNormalized, incoming: InterestTagRepresentationNormalized): 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: InterestTagRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * The response for an interest tag.
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface InterestTagRepresentationNormalized {
18
+ /** The categories associated to the tag */
19
+ categories: Array<TagCategoryRepresentation_TagCategoryRepresentation>;
20
+ /** The tag name */
21
+ name: string;
22
+ /** The id of the assignment record of the tagid and recordId */
23
+ recordAssignmentId: string;
24
+ /** The tag Id */
25
+ tagId: string;
26
+ }
27
+ /**
28
+ * The response for an interest tag.
29
+ *
30
+ * Keys:
31
+ * (none)
32
+ */
33
+ export interface InterestTagRepresentation {
34
+ categories: Array<TagCategoryRepresentation_TagCategoryRepresentation>;
35
+ name: string;
36
+ recordAssignmentId: string;
37
+ tagId: string;
38
+ }
@@ -0,0 +1,37 @@
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 = "7a1a3585ad1537e6ea7d229ff8f5eec2";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: InterestTagUpdateInputRepresentation, existing: InterestTagUpdateInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagUpdateInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: InterestTagUpdateInputRepresentationNormalized, incoming: InterestTagUpdateInputRepresentationNormalized): 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: InterestTagUpdateInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Interest Tags update input request
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface InterestTagUpdateInputRepresentationNormalized {
17
+ /** The categories to be assigned on this tag */
18
+ addCategoryIds: Array<string>;
19
+ /** The categories to be removed on this tag */
20
+ removeCategoryIds: Array<string>;
21
+ /** The new tag description to be set on this tag */
22
+ tagDescription: string;
23
+ /** The new tag name to be set on this tag */
24
+ tagName: string;
25
+ }
26
+ /**
27
+ * Interest Tags update input request
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface InterestTagUpdateInputRepresentation {
33
+ addCategoryIds: Array<string>;
34
+ removeCategoryIds: Array<string>;
35
+ tagDescription: string;
36
+ tagName: string;
37
+ }
@@ -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 = "44566884c0145ca8cf13b2938e221710";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: InterestTagUpdateOutputRepresentation, existing: InterestTagUpdateOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InterestTagUpdateOutputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: InterestTagUpdateOutputRepresentationNormalized, incoming: InterestTagUpdateOutputRepresentationNormalized): 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: InterestTagUpdateOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * The response for interest tag update call.
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface InterestTagUpdateOutputRepresentationNormalized {
17
+ /** indicate whether the call is succeeded */
18
+ isSuccess: boolean;
19
+ /** indicate whether the tag is updated */
20
+ isUpdated: boolean;
21
+ }
22
+ /**
23
+ * The response for interest tag update call.
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface InterestTagUpdateOutputRepresentation {
29
+ isSuccess: boolean;
30
+ isUpdated: boolean;
31
+ }
@@ -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 = "3d0c40d80da456517d254e7a15c7ca06";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: RecordsForTag, existing: RecordsForTagNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RecordsForTagNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: RecordsForTagNormalized, incoming: RecordsForTagNormalized): 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: RecordsForTag, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation for records for tag
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface RecordsForTagNormalized {
17
+ /** Entity Record Ids */
18
+ recordIds: Array<string>;
19
+ /** Interest Tag Id */
20
+ tagId: string;
21
+ }
22
+ /**
23
+ * Input representation for records for tag
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface RecordsForTag {
29
+ recordIds: Array<string>;
30
+ tagId: string;
31
+ }
@@ -0,0 +1,29 @@
1
+ import { TagCategoryWithParentRepresentation as TagCategoryWithParentRepresentation_TagCategoryWithParentRepresentation } from './TagCategoryWithParentRepresentation';
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 = "9b56734fafb1d500056d1c1cdb6fe22d";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: TagCategoryListRepresentation, existing: TagCategoryListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TagCategoryListRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: TagCategoryListRepresentationNormalized, incoming: TagCategoryListRepresentationNormalized): 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: TagCategoryListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * A list of tag categories.
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface TagCategoryListRepresentationNormalized {
18
+ /** tag category list */
19
+ categories: Array<TagCategoryWithParentRepresentation_TagCategoryWithParentRepresentation>;
20
+ }
21
+ /**
22
+ * A list of tag categories.
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface TagCategoryListRepresentation {
28
+ categories: Array<TagCategoryWithParentRepresentation_TagCategoryWithParentRepresentation>;
29
+ }