@salesforce/lds-adapters-industries-context 1.104.1 → 1.106.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. package/dist/es/es2018/industries-context.js +1054 -273
  2. package/dist/types/src/generated/adapters/createContextAttributeTag.d.ts +15 -0
  3. package/dist/types/src/generated/adapters/deleteContextAttributeTag.d.ts +13 -0
  4. package/dist/types/src/generated/adapters/getContextAttributeTag.d.ts +27 -0
  5. package/dist/types/src/generated/adapters/getContextAttributeTagsByAttributeId.d.ts +26 -0
  6. package/dist/types/src/generated/adapters/updateContextAttributeTag.d.ts +16 -0
  7. package/dist/types/src/generated/artifacts/main.d.ts +5 -0
  8. package/dist/types/src/generated/artifacts/sfdc.d.ts +9 -1
  9. package/dist/types/src/generated/resources/deleteConnectContextdefinitionAttributetagByContextAttributeTagId.d.ts +5 -2
  10. package/dist/types/src/generated/resources/getConnectContextdefinitionAttributetagByContextAttributeTagId.d.ts +16 -0
  11. package/dist/types/src/generated/resources/patchConnectContextdefinitionAttributetagByContextAttributeTagId.d.ts +2 -3
  12. package/dist/types/src/generated/resources/postConnectContextdefinitionAttributetag.d.ts +2 -3
  13. package/dist/types/src/generated/types/ContextAttributeTagInputRepresentation.d.ts +5 -5
  14. package/dist/types/src/generated/types/ContextAttributeTagInputWrapperRepresentation.d.ts +29 -0
  15. package/dist/types/src/generated/types/ContextAttributeTagListRepresentation.d.ts +6 -14
  16. package/dist/types/src/generated/types/ContextAttributeTagRepresentation.d.ts +7 -7
  17. package/dist/umd/es2018/industries-context.js +1058 -272
  18. package/dist/umd/es5/industries-context.js +1060 -272
  19. package/package.json +3 -3
  20. package/sfdc/index.js +1488 -642
  21. package/src/raml/api.raml +25 -2
  22. package/src/raml/luvio.raml +27 -0
