@salesforce/lds-adapters-cdp-data-clean-room 1.332.0-dev19
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/cdp-data-clean-room.js +749 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/adapters/createProvider.d.ts +21 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataCleanRoomProvidersPaginated.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCleanRoomProviders.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomProviders.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/types/CdpPaginatedResponseBaseRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/CdpUserRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomProviderCollectionRepresentation.d.ts +53 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomProviderInputRepresentation.d.ts +46 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomProviderRepresentation.d.ts +74 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
- package/package.json +67 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +792 -0
- package/src/raml/api.raml +204 -0
- package/src/raml/luvio.raml +23 -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 = "data-clean-room";
|
|
@@ -0,0 +1,21 @@
|
|
|
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_postSsotDataCleanRoomProviders_ResourceRequestConfig } from '../resources/postSsotDataCleanRoomProviders';
|
|
4
|
+
import { DataCleanRoomProviderRepresentation as types_DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation } from '../types/DataCleanRoomProviderRepresentation';
|
|
5
|
+
export declare const adapterName = "createProvider";
|
|
6
|
+
export declare const createProvider_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const createProvider_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface CreateProviderConfig {
|
|
9
|
+
label: string;
|
|
10
|
+
description: string;
|
|
11
|
+
templateNames: Array<string>;
|
|
12
|
+
dataCloudOrgId: string;
|
|
13
|
+
dataspaceName?: string;
|
|
14
|
+
name?: string;
|
|
15
|
+
logoUrl?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare const createResourceParams: (config: CreateProviderConfig) => resources_postSsotDataCleanRoomProviders_ResourceRequestConfig;
|
|
18
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateProviderConfig>): adapter$45$utils_Untrusted<CreateProviderConfig>;
|
|
19
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateProviderConfig | null;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateProviderConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation, any>>;
|
|
21
|
+
export declare const createProviderAdapterFactory: $64$luvio_engine_AdapterFactory<CreateProviderConfig, types_DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation>;
|
|
@@ -0,0 +1,30 @@
|
|
|
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_getSsotDataCleanRoomProviders_ResourceRequestConfig } from '../resources/getSsotDataCleanRoomProviders';
|
|
4
|
+
import { DataCleanRoomProviderCollectionRepresentation as types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation } from '../types/DataCleanRoomProviderCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getDataCleanRoomProvidersPaginated";
|
|
6
|
+
export declare const getDataCleanRoomProvidersPaginated_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getDataCleanRoomProvidersPaginated_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetDataCleanRoomProvidersPaginatedConfig {
|
|
9
|
+
batchSize?: number;
|
|
10
|
+
filters?: string;
|
|
11
|
+
offset?: number;
|
|
12
|
+
orderBy?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare const createResourceParams: (config: GetDataCleanRoomProvidersPaginatedConfig) => resources_getSsotDataCleanRoomProviders_ResourceRequestConfig;
|
|
15
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataCleanRoomProvidersPaginatedConfig): string;
|
|
16
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetDataCleanRoomProvidersPaginatedConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
17
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetDataCleanRoomProvidersPaginatedConfig>): adapter$45$utils_Untrusted<GetDataCleanRoomProvidersPaginatedConfig>;
|
|
18
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetDataCleanRoomProvidersPaginatedConfig | null;
|
|
19
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetDataCleanRoomProvidersPaginatedConfig): $64$luvio_engine_Fragment;
|
|
20
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataCleanRoomProvidersPaginatedConfig): $64$luvio_engine_Snapshot<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation, any>;
|
|
21
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetDataCleanRoomProvidersPaginatedConfig, resourceParams: resources_getSsotDataCleanRoomProviders_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation, any>>;
|
|
22
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetDataCleanRoomProvidersPaginatedConfig, resourceParams: resources_getSsotDataCleanRoomProviders_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
23
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataCleanRoomProvidersPaginatedConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation, any>>;
|
|
24
|
+
export type BuildSnapshotContext = {
|
|
25
|
+
luvio: $64$luvio_engine_Luvio;
|
|
26
|
+
config: GetDataCleanRoomProvidersPaginatedConfig;
|
|
27
|
+
};
|
|
28
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation, any>>;
|
|
29
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation>): $64$luvio_engine_Snapshot<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation, any>;
|
|
30
|
+
export declare const getDataCleanRoomProvidersPaginatedAdapterFactory: $64$luvio_engine_AdapterFactory<GetDataCleanRoomProvidersPaginatedConfig, types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation>;
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { DataCleanRoomProviderCollectionRepresentation as types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation } from '../types/DataCleanRoomProviderCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
batchSize?: number;
|
|
6
|
+
filters?: string;
|
|
7
|
+
offset?: number;
|
|
8
|
+
orderBy?: string;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation): void;
|
|
15
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation, any>;
|
|
16
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataCleanRoomProviderCollectionRepresentation_DataCleanRoomProviderCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
17
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
18
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { DataCleanRoomProviderRepresentation as types_DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation } from '../types/DataCleanRoomProviderRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
body: {
|
|
5
|
+
label: string;
|
|
6
|
+
description: string;
|
|
7
|
+
templateNames: Array<string>;
|
|
8
|
+
dataCloudOrgId: string;
|
|
9
|
+
dataspaceName?: string;
|
|
10
|
+
name?: string;
|
|
11
|
+
logoUrl?: string;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
15
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation): void;
|
|
16
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation, any>;
|
|
17
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
18
|
+
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 = "3d82aa53dc46f972bda23be1d696f9bc";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpPaginatedResponseBaseRepresentation, existing: CdpPaginatedResponseBaseRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpPaginatedResponseBaseRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CdpPaginatedResponseBaseRepresentationNormalized, incoming: CdpPaginatedResponseBaseRepresentationNormalized): 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: CdpPaginatedResponseBaseRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Base paginated response representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface CdpPaginatedResponseBaseRepresentationNormalized {
|
|
17
|
+
/** Current page url */
|
|
18
|
+
currentPageUrl: string;
|
|
19
|
+
/** Next page url if it exists */
|
|
20
|
+
nextPageUrl: string | null;
|
|
21
|
+
/** Total size of collection */
|
|
22
|
+
totalSize: number;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Base paginated response representation
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface CdpPaginatedResponseBaseRepresentation {
|
|
31
|
+
currentPageUrl: string;
|
|
32
|
+
nextPageUrl: string | null;
|
|
33
|
+
totalSize: number;
|
|
34
|
+
}
|
|
@@ -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 = "efb82c29d2d2d9ec860406b7caae554d";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpUserRepresentation, existing: CdpUserRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpUserRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CdpUserRepresentationNormalized, incoming: CdpUserRepresentationNormalized): 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: CdpUserRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents a user
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface CdpUserRepresentationNormalized {
|
|
17
|
+
/** The 18 character user ID */
|
|
18
|
+
id: string;
|
|
19
|
+
/** The name of the user */
|
|
20
|
+
name?: string;
|
|
21
|
+
/** The Chatter profile photo of the user */
|
|
22
|
+
profilePhotoUrl?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Represents a user
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface CdpUserRepresentation {
|
|
31
|
+
id: string;
|
|
32
|
+
name?: string;
|
|
33
|
+
profilePhotoUrl?: string;
|
|
34
|
+
}
|
package/dist/es/es2018/types/src/generated/types/DataCleanRoomProviderCollectionRepresentation.d.ts
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
import { DataCleanRoomProviderRepresentation as DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation } from './DataCleanRoomProviderRepresentation';
|
|
3
|
+
export declare const VERSION = "52237eeecd4f8f11ae22e265d9abe5ca";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: DataCleanRoomProviderCollectionRepresentation, existing: DataCleanRoomProviderCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataCleanRoomProviderCollectionRepresentationNormalized;
|
|
7
|
+
export interface DynamicIngestParams {
|
|
8
|
+
providers: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
}
|
|
10
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: DataCleanRoomProviderCollectionRepresentation, existing: DataCleanRoomProviderCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => DataCleanRoomProviderCollectionRepresentationNormalized;
|
|
11
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
12
|
+
export interface DynamicSelectParams {
|
|
13
|
+
providers?: $64$luvio_engine_LinkSelection;
|
|
14
|
+
}
|
|
15
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
16
|
+
export declare function equals(existing: DataCleanRoomProviderCollectionRepresentationNormalized, incoming: DataCleanRoomProviderCollectionRepresentationNormalized): boolean;
|
|
17
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
18
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataCleanRoomProviderCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
19
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
20
|
+
/**
|
|
21
|
+
* Represents Data Clean Room Provider Collection
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface DataCleanRoomProviderCollectionRepresentationNormalized {
|
|
27
|
+
/** Current page url */
|
|
28
|
+
currentPageUrl?: string;
|
|
29
|
+
/** Number of records present in this response */
|
|
30
|
+
limit?: number;
|
|
31
|
+
/** Next page url if it exists */
|
|
32
|
+
nextPageUrl?: string | null;
|
|
33
|
+
/** Start offset of the next batch */
|
|
34
|
+
offset?: number;
|
|
35
|
+
/** List of provider definitions */
|
|
36
|
+
providers: Array<$64$luvio_engine_StoreLink>;
|
|
37
|
+
/** Total size of collection */
|
|
38
|
+
totalSize?: number;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Represents Data Clean Room Provider Collection
|
|
42
|
+
*
|
|
43
|
+
* Keys:
|
|
44
|
+
* (none)
|
|
45
|
+
*/
|
|
46
|
+
export interface DataCleanRoomProviderCollectionRepresentation {
|
|
47
|
+
currentPageUrl?: string;
|
|
48
|
+
limit?: number;
|
|
49
|
+
nextPageUrl?: string | null;
|
|
50
|
+
offset?: number;
|
|
51
|
+
providers: Array<DataCleanRoomProviderRepresentation_DataCleanRoomProviderRepresentation>;
|
|
52
|
+
totalSize?: number;
|
|
53
|
+
}
|
package/dist/es/es2018/types/src/generated/types/DataCleanRoomProviderInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
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 = "6b57fbc057bd27c1b906dcf9c27e429e";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: DataCleanRoomProviderInputRepresentation, existing: DataCleanRoomProviderInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataCleanRoomProviderInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: DataCleanRoomProviderInputRepresentationNormalized, incoming: DataCleanRoomProviderInputRepresentationNormalized): 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: DataCleanRoomProviderInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents Cdp Data clean room Provider input
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface DataCleanRoomProviderInputRepresentationNormalized {
|
|
17
|
+
/** Unique ID representing Data Cloud org */
|
|
18
|
+
dataCloudOrgId: string;
|
|
19
|
+
/** dataspaceName */
|
|
20
|
+
dataspaceName?: string;
|
|
21
|
+
/** description */
|
|
22
|
+
description: string;
|
|
23
|
+
/** label */
|
|
24
|
+
label: string;
|
|
25
|
+
/** Path to logo for discoverability */
|
|
26
|
+
logoUrl?: string;
|
|
27
|
+
/** name */
|
|
28
|
+
name?: string;
|
|
29
|
+
/** List of usecase templates that the provider supports */
|
|
30
|
+
templateNames: Array<string>;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Represents Cdp Data clean room Provider input
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* (none)
|
|
37
|
+
*/
|
|
38
|
+
export interface DataCleanRoomProviderInputRepresentation {
|
|
39
|
+
dataCloudOrgId: string;
|
|
40
|
+
dataspaceName?: string;
|
|
41
|
+
description: string;
|
|
42
|
+
label: string;
|
|
43
|
+
logoUrl?: string;
|
|
44
|
+
name?: string;
|
|
45
|
+
templateNames: Array<string>;
|
|
46
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { CdpUserRepresentation as CdpUserRepresentation_CdpUserRepresentation } from './CdpUserRepresentation';
|
|
2
|
+
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "929b1bcf37fe62f914c2364146a0f5e6";
|
|
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
|
+
id: string;
|
|
8
|
+
}
|
|
9
|
+
export type DataCleanRoomProviderRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialDataCleanRoomProviderRepresentationNormalizedKeyMetadata = 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): DataCleanRoomProviderRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: DataCleanRoomProviderRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: DataCleanRoomProviderRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: DataCleanRoomProviderRepresentation, existing: DataCleanRoomProviderRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataCleanRoomProviderRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
17
|
+
export declare function equals(existing: DataCleanRoomProviderRepresentationNormalized, incoming: DataCleanRoomProviderRepresentationNormalized): 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: DataCleanRoomProviderRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
/**
|
|
21
|
+
* Represents Cdp Data Clean Room Provider
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* id (string): id
|
|
25
|
+
*/
|
|
26
|
+
export interface DataCleanRoomProviderRepresentationNormalized {
|
|
27
|
+
/** Created by */
|
|
28
|
+
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
29
|
+
/** Created date */
|
|
30
|
+
createdDate?: string;
|
|
31
|
+
/** Data Cloud Provider Org Id */
|
|
32
|
+
dataCloudOrgId: string;
|
|
33
|
+
/** Data Clean Room Provider Description */
|
|
34
|
+
description: string;
|
|
35
|
+
/** The 18 character ID of the asset */
|
|
36
|
+
id: string;
|
|
37
|
+
/** Label of the asset */
|
|
38
|
+
label?: string;
|
|
39
|
+
/** Last modified by */
|
|
40
|
+
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
41
|
+
/** Last modified date */
|
|
42
|
+
lastModifiedDate?: string;
|
|
43
|
+
/** Data Clean Room Provider Logo Url */
|
|
44
|
+
logoUrl?: string;
|
|
45
|
+
/** Name of the asset */
|
|
46
|
+
name?: string;
|
|
47
|
+
/** Namespace of the asset */
|
|
48
|
+
namespace?: string;
|
|
49
|
+
/** Data Clean Room Provider Template Names */
|
|
50
|
+
templateNames: Array<string>;
|
|
51
|
+
/** Url */
|
|
52
|
+
url?: string;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Represents Cdp Data Clean Room Provider
|
|
56
|
+
*
|
|
57
|
+
* Keys:
|
|
58
|
+
* id (string): id
|
|
59
|
+
*/
|
|
60
|
+
export interface DataCleanRoomProviderRepresentation {
|
|
61
|
+
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
62
|
+
createdDate?: string;
|
|
63
|
+
dataCloudOrgId: string;
|
|
64
|
+
description: string;
|
|
65
|
+
id: string;
|
|
66
|
+
label?: string;
|
|
67
|
+
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
68
|
+
lastModifiedDate?: string;
|
|
69
|
+
logoUrl?: string;
|
|
70
|
+
name?: string;
|
|
71
|
+
namespace?: string;
|
|
72
|
+
templateNames: Array<string>;
|
|
73
|
+
url?: string;
|
|
74
|
+
}
|
|
@@ -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,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@salesforce/lds-adapters-cdp-data-clean-room",
|
|
3
|
+
"version": "1.332.0-dev19",
|
|
4
|
+
"description": "API's related to Data Clean Room Feature",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
|
+
"main": "dist/es/es2018/cdp-data-clean-room.js",
|
|
7
|
+
"module": "dist/es/es2018/cdp-data-clean-room.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/cdp-data-clean-room.js",
|
|
18
|
+
"require": "./dist/es/es2018/cdp-data-clean-room.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": "cdpDataCleanRoomApi"
|
|
29
|
+
},
|
|
30
|
+
"contributors": [
|
|
31
|
+
"anupriya.sahu@salesforce.com",
|
|
32
|
+
"lakshmi.s@salesforce.com"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "yarn build:services",
|
|
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",
|
|
39
|
+
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-cdp-data-clean-room",
|
|
40
|
+
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-cdp-data-clean-room",
|
|
41
|
+
"test:unit": "jest"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@salesforce/lds-bindings": "^1.332.0-dev19"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@salesforce/lds-compiler-plugins": "^1.332.0-dev19"
|
|
48
|
+
},
|
|
49
|
+
"nx": {
|
|
50
|
+
"targets": {
|
|
51
|
+
"build": {
|
|
52
|
+
"outputs": [
|
|
53
|
+
"{projectRoot}/dist",
|
|
54
|
+
"{projectRoot}/sfdc"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"build:raml": {
|
|
58
|
+
"outputs": [
|
|
59
|
+
"{projectRoot}/src/generated"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"volta": {
|
|
65
|
+
"extends": "../../package.json"
|
|
66
|
+
}
|
|
67
|
+
}
|
package/sfdc/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/es/es2018/types/src/generated/artifacts/sfdc';
|