@salesforce/lds-adapters-industries-scheduler 1.261.0 → 1.262.1
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.1",
|
|
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.1"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
49
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1",
|
|
50
|
+
"@salesforce/lds-karma": "^1.262.1"
|
|
52
51
|
},
|
|
53
52
|
"nx": {
|
|
54
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -4027,10 +4027,22 @@ 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' };
|
|
4035
4047
|
// Notify Update Available
|
|
4036
4048
|
function bindExportsTo(luvio) {
|
|
@@ -4042,7 +4054,7 @@ function bindExportsTo(luvio) {
|
|
|
4042
4054
|
const getWaitlists_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getWaitlists', getWaitlistsAdapterFactory), getWaitlistsMetadata);
|
|
4043
4055
|
function unwrapSnapshotData(factory) {
|
|
4044
4056
|
const adapter = factory(luvio);
|
|
4045
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
4057
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
4046
4058
|
}
|
|
4047
4059
|
return {
|
|
4048
4060
|
createServiceAppointment: unwrapSnapshotData(createServiceAppointmentAdapterFactory),
|
|
@@ -4083,4 +4095,4 @@ withDefaultLuvio((luvio) => {
|
|
|
4083
4095
|
});
|
|
4084
4096
|
|
|
4085
4097
|
export { createServiceAppointment, createWaitlistAppointment, createWaitlistCheckIn, getEngagementChannelTypes, getEngagementChannelTypes_imperative, getNextWaitlistParticipant, getNextWaitlistParticipant_imperative, getParticipantRecentInteractions, getParticipantRecentInteractions_imperative, getWaitlistRelationships, getWaitlistRelationships_imperative, getWaitlists, getWaitlists_imperative, updateServiceAppointment };
|
|
4086
|
-
// version: 1.
|
|
4098
|
+
// version: 1.262.1-9a1924e93
|