@@ -0,0 +1,15 @@
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
+ import { ContextAttributeTagInputRepresentation as types_ContextAttributeTagInputRepresentation_ContextAttributeTagInputRepresentation } from '../types/ContextAttributeTagInputRepresentation';
3
+ import { ResourceRequestConfig as resources_postConnectContextdefinitionAttributetag_ResourceRequestConfig } from '../resources/postConnectContextdefinitionAttributetag';
4
+ import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
5
+ import { ContextAttributeTagRepresentation as types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation } from '../types/ContextAttributeTagRepresentation';
6
+ export declare const adapterName = "createContextAttributeTag";
7
+ export declare const createContextAttributeTag_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface CreateContextAttributeTagConfig {
9
+ contextAttributeTagInput: types_ContextAttributeTagInputRepresentation_ContextAttributeTagInputRepresentation;
10
+ }
11
+ export declare function createResourceParams(config: CreateContextAttributeTagConfig): resources_postConnectContextdefinitionAttributetag_ResourceRequestConfig;
12
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateContextAttributeTagConfig>): adapter$45$utils_Untrusted<CreateContextAttributeTagConfig>;
13
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateContextAttributeTagConfig | null;
14
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateContextAttributeTagConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, any>>;
15
+ export declare const createContextAttributeTagAdapterFactory: $64$luvio_engine_AdapterFactory<CreateContextAttributeTagConfig, types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation>;
@@ -0,0 +1,13 @@
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
+ import { ResourceRequestConfig as resources_deleteConnectContextdefinitionAttributetagByContextAttributeTagId_ResourceRequestConfig } from '../resources/deleteConnectContextdefinitionAttributetagByContextAttributeTagId';
3
+ import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, DeleteAdapterFactory as $64$luvio_engine_DeleteAdapterFactory } from '@luvio/engine';
4
+ export declare const adapterName = "deleteContextAttributeTag";
5
+ export declare const deleteContextAttributeTag_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
6
+ export interface DeleteContextAttributeTagConfig {
7
+ contextAttributeTagId: string;
8
+ }
9
+ export declare function createResourceParams(config: DeleteContextAttributeTagConfig): resources_deleteConnectContextdefinitionAttributetagByContextAttributeTagId_ResourceRequestConfig;
10
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<DeleteContextAttributeTagConfig>): adapter$45$utils_Untrusted<DeleteContextAttributeTagConfig>;
11
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): DeleteContextAttributeTagConfig | null;
12
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: DeleteContextAttributeTagConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<void>;
13
+ export declare const deleteContextAttributeTagAdapterFactory: $64$luvio_engine_DeleteAdapterFactory<DeleteContextAttributeTagConfig>;
@@ -0,0 +1,27 @@
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted, UncoercedConfiguration as adapter$45$utils_UncoercedConfiguration } from './adapter-utils';
2
+ import { ResourceRequestConfig as resources_getConnectContextdefinitionAttributetagByContextAttributeTagId_ResourceRequestConfig } from '../resources/getConnectContextdefinitionAttributetagByContextAttributeTagId';
3
+ import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
4
+ import { ContextAttributeTagRepresentation as types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, KeyParams as types_ContextAttributeTagRepresentation_KeyParams } from '../types/ContextAttributeTagRepresentation';
5
+ export declare const adapterName = "getContextAttributeTag";
6
+ export declare const getContextAttributeTag_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
7
+ export interface GetContextAttributeTagConfig {
8
+ contextAttributeTagId: string;
9
+ }
10
+ export declare function createResourceParams(config: GetContextAttributeTagConfig): resources_getConnectContextdefinitionAttributetagByContextAttributeTagId_ResourceRequestConfig;
11
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagConfig): string;
12
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagConfig): $64$luvio_engine_NormalizedKeyMetadata;
13
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetContextAttributeTagConfig>): adapter$45$utils_Untrusted<GetContextAttributeTagConfig>;
14
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetContextAttributeTagConfig | null;
15
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagConfig): $64$luvio_engine_Fragment;
16
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagConfig): $64$luvio_engine_Snapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, any>;
17
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagConfig, resourceParams: resources_getConnectContextdefinitionAttributetagByContextAttributeTagId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation>): Promise<import("@luvio/engine").PendingSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, any> | import("@luvio/engine").FulfilledSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, {}>>;
18
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagConfig, resourceParams: resources_getConnectContextdefinitionAttributetagByContextAttributeTagId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
19
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, any>>;
20
+ export type BuildSnapshotContext = {
21
+ luvio: $64$luvio_engine_Luvio;
22
+ config: GetContextAttributeTagConfig;
23
+ };
24
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, any>>;
25
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation>): $64$luvio_engine_Snapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, any>;
26
+ export declare const getContextAttributeTagAdapterFactory: $64$luvio_engine_AdapterFactory<GetContextAttributeTagConfig, types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation>;
27
+ export declare const notifyChangeFactory: (luvio: $64$luvio_engine_Luvio, options?: $64$luvio_engine_DispatchResourceRequestContext) => (configs: adapter$45$utils_UncoercedConfiguration<types_ContextAttributeTagRepresentation_KeyParams, any>[]) => void;
@@ -0,0 +1,26 @@
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
+ import { ResourceRequestConfig as resources_getConnectContextdefinitionAttributenodeTagsByContextAttributeId_ResourceRequestConfig } from '../resources/getConnectContextdefinitionAttributenodeTagsByContextAttributeId';
3
+ import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
4
+ import { ContextAttributeTagListRepresentation as types_ContextAttributeTagListRepresentation_ContextAttributeTagListRepresentation } from '../types/ContextAttributeTagListRepresentation';
5
+ export declare const adapterName = "getContextAttributeTagsByAttributeId";
6
+ export declare const getContextAttributeTagsByAttributeId_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
7
+ export interface GetContextAttributeTagsByAttributeIdConfig {
8
+ contextAttributeId: string;
9
+ }
10
+ export declare function createResourceParams(config: GetContextAttributeTagsByAttributeIdConfig): resources_getConnectContextdefinitionAttributenodeTagsByContextAttributeId_ResourceRequestConfig;
11
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagsByAttributeIdConfig): string;
12
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagsByAttributeIdConfig): $64$luvio_engine_NormalizedKeyMetadata;
13
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetContextAttributeTagsByAttributeIdConfig>): adapter$45$utils_Untrusted<GetContextAttributeTagsByAttributeIdConfig>;
14
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetContextAttributeTagsByAttributeIdConfig | null;
15
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagsByAttributeIdConfig): $64$luvio_engine_Fragment;
16
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagsByAttributeIdConfig): $64$luvio_engine_Snapshot<types_ContextAttributeTagListRepresentation_ContextAttributeTagListRepresentation, any>;
17
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagsByAttributeIdConfig, resourceParams: resources_getConnectContextdefinitionAttributenodeTagsByContextAttributeId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ContextAttributeTagListRepresentation_ContextAttributeTagListRepresentation>): Promise<import("@luvio/engine").PendingSnapshot<types_ContextAttributeTagListRepresentation_ContextAttributeTagListRepresentation, any> | import("@luvio/engine").FulfilledSnapshot<types_ContextAttributeTagListRepresentation_ContextAttributeTagListRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ContextAttributeTagListRepresentation_ContextAttributeTagListRepresentation, {}>>;
18
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagsByAttributeIdConfig, resourceParams: resources_getConnectContextdefinitionAttributenodeTagsByContextAttributeId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
19
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetContextAttributeTagsByAttributeIdConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ContextAttributeTagListRepresentation_ContextAttributeTagListRepresentation, any>>;
20
+ export type BuildSnapshotContext = {
21
+ luvio: $64$luvio_engine_Luvio;
22
+ config: GetContextAttributeTagsByAttributeIdConfig;
23
+ };
24
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ContextAttributeTagListRepresentation_ContextAttributeTagListRepresentation, any>>;
25
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ContextAttributeTagListRepresentation_ContextAttributeTagListRepresentation>): $64$luvio_engine_Snapshot<types_ContextAttributeTagListRepresentation_ContextAttributeTagListRepresentation, any>;
26
+ export declare const getContextAttributeTagsByAttributeIdAdapterFactory: $64$luvio_engine_AdapterFactory<GetContextAttributeTagsByAttributeIdConfig, types_ContextAttributeTagListRepresentation_ContextAttributeTagListRepresentation>;
@@ -0,0 +1,16 @@
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
+ import { ContextAttributeTagInputRepresentation as types_ContextAttributeTagInputRepresentation_ContextAttributeTagInputRepresentation } from '../types/ContextAttributeTagInputRepresentation';
3
+ import { ResourceRequestConfig as resources_patchConnectContextdefinitionAttributetagByContextAttributeTagId_ResourceRequestConfig } from '../resources/patchConnectContextdefinitionAttributetagByContextAttributeTagId';
4
+ import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
5
+ import { ContextAttributeTagRepresentation as types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation } from '../types/ContextAttributeTagRepresentation';
6
+ export declare const adapterName = "updateContextAttributeTag";
7
+ export declare const updateContextAttributeTag_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface UpdateContextAttributeTagConfig {
9
+ contextAttributeTagId: string;
10
+ contextAttributeTagInput: types_ContextAttributeTagInputRepresentation_ContextAttributeTagInputRepresentation;
11
+ }
12
+ export declare function createResourceParams(config: UpdateContextAttributeTagConfig): resources_patchConnectContextdefinitionAttributetagByContextAttributeTagId_ResourceRequestConfig;
13
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateContextAttributeTagConfig>): adapter$45$utils_Untrusted<UpdateContextAttributeTagConfig>;
14
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): UpdateContextAttributeTagConfig | null;
15
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: UpdateContextAttributeTagConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, any>>;
16
+ export declare const updateContextAttributeTagAdapterFactory: $64$luvio_engine_AdapterFactory<UpdateContextAttributeTagConfig, types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation>;
@@ -4,6 +4,11 @@ export { createContextAttributeAdapterFactory } from '../adapters/createContextA
4
4
  export { deleteContextAttributeAdapterFactory } from '../adapters/deleteContextAttribute';
