@salesforce/lds-adapters-industries-scheduler 1.260.0 → 1.262.0
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.
|
@@ -12,4 +12,4 @@ declare let getNextWaitlistParticipant_imperative: any;
|
|
|
12
12
|
declare let getParticipantRecentInteractions_imperative: any;
|
|
13
13
|
declare let getWaitlistRelationships_imperative: any;
|
|
14
14
|
declare let getWaitlists_imperative: any;
|
|
15
|
-
export { createServiceAppointment, createWaitlistAppointment, createWaitlistCheckIn, getEngagementChannelTypes, getNextWaitlistParticipant, getParticipantRecentInteractions, getWaitlistRelationships, getWaitlists, updateServiceAppointment, getEngagementChannelTypes_imperative, getNextWaitlistParticipant_imperative, getParticipantRecentInteractions_imperative, getWaitlistRelationships_imperative, getWaitlists_imperative };
|
|
15
|
+
export { createServiceAppointment, createWaitlistAppointment, createWaitlistCheckIn, getEngagementChannelTypes, getNextWaitlistParticipant, getParticipantRecentInteractions, getWaitlistRelationships, getWaitlists, updateServiceAppointment, getEngagementChannelTypes_imperative, getNextWaitlistParticipant_imperative, getParticipantRecentInteractions_imperative, getWaitlistRelationships_imperative, getWaitlists_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-scheduler",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
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",
|
|
@@ -40,15 +40,14 @@
|
|
|
40
40
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-scheduler",
|
|
41
41
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-industries-scheduler",
|
|
42
42
|
"start": "nx build:karma && karma start",
|
|
43
|
-
"test": "nx build:karma && karma start --single-run"
|
|
44
|
-
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
43
|
+
"test": "nx build:karma && karma start --single-run"
|
|
45
44
|
},
|
|
46
45
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
46
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
49
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
50
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
52
51
|
},
|
|
53
52
|
"nx": {
|
|
54
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -4027,11 +4027,24 @@ let getNextWaitlistParticipant_imperative;
|
|
|
4027
4027
|
let getParticipantRecentInteractions_imperative;
|
|
4028
4028
|
let getWaitlistRelationships_imperative;
|
|
4029
4029
|
let getWaitlists_imperative;
|
|
4030
|
-
const getEngagementChannelTypesMetadata = {
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4030
|
+
const getEngagementChannelTypesMetadata = {
|
|
4031
|
+
apiFamily: 'IndustriesScheduler',
|
|
4032
|
+
name: 'getEngagementChannelTypes',
|
|
4033
|
+
};
|
|
4034
|
+
const getNextWaitlistParticipantMetadata = {
|
|
4035
|
+
apiFamily: 'IndustriesScheduler',
|
|
4036
|
+
name: 'getNextWaitlistParticipant',
|
|
4037
|
+
};
|
|
4038
|
+
const getParticipantRecentInteractionsMetadata = {
|
|
4039
|
+
apiFamily: 'IndustriesScheduler',
|
|
4040
|
+
name: 'getParticipantRecentInteractions',
|
|
4041
|
+
};
|
|
4042
|
+
const getWaitlistRelationshipsMetadata = {
|
|
4043
|
+
apiFamily: 'IndustriesScheduler',
|
|
4044
|
+
name: 'getWaitlistRelationships',
|
|
4045
|
+
};
|
|
4034
4046
|
const getWaitlistsMetadata = { apiFamily: 'IndustriesScheduler', name: 'getWaitlists' };
|
|
4047
|
+
// Notify Update Available
|
|
4035
4048
|
function bindExportsTo(luvio) {
|
|
4036
4049
|
// LDS Adapters
|
|
4037
4050
|
const getEngagementChannelTypes_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getEngagementChannelTypes', getEngagementChannelTypesAdapterFactory), getEngagementChannelTypesMetadata);
|
|
@@ -4041,7 +4054,7 @@ function bindExportsTo(luvio) {
|
|
|
4041
4054
|
const getWaitlists_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getWaitlists', getWaitlistsAdapterFactory), getWaitlistsMetadata);
|
|
4042
4055
|
function unwrapSnapshotData(factory) {
|
|
4043
4056
|
const adapter = factory(luvio);
|
|
4044
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
4057
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
4045
4058
|
}
|
|
4046
4059
|
return {
|
|
4047
4060
|
createServiceAppointment: unwrapSnapshotData(createServiceAppointmentAdapterFactory),
|
|
@@ -4058,7 +4071,8 @@ function bindExportsTo(luvio) {
|
|
|
4058
4071
|
getNextWaitlistParticipant_imperative: createImperativeAdapter(luvio, getNextWaitlistParticipant_ldsAdapter, getNextWaitlistParticipantMetadata),
|
|
4059
4072
|
getParticipantRecentInteractions_imperative: createImperativeAdapter(luvio, getParticipantRecentInteractions_ldsAdapter, getParticipantRecentInteractionsMetadata),
|
|
4060
4073
|
getWaitlistRelationships_imperative: createImperativeAdapter(luvio, getWaitlistRelationships_ldsAdapter, getWaitlistRelationshipsMetadata),
|
|
4061
|
-
getWaitlists_imperative: createImperativeAdapter(luvio, getWaitlists_ldsAdapter, getWaitlistsMetadata)
|
|
4074
|
+
getWaitlists_imperative: createImperativeAdapter(luvio, getWaitlists_ldsAdapter, getWaitlistsMetadata),
|
|
4075
|
+
// Notify Update Availables
|
|
4062
4076
|
};
|
|
4063
4077
|
}
|
|
4064
4078
|
withDefaultLuvio((luvio) => {
|
|
@@ -4076,9 +4090,9 @@ withDefaultLuvio((luvio) => {
|
|
|
4076
4090
|
getNextWaitlistParticipant_imperative,
|
|
4077
4091
|
getParticipantRecentInteractions_imperative,
|
|
4078
4092
|
getWaitlistRelationships_imperative,
|
|
4079
|
-
getWaitlists_imperative
|
|
4093
|
+
getWaitlists_imperative,
|
|
4080
4094
|
} = bindExportsTo(luvio));
|
|
4081
4095
|
});
|
|
4082
4096
|
|
|
4083
4097
|
export { createServiceAppointment, createWaitlistAppointment, createWaitlistCheckIn, getEngagementChannelTypes, getEngagementChannelTypes_imperative, getNextWaitlistParticipant, getNextWaitlistParticipant_imperative, getParticipantRecentInteractions, getParticipantRecentInteractions_imperative, getWaitlistRelationships, getWaitlistRelationships_imperative, getWaitlists, getWaitlists_imperative, updateServiceAppointment };
|
|
4084
|
-
// version: 1.
|
|
4098
|
+
// version: 1.262.0-d3c071fdc
|