@salesforce/lds-adapters-revenue-billing-batch 0.131.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.
- package/LICENSE.txt +82 -0
- package/dist/es/es2018/revenue-billing-batch.js +632 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +66 -0
- package/dist/es/es2018/types/src/generated/adapters/createInvoicesBatchScheduler.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/adapters/createPaymentsBatchScheduler.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/postCommerceInvoicingInvoiceSchedulers.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/resources/postCommercePaymentsPaymentSchedulers.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/types/BatchFilterCriteriaInputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/BatchInvoiceSchedulerInputRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/BatchInvoiceSchedulerInputWrapperRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/BillingBatchSchedulerRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/InvoicesBatchSchedulerOutputRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/PaymentRunBatchFilterCriteriaInputRepresentation.d.ts +33 -0
- package/dist/es/es2018/types/src/generated/types/PaymentRunBatchFilterCriteriaInputRepresentations.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/PaymentsBatchSchedulerInputRepresentation.d.ts +33 -0
- package/dist/es/es2018/types/src/generated/types/PaymentsBatchSchedulerInputWrapperRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/PaymentsBatchSchedulerOutputRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/ScheduleOptionsInputRepresentation.d.ts +47 -0
- package/dist/es/es2018/types/src/generated/types/ScheduleOptionsInputRepresentationForInvoice.d.ts +50 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +39 -0
- package/package.json +65 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +662 -0
- package/src/raml/api.raml +233 -0
- package/src/raml/luvio.raml +322 -0
|
@@ -0,0 +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 = "BillingBatch";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { BatchInvoiceSchedulerInputRepresentation as types_BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation } from '../types/BatchInvoiceSchedulerInputRepresentation';
|
|
3
|
+
import { ResourceRequestConfig as resources_postCommerceInvoicingInvoiceSchedulers_ResourceRequestConfig } from '../resources/postCommerceInvoicingInvoiceSchedulers';
|
|
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 { InvoicesBatchSchedulerOutputRepresentation as types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation } from '../types/InvoicesBatchSchedulerOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "createInvoicesBatchScheduler";
|
|
7
|
+
export declare const createInvoicesBatchScheduler_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface CreateInvoicesBatchSchedulerConfig {
|
|
9
|
+
BatchInvoiceSchedulerInput: types_BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation;
|
|
10
|
+
}
|
|
11
|
+
export declare function createResourceParams(config: CreateInvoicesBatchSchedulerConfig): resources_postCommerceInvoicingInvoiceSchedulers_ResourceRequestConfig;
|
|
12
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateInvoicesBatchSchedulerConfig>): adapter$45$utils_Untrusted<CreateInvoicesBatchSchedulerConfig>;
|
|
13
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateInvoicesBatchSchedulerConfig | null;
|
|
14
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateInvoicesBatchSchedulerConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation, any>>;
|
|
15
|
+
export declare const createInvoicesBatchSchedulerAdapterFactory: $64$luvio_engine_AdapterFactory<CreateInvoicesBatchSchedulerConfig, types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { PaymentsBatchSchedulerInputRepresentation as types_PaymentsBatchSchedulerInputRepresentation_PaymentsBatchSchedulerInputRepresentation } from '../types/PaymentsBatchSchedulerInputRepresentation';
|
|
3
|
+
import { ResourceRequestConfig as resources_postCommercePaymentsPaymentSchedulers_ResourceRequestConfig } from '../resources/postCommercePaymentsPaymentSchedulers';
|
|
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 { PaymentsBatchSchedulerOutputRepresentation as types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation } from '../types/PaymentsBatchSchedulerOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "createPaymentsBatchScheduler";
|
|
7
|
+
export declare const createPaymentsBatchScheduler_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface CreatePaymentsBatchSchedulerConfig {
|
|
9
|
+
PaymentsBatchSchedulerInput: types_PaymentsBatchSchedulerInputRepresentation_PaymentsBatchSchedulerInputRepresentation;
|
|
10
|
+
}
|
|
11
|
+
export declare function createResourceParams(config: CreatePaymentsBatchSchedulerConfig): resources_postCommercePaymentsPaymentSchedulers_ResourceRequestConfig;
|
|
12
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreatePaymentsBatchSchedulerConfig>): adapter$45$utils_Untrusted<CreatePaymentsBatchSchedulerConfig>;
|
|
13
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreatePaymentsBatchSchedulerConfig | null;
|
|
14
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreatePaymentsBatchSchedulerConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation, any>>;
|
|
15
|
+
export declare const createPaymentsBatchSchedulerAdapterFactory: $64$luvio_engine_AdapterFactory<CreatePaymentsBatchSchedulerConfig, types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation>;
|
package/dist/es/es2018/types/src/generated/resources/postCommerceInvoicingInvoiceSchedulers.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BatchInvoiceSchedulerInputRepresentation as types_BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation } from '../types/BatchInvoiceSchedulerInputRepresentation';
|
|
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';
|
|
3
|
+
import { InvoicesBatchSchedulerOutputRepresentation as types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation } from '../types/InvoicesBatchSchedulerOutputRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
body: {
|
|
6
|
+
BatchInvoiceSchedulerInput: types_BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation, any>;
|
|
12
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
+
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/resources/postCommercePaymentsPaymentSchedulers.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PaymentsBatchSchedulerInputRepresentation as types_PaymentsBatchSchedulerInputRepresentation_PaymentsBatchSchedulerInputRepresentation } from '../types/PaymentsBatchSchedulerInputRepresentation';
|
|
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';
|
|
3
|
+
import { PaymentsBatchSchedulerOutputRepresentation as types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation } from '../types/PaymentsBatchSchedulerOutputRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
body: {
|
|
6
|
+
PaymentsBatchSchedulerInput: types_PaymentsBatchSchedulerInputRepresentation_PaymentsBatchSchedulerInputRepresentation;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation, any>;
|
|
12
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,35 @@
|
|
|
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 = "28e76bb93875e66ce10b645c10d0b2cd";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: BatchFilterCriteriaInputRepresentation, existing: BatchFilterCriteriaInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): BatchFilterCriteriaInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: BatchFilterCriteriaInputRepresentationNormalized, incoming: BatchFilterCriteriaInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: BatchFilterCriteriaInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: BatchFilterCriteriaInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Common elements of Billing Batch Filter Criteria Input Representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface BatchFilterCriteriaInputRepresentationNormalized {
|
|
18
|
+
/** Sequence number for the criteria */
|
|
19
|
+
criteriaSequence: number;
|
|
20
|
+
/** Operation to be performed */
|
|
21
|
+
operation: string;
|
|
22
|
+
/** Value to be compared */
|
|
23
|
+
value: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Common elements of Billing Batch Filter Criteria Input Representation
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface BatchFilterCriteriaInputRepresentation {
|
|
32
|
+
criteriaSequence: number;
|
|
33
|
+
operation: string;
|
|
34
|
+
value: string;
|
|
35
|
+
}
|
package/dist/es/es2018/types/src/generated/types/BatchInvoiceSchedulerInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ScheduleOptionsInputRepresentationForInvoice as ScheduleOptionsInputRepresentationForInvoice_ScheduleOptionsInputRepresentationForInvoice } from './ScheduleOptionsInputRepresentationForInvoice';
|
|
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 = "8e298dd5fcb348f840546bf0c3a1730f";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: BatchInvoiceSchedulerInputRepresentation, existing: BatchInvoiceSchedulerInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): BatchInvoiceSchedulerInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: BatchInvoiceSchedulerInputRepresentationNormalized, incoming: BatchInvoiceSchedulerInputRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: BatchInvoiceSchedulerInputRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: BatchInvoiceSchedulerInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Invoices Batch Scheduler Input Representation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface BatchInvoiceSchedulerInputRepresentationNormalized extends ScheduleOptionsInputRepresentationForInvoice_ScheduleOptionsInputRepresentationForInvoice {
|
|
19
|
+
/** List of filter criteria line items */
|
|
20
|
+
filterCriteria?: Array<{}>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Invoices Batch Scheduler Input Representation
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface BatchInvoiceSchedulerInputRepresentation extends ScheduleOptionsInputRepresentationForInvoice_ScheduleOptionsInputRepresentationForInvoice {
|
|
29
|
+
filterCriteria?: Array<{}>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { BatchInvoiceSchedulerInputRepresentation as BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation } from './BatchInvoiceSchedulerInputRepresentation';
|
|
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 = "0348d890ee57305d1ab268133fa6ae96";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: BatchInvoiceSchedulerInputWrapperRepresentation, existing: BatchInvoiceSchedulerInputWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): BatchInvoiceSchedulerInputWrapperRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: BatchInvoiceSchedulerInputWrapperRepresentationNormalized, incoming: BatchInvoiceSchedulerInputWrapperRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: BatchInvoiceSchedulerInputWrapperRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: BatchInvoiceSchedulerInputWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Wrapper for invoice batch scheduler input representation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface BatchInvoiceSchedulerInputWrapperRepresentationNormalized {
|
|
19
|
+
BatchInvoiceSchedulerInput: BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Wrapper for invoice batch scheduler input representation
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface BatchInvoiceSchedulerInputWrapperRepresentation {
|
|
28
|
+
BatchInvoiceSchedulerInput: BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "1214fcab35d82b91e646f8ca43e7f5de";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: BillingBatchSchedulerRepresentation, existing: BillingBatchSchedulerRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): BillingBatchSchedulerRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: BillingBatchSchedulerRepresentationNormalized, incoming: BillingBatchSchedulerRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: BillingBatchSchedulerRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: BillingBatchSchedulerRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Billing Batch Scheduler Output Representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface BillingBatchSchedulerRepresentationNormalized {
|
|
18
|
+
/** Billing Batch Scheduler Id */
|
|
19
|
+
id: string;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Billing Batch Scheduler Output Representation
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface BillingBatchSchedulerRepresentation {
|
|
28
|
+
id: string;
|
|
29
|
+
}
|
package/dist/es/es2018/types/src/generated/types/InvoicesBatchSchedulerOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { BillingBatchSchedulerRepresentation as BillingBatchSchedulerRepresentation_BillingBatchSchedulerRepresentation } from './BillingBatchSchedulerRepresentation';
|
|
2
|
+
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';
|
|
3
|
+
export declare const TTL = 1000;
|
|
4
|
+
export declare const VERSION = "15c358b0b4903143c526f63f4010b958";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
8
|
+
billingBatchSchedulerId: string;
|
|
9
|
+
}
|
|
10
|
+
export type InvoicesBatchSchedulerOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export type PartialInvoicesBatchSchedulerOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): InvoicesBatchSchedulerOutputRepresentationNormalizedKeyMetadata;
|
|
14
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: InvoicesBatchSchedulerOutputRepresentation): string;
|
|
15
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: InvoicesBatchSchedulerOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function normalize(input: InvoicesBatchSchedulerOutputRepresentation, existing: InvoicesBatchSchedulerOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InvoicesBatchSchedulerOutputRepresentationNormalized;
|
|
17
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
18
|
+
export declare function equals(existing: InvoicesBatchSchedulerOutputRepresentationNormalized, incoming: InvoicesBatchSchedulerOutputRepresentationNormalized): boolean;
|
|
19
|
+
export declare function deepFreeze(input: InvoicesBatchSchedulerOutputRepresentation): void;
|
|
20
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
21
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InvoicesBatchSchedulerOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
22
|
+
/**
|
|
23
|
+
* Invoices Batch Scheduler Output Representation
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* billingBatchSchedulerId (string): billingBatchScheduler.id
|
|
27
|
+
*/
|
|
28
|
+
export interface InvoicesBatchSchedulerOutputRepresentationNormalized {
|
|
29
|
+
/** Billing Batch Scheduler Details */
|
|
30
|
+
billingBatchScheduler: BillingBatchSchedulerRepresentation_BillingBatchSchedulerRepresentation;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Invoices Batch Scheduler Output Representation
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* billingBatchSchedulerId (string): billingBatchScheduler.id
|
|
37
|
+
*/
|
|
38
|
+
export interface InvoicesBatchSchedulerOutputRepresentation {
|
|
39
|
+
billingBatchScheduler: BillingBatchSchedulerRepresentation_BillingBatchSchedulerRepresentation;
|
|
40
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { BatchFilterCriteriaInputRepresentation as BatchFilterCriteriaInputRepresentation_BatchFilterCriteriaInputRepresentation } from './BatchFilterCriteriaInputRepresentation';
|
|
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 = "9dd460d458d4926b4103b2d7f8201add";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: PaymentRunBatchFilterCriteriaInputRepresentation, existing: PaymentRunBatchFilterCriteriaInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PaymentRunBatchFilterCriteriaInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: PaymentRunBatchFilterCriteriaInputRepresentationNormalized, incoming: PaymentRunBatchFilterCriteriaInputRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: PaymentRunBatchFilterCriteriaInputRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PaymentRunBatchFilterCriteriaInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Billing Batch Filter Criteria Input Representation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface PaymentRunBatchFilterCriteriaInputRepresentationNormalized extends BatchFilterCriteriaInputRepresentation_BatchFilterCriteriaInputRepresentation {
|
|
19
|
+
/** Field Name */
|
|
20
|
+
fieldName: string;
|
|
21
|
+
/** Object Name */
|
|
22
|
+
objectName: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Billing Batch Filter Criteria Input Representation
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface PaymentRunBatchFilterCriteriaInputRepresentation extends BatchFilterCriteriaInputRepresentation_BatchFilterCriteriaInputRepresentation {
|
|
31
|
+
fieldName: string;
|
|
32
|
+
objectName: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "fd696ee1e708b9d5ca442c6455824fab";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: PaymentRunBatchFilterCriteriaInputRepresentations, existing: PaymentRunBatchFilterCriteriaInputRepresentationsNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PaymentRunBatchFilterCriteriaInputRepresentationsNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: PaymentRunBatchFilterCriteriaInputRepresentationsNormalized, incoming: PaymentRunBatchFilterCriteriaInputRepresentationsNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: PaymentRunBatchFilterCriteriaInputRepresentations): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PaymentRunBatchFilterCriteriaInputRepresentations, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Batch Payments Filter Criteria Input Representations
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface PaymentRunBatchFilterCriteriaInputRepresentationsNormalized {
|
|
18
|
+
/** List of filter criteria line items */
|
|
19
|
+
filterCriteria: Array<{}>;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Batch Payments Filter Criteria Input Representations
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface PaymentRunBatchFilterCriteriaInputRepresentations {
|
|
28
|
+
filterCriteria: Array<{}>;
|
|
29
|
+
}
|
package/dist/es/es2018/types/src/generated/types/PaymentsBatchSchedulerInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ScheduleOptionsInputRepresentation as ScheduleOptionsInputRepresentation_ScheduleOptionsInputRepresentation } from './ScheduleOptionsInputRepresentation';
|
|
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 = "27ff1f74ba4040815f1f99a939767f6d";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: PaymentsBatchSchedulerInputRepresentation, existing: PaymentsBatchSchedulerInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PaymentsBatchSchedulerInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: PaymentsBatchSchedulerInputRepresentationNormalized, incoming: PaymentsBatchSchedulerInputRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: PaymentsBatchSchedulerInputRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PaymentsBatchSchedulerInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Payments Batch Scheduler Input Representation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface PaymentsBatchSchedulerInputRepresentationNormalized extends ScheduleOptionsInputRepresentation_ScheduleOptionsInputRepresentation {
|
|
19
|
+
/** Filter Criteria Match Type */
|
|
20
|
+
criteriaMatchType?: string;
|
|
21
|
+
/** List of filter criteria line items */
|
|
22
|
+
filterCriteria?: Array<{}>;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Payments Batch Scheduler Input Representation
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface PaymentsBatchSchedulerInputRepresentation extends ScheduleOptionsInputRepresentation_ScheduleOptionsInputRepresentation {
|
|
31
|
+
criteriaMatchType?: string;
|
|
32
|
+
filterCriteria?: Array<{}>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { PaymentsBatchSchedulerInputRepresentation as PaymentsBatchSchedulerInputRepresentation_PaymentsBatchSchedulerInputRepresentation } from './PaymentsBatchSchedulerInputRepresentation';
|
|
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 = "2cfff4f9fc8c4c2ea21d4f20fd5e3926";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: PaymentsBatchSchedulerInputWrapperRepresentation, existing: PaymentsBatchSchedulerInputWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PaymentsBatchSchedulerInputWrapperRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: PaymentsBatchSchedulerInputWrapperRepresentationNormalized, incoming: PaymentsBatchSchedulerInputWrapperRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: PaymentsBatchSchedulerInputWrapperRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PaymentsBatchSchedulerInputWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Wrapper for payment batch scheduler input representation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface PaymentsBatchSchedulerInputWrapperRepresentationNormalized {
|
|
19
|
+
PaymentsBatchSchedulerInput: PaymentsBatchSchedulerInputRepresentation_PaymentsBatchSchedulerInputRepresentation;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Wrapper for payment batch scheduler input representation
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface PaymentsBatchSchedulerInputWrapperRepresentation {
|
|
28
|
+
PaymentsBatchSchedulerInput: PaymentsBatchSchedulerInputRepresentation_PaymentsBatchSchedulerInputRepresentation;
|
|
29
|
+
}
|
package/dist/es/es2018/types/src/generated/types/PaymentsBatchSchedulerOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { BillingBatchSchedulerRepresentation as BillingBatchSchedulerRepresentation_BillingBatchSchedulerRepresentation } from './BillingBatchSchedulerRepresentation';
|
|
2
|
+
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';
|
|
3
|
+
export declare const TTL = 1000;
|
|
4
|
+
export declare const VERSION = "eff71edc32270b9a1e6e1779cb811c3c";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
8
|
+
billingBatchSchedulerId: string;
|
|
9
|
+
}
|
|
10
|
+
export type PaymentsBatchSchedulerOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export type PartialPaymentsBatchSchedulerOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): PaymentsBatchSchedulerOutputRepresentationNormalizedKeyMetadata;
|
|
14
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: PaymentsBatchSchedulerOutputRepresentation): string;
|
|
15
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: PaymentsBatchSchedulerOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function normalize(input: PaymentsBatchSchedulerOutputRepresentation, existing: PaymentsBatchSchedulerOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PaymentsBatchSchedulerOutputRepresentationNormalized;
|
|
17
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
18
|
+
export declare function equals(existing: PaymentsBatchSchedulerOutputRepresentationNormalized, incoming: PaymentsBatchSchedulerOutputRepresentationNormalized): boolean;
|
|
19
|
+
export declare function deepFreeze(input: PaymentsBatchSchedulerOutputRepresentation): void;
|
|
20
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
21
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: PaymentsBatchSchedulerOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
22
|
+
/**
|
|
23
|
+
* Payments Batch Scheduler Output Representation
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* billingBatchSchedulerId (string): billingBatchScheduler.id
|
|
27
|
+
*/
|
|
28
|
+
export interface PaymentsBatchSchedulerOutputRepresentationNormalized {
|
|
29
|
+
/** Billing Batch Scheduler Details */
|
|
30
|
+
billingBatchScheduler: BillingBatchSchedulerRepresentation_BillingBatchSchedulerRepresentation;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Payments Batch Scheduler Output Representation
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* billingBatchSchedulerId (string): billingBatchScheduler.id
|
|
37
|
+
*/
|
|
38
|
+
export interface PaymentsBatchSchedulerOutputRepresentation {
|
|
39
|
+
billingBatchScheduler: BillingBatchSchedulerRepresentation_BillingBatchSchedulerRepresentation;
|
|
40
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
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 = "a10fe041b690d426de338f34c02b11ef";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ScheduleOptionsInputRepresentation, existing: ScheduleOptionsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ScheduleOptionsInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ScheduleOptionsInputRepresentationNormalized, incoming: ScheduleOptionsInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ScheduleOptionsInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ScheduleOptionsInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Batch Scheduler Options Input Representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ScheduleOptionsInputRepresentationNormalized {
|
|
18
|
+
/** Batch Job End Date */
|
|
19
|
+
endDate?: string;
|
|
20
|
+
/** Frequency Cadence for the Batch Job */
|
|
21
|
+
frequencyCadence: string;
|
|
22
|
+
/** Batch Job Preferred Run Time */
|
|
23
|
+
preferredTime: string;
|
|
24
|
+
/** Batch Job Recurrence Day for Monthly Frequency Option */
|
|
25
|
+
recursEveryMonthOnDay?: string;
|
|
26
|
+
/** Name of the batch scheduler */
|
|
27
|
+
schedulerName: string;
|
|
28
|
+
/** Batch Job Start Date */
|
|
29
|
+
startDate: string;
|
|
30
|
+
/** Scheduler Status for the Batch Job */
|
|
31
|
+
status: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Batch Scheduler Options Input Representation
|
|
35
|
+
*
|
|
36
|
+
* Keys:
|
|
37
|
+
* (none)
|
|
38
|
+
*/
|
|
39
|
+
export interface ScheduleOptionsInputRepresentation {
|
|
40
|
+
endDate?: string;
|
|
41
|
+
frequencyCadence: string;
|
|
42
|
+
preferredTime: string;
|
|
43
|
+
recursEveryMonthOnDay?: string;
|
|
44
|
+
schedulerName: string;
|
|
45
|
+
startDate: string;
|
|
46
|
+
status: string;
|
|
47
|
+
}
|
package/dist/es/es2018/types/src/generated/types/ScheduleOptionsInputRepresentationForInvoice.d.ts
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
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 = "3f30aad1ac3ea77d5e8aa1ef3256d637";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ScheduleOptionsInputRepresentationForInvoice, existing: ScheduleOptionsInputRepresentationForInvoiceNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ScheduleOptionsInputRepresentationForInvoiceNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ScheduleOptionsInputRepresentationForInvoiceNormalized, incoming: ScheduleOptionsInputRepresentationForInvoiceNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ScheduleOptionsInputRepresentationForInvoice): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ScheduleOptionsInputRepresentationForInvoice, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Batch Scheduler Options Input Representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ScheduleOptionsInputRepresentationForInvoiceNormalized {
|
|
18
|
+
/** Batch Job End Date */
|
|
19
|
+
endDate?: string;
|
|
20
|
+
/** Frequency Cadence for the Batch Job */
|
|
21
|
+
frequencyCadence: string;
|
|
22
|
+
/** Frequency Cadence Options for Invoice Scheduler */
|
|
23
|
+
frequencyCadenceOptions: {};
|
|
24
|
+
/** Batch Job Preferred Run Time */
|
|
25
|
+
preferredTime: string;
|
|
26
|
+
/** Name of the batch scheduler */
|
|
27
|
+
schedulerName: string;
|
|
28
|
+
/** Batch Job Start Date */
|
|
29
|
+
startDate: string;
|
|
30
|
+
/** Scheduler Status for the Batch Job */
|
|
31
|
+
status: string;
|
|
32
|
+
/** Preferred Time Zone of the invoice Scheduler */
|
|
33
|
+
timezone: string;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Batch Scheduler Options Input Representation
|
|
37
|
+
*
|
|
38
|
+
* Keys:
|
|
39
|
+
* (none)
|
|
40
|
+
*/
|
|
41
|
+
export interface ScheduleOptionsInputRepresentationForInvoice {
|
|
42
|
+
endDate?: string;
|
|
43
|
+
frequencyCadence: string;
|
|
44
|
+
frequencyCadenceOptions: {};
|
|
45
|
+
preferredTime: string;
|
|
46
|
+
schedulerName: string;
|
|
47
|
+
startDate: string;
|
|
48
|
+
status: string;
|
|
49
|
+
timezone: string;
|
|
50
|
+
}
|