@salesforce/lds-adapters-industries-scheduler 1.100.2
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/industries-scheduler.js +1142 -0
- package/dist/types/src/generated/adapters/adapter-utils.d.ts +66 -0
- package/dist/types/src/generated/adapters/createServiceAppointment.d.ts +15 -0
- package/dist/types/src/generated/adapters/getEngagementChannelTypes.d.ts +27 -0
- package/dist/types/src/generated/adapters/updateServiceAppointment.d.ts +15 -0
- package/dist/types/src/generated/artifacts/main.d.ts +3 -0
- package/dist/types/src/generated/artifacts/sfdc.d.ts +5 -0
- package/dist/types/src/generated/resources/getConnectSchedulingEngagementChannelTypes.d.ts +16 -0
- package/dist/types/src/generated/resources/patchConnectSchedulingServiceAppointments.d.ts +13 -0
- package/dist/types/src/generated/resources/postConnectSchedulingServiceAppointments.d.ts +13 -0
- package/dist/types/src/generated/types/AbstractServiceAppointmentInputRepresentation.d.ts +41 -0
- package/dist/types/src/generated/types/AssignedResourceInputRepresentation.d.ts +38 -0
- package/dist/types/src/generated/types/AssignedResourceListInputRepresentation.d.ts +29 -0
- package/dist/types/src/generated/types/CreateServiceAppointmentData.d.ts +30 -0
- package/dist/types/src/generated/types/CreateServiceAppointmentInputRepresentation.d.ts +41 -0
- package/dist/types/src/generated/types/CreateServiceAppointmentResult.d.ts +35 -0
- package/dist/types/src/generated/types/ExtendedFieldInputRepresentation.d.ts +32 -0
- package/dist/types/src/generated/types/ExtendedFieldListInputRepresentation.d.ts +29 -0
- package/dist/types/src/generated/types/GetEngagementChannelTypeListResult.d.ts +30 -0
- package/dist/types/src/generated/types/GetEngagementChannelTypeOutputRepresentation.d.ts +30 -0
- package/dist/types/src/generated/types/GetEngagementChannelTypeResult.d.ts +44 -0
- package/dist/types/src/generated/types/LeadInputRepresentation.d.ts +44 -0
- package/dist/types/src/generated/types/ServiceAppointmentInputRepresentation.d.ts +80 -0
- package/dist/types/src/generated/types/ServiceAppointmentOutputRepresentation.d.ts +47 -0
- package/dist/types/src/generated/types/ServiceAppointmentResult.d.ts +44 -0
- package/dist/types/src/generated/types/UpdateServiceAppointmentData.d.ts +30 -0
- package/dist/types/src/generated/types/UpdateServiceAppointmentInputRepresentation.d.ts +41 -0
- package/dist/types/src/generated/types/type-utils.d.ts +39 -0
- package/dist/umd/es2018/industries-scheduler.js +1152 -0
- package/dist/umd/es5/industries-scheduler.js +1159 -0
- package/package.json +71 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +1183 -0
- package/src/raml/api.raml +401 -0
- package/src/raml/luvio.raml +30 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
3
|
+
declare const ObjectKeys: {
|
|
4
|
+
(o: object): string[];
|
|
5
|
+
(o: {}): string[];
|
|
6
|
+
}, ObjectFreeze: {
|
|
7
|
+
<T extends Function>(f: T): T;
|
|
8
|
+
<T_1 extends {
|
|
9
|
+
[idx: string]: object | U | null | undefined;
|
|
10
|
+
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
11
|
+
<T_2>(o: T_2): Readonly<T_2>;
|
|
12
|
+
}, ObjectCreate: {
|
|
13
|
+
(o: object | null): any;
|
|
14
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
15
|
+
};
|
|
16
|
+
export { ObjectFreeze, ObjectCreate, ObjectKeys };
|
|
17
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
18
|
+
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
19
|
+
export interface AdapterValidationConfig {
|
|
20
|
+
displayName: string;
|
|
21
|
+
parameters: {
|
|
22
|
+
required: string[];
|
|
23
|
+
optional: string[];
|
|
24
|
+
unsupported?: string[];
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Validates an adapter config is well-formed.
|
|
29
|
+
* @param config The config to validate.
|
|
30
|
+
* @param adapter The adapter validation configuration.
|
|
31
|
+
* @param oneOf The keys the config must contain at least one of.
|
|
32
|
+
* @throws A TypeError if config doesn't satisfy the adapter's config validation.
|
|
33
|
+
*/
|
|
34
|
+
export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
|
|
35
|
+
export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
|
|
36
|
+
export type UncoercedConfiguration<Base, Options extends {
|
|
37
|
+
[key in keyof Base]?: any;
|
|
38
|
+
}> = {
|
|
39
|
+
[Key in keyof Base]?: Base[Key] | Options[Key];
|
|
40
|
+
};
|
|
41
|
+
export type Untrusted<Base> = Partial<Base>;
|
|
42
|
+
export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
|
|
43
|
+
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>;
|
|
44
|
+
export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
|
|
45
|
+
export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
|
|
46
|
+
export declare const snapshotRefreshOptions: {
|
|
47
|
+
overrides: {
|
|
48
|
+
headers: {
|
|
49
|
+
'Cache-Control': string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
|
|
55
|
+
* This is needed because insertion order for JSON.stringify(object) affects output:
|
|
56
|
+
* JSON.stringify({a: 1, b: 2})
|
|
57
|
+
* "{"a":1,"b":2}"
|
|
58
|
+
* JSON.stringify({b: 2, a: 1})
|
|
59
|
+
* "{"b":2,"a":1}"
|
|
60
|
+
* @param data Data to be JSON-stringified.
|
|
61
|
+
* @returns JSON.stringified value with consistent ordering of keys.
|
|
62
|
+
*/
|
|
63
|
+
export declare function stableJSONStringify(node: any): string | undefined;
|
|
64
|
+
export declare function getFetchResponseStatusText(status: number): string;
|
|
65
|
+
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
66
|
+
export declare const keyPrefix = "IndustriesScheduler";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { CreateServiceAppointmentInputRepresentation as types_CreateServiceAppointmentInputRepresentation_CreateServiceAppointmentInputRepresentation } from '../types/CreateServiceAppointmentInputRepresentation';
|
|
3
|
+
import { ResourceRequestConfig as resources_postConnectSchedulingServiceAppointments_ResourceRequestConfig } from '../resources/postConnectSchedulingServiceAppointments';
|
|
4
|
+
import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
5
|
+
import { ServiceAppointmentOutputRepresentation as types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation } from '../types/ServiceAppointmentOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "createServiceAppointment";
|
|
7
|
+
export declare const createServiceAppointment_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface CreateServiceAppointmentConfig {
|
|
9
|
+
createServiceAppointmentInput: types_CreateServiceAppointmentInputRepresentation_CreateServiceAppointmentInputRepresentation;
|
|
10
|
+
}
|
|
11
|
+
export declare function createResourceParams(config: CreateServiceAppointmentConfig): resources_postConnectSchedulingServiceAppointments_ResourceRequestConfig;
|
|
12
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateServiceAppointmentConfig>): adapter$45$utils_Untrusted<CreateServiceAppointmentConfig>;
|
|
13
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateServiceAppointmentConfig | null;
|
|
14
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateServiceAppointmentConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, any>>;
|
|
15
|
+
export declare const createServiceAppointmentAdapterFactory: $64$luvio_engine_AdapterFactory<CreateServiceAppointmentConfig, types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_getConnectSchedulingEngagementChannelTypes_ResourceRequestConfig } from '../resources/getConnectSchedulingEngagementChannelTypes';
|
|
3
|
+
import { 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';
|
|
4
|
+
import { GetEngagementChannelTypeOutputRepresentation as types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation } from '../types/GetEngagementChannelTypeOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "getEngagementChannelTypes";
|
|
6
|
+
export declare const getEngagementChannelTypes_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface GetEngagementChannelTypesConfig {
|
|
8
|
+
workTypeGroupIds?: Array<string>;
|
|
9
|
+
workTypeIds?: Array<string>;
|
|
10
|
+
}
|
|
11
|
+
export declare function createResourceParams(config: GetEngagementChannelTypesConfig): resources_getConnectSchedulingEngagementChannelTypes_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetEngagementChannelTypesConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetEngagementChannelTypesConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetEngagementChannelTypesConfig>): adapter$45$utils_Untrusted<GetEngagementChannelTypesConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetEngagementChannelTypesConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetEngagementChannelTypesConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetEngagementChannelTypesConfig): $64$luvio_engine_Snapshot<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetEngagementChannelTypesConfig, resourceParams: resources_getConnectSchedulingEngagementChannelTypes_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation>): Promise<import("@luvio/engine").PendingSnapshot<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation, any> | import("@luvio/engine").FulfilledSnapshot<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation, {}>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetEngagementChannelTypesConfig, resourceParams: resources_getConnectSchedulingEngagementChannelTypes_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetEngagementChannelTypesConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetEngagementChannelTypesConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation>): $64$luvio_engine_Snapshot<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation, any>;
|
|
27
|
+
export declare const getEngagementChannelTypesAdapterFactory: $64$luvio_engine_AdapterFactory<GetEngagementChannelTypesConfig, types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { UpdateServiceAppointmentInputRepresentation as types_UpdateServiceAppointmentInputRepresentation_UpdateServiceAppointmentInputRepresentation } from '../types/UpdateServiceAppointmentInputRepresentation';
|
|
3
|
+
import { ResourceRequestConfig as resources_patchConnectSchedulingServiceAppointments_ResourceRequestConfig } from '../resources/patchConnectSchedulingServiceAppointments';
|
|
4
|
+
import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
5
|
+
import { ServiceAppointmentOutputRepresentation as types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation } from '../types/ServiceAppointmentOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "updateServiceAppointment";
|
|
7
|
+
export declare const updateServiceAppointment_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface UpdateServiceAppointmentConfig {
|
|
9
|
+
updateServiceAppointmentInput: types_UpdateServiceAppointmentInputRepresentation_UpdateServiceAppointmentInputRepresentation;
|
|
10
|
+
}
|
|
11
|
+
export declare function createResourceParams(config: UpdateServiceAppointmentConfig): resources_patchConnectSchedulingServiceAppointments_ResourceRequestConfig;
|
|
12
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateServiceAppointmentConfig>): adapter$45$utils_Untrusted<UpdateServiceAppointmentConfig>;
|
|
13
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): UpdateServiceAppointmentConfig | null;
|
|
14
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: UpdateServiceAppointmentConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, any>>;
|
|
15
|
+
export declare const updateServiceAppointmentAdapterFactory: $64$luvio_engine_AdapterFactory<UpdateServiceAppointmentConfig, types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { getEngagementChannelTypesAdapterFactory } from '../adapters/getEngagementChannelTypes';
|
|
2
|
+
export { updateServiceAppointmentAdapterFactory } from '../adapters/updateServiceAppointment';
|
|
3
|
+
export { createServiceAppointmentAdapterFactory } from '../adapters/createServiceAppointment';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare let createServiceAppointment: any;
|
|
2
|
+
declare let getEngagementChannelTypes: any;
|
|
3
|
+
declare let updateServiceAppointment: any;
|
|
4
|
+
declare let getEngagementChannelTypes_imperative: any;
|
|
5
|
+
export { createServiceAppointment, getEngagementChannelTypes, updateServiceAppointment, getEngagementChannelTypes_imperative };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { GetEngagementChannelTypeOutputRepresentation as types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation } from '../types/GetEngagementChannelTypeOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
workTypeGroupIds?: Array<string>;
|
|
6
|
+
workTypeIds?: Array<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(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation, any>;
|
|
14
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_GetEngagementChannelTypeOutputRepresentation_GetEngagementChannelTypeOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UpdateServiceAppointmentInputRepresentation as types_UpdateServiceAppointmentInputRepresentation_UpdateServiceAppointmentInputRepresentation } from '../types/UpdateServiceAppointmentInputRepresentation';
|
|
2
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { ServiceAppointmentOutputRepresentation as types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation } from '../types/ServiceAppointmentOutputRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
body: {
|
|
6
|
+
updateServiceAppointmentInput: types_UpdateServiceAppointmentInputRepresentation_UpdateServiceAppointmentInputRepresentation;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, any>;
|
|
12
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CreateServiceAppointmentInputRepresentation as types_CreateServiceAppointmentInputRepresentation_CreateServiceAppointmentInputRepresentation } from '../types/CreateServiceAppointmentInputRepresentation';
|
|
2
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { ServiceAppointmentOutputRepresentation as types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation } from '../types/ServiceAppointmentOutputRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
body: {
|
|
6
|
+
createServiceAppointmentInput: types_CreateServiceAppointmentInputRepresentation_CreateServiceAppointmentInputRepresentation;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ServiceAppointmentOutputRepresentation_ServiceAppointmentOutputRepresentation, any>;
|
|
12
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "8d8bed0fbaceac6569e184680455671e";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AbstractServiceAppointmentInputRepresentation, existing: AbstractServiceAppointmentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AbstractServiceAppointmentInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AbstractServiceAppointmentInputRepresentationNormalized, incoming: AbstractServiceAppointmentInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: AbstractServiceAppointmentInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: AbstractServiceAppointmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Service Appointment input representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface AbstractServiceAppointmentInputRepresentationNormalized {
|
|
18
|
+
/** Assigned Resources */
|
|
19
|
+
assignedResources?: Array<{}>;
|
|
20
|
+
/** Lead */
|
|
21
|
+
lead?: {};
|
|
22
|
+
/** Scheduling Policy Id */
|
|
23
|
+
schedulingPolicyId?: string;
|
|
24
|
+
/** Service Appointment */
|
|
25
|
+
serviceAppointment?: {};
|
|
26
|
+
/** Service appointment Id */
|
|
27
|
+
serviceAppointmentId?: string;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Service Appointment input representation
|
|
31
|
+
*
|
|
32
|
+
* Keys:
|
|
33
|
+
* (none)
|
|
34
|
+
*/
|
|
35
|
+
export interface AbstractServiceAppointmentInputRepresentation {
|
|
36
|
+
assignedResources?: Array<{}>;
|
|
37
|
+
lead?: {};
|
|
38
|
+
schedulingPolicyId?: string;
|
|
39
|
+
serviceAppointment?: {};
|
|
40
|
+
serviceAppointmentId?: string;
|
|
41
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "f8fd123f1fe6c4554e083cd1a284eb2e";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AssignedResourceInputRepresentation, existing: AssignedResourceInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AssignedResourceInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AssignedResourceInputRepresentationNormalized, incoming: AssignedResourceInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: AssignedResourceInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: AssignedResourceInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for Assigned Resource
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface AssignedResourceInputRepresentationNormalized {
|
|
18
|
+
/** Extended fields */
|
|
19
|
+
extendedFields: Array<{}>;
|
|
20
|
+
/** Is primary resource */
|
|
21
|
+
isPrimaryResource: boolean;
|
|
22
|
+
/** Is required resource */
|
|
23
|
+
isRequiredResource: boolean;
|
|
24
|
+
/** Service resource ID */
|
|
25
|
+
serviceResourceId: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Input representation for Assigned Resource
|
|
29
|
+
*
|
|
30
|
+
* Keys:
|
|
31
|
+
* (none)
|
|
32
|
+
*/
|
|
33
|
+
export interface AssignedResourceInputRepresentation {
|
|
34
|
+
extendedFields: Array<{}>;
|
|
35
|
+
isPrimaryResource: boolean;
|
|
36
|
+
isRequiredResource: boolean;
|
|
37
|
+
serviceResourceId: string;
|
|
38
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "b17bb0b50a0f4e82a9ea3c7a252f5954";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AssignedResourceListInputRepresentation, existing: AssignedResourceListInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AssignedResourceListInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AssignedResourceListInputRepresentationNormalized, incoming: AssignedResourceListInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: AssignedResourceListInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: AssignedResourceListInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for a list of Assigned Resources
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface AssignedResourceListInputRepresentationNormalized {
|
|
18
|
+
/** List of Assigned Resources */
|
|
19
|
+
assignedResources?: Array<{}>;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Input representation for a list of Assigned Resources
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface AssignedResourceListInputRepresentation {
|
|
28
|
+
assignedResources?: Array<{}>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { CreateServiceAppointmentInputRepresentation as CreateServiceAppointmentInputRepresentation_CreateServiceAppointmentInputRepresentation } from './CreateServiceAppointmentInputRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "d9826bd87a56079d83b24eb3d4113555";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: CreateServiceAppointmentData, existing: CreateServiceAppointmentDataNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CreateServiceAppointmentDataNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: CreateServiceAppointmentDataNormalized, incoming: CreateServiceAppointmentDataNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: CreateServiceAppointmentData): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CreateServiceAppointmentData, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* A wrapper around CreateServiceAppointmentInputRepresentation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateServiceAppointmentDataNormalized {
|
|
19
|
+
/** The Oas Body name for create appointment data */
|
|
20
|
+
createServiceAppointmentInput: CreateServiceAppointmentInputRepresentation_CreateServiceAppointmentInputRepresentation;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* A wrapper around CreateServiceAppointmentInputRepresentation
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface CreateServiceAppointmentData {
|
|
29
|
+
createServiceAppointmentInput: CreateServiceAppointmentInputRepresentation_CreateServiceAppointmentInputRepresentation;
|
|
30
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "81ff0b21d80660656febc99a21322913";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CreateServiceAppointmentInputRepresentation, existing: CreateServiceAppointmentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CreateServiceAppointmentInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CreateServiceAppointmentInputRepresentationNormalized, incoming: CreateServiceAppointmentInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: CreateServiceAppointmentInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CreateServiceAppointmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Create Service Appointment input representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateServiceAppointmentInputRepresentationNormalized {
|
|
18
|
+
/** Assigned Resources */
|
|
19
|
+
assignedResources?: Array<{}>;
|
|
20
|
+
/** Lead */
|
|
21
|
+
lead?: {};
|
|
22
|
+
/** Scheduling Policy Id */
|
|
23
|
+
schedulingPolicyId?: string;
|
|
24
|
+
/** Service Appointment */
|
|
25
|
+
serviceAppointment?: {};
|
|
26
|
+
/** Service appointment Id */
|
|
27
|
+
serviceAppointmentId?: string;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Create Service Appointment input representation
|
|
31
|
+
*
|
|
32
|
+
* Keys:
|
|
33
|
+
* (none)
|
|
34
|
+
*/
|
|
35
|
+
export interface CreateServiceAppointmentInputRepresentation {
|
|
36
|
+
assignedResources?: Array<{}>;
|
|
37
|
+
lead?: {};
|
|
38
|
+
schedulingPolicyId?: string;
|
|
39
|
+
serviceAppointment?: {};
|
|
40
|
+
serviceAppointmentId?: string;
|
|
41
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "6c447dd9f12ec79e364aa7cab0e3884f";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CreateServiceAppointmentResult, existing: CreateServiceAppointmentResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CreateServiceAppointmentResultNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CreateServiceAppointmentResultNormalized, incoming: CreateServiceAppointmentResultNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: CreateServiceAppointmentResult): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CreateServiceAppointmentResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Create residential loan application results representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateServiceAppointmentResultNormalized {
|
|
18
|
+
/** Assigned resource IDs */
|
|
19
|
+
assignedResourceIds: Array<string>;
|
|
20
|
+
/** Parent record ID */
|
|
21
|
+
parentRecordId: string;
|
|
22
|
+
/** Service appointment ID */
|
|
23
|
+
serviceAppointmentId: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Create residential loan application results representation
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface CreateServiceAppointmentResult {
|
|
32
|
+
assignedResourceIds: Array<string>;
|
|
33
|
+
parentRecordId: string;
|
|
34
|
+
serviceAppointmentId: string;
|
|
35
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "5bedaf67da36e976a7dde6da513ca484";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ExtendedFieldInputRepresentation, existing: ExtendedFieldInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExtendedFieldInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ExtendedFieldInputRepresentationNormalized, incoming: ExtendedFieldInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ExtendedFieldInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExtendedFieldInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for extended fields
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ExtendedFieldInputRepresentationNormalized {
|
|
18
|
+
/** Extended Field Name */
|
|
19
|
+
name: string;
|
|
20
|
+
/** Extended Field Value */
|
|
21
|
+
value: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Input representation for extended fields
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface ExtendedFieldInputRepresentation {
|
|
30
|
+
name: string;
|
|
31
|
+
value: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "cb0cf7cf023f41688caab71465722462";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ExtendedFieldListInputRepresentation, existing: ExtendedFieldListInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExtendedFieldListInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ExtendedFieldListInputRepresentationNormalized, incoming: ExtendedFieldListInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ExtendedFieldListInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ExtendedFieldListInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Wraps a list of extended fields.
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ExtendedFieldListInputRepresentationNormalized {
|
|
18
|
+
/** List of Extended Fields */
|
|
19
|
+
extendedFields: Array<{}>;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Wraps a list of extended fields.
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface ExtendedFieldListInputRepresentation {
|
|
28
|
+
extendedFields: Array<{}>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { GetEngagementChannelTypeResult as GetEngagementChannelTypeResult_GetEngagementChannelTypeResult } from './GetEngagementChannelTypeResult';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "129c53d5f8fb579d31c255a020838251";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: GetEngagementChannelTypeListResult, existing: GetEngagementChannelTypeListResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetEngagementChannelTypeListResultNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: GetEngagementChannelTypeListResultNormalized, incoming: GetEngagementChannelTypeListResultNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: GetEngagementChannelTypeListResult): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: GetEngagementChannelTypeListResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Get engagement channel type list result
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface GetEngagementChannelTypeListResultNormalized {
|
|
19
|
+
/** List of Engagement Channel Types */
|
|
20
|
+
engagementChannelTypes: Array<GetEngagementChannelTypeResult_GetEngagementChannelTypeResult>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Get engagement channel type list result
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface GetEngagementChannelTypeListResult {
|
|
29
|
+
engagementChannelTypes: Array<GetEngagementChannelTypeResult_GetEngagementChannelTypeResult>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { GetEngagementChannelTypeListResult as GetEngagementChannelTypeListResult_GetEngagementChannelTypeListResult } from './GetEngagementChannelTypeListResult';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "622654426aa18b7c8846e6d863a5f446";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: GetEngagementChannelTypeOutputRepresentation, existing: GetEngagementChannelTypeOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetEngagementChannelTypeOutputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: GetEngagementChannelTypeOutputRepresentationNormalized, incoming: GetEngagementChannelTypeOutputRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: GetEngagementChannelTypeOutputRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: GetEngagementChannelTypeOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Output representation of Get Engagement Channel Type (List) Representation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface GetEngagementChannelTypeOutputRepresentationNormalized {
|
|
19
|
+
/** Get Engagement Channel Type result */
|
|
20
|
+
result: GetEngagementChannelTypeListResult_GetEngagementChannelTypeListResult;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Output representation of Get Engagement Channel Type (List) Representation
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface GetEngagementChannelTypeOutputRepresentation {
|
|
29
|
+
result: GetEngagementChannelTypeListResult_GetEngagementChannelTypeListResult;
|
|
30
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "745ed19773bc6307c6816a6d100b0cbe";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: GetEngagementChannelTypeResult, existing: GetEngagementChannelTypeResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetEngagementChannelTypeResultNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: GetEngagementChannelTypeResultNormalized, incoming: GetEngagementChannelTypeResultNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: GetEngagementChannelTypeResult): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: GetEngagementChannelTypeResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Get engagement channel type result
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface GetEngagementChannelTypeResultNormalized {
|
|
18
|
+
/** Engagement Channel Type Contact Point */
|
|
19
|
+
contactPoint?: string;
|
|
20
|
+
/** Engagement Channel Type Contact Point Type */
|
|
21
|
+
contactPointType?: string;
|
|
22
|
+
/** Engagement Channel Type ID */
|
|
23
|
+
id?: string;
|
|
24
|
+
/** Engagement Channel Type name */
|
|
25
|
+
name?: string;
|
|
26
|
+
/** Engagement Channel Type Work Type Group Ids */
|
|
27
|
+
workTypeGroupIds?: Array<string>;
|
|
28
|
+
/** Engagement Channel Type Work Type Ids */
|
|
29
|
+
workTypeIds?: Array<string>;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Get engagement channel type result
|
|
33
|
+
*
|
|
34
|
+
* Keys:
|
|
35
|
+
* (none)
|
|
36
|
+
*/
|
|
37
|
+
export interface GetEngagementChannelTypeResult {
|
|
38
|
+
contactPoint?: string;
|
|
39
|
+
contactPointType?: string;
|
|
40
|
+
id?: string;
|
|
41
|
+
name?: string;
|
|
42
|
+
workTypeGroupIds?: Array<string>;
|
|
43
|
+
workTypeIds?: Array<string>;
|
|
44
|
+
}
|