@digipair/skill-smoobu 0.21.6 → 0.21.7
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/index.cjs.js
CHANGED
|
@@ -27542,7 +27542,9 @@ let SmoobuService = class SmoobuService {
|
|
|
27542
27542
|
const event = (params, pinsSettingsList, context)=>new SmoobuService(context, params).event(params, pinsSettingsList, context);
|
|
27543
27543
|
const getReservationWithId = (params, pinsSettingsList, context)=>new SmoobuService(context, params).getReservationWithId(params, pinsSettingsList, context);
|
|
27544
27544
|
const getAllReservations = (params, pinsSettingsList, context)=>new SmoobuService(context, params).getAllReservations(params, pinsSettingsList, context);
|
|
27545
|
+
const sendMessage = (params, pinsSettingsList, context)=>new SmoobuService(context, params).sendMessage(params, pinsSettingsList, context);
|
|
27545
27546
|
|
|
27546
27547
|
exports.event = event;
|
|
27547
27548
|
exports.getAllReservations = getAllReservations;
|
|
27548
27549
|
exports.getReservationWithId = getReservationWithId;
|
|
27550
|
+
exports.sendMessage = sendMessage;
|
package/index.esm.js
CHANGED
|
@@ -23489,14 +23489,14 @@ function indent(str, spaces) {
|
|
|
23489
23489
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23490
23490
|
// match is required
|
|
23491
23491
|
if (!match) {
|
|
23492
|
-
return
|
|
23492
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
|
23493
23493
|
v: nextMatch1
|
|
23494
23494
|
};
|
|
23495
23495
|
}
|
|
23496
23496
|
var token = match.token, offset = match.offset;
|
|
23497
23497
|
i1 += offset;
|
|
23498
23498
|
if (token === " ") {
|
|
23499
|
-
return
|
|
23499
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23500
23500
|
}
|
|
23501
23501
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
|
23502
23502
|
token
|
|
@@ -23515,7 +23515,7 @@ function indent(str, spaces) {
|
|
|
23515
23515
|
if (contextKeys.some(function(el) {
|
|
23516
23516
|
return el.startsWith(name);
|
|
23517
23517
|
})) {
|
|
23518
|
-
return
|
|
23518
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23519
23519
|
}
|
|
23520
23520
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23521
23521
|
return el === name;
|
|
@@ -23534,9 +23534,9 @@ function indent(str, spaces) {
|
|
|
23534
23534
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23535
23535
|
return el.startsWith(name);
|
|
23536
23536
|
})) {
|
|
23537
|
-
return
|
|
23537
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23538
23538
|
}
|
|
23539
|
-
return
|
|
23539
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
|
23540
23540
|
v: nextMatch1
|
|
23541
23541
|
};
|
|
23542
23542
|
};
|
|
@@ -27520,5 +27520,6 @@ let SmoobuService = class SmoobuService {
|
|
|
27520
27520
|
const event = (params, pinsSettingsList, context)=>new SmoobuService(context, params).event(params, pinsSettingsList, context);
|
|
27521
27521
|
const getReservationWithId = (params, pinsSettingsList, context)=>new SmoobuService(context, params).getReservationWithId(params, pinsSettingsList, context);
|
|
27522
27522
|
const getAllReservations = (params, pinsSettingsList, context)=>new SmoobuService(context, params).getAllReservations(params, pinsSettingsList, context);
|
|
27523
|
+
const sendMessage = (params, pinsSettingsList, context)=>new SmoobuService(context, params).sendMessage(params, pinsSettingsList, context);
|
|
27523
27524
|
|
|
27524
|
-
export { event, getAllReservations, getReservationWithId };
|
|
27525
|
+
export { event, getAllReservations, getReservationWithId, sendMessage };
|
|
@@ -2,3 +2,4 @@ import { PinsSettings } from '@digipair/engine';
|
|
|
2
2
|
export declare const event: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
3
3
|
export declare const getReservationWithId: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
4
4
|
export declare const getAllReservations: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
5
|
+
export declare const sendMessage: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|