@salesforce/lds-adapters-revenue-billing-batch 0.1.0-dev1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +82 -0
- package/dist/es/es2018/revenue-billing-batch.js +1737 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/adapters/batchInvoiceRunRecovery.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/adapters/createInvoicesBatchScheduler.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/adapters/createPaymentsBatchScheduler.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/adapters/editInvoicesBatchScheduler.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/adapters/postBatchDraftInvoices.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/postBatchInvoiceDocGen.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/adapters/postCronExecutionDates.d.ts +20 -0
- package/dist/es/es2018/types/src/generated/adapters/updateInvoicesBatchScheduler.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +8 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +10 -0
- package/dist/es/es2018/types/src/generated/resources/patchCommerceInvoicingInvoiceSchedulersByBillingBatchSchedulerId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/postCommerceBillingInvoicesInvoiceBatchDocgenActionsByInvoiceBatchRunIdAndActionName.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/resources/postCommerceInvoicingInvoiceBatchRunsActionsDraftToPostedByInvoiceBatchRunId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/postCommerceInvoicingInvoiceBatchRunsActionsRecoverByInvoiceBatchRunId.d.ts +12 -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/resources/postConnectBillingBatchCronExecutionDates.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/resources/putCommerceInvoicingInvoiceSchedulersByBillingBatchSchedulerId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/types/BatchFilterCriteriaInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/BatchInvoiceDocGenErrorRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/BatchInvoiceDocGenOutputRepresentation.d.ts +45 -0
- package/dist/es/es2018/types/src/generated/types/BatchInvoiceSchedulerInputRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/BatchInvoiceSchedulerInputWrapperRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/BatchInvoiceSchedulerUpdateInputRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/BatchInvoiceSchedulerUpdateInputWrapperRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/BatchInvoiceSchedulerUpdateOutputRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/BillingBatchSchedulerRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/CronExecutionDatesInputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/CronExecutionDatesOutputRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/InvoiceBatchDraftToPostedInputRepresentation.d.ts +25 -0
- package/dist/es/es2018/types/src/generated/types/InvoiceBatchDraftToPostedOutputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/InvoiceBatchRunRecoveryOutputRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/InvoicesBatchSchedulerOutputRepresentation.d.ts +39 -0
- package/dist/es/es2018/types/src/generated/types/PaymentRunBatchFilterCriteriaInputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/PaymentRunBatchFilterCriteriaInputRepresentations.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/PaymentsBatchSchedulerInputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/PaymentsBatchSchedulerInputWrapperRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/PaymentsBatchSchedulerOutputRepresentation.d.ts +39 -0
- package/dist/es/es2018/types/src/generated/types/ScheduleOptionsInputRepresentation.d.ts +46 -0
- package/dist/es/es2018/types/src/generated/types/ScheduleOptionsInputRepresentationForInvoice.d.ts +49 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
- package/package.json +72 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +1799 -0
- package/src/raml/api.raml +447 -0
- package/src/raml/luvio.raml +664 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot, AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
3
|
+
declare const ObjectKeys: {
|
|
4
|
+
(o: object): string[];
|
|
5
|
+
(o: {}): string[];
|
|
6
|
+
}, ObjectCreate: {
|
|
7
|
+
(o: object | null): any;
|
|
8
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
9
|
+
};
|
|
10
|
+
export { ObjectCreate, ObjectKeys };
|
|
11
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
12
|
+
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
13
|
+
export interface AdapterValidationConfig {
|
|
14
|
+
displayName: string;
|
|
15
|
+
parameters: {
|
|
16
|
+
required: string[];
|
|
17
|
+
optional: string[];
|
|
18
|
+
unsupported?: string[];
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Validates an adapter config is well-formed.
|
|
23
|
+
* @param config The config to validate.
|
|
24
|
+
* @param adapter The adapter validation configuration.
|
|
25
|
+
* @param oneOf The keys the config must contain at least one of.
|
|
26
|
+
* @throws A TypeError if config doesn't satisfy the adapter's config validation.
|
|
27
|
+
*/
|
|
28
|
+
export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
|
|
29
|
+
export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
|
|
30
|
+
export type UncoercedConfiguration<Base, Options extends {
|
|
31
|
+
[key in keyof Base]?: any;
|
|
32
|
+
}> = {
|
|
33
|
+
[Key in keyof Base]?: Base[Key] | Options[Key];
|
|
34
|
+
};
|
|
35
|
+
export type Untrusted<Base> = Partial<Base>;
|
|
36
|
+
export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
|
|
37
|
+
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>;
|
|
38
|
+
export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
|
|
39
|
+
export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
|
|
40
|
+
export declare const snapshotRefreshOptions: {
|
|
41
|
+
overrides: {
|
|
42
|
+
headers: {
|
|
43
|
+
'Cache-Control': string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
|
|
49
|
+
* This is needed because insertion order for JSON.stringify(object) affects output:
|
|
50
|
+
* JSON.stringify({a: 1, b: 2})
|
|
51
|
+
* "{"a":1,"b":2}"
|
|
52
|
+
* JSON.stringify({b: 2, a: 1})
|
|
53
|
+
* "{"b":2,"a":1}"
|
|
54
|
+
* @param data Data to be JSON-stringified.
|
|
55
|
+
* @returns JSON.stringified value with consistent ordering of keys.
|
|
56
|
+
*/
|
|
57
|
+
export declare function stableJSONStringify(node: any): string | undefined;
|
|
58
|
+
export declare function getFetchResponseStatusText(status: number): string;
|
|
59
|
+
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
60
|
+
export declare function generateParamConfigMetadata(name: string, required: boolean, resourceType: $64$luvio_engine_AdapterConfigMetadata['resourceType'], typeCheckShape: $64$luvio_engine_AdapterConfigMetadata['typeCheckShape'], isArrayShape?: boolean, coerceFn?: (v: unknown) => unknown): $64$luvio_engine_AdapterConfigMetadata;
|
|
61
|
+
export declare function buildAdapterValidationConfig(displayName: string, paramsMeta: $64$luvio_engine_AdapterConfigMetadata[]): AdapterValidationConfig;
|
|
62
|
+
export declare const keyPrefix = "BillingBatch";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_postCommerceInvoicingInvoiceBatchRunsActionsRecoverByInvoiceBatchRunId_ResourceRequestConfig } from '../resources/postCommerceInvoicingInvoiceBatchRunsActionsRecoverByInvoiceBatchRunId';
|
|
4
|
+
import { InvoiceBatchRunRecoveryOutputRepresentation as types_InvoiceBatchRunRecoveryOutputRepresentation_InvoiceBatchRunRecoveryOutputRepresentation } from '../types/InvoiceBatchRunRecoveryOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "batchInvoiceRunRecovery";
|
|
6
|
+
export declare const batchInvoiceRunRecovery_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const batchInvoiceRunRecovery_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface BatchInvoiceRunRecoveryConfig {
|
|
9
|
+
invoiceBatchRunId: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: BatchInvoiceRunRecoveryConfig) => resources_postCommerceInvoicingInvoiceBatchRunsActionsRecoverByInvoiceBatchRunId_ResourceRequestConfig;
|
|
12
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<BatchInvoiceRunRecoveryConfig>): adapter$45$utils_Untrusted<BatchInvoiceRunRecoveryConfig>;
|
|
13
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): BatchInvoiceRunRecoveryConfig | null;
|
|
14
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: BatchInvoiceRunRecoveryConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_InvoiceBatchRunRecoveryOutputRepresentation_InvoiceBatchRunRecoveryOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_InvoiceBatchRunRecoveryOutputRepresentation_InvoiceBatchRunRecoveryOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_InvoiceBatchRunRecoveryOutputRepresentation_InvoiceBatchRunRecoveryOutputRepresentation, any>>;
|
|
15
|
+
export declare const batchInvoiceRunRecoveryAdapterFactory: $64$luvio_engine_AdapterFactory<BatchInvoiceRunRecoveryConfig, types_InvoiceBatchRunRecoveryOutputRepresentation_InvoiceBatchRunRecoveryOutputRepresentation>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { BatchInvoiceSchedulerInputRepresentation as types_BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation } from '../types/BatchInvoiceSchedulerInputRepresentation';
|
|
4
|
+
import { ResourceRequestConfig as resources_postCommerceInvoicingInvoiceSchedulers_ResourceRequestConfig } from '../resources/postCommerceInvoicingInvoiceSchedulers';
|
|
5
|
+
import { InvoicesBatchSchedulerOutputRepresentation as types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation } from '../types/InvoicesBatchSchedulerOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "createInvoicesBatchScheduler";
|
|
7
|
+
export declare const createInvoicesBatchScheduler_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
8
|
+
export declare const createInvoicesBatchScheduler_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
9
|
+
export interface CreateInvoicesBatchSchedulerConfig {
|
|
10
|
+
BatchInvoiceSchedulerInput: types_BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: CreateInvoicesBatchSchedulerConfig) => resources_postCommerceInvoicingInvoiceSchedulers_ResourceRequestConfig;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateInvoicesBatchSchedulerConfig>): adapter$45$utils_Untrusted<CreateInvoicesBatchSchedulerConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateInvoicesBatchSchedulerConfig | null;
|
|
15
|
+
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>>;
|
|
16
|
+
export declare const createInvoicesBatchSchedulerAdapterFactory: $64$luvio_engine_AdapterFactory<CreateInvoicesBatchSchedulerConfig, types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { PaymentsBatchSchedulerInputRepresentation as types_PaymentsBatchSchedulerInputRepresentation_PaymentsBatchSchedulerInputRepresentation } from '../types/PaymentsBatchSchedulerInputRepresentation';
|
|
4
|
+
import { ResourceRequestConfig as resources_postCommercePaymentsPaymentSchedulers_ResourceRequestConfig } from '../resources/postCommercePaymentsPaymentSchedulers';
|
|
5
|
+
import { PaymentsBatchSchedulerOutputRepresentation as types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation } from '../types/PaymentsBatchSchedulerOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "createPaymentsBatchScheduler";
|
|
7
|
+
export declare const createPaymentsBatchScheduler_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
8
|
+
export declare const createPaymentsBatchScheduler_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
9
|
+
export interface CreatePaymentsBatchSchedulerConfig {
|
|
10
|
+
PaymentsBatchSchedulerInput: types_PaymentsBatchSchedulerInputRepresentation_PaymentsBatchSchedulerInputRepresentation;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: CreatePaymentsBatchSchedulerConfig) => resources_postCommercePaymentsPaymentSchedulers_ResourceRequestConfig;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreatePaymentsBatchSchedulerConfig>): adapter$45$utils_Untrusted<CreatePaymentsBatchSchedulerConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreatePaymentsBatchSchedulerConfig | null;
|
|
15
|
+
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>>;
|
|
16
|
+
export declare const createPaymentsBatchSchedulerAdapterFactory: $64$luvio_engine_AdapterFactory<CreatePaymentsBatchSchedulerConfig, types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { BatchInvoiceSchedulerInputRepresentation as types_BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation } from '../types/BatchInvoiceSchedulerInputRepresentation';
|
|
4
|
+
import { ResourceRequestConfig as resources_putCommerceInvoicingInvoiceSchedulersByBillingBatchSchedulerId_ResourceRequestConfig } from '../resources/putCommerceInvoicingInvoiceSchedulersByBillingBatchSchedulerId';
|
|
5
|
+
import { InvoicesBatchSchedulerOutputRepresentation as types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation } from '../types/InvoicesBatchSchedulerOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "editInvoicesBatchScheduler";
|
|
7
|
+
export declare const editInvoicesBatchScheduler_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
8
|
+
export declare const editInvoicesBatchScheduler_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
9
|
+
export interface EditInvoicesBatchSchedulerConfig {
|
|
10
|
+
billingBatchSchedulerId: string;
|
|
11
|
+
BatchInvoiceSchedulerInput: types_BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation;
|
|
12
|
+
}
|
|
13
|
+
export declare const createResourceParams: (config: EditInvoicesBatchSchedulerConfig) => resources_putCommerceInvoicingInvoiceSchedulersByBillingBatchSchedulerId_ResourceRequestConfig;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<EditInvoicesBatchSchedulerConfig>): adapter$45$utils_Untrusted<EditInvoicesBatchSchedulerConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): EditInvoicesBatchSchedulerConfig | null;
|
|
16
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: EditInvoicesBatchSchedulerConfig, 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>>;
|
|
17
|
+
export declare const editInvoicesBatchSchedulerAdapterFactory: $64$luvio_engine_AdapterFactory<EditInvoicesBatchSchedulerConfig, types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_postCommerceInvoicingInvoiceBatchRunsActionsDraftToPostedByInvoiceBatchRunId_ResourceRequestConfig } from '../resources/postCommerceInvoicingInvoiceBatchRunsActionsDraftToPostedByInvoiceBatchRunId';
|
|
4
|
+
import { InvoiceBatchDraftToPostedOutputRepresentation as types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation } from '../types/InvoiceBatchDraftToPostedOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "postBatchDraftInvoices";
|
|
6
|
+
export declare const postBatchDraftInvoices_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const postBatchDraftInvoices_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface PostBatchDraftInvoicesConfig {
|
|
9
|
+
invoiceBatchRunId: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: PostBatchDraftInvoicesConfig) => resources_postCommerceInvoicingInvoiceBatchRunsActionsDraftToPostedByInvoiceBatchRunId_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: PostBatchDraftInvoicesConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: PostBatchDraftInvoicesConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<PostBatchDraftInvoicesConfig>): adapter$45$utils_Untrusted<PostBatchDraftInvoicesConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): PostBatchDraftInvoicesConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: PostBatchDraftInvoicesConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: PostBatchDraftInvoicesConfig): $64$luvio_engine_Snapshot<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: PostBatchDraftInvoicesConfig, resourceParams: resources_postCommerceInvoicingInvoiceBatchRunsActionsDraftToPostedByInvoiceBatchRunId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: PostBatchDraftInvoicesConfig, resourceParams: resources_postCommerceInvoicingInvoiceBatchRunsActionsDraftToPostedByInvoiceBatchRunId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: PostBatchDraftInvoicesConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: PostBatchDraftInvoicesConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation>): $64$luvio_engine_Snapshot<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation, any>;
|
|
27
|
+
export declare const postBatchDraftInvoicesAdapterFactory: $64$luvio_engine_AdapterFactory<PostBatchDraftInvoicesConfig, types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_postCommerceBillingInvoicesInvoiceBatchDocgenActionsByInvoiceBatchRunIdAndActionName_ResourceRequestConfig } from '../resources/postCommerceBillingInvoicesInvoiceBatchDocgenActionsByInvoiceBatchRunIdAndActionName';
|
|
4
|
+
import { BatchInvoiceDocGenOutputRepresentation as types_BatchInvoiceDocGenOutputRepresentation_BatchInvoiceDocGenOutputRepresentation } from '../types/BatchInvoiceDocGenOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "postBatchInvoiceDocGen";
|
|
6
|
+
export declare const postBatchInvoiceDocGen_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const postBatchInvoiceDocGen_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface PostBatchInvoiceDocGenConfig {
|
|
9
|
+
invoiceBatchRunId: string;
|
|
10
|
+
actionName: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: PostBatchInvoiceDocGenConfig) => resources_postCommerceBillingInvoicesInvoiceBatchDocgenActionsByInvoiceBatchRunIdAndActionName_ResourceRequestConfig;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<PostBatchInvoiceDocGenConfig>): adapter$45$utils_Untrusted<PostBatchInvoiceDocGenConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): PostBatchInvoiceDocGenConfig | null;
|
|
15
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: PostBatchInvoiceDocGenConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_BatchInvoiceDocGenOutputRepresentation_BatchInvoiceDocGenOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_BatchInvoiceDocGenOutputRepresentation_BatchInvoiceDocGenOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_BatchInvoiceDocGenOutputRepresentation_BatchInvoiceDocGenOutputRepresentation, any>>;
|
|
16
|
+
export declare const postBatchInvoiceDocGenAdapterFactory: $64$luvio_engine_AdapterFactory<PostBatchInvoiceDocGenConfig, types_BatchInvoiceDocGenOutputRepresentation_BatchInvoiceDocGenOutputRepresentation>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_postConnectBillingBatchCronExecutionDates_ResourceRequestConfig } from '../resources/postConnectBillingBatchCronExecutionDates';
|
|
4
|
+
import { CronExecutionDatesOutputRepresentation as types_CronExecutionDatesOutputRepresentation_CronExecutionDatesOutputRepresentation } from '../types/CronExecutionDatesOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "postCronExecutionDates";
|
|
6
|
+
export declare const postCronExecutionDates_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const postCronExecutionDates_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface PostCronExecutionDatesConfig {
|
|
9
|
+
numberOfNextExecutionDates: number;
|
|
10
|
+
startDate: string;
|
|
11
|
+
timezone: string;
|
|
12
|
+
frequencyCadenceOptions: unknown;
|
|
13
|
+
frequencyCadence: string;
|
|
14
|
+
preferredTime: string;
|
|
15
|
+
}
|
|
16
|
+
export declare const createResourceParams: (config: PostCronExecutionDatesConfig) => resources_postConnectBillingBatchCronExecutionDates_ResourceRequestConfig;
|
|
17
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<PostCronExecutionDatesConfig>): adapter$45$utils_Untrusted<PostCronExecutionDatesConfig>;
|
|
18
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): PostCronExecutionDatesConfig | null;
|
|
19
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: PostCronExecutionDatesConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_CronExecutionDatesOutputRepresentation_CronExecutionDatesOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CronExecutionDatesOutputRepresentation_CronExecutionDatesOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CronExecutionDatesOutputRepresentation_CronExecutionDatesOutputRepresentation, any>>;
|
|
20
|
+
export declare const postCronExecutionDatesAdapterFactory: $64$luvio_engine_AdapterFactory<PostCronExecutionDatesConfig, types_CronExecutionDatesOutputRepresentation_CronExecutionDatesOutputRepresentation>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { BatchInvoiceSchedulerUpdateInputRepresentation as types_BatchInvoiceSchedulerUpdateInputRepresentation_BatchInvoiceSchedulerUpdateInputRepresentation } from '../types/BatchInvoiceSchedulerUpdateInputRepresentation';
|
|
4
|
+
import { ResourceRequestConfig as resources_patchCommerceInvoicingInvoiceSchedulersByBillingBatchSchedulerId_ResourceRequestConfig } from '../resources/patchCommerceInvoicingInvoiceSchedulersByBillingBatchSchedulerId';
|
|
5
|
+
import { BatchInvoiceSchedulerUpdateOutputRepresentation as types_BatchInvoiceSchedulerUpdateOutputRepresentation_BatchInvoiceSchedulerUpdateOutputRepresentation } from '../types/BatchInvoiceSchedulerUpdateOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "updateInvoicesBatchScheduler";
|
|
7
|
+
export declare const updateInvoicesBatchScheduler_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
8
|
+
export declare const updateInvoicesBatchScheduler_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
9
|
+
export interface UpdateInvoicesBatchSchedulerConfig {
|
|
10
|
+
billingBatchSchedulerId: string;
|
|
11
|
+
BatchInvoiceSchedulerUpdateInput: types_BatchInvoiceSchedulerUpdateInputRepresentation_BatchInvoiceSchedulerUpdateInputRepresentation;
|
|
12
|
+
}
|
|
13
|
+
export declare const createResourceParams: (config: UpdateInvoicesBatchSchedulerConfig) => resources_patchCommerceInvoicingInvoiceSchedulersByBillingBatchSchedulerId_ResourceRequestConfig;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateInvoicesBatchSchedulerConfig>): adapter$45$utils_Untrusted<UpdateInvoicesBatchSchedulerConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): UpdateInvoicesBatchSchedulerConfig | null;
|
|
16
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: UpdateInvoicesBatchSchedulerConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_BatchInvoiceSchedulerUpdateOutputRepresentation_BatchInvoiceSchedulerUpdateOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_BatchInvoiceSchedulerUpdateOutputRepresentation_BatchInvoiceSchedulerUpdateOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_BatchInvoiceSchedulerUpdateOutputRepresentation_BatchInvoiceSchedulerUpdateOutputRepresentation, any>>;
|
|
17
|
+
export declare const updateInvoicesBatchSchedulerAdapterFactory: $64$luvio_engine_AdapterFactory<UpdateInvoicesBatchSchedulerConfig, types_BatchInvoiceSchedulerUpdateOutputRepresentation_BatchInvoiceSchedulerUpdateOutputRepresentation>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { createPaymentsBatchSchedulerAdapterFactory } from '../adapters/createPaymentsBatchScheduler';
|
|
2
|
+
export { createInvoicesBatchSchedulerAdapterFactory } from '../adapters/createInvoicesBatchScheduler';
|
|
3
|
+
export { editInvoicesBatchSchedulerAdapterFactory } from '../adapters/editInvoicesBatchScheduler';
|
|
4
|
+
export { updateInvoicesBatchSchedulerAdapterFactory } from '../adapters/updateInvoicesBatchScheduler';
|
|
5
|
+
export { postBatchDraftInvoicesAdapterFactory } from '../adapters/postBatchDraftInvoices';
|
|
6
|
+
export { batchInvoiceRunRecoveryAdapterFactory } from '../adapters/batchInvoiceRunRecovery';
|
|
7
|
+
export { postBatchInvoiceDocGenAdapterFactory } from '../adapters/postBatchInvoiceDocGen';
|
|
8
|
+
export { postCronExecutionDatesAdapterFactory } from '../adapters/postCronExecutionDates';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare let batchInvoiceRunRecovery: any;
|
|
2
|
+
declare let createInvoicesBatchScheduler: any;
|
|
3
|
+
declare let createPaymentsBatchScheduler: any;
|
|
4
|
+
declare let editInvoicesBatchScheduler: any;
|
|
5
|
+
declare let postBatchDraftInvoices: any;
|
|
6
|
+
declare let postBatchInvoiceDocGen: any;
|
|
7
|
+
declare let postCronExecutionDates: any;
|
|
8
|
+
declare let updateInvoicesBatchScheduler: any;
|
|
9
|
+
declare let postBatchDraftInvoices_imperative: any;
|
|
10
|
+
export { batchInvoiceRunRecovery, createInvoicesBatchScheduler, createPaymentsBatchScheduler, editInvoicesBatchScheduler, postBatchDraftInvoices, postBatchInvoiceDocGen, postCronExecutionDates, updateInvoicesBatchScheduler, postBatchDraftInvoices_imperative, };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { BatchInvoiceSchedulerUpdateInputRepresentation as types_BatchInvoiceSchedulerUpdateInputRepresentation_BatchInvoiceSchedulerUpdateInputRepresentation } from '../types/BatchInvoiceSchedulerUpdateInputRepresentation';
|
|
2
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, 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 { BatchInvoiceSchedulerUpdateOutputRepresentation as types_BatchInvoiceSchedulerUpdateOutputRepresentation_BatchInvoiceSchedulerUpdateOutputRepresentation } from '../types/BatchInvoiceSchedulerUpdateOutputRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
urlParams: {
|
|
6
|
+
billingBatchSchedulerId: string;
|
|
7
|
+
};
|
|
8
|
+
body: {
|
|
9
|
+
BatchInvoiceSchedulerUpdateInput: types_BatchInvoiceSchedulerUpdateInputRepresentation_BatchInvoiceSchedulerUpdateInputRepresentation;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
13
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_BatchInvoiceSchedulerUpdateOutputRepresentation_BatchInvoiceSchedulerUpdateOutputRepresentation): void;
|
|
14
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_BatchInvoiceSchedulerUpdateOutputRepresentation_BatchInvoiceSchedulerUpdateOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_BatchInvoiceSchedulerUpdateOutputRepresentation_BatchInvoiceSchedulerUpdateOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_BatchInvoiceSchedulerUpdateOutputRepresentation_BatchInvoiceSchedulerUpdateOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_BatchInvoiceSchedulerUpdateOutputRepresentation_BatchInvoiceSchedulerUpdateOutputRepresentation, any>;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { BatchInvoiceDocGenOutputRepresentation as types_BatchInvoiceDocGenOutputRepresentation_BatchInvoiceDocGenOutputRepresentation } from '../types/BatchInvoiceDocGenOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
invoiceBatchRunId: string;
|
|
6
|
+
actionName: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_BatchInvoiceDocGenOutputRepresentation_BatchInvoiceDocGenOutputRepresentation): void;
|
|
11
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_BatchInvoiceDocGenOutputRepresentation_BatchInvoiceDocGenOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_BatchInvoiceDocGenOutputRepresentation_BatchInvoiceDocGenOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_BatchInvoiceDocGenOutputRepresentation_BatchInvoiceDocGenOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_BatchInvoiceDocGenOutputRepresentation_BatchInvoiceDocGenOutputRepresentation, any>;
|
|
12
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { InvoiceBatchDraftToPostedOutputRepresentation as types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation } from '../types/InvoiceBatchDraftToPostedOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
invoiceBatchRunId: string;
|
|
6
|
+
};
|
|
7
|
+
body: {};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation): void;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation, any>;
|
|
14
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_InvoiceBatchDraftToPostedOutputRepresentation_InvoiceBatchDraftToPostedOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { InvoiceBatchRunRecoveryOutputRepresentation as types_InvoiceBatchRunRecoveryOutputRepresentation_InvoiceBatchRunRecoveryOutputRepresentation } from '../types/InvoiceBatchRunRecoveryOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
invoiceBatchRunId: string;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InvoiceBatchRunRecoveryOutputRepresentation_InvoiceBatchRunRecoveryOutputRepresentation): void;
|
|
10
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_InvoiceBatchRunRecoveryOutputRepresentation_InvoiceBatchRunRecoveryOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_InvoiceBatchRunRecoveryOutputRepresentation_InvoiceBatchRunRecoveryOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_InvoiceBatchRunRecoveryOutputRepresentation_InvoiceBatchRunRecoveryOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_InvoiceBatchRunRecoveryOutputRepresentation_InvoiceBatchRunRecoveryOutputRepresentation, any>;
|
|
11
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
12
|
+
export default createResourceRequest;
|
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, 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(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation): void;
|
|
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, 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(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_PaymentsBatchSchedulerOutputRepresentation_PaymentsBatchSchedulerOutputRepresentation): void;
|
|
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;
|
package/dist/es/es2018/types/src/generated/resources/postConnectBillingBatchCronExecutionDates.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { CronExecutionDatesOutputRepresentation as types_CronExecutionDatesOutputRepresentation_CronExecutionDatesOutputRepresentation } from '../types/CronExecutionDatesOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
body: {
|
|
5
|
+
numberOfNextExecutionDates: number;
|
|
6
|
+
startDate: string;
|
|
7
|
+
timezone: string;
|
|
8
|
+
frequencyCadenceOptions: unknown;
|
|
9
|
+
frequencyCadence: string;
|
|
10
|
+
preferredTime: string;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
14
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CronExecutionDatesOutputRepresentation_CronExecutionDatesOutputRepresentation): void;
|
|
15
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CronExecutionDatesOutputRepresentation_CronExecutionDatesOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CronExecutionDatesOutputRepresentation_CronExecutionDatesOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CronExecutionDatesOutputRepresentation_CronExecutionDatesOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CronExecutionDatesOutputRepresentation_CronExecutionDatesOutputRepresentation, any>;
|
|
16
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
17
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { BatchInvoiceSchedulerInputRepresentation as types_BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation } from '../types/BatchInvoiceSchedulerInputRepresentation';
|
|
2
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, 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
|
+
urlParams: {
|
|
6
|
+
billingBatchSchedulerId: string;
|
|
7
|
+
};
|
|
8
|
+
body: {
|
|
9
|
+
BatchInvoiceSchedulerInput: types_BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
13
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InvoicesBatchSchedulerOutputRepresentation_InvoicesBatchSchedulerOutputRepresentation): void;
|
|
14
|
+
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>;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "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 const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: BatchFilterCriteriaInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Common elements of Billing Batch Filter Criteria Input Representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface BatchFilterCriteriaInputRepresentationNormalized {
|
|
17
|
+
/** Sequence number for the criteria */
|
|
18
|
+
criteriaSequence: number;
|
|
19
|
+
/** Operation to be performed */
|
|
20
|
+
operation: string;
|
|
21
|
+
/** Value to be compared */
|
|
22
|
+
value: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Common elements of Billing Batch Filter Criteria Input Representation
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface BatchFilterCriteriaInputRepresentation {
|
|
31
|
+
criteriaSequence: number;
|
|
32
|
+
operation: string;
|
|
33
|
+
value: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "ae245aac2922b53e1ff758392e317d39";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: BatchInvoiceDocGenErrorRepresentation, existing: BatchInvoiceDocGenErrorRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): BatchInvoiceDocGenErrorRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: BatchInvoiceDocGenErrorRepresentationNormalized, incoming: BatchInvoiceDocGenErrorRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: BatchInvoiceDocGenErrorRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Connect API representation for batch invoice doc gen error response.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface BatchInvoiceDocGenErrorRepresentationNormalized {
|
|
17
|
+
/** Error Code of the error thrown. */
|
|
18
|
+
errorCode: string;
|
|
19
|
+
/** Error Message of the error thrown. */
|
|
20
|
+
errorMessage: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Connect API representation for batch invoice doc gen error response.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface BatchInvoiceDocGenErrorRepresentation {
|
|
29
|
+
errorCode: string;
|
|
30
|
+
errorMessage: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { BatchInvoiceDocGenErrorRepresentation as BatchInvoiceDocGenErrorRepresentation_BatchInvoiceDocGenErrorRepresentation } from './BatchInvoiceDocGenErrorRepresentation';
|
|
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, FragmentSelection as $64$luvio_engine_FragmentSelection, 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 = "1630988ffc3067417295a90783bd1812";
|
|
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
|
+
requestIdentifier: string;
|
|
9
|
+
}
|
|
10
|
+
export type BatchInvoiceDocGenOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export type PartialBatchInvoiceDocGenOutputRepresentationNormalizedKeyMetadata = 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): BatchInvoiceDocGenOutputRepresentationNormalizedKeyMetadata;
|
|
14
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: BatchInvoiceDocGenOutputRepresentation): string;
|
|
15
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: BatchInvoiceDocGenOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function normalize(input: BatchInvoiceDocGenOutputRepresentation, existing: BatchInvoiceDocGenOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): BatchInvoiceDocGenOutputRepresentationNormalized;
|
|
17
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
18
|
+
export declare function equals(existing: BatchInvoiceDocGenOutputRepresentationNormalized, incoming: BatchInvoiceDocGenOutputRepresentationNormalized): boolean;
|
|
19
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
20
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: BatchInvoiceDocGenOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
21
|
+
/**
|
|
22
|
+
* Connect API representation for batch invoice doc gen output response.
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* requestIdentifier (string): requestIdentifier
|
|
26
|
+
*/
|
|
27
|
+
export interface BatchInvoiceDocGenOutputRepresentationNormalized {
|
|
28
|
+
/** Error response if there were issues while enqueuing */
|
|
29
|
+
errors: Array<BatchInvoiceDocGenErrorRepresentation_BatchInvoiceDocGenErrorRepresentation>;
|
|
30
|
+
/** Unique request identifier that can be used to poll async request */
|
|
31
|
+
requestIdentifier: string;
|
|
32
|
+
/** Status of enqueuing Invoice PDF Generation job */
|
|
33
|
+
success: boolean;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Connect API representation for batch invoice doc gen output response.
|
|
37
|
+
*
|
|
38
|
+
* Keys:
|
|
39
|
+
* requestIdentifier (string): requestIdentifier
|
|
40
|
+
*/
|
|
41
|
+
export interface BatchInvoiceDocGenOutputRepresentation {
|
|
42
|
+
errors: Array<BatchInvoiceDocGenErrorRepresentation_BatchInvoiceDocGenErrorRepresentation>;
|
|
43
|
+
requestIdentifier: string;
|
|
44
|
+
success: boolean;
|
|
45
|
+
}
|
package/dist/es/es2018/types/src/generated/types/BatchInvoiceSchedulerInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } 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 const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: BatchInvoiceSchedulerInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Invoices Batch Scheduler Input Representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface BatchInvoiceSchedulerInputRepresentationNormalized extends ScheduleOptionsInputRepresentationForInvoice_ScheduleOptionsInputRepresentationForInvoice {
|
|
18
|
+
/** List of filter criteria line items */
|
|
19
|
+
filterCriteria?: Array<{}>;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Invoices Batch Scheduler Input Representation
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface BatchInvoiceSchedulerInputRepresentation extends ScheduleOptionsInputRepresentationForInvoice_ScheduleOptionsInputRepresentationForInvoice {
|
|
28
|
+
filterCriteria?: Array<{}>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } 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 const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: BatchInvoiceSchedulerInputWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Wrapper for invoice batch scheduler input representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface BatchInvoiceSchedulerInputWrapperRepresentationNormalized {
|
|
18
|
+
BatchInvoiceSchedulerInput: BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Wrapper for invoice batch scheduler input representation
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface BatchInvoiceSchedulerInputWrapperRepresentation {
|
|
27
|
+
BatchInvoiceSchedulerInput: BatchInvoiceSchedulerInputRepresentation_BatchInvoiceSchedulerInputRepresentation;
|
|
28
|
+
}
|