@salesforce/lds-adapters-industries-scheduler 1.286.0 → 1.287.0-dev2
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/industries-scheduler.js +338 -117
- package/dist/es/es2018/types/src/generated/types/AppointmentChannelRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/GroupAppointmentResult.d.ts +10 -4
- package/dist/es/es2018/types/src/generated/types/ServiceResourceRepresentation.d.ts +31 -0
- package/package.json +4 -4
- package/sfdc/index.js +419 -198
- package/src/raml/api.raml +39 -5
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "d7e0cb4e89f9dd3842fa2a5bdd0a27d0";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AppointmentChannelRepresentation, existing: AppointmentChannelRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppointmentChannelRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AppointmentChannelRepresentationNormalized, incoming: AppointmentChannelRepresentationNormalized): 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: AppointmentChannelRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Appointment Channel representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface AppointmentChannelRepresentationNormalized {
|
|
17
|
+
/** Appointment Type */
|
|
18
|
+
appointmentType?: string;
|
|
19
|
+
/** EngagementChannelType Id */
|
|
20
|
+
engagementChannelTypeId?: string;
|
|
21
|
+
/** EngagementChannelType Name */
|
|
22
|
+
engagementChannelTypeName?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Appointment Channel representation
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface AppointmentChannelRepresentation {
|
|
31
|
+
appointmentType?: string;
|
|
32
|
+
engagementChannelTypeId?: string;
|
|
33
|
+
engagementChannelTypeName?: string;
|
|
34
|
+
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { AppointmentChannelRepresentation as AppointmentChannelRepresentation_AppointmentChannelRepresentation } from './AppointmentChannelRepresentation';
|
|
1
2
|
import { ExtendedFieldsOutputRepresentation as ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation } from './ExtendedFieldsOutputRepresentation';
|
|
3
|
+
import { ServiceResourceRepresentation as ServiceResourceRepresentation_ServiceResourceRepresentation } from './ServiceResourceRepresentation';
|
|
4
|
+
import { WorkTypeGroupRepresentation as WorkTypeGroupRepresentation_WorkTypeGroupRepresentation } from './WorkTypeGroupRepresentation';
|
|
2
5
|
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 = "
|
|
6
|
+
export declare const VERSION = "ab6792274f598551855e829fe9222cd6";
|
|
4
7
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
8
|
export declare const RepresentationType: string;
|
|
6
9
|
export declare function normalize(input: GroupAppointmentResult, existing: GroupAppointmentResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GroupAppointmentResultNormalized;
|
|
@@ -15,6 +18,7 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
15
18
|
* (none)
|
|
16
19
|
*/
|
|
17
20
|
export interface GroupAppointmentResultNormalized {
|
|
21
|
+
appointmentChannel?: AppointmentChannelRepresentation_AppointmentChannelRepresentation;
|
|
18
22
|
/** Service Appointment Id */
|
|
19
23
|
appointmentId?: string;
|
|
20
24
|
/** Attendee Count */
|
|
@@ -29,12 +33,12 @@ export interface GroupAppointmentResultNormalized {
|
|
|
29
33
|
extendedFields?: Array<ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation>;
|
|
30
34
|
/** Parent Record Id */
|
|
31
35
|
parentRecordId?: string;
|
|
32
|
-
|
|
33
|
-
resourceIds?: Array<string>;
|
|
36
|
+
resource?: ServiceResourceRepresentation_ServiceResourceRepresentation;
|
|
34
37
|
/** Start Time */
|
|
35
38
|
startTime?: string;
|
|
36
39
|
/** Service Territory Id */
|
|
37
40
|
territoryId?: string;
|
|
41
|
+
workTypeGroup?: WorkTypeGroupRepresentation_WorkTypeGroupRepresentation;
|
|
38
42
|
/** Work Type Id */
|
|
39
43
|
workTypeId?: string;
|
|
40
44
|
}
|
|
@@ -45,6 +49,7 @@ export interface GroupAppointmentResultNormalized {
|
|
|
45
49
|
* (none)
|
|
46
50
|
*/
|
|
47
51
|
export interface GroupAppointmentResult {
|
|
52
|
+
appointmentChannel?: AppointmentChannelRepresentation_AppointmentChannelRepresentation;
|
|
48
53
|
appointmentId?: string;
|
|
49
54
|
attendeeCount?: number;
|
|
50
55
|
attendeeLimit?: number;
|
|
@@ -52,8 +57,9 @@ export interface GroupAppointmentResult {
|
|
|
52
57
|
engagementChannelTypeId?: string;
|
|
53
58
|
extendedFields?: Array<ExtendedFieldsOutputRepresentation_ExtendedFieldsOutputRepresentation>;
|
|
54
59
|
parentRecordId?: string;
|
|
55
|
-
|
|
60
|
+
resource?: ServiceResourceRepresentation_ServiceResourceRepresentation;
|
|
56
61
|
startTime?: string;
|
|
57
62
|
territoryId?: string;
|
|
63
|
+
workTypeGroup?: WorkTypeGroupRepresentation_WorkTypeGroupRepresentation;
|
|
58
64
|
workTypeId?: string;
|
|
59
65
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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 = "c20b4853fc9dcf179a2b0f54d4b77be8";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ServiceResourceRepresentation, existing: ServiceResourceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceResourceRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ServiceResourceRepresentationNormalized, incoming: ServiceResourceRepresentationNormalized): 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: ServiceResourceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Service Resource representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ServiceResourceRepresentationNormalized {
|
|
17
|
+
/** ServiceResource ID */
|
|
18
|
+
id?: string;
|
|
19
|
+
/** ServiceResource Name */
|
|
20
|
+
name?: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Service Resource representation
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ServiceResourceRepresentation {
|
|
29
|
+
id?: string;
|
|
30
|
+
name?: string;
|
|
31
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-scheduler",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.287.0-dev2",
|
|
4
4
|
"description": "Wire adapters for Lightning Scheduler resources",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-scheduler.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:unit": "jest"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.287.0-dev2"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.287.0-dev2",
|
|
51
|
+
"@salesforce/lds-karma": "^1.287.0-dev2"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|