btrz-api-client 9.28.0 → 9.29.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.
@@ -48,6 +48,7 @@ const {
48
48
  * @property {boolean} preventMovementsWhenFareSpecificCapacityLimitsAreExceeded - Prevent moves when fare capacity is exceeded.
49
49
  * @property {boolean} sendSMSNotifications - Enable SMS notifications for ticket movements.
50
50
  * @property {boolean} [allowSendingEmailNotification] - Enable email notifications for ticket movements.
51
+ * @property {boolean} [allowSendingWhatsAppNotification] - Enable WhatsApp notifications for bulk ticket movements.
51
52
  * @property {boolean} [useConfirmationRecipientForNotifications] - Send notifications to the confirmation recipient.
52
53
  * @property {number} maxMovementsPerTicket - Maximum ticket movements without authorization.
53
54
  * @property {number} [maxMovementsPerTicketWithAuthorization] - Maximum ticket movements with authorization.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "btrz-api-client",
3
- "version": "9.28.0",
3
+ "version": "9.29.0",
4
4
  "description": "Api client for Betterez endpoints",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -48,6 +48,7 @@ const {
48
48
  * @property {boolean} preventMovementsWhenFareSpecificCapacityLimitsAreExceeded - Prevent moves when fare capacity is exceeded.
49
49
  * @property {boolean} sendSMSNotifications - Enable SMS notifications for ticket movements.
50
50
  * @property {boolean} [allowSendingEmailNotification] - Enable email notifications for ticket movements.
51
+ * @property {boolean} [allowSendingWhatsAppNotification] - Enable WhatsApp notifications for bulk ticket movements.
51
52
  * @property {boolean} [useConfirmationRecipientForNotifications] - Send notifications to the confirmation recipient.
52
53
  * @property {number} maxMovementsPerTicket - Maximum ticket movements without authorization.
53
54
  * @property {number} [maxMovementsPerTicketWithAuthorization] - Maximum ticket movements with authorization.
@@ -28,6 +28,7 @@ describe("accounts/ticket-movement-settings", () => {
28
28
  preventMovementsWhenFareSpecificCapacityLimitsAreExceeded: true,
29
29
  sendSMSNotifications: true,
30
30
  allowSendingEmailNotification: true,
31
+ allowSendingWhatsAppNotification: false,
31
32
  useConfirmationRecipientForNotifications: false,
32
33
  maxMovementsPerTicket: 1,
33
34
  maxMovementsPerTicketWithAuthorization: 2,