@salesforce/lds-adapters-commerce-store-pricing 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 (21) hide show
  1. package/dist/es/es2018/commerce-store-pricing.js +409 -409
  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/getProductPrice.d.ts +28 -28
  4. package/dist/{types → es/es2018/types}/src/generated/artifacts/main.d.ts +1 -1
  5. package/dist/{types → es/es2018/types}/src/generated/artifacts/sfdc.d.ts +3 -3
  6. package/dist/{types → es/es2018/types}/src/generated/resources/getCommerceWebstoresPricingProductsByProductIdAndWebstoreId.d.ts +19 -19
  7. package/dist/{types → es/es2018/types}/src/generated/resources/postCommerceWebstoresPricingProductsByWebstoreId.d.ts +18 -18
  8. package/dist/{types → es/es2018/types}/src/generated/types/PriceAdjustmentScheduleRepresentation.d.ts +33 -33
  9. package/dist/{types → es/es2018/types}/src/generated/types/PriceAdjustmentTierRepresentation.d.ts +44 -44
  10. package/dist/{types → es/es2018/types}/src/generated/types/PricingInputRepresentation.d.ts +29 -29
  11. package/dist/{types → es/es2018/types}/src/generated/types/PricingLineItemInputRepresentation.d.ts +29 -29
  12. package/dist/{types → es/es2018/types}/src/generated/types/PricingLineItemInputRepresentationList.d.ts +29 -29
  13. package/dist/{types → es/es2018/types}/src/generated/types/PricingResultLineItemRepresentation.d.ts +41 -41
  14. package/dist/{types → es/es2018/types}/src/generated/types/PricingResultRepresentation.d.ts +36 -36
  15. package/dist/{types → es/es2018/types}/src/generated/types/ProductPriceRepresentation.d.ts +42 -42
  16. package/dist/{types → es/es2018/types}/src/generated/types/type-utils.d.ts +39 -39
  17. package/package.json +3 -3
  18. package/sfdc/index.d.ts +1 -1
  19. package/sfdc/index.js +429 -429
  20. package/dist/umd/es2018/commerce-store-pricing.js +0 -440
  21. package/dist/umd/es5/commerce-store-pricing.js +0 -443