5
5
  export { getContextAttributeAdapterFactory } from '../adapters/getContextAttribute';
6
6
  export { updateContextAttributeAdapterFactory } from '../adapters/updateContextAttribute';
7
+ export { getContextAttributeTagsByAttributeIdAdapterFactory } from '../adapters/getContextAttributeTagsByAttributeId';
8
+ export { createContextAttributeTagAdapterFactory } from '../adapters/createContextAttributeTag';
9
+ export { deleteContextAttributeTagAdapterFactory } from '../adapters/deleteContextAttributeTag';
10
+ export { getContextAttributeTagAdapterFactory } from '../adapters/getContextAttributeTag';
11
+ export { updateContextAttributeTagAdapterFactory } from '../adapters/updateContextAttributeTag';
7
12
  export { getContextDefinitionInfoAdapterFactory } from '../adapters/getContextDefinitionInfo';
8
13
  export { createContextNodeAdapterFactory } from '../adapters/createContextNode';
9
14
  export { deleteContextNodeAdapterFactory } from '../adapters/deleteContextNode';
@@ -1,13 +1,18 @@
1
1
  declare let createContextAttribute: any;
2
+ declare let createContextAttributeTag: any;
2
3
  declare let createContextDefinition: any;
3
4
  declare let createContextDefinitionVersion: any;
