@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,50 +1,50 @@
|
|
|
1
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "3f30aad1ac3ea77d5e8aa1ef3256d637";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: ScheduleOptionsInputRepresentationForInvoice, existing: ScheduleOptionsInputRepresentationForInvoiceNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ScheduleOptionsInputRepresentationForInvoiceNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: ScheduleOptionsInputRepresentationForInvoiceNormalized, incoming: ScheduleOptionsInputRepresentationForInvoiceNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: ScheduleOptionsInputRepresentationForInvoice): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ScheduleOptionsInputRepresentationForInvoice, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Batch Scheduler Options Input Representation
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface ScheduleOptionsInputRepresentationForInvoiceNormalized {
|
|
18
|
-
/** Batch Job End Date */
|
|
19
|
-
endDate?: string;
|
|
20
|
-
/** Frequency Cadence for the Batch Job */
|
|
21
|
-
frequencyCadence: string;
|
|
22
|
-
/** Frequency Cadence Options for Invoice Scheduler */
|
|
23
|
-
frequencyCadenceOptions: {};
|
|
24
|
-
/** Batch Job Preferred Run Time */
|
|
25
|
-
preferredTime: string;
|
|
26
|
-
/** Name of the batch scheduler */
|
|
27
|
-
schedulerName: string;
|
|
28
|
-
/** Batch Job Start Date */
|
|
29
|
-
startDate: string;
|
|
30
|
-
/** Scheduler Status for the Batch Job */
|
|
31
|
-
status: string;
|
|
32
|
-
/** Preferred Time Zone of the invoice Scheduler */
|
|
33
|
-
timezone: string;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* Batch Scheduler Options Input Representation
|
|
37
|
-
*
|
|
38
|
-
* Keys:
|
|
39
|
-
* (none)
|
|
40
|
-
*/
|
|
41
|
-
export interface ScheduleOptionsInputRepresentationForInvoice {
|
|
42
|
-
endDate?: string;
|
|
43
|
-
frequencyCadence: string;
|
|
44
|
-
frequencyCadenceOptions: {};
|
|
45
|
-
preferredTime: string;
|
|
46
|
-
schedulerName: string;
|
|
47
|
-
startDate: string;
|
|
48
|
-
status: string;
|
|
49
|
-
timezone: string;
|
|
50
|
-
}
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "3f30aad1ac3ea77d5e8aa1ef3256d637";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ScheduleOptionsInputRepresentationForInvoice, existing: ScheduleOptionsInputRepresentationForInvoiceNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ScheduleOptionsInputRepresentationForInvoiceNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ScheduleOptionsInputRepresentationForInvoiceNormalized, incoming: ScheduleOptionsInputRepresentationForInvoiceNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ScheduleOptionsInputRepresentationForInvoice): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ScheduleOptionsInputRepresentationForInvoice, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Batch Scheduler Options Input Representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ScheduleOptionsInputRepresentationForInvoiceNormalized {
|
|
18
|
+
/** Batch Job End Date */
|
|
19
|
+
endDate?: string;
|
|
20
|
+
/** Frequency Cadence for the Batch Job */
|
|
21
|
+
frequencyCadence: string;
|
|
22
|
+
/** Frequency Cadence Options for Invoice Scheduler */
|
|
23
|
+
frequencyCadenceOptions: {};
|
|
24
|
+
/** Batch Job Preferred Run Time */
|
|
25
|
+
preferredTime: string;
|
|
26
|
+
/** Name of the batch scheduler */
|
|
27
|
+
schedulerName: string;
|
|
28
|
+
/** Batch Job Start Date */
|
|
29
|
+
startDate: string;
|
|
30
|
+
/** Scheduler Status for the Batch Job */
|
|
31
|
+
status: string;
|
|
32
|
+
/** Preferred Time Zone of the invoice Scheduler */
|
|
33
|
+
timezone: string;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Batch Scheduler Options Input Representation
|
|
37
|
+
*
|
|
38
|
+
* Keys:
|
|
39
|
+
* (none)
|
|
40
|
+
*/
|
|
41
|
+
export interface ScheduleOptionsInputRepresentationForInvoice {
|
|
42
|
+
endDate?: string;
|
|
43
|
+
frequencyCadence: string;
|
|
44
|
+
frequencyCadenceOptions: {};
|
|
45
|
+
preferredTime: string;
|
|
46
|
+
schedulerName: string;
|
|
47
|
+
startDate: string;
|
|
48
|
+
status: string;
|
|
49
|
+
timezone: string;
|
|
50
|
+
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const ObjectFreeze: {
|
|
3
|
-
<T extends Function>(f: T): T;
|
|
4
|
-
<T_1 extends {
|
|
5
|
-
[idx: string]: object | U | null | undefined;
|
|
6
|
-
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
7
|
-
<T_2>(o: T_2): Readonly<T_2>;
|
|
8
|
-
}, ObjectKeys: {
|
|
9
|
-
(o: object): string[];
|
|
10
|
-
(o: {}): string[];
|
|
11
|
-
}, ObjectCreate: {
|
|
12
|
-
(o: object | null): any;
|
|
13
|
-
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
14
|
-
}, ObjectAssign: {
|
|
15
|
-
<T extends {}, U>(target: T, source: U): T & U;
|
|
16
|
-
<T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
|
|
17
|
-
<T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
|
|
18
|
-
(target: object, ...sources: any[]): any;
|
|
19
|
-
};
|
|
20
|
-
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
21
|
-
export declare const JSONStringify: {
|
|
22
|
-
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
|
|
23
|
-
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
|
|
24
|
-
};
|
|
25
|
-
type AllowedPrimitives = boolean | string | number | Date | null;
|
|
26
|
-
type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
|
|
27
|
-
export type RecursivePartial<T> = null | {
|
|
28
|
-
[P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
|
|
29
|
-
};
|
|
30
|
-
export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
|
|
31
|
-
export declare function equalsObject<U, V extends {
|
|
32
|
-
[key: string]: U;
|
|
33
|
-
}>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
|
|
34
|
-
export declare function deepFreeze(value: any): void;
|
|
35
|
-
export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
|
|
36
|
-
__ref: string;
|
|
37
|
-
};
|
|
38
|
-
export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
39
|
-
export {};
|
|
1
|
+
import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectFreeze: {
|
|
3
|
+
<T extends Function>(f: T): T;
|
|
4
|
+
<T_1 extends {
|
|
5
|
+
[idx: string]: object | U | null | undefined;
|
|
6
|
+
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
7
|
+
<T_2>(o: T_2): Readonly<T_2>;
|
|
8
|
+
}, ObjectKeys: {
|
|
9
|
+
(o: object): string[];
|
|
10
|
+
(o: {}): string[];
|
|
11
|
+
}, ObjectCreate: {
|
|
12
|
+
(o: object | null): any;
|
|
13
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
14
|
+
}, ObjectAssign: {
|
|
15
|
+
<T extends {}, U>(target: T, source: U): T & U;
|
|
16
|
+
<T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
|
|
17
|
+
<T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
|
|
18
|
+
(target: object, ...sources: any[]): any;
|
|
19
|
+
};
|
|
20
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
21
|
+
export declare const JSONStringify: {
|
|
22
|
+
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
|
|
23
|
+
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
|
|
24
|
+
};
|
|
25
|
+
type AllowedPrimitives = boolean | string | number | Date | null;
|
|
26
|
+
type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
|
|
27
|
+
export type RecursivePartial<T> = null | {
|
|
28
|
+
[P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
|
|
29
|
+
};
|
|
30
|
+
export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
|
|
31
|
+
export declare function equalsObject<U, V extends {
|
|
32
|
+
[key: string]: U;
|
|
33
|
+
}>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
|
|
34
|
+
export declare function deepFreeze(value: any): void;
|
|
35
|
+
export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
|
|
36
|
+
__ref: string;
|
|
37
|
+
};
|
|
38
|
+
export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
39
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-revenue-billing-batch",
|
|
3
|
-
"version": "1.124.
|
|
3
|
+
"version": "1.124.4",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "This API family is meant for all APIs required for Billing Batch.",
|
|
6
|
-
"main": "dist/
|
|
6
|
+
"main": "dist/es/es2018/revenue-billing-batch.js",
|
|
7
7
|
"module": "dist/es/es2018/revenue-billing-batch.js",
|
|
8
|
-
"types": "dist/types/src/generated/artifacts/main.d.ts",
|
|
8
|
+
"types": "dist/es/es2018/types/src/generated/artifacts/main.d.ts",
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
11
|
"sfdc",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"exports": {
|
|
15
15
|
".": {
|
|
16
16
|
"import": "./dist/es/es2018/revenue-billing-batch.js",
|
|
17
|
-
"require": "./dist/
|
|
18
|
-
"types": "./dist/types/src/generated/artifacts/main.d.ts"
|
|
17
|
+
"require": "./dist/es/es2018/revenue-billing-batch.js",
|
|
18
|
+
"types": "./dist/es/es2018/types/src/generated/artifacts/main.d.ts"
|
|
19
19
|
},
|
|
20
20
|
"./sfdc": {
|
|
21
21
|
"import": "./sfdc/index.js",
|
package/sfdc/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from '../dist/types/src/generated/artifacts/sfdc';
|
|
1
|
+
export * from '../dist/es/es2018/types/src/generated/artifacts/sfdc';
|