@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,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 = "66fa7e0a4fe8081155341d72de0eb1ed";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: LeadInputRepresentation, existing: LeadInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): LeadInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: LeadInputRepresentationNormalized, incoming: LeadInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: LeadInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: LeadInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for Lead
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface LeadInputRepresentationNormalized {
|
|
18
|
+
/** Company */
|
|
19
|
+
company: string;
|
|
20
|
+
/** Email */
|
|
21
|
+
email: string;
|
|
22
|
+
/** Extended fields */
|
|
23
|
+
extendedFields: Array<{}>;
|
|
24
|
+
/** First name */
|
|
25
|
+
firstName: string;
|
|
26
|
+
/** Last name */
|
|
27
|
+
lastName: string;
|
|
28
|
+
/** Phone */
|
|
29
|
+
phone: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Input representation for Lead
|
|
33
|
+
*
|
|
34
|
+
* Keys:
|
|
35
|
+
* (none)
|
|
36
|
+
*/
|
|
37
|
+
export interface LeadInputRepresentation {
|
|
38
|
+
company: string;
|
|
39
|
+
email: string;
|
|
40
|
+
extendedFields: Array<{}>;
|
|
41
|
+
firstName: string;
|
|
42
|
+
lastName: string;
|
|
43
|
+
phone: string;
|
|
44
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
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 = "23da434be7154761da0675ad9e64b4bd";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ServiceAppointmentInputRepresentation, existing: ServiceAppointmentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceAppointmentInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ServiceAppointmentInputRepresentationNormalized, incoming: ServiceAppointmentInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ServiceAppointmentInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ServiceAppointmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for Service Appointment
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ServiceAppointmentInputRepresentationNormalized {
|
|
18
|
+
/** Additional information */
|
|
19
|
+
additionalInformation?: string;
|
|
20
|
+
/** Appointment type */
|
|
21
|
+
appointmentType?: string;
|
|
22
|
+
/** City */
|
|
23
|
+
city?: string;
|
|
24
|
+
/** Comments */
|
|
25
|
+
comments?: string;
|
|
26
|
+
/** Contact ID */
|
|
27
|
+
contactId?: string;
|
|
28
|
+
/** Country */
|
|
29
|
+
country?: string;
|
|
30
|
+
/** Description */
|
|
31
|
+
description?: string;
|
|
32
|
+
/** Engagement channel type id */
|
|
33
|
+
engagementChannelTypeId?: string;
|
|
34
|
+
/** Extended fields */
|
|
35
|
+
extendedFields?: Array<{}>;
|
|
36
|
+
/** Parent record ID */
|
|
37
|
+
parentRecordId: string;
|
|
38
|
+
/** Postal code */
|
|
39
|
+
postalCode?: string;
|
|
40
|
+
/** Scheduled end time */
|
|
41
|
+
schedEndTime?: string;
|
|
42
|
+
/** Scheduled start time */
|
|
43
|
+
schedStartTime?: string;
|
|
44
|
+
/** Service territory ID */
|
|
45
|
+
serviceTerritoryId?: string;
|
|
46
|
+
/** State */
|
|
47
|
+
state?: string;
|
|
48
|
+
/** Street */
|
|
49
|
+
street?: string;
|
|
50
|
+
/** Subject */
|
|
51
|
+
subject?: string;
|
|
52
|
+
/** Work type ID */
|
|
53
|
+
workTypeId?: string;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Input representation for Service Appointment
|
|
57
|
+
*
|
|
58
|
+
* Keys:
|
|
59
|
+
* (none)
|
|
60
|
+
*/
|
|
61
|
+
export interface ServiceAppointmentInputRepresentation {
|
|
62
|
+
additionalInformation?: string;
|
|
63
|
+
appointmentType?: string;
|
|
64
|
+
city?: string;
|
|
65
|
+
comments?: string;
|
|
66
|
+
contactId?: string;
|
|
67
|
+
country?: string;
|
|
68
|
+
description?: string;
|
|
69
|
+
engagementChannelTypeId?: string;
|
|
70
|
+
extendedFields?: Array<{}>;
|
|
71
|
+
parentRecordId: string;
|
|
72
|
+
postalCode?: string;
|
|
73
|
+
schedEndTime?: string;
|
|
74
|
+
schedStartTime?: string;
|
|
75
|
+
serviceTerritoryId?: string;
|
|
76
|
+
state?: string;
|
|
77
|
+
street?: string;
|
|
78
|
+
subject?: string;
|
|
79
|
+
workTypeId?: string;
|
|
80
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
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, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
import { ServiceAppointmentResult as ServiceAppointmentResult_ServiceAppointmentResult } from './ServiceAppointmentResult';
|
|
3
|
+
export declare const VERSION = "09b2befd1e1777ff063639379004b1b7";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
7
|
+
id: string;
|
|
8
|
+
}
|
|
9
|
+
export type ServiceAppointmentOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialServiceAppointmentOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ServiceAppointmentOutputRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentOutputRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: ServiceAppointmentOutputRepresentation, existing: ServiceAppointmentOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceAppointmentOutputRepresentationNormalized;
|
|
16
|
+
export interface DynamicIngestParams {
|
|
17
|
+
result: $64$luvio_engine_ResourceIngest;
|
|
18
|
+
}
|
|
19
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ServiceAppointmentOutputRepresentation, existing: ServiceAppointmentOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ServiceAppointmentOutputRepresentationNormalized;
|
|
20
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
21
|
+
export interface DynamicSelectParams {
|
|
22
|
+
result?: $64$luvio_engine_LinkSelection;
|
|
23
|
+
}
|
|
24
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
25
|
+
export declare function equals(existing: ServiceAppointmentOutputRepresentationNormalized, incoming: ServiceAppointmentOutputRepresentationNormalized): boolean;
|
|
26
|
+
export declare function deepFreeze(input: ServiceAppointmentOutputRepresentation): void;
|
|
27
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
28
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ServiceAppointmentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
29
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
30
|
+
/**
|
|
31
|
+
* Create service appointment output representation
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* id (string): result.serviceAppointmentId
|
|
35
|
+
*/
|
|
36
|
+
export interface ServiceAppointmentOutputRepresentationNormalized {
|
|
37
|
+
result: $64$luvio_engine_StoreLink;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Create service appointment output representation
|
|
41
|
+
*
|
|
42
|
+
* Keys:
|
|
43
|
+
* id (string): result.serviceAppointmentId
|
|
44
|
+
*/
|
|
45
|
+
export interface ServiceAppointmentOutputRepresentation {
|
|
46
|
+
result: ServiceAppointmentResult_ServiceAppointmentResult;
|
|
47
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
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 = "2f0614d98c99215427524626e17e574b";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
6
|
+
id: string;
|
|
7
|
+
}
|
|
8
|
+
export type ServiceAppointmentResultNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
9
|
+
export type PartialServiceAppointmentResultNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ServiceAppointmentResultNormalizedKeyMetadata;
|
|
12
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentResult): string;
|
|
13
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ServiceAppointmentResult): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function normalize(input: ServiceAppointmentResult, existing: ServiceAppointmentResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceAppointmentResultNormalized;
|
|
15
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
16
|
+
export declare function equals(existing: ServiceAppointmentResultNormalized, incoming: ServiceAppointmentResultNormalized): boolean;
|
|
17
|
+
export declare function deepFreeze(input: ServiceAppointmentResult): void;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ServiceAppointmentResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
20
|
+
/**
|
|
21
|
+
* Create Service Appointment results representation
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* id (string): serviceAppointmentId
|
|
25
|
+
*/
|
|
26
|
+
export interface ServiceAppointmentResultNormalized {
|
|
27
|
+
/** Assigned resource IDs */
|
|
28
|
+
assignedResourceIds: Array<string>;
|
|
29
|
+
/** Parent record ID */
|
|
30
|
+
parentRecordId?: string;
|
|
31
|
+
/** Service appointment ID */
|
|
32
|
+
serviceAppointmentId: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Create Service Appointment results representation
|
|
36
|
+
*
|
|
37
|
+
* Keys:
|
|
38
|
+
* id (string): serviceAppointmentId
|
|
39
|
+
*/
|
|
40
|
+
export interface ServiceAppointmentResult {
|
|
41
|
+
assignedResourceIds: Array<string>;
|
|
42
|
+
parentRecordId?: string;
|
|
43
|
+
serviceAppointmentId: string;
|
|
44
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { UpdateServiceAppointmentInputRepresentation as UpdateServiceAppointmentInputRepresentation_UpdateServiceAppointmentInputRepresentation } from './UpdateServiceAppointmentInputRepresentation';
|
|
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 = "612c4dc0271a37240ce46bd52022eb94";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: UpdateServiceAppointmentData, existing: UpdateServiceAppointmentDataNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UpdateServiceAppointmentDataNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: UpdateServiceAppointmentDataNormalized, incoming: UpdateServiceAppointmentDataNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: UpdateServiceAppointmentData): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: UpdateServiceAppointmentData, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* A wrapper around the UpdateServiceAppointmentInputRepresentation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateServiceAppointmentDataNormalized {
|
|
19
|
+
/** The Oas Boday Name for update service data */
|
|
20
|
+
updateServiceAppointmentInput: UpdateServiceAppointmentInputRepresentation_UpdateServiceAppointmentInputRepresentation;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* A wrapper around the UpdateServiceAppointmentInputRepresentation
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface UpdateServiceAppointmentData {
|
|
29
|
+
updateServiceAppointmentInput: UpdateServiceAppointmentInputRepresentation_UpdateServiceAppointmentInputRepresentation;
|
|
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 = "59413d740bd7e0b005b0dfdbaa263932";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: UpdateServiceAppointmentInputRepresentation, existing: UpdateServiceAppointmentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UpdateServiceAppointmentInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: UpdateServiceAppointmentInputRepresentationNormalized, incoming: UpdateServiceAppointmentInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: UpdateServiceAppointmentInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: UpdateServiceAppointmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Update Service Appointment input representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateServiceAppointmentInputRepresentationNormalized {
|
|
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
|
+
* Update Service Appointment input representation
|
|
31
|
+
*
|
|
32
|
+
* Keys:
|
|
33
|
+
* (none)
|
|
34
|
+
*/
|
|
35
|
+
export interface UpdateServiceAppointmentInputRepresentation {
|
|
36
|
+
assignedResources?: Array<{}>;
|
|
37
|
+
lead?: {};
|
|
38
|
+
schedulingPolicyId?: string;
|
|
39
|
+
serviceAppointment: {};
|
|
40
|
+
serviceAppointmentId: string;
|
|
41
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectFreeze: {
|
|
3
|
+
<T extends Function>(f: T): T;
|
|
4
|
+
<T_1 extends {
|
|
5
|
+
[idx: string]: object | U | null | undefined;
|
|
6
|
+
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
7
|
+
<T_2>(o: T_2): Readonly<T_2>;
|
|
8
|
+
}, ObjectKeys: {
|
|
9
|
+
(o: object): string[];
|
|
10
|
+
(o: {}): string[];
|
|
11
|
+
}, ObjectCreate: {
|
|
12
|
+
(o: object | null): any;
|
|
13
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
14
|
+
}, ObjectAssign: {
|
|
15
|
+
<T extends {}, U>(target: T, source: U): T & U;
|
|
16
|
+
<T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
|
|
17
|
+
<T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
|
|
18
|
+
(target: object, ...sources: any[]): any;
|
|
19
|
+
};
|
|
20
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
21
|
+
export declare const JSONStringify: {
|
|
22
|
+
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
|
|
23
|
+
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
|
|
24
|
+
};
|
|
25
|
+
type AllowedPrimitives = boolean | string | number | Date | null;
|
|
26
|
+
type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
|
|
27
|
+
export type RecursivePartial<T> = null | {
|
|
28
|
+
[P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
|
|
29
|
+
};
|
|
30
|
+
export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
|
|
31
|
+
export declare function equalsObject<U, V extends {
|
|
32
|
+
[key: string]: U;
|
|
33
|
+
}>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
|
|
34
|
+
export declare function deepFreeze(value: any): void;
|
|
35
|
+
export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
|
|
36
|
+
__ref: string;
|
|
37
|
+
};
|
|
38
|
+
export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
39
|
+
export {};
|