4
5
  declare let createContextNode: any;
5
6
  declare let deleteContextAttribute: any;
7
+ declare let deleteContextAttributeTag: any;
6
8
  declare let deleteContextDefinition: any;
7
9
  declare let deleteContextDefinitionVersion: any;
8
10
  declare let deleteContextNode: any;
9
11
  declare let getContextAttribute: any;
10
12
  declare let getContextAttributeNotifyChange: any;
13
+ declare let getContextAttributeTag: any;
14
+ declare let getContextAttributeTagNotifyChange: any;
15
+ declare let getContextAttributeTagsByAttributeId: any;
11
16
  declare let getContextDefinition: any;
12
17
  declare let getContextDefinitionInfo: any;
13
18
  declare let getContextDefinitionInfoNotifyChange: any;
@@ -18,13 +23,16 @@ declare let getContextDefinitionVersionNotifyChange: any;
18
23
  declare let getContextNode: any;
19
24
  declare let getContextNodeNotifyChange: any;
20
25
  declare let updateContextAttribute: any;
26
+ declare let updateContextAttributeTag: any;
21
27
  declare let updateContextDefinition: any;
22
28
  declare let updateContextDefinitionVersion: any;
23
29
  declare let updateContextNode: any;
24
30
  declare let getContextAttribute_imperative: any;
31
+ declare let getContextAttributeTag_imperative: any;
32
+ declare let getContextAttributeTagsByAttributeId_imperative: any;
25
33
  declare let getContextDefinition_imperative: any;
26
34
  declare let getContextDefinitionInfo_imperative: any;
27
35
  declare let getContextDefinitionList_imperative: any;
28
36
  declare let getContextDefinitionVersion_imperative: any;
29
37
  declare let getContextNode_imperative: any;
30
- export { createContextAttribute, createContextDefinition, createContextDefinitionVersion, createContextNode, deleteContextAttribute, deleteContextDefinition, deleteContextDefinitionVersion, deleteContextNode, getContextAttribute, getContextAttributeNotifyChange, getContextDefinition, getContextDefinitionInfo, getContextDefinitionInfoNotifyChange, getContextDefinitionList, getContextDefinitionNotifyChange, getContextDefinitionVersion, getContextDefinitionVersionNotifyChange, getContextNode, getContextNodeNotifyChange, updateContextAttribute, updateContextDefinition, updateContextDefinitionVersion, updateContextNode, getContextAttribute_imperative, getContextDefinition_imperative, getContextDefinitionInfo_imperative, getContextDefinitionList_imperative, getContextDefinitionVersion_imperative, getContextNode_imperative };
38
+ export { createContextAttribute, createContextAttributeTag, createContextDefinition, createContextDefinitionVersion, createContextNode, deleteContextAttribute, deleteContextAttributeTag, deleteContextDefinition, deleteContextDefinitionVersion, deleteContextNode, getContextAttribute, getContextAttributeNotifyChange, getContextAttributeTag, getContextAttributeTagNotifyChange, getContextAttributeTagsByAttributeId, getContextDefinition, getContextDefinitionInfo, getContextDefinitionInfoNotifyChange, getContextDefinitionList, getContextDefinitionNotifyChange, getContextDefinitionVersion, getContextDefinitionVersionNotifyChange, getContextNode, getContextNodeNotifyChange, updateContextAttribute, updateContextAttributeTag, updateContextDefinition, updateContextDefinitionVersion, updateContextNode, getContextAttribute_imperative, getContextAttributeTag_imperative, getContextAttributeTagsByAttributeId_imperative, getContextDefinition_imperative, getContextDefinitionInfo_imperative, getContextDefinitionList_imperative, getContextDefinitionVersion_imperative, getContextNode_imperative };
@@ -1,9 +1,12 @@
1
- import { ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
1
+ import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
2
  export interface ResourceRequestConfig {
3
3
  urlParams: {
4
4
  contextAttributeTagId: string;
5
5
  };
6
6
  }
7
- export declare function keyBuilder(params: ResourceRequestConfig): null;
7
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
8
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
9
+ export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): $64$luvio_engine_DurableStoreKeyMetadataMap;
10
+ export declare function evictSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
8
11
  export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
