@salesforce/lds-adapters-cdp-byoc 1.354.0-dev2 → 1.354.0-dev21
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/cdp-byoc.js +1039 -209
- package/dist/es/es2018/types/src/generated/adapters/createCustomCodeDeployment.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getCustomCodeDeployments.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/adapters/getCustomCodeExecution.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getCustomCodeExecutionLogs.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getCustomCodeExecutions.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/adapters/updateCustomCodeDeployment.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCustomCode.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCustomCodeExecutionsByCustomCodeExecutionIdAndCustomCodeNameOrId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCustomCodeExecutionsByCustomCodeNameOrId.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCustomCodeExecutionsLogsByCustomCodeExecutionIdAndCustomCodeNameOrId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/patchSsotDataCustomCodeByCustomCodeNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotDataCustomCode.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/CustomCodeDeploymentInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/CustomCodeDeploymentRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/CustomCodeExecutionBaseRepresentation.d.ts +55 -0
- package/dist/es/es2018/types/src/generated/types/CustomCodeExecutionCollectionRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/CustomCodeExecutionLogRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/CustomCodePatchInputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +1108 -251
- package/src/raml/api.raml +167 -2
- package/src/raml/luvio.raml +14 -0
|
@@ -7,6 +7,7 @@ export declare const createCustomCodeDeployment_ConfigPropertyMetadata: $64$luvi
|
|
|
7
7
|
export declare const createCustomCodeDeployment_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface CreateCustomCodeDeploymentConfig {
|
|
9
9
|
codeType?: string;
|
|
10
|
+
functionInvokeOptions?: Array<string>;
|
|
10
11
|
computeType: string;
|
|
11
12
|
description?: string;
|
|
12
13
|
id?: string;
|
|
@@ -6,6 +6,9 @@ export declare const adapterName = "getCustomCodeDeployments";
|
|
|
6
6
|
export declare const getCustomCodeDeployments_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
7
|
export declare const getCustomCodeDeployments_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface GetCustomCodeDeploymentsConfig {
|
|
9
|
+
codeType?: string;
|
|
10
|
+
deploymentStatus?: string;
|
|
11
|
+
label?: string;
|
|
9
12
|
limit?: number;
|
|
10
13
|
offset?: number;
|
|
11
14
|
orderBy?: string;
|
|
@@ -0,0 +1,28 @@
|
|
|
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_getSsotDataCustomCodeExecutionsByCustomCodeExecutionIdAndCustomCodeNameOrId_ResourceRequestConfig } from '../resources/getSsotDataCustomCodeExecutionsByCustomCodeExecutionIdAndCustomCodeNameOrId';
|
|
4
|
+
import { CustomCodeExecutionBaseRepresentation as types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation } from '../types/CustomCodeExecutionBaseRepresentation';
|
|
5
|
+
export declare const adapterName = "getCustomCodeExecution";
|
|
6
|
+
export declare const getCustomCodeExecution_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getCustomCodeExecution_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetCustomCodeExecutionConfig {
|
|
9
|
+
customCodeExecutionId: string;
|
|
10
|
+
customCodeNameOrId: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: GetCustomCodeExecutionConfig) => resources_getSsotDataCustomCodeExecutionsByCustomCodeExecutionIdAndCustomCodeNameOrId_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetCustomCodeExecutionConfig>): adapter$45$utils_Untrusted<GetCustomCodeExecutionConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetCustomCodeExecutionConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionConfig): $64$luvio_engine_Snapshot<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionConfig, resourceParams: resources_getSsotDataCustomCodeExecutionsByCustomCodeExecutionIdAndCustomCodeNameOrId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionConfig, resourceParams: resources_getSsotDataCustomCodeExecutionsByCustomCodeExecutionIdAndCustomCodeNameOrId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetCustomCodeExecutionConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation>): $64$luvio_engine_Snapshot<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation, any>;
|
|
28
|
+
export declare const getCustomCodeExecutionAdapterFactory: $64$luvio_engine_AdapterFactory<GetCustomCodeExecutionConfig, types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation>;
|
|
@@ -0,0 +1,28 @@
|
|
|
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_getSsotDataCustomCodeExecutionsLogsByCustomCodeExecutionIdAndCustomCodeNameOrId_ResourceRequestConfig } from '../resources/getSsotDataCustomCodeExecutionsLogsByCustomCodeExecutionIdAndCustomCodeNameOrId';
|
|
4
|
+
import { CustomCodeExecutionLogRepresentation as types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation } from '../types/CustomCodeExecutionLogRepresentation';
|
|
5
|
+
export declare const adapterName = "getCustomCodeExecutionLogs";
|
|
6
|
+
export declare const getCustomCodeExecutionLogs_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getCustomCodeExecutionLogs_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetCustomCodeExecutionLogsConfig {
|
|
9
|
+
customCodeExecutionId: string;
|
|
10
|
+
customCodeNameOrId: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: GetCustomCodeExecutionLogsConfig) => resources_getSsotDataCustomCodeExecutionsLogsByCustomCodeExecutionIdAndCustomCodeNameOrId_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionLogsConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionLogsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetCustomCodeExecutionLogsConfig>): adapter$45$utils_Untrusted<GetCustomCodeExecutionLogsConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetCustomCodeExecutionLogsConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionLogsConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionLogsConfig): $64$luvio_engine_Snapshot<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionLogsConfig, resourceParams: resources_getSsotDataCustomCodeExecutionsLogsByCustomCodeExecutionIdAndCustomCodeNameOrId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionLogsConfig, resourceParams: resources_getSsotDataCustomCodeExecutionsLogsByCustomCodeExecutionIdAndCustomCodeNameOrId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionLogsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetCustomCodeExecutionLogsConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation>): $64$luvio_engine_Snapshot<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation, any>;
|
|
28
|
+
export declare const getCustomCodeExecutionLogsAdapterFactory: $64$luvio_engine_AdapterFactory<GetCustomCodeExecutionLogsConfig, types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation>;
|
|
@@ -0,0 +1,29 @@
|
|
|
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_getSsotDataCustomCodeExecutionsByCustomCodeNameOrId_ResourceRequestConfig } from '../resources/getSsotDataCustomCodeExecutionsByCustomCodeNameOrId';
|
|
4
|
+
import { CustomCodeExecutionCollectionRepresentation as types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation } from '../types/CustomCodeExecutionCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getCustomCodeExecutions";
|
|
6
|
+
export declare const getCustomCodeExecutions_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getCustomCodeExecutions_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetCustomCodeExecutionsConfig {
|
|
9
|
+
customCodeNameOrId: string;
|
|
10
|
+
limit?: number;
|
|
11
|
+
offset?: number;
|
|
12
|
+
}
|
|
13
|
+
export declare const createResourceParams: (config: GetCustomCodeExecutionsConfig) => resources_getSsotDataCustomCodeExecutionsByCustomCodeNameOrId_ResourceRequestConfig;
|
|
14
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionsConfig): string;
|
|
15
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetCustomCodeExecutionsConfig>): adapter$45$utils_Untrusted<GetCustomCodeExecutionsConfig>;
|
|
17
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetCustomCodeExecutionsConfig | null;
|
|
18
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionsConfig): $64$luvio_engine_Fragment;
|
|
19
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionsConfig): $64$luvio_engine_Snapshot<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation, any>;
|
|
20
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionsConfig, resourceParams: resources_getSsotDataCustomCodeExecutionsByCustomCodeNameOrId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation, any>>;
|
|
21
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionsConfig, resourceParams: resources_getSsotDataCustomCodeExecutionsByCustomCodeNameOrId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
22
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetCustomCodeExecutionsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation, any>>;
|
|
23
|
+
export type BuildSnapshotContext = {
|
|
24
|
+
luvio: $64$luvio_engine_Luvio;
|
|
25
|
+
config: GetCustomCodeExecutionsConfig;
|
|
26
|
+
};
|
|
27
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation, any>>;
|
|
28
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation>): $64$luvio_engine_Snapshot<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation, any>;
|
|
29
|
+
export declare const getCustomCodeExecutionsAdapterFactory: $64$luvio_engine_AdapterFactory<GetCustomCodeExecutionsConfig, types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation>;
|
|
@@ -8,6 +8,7 @@ export declare const updateCustomCodeDeployment_ConfigPropertyNames: adapter$45$
|
|
|
8
8
|
export interface UpdateCustomCodeDeploymentConfig {
|
|
9
9
|
customCodeNameOrId: string;
|
|
10
10
|
computeType?: string;
|
|
11
|
+
functionInvokeOptions?: Array<string>;
|
|
11
12
|
description?: string;
|
|
12
13
|
label?: string;
|
|
13
14
|
version?: string;
|
|
@@ -3,3 +3,6 @@ export { getCustomCodeDeploymentsAdapterFactory } from '../adapters/getCustomCod
|
|
|
3
3
|
export { deleteCustomCodeDeploymentAdapterFactory } from '../adapters/deleteCustomCodeDeployment';
|
|
4
4
|
export { getCustomCodeDeploymentAdapterFactory } from '../adapters/getCustomCodeDeployment';
|
|
5
5
|
export { updateCustomCodeDeploymentAdapterFactory } from '../adapters/updateCustomCodeDeployment';
|
|
6
|
+
export { getCustomCodeExecutionsAdapterFactory } from '../adapters/getCustomCodeExecutions';
|
|
7
|
+
export { getCustomCodeExecutionAdapterFactory } from '../adapters/getCustomCodeExecution';
|
|
8
|
+
export { getCustomCodeExecutionLogsAdapterFactory } from '../adapters/getCustomCodeExecutionLogs';
|
|
@@ -3,7 +3,13 @@ declare let deleteCustomCodeDeployment: any;
|
|
|
3
3
|
declare let getCustomCodeDeployment: any;
|
|
4
4
|
declare let getCustomCodeDeploymentNotifyChange: any;
|
|
5
5
|
declare let getCustomCodeDeployments: any;
|
|
6
|
+
declare let getCustomCodeExecution: any;
|
|
7
|
+
declare let getCustomCodeExecutionLogs: any;
|
|
8
|
+
declare let getCustomCodeExecutions: any;
|
|
6
9
|
declare let updateCustomCodeDeployment: any;
|
|
7
10
|
declare let getCustomCodeDeployment_imperative: any;
|
|
8
11
|
declare let getCustomCodeDeployments_imperative: any;
|
|
9
|
-
|
|
12
|
+
declare let getCustomCodeExecution_imperative: any;
|
|
13
|
+
declare let getCustomCodeExecutionLogs_imperative: any;
|
|
14
|
+
declare let getCustomCodeExecutions_imperative: any;
|
|
15
|
+
export { createCustomCodeDeployment, deleteCustomCodeDeployment, getCustomCodeDeployment, getCustomCodeDeploymentNotifyChange, getCustomCodeDeployments, getCustomCodeExecution, getCustomCodeExecutionLogs, getCustomCodeExecutions, updateCustomCodeDeployment, getCustomCodeDeployment_imperative, getCustomCodeDeployments_imperative, getCustomCodeExecution_imperative, getCustomCodeExecutionLogs_imperative, getCustomCodeExecutions_imperative, };
|
|
@@ -2,6 +2,9 @@ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment,
|
|
|
2
2
|
import { CustomCodeDeploymentCollectionRepresentation as types_CustomCodeDeploymentCollectionRepresentation_CustomCodeDeploymentCollectionRepresentation } from '../types/CustomCodeDeploymentCollectionRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
queryParams: {
|
|
5
|
+
codeType?: string;
|
|
6
|
+
deploymentStatus?: string;
|
|
7
|
+
label?: string;
|
|
5
8
|
limit?: number;
|
|
6
9
|
offset?: number;
|
|
7
10
|
orderBy?: string;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { CustomCodeExecutionBaseRepresentation as types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation } from '../types/CustomCodeExecutionBaseRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
customCodeExecutionId: string;
|
|
6
|
+
customCodeNameOrId: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation): void;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation, any>;
|
|
14
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,19 @@
|
|
|
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 { CustomCodeExecutionCollectionRepresentation as types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation } from '../types/CustomCodeExecutionCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
customCodeNameOrId: string;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
limit?: number;
|
|
9
|
+
offset?: number;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation): void;
|
|
16
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation, any>;
|
|
17
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CustomCodeExecutionCollectionRepresentation_CustomCodeExecutionCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
18
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
19
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { CustomCodeExecutionLogRepresentation as types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation } from '../types/CustomCodeExecutionLogRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
customCodeExecutionId: string;
|
|
6
|
+
customCodeNameOrId: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation): void;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation, any>;
|
|
14
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CustomCodeExecutionLogRepresentation_CustomCodeExecutionLogRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/types/CustomCodeDeploymentInputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
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, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "18750a4e7f924c9f124da725a36ce360";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -29,6 +29,8 @@ export interface CustomCodeDeploymentInputRepresentationNormalized {
|
|
|
29
29
|
computeType: string;
|
|
30
30
|
/** Description of the custom code deployment */
|
|
31
31
|
description?: string;
|
|
32
|
+
/** List of function invoke options */
|
|
33
|
+
functionInvokeOptions?: Array<string>;
|
|
32
34
|
/** Id */
|
|
33
35
|
id?: string;
|
|
34
36
|
/** Label of the custom code deployment */
|
|
@@ -54,6 +56,7 @@ export interface CustomCodeDeploymentInputRepresentation {
|
|
|
54
56
|
codeType?: string;
|
|
55
57
|
computeType: string;
|
|
56
58
|
description?: string;
|
|
59
|
+
functionInvokeOptions?: Array<string>;
|
|
57
60
|
id?: string;
|
|
58
61
|
label: string;
|
|
59
62
|
name: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CdpUserRepresentation as CdpUserRepresentation_CdpUserRepresentation } from './CdpUserRepresentation';
|
|
2
2
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "3a8185ac626c1463f8bf0540517ef2e2";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -58,7 +58,7 @@ export interface CustomCodeDeploymentRepresentationNormalized {
|
|
|
58
58
|
namespace?: string;
|
|
59
59
|
/** Parameters of custom code deployment */
|
|
60
60
|
parameters: {
|
|
61
|
-
[key: string]:
|
|
61
|
+
[key: string]: unknown;
|
|
62
62
|
};
|
|
63
63
|
/** Sync status of the custom code deployment */
|
|
64
64
|
status: string;
|
|
@@ -91,7 +91,7 @@ export interface CustomCodeDeploymentRepresentation {
|
|
|
91
91
|
name: string;
|
|
92
92
|
namespace?: string;
|
|
93
93
|
parameters: {
|
|
94
|
-
[key: string]:
|
|
94
|
+
[key: string]: unknown;
|
|
95
95
|
};
|
|
96
96
|
status: string;
|
|
97
97
|
url: string;
|
|
@@ -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 = "16ba4e83f3e94d331bcbdba6f3d301b9";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CustomCodeExecutionBaseRepresentation, existing: CustomCodeExecutionBaseRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CustomCodeExecutionBaseRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CustomCodeExecutionBaseRepresentationNormalized, incoming: CustomCodeExecutionBaseRepresentationNormalized): 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: CustomCodeExecutionBaseRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* BYOC Custom Code Executions
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface CustomCodeExecutionBaseRepresentationNormalized {
|
|
17
|
+
/** duration of code execution in seconds */
|
|
18
|
+
durationInSeconds: number;
|
|
19
|
+
/** end time of code execution */
|
|
20
|
+
endTime: string;
|
|
21
|
+
/** error code */
|
|
22
|
+
errorCode?: number;
|
|
23
|
+
/** detailed error message */
|
|
24
|
+
errorMessage?: string;
|
|
25
|
+
/** BYOC Custom Code Execution Id */
|
|
26
|
+
id: string;
|
|
27
|
+
/** number of objects read */
|
|
28
|
+
rowsRead: number;
|
|
29
|
+
/** number of objects written */
|
|
30
|
+
rowsWritten: number;
|
|
31
|
+
/** start time of code execution */
|
|
32
|
+
startTime: string;
|
|
33
|
+
/** BYOC Custom Code Execution Status */
|
|
34
|
+
status: string;
|
|
35
|
+
/** time when execution was submitted */
|
|
36
|
+
submittedTime: string;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* BYOC Custom Code Executions
|
|
40
|
+
*
|
|
41
|
+
* Keys:
|
|
42
|
+
* (none)
|
|
43
|
+
*/
|
|
44
|
+
export interface CustomCodeExecutionBaseRepresentation {
|
|
45
|
+
durationInSeconds: number;
|
|
46
|
+
endTime: string;
|
|
47
|
+
errorCode?: number;
|
|
48
|
+
errorMessage?: string;
|
|
49
|
+
id: string;
|
|
50
|
+
rowsRead: number;
|
|
51
|
+
rowsWritten: number;
|
|
52
|
+
startTime: string;
|
|
53
|
+
status: string;
|
|
54
|
+
submittedTime: string;
|
|
55
|
+
}
|
package/dist/es/es2018/types/src/generated/types/CustomCodeExecutionCollectionRepresentation.d.ts
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { CustomCodeExecutionBaseRepresentation as CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation } from './CustomCodeExecutionBaseRepresentation';
|
|
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 = "eff3ca61ebb18d80a094043be3f81c07";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: CustomCodeExecutionCollectionRepresentation, existing: CustomCodeExecutionCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CustomCodeExecutionCollectionRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: CustomCodeExecutionCollectionRepresentationNormalized, incoming: CustomCodeExecutionCollectionRepresentationNormalized): 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: CustomCodeExecutionCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* BYOC Custom Code Execution Collection
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CustomCodeExecutionCollectionRepresentationNormalized {
|
|
18
|
+
/** Current page url */
|
|
19
|
+
currentPageUrl?: string;
|
|
20
|
+
/** BYOC Custom Code Collection of Executions */
|
|
21
|
+
executions: Array<CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation>;
|
|
22
|
+
/** Next page url if it exists */
|
|
23
|
+
nextPageUrl?: string;
|
|
24
|
+
/** Total size of collection */
|
|
25
|
+
totalSize?: number;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* BYOC Custom Code Execution Collection
|
|
29
|
+
*
|
|
30
|
+
* Keys:
|
|
31
|
+
* (none)
|
|
32
|
+
*/
|
|
33
|
+
export interface CustomCodeExecutionCollectionRepresentation {
|
|
34
|
+
currentPageUrl?: string;
|
|
35
|
+
executions: Array<CustomCodeExecutionBaseRepresentation_CustomCodeExecutionBaseRepresentation>;
|
|
36
|
+
nextPageUrl?: string;
|
|
37
|
+
totalSize?: number;
|
|
38
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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 = "67e4b6c0a2163a4de44249f2a2dc7bd0";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CustomCodeExecutionLogRepresentation, existing: CustomCodeExecutionLogRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CustomCodeExecutionLogRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CustomCodeExecutionLogRepresentationNormalized, incoming: CustomCodeExecutionLogRepresentationNormalized): 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: CustomCodeExecutionLogRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* BYOC Custom Code Execution Log
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface CustomCodeExecutionLogRepresentationNormalized {
|
|
17
|
+
/** BYOC Custom Code Execution Log */
|
|
18
|
+
downloadUrl: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* BYOC Custom Code Execution Log
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface CustomCodeExecutionLogRepresentation {
|
|
27
|
+
downloadUrl: string;
|
|
28
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
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 = "
|
|
2
|
+
export declare const VERSION = "5de9566d92287d155e08f578b4a835d7";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: CustomCodePatchInputRepresentation, existing: CustomCodePatchInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CustomCodePatchInputRepresentationNormalized;
|
|
@@ -18,6 +18,8 @@ export interface CustomCodePatchInputRepresentationNormalized {
|
|
|
18
18
|
computeType?: string;
|
|
19
19
|
/** Description of the custom code deployment */
|
|
20
20
|
description?: string;
|
|
21
|
+
/** List of function invoke options */
|
|
22
|
+
functionInvokeOptions?: Array<string>;
|
|
21
23
|
/** Label of the custom code deployment */
|
|
22
24
|
label?: string;
|
|
23
25
|
/** Version of the custom code */
|
|
@@ -32,6 +34,7 @@ export interface CustomCodePatchInputRepresentationNormalized {
|
|
|
32
34
|
export interface CustomCodePatchInputRepresentation {
|
|
33
35
|
computeType?: string;
|
|
34
36
|
description?: string;
|
|
37
|
+
functionInvokeOptions?: Array<string>;
|
|
35
38
|
label?: string;
|
|
36
39
|
version?: string;
|
|
37
40
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-byoc",
|
|
3
|
-
"version": "1.354.0-
|
|
3
|
+
"version": "1.354.0-dev21",
|
|
4
4
|
"description": "Used to connect to the CDP BYOC service in core and off-core",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/cdp-byoc.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.354.0-
|
|
43
|
+
"@salesforce/lds-bindings": "^1.354.0-dev21"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.354.0-
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.354.0-dev21"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|