@salesforce/lds-adapters-industries-sustainability-reference-data-v2 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.
Files changed (23) hide show
  1. package/LICENSE.txt +82 -0
  2. package/dist/es/es2018/industries-sustainability-reference-data-v2.js +636 -0
  3. package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
  4. package/dist/es/es2018/types/src/generated/adapters/getEntityVersion.d.ts +31 -0
  5. package/dist/es/es2018/types/src/generated/adapters/uploadEntityVersion.d.ts +16 -0
  6. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
  7. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +4 -0
  8. package/dist/es/es2018/types/src/generated/resources/getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource.d.ts +21 -0
  9. package/dist/es/es2018/types/src/generated/resources/putConnectSustainabilityReferenceDataV2EntityVersionUpload.d.ts +13 -0
  10. package/dist/es/es2018/types/src/generated/types/EntityDataSourceVersionDetailRepresentation.d.ts +37 -0
  11. package/dist/es/es2018/types/src/generated/types/FetchEntityVersionOutputRepresentation.d.ts +30 -0
  12. package/dist/es/es2018/types/src/generated/types/ReferenceDataEntityRepresentation.d.ts +32 -0
  13. package/dist/es/es2018/types/src/generated/types/ReferenceDataSourceRepresentation.d.ts +38 -0
  14. package/dist/es/es2018/types/src/generated/types/ReferenceDataVersionRepresentation.d.ts +55 -0
  15. package/dist/es/es2018/types/src/generated/types/UploadEntityVersionInputRepresentation.d.ts +29 -0
  16. package/dist/es/es2018/types/src/generated/types/UploadEntityVersionInputWrapperRepresentation.d.ts +28 -0
  17. package/dist/es/es2018/types/src/generated/types/UploadEntityVersionOutputRepresentation.d.ts +41 -0
  18. package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
  19. package/package.json +74 -0
  20. package/sfdc/index.d.ts +1 -0
  21. package/sfdc/index.js +677 -0
  22. package/src/raml/api.raml +187 -0
  23. package/src/raml/luvio.raml +29 -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 = "sustainability-reference-data-v2";