9
12
  export default createResourceRequest;
@@ -0,0 +1,16 @@
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 { ContextAttributeTagRepresentation as types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation } from '../types/ContextAttributeTagRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ contextAttributeTagId: 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_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation, any>;
13
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation>): $64$luvio_engine_ErrorSnapshot;
14
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
15
+ export default createResourceRequest;
16
+ export declare function createResourceRequestFromRepresentation(representation: types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation): $64$luvio_engine_ResourceRequest;
@@ -1,3 +1,4 @@
1
+ import { ContextAttributeTagInputRepresentation as types_ContextAttributeTagInputRepresentation_ContextAttributeTagInputRepresentation } from '../types/ContextAttributeTagInputRepresentation';
1
2
  import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
3
  import { ContextAttributeTagRepresentation as types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation } from '../types/ContextAttributeTagRepresentation';
3
4
  export interface ResourceRequestConfig {
@@ -5,9 +6,7 @@ export interface ResourceRequestConfig {
5
6
  contextAttributeTagId: string;
6
7
  };
7
8
  body: {
8
- contextAttributeId: string;
9
- contextNodeId: string;
10
- name: string;
9
+ contextAttributeTagInput: types_ContextAttributeTagInputRepresentation_ContextAttributeTagInputRepresentation;
11
10
  };
12
11
  }
13
12
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -1,10 +1,9 @@
1
+ import { ContextAttributeTagInputRepresentation as types_ContextAttributeTagInputRepresentation_ContextAttributeTagInputRepresentation } from '../types/ContextAttributeTagInputRepresentation';
1
2
  import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
3
  import { ContextAttributeTagRepresentation as types_ContextAttributeTagRepresentation_ContextAttributeTagRepresentation } from '../types/ContextAttributeTagRepresentation';
3
4
  export interface ResourceRequestConfig {
4
5
  body: {
5
- contextAttributeId: string;
6
- contextNodeId: string;
7
- name: string;
6
+ contextAttributeTagInput: types_ContextAttributeTagInputRepresentation_ContextAttributeTagInputRepresentation;
8
7
  };
9
8
  }
10
9
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -1,5 +1,5 @@
1
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 = "0cafda0e23aa7f421d5a984216d80aea";
2
+ export declare const VERSION = "b3411375cd559e74b68577bc151893af";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: ContextAttributeTagInputRepresentation, existing: ContextAttributeTagInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextAttributeTagInputRepresentationNormalized;
@@ -16,9 +16,9 @@ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: C
16
16
  */
17
17
  export interface ContextAttributeTagInputRepresentationNormalized {
18
18
  /** Id of (Parent) ContextAttribute */
19
- contextAttributeId: string;
19
+ contextAttributeId?: string;
20
20
  /** Id of (Parent) ContextNode */
21
- contextNodeId: string;
21
+ contextNodeId?: string;
22
22
  /** Name */
23
23
  name: string;
24
24
  }
