123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.send = send;
- var _CoreManager = _interopRequireDefault(require("./CoreManager"));
- var _ParseQuery = _interopRequireDefault(require("./ParseQuery"));
- function _interopRequireDefault(obj) {
- return obj && obj.__esModule ? obj : {
- default: obj
- };
- }
- function send(data
- /*: PushData*/
- )
- /*: Promise*/
- {
- if (data.where && data.where instanceof _ParseQuery.default) {
- data.where = data.where.toJSON().where;
- }
- if (data.push_time && typeof data.push_time === 'object') {
- data.push_time = data.push_time.toJSON();
- }
- if (data.expiration_time && typeof data.expiration_time === 'object') {
- data.expiration_time = data.expiration_time.toJSON();
- }
- if (data.expiration_time && data.expiration_interval) {
- throw new Error('expiration_time and expiration_interval cannot both be set.');
- }
- return _CoreManager.default.getPushController().send(data);
- }
- const DefaultController = {
- send(data
-
- ) {
- return _CoreManager.default.getRESTController().request('POST', 'push', data, {
- useMasterKey: true
- });
- }
- };
- _CoreManager.default.setPushController(DefaultController);
|