@salesforce/lds-adapters-revenue-billing-batch 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.
- package/dist/es/es2018/revenue-billing-batch.js +597 -597
- package/dist/{types → es/es2018/types}/src/generated/adapters/adapter-utils.d.ts +66 -66
- package/dist/{types → es/es2018/types}/src/generated/adapters/createInvoicesBatchScheduler.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/adapters/createPaymentsBatchScheduler.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/artifacts/main.d.ts +2 -2
- package/dist/{types → es/es2018/types}/src/generated/artifacts/sfdc.d.ts +3 -3
- package/dist/{types → es/es2018/types}/src/generated/resources/postCommerceInvoicingInvoiceSchedulers.d.ts +13 -13
- package/dist/{types → es/es2018/types}/src/generated/resources/postCommercePaymentsPaymentSchedulers.d.ts +13 -13
- package/dist/{types → es/es2018/types}/src/generated/types/BatchFilterCriteriaInputRepresentation.d.ts +35 -35
- package/dist/{types → es/es2018/types}/src/generated/types/BatchInvoiceSchedulerInputRepresentation.d.ts +30 -30
- package/dist/{types → es/es2018/types}/src/generated/types/BatchInvoiceSchedulerInputWrapperRepresentation.d.ts +29 -29
- package/dist/{types → es/es2018/types}/src/generated/types/BillingBatchSchedulerRepresentation.d.ts +29 -29
- package/dist/{types → es/es2018/types}/src/generated/types/InvoicesBatchSchedulerOutputRepresentation.d.ts +40 -40
- package/dist/{types → es/es2018/types}/src/generated/types/PaymentRunBatchFilterCriteriaInputRepresentation.d.ts +33 -33
- package/dist/{types → es/es2018/types}/src/generated/types/PaymentRunBatchFilterCriteriaInputRepresentations.d.ts +29 -29
- package/dist/{types → es/es2018/types}/src/generated/types/PaymentsBatchSchedulerInputRepresentation.d.ts +33 -33
- package/dist/{types → es/es2018/types}/src/generated/types/PaymentsBatchSchedulerInputWrapperRepresentation.d.ts +29 -29
- package/dist/{types → es/es2018/types}/src/generated/types/PaymentsBatchSchedulerOutputRepresentation.d.ts +40 -40
- package/dist/{types → es/es2018/types}/src/generated/types/ScheduleOptionsInputRepresentation.d.ts +47 -47
- package/dist/{types → es/es2018/types}/src/generated/types/ScheduleOptionsInputRepresentationForInvoice.d.ts +50 -50
- package/dist/{types → es/es2018/types}/src/generated/types/type-utils.d.ts +39 -39
- package/package.json +5 -5
- package/sfdc/index.d.ts +1 -1
- package/sfdc/index.js +616 -616
- package/dist/umd/es2018/revenue-billing-batch.js +0 -641
- package/dist/umd/es5/revenue-billing-batch.js +0 -648
|
@@ -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 = "BillingBatch";
|
|
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";
|
package/dist/{types → es/es2018/types}/src/generated/adapters/createInvoicesBatchScheduler.d.ts
RENAMED
|
@@ -1,15 +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>;
|
|
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>;
|
package/dist/{types → es/es2018/types}/src/generated/adapters/createPaymentsBatchScheduler.d.ts
RENAMED
|
@@ -1,15 +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>;
|
|
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>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { createPaymentsBatchSchedulerAdapterFactory } from '../adapters/createPaymentsBatchScheduler';
|
|
2
|
-
export { createInvoicesBatchSchedulerAdapterFactory } from '../adapters/createInvoicesBatchScheduler';
|
|
1
|
+
export { createPaymentsBatchSchedulerAdapterFactory } from '../adapters/createPaymentsBatchScheduler';
|
|
2
|
+
export { createInvoicesBatchSchedulerAdapterFactory } from '../adapters/createInvoicesBatchScheduler';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare let createInvoicesBatchScheduler: any;
|
|
2
|
-
declare let createPaymentsBatchScheduler: any;
|
|
3
|
-
export { createInvoicesBatchScheduler, createPaymentsBatchScheduler, };
|
|
1
|
+
declare let createInvoicesBatchScheduler: any;
|
|
2
|
+
declare let createPaymentsBatchScheduler: any;
|
|
3
|
+
export { createInvoicesBatchScheduler, createPaymentsBatchScheduler, };
|
|
@@ -1,13 +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;
|
|
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;
|
|
@@ -1,13 +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;
|
|
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;
|
|
@@ -1,35 +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
|
-
}
|
|
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
|
+
}
|
|
@@ -1,30 +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
|
-
}
|
|
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
|
+
}
|
|
@@ -1,29 +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
|
-
}
|
|
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
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/BillingBatchSchedulerRepresentation.d.ts
RENAMED
|
@@ -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 = "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
|
-
}
|
|
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
|
+
}
|