@@ -29,7 +29,7 @@ export interface ContextAttributeTagInputRepresentationNormalized {
29
29
  * (none)
30
30
  */
31
31
  export interface ContextAttributeTagInputRepresentation {
32
- contextAttributeId: string;
33
- contextNodeId: string;
32
+ contextAttributeId?: string;
33
+ contextNodeId?: string;
34
34
  name: string;
35
35
  }
@@ -0,0 +1,29 @@
1
+ import { ContextAttributeTagInputRepresentation as ContextAttributeTagInputRepresentation_ContextAttributeTagInputRepresentation } from './ContextAttributeTagInputRepresentation';
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 = "0927afe1c4a8e6dc2412fb5bb0121c77";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ContextAttributeTagInputWrapperRepresentation, existing: ContextAttributeTagInputWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextAttributeTagInputWrapperRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ContextAttributeTagInputWrapperRepresentationNormalized, incoming: ContextAttributeTagInputWrapperRepresentationNormalized): boolean;
9
+ export declare function deepFreeze(input: ContextAttributeTagInputWrapperRepresentation): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ContextAttributeTagInputWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * Wrapper Input representation for ContextAttributeTagInputRepresentation
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface ContextAttributeTagInputWrapperRepresentationNormalized {
19
+ contextAttributeTagInput: ContextAttributeTagInputRepresentation_ContextAttributeTagInputRepresentation;
20
+ }
21
+ /**
22
+ * Wrapper Input representation for ContextAttributeTagInputRepresentation
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface ContextAttributeTagInputWrapperRepresentation {
28
+ contextAttributeTagInput: ContextAttributeTagInputRepresentation_ContextAttributeTagInputRepresentation;
29
+ }
@@ -1,23 +1,15 @@
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
1
  import { ContextAttributeTagRepresentation as ContextAttributeTagRepresentation_ContextAttributeTagRepresentation } from './ContextAttributeTagRepresentation';
3
- export declare const VERSION = "f027a085e743cf3152db3952c46854a7";
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, StoreLink as $64$luvio_engine_StoreLink, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
3
+ export declare const TTL = 10000;
4
+ export declare const VERSION = "5b09f4269bc5a468321a113cc35d3e57";
4
5
  export declare function validate(obj: any, path?: string): TypeError | null;
5
6
  export declare const RepresentationType: string;
6
7
  export declare function normalize(input: ContextAttributeTagListRepresentation, existing: ContextAttributeTagListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextAttributeTagListRepresentationNormalized;
7
- export interface DynamicIngestParams {
8
- attributeTags: $64$luvio_engine_ResourceIngest;
9
- }
10
- export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ContextAttributeTagListRepresentation, existing: ContextAttributeTagListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ContextAttributeTagListRepresentationNormalized;
11
- export declare const select: () => $64$luvio_engine_FragmentSelection;
12
- export interface DynamicSelectParams {
13
- attributeTags?: $64$luvio_engine_LinkSelection;
14
- }
15
- export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
8
+ export declare const select: () => $64$luvio_engine_BaseFragment;
16
9
  export declare function equals(existing: ContextAttributeTagListRepresentationNormalized, incoming: ContextAttributeTagListRepresentationNormalized): boolean;
17
10
  export declare function deepFreeze(input: ContextAttributeTagListRepresentation): void;
18
11
  export declare const ingest: $64$luvio_engine_ResourceIngest;
19
12
  export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ContextAttributeTagListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
20
- export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
21
13
  /**
22
14
  * Output representation of List of Context Attribute Tags
23
15
  *
@@ -28,7 +20,7 @@ export interface ContextAttributeTagListRepresentationNormalized {
28
20
  /** List of ContextAttributeTags */
29
21
  attributeTags: Array<$64$luvio_engine_StoreLink>;
30
22
  /** Success */
31
- isSuccess: boolean;
23
+ isSuccess?: boolean;
32
24
  }
33
25
  /**
34
26
  * Output representation of List of Context Attribute Tags
@@ -38,5 +30,5 @@ export interface ContextAttributeTagListRepresentationNormalized {
38
30
  */
39
31
  export interface ContextAttributeTagListRepresentation {
40
32
  attributeTags: Array<ContextAttributeTagRepresentation_ContextAttributeTagRepresentation>;
41
- isSuccess: boolean;
33
+ isSuccess?: boolean;
42
34
  }
@@ -1,6 +1,6 @@
1
1
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
2
  export declare const TTL = 30000;
3
- export declare const VERSION = "60e01dae1235ff9bc96afee43e91620c";
3
+ export declare const VERSION = "6cc8b3ef582709be7344b57cb6370543";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -26,13 +26,13 @@ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: C
26
26
  */
27
27
  export interface ContextAttributeTagRepresentationNormalized {
28
28
  /** Id of (Parent) ContextAttribute */
29
- contextAttributeId: string;
29
+ contextAttributeId?: string;
30
30
  /** Id of this ContextAttributeTag */
31
31
  contextAttributeTagId: string;
32
32
  /** Id of (Parent) ContextNode */
33
- contextNodeId: string;
33
+ contextNodeId?: string;
34
34
  /** Success */
35
- isSuccess: boolean;
35
+ isSuccess?: boolean;
36
36
  /** Name */
37
37
  name: string;
38
38
  }
@@ -43,9 +43,9 @@ export interface ContextAttributeTagRepresentationNormalized {
43
43
  * id (string): contextAttributeTagId
44
44
  */
45
45
  export interface ContextAttributeTagRepresentation {
46
- contextAttributeId: string;
46
+ contextAttributeId?: string;
47
47
  contextAttributeTagId: string;
48
- contextNodeId: string;
49
- isSuccess: boolean;
48
+ contextNodeId?: string;
49
+ isSuccess?: boolean;
50
50
  name: string;
51
51
  }