btrz-api-client 8.29.0 → 8.31.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.
- package/.cursor/rules/jsdoc-endpoints.mdc +23 -0
- package/docs/plans/2026-03-05-btrz-api-client-jsdoc.md +110 -0
- package/lib/client-standalone-min.js +2 -2
- package/lib/client.js +90 -0
- package/lib/constants.js +4 -0
- package/lib/endpoints/accounts/accounts.js +28 -1
- package/lib/endpoints/accounts/application-settings.js +62 -1
- package/lib/endpoints/accounts/application.js +18 -1
- package/lib/endpoints/accounts/applications.js +28 -1
- package/lib/endpoints/accounts/current-shifts.js +24 -2
- package/lib/endpoints/accounts/customers.js +84 -1
- package/lib/endpoints/accounts/docs.js +10 -0
- package/lib/endpoints/accounts/domains.js +35 -1
- package/lib/endpoints/accounts/dynamic-forms.js +121 -0
- package/lib/endpoints/accounts/email-settings.js +55 -1
- package/lib/endpoints/accounts/email-templates.js +121 -0
- package/lib/endpoints/accounts/exchange-rates.js +28 -0
- package/lib/endpoints/accounts/exchange-receipts.js +26 -0
- package/lib/endpoints/accounts/goal-settings.js +26 -0
- package/lib/endpoints/accounts/images.js +46 -1
- package/lib/endpoints/accounts/interline.js +91 -0
- package/lib/endpoints/accounts/journey-prices-settings.js +26 -0
- package/lib/endpoints/accounts/lexicons.js +79 -4
- package/lib/endpoints/accounts/market-pricing-settings.js +26 -0
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +26 -0
- package/lib/endpoints/accounts/network.js +68 -0
- package/lib/endpoints/accounts/operation-settings.js +26 -0
- package/lib/endpoints/accounts/people-lookups.js +78 -0
- package/lib/endpoints/accounts/point-to-point-settings.js +26 -0
- package/lib/endpoints/accounts/print-settings.js +26 -1
- package/lib/endpoints/accounts/print-templates.js +98 -1
- package/lib/endpoints/accounts/printers.js +17 -1
- package/lib/endpoints/accounts/rms-settings.js +26 -0
- package/lib/endpoints/accounts/s3buckets.js +37 -0
- package/lib/endpoints/accounts/salesforce-settings.js +26 -0
- package/lib/endpoints/accounts/shift-settings.js +26 -0
- package/lib/endpoints/accounts/shifts.js +319 -0
- package/lib/endpoints/accounts/sms-templates.js +115 -0
- package/lib/endpoints/accounts/sub-print-templates.js +19 -2
- package/lib/endpoints/accounts/ticket-movement-settings.js +26 -0
- package/lib/endpoints/accounts/tokens.js +35 -1
- package/lib/endpoints/accounts/transport-regulation-settings.js +26 -0
- package/lib/endpoints/accounts/travellers.js +73 -1
- package/lib/endpoints/accounts/trusted-machines.js +45 -1
- package/lib/endpoints/accounts/twilio-settings.js +26 -0
- package/lib/endpoints/accounts/users.js +173 -1
- package/lib/endpoints/accounts/websales-config.js +36 -1
- package/lib/endpoints/btrzpay/cardpointe.js +57 -0
- package/lib/endpoints/btrzpay/customerCards.js +53 -2
- package/lib/endpoints/btrzpay/customers.js +40 -1
- package/lib/endpoints/btrzpay/datalogic.js +63 -1
- package/lib/endpoints/btrzpay/docs.js +11 -0
- package/lib/endpoints/btrzpay/oxxo.js +62 -4
- package/lib/endpoints/btrzpay/payment-methods.js +115 -2
- package/lib/endpoints/btrzpay/payments.js +28 -2
- package/lib/endpoints/btrzpay/prismaTerminals.js +140 -0
- package/lib/endpoints/btrzpay/reference-numbers.js +19 -2
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -1
- package/lib/endpoints/btrzpay/square.js +35 -1
- package/lib/endpoints/btrzpay/stripe-terminals.js +34 -0
- package/lib/endpoints/btrzpay/terminalPayments.js +56 -0
- package/lib/endpoints/coltrane/docs.js +10 -0
- package/lib/endpoints/coltrane/merged-fare-tables.js +20 -0
- package/lib/endpoints/coltrane/paths.js +30 -0
- package/lib/endpoints/endpoints_helpers.js +11 -1
- package/lib/endpoints/gps/scanner-app-location.js +25 -1
- package/lib/endpoints/inventory/amenities.js +56 -2
- package/lib/endpoints/inventory/amenity-groups.js +57 -2
- package/lib/endpoints/inventory/banks.js +54 -0
- package/lib/endpoints/inventory/bare-routes.js +42 -1
- package/lib/endpoints/inventory/brands.js +56 -2
- package/lib/endpoints/inventory/bundle-fares.js +28 -2
- package/lib/endpoints/inventory/bundles.js +36 -2
- package/lib/endpoints/inventory/change-requests.js +95 -0
- package/lib/endpoints/inventory/companies.js +27 -2
- package/lib/endpoints/inventory/control-classes.js +86 -0
- package/lib/endpoints/inventory/countries.js +33 -0
- package/lib/endpoints/inventory/custom-content.js +63 -1
- package/lib/endpoints/inventory/custom-fields.js +63 -1
- package/lib/endpoints/inventory/docs.js +10 -0
- package/lib/endpoints/inventory/document-types.js +64 -1
- package/lib/endpoints/inventory/external-passes.js +41 -0
- package/lib/endpoints/inventory/external-wallets.js +55 -0
- package/lib/endpoints/inventory/fallback-codes.js +52 -0
- package/lib/endpoints/inventory/fare-classes.js +46 -2
- package/lib/endpoints/inventory/fares.js +78 -2
- package/lib/endpoints/inventory/fees.js +55 -2
- package/lib/endpoints/inventory/filtered-trips-v2.js +19 -2
- package/lib/endpoints/inventory/filtered-trips.js +39 -0
- package/lib/endpoints/inventory/financing-costs.js +69 -0
- package/lib/endpoints/inventory/garages.js +63 -1
- package/lib/endpoints/inventory/getnet-terminals.js +63 -0
- package/lib/endpoints/inventory/gift-certificate-definitions.js +62 -0
- package/lib/endpoints/inventory/healthcheck.js +11 -5
- package/lib/endpoints/inventory/insurances.js +62 -1
- package/lib/endpoints/inventory/insurancesCost.js +28 -1
- package/lib/endpoints/inventory/items.js +77 -0
- package/lib/endpoints/inventory/journey-prices.js +91 -2
- package/lib/endpoints/inventory/labels.js +62 -0
- package/lib/endpoints/inventory/marital-status.js +62 -1
- package/lib/endpoints/inventory/marketplace-modifiers.js +67 -0
- package/lib/endpoints/inventory/mit-terminal-settings.js +54 -0
- package/lib/endpoints/inventory/mit-terminals.js +54 -0
- package/lib/endpoints/inventory/operating-companies.js +99 -2
- package/lib/endpoints/inventory/operation-messages.js +77 -3
- package/lib/endpoints/inventory/operation-reasons.js +61 -0
- package/lib/endpoints/inventory/parcel-zones.js +43 -2
- package/lib/endpoints/inventory/pay-on-accounts.js +30 -0
- package/lib/endpoints/inventory/payment-terminals.js +53 -2
- package/lib/endpoints/inventory/prisma-terminals.js +64 -0
- package/lib/endpoints/inventory/products.js +91 -0
- package/lib/endpoints/inventory/promos.js +113 -1
- package/lib/endpoints/inventory/routes.js +282 -0
- package/lib/endpoints/inventory/schedule-groups.js +52 -0
- package/lib/endpoints/inventory/schedules.js +126 -0
- package/lib/endpoints/inventory/seatclasses.js +54 -0
- package/lib/endpoints/inventory/seatfees.js +53 -2
- package/lib/endpoints/inventory/seatmaps.js +113 -1
- package/lib/endpoints/inventory/segments-information-tables.js +25 -0
- package/lib/endpoints/inventory/segments-information.js +62 -0
- package/lib/endpoints/inventory/service-numbers.js +55 -1
- package/lib/endpoints/inventory/service-types.js +53 -2
- package/lib/endpoints/inventory/ssrs.js +31 -2
- package/lib/endpoints/inventory/station-classes.js +62 -0
- package/lib/endpoints/inventory/station-groups.js +24 -0
- package/lib/endpoints/inventory/stations-provinces.js +17 -0
- package/lib/endpoints/inventory/stations-zones.js +24 -0
- package/lib/endpoints/inventory/stations.js +70 -1
- package/lib/endpoints/inventory/taxes.js +103 -2
- package/lib/endpoints/inventory/travel-routes.js +54 -1
- package/lib/endpoints/inventory/traveller-card-providers-types.js +17 -1
- package/lib/endpoints/inventory/traveller-card-providers.js +46 -1
- package/lib/endpoints/inventory/traveller-card-types.js +62 -1
- package/lib/endpoints/inventory/trips.js +26 -1
- package/lib/endpoints/inventory/vehicle-types.js +14 -6
- package/lib/endpoints/inventory/vehicles.js +100 -1
- package/lib/endpoints/inventory/zone-price-overages.js +53 -2
- package/lib/endpoints/inventory/zone-prices.js +64 -2
- package/lib/endpoints/invoices/dlink.js +38 -1
- package/lib/endpoints/invoices/docs.js +10 -0
- package/lib/endpoints/invoices/emails.js +20 -1
- package/lib/endpoints/invoices/gti.js +37 -1
- package/lib/endpoints/invoices/infile.js +37 -1
- package/lib/endpoints/invoices/infileJson.js +37 -1
- package/lib/endpoints/invoices/invoices.js +68 -1
- package/lib/endpoints/invoices/pdfs.js +27 -1
- package/lib/endpoints/invoices/providers.js +67 -1
- package/lib/endpoints/invoices/providersSequences.js +61 -1
- package/lib/endpoints/invoices/system.js +37 -1
- package/lib/endpoints/invoices/tax-ids.js +29 -1
- package/lib/endpoints/loyalty/movements.js +50 -1
- package/lib/endpoints/loyalty/programs.js +45 -2
- package/lib/endpoints/notifications/customers.js +53 -1
- package/lib/endpoints/notifications/email.js +29 -1
- package/lib/endpoints/notifications/manifest-notifications.js +34 -1
- package/lib/endpoints/notifications/notify.js +71 -0
- package/lib/endpoints/notifications/orders-rules-validations.js +19 -1
- package/lib/endpoints/notifications/pdf-data.js +57 -5
- package/lib/endpoints/notifications/pdfs.js +28 -0
- package/lib/endpoints/notifications/printed-tickets.js +34 -2
- package/lib/endpoints/notifications/salesforce.js +19 -2
- package/lib/endpoints/notifications/twilio.js +47 -2
- package/lib/endpoints/operations/accounting_items.js +35 -0
- package/lib/endpoints/operations/applied_insurance.js +24 -2
- package/lib/endpoints/operations/calendar_entries.js +27 -2
- package/lib/endpoints/operations/docs.js +13 -1
- package/lib/endpoints/operations/external-bookings.js +27 -0
- package/lib/endpoints/operations/flexpasses.js +20 -1
- package/lib/endpoints/operations/loans.js +37 -1
- package/lib/endpoints/operations/manifest.js +378 -0
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +19 -2
- package/lib/endpoints/operations/movements.js +19 -1
- package/lib/endpoints/operations/outlook-trips.js +37 -2
- package/lib/endpoints/operations/parcels.js +79 -2
- package/lib/endpoints/operations/parcels_manifests.js +84 -0
- package/lib/endpoints/operations/passenger_check_in_info.js +55 -1
- package/lib/endpoints/operations/redemption.js +38 -1
- package/lib/endpoints/operations/rms.js +61 -0
- package/lib/endpoints/operations/scheduled_notifications.js +62 -1
- package/lib/endpoints/operations/segments.js +27 -2
- package/lib/endpoints/operations/sold-items-fulfillment.js +24 -0
- package/lib/endpoints/operations/sold-items.js +42 -0
- package/lib/endpoints/operations/tickets.js +74 -0
- package/lib/endpoints/operations/transaction.js +20 -2
- package/lib/endpoints/operations/transactions.js +117 -0
- package/lib/endpoints/operations/transport_regulations.js +19 -1
- package/lib/endpoints/operations/trip_change_info.js +32 -2
- package/lib/endpoints/operations/vehicle_assignments.js +59 -0
- package/lib/endpoints/operations/vouchers.js +28 -0
- package/lib/endpoints/operations/waitlists.js +56 -1
- package/lib/endpoints/ratality/auth.js +14 -0
- package/lib/endpoints/ratality/clients.js +25 -0
- package/lib/endpoints/ratality/integrations.js +33 -0
- package/lib/endpoints/reports/custom-reports.js +45 -1
- package/lib/endpoints/reports/email.js +19 -0
- package/lib/endpoints/reports/report-types.js +31 -3
- package/lib/endpoints/reports/trip-manifests.js +27 -1
- package/lib/endpoints/sales/bundles.js +26 -2
- package/lib/endpoints/sales/cancellations.js +2 -2
- package/lib/endpoints/sales/cart-promo.js +29 -2
- package/lib/endpoints/sales/cart.js +167 -0
- package/lib/endpoints/sales/check-in-info.js +20 -1
- package/lib/endpoints/sales/custom-fields.js +25 -2
- package/lib/endpoints/sales/docs.js +10 -0
- package/lib/endpoints/sales/flexpasses.js +20 -1
- package/lib/endpoints/sales/gift-certificates.js +27 -1
- package/lib/endpoints/sales/order.js +52 -0
- package/lib/endpoints/sales/parcel-quotes.js +19 -0
- package/lib/endpoints/sales/payment-providers.js +28 -2
- package/lib/endpoints/sales/redeemable-items.js +45 -2
- package/lib/endpoints/sales/sync-entry.js +20 -2
- package/lib/endpoints/sales/voucher.js +44 -1
- package/lib/endpoints/seatmaps/access-ticket.js +18 -2
- package/lib/endpoints/seatmaps/seat.js +19 -2
- package/lib/endpoints/uploads/files.js +20 -2
- package/lib/endpoints/uploads/images.js +20 -2
- package/lib/endpoints/webhooks/events.js +26 -2
- package/lib/endpoints/webhooks/subscriptions.js +63 -2
- package/lib/endpoints/webhooks/undelivered.js +79 -2
- package/lib/endpoints/webhooks/webhooks.js +19 -2
- package/lib/productionDefaults.js +4 -0
- package/package.json +5 -7
- package/src/client.js +90 -0
- package/src/constants.js +4 -0
- package/src/endpoints/accounts/accounts.js +26 -1
- package/src/endpoints/accounts/application-settings.js +60 -1
- package/src/endpoints/accounts/application.js +17 -2
- package/src/endpoints/accounts/applications.js +26 -1
- package/src/endpoints/accounts/current-shifts.js +24 -2
- package/src/endpoints/accounts/customers.js +83 -2
- package/src/endpoints/accounts/docs.js +10 -0
- package/src/endpoints/accounts/domains.js +33 -1
- package/src/endpoints/accounts/dynamic-forms.js +115 -0
- package/src/endpoints/accounts/email-settings.js +53 -1
- package/src/endpoints/accounts/email-templates.js +119 -0
- package/src/endpoints/accounts/exchange-rates.js +26 -0
- package/src/endpoints/accounts/exchange-receipts.js +24 -0
- package/src/endpoints/accounts/goal-settings.js +24 -0
- package/src/endpoints/accounts/images.js +44 -1
- package/src/endpoints/accounts/interline.js +85 -0
- package/src/endpoints/accounts/journey-prices-settings.js +24 -0
- package/src/endpoints/accounts/lexicons.js +77 -4
- package/src/endpoints/accounts/market-pricing-settings.js +24 -0
- package/src/endpoints/accounts/multiproduct-sales-settings.js +24 -0
- package/src/endpoints/accounts/network.js +61 -0
- package/src/endpoints/accounts/operation-settings.js +24 -0
- package/src/endpoints/accounts/people-lookups.js +76 -0
- package/src/endpoints/accounts/point-to-point-settings.js +24 -0
- package/src/endpoints/accounts/print-settings.js +24 -1
- package/src/endpoints/accounts/print-templates.js +98 -3
- package/src/endpoints/accounts/printers.js +15 -1
- package/src/endpoints/accounts/rms-settings.js +24 -0
- package/src/endpoints/accounts/s3buckets.js +35 -0
- package/src/endpoints/accounts/salesforce-settings.js +24 -0
- package/src/endpoints/accounts/shift-settings.js +24 -0
- package/src/endpoints/accounts/shifts.js +313 -0
- package/src/endpoints/accounts/sms-templates.js +113 -0
- package/src/endpoints/accounts/sub-print-templates.js +17 -2
- package/src/endpoints/accounts/ticket-movement-settings.js +24 -0
- package/src/endpoints/accounts/tokens.js +33 -1
- package/src/endpoints/accounts/transport-regulation-settings.js +24 -0
- package/src/endpoints/accounts/travellers.js +71 -1
- package/src/endpoints/accounts/trusted-machines.js +43 -1
- package/src/endpoints/accounts/twilio-settings.js +24 -0
- package/src/endpoints/accounts/users.js +167 -1
- package/src/endpoints/accounts/websales-config.js +34 -1
- package/src/endpoints/btrzpay/cardpointe.js +56 -2
- package/src/endpoints/btrzpay/customerCards.js +52 -2
- package/src/endpoints/btrzpay/customers.js +39 -1
- package/src/endpoints/btrzpay/datalogic.js +59 -1
- package/src/endpoints/btrzpay/docs.js +11 -0
- package/src/endpoints/btrzpay/oxxo.js +58 -4
- package/src/endpoints/btrzpay/payment-methods.js +120 -9
- package/src/endpoints/btrzpay/payments.js +30 -6
- package/src/endpoints/btrzpay/prismaTerminals.js +130 -0
- package/src/endpoints/btrzpay/reference-numbers.js +20 -5
- package/src/endpoints/btrzpay/referenced-payments.js +38 -2
- package/src/endpoints/btrzpay/square.js +33 -1
- package/src/endpoints/btrzpay/stripe-terminals.js +32 -0
- package/src/endpoints/btrzpay/terminalPayments.js +53 -0
- package/src/endpoints/coltrane/docs.js +10 -0
- package/src/endpoints/coltrane/merged-fare-tables.js +18 -0
- package/src/endpoints/coltrane/paths.js +28 -0
- package/src/endpoints/endpoints_helpers.js +11 -1
- package/src/endpoints/gps/scanner-app-location.js +25 -1
- package/src/endpoints/inventory/amenities.js +60 -8
- package/src/endpoints/inventory/amenity-groups.js +61 -8
- package/src/endpoints/inventory/banks.js +52 -0
- package/src/endpoints/inventory/bare-routes.js +40 -1
- package/src/endpoints/inventory/brands.js +62 -10
- package/src/endpoints/inventory/bundle-fares.js +27 -4
- package/src/endpoints/inventory/bundles.js +37 -5
- package/src/endpoints/inventory/change-requests.js +89 -0
- package/src/endpoints/inventory/companies.js +27 -4
- package/src/endpoints/inventory/control-classes.js +84 -0
- package/src/endpoints/inventory/countries.js +31 -0
- package/src/endpoints/inventory/custom-content.js +63 -3
- package/src/endpoints/inventory/custom-fields.js +61 -1
- package/src/endpoints/inventory/docs.js +10 -0
- package/src/endpoints/inventory/document-types.js +62 -1
- package/src/endpoints/inventory/external-passes.js +39 -0
- package/src/endpoints/inventory/external-wallets.js +53 -0
- package/src/endpoints/inventory/fallback-codes.js +50 -0
- package/src/endpoints/inventory/fare-classes.js +50 -8
- package/src/endpoints/inventory/fares.js +86 -15
- package/src/endpoints/inventory/fees.js +62 -12
- package/src/endpoints/inventory/filtered-trips-v2.js +17 -2
- package/src/endpoints/inventory/filtered-trips.js +37 -0
- package/src/endpoints/inventory/financing-costs.js +67 -0
- package/src/endpoints/inventory/garages.js +61 -1
- package/src/endpoints/inventory/getnet-terminals.js +61 -0
- package/src/endpoints/inventory/gift-certificate-definitions.js +60 -0
- package/src/endpoints/inventory/healthcheck.js +11 -3
- package/src/endpoints/inventory/insurances.js +61 -2
- package/src/endpoints/inventory/insurancesCost.js +26 -1
- package/src/endpoints/inventory/items.js +75 -0
- package/src/endpoints/inventory/journey-prices.js +98 -12
- package/src/endpoints/inventory/labels.js +60 -0
- package/src/endpoints/inventory/marital-status.js +60 -1
- package/src/endpoints/inventory/marketplace-modifiers.js +65 -0
- package/src/endpoints/inventory/mit-terminal-settings.js +52 -0
- package/src/endpoints/inventory/mit-terminals.js +52 -0
- package/src/endpoints/inventory/operating-companies.js +101 -9
- package/src/endpoints/inventory/operation-messages.js +81 -9
- package/src/endpoints/inventory/operation-reasons.js +59 -0
- package/src/endpoints/inventory/parcel-zones.js +50 -11
- package/src/endpoints/inventory/pay-on-accounts.js +28 -0
- package/src/endpoints/inventory/payment-terminals.js +53 -4
- package/src/endpoints/inventory/prisma-terminals.js +62 -0
- package/src/endpoints/inventory/products.js +89 -0
- package/src/endpoints/inventory/promos.js +111 -1
- package/src/endpoints/inventory/routes.js +270 -0
- package/src/endpoints/inventory/schedule-groups.js +50 -0
- package/src/endpoints/inventory/schedules.js +124 -0
- package/src/endpoints/inventory/seatclasses.js +52 -0
- package/src/endpoints/inventory/seatfees.js +52 -3
- package/src/endpoints/inventory/seatmaps.js +111 -1
- package/src/endpoints/inventory/segments-information-tables.js +23 -0
- package/src/endpoints/inventory/segments-information.js +60 -0
- package/src/endpoints/inventory/service-numbers.js +55 -3
- package/src/endpoints/inventory/service-types.js +52 -3
- package/src/endpoints/inventory/ssrs.js +33 -7
- package/src/endpoints/inventory/station-classes.js +60 -0
- package/src/endpoints/inventory/station-groups.js +22 -0
- package/src/endpoints/inventory/stations-provinces.js +15 -0
- package/src/endpoints/inventory/stations-zones.js +22 -0
- package/src/endpoints/inventory/stations.js +71 -4
- package/src/endpoints/inventory/taxes.js +97 -2
- package/src/endpoints/inventory/travel-routes.js +52 -1
- package/src/endpoints/inventory/traveller-card-providers-types.js +15 -1
- package/src/endpoints/inventory/traveller-card-providers.js +45 -2
- package/src/endpoints/inventory/traveller-card-types.js +60 -1
- package/src/endpoints/inventory/trips.js +26 -3
- package/src/endpoints/inventory/vehicle-types.js +12 -6
- package/src/endpoints/inventory/vehicles.js +97 -1
- package/src/endpoints/inventory/zone-price-overages.js +51 -2
- package/src/endpoints/inventory/zone-prices.js +62 -2
- package/src/endpoints/invoices/dlink.js +36 -1
- package/src/endpoints/invoices/docs.js +10 -0
- package/src/endpoints/invoices/emails.js +18 -1
- package/src/endpoints/invoices/gti.js +35 -1
- package/src/endpoints/invoices/infile.js +35 -1
- package/src/endpoints/invoices/infileJson.js +35 -1
- package/src/endpoints/invoices/invoices.js +66 -1
- package/src/endpoints/invoices/pdfs.js +25 -1
- package/src/endpoints/invoices/providers.js +65 -1
- package/src/endpoints/invoices/providersSequences.js +59 -1
- package/src/endpoints/invoices/system.js +35 -1
- package/src/endpoints/invoices/tax-ids.js +27 -1
- package/src/endpoints/loyalty/movements.js +52 -6
- package/src/endpoints/loyalty/programs.js +49 -9
- package/src/endpoints/notifications/customers.js +51 -1
- package/src/endpoints/notifications/email.js +27 -1
- package/src/endpoints/notifications/manifest-notifications.js +32 -1
- package/src/endpoints/notifications/notify.js +69 -0
- package/src/endpoints/notifications/orders-rules-validations.js +17 -1
- package/src/endpoints/notifications/pdf-data.js +60 -5
- package/src/endpoints/notifications/pdfs.js +26 -0
- package/src/endpoints/notifications/printed-tickets.js +32 -3
- package/src/endpoints/notifications/salesforce.js +17 -2
- package/src/endpoints/notifications/twilio.js +44 -2
- package/src/endpoints/operations/accounting_items.js +33 -0
- package/src/endpoints/operations/applied_insurance.js +28 -6
- package/src/endpoints/operations/calendar_entries.js +28 -5
- package/src/endpoints/operations/docs.js +12 -1
- package/src/endpoints/operations/external-bookings.js +25 -0
- package/src/endpoints/operations/flexpasses.js +18 -1
- package/src/endpoints/operations/loans.js +35 -1
- package/src/endpoints/operations/manifest.js +372 -0
- package/src/endpoints/operations/manifest_leg_for_tickets.js +20 -5
- package/src/endpoints/operations/movements.js +20 -5
- package/src/endpoints/operations/outlook-trips.js +34 -3
- package/src/endpoints/operations/parcels.js +82 -7
- package/src/endpoints/operations/parcels_manifests.js +81 -0
- package/src/endpoints/operations/passenger_check_in_info.js +53 -1
- package/src/endpoints/operations/redemption.js +36 -1
- package/src/endpoints/operations/rms.js +58 -0
- package/src/endpoints/operations/scheduled_notifications.js +65 -6
- package/src/endpoints/operations/segments.js +27 -4
- package/src/endpoints/operations/sold-items-fulfillment.js +22 -0
- package/src/endpoints/operations/sold-items.js +40 -0
- package/src/endpoints/operations/tickets.js +72 -0
- package/src/endpoints/operations/transaction.js +22 -6
- package/src/endpoints/operations/transactions.js +115 -0
- package/src/endpoints/operations/transport_regulations.js +17 -1
- package/src/endpoints/operations/trip_change_info.js +32 -4
- package/src/endpoints/operations/vehicle_assignments.js +54 -0
- package/src/endpoints/operations/vouchers.js +26 -0
- package/src/endpoints/operations/waitlists.js +58 -5
- package/src/endpoints/ratality/auth.js +14 -0
- package/src/endpoints/ratality/clients.js +23 -0
- package/src/endpoints/ratality/integrations.js +31 -0
- package/src/endpoints/reports/custom-reports.js +47 -5
- package/src/endpoints/reports/email.js +17 -0
- package/src/endpoints/reports/report-types.js +31 -5
- package/src/endpoints/reports/trip-manifests.js +27 -3
- package/src/endpoints/sales/bundles.js +26 -4
- package/src/endpoints/sales/cancellations.js +2 -2
- package/src/endpoints/sales/cart-promo.js +33 -8
- package/src/endpoints/sales/cart.js +163 -0
- package/src/endpoints/sales/check-in-info.js +22 -5
- package/src/endpoints/sales/custom-fields.js +25 -4
- package/src/endpoints/sales/docs.js +10 -0
- package/src/endpoints/sales/flexpasses.js +18 -1
- package/src/endpoints/sales/gift-certificates.js +25 -1
- package/src/endpoints/sales/order.js +50 -0
- package/src/endpoints/sales/parcel-quotes.js +18 -1
- package/src/endpoints/sales/payment-providers.js +29 -6
- package/src/endpoints/sales/redeemable-items.js +44 -3
- package/src/endpoints/sales/sync-entry.js +20 -5
- package/src/endpoints/sales/voucher.js +42 -1
- package/src/endpoints/seatmaps/access-ticket.js +20 -6
- package/src/endpoints/seatmaps/seat.js +20 -5
- package/src/endpoints/uploads/files.js +21 -5
- package/src/endpoints/uploads/images.js +21 -7
- package/src/endpoints/webhooks/events.js +28 -6
- package/src/endpoints/webhooks/subscriptions.js +73 -15
- package/src/endpoints/webhooks/undelivered.js +92 -17
- package/src/endpoints/webhooks/webhooks.js +21 -7
- package/src/productionDefaults.js +10 -2
- package/types/client.d.ts +46 -5670
- package/types/constants.d.ts +8 -1
- package/types/endpoints/accounts/accounts.d.ts +13 -14
- package/types/endpoints/accounts/application-settings.d.ts +16 -34
- package/types/endpoints/accounts/application.d.ts +12 -7
- package/types/endpoints/accounts/applications.d.ts +13 -14
- package/types/endpoints/accounts/current-shifts.d.ts +12 -8
- package/types/endpoints/accounts/customers.d.ts +18 -48
- package/types/endpoints/accounts/docs.d.ts +8 -2
- package/types/endpoints/accounts/domains.d.ts +14 -19
- package/types/endpoints/accounts/dynamic-forms.d.ts +21 -62
- package/types/endpoints/accounts/email-settings.d.ts +16 -34
- package/types/endpoints/accounts/email-templates.d.ts +127 -54
- package/types/endpoints/accounts/exchange-rates.d.ts +13 -15
- package/types/endpoints/accounts/exchange-receipts.d.ts +13 -13
- package/types/endpoints/accounts/goal-settings.d.ts +13 -14
- package/types/endpoints/accounts/images.d.ts +15 -27
- package/types/endpoints/accounts/interline.d.ts +16 -64
- package/types/endpoints/accounts/journey-prices-settings.d.ts +13 -13
- package/types/endpoints/accounts/lexicons.d.ts +21 -136
- package/types/endpoints/accounts/market-pricing-settings.d.ts +13 -13
- package/types/endpoints/accounts/multiproduct-sales-settings.d.ts +13 -13
- package/types/endpoints/accounts/network.d.ts +17 -40
- package/types/endpoints/accounts/operation-settings.d.ts +13 -14
- package/types/endpoints/accounts/people-lookups.d.ts +16 -38
- package/types/endpoints/accounts/point-to-point-settings.d.ts +13 -13
- package/types/endpoints/accounts/print-settings.d.ts +13 -13
- package/types/endpoints/accounts/print-templates.d.ts +17 -41
- package/types/endpoints/accounts/printers.d.ts +12 -7
- package/types/endpoints/accounts/rms-settings.d.ts +13 -13
- package/types/endpoints/accounts/s3buckets.d.ts +14 -21
- package/types/endpoints/accounts/salesforce-settings.d.ts +13 -14
- package/types/endpoints/accounts/shift-settings.d.ts +13 -14
- package/types/endpoints/accounts/shifts.d.ts +34 -227
- package/types/endpoints/accounts/sms-templates.d.ts +19 -54
- package/types/endpoints/accounts/sub-print-templates.d.ts +12 -8
- package/types/endpoints/accounts/ticket-movement-settings.d.ts +13 -13
- package/types/endpoints/accounts/tokens.d.ts +13 -14
- package/types/endpoints/accounts/transport-regulation-settings.d.ts +13 -13
- package/types/endpoints/accounts/travellers.d.ts +16 -37
- package/types/endpoints/accounts/trusted-machines.d.ts +14 -20
- package/types/endpoints/accounts/twilio-settings.d.ts +13 -14
- package/types/endpoints/accounts/users.d.ts +27 -99
- package/types/endpoints/accounts/websales-config.d.ts +13 -15
- package/types/endpoints/btrzpay/cardpointe.d.ts +15 -36
- package/types/endpoints/btrzpay/customerCards.d.ts +15 -33
- package/types/endpoints/btrzpay/customers.d.ts +14 -23
- package/types/endpoints/btrzpay/datalogic.d.ts +27 -44
- package/types/endpoints/btrzpay/docs.d.ts +12 -2
- package/types/endpoints/btrzpay/oxxo.d.ts +41 -38
- package/types/endpoints/btrzpay/payment-methods.d.ts +29 -58
- package/types/endpoints/btrzpay/payments.d.ts +13 -14
- package/types/endpoints/btrzpay/prismaTerminals.d.ts +31 -98
- package/types/endpoints/btrzpay/reference-numbers.d.ts +12 -8
- package/types/endpoints/btrzpay/referenced-payments.d.ts +13 -17
- package/types/endpoints/btrzpay/square.d.ts +24 -16
- package/types/endpoints/btrzpay/stripe-terminals.d.ts +26 -16
- package/types/endpoints/btrzpay/terminalPayments.d.ts +26 -28
- package/types/endpoints/coltrane/docs.d.ts +8 -2
- package/types/endpoints/coltrane/merged-fare-tables.d.ts +12 -9
- package/types/endpoints/coltrane/paths.d.ts +44 -7
- package/types/endpoints/endpoints_helpers.d.ts +16 -9
- package/types/endpoints/gps/scanner-app-location.d.ts +44 -6
- package/types/endpoints/inventory/amenities.d.ts +28 -26
- package/types/endpoints/inventory/amenity-groups.d.ts +28 -26
- package/types/endpoints/inventory/banks.d.ts +29 -33
- package/types/endpoints/inventory/bare-routes.d.ts +26 -13
- package/types/endpoints/inventory/brands.d.ts +28 -27
- package/types/endpoints/inventory/bundle-fares.d.ts +25 -9
- package/types/endpoints/inventory/bundles.d.ts +26 -14
- package/types/endpoints/inventory/change-requests.d.ts +16 -50
- package/types/endpoints/inventory/companies.d.ts +23 -8
- package/types/endpoints/inventory/control-classes.d.ts +16 -34
- package/types/endpoints/inventory/countries.d.ts +13 -14
- package/types/endpoints/inventory/custom-content.d.ts +27 -31
- package/types/endpoints/inventory/custom-fields.d.ts +27 -33
- package/types/endpoints/inventory/docs.d.ts +8 -2
- package/types/endpoints/inventory/document-types.d.ts +29 -39
- package/types/endpoints/inventory/external-passes.d.ts +26 -14
- package/types/endpoints/inventory/external-wallets.d.ts +12 -36
- package/types/endpoints/inventory/fallback-codes.d.ts +15 -26
- package/types/endpoints/inventory/fare-classes.d.ts +25 -21
- package/types/endpoints/inventory/fares.d.ts +28 -39
- package/types/endpoints/inventory/fees.d.ts +26 -26
- package/types/endpoints/inventory/filtered-trips-v2.d.ts +12 -8
- package/types/endpoints/inventory/filtered-trips.d.ts +13 -14
- package/types/endpoints/inventory/financing-costs.d.ts +29 -35
- package/types/endpoints/inventory/garages.d.ts +29 -33
- package/types/endpoints/inventory/getnet-terminals.d.ts +16 -33
- package/types/endpoints/inventory/gift-certificate-definitions.d.ts +27 -36
- package/types/endpoints/inventory/healthcheck.d.ts +9 -4
- package/types/endpoints/inventory/insurances.d.ts +27 -31
- package/types/endpoints/inventory/insurancesCost.d.ts +23 -9
- package/types/endpoints/inventory/items.d.ts +16 -38
- package/types/endpoints/inventory/journey-prices.d.ts +27 -34
- package/types/endpoints/inventory/labels.d.ts +29 -34
- package/types/endpoints/inventory/marital-status.d.ts +27 -37
- package/types/endpoints/inventory/marketplace-modifiers.d.ts +27 -31
- package/types/endpoints/inventory/mit-terminal-settings.d.ts +29 -33
- package/types/endpoints/inventory/mit-terminals.d.ts +29 -31
- package/types/endpoints/inventory/operating-companies.d.ts +29 -57
- package/types/endpoints/inventory/operation-messages.d.ts +28 -37
- package/types/endpoints/inventory/operation-reasons.d.ts +16 -37
- package/types/endpoints/inventory/parcel-zones.d.ts +25 -20
- package/types/endpoints/inventory/pay-on-accounts.d.ts +25 -9
- package/types/endpoints/inventory/payment-terminals.d.ts +27 -31
- package/types/endpoints/inventory/prisma-terminals.d.ts +29 -33
- package/types/endpoints/inventory/products.d.ts +17 -42
- package/types/endpoints/inventory/promos.d.ts +30 -54
- package/types/endpoints/inventory/routes.d.ts +24 -174
- package/types/endpoints/inventory/schedule-groups.d.ts +28 -28
- package/types/endpoints/inventory/schedules.d.ts +18 -75
- package/types/endpoints/inventory/seatclasses.d.ts +27 -37
- package/types/endpoints/inventory/seatfees.d.ts +26 -25
- package/types/endpoints/inventory/seatmaps.d.ts +31 -49
- package/types/endpoints/inventory/segments-information-tables.d.ts +25 -9
- package/types/endpoints/inventory/segments-information.d.ts +29 -33
- package/types/endpoints/inventory/service-numbers.d.ts +26 -27
- package/types/endpoints/inventory/service-types.d.ts +27 -31
- package/types/endpoints/inventory/ssrs.d.ts +23 -7
- package/types/endpoints/inventory/station-classes.d.ts +16 -34
- package/types/endpoints/inventory/station-groups.d.ts +25 -7
- package/types/endpoints/inventory/stations-provinces.d.ts +25 -7
- package/types/endpoints/inventory/stations-zones.d.ts +25 -7
- package/types/endpoints/inventory/stations.d.ts +28 -25
- package/types/endpoints/inventory/taxes.d.ts +29 -59
- package/types/endpoints/inventory/travel-routes.d.ts +28 -27
- package/types/endpoints/inventory/traveller-card-providers-types.d.ts +23 -7
- package/types/endpoints/inventory/traveller-card-providers.d.ts +26 -27
- package/types/endpoints/inventory/traveller-card-types.d.ts +27 -33
- package/types/endpoints/inventory/trips.d.ts +24 -13
- package/types/endpoints/inventory/vehicle-types.d.ts +12 -14
- package/types/endpoints/inventory/vehicles.d.ts +30 -49
- package/types/endpoints/inventory/zone-price-overages.d.ts +27 -31
- package/types/endpoints/inventory/zone-prices.d.ts +27 -31
- package/types/endpoints/invoices/dlink.d.ts +30 -16
- package/types/endpoints/invoices/docs.d.ts +8 -2
- package/types/endpoints/invoices/emails.d.ts +23 -9
- package/types/endpoints/invoices/gti.d.ts +30 -16
- package/types/endpoints/invoices/infile.d.ts +30 -16
- package/types/endpoints/invoices/infileJson.d.ts +30 -16
- package/types/endpoints/invoices/invoices.d.ts +27 -35
- package/types/endpoints/invoices/pdfs.d.ts +23 -9
- package/types/endpoints/invoices/providers.d.ts +27 -37
- package/types/endpoints/invoices/providersSequences.d.ts +27 -42
- package/types/endpoints/invoices/system.d.ts +30 -16
- package/types/endpoints/invoices/tax-ids.d.ts +44 -8
- package/types/endpoints/loyalty/movements.d.ts +36 -27
- package/types/endpoints/loyalty/programs.d.ts +36 -21
- package/types/endpoints/notifications/customers.d.ts +24 -14
- package/types/endpoints/notifications/email.d.ts +23 -8
- package/types/endpoints/notifications/manifest-notifications.d.ts +24 -14
- package/types/endpoints/notifications/notify.d.ts +26 -31
- package/types/endpoints/notifications/orders-rules-validations.d.ts +23 -9
- package/types/endpoints/notifications/pdf-data.d.ts +30 -9
- package/types/endpoints/notifications/pdfs.d.ts +30 -10
- package/types/endpoints/notifications/printed-tickets.d.ts +12 -11
- package/types/endpoints/notifications/salesforce.d.ts +12 -8
- package/types/endpoints/notifications/twilio.d.ts +26 -27
- package/types/endpoints/operations/accounting_items.d.ts +24 -13
- package/types/endpoints/operations/applied_insurance.d.ts +12 -10
- package/types/endpoints/operations/calendar_entries.d.ts +24 -8
- package/types/endpoints/operations/docs.d.ts +13 -5
- package/types/endpoints/operations/external-bookings.d.ts +24 -16
- package/types/endpoints/operations/flexpasses.d.ts +12 -11
- package/types/endpoints/operations/loans.d.ts +24 -13
- package/types/endpoints/operations/manifest.d.ts +23 -240
- package/types/endpoints/operations/manifest_leg_for_tickets.d.ts +12 -11
- package/types/endpoints/operations/movements.d.ts +24 -10
- package/types/endpoints/operations/outlook-trips.d.ts +25 -8
- package/types/endpoints/operations/parcels.d.ts +24 -38
- package/types/endpoints/operations/parcels_manifests.d.ts +72 -48
- package/types/endpoints/operations/passenger_check_in_info.d.ts +46 -30
- package/types/endpoints/operations/redemption.d.ts +12 -23
- package/types/endpoints/operations/rms.d.ts +23 -17
- package/types/endpoints/operations/scheduled_notifications.d.ts +36 -36
- package/types/endpoints/operations/segments.d.ts +28 -11
- package/types/endpoints/operations/sold-items-fulfillment.d.ts +24 -9
- package/types/endpoints/operations/sold-items.d.ts +24 -16
- package/types/endpoints/operations/tickets.d.ts +24 -45
- package/types/endpoints/operations/transaction.d.ts +12 -11
- package/types/endpoints/operations/transactions.d.ts +23 -85
- package/types/endpoints/operations/transport_regulations.d.ts +11 -11
- package/types/endpoints/operations/trip_change_info.d.ts +12 -11
- package/types/endpoints/operations/vehicle_assignments.d.ts +24 -28
- package/types/endpoints/operations/vouchers.d.ts +23 -18
- package/types/endpoints/operations/waitlists.d.ts +43 -27
- package/types/endpoints/ratality/auth.d.ts +12 -5
- package/types/endpoints/ratality/clients.d.ts +15 -11
- package/types/endpoints/ratality/integrations.d.ts +16 -16
- package/types/endpoints/reports/custom-reports.d.ts +36 -20
- package/types/endpoints/reports/email.d.ts +12 -8
- package/types/endpoints/reports/report-types.d.ts +13 -14
- package/types/endpoints/reports/trip-manifests.d.ts +34 -8
- package/types/endpoints/sales/bundles.d.ts +25 -7
- package/types/endpoints/sales/cart-promo.d.ts +26 -16
- package/types/endpoints/sales/cart.d.ts +36 -107
- package/types/endpoints/sales/check-in-info.d.ts +25 -9
- package/types/endpoints/sales/custom-fields.d.ts +25 -7
- package/types/endpoints/sales/docs.d.ts +8 -2
- package/types/endpoints/sales/flexpasses.d.ts +25 -9
- package/types/endpoints/sales/gift-certificates.d.ts +25 -8
- package/types/endpoints/sales/order.d.ts +42 -22
- package/types/endpoints/sales/parcel-quotes.d.ts +12 -8
- package/types/endpoints/sales/payment-providers.d.ts +25 -8
- package/types/endpoints/sales/redeemable-items.d.ts +26 -14
- package/types/endpoints/sales/sync-entry.d.ts +12 -8
- package/types/endpoints/sales/voucher.d.ts +103 -7
- package/types/endpoints/seatmaps/access-ticket.d.ts +12 -7
- package/types/endpoints/seatmaps/seat.d.ts +12 -8
- package/types/endpoints/uploads/files.d.ts +12 -8
- package/types/endpoints/uploads/images.d.ts +12 -8
- package/types/endpoints/webhooks/events.d.ts +29 -9
- package/types/endpoints/webhooks/subscriptions.d.ts +33 -34
- package/types/endpoints/webhooks/undelivered.d.ts +35 -43
- package/types/endpoints/webhooks/webhooks.d.ts +12 -8
- package/types/initializedClient.d.ts +15 -5670
- package/types/productionDefaults.d.ts +9 -6
|
@@ -1,12 +1,67 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
/* eslint-disable max-len */
|
|
3
4
|
var _require = require("./../endpoints_helpers.js"),
|
|
4
5
|
authorizationHeaders = _require.authorizationHeaders;
|
|
5
6
|
|
|
7
|
+
/**
|
|
8
|
+
* Query params for GET /shifts (btrz-api-accounts). See get-shifts handler getSpec().
|
|
9
|
+
* @typedef {Object} ShiftsListQuery
|
|
10
|
+
* @property {string} [includeActivity] - 'true'|'false'; default 'true' (include sales activity)
|
|
11
|
+
* @property {string} [status] - open | closed (ignored if pendingShiftClosure is true)
|
|
12
|
+
* @property {string} [pendingShiftClosure] - 'true'|'false'; return shifts that need shift closure
|
|
13
|
+
* @property {string} [locationId] - Filter by location (ObjectId)
|
|
14
|
+
* @property {string} [providerId] - Provider for payments (ObjectId)
|
|
15
|
+
* @property {string} [sort] - closedAsc | closedDesc | openedAsc
|
|
16
|
+
* @property {string} [fromDate] - Start date (YYYY-MM-DD); requires toDate
|
|
17
|
+
* @property {string} [toDate] - End date (YYYY-MM-DD); requires fromDate
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Query params for GET /shifts/location-closures (btrz-api-accounts). See get-location-closures handler getSpec().
|
|
22
|
+
* @typedef {Object} LocationClosuresListQuery
|
|
23
|
+
* @property {string} [sort] - createdAsc | createdDesc | updatedAsc | updatedDesc
|
|
24
|
+
* @property {number} [page] - Page number
|
|
25
|
+
* @property {string} [fromDate] - Start date (YYYY-MM-DD); requires toDate
|
|
26
|
+
* @property {string} [toDate] - End date (YYYY-MM-DD); requires fromDate
|
|
27
|
+
*/
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Query params for GET /shifts/:locationId/purchase-limit-payments (btrz-api-accounts). See getSpec().
|
|
31
|
+
* @typedef {Object} PurchaseLimitPaymentsQuery
|
|
32
|
+
* @property {string} day - Date of payments (YYYY-MM-DD). Required.
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Query params for GET /shifts/:shiftId/sales-summary (btrz-api-accounts). See get-shift-sales-summary getSpec().
|
|
37
|
+
* @typedef {Object} ShiftSalesSummaryQuery
|
|
38
|
+
* @property {string} [type] - 'revenueOperatingCompany' to aggregate by revenue operating company
|
|
39
|
+
* @property {boolean} [depositable] - Get only depositable payment types
|
|
40
|
+
* @property {boolean} [paymentsAndRefundsDetails] - Include payments and refunds details per payment type and currency
|
|
41
|
+
*/
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Factory for shifts API (btrz-api-accounts).
|
|
45
|
+
* @param {Object} deps
|
|
46
|
+
* @param {import("axios").AxiosInstance} deps.client
|
|
47
|
+
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
48
|
+
* @returns {{ all: function, get: function, create: function, update: function, requiresAgencyShiftClosure: object, payments: object, transactions: object, tickets: object, fees: object, refunds: object, items: object, redeemableItems: object, giftCertificates: object, parcels: object, insurances: object, invoices: object, deposits: object, manualTickets: object, locationClosures: object, startingBalances: object, purchaseLimitPayments: object, salesSummary: object, commissions: object }}
|
|
49
|
+
*/
|
|
50
|
+
|
|
51
|
+
|
|
6
52
|
function shiftsFactory(_ref) {
|
|
7
53
|
var client = _ref.client,
|
|
8
54
|
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
9
55
|
|
|
56
|
+
/**
|
|
57
|
+
* GET /shifts - list shifts.
|
|
58
|
+
* @param {Object} opts
|
|
59
|
+
* @param {string} [opts.token] - API key
|
|
60
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
61
|
+
* @param {ShiftsListQuery} [opts.query] - Query params
|
|
62
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
63
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
64
|
+
*/
|
|
10
65
|
function all(_ref2) {
|
|
11
66
|
var jwtToken = _ref2.jwtToken,
|
|
12
67
|
token = _ref2.token,
|
|
@@ -21,6 +76,14 @@ function shiftsFactory(_ref) {
|
|
|
21
76
|
});
|
|
22
77
|
}
|
|
23
78
|
|
|
79
|
+
/**
|
|
80
|
+
* GET /shift/user/:userId - get shift for user. API does not accept query params.
|
|
81
|
+
* @param {Object} opts
|
|
82
|
+
* @param {string} [opts.token] - API key
|
|
83
|
+
* @param {string} opts.userId - User id (ObjectId)
|
|
84
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
85
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
86
|
+
*/
|
|
24
87
|
function get(_ref3) {
|
|
25
88
|
var token = _ref3.token,
|
|
26
89
|
userId = _ref3.userId,
|
|
@@ -31,6 +94,15 @@ function shiftsFactory(_ref) {
|
|
|
31
94
|
});
|
|
32
95
|
}
|
|
33
96
|
|
|
97
|
+
/**
|
|
98
|
+
* POST /shifts - create a shift.
|
|
99
|
+
* @param {Object} opts
|
|
100
|
+
* @param {string} [opts.token] - API key
|
|
101
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
102
|
+
* @param {Object} opts.shiftData - Shift payload
|
|
103
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
104
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
105
|
+
*/
|
|
34
106
|
function create(_ref4) {
|
|
35
107
|
var jwtToken = _ref4.jwtToken,
|
|
36
108
|
token = _ref4.token,
|
|
@@ -47,6 +119,16 @@ function shiftsFactory(_ref) {
|
|
|
47
119
|
});
|
|
48
120
|
}
|
|
49
121
|
|
|
122
|
+
/**
|
|
123
|
+
* PATCH /shifts/:shiftId - update a shift (operations). API getSpec() does not define query params.
|
|
124
|
+
* @param {Object} opts
|
|
125
|
+
* @param {string} [opts.token] - API key
|
|
126
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
127
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
128
|
+
* @param {Object} opts.operations - Operations payload
|
|
129
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
130
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
131
|
+
*/
|
|
50
132
|
function update(_ref5) {
|
|
51
133
|
var jwtToken = _ref5.jwtToken,
|
|
52
134
|
token = _ref5.token,
|
|
@@ -69,6 +151,16 @@ function shiftsFactory(_ref) {
|
|
|
69
151
|
}
|
|
70
152
|
|
|
71
153
|
var locationClosureComments = {
|
|
154
|
+
/**
|
|
155
|
+
* POST /shifts/location-closures/:locationClosureId/comments - add comment to location closure.
|
|
156
|
+
* @param {Object} opts
|
|
157
|
+
* @param {string} [opts.token] - API key
|
|
158
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
159
|
+
* @param {string} opts.locationClosureId - Location closure id (ObjectId)
|
|
160
|
+
* @param {Object} opts.locationClosureComment - Comment payload
|
|
161
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
162
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
163
|
+
*/
|
|
72
164
|
create: function create(_ref6) {
|
|
73
165
|
var jwtToken = _ref6.jwtToken,
|
|
74
166
|
token = _ref6.token,
|
|
@@ -88,6 +180,16 @@ function shiftsFactory(_ref) {
|
|
|
88
180
|
};
|
|
89
181
|
|
|
90
182
|
var locationClosureStatus = {
|
|
183
|
+
/**
|
|
184
|
+
* PUT /shifts/location-closures/:locationClosureId/status - update location closure status.
|
|
185
|
+
* @param {Object} opts
|
|
186
|
+
* @param {string} [opts.token] - API key
|
|
187
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
188
|
+
* @param {string} opts.locationClosureId - Location closure id (ObjectId)
|
|
189
|
+
* @param {Object} opts.locationClosureStatusChange - Status change payload
|
|
190
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
191
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
192
|
+
*/
|
|
91
193
|
update: function update(_ref7) {
|
|
92
194
|
var jwtToken = _ref7.jwtToken,
|
|
93
195
|
token = _ref7.token,
|
|
@@ -107,6 +209,15 @@ function shiftsFactory(_ref) {
|
|
|
107
209
|
};
|
|
108
210
|
|
|
109
211
|
var locationClosures = {
|
|
212
|
+
/**
|
|
213
|
+
* POST /shifts/location-closures - create a location closure.
|
|
214
|
+
* @param {Object} opts
|
|
215
|
+
* @param {string} [opts.token] - API key
|
|
216
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
217
|
+
* @param {Object} opts.locationClosure - Location closure payload
|
|
218
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
219
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
220
|
+
*/
|
|
110
221
|
create: function create(_ref8) {
|
|
111
222
|
var jwtToken = _ref8.jwtToken,
|
|
112
223
|
token = _ref8.token,
|
|
@@ -122,6 +233,16 @@ function shiftsFactory(_ref) {
|
|
|
122
233
|
data: locationClosure
|
|
123
234
|
});
|
|
124
235
|
},
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* GET /shifts/location-closures - list location closures.
|
|
239
|
+
* @param {Object} opts
|
|
240
|
+
* @param {string} [opts.token] - API key
|
|
241
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
242
|
+
* @param {ShiftsListQuery} [opts.query] - Query params
|
|
243
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
244
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
245
|
+
*/
|
|
125
246
|
all: function all(_ref9) {
|
|
126
247
|
var jwtToken = _ref9.jwtToken,
|
|
127
248
|
token = _ref9.token,
|
|
@@ -135,6 +256,16 @@ function shiftsFactory(_ref) {
|
|
|
135
256
|
params: query
|
|
136
257
|
});
|
|
137
258
|
},
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* GET /shifts/location-closures/:locationClosureId - get a location closure. API does not accept query params.
|
|
262
|
+
* @param {Object} opts
|
|
263
|
+
* @param {string} [opts.token] - API key
|
|
264
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
265
|
+
* @param {string} opts.locationClosureId - Location closure id (ObjectId)
|
|
266
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
267
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
268
|
+
*/
|
|
138
269
|
get: function get(_ref10) {
|
|
139
270
|
var token = _ref10.token,
|
|
140
271
|
jwtToken = _ref10.jwtToken,
|
|
@@ -151,6 +282,15 @@ function shiftsFactory(_ref) {
|
|
|
151
282
|
};
|
|
152
283
|
|
|
153
284
|
var payments = {
|
|
285
|
+
/**
|
|
286
|
+
* GET /shifts/:shiftId/payments - get payments for shift.
|
|
287
|
+
* @param {Object} opts
|
|
288
|
+
* @param {string} [opts.token] - API key
|
|
289
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
290
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
291
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
292
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
293
|
+
*/
|
|
154
294
|
get: function get(_ref11) {
|
|
155
295
|
var token = _ref11.token,
|
|
156
296
|
jwtToken = _ref11.jwtToken,
|
|
@@ -163,6 +303,15 @@ function shiftsFactory(_ref) {
|
|
|
163
303
|
}
|
|
164
304
|
};
|
|
165
305
|
var transactions = {
|
|
306
|
+
/**
|
|
307
|
+
* GET /shifts/:shiftId/transactions - get transactions for shift.
|
|
308
|
+
* @param {Object} opts
|
|
309
|
+
* @param {string} [opts.token] - API key
|
|
310
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
311
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
312
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
313
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
314
|
+
*/
|
|
166
315
|
get: function get(_ref12) {
|
|
167
316
|
var token = _ref12.token,
|
|
168
317
|
jwtToken = _ref12.jwtToken,
|
|
@@ -175,6 +324,15 @@ function shiftsFactory(_ref) {
|
|
|
175
324
|
}
|
|
176
325
|
};
|
|
177
326
|
var tickets = {
|
|
327
|
+
/**
|
|
328
|
+
* GET /shifts/:shiftId/tickets - get tickets for shift.
|
|
329
|
+
* @param {Object} opts
|
|
330
|
+
* @param {string} [opts.token] - API key
|
|
331
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
332
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
333
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
334
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
335
|
+
*/
|
|
178
336
|
get: function get(_ref13) {
|
|
179
337
|
var token = _ref13.token,
|
|
180
338
|
jwtToken = _ref13.jwtToken,
|
|
@@ -187,6 +345,15 @@ function shiftsFactory(_ref) {
|
|
|
187
345
|
}
|
|
188
346
|
};
|
|
189
347
|
var fees = {
|
|
348
|
+
/**
|
|
349
|
+
* GET /shifts/:shiftId/fees - get fees for shift.
|
|
350
|
+
* @param {Object} opts
|
|
351
|
+
* @param {string} [opts.token] - API key
|
|
352
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
353
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
354
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
355
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
356
|
+
*/
|
|
190
357
|
get: function get(_ref14) {
|
|
191
358
|
var token = _ref14.token,
|
|
192
359
|
jwtToken = _ref14.jwtToken,
|
|
@@ -199,6 +366,15 @@ function shiftsFactory(_ref) {
|
|
|
199
366
|
}
|
|
200
367
|
};
|
|
201
368
|
var refunds = {
|
|
369
|
+
/**
|
|
370
|
+
* GET /shifts/:shiftId/refunds - get refunds for shift.
|
|
371
|
+
* @param {Object} opts
|
|
372
|
+
* @param {string} [opts.token] - API key
|
|
373
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
374
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
375
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
376
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
377
|
+
*/
|
|
202
378
|
get: function get(_ref15) {
|
|
203
379
|
var token = _ref15.token,
|
|
204
380
|
jwtToken = _ref15.jwtToken,
|
|
@@ -211,6 +387,15 @@ function shiftsFactory(_ref) {
|
|
|
211
387
|
}
|
|
212
388
|
};
|
|
213
389
|
var items = {
|
|
390
|
+
/**
|
|
391
|
+
* GET /shifts/:shiftId/items - get items for shift.
|
|
392
|
+
* @param {Object} opts
|
|
393
|
+
* @param {string} [opts.token] - API key
|
|
394
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
395
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
396
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
397
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
398
|
+
*/
|
|
214
399
|
get: function get(_ref16) {
|
|
215
400
|
var token = _ref16.token,
|
|
216
401
|
jwtToken = _ref16.jwtToken,
|
|
@@ -223,6 +408,15 @@ function shiftsFactory(_ref) {
|
|
|
223
408
|
}
|
|
224
409
|
};
|
|
225
410
|
var redeemableItems = {
|
|
411
|
+
/**
|
|
412
|
+
* GET /shifts/:shiftId/redeemable-items - get redeemable items for shift.
|
|
413
|
+
* @param {Object} opts
|
|
414
|
+
* @param {string} [opts.token] - API key
|
|
415
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
416
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
417
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
418
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
419
|
+
*/
|
|
226
420
|
get: function get(_ref17) {
|
|
227
421
|
var token = _ref17.token,
|
|
228
422
|
jwtToken = _ref17.jwtToken,
|
|
@@ -235,6 +429,15 @@ function shiftsFactory(_ref) {
|
|
|
235
429
|
}
|
|
236
430
|
};
|
|
237
431
|
var giftCertificates = {
|
|
432
|
+
/**
|
|
433
|
+
* GET /shifts/:shiftId/gift-certificates - get gift certificates for shift.
|
|
434
|
+
* @param {Object} opts
|
|
435
|
+
* @param {string} [opts.token] - API key
|
|
436
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
437
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
438
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
439
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
440
|
+
*/
|
|
238
441
|
get: function get(_ref18) {
|
|
239
442
|
var token = _ref18.token,
|
|
240
443
|
jwtToken = _ref18.jwtToken,
|
|
@@ -247,6 +450,15 @@ function shiftsFactory(_ref) {
|
|
|
247
450
|
}
|
|
248
451
|
};
|
|
249
452
|
var parcels = {
|
|
453
|
+
/**
|
|
454
|
+
* GET /shifts/:shiftId/parcels - get parcels for shift.
|
|
455
|
+
* @param {Object} opts
|
|
456
|
+
* @param {string} [opts.token] - API key
|
|
457
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
458
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
459
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
460
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
461
|
+
*/
|
|
250
462
|
get: function get(_ref19) {
|
|
251
463
|
var token = _ref19.token,
|
|
252
464
|
jwtToken = _ref19.jwtToken,
|
|
@@ -259,6 +471,15 @@ function shiftsFactory(_ref) {
|
|
|
259
471
|
}
|
|
260
472
|
};
|
|
261
473
|
var insurances = {
|
|
474
|
+
/**
|
|
475
|
+
* GET /shifts/:shiftId/insurances - get insurances for shift.
|
|
476
|
+
* @param {Object} opts
|
|
477
|
+
* @param {string} [opts.token] - API key
|
|
478
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
479
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
480
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
481
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
482
|
+
*/
|
|
262
483
|
get: function get(_ref20) {
|
|
263
484
|
var token = _ref20.token,
|
|
264
485
|
jwtToken = _ref20.jwtToken,
|
|
@@ -271,6 +492,15 @@ function shiftsFactory(_ref) {
|
|
|
271
492
|
}
|
|
272
493
|
};
|
|
273
494
|
var invoices = {
|
|
495
|
+
/**
|
|
496
|
+
* GET /shifts/:shiftId/invoices - get invoices for shift.
|
|
497
|
+
* @param {Object} opts
|
|
498
|
+
* @param {string} [opts.token] - API key
|
|
499
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
500
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
501
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
502
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
503
|
+
*/
|
|
274
504
|
get: function get(_ref21) {
|
|
275
505
|
var token = _ref21.token,
|
|
276
506
|
jwtToken = _ref21.jwtToken,
|
|
@@ -283,6 +513,15 @@ function shiftsFactory(_ref) {
|
|
|
283
513
|
}
|
|
284
514
|
};
|
|
285
515
|
var deposits = {
|
|
516
|
+
/**
|
|
517
|
+
* GET /shifts/:shiftId/deposits - get deposits for shift.
|
|
518
|
+
* @param {Object} opts
|
|
519
|
+
* @param {string} [opts.token] - API key
|
|
520
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
521
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
522
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
523
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
524
|
+
*/
|
|
286
525
|
get: function get(_ref22) {
|
|
287
526
|
var token = _ref22.token,
|
|
288
527
|
jwtToken = _ref22.jwtToken,
|
|
@@ -293,6 +532,17 @@ function shiftsFactory(_ref) {
|
|
|
293
532
|
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
294
533
|
});
|
|
295
534
|
},
|
|
535
|
+
|
|
536
|
+
/**
|
|
537
|
+
* POST /shifts/:shiftId/deposits - create a deposit for shift.
|
|
538
|
+
* @param {Object} opts
|
|
539
|
+
* @param {string} [opts.token] - API key
|
|
540
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
541
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
542
|
+
* @param {Object} opts.deposit - Deposit payload
|
|
543
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
544
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
545
|
+
*/
|
|
296
546
|
create: function create(_ref23) {
|
|
297
547
|
var jwtToken = _ref23.jwtToken,
|
|
298
548
|
token = _ref23.token,
|
|
@@ -309,6 +559,15 @@ function shiftsFactory(_ref) {
|
|
|
309
559
|
}
|
|
310
560
|
};
|
|
311
561
|
var manualTickets = {
|
|
562
|
+
/**
|
|
563
|
+
* GET /shifts/:shiftId/manual-tickets - get manual tickets for shift.
|
|
564
|
+
* @param {Object} opts
|
|
565
|
+
* @param {string} [opts.token] - API key
|
|
566
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
567
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
568
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
569
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
570
|
+
*/
|
|
312
571
|
get: function get(_ref24) {
|
|
313
572
|
var token = _ref24.token,
|
|
314
573
|
jwtToken = _ref24.jwtToken,
|
|
@@ -319,6 +578,17 @@ function shiftsFactory(_ref) {
|
|
|
319
578
|
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
320
579
|
});
|
|
321
580
|
},
|
|
581
|
+
|
|
582
|
+
/**
|
|
583
|
+
* POST /shifts/:shiftId/manual-tickets - create a manual ticket for shift.
|
|
584
|
+
* @param {Object} opts
|
|
585
|
+
* @param {string} [opts.token] - API key
|
|
586
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
587
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
588
|
+
* @param {Object} opts.manualTicket - Manual ticket payload
|
|
589
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
590
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
591
|
+
*/
|
|
322
592
|
create: function create(_ref25) {
|
|
323
593
|
var jwtToken = _ref25.jwtToken,
|
|
324
594
|
token = _ref25.token,
|
|
@@ -335,6 +605,16 @@ function shiftsFactory(_ref) {
|
|
|
335
605
|
}
|
|
336
606
|
};
|
|
337
607
|
var startingBalances = {
|
|
608
|
+
/**
|
|
609
|
+
* POST /shifts/:shiftId/starting-balance - create starting balance for shift.
|
|
610
|
+
* @param {Object} opts
|
|
611
|
+
* @param {string} [opts.token] - API key
|
|
612
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
613
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
614
|
+
* @param {Object} opts.startingBalance - Starting balance payload
|
|
615
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
616
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
617
|
+
*/
|
|
338
618
|
create: function create(_ref26) {
|
|
339
619
|
var jwtToken = _ref26.jwtToken,
|
|
340
620
|
token = _ref26.token,
|
|
@@ -351,6 +631,16 @@ function shiftsFactory(_ref) {
|
|
|
351
631
|
}
|
|
352
632
|
};
|
|
353
633
|
var purchaseLimitPayments = {
|
|
634
|
+
/**
|
|
635
|
+
* GET /shifts/:locationId/purchase-limit-payments - get purchase limit payments for location.
|
|
636
|
+
* @param {Object} opts
|
|
637
|
+
* @param {string} [opts.token] - API key
|
|
638
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
639
|
+
* @param {string} opts.locationId - Location id (ObjectId)
|
|
640
|
+
* @param {PurchaseLimitPaymentsQuery} [opts.query] - Query params; day (YYYY-MM-DD) is required
|
|
641
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
642
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
643
|
+
*/
|
|
354
644
|
get: function get(_ref27) {
|
|
355
645
|
var token = _ref27.token,
|
|
356
646
|
jwtToken = _ref27.jwtToken,
|
|
@@ -367,6 +657,16 @@ function shiftsFactory(_ref) {
|
|
|
367
657
|
}
|
|
368
658
|
};
|
|
369
659
|
var salesSummary = {
|
|
660
|
+
/**
|
|
661
|
+
* GET /shifts/:shiftId/sales-summary - get sales summary for shift.
|
|
662
|
+
* @param {Object} opts
|
|
663
|
+
* @param {string} [opts.token] - API key
|
|
664
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
665
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
666
|
+
* @param {ShiftSalesSummaryQuery} [opts.query] - Query params (type, depositable, paymentsAndRefundsDetails)
|
|
667
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
668
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
669
|
+
*/
|
|
370
670
|
get: function get(_ref28) {
|
|
371
671
|
var token = _ref28.token,
|
|
372
672
|
jwtToken = _ref28.jwtToken,
|
|
@@ -383,6 +683,15 @@ function shiftsFactory(_ref) {
|
|
|
383
683
|
}
|
|
384
684
|
};
|
|
385
685
|
var commissions = {
|
|
686
|
+
/**
|
|
687
|
+
* GET /shifts/:shiftId/commissions - get commissions for shift.
|
|
688
|
+
* @param {Object} opts
|
|
689
|
+
* @param {string} [opts.token] - API key
|
|
690
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
691
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
692
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
693
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
694
|
+
*/
|
|
386
695
|
get: function get(_ref29) {
|
|
387
696
|
var token = _ref29.token,
|
|
388
697
|
jwtToken = _ref29.jwtToken,
|
|
@@ -396,6 +705,16 @@ function shiftsFactory(_ref) {
|
|
|
396
705
|
};
|
|
397
706
|
|
|
398
707
|
var requiresAgencyShiftClosure = {
|
|
708
|
+
/**
|
|
709
|
+
* PUT /shifts/:shiftId/requires-agency-shift-closure - set requires agency shift closure.
|
|
710
|
+
* @param {Object} opts
|
|
711
|
+
* @param {string} [opts.token] - API key
|
|
712
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
713
|
+
* @param {string} opts.shiftId - Shift id (ObjectId)
|
|
714
|
+
* @param {Object} [opts.shiftData] - Shift data payload
|
|
715
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
716
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
717
|
+
*/
|
|
399
718
|
put: function put(_ref30) {
|
|
400
719
|
var token = _ref30.token,
|
|
401
720
|
jwtToken = _ref30.jwtToken,
|
|
@@ -1,12 +1,59 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
/* eslint-disable max-len */
|
|
3
4
|
var _require = require("../endpoints_helpers.js"),
|
|
4
5
|
authorizationHeaders = _require.authorizationHeaders;
|
|
5
6
|
|
|
7
|
+
/**
|
|
8
|
+
* Query params for GET /sms-templates (btrz-api-accounts). See get-handler getSpec().
|
|
9
|
+
* @typedef {Object} SmsTemplatesListQuery
|
|
10
|
+
* @property {string} [providerId] - Filter by provider account (ObjectId)
|
|
11
|
+
* @property {string} [type] - Filter by template type
|
|
12
|
+
* @property {string} [channel] - backoffice | agency-backoffice | websales | agency-websales | any
|
|
13
|
+
* @property {string} [sort] - relevance | natural | createdAsc | createdDesc | updatedAsc | updatedDesc
|
|
14
|
+
* @property {string} [templateCollectionId] - default | custom
|
|
15
|
+
* @property {string} [status] - draft | published
|
|
16
|
+
* @property {string} [mainTemplateAccountId] - Filter by source provider (ObjectId)
|
|
17
|
+
* @property {string} [lang] - ISO language code (e.g. en-us)
|
|
18
|
+
* @property {number} [page] - 1-based page for pagination
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Query params for GET /sms-templates/:smsTemplateId (btrz-api-accounts). See get-by-id-handler getSpec().
|
|
23
|
+
* @typedef {Object} SmsTemplateGetByIdQuery
|
|
24
|
+
* @property {string} [providerId] - Filter by provider; template must belong to this account, current, or global (ObjectId)
|
|
25
|
+
* @property {string} [superUserId] - Super user ID for authentication (ObjectId)
|
|
26
|
+
* @property {string} [superUserHash] - Super user hash for authentication
|
|
27
|
+
*/
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Query params for PUT /sms-templates/:smsTemplateId/versions/:versionId (btrz-api-accounts). See put-version-handler getSpec().
|
|
31
|
+
* @typedef {Object} SmsTemplateVersionUpdateQuery
|
|
32
|
+
* @property {string} [superUserId] - Super user ID (ObjectId)
|
|
33
|
+
* @property {string} [superUserHash] - Super user hash for authentication
|
|
34
|
+
*/
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Factory for sms-templates API (btrz-api-accounts).
|
|
38
|
+
* @param {Object} deps
|
|
39
|
+
* @param {import("axios").AxiosInstance} deps.client
|
|
40
|
+
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
41
|
+
* @returns {{ getTypes: function, all: function, get: function, create: function, update: function, remove: function, createSub: function, versions: { update: function } }}
|
|
42
|
+
*/
|
|
43
|
+
|
|
44
|
+
|
|
6
45
|
function smsTemplatesFactory(_ref) {
|
|
7
46
|
var client = _ref.client,
|
|
8
47
|
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
9
48
|
|
|
49
|
+
/**
|
|
50
|
+
* GET /sms-templates/types - returns available template types. API does not accept query params.
|
|
51
|
+
* @param {Object} opts
|
|
52
|
+
* @param {string} [opts.token] - API key
|
|
53
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
54
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
55
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
56
|
+
*/
|
|
10
57
|
function getTypes(_ref2) {
|
|
11
58
|
var token = _ref2.token,
|
|
12
59
|
jwtToken = _ref2.jwtToken,
|
|
@@ -18,6 +65,15 @@ function smsTemplatesFactory(_ref) {
|
|
|
18
65
|
});
|
|
19
66
|
}
|
|
20
67
|
|
|
68
|
+
/**
|
|
69
|
+
* GET /sms-templates - list SMS templates.
|
|
70
|
+
* @param {Object} opts
|
|
71
|
+
* @param {string} [opts.token] - API key
|
|
72
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
73
|
+
* @param {SmsTemplatesListQuery} [opts.query] - Query params (providerId, type, channel, sort, etc.)
|
|
74
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
75
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
76
|
+
*/
|
|
21
77
|
function all(_ref3) {
|
|
22
78
|
var token = _ref3.token,
|
|
23
79
|
jwtToken = _ref3.jwtToken,
|
|
@@ -32,6 +88,16 @@ function smsTemplatesFactory(_ref) {
|
|
|
32
88
|
});
|
|
33
89
|
}
|
|
34
90
|
|
|
91
|
+
/**
|
|
92
|
+
* GET /sms-templates/:smsTemplateId - get a single SMS template.
|
|
93
|
+
* @param {Object} opts
|
|
94
|
+
* @param {string} [opts.token] - API key
|
|
95
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
96
|
+
* @param {string} opts.smsTemplateId - Template id (ObjectId)
|
|
97
|
+
* @param {SmsTemplateGetByIdQuery} [opts.query] - Query params (providerId, superUserId, superUserHash)
|
|
98
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
99
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
100
|
+
*/
|
|
35
101
|
function get(_ref4) {
|
|
36
102
|
var token = _ref4.token,
|
|
37
103
|
jwtToken = _ref4.jwtToken,
|
|
@@ -47,6 +113,15 @@ function smsTemplatesFactory(_ref) {
|
|
|
47
113
|
});
|
|
48
114
|
}
|
|
49
115
|
|
|
116
|
+
/**
|
|
117
|
+
* POST /sms-templates - create an SMS template. API does not accept query params.
|
|
118
|
+
* @param {Object} opts
|
|
119
|
+
* @param {string} [opts.token] - API key
|
|
120
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
121
|
+
* @param {Object} opts.data - Request body
|
|
122
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
123
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
124
|
+
*/
|
|
50
125
|
function create(_ref5) {
|
|
51
126
|
var token = _ref5.token,
|
|
52
127
|
jwtToken = _ref5.jwtToken,
|
|
@@ -61,6 +136,16 @@ function smsTemplatesFactory(_ref) {
|
|
|
61
136
|
});
|
|
62
137
|
}
|
|
63
138
|
|
|
139
|
+
/**
|
|
140
|
+
* PUT /sms-templates/:smsTemplateId - update an SMS template. API does not accept query params.
|
|
141
|
+
* @param {Object} opts
|
|
142
|
+
* @param {string} [opts.token] - API key
|
|
143
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
144
|
+
* @param {string} opts.smsTemplateId - Template id (ObjectId)
|
|
145
|
+
* @param {Object} opts.data - Request body
|
|
146
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
147
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
148
|
+
*/
|
|
64
149
|
function update(_ref6) {
|
|
65
150
|
var token = _ref6.token,
|
|
66
151
|
jwtToken = _ref6.jwtToken,
|
|
@@ -76,6 +161,15 @@ function smsTemplatesFactory(_ref) {
|
|
|
76
161
|
});
|
|
77
162
|
}
|
|
78
163
|
|
|
164
|
+
/**
|
|
165
|
+
* DELETE /sms-templates/:smsTemplateId - delete an SMS template. API does not accept query params.
|
|
166
|
+
* @param {Object} opts
|
|
167
|
+
* @param {string} [opts.token] - API key
|
|
168
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
169
|
+
* @param {string} opts.smsTemplateId - Template id (ObjectId)
|
|
170
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
171
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
172
|
+
*/
|
|
79
173
|
function remove(_ref7) {
|
|
80
174
|
var token = _ref7.token,
|
|
81
175
|
jwtToken = _ref7.jwtToken,
|
|
@@ -89,6 +183,16 @@ function smsTemplatesFactory(_ref) {
|
|
|
89
183
|
});
|
|
90
184
|
}
|
|
91
185
|
|
|
186
|
+
/**
|
|
187
|
+
* POST /sub-sms-templates - create a sub SMS template from a main template. API does not accept query params.
|
|
188
|
+
* @param {Object} opts
|
|
189
|
+
* @param {string} [opts.token] - API key
|
|
190
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
191
|
+
* @param {string} opts.mainTemplateId - Main template id (ObjectId)
|
|
192
|
+
* @param {string} opts.agencyId - Agency id (ObjectId)
|
|
193
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
194
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
195
|
+
*/
|
|
92
196
|
function createSub(_ref8) {
|
|
93
197
|
var token = _ref8.token,
|
|
94
198
|
jwtToken = _ref8.jwtToken,
|
|
@@ -105,6 +209,17 @@ function smsTemplatesFactory(_ref) {
|
|
|
105
209
|
}
|
|
106
210
|
|
|
107
211
|
var versions = {
|
|
212
|
+
/**
|
|
213
|
+
* PUT /sms-templates/:smsTemplateId/versions/:versionId - roll back sms template to a version.
|
|
214
|
+
* @param {Object} opts
|
|
215
|
+
* @param {string} [opts.token] - API key
|
|
216
|
+
* @param {string} [opts.jwtToken] - JWT or internal auth symbol
|
|
217
|
+
* @param {string} opts.smsTemplateId - Template id (ObjectId)
|
|
218
|
+
* @param {string} opts.versionId - Zero-based version index (e.g. "0", "1")
|
|
219
|
+
* @param {SmsTemplateVersionUpdateQuery} [opts.query] - Query params (superUserId, superUserHash)
|
|
220
|
+
* @param {Object} [opts.headers] - Optional headers
|
|
221
|
+
* @returns {Promise<import("axios").AxiosResponse>}
|
|
222
|
+
*/
|
|
108
223
|
update: function update(_ref9) {
|
|
109
224
|
var token = _ref9.token,
|
|
110
225
|
jwtToken = _ref9.jwtToken,
|