@@ -1,66 +1,66 @@
1
- import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot } from '@luvio/engine';
2
- export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
3
- declare const ObjectKeys: {
4
- (o: object): string[];
5
- (o: {}): string[];
6
- }, ObjectFreeze: {
7
- <T extends Function>(f: T): T;
8
- <T_1 extends {
9
- [idx: string]: object | U | null | undefined;
10
- }, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
11
- <T_2>(o: T_2): Readonly<T_2>;
12
- }, ObjectCreate: {
13
- (o: object | null): any;
14
- (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
15
- };
16
- export { ObjectFreeze, ObjectCreate, ObjectKeys };
17
- export declare const ArrayIsArray: (arg: any) => arg is any[];
18
- export declare const ArrayPrototypePush: (...items: any[]) => number;
19
- export interface AdapterValidationConfig {
20
- displayName: string;
21
- parameters: {
22
- required: string[];
23
- optional: string[];
24
- unsupported?: string[];
25
- };
26
- }
27
- /**
28
- * Validates an adapter config is well-formed.
29
- * @param config The config to validate.
30
- * @param adapter The adapter validation configuration.
31
- * @param oneOf The keys the config must contain at least one of.
32
- * @throws A TypeError if config doesn't satisfy the adapter's config validation.
33
- */
34
- export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
35
- export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
36
- export type UncoercedConfiguration<Base, Options extends {
37
- [key in keyof Base]?: any;
38
- }> = {
39
- [Key in keyof Base]?: Base[Key] | Options[Key];
40
- };
41
- export type Untrusted<Base> = Partial<Base>;
42
- export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
43
- export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
44
- export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
45
- export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
46
- export declare const snapshotRefreshOptions: {
47
- overrides: {
48
- headers: {
49
- 'Cache-Control': string;
50
- };
51
- };
52
- };
53
- /**
54
- * A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
55
- * This is needed because insertion order for JSON.stringify(object) affects output:
56
- * JSON.stringify({a: 1, b: 2})
57
- * "{"a":1,"b":2}"
58
- * JSON.stringify({b: 2, a: 1})
59
- * "{"b":2,"a":1}"
60
- * @param data Data to be JSON-stringified.
61
- * @returns JSON.stringified value with consistent ordering of keys.
62
- */
63
- export declare function stableJSONStringify(node: any): string | undefined;
64
- export declare function getFetchResponseStatusText(status: number): string;
65
- export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
66
- export declare const keyPrefix = "Commerce";
1
+ import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot } from '@luvio/engine';
2
+ export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
3
+ declare const ObjectKeys: {
4
+ (o: object): string[];
5
+ (o: {}): string[];
6
+ }, ObjectFreeze: {
7
+ <T extends Function>(f: T): T;
8
+ <T_1 extends {
9
+ [idx: string]: object | U | null | undefined;
10
+ }, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
11
+ <T_2>(o: T_2): Readonly<T_2>;
12
+ }, ObjectCreate: {
13
+ (o: object | null): any;
14
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
15
+ };
16
+ export { ObjectFreeze, ObjectCreate, ObjectKeys };
17
+ export declare const ArrayIsArray: (arg: any) => arg is any[];
18
+ export declare const ArrayPrototypePush: (...items: any[]) => number;
19
+ export interface AdapterValidationConfig {
20
+ displayName: string;
21
+ parameters: {
22
+ required: string[];
23
+ optional: string[];
24
+ unsupported?: string[];
25
+ };
26
+ }
27
+ /**
28
+ * Validates an adapter config is well-formed.
29
+ * @param config The config to validate.
30
+ * @param adapter The adapter validation configuration.
31
+ * @param oneOf The keys the config must contain at least one of.
32
+ * @throws A TypeError if config doesn't satisfy the adapter's config validation.
33
+ */
34
+ export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
35
+ export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
36
+ export type UncoercedConfiguration<Base, Options extends {
37
+ [key in keyof Base]?: any;
38
+ }> = {
39
+ [Key in keyof Base]?: Base[Key] | Options[Key];
40
+ };
41
+ export type Untrusted<Base> = Partial<Base>;
42
+ export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
43
+ export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
44
+ export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
45
+ export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
46
+ export declare const snapshotRefreshOptions: {
47
+ overrides: {
48
+ headers: {
49
+ 'Cache-Control': string;
50
+ };
51
+ };
52
+ };
53
+ /**
54
+ * A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
55
+ * This is needed because insertion order for JSON.stringify(object) affects output:
56
+ * JSON.stringify({a: 1, b: 2})
57
+ * "{"a":1,"b":2}"
58
+ * JSON.stringify({b: 2, a: 1})
59
+ * "{"b":2,"a":1}"
60
+ * @param data Data to be JSON-stringified.
61
+ * @returns JSON.stringified value with consistent ordering of keys.
62
+ */
63
+ export declare function stableJSONStringify(node: any): string | undefined;
64
+ export declare function getFetchResponseStatusText(status: number): string;
65
+ export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
66
+ export declare const keyPrefix = "Commerce";
@@ -1,28 +1,28 @@
1
- import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
- import { ResourceRequestConfig as resources_getCommerceWebstoresPricingProductsByProductIdAndWebstoreId_ResourceRequestConfig } from '../resources/getCommerceWebstoresPricingProductsByProductIdAndWebstoreId';
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 { ProductPriceRepresentation as types_ProductPriceRepresentation_ProductPriceRepresentation } from '../types/ProductPriceRepresentation';
5
- export declare const adapterName = "getProductPrice";
6
- export declare const getProductPrice_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
7
- export interface GetProductPriceConfig {
8
- productId: string;
9
- webstoreId: string;
10
- effectiveAccountId?: string;
11
- }
12
- export declare function createResourceParams(config: GetProductPriceConfig): resources_getCommerceWebstoresPricingProductsByProductIdAndWebstoreId_ResourceRequestConfig;
13
- export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig): string;
14
- export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig): $64$luvio_engine_NormalizedKeyMetadata;
15
- export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetProductPriceConfig>): adapter$45$utils_Untrusted<GetProductPriceConfig>;
16
- export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetProductPriceConfig | null;
17
- export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig): $64$luvio_engine_Fragment;
18
- export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig): $64$luvio_engine_Snapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any>;
19
- export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig, resourceParams: resources_getCommerceWebstoresPricingProductsByProductIdAndWebstoreId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ProductPriceRepresentation_ProductPriceRepresentation>): Promise<import("@luvio/engine").PendingSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any> | import("@luvio/engine").FulfilledSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, {}>>;
20
- export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig, resourceParams: resources_getCommerceWebstoresPricingProductsByProductIdAndWebstoreId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
21
- export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any>>;
22
- export type BuildSnapshotContext = {
23
- luvio: $64$luvio_engine_Luvio;
24
- config: GetProductPriceConfig;
25
- };
26
- export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any>>;
27
- export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ProductPriceRepresentation_ProductPriceRepresentation>): $64$luvio_engine_Snapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any>;
28
- export declare const getProductPriceAdapterFactory: $64$luvio_engine_AdapterFactory<GetProductPriceConfig, types_ProductPriceRepresentation_ProductPriceRepresentation>;
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
+ import { ResourceRequestConfig as resources_getCommerceWebstoresPricingProductsByProductIdAndWebstoreId_ResourceRequestConfig } from '../resources/getCommerceWebstoresPricingProductsByProductIdAndWebstoreId';
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 { ProductPriceRepresentation as types_ProductPriceRepresentation_ProductPriceRepresentation } from '../types/ProductPriceRepresentation';
5
+ export declare const adapterName = "getProductPrice";
6
+ export declare const getProductPrice_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
7
+ export interface GetProductPriceConfig {
8
+ productId: string;
9
+ webstoreId: string;
10
+ effectiveAccountId?: string;
11
+ }
12
+ export declare function createResourceParams(config: GetProductPriceConfig): resources_getCommerceWebstoresPricingProductsByProductIdAndWebstoreId_ResourceRequestConfig;
13
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig): string;
14
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetProductPriceConfig>): adapter$45$utils_Untrusted<GetProductPriceConfig>;
16
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetProductPriceConfig | null;
17
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig): $64$luvio_engine_Fragment;
18
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig): $64$luvio_engine_Snapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any>;
19
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig, resourceParams: resources_getCommerceWebstoresPricingProductsByProductIdAndWebstoreId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ProductPriceRepresentation_ProductPriceRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any>>;
20
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig, resourceParams: resources_getCommerceWebstoresPricingProductsByProductIdAndWebstoreId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
21
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetProductPriceConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any>>;
22
+ export type BuildSnapshotContext = {
23
+ luvio: $64$luvio_engine_Luvio;
24
+ config: GetProductPriceConfig;
25
+ };
26
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any>>;
27
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ProductPriceRepresentation_ProductPriceRepresentation>): $64$luvio_engine_Snapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any>;
28
+ export declare const getProductPriceAdapterFactory: $64$luvio_engine_AdapterFactory<GetProductPriceConfig, types_ProductPriceRepresentation_ProductPriceRepresentation>;
@@ -1 +1 @@
1
- export { getProductPriceAdapterFactory } from '../adapters/getProductPrice';
1
+ export { getProductPriceAdapterFactory } from '../adapters/getProductPrice';
@@ -1,3 +1,3 @@
1
- declare let getProductPrice: any;
2
- declare let getProductPrice_imperative: any;
3
- export { getProductPrice, getProductPrice_imperative };
1
+ declare let getProductPrice: any;
2
+ declare let getProductPrice_imperative: any;
3
+ export { getProductPrice, getProductPrice_imperative };
@@ -1,19 +1,19 @@
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 { ProductPriceRepresentation as types_ProductPriceRepresentation_ProductPriceRepresentation } from '../types/ProductPriceRepresentation';
3
- export interface ResourceRequestConfig {
4
- urlParams: {
5
- productId: string;
6
- webstoreId: string;
7
- };
8
- queryParams: {
9
- effectiveAccountId?: string;
10
- };
11
- }
12
- export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
13
- export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
14
- export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
15
- export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ProductPriceRepresentation_ProductPriceRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
16
- export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ProductPriceRepresentation_ProductPriceRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ProductPriceRepresentation_ProductPriceRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any>;
17
- export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ProductPriceRepresentation_ProductPriceRepresentation>): $64$luvio_engine_ErrorSnapshot;
18
- export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
19
- export default createResourceRequest;
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 { ProductPriceRepresentation as types_ProductPriceRepresentation_ProductPriceRepresentation } from '../types/ProductPriceRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ productId: string;
6
+ webstoreId: string;
7
+ };
8
+ queryParams: {
9
+ effectiveAccountId?: string;
10
+ };
11
+ }
12
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
13
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
14
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ProductPriceRepresentation_ProductPriceRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
16
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ProductPriceRepresentation_ProductPriceRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ProductPriceRepresentation_ProductPriceRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ProductPriceRepresentation_ProductPriceRepresentation, any>;
17
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ProductPriceRepresentation_ProductPriceRepresentation>): $64$luvio_engine_ErrorSnapshot;
18
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
19
+ export default createResourceRequest;
@@ -1,18 +1,18 @@
1
- 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
- import { PricingResultRepresentation as types_PricingResultRepresentation_PricingResultRepresentation } from '../types/PricingResultRepresentation';
3
- export interface ResourceRequestConfig {
4
- urlParams: {
5
- webstoreId: string;
6
- };
7
- queryParams: {
8
- effectiveAccountId?: string;
9
- };
10
- body: {
11
- pricingLineItems: Array<{}>;
12
- };
13
- }
14
- export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
15
- export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_PricingResultRepresentation_PricingResultRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
16
- export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_PricingResultRepresentation_PricingResultRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_PricingResultRepresentation_PricingResultRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_PricingResultRepresentation_PricingResultRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_PricingResultRepresentation_PricingResultRepresentation, any>;
17
- export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
18
- export default createResourceRequest;
1
+ 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
+ import { PricingResultRepresentation as types_PricingResultRepresentation_PricingResultRepresentation } from '../types/PricingResultRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ webstoreId: string;
6
+ };
7
+ queryParams: {
8
+ effectiveAccountId?: string;
9
+ };
10
+ body: {
11
+ pricingLineItems: Array<{}>;
12
+ };
13
+ }
14
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
15
+ export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_PricingResultRepresentation_PricingResultRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
16
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_PricingResultRepresentation_PricingResultRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_PricingResultRepresentation_PricingResultRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_PricingResultRepresentation_PricingResultRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_PricingResultRepresentation_PricingResultRepresentation, any>;
17
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
18
+ export default createResourceRequest;
@@ -1,33 +1,33 @@
1
- import { PriceAdjustmentTierRepresentation as PriceAdjustmentTierRepresentation_PriceAdjustmentTierRepresentation } from './PriceAdjustmentTierRepresentation';
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 = "1d3675bd094b43c389f8a51aa4d2c254";
4
- export declare function validate(obj: any, path?: string): TypeError | null;
5
- export declare const RepresentationType: string;
6
- export declare function normalize(input: PriceAdjustmentScheduleRepresentation, existing: PriceAdjustmentScheduleRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PriceAdjustmentScheduleRepresentationNormalized;
7
- export declare const select: () => $64$luvio_engine_FragmentSelection;
8
- export declare function equals(existing: PriceAdjustmentScheduleRepresentationNormalized, incoming: PriceAdjustmentScheduleRepresentationNormalized): boolean;
9
- export declare function deepFreeze(input: PriceAdjustmentScheduleRepresentation): void;
10
- export declare const ingest: $64$luvio_engine_ResourceIngest;
11
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PriceAdjustmentScheduleRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
- /**
13
- * Representation for the details of a single price adjustment schedule
14
- *
15
- * Keys:
16
- * (none)
17
- */
18
- export interface PriceAdjustmentScheduleRepresentationNormalized {
19
- /** Represents the ID of the price adjustment schedule */
20
- id: string;
21
- /** Represents the list of price adjustment tiers */
22
- priceAdjustmentTiers: Array<PriceAdjustmentTierRepresentation_PriceAdjustmentTierRepresentation>;
23
- }
24
- /**
25
- * Representation for the details of a single price adjustment schedule
26
- *
27
- * Keys:
28
- * (none)
29
- */
30
- export interface PriceAdjustmentScheduleRepresentation {
31
- id: string;
32
- priceAdjustmentTiers: Array<PriceAdjustmentTierRepresentation_PriceAdjustmentTierRepresentation>;
33
- }
1
+ import { PriceAdjustmentTierRepresentation as PriceAdjustmentTierRepresentation_PriceAdjustmentTierRepresentation } from './PriceAdjustmentTierRepresentation';
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 = "1d3675bd094b43c389f8a51aa4d2c254";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: PriceAdjustmentScheduleRepresentation, existing: PriceAdjustmentScheduleRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PriceAdjustmentScheduleRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: PriceAdjustmentScheduleRepresentationNormalized, incoming: PriceAdjustmentScheduleRepresentationNormalized): boolean;
9
+ export declare function deepFreeze(input: PriceAdjustmentScheduleRepresentation): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PriceAdjustmentScheduleRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * Representation for the details of a single price adjustment schedule
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface PriceAdjustmentScheduleRepresentationNormalized {
19
+ /** Represents the ID of the price adjustment schedule */
20
+ id: string;
21
+ /** Represents the list of price adjustment tiers */
22
+ priceAdjustmentTiers: Array<PriceAdjustmentTierRepresentation_PriceAdjustmentTierRepresentation>;
23
+ }
24
+ /**
25
+ * Representation for the details of a single price adjustment schedule
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface PriceAdjustmentScheduleRepresentation {
31
+ id: string;
32
+ priceAdjustmentTiers: Array<PriceAdjustmentTierRepresentation_PriceAdjustmentTierRepresentation>;
33
+ }
@@ -1,44 +1,44 @@
1
- import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
- export declare const VERSION = "5fc4a2b617d0a5a863b35e2080aa462e";
3
- export declare function validate(obj: any, path?: string): TypeError | null;
4
- export declare const RepresentationType: string;
5
- export declare function normalize(input: PriceAdjustmentTierRepresentation, existing: PriceAdjustmentTierRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PriceAdjustmentTierRepresentationNormalized;
6
- export declare const select: () => $64$luvio_engine_FragmentSelection;
7
- export declare function equals(existing: PriceAdjustmentTierRepresentationNormalized, incoming: PriceAdjustmentTierRepresentationNormalized): boolean;
8
- export declare function deepFreeze(input: PriceAdjustmentTierRepresentation): void;
9
- export declare const ingest: $64$luvio_engine_ResourceIngest;
10
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PriceAdjustmentTierRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
- /**
12
- * Representation for the details of a single price adjustment tier
13
- *
14
- * Keys:
15
- * (none)
16
- */
17
- export interface PriceAdjustmentTierRepresentationNormalized {
18
- /** Represents the price adjustment type */
19
- adjustmentType: string;
20
- /** Represents the adjustment value */
21
- adjustmentValue: string;
22
- /** Represents the ID of the price adjustment tier */
23
- id: string;
24
- /** Represents the lower bound of the tier */
25
- lowerBound: string;
26
- /** Represents the unit price of the tier */
27
- tierUnitPrice: string;
28
- /** Represents the upper bound of the tier */
29
- upperBound: string;
30
- }
31
- /**
32
- * Representation for the details of a single price adjustment tier
33
- *
34
- * Keys:
35
- * (none)
36
- */
37
- export interface PriceAdjustmentTierRepresentation {
38
- adjustmentType: string;
39
- adjustmentValue: string;
40
- id: string;
41
- lowerBound: string;
42
- tierUnitPrice: string;
43
- upperBound: string;
44
- }
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ export declare const VERSION = "5fc4a2b617d0a5a863b35e2080aa462e";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: PriceAdjustmentTierRepresentation, existing: PriceAdjustmentTierRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PriceAdjustmentTierRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: PriceAdjustmentTierRepresentationNormalized, incoming: PriceAdjustmentTierRepresentationNormalized): boolean;
8
+ export declare function deepFreeze(input: PriceAdjustmentTierRepresentation): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PriceAdjustmentTierRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * Representation for the details of a single price adjustment tier
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface PriceAdjustmentTierRepresentationNormalized {
18
+ /** Represents the price adjustment type */
19
+ adjustmentType: string;
20
+ /** Represents the adjustment value */
21
+ adjustmentValue: string;
22
+ /** Represents the ID of the price adjustment tier */
23
+ id: string;
24
+ /** Represents the lower bound of the tier */
25
+ lowerBound: string;
26
+ /** Represents the unit price of the tier */
27
+ tierUnitPrice: string;
28
+ /** Represents the upper bound of the tier */
29
+ upperBound: string;
30
+ }
31
+ /**
32
+ * Representation for the details of a single price adjustment tier
33
+ *
34
+ * Keys:
35
+ * (none)
36
+ */
37
+ export interface PriceAdjustmentTierRepresentation {
38
+ adjustmentType: string;
39
+ adjustmentValue: string;
40
+ id: string;
41
+ lowerBound: string;
42
+ tierUnitPrice: string;
43
+ upperBound: string;
44
+ }
@@ -1,29 +1,29 @@
1
- import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
- export declare const VERSION = "ca867b31f0be284e39d63e54c0108475";
3
- export declare function validate(obj: any, path?: string): TypeError | null;
4
- export declare const RepresentationType: string;
5
- export declare function normalize(input: PricingInputRepresentation, existing: PricingInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PricingInputRepresentationNormalized;
6
- export declare const select: () => $64$luvio_engine_FragmentSelection;
7
- export declare function equals(existing: PricingInputRepresentationNormalized, incoming: PricingInputRepresentationNormalized): boolean;
8
- export declare function deepFreeze(input: PricingInputRepresentation): void;
9
- export declare const ingest: $64$luvio_engine_ResourceIngest;
10
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PricingInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
- /**
12
- * Representation of the request for multiple products pricing
13
- *
14
- * Keys:
15
- * (none)
16
- */
17
- export interface PricingInputRepresentationNormalized {
18
- /** The Line Items the pricing request is for */
19
- pricingLineItems: Array<{}>;
20
- }
21
- /**
22
- * Representation of the request for multiple products pricing
23
- *
24
- * Keys:
25
- * (none)
26
- */
27
- export interface PricingInputRepresentation {
28
- pricingLineItems: Array<{}>;
29
- }
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ export declare const VERSION = "ca867b31f0be284e39d63e54c0108475";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: PricingInputRepresentation, existing: PricingInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PricingInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: PricingInputRepresentationNormalized, incoming: PricingInputRepresentationNormalized): boolean;
8
+ export declare function deepFreeze(input: PricingInputRepresentation): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PricingInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * Representation of the request for multiple products pricing
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface PricingInputRepresentationNormalized {
18
+ /** The Line Items the pricing request is for */
19
+ pricingLineItems: Array<{}>;
20
+ }
21
+ /**
22
+ * Representation of the request for multiple products pricing
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface PricingInputRepresentation {
28
+ pricingLineItems: Array<{}>;
29
+ }
@@ -1,29 +1,29 @@
1
- import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
- export declare const VERSION = "4b4dc90d94aa335689190eeb37d012a3";
3
- export declare function validate(obj: any, path?: string): TypeError | null;
4
- export declare const RepresentationType: string;
5
- export declare function normalize(input: PricingLineItemInputRepresentation, existing: PricingLineItemInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PricingLineItemInputRepresentationNormalized;
6
- export declare const select: () => $64$luvio_engine_FragmentSelection;
7
- export declare function equals(existing: PricingLineItemInputRepresentationNormalized, incoming: PricingLineItemInputRepresentationNormalized): boolean;
8
- export declare function deepFreeze(input: PricingLineItemInputRepresentation): void;
9
- export declare const ingest: $64$luvio_engine_ResourceIngest;
10
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PricingLineItemInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
- /**
12
- * Representation of the Line Item portion the request for multiple products pricing
13
- *
14
- * Keys:
15
- * (none)
16
- */
17
- export interface PricingLineItemInputRepresentationNormalized {
18
- /** The product ID to be priced in the request */
19
- productId: string;
20
- }
21
- /**
22
- * Representation of the Line Item portion the request for multiple products pricing
23
- *
24
- * Keys:
25
- * (none)
26
- */
27
- export interface PricingLineItemInputRepresentation {
28
- productId: string;
29
- }
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ export declare const VERSION = "4b4dc90d94aa335689190eeb37d012a3";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: PricingLineItemInputRepresentation, existing: PricingLineItemInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PricingLineItemInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: PricingLineItemInputRepresentationNormalized, incoming: PricingLineItemInputRepresentationNormalized): boolean;
8
+ export declare function deepFreeze(input: PricingLineItemInputRepresentation): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PricingLineItemInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * Representation of the Line Item portion the request for multiple products pricing
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface PricingLineItemInputRepresentationNormalized {
18
+ /** The product ID to be priced in the request */
19
+ productId: string;
20
+ }
21
+ /**
22
+ * Representation of the Line Item portion the request for multiple products pricing
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface PricingLineItemInputRepresentation {
28
+ productId: string;
29
+ }