@@ -0,0 +1,31 @@
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_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig } from '../resources/getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource';
4
+ import { FetchEntityVersionOutputRepresentation as types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation } from '../types/FetchEntityVersionOutputRepresentation';
5
+ export declare const adapterName = "getEntityVersion";
6
+ export declare const getEntityVersion_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getEntityVersion_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetEntityVersionConfig {
9
+ entitySection: string;
10
+ referenceDataSource: string;
11
+ loadType?: string;
12
+ order?: string;
13
+ size?: number;
14
+ }
15
+ export declare const createResourceParams: (config: GetEntityVersionConfig) => resources_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig;
16
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): string;
17
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): $64$luvio_engine_NormalizedKeyMetadata;
18
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetEntityVersionConfig>): adapter$45$utils_Untrusted<GetEntityVersionConfig>;
19
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetEntityVersionConfig | null;
20
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): $64$luvio_engine_Fragment;
21
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): $64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>;
22
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig, resourceParams: resources_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>>;
23
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig, resourceParams: resources_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
24
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>>;
25
+ export type BuildSnapshotContext = {
26
+ luvio: $64$luvio_engine_Luvio;
27
+ config: GetEntityVersionConfig;
28
+ };
29
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>>;
30
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): $64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>;
31
+ export declare const getEntityVersionAdapterFactory: $64$luvio_engine_AdapterFactory<GetEntityVersionConfig, types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>;
@@ -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 { UploadEntityVersionInputRepresentation as types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation } from '../types/UploadEntityVersionInputRepresentation';
4
+ import { ResourceRequestConfig as resources_putConnectSustainabilityReferenceDataV2EntityVersionUpload_ResourceRequestConfig } from '../resources/putConnectSustainabilityReferenceDataV2EntityVersionUpload';
5
+ import { UploadEntityVersionOutputRepresentation as types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation } from '../types/UploadEntityVersionOutputRepresentation';
6
+ export declare const adapterName = "uploadEntityVersion";
7
+ export declare const uploadEntityVersion_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
8
+ export declare const uploadEntityVersion_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
9
+ export interface UploadEntityVersionConfig {
10
+ uploadEntityInput: types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation;
11
+ }
12
+ export declare const createResourceParams: (config: UploadEntityVersionConfig) => resources_putConnectSustainabilityReferenceDataV2EntityVersionUpload_ResourceRequestConfig;
13
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UploadEntityVersionConfig>): adapter$45$utils_Untrusted<UploadEntityVersionConfig>;
14
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): UploadEntityVersionConfig | null;
15
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: UploadEntityVersionConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, any>>;
16
+ export declare const uploadEntityVersionAdapterFactory: $64$luvio_engine_AdapterFactory<UploadEntityVersionConfig, types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation>;
@@ -0,0 +1,2 @@
1
+ export { getEntityVersionAdapterFactory } from '../adapters/getEntityVersion';
2
+ export { uploadEntityVersionAdapterFactory } from '../adapters/uploadEntityVersion';
@@ -0,0 +1,4 @@
1
+ declare let getEntityVersion: any;
2
+ declare let uploadEntityVersion: any;
3
+ declare let getEntityVersion_imperative: any;
4
+ export { getEntityVersion, uploadEntityVersion, getEntityVersion_imperative };
@@ -0,0 +1,21 @@
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 { FetchEntityVersionOutputRepresentation as types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation } from '../types/FetchEntityVersionOutputRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ entitySection: string;
6
+ referenceDataSource: string;
7
+ };
8
+ queryParams: {
9
+ loadType?: string;
10
+ order?: string;
11
+ size?: number;
12
+ };
13
+ }
14
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
15
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
16
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
17
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation): void;
18
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>;
19
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
20
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
21
+ export default createResourceRequest;
@@ -0,0 +1,13 @@
1
+ import { UploadEntityVersionInputRepresentation as types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation } from '../types/UploadEntityVersionInputRepresentation';
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 { UploadEntityVersionOutputRepresentation as types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation } from '../types/UploadEntityVersionOutputRepresentation';
4
+ export interface ResourceRequestConfig {
5
+ body: {
6
+ uploadEntityInput: types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation;
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_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation): void;
11
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, any>;
12
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
13
+ export default createResourceRequest;
@@ -0,0 +1,37 @@
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 = "528a8d4483b8f8eec20b78daccbf0906";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: EntityDataSourceVersionDetailRepresentation, existing: EntityDataSourceVersionDetailRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EntityDataSourceVersionDetailRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: EntityDataSourceVersionDetailRepresentationNormalized, incoming: EntityDataSourceVersionDetailRepresentationNormalized): 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: EntityDataSourceVersionDetailRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Upload Entity Version Input
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface EntityDataSourceVersionDetailRepresentationNormalized {
17
+ /** Data Source Name */
18
+ dataSource: string;
19
+ /** Entity Section Name */
20
+ entitySection: string;
21
+ /** RecordTypeId */
22
+ recordTypeId: string;
23
+ /** Version */
24
+ version: string;
25
+ }
26
+ /**
27
+ * Upload Entity Version Input
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface EntityDataSourceVersionDetailRepresentation {
33
+ dataSource: string;
34
+ entitySection: string;
35
+ recordTypeId: string;
36
+ version: string;
37
+ }
@@ -0,0 +1,30 @@
1
+ import { ReferenceDataEntityRepresentation as ReferenceDataEntityRepresentation_ReferenceDataEntityRepresentation } from './ReferenceDataEntityRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, 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 TTL = 300;
4
+ export declare const VERSION = "128a41ea06afa49c7b4c5d421747be7a";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: FetchEntityVersionOutputRepresentation, existing: FetchEntityVersionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FetchEntityVersionOutputRepresentationNormalized;
8
+ export declare const select: () => $64$luvio_engine_BaseFragment;
9
+ export declare function equals(existing: FetchEntityVersionOutputRepresentationNormalized, incoming: FetchEntityVersionOutputRepresentationNormalized): boolean;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: FetchEntityVersionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * Entity Version Output Representation
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface FetchEntityVersionOutputRepresentationNormalized {
19
+ /** List of Reference data entity sections */
20
+ referenceDataEntityRepresentation: Array<ReferenceDataEntityRepresentation_ReferenceDataEntityRepresentation>;
21
+ }
22
+ /**
23
+ * Entity Version Output Representation
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface FetchEntityVersionOutputRepresentation {
29
+ referenceDataEntityRepresentation: Array<ReferenceDataEntityRepresentation_ReferenceDataEntityRepresentation>;
30
+ }
@@ -0,0 +1,32 @@
1
+ import { ReferenceDataSourceRepresentation as ReferenceDataSourceRepresentation_ReferenceDataSourceRepresentation } from './ReferenceDataSourceRepresentation';
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 = "adbbbd77faa573054c273c22251ad1ab";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ReferenceDataEntityRepresentation, existing: ReferenceDataEntityRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ReferenceDataEntityRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ReferenceDataEntityRepresentationNormalized, incoming: ReferenceDataEntityRepresentationNormalized): 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: ReferenceDataEntityRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Reference Data Entity Section Information
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ReferenceDataEntityRepresentationNormalized {
18
+ /** Entity section name */
19
+ entityName: string;
20
+ /** List of Reference data sources for the entity section */
21
+ referenceDataSourceRepresentation: Array<ReferenceDataSourceRepresentation_ReferenceDataSourceRepresentation>;
22
+ }
23
+ /**
24
+ * Reference Data Entity Section Information
25
+ *
26
+ * Keys:
27
+ * (none)
28
+ */
29
+ export interface ReferenceDataEntityRepresentation {
30
+ entityName: string;
31
+ referenceDataSourceRepresentation: Array<ReferenceDataSourceRepresentation_ReferenceDataSourceRepresentation>;
32
+ }
@@ -0,0 +1,38 @@
1
+ import { ReferenceDataVersionRepresentation as ReferenceDataVersionRepresentation_ReferenceDataVersionRepresentation } from './ReferenceDataVersionRepresentation';
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 = "6a7b66a6fa9ed2a6e3f54472bb85bf73";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ReferenceDataSourceRepresentation, existing: ReferenceDataSourceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ReferenceDataSourceRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ReferenceDataSourceRepresentationNormalized, incoming: ReferenceDataSourceRepresentationNormalized): 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: ReferenceDataSourceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Reference Data Source Information
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ReferenceDataSourceRepresentationNormalized {
18
+ /** Data source name */
19
+ dataSourceName: string;
20
+ /** Is update available for the data source */
21
+ isUpdateAvailable: boolean;
22
+ /** Latest data sorce version */
23
+ latestVersion: string;
24
+ /** List of Reference data source versions */
25
+ versions: Array<ReferenceDataVersionRepresentation_ReferenceDataVersionRepresentation>;
26
+ }
27
+ /**
28
+ * Reference Data Source Information
29
+ *
30
+ * Keys:
31
+ * (none)
32
+ */
33
+ export interface ReferenceDataSourceRepresentation {
34
+ dataSourceName: string;
35
+ isUpdateAvailable: boolean;
36
+ latestVersion: string;
37
+ versions: Array<ReferenceDataVersionRepresentation_ReferenceDataVersionRepresentation>;
38
+ }
@@ -0,0 +1,55 @@
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 = "773b98578ef4ac9b53be5398be06e5f5";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ReferenceDataVersionRepresentation, existing: ReferenceDataVersionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ReferenceDataVersionRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ReferenceDataVersionRepresentationNormalized, incoming: ReferenceDataVersionRepresentationNormalized): 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: ReferenceDataVersionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Reference Data Version Information
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ReferenceDataVersionRepresentationNormalized {
17
+ /** Is the data source loaded successfully */
18
+ isDataSourceLoaded: boolean;
19
+ /** Is the version locked from usage */
20
+ isUnlocked: boolean;
21
+ /** Reference data last loaded date */
22
+ lastLoadDate?: string;
23
+ /** Reference data last loaded status */
24
+ lastLoadStatus: string;
25
+ /** Last loaded by user information */
26
+ lastLoadedBy?: string;
27
+ /** Reference data source release date */
28
+ releaseDate: string;
29
+ /** Reference data source version released in salesforce release */
30
+ salesforceRelease: string;
31
+ /** Reference data source release notes */
32
+ updateNotes: string;
33
+ /** Reference data source version release year */
34
+ updateYear: string;
35
+ /** Reference data source version */
36
+ version: string;
37
+ }
38
+ /**
39
+ * Reference Data Version Information
40
+ *
41
+ * Keys:
42
+ * (none)
43
+ */
44
+ export interface ReferenceDataVersionRepresentation {
45
+ isDataSourceLoaded: boolean;
46
+ isUnlocked: boolean;
47
+ lastLoadDate?: string;
48
+ lastLoadStatus: string;
49
+ lastLoadedBy?: string;
50
+ releaseDate: string;
51
+ salesforceRelease: string;
52
+ updateNotes: string;
53
+ updateYear: string;
54
+ version: string;
55
+ }
@@ -0,0 +1,29 @@
1
+ import { EntityDataSourceVersionDetailRepresentation as EntityDataSourceVersionDetailRepresentation_EntityDataSourceVersionDetailRepresentation } from './EntityDataSourceVersionDetailRepresentation';
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 = "938647d2f127481c1e5d413d282349e7";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: UploadEntityVersionInputRepresentation, existing: UploadEntityVersionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UploadEntityVersionInputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: UploadEntityVersionInputRepresentationNormalized, incoming: UploadEntityVersionInputRepresentationNormalized): 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: UploadEntityVersionInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Upload Entity Version Input
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface UploadEntityVersionInputRepresentationNormalized {
18
+ /** Entity DataSource Version Representation */
19
+ entityDataSourceVersionDetails: Array<EntityDataSourceVersionDetailRepresentation_EntityDataSourceVersionDetailRepresentation>;
20
+ }
21
+ /**
22
+ * Upload Entity Version Input
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface UploadEntityVersionInputRepresentation {
28
+ entityDataSourceVersionDetails: Array<EntityDataSourceVersionDetailRepresentation_EntityDataSourceVersionDetailRepresentation>;
29
+ }
@@ -0,0 +1,28 @@
1
+ import { UploadEntityVersionInputRepresentation as UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation } from './UploadEntityVersionInputRepresentation';
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 = "33e5426729b3cbaef54bd1c5493d4b0e";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: UploadEntityVersionInputWrapperRepresentation, existing: UploadEntityVersionInputWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UploadEntityVersionInputWrapperRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: UploadEntityVersionInputWrapperRepresentationNormalized, incoming: UploadEntityVersionInputWrapperRepresentationNormalized): 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: UploadEntityVersionInputWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * A Wrapper around the UploadEntityVersionInputRepresentation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface UploadEntityVersionInputWrapperRepresentationNormalized {
18
+ uploadEntityInput: UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation;
19
+ }
20
+ /**
21
+ * A Wrapper around the UploadEntityVersionInputRepresentation
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface UploadEntityVersionInputWrapperRepresentation {
27
+ uploadEntityInput: UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation;
28
+ }
@@ -0,0 +1,41 @@
1
+ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ export declare const TTL = 300;
3
+ export declare const VERSION = "22f23ab2e1d30bf8c35f0a92153102a2";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export interface KeyParams extends $64$luvio_engine_KeyMetadata {
7
+ message: string;
8
+ }
9
+ export type UploadEntityVersionOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
+ export type PartialUploadEntityVersionOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
11
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
12
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): UploadEntityVersionOutputRepresentationNormalizedKeyMetadata;
13
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: UploadEntityVersionOutputRepresentation): string;
14
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: UploadEntityVersionOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function normalize(input: UploadEntityVersionOutputRepresentation, existing: UploadEntityVersionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UploadEntityVersionOutputRepresentationNormalized;
16
+ export declare const select: () => $64$luvio_engine_BaseFragment;
17
+ export declare function equals(existing: UploadEntityVersionOutputRepresentationNormalized, incoming: UploadEntityVersionOutputRepresentationNormalized): boolean;
18
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
19
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: UploadEntityVersionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
20
+ /**
21
+ * Response containing Status code and User Friendly Message
22
+ *
23
+ * Keys:
24
+ * message (string): message
25
+ */
26
+ export interface UploadEntityVersionOutputRepresentationNormalized {
27
+ /** Code for the response status */
28
+ code: number;
29
+ /** Message returned for the Client */
30
+ message: string;
31
+ }
32
+ /**
33
+ * Response containing Status code and User Friendly Message
34
+ *
35
+ * Keys:
36
+ * message (string): message
37
+ */
38
+ export interface UploadEntityVersionOutputRepresentation {
39
+ code: number;
40
+ message: string;
41
+ }
@@ -0,0 +1,32 @@
1
+ import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const ObjectKeys: {
3
+ (o: object): string[];
4
+ (o: {}): string[];
5
+ }, ObjectCreate: {
6
+ (o: object | null): any;
7
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
8
+ }, ObjectAssign: {
9
+ <T extends {}, U>(target: T, source: U): T & U;
10
+ <T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
11
+ <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;
12
+ (target: object, ...sources: any[]): any;
13
+ };
14
+ export declare const ArrayIsArray: (arg: any) => arg is any[];
15
+ export declare const JSONStringify: {
16
+ (value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
17
+ (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
18
+ };
19
+ type AllowedPrimitives = boolean | string | number | Date | null;
20
+ type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
21
+ export type RecursivePartial<T> = null | {
22
+ [P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
23
+ };
24
+ export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
25
+ export declare function equalsObject<U, V extends {
26
+ [key: string]: U;
27
+ }>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
28
+ export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
29
+ __ref: string;
30
+ };
31
+ export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
32
+ export {};
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@salesforce/lds-adapters-industries-sustainability-reference-data-v2",
3
+ "version": "0.1.0-dev1",
4
+ "license": "SEE LICENSE IN LICENSE.txt",
5
+ "description": "sustainability-reference-data-v2",
6
+ "main": "dist/es/es2018/industries-sustainability-reference-data-v2.js",
7
+ "module": "dist/es/es2018/industries-sustainability-reference-data-v2.js",
8
+ "types": "dist/es/es2018/types/src/generated/artifacts/main.d.ts",
9
+ "files": [
10
+ "dist",
11
+ "sfdc",
12
+ "src/raml/*"
13
+ ],
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/es/es2018/types/src/generated/artifacts/main.d.ts",
17
+ "import": "./dist/es/es2018/industries-sustainability-reference-data-v2.js",
18
+ "require": "./dist/es/es2018/industries-sustainability-reference-data-v2.js"
19
+ },
20
+ "./sfdc": {
21
+ "types": "./sfdc/index.d.ts",
22
+ "import": "./sfdc/index.js",
23
+ "default": "./sfdc/index.js"
24
+ }
25
+ },
26
+ "sfdc": {
27
+ "namespace": "lightning",
28
+ "module": "industriesSustainabilityReferenceDataV2Api"
29
+ },
30
+ "contributors": [
31
+ "sahaj.bhalla@salesforce.com"
32
+ ],
33
+ "scripts": {
34
+ "build": "yarn build:services",
35
+ "build:karma": "rollup --bundleConfigAsCjs --config rollup.config.karma.js",
36
+ "build:raml": "luvio generate src/raml/luvio.raml src/generated -p '../lds-compiler-plugins'",
37
+ "build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
38
+ "clean": "rm -rf dist sfdc src/generated karma/dist",
39
+ "release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-sustainability-reference-data-v2",
40
+ "release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-industries-sustainability-reference-data-v2",
41
+ "start": "nx build:karma && karma start",
42
+ "test": "nx build:karma && karma start --single-run"
43
+ },
44
+ "dependencies": {
45
+ "@salesforce/lds-bindings": "^0.1.0-dev1"
46
+ },
47
+ "devDependencies": {
48
+ "@salesforce/lds-compiler-plugins": "^0.1.0-dev1",
49
+ "@salesforce/lds-karma": "^0.1.0-dev1"
50
+ },
51
+ "nx": {
52
+ "targets": {
53
+ "build": {
54
+ "outputs": [
55
+ "{projectRoot}/dist",
56
+ "{projectRoot}/sfdc"
57
+ ]
58
+ },
59
+ "build:raml": {
60
+ "outputs": [
61
+ "{projectRoot}/src/generated"
62
+ ]
63
+ },
64
+ "build:karma": {
65
+ "outputs": [
66
+ "{projectRoot}/karma/dist"
67
+ ]
68
+ }
69
+ }
70
+ },
71
+ "volta": {
72
+ "extends": "../../package.json"
73
+ }
74
+ }
@@ -0,0 +1 @@
1
+ export * from '../dist/es/es2018/types/src/generated/artifacts/sfdc';