@arrowsphere/api-client 3.36.1-rc.fdi.2 → 3.36.1-rc.fdi.3

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.
@@ -1,5 +1,4 @@
1
1
  export * from './entities/details/notificationDetails';
2
2
  export * from './entities/notifications';
3
- export * from './entities/notification';
4
3
  export * from './entities/total';
5
4
  export * from './notificationsClient';
@@ -16,7 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./entities/details/notificationDetails"), exports);
18
18
  __exportStar(require("./entities/notifications"), exports);
19
- __exportStar(require("./entities/notification"), exports);
20
19
  __exportStar(require("./entities/total"), exports);
21
20
  __exportStar(require("./notificationsClient"), exports);
22
21
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/ArrowSphere/nodejs-api-client.git"
6
6
  },
7
- "version": "3.36.1-rc.fdi.2",
7
+ "version": "3.36.1-rc.fdi.3",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",
@@ -1,14 +0,0 @@
1
- import { NotificationDetails, NotificationDetailsType } from './details/notificationDetails';
2
- import { AbstractEntity } from '../../abstractEntity';
3
- export declare enum NotificationFields {
4
- COLUMN_NOTIFICATION = "notification"
5
- }
6
- export declare type NotificationType = {
7
- [NotificationFields.COLUMN_NOTIFICATION]: NotificationDetailsType;
8
- };
9
- export declare class Notification extends AbstractEntity<NotificationType> {
10
- #private;
11
- constructor(notification: NotificationType);
12
- get notification(): NotificationDetails;
13
- toJSON(): NotificationType;
14
- }
@@ -1,39 +0,0 @@
1
- "use strict";
2
- var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
3
- if (kind === "m") throw new TypeError("Private method is not writable");
4
- if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
5
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
6
- return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
7
- };
8
- var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
9
- if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
10
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
11
- return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
12
- };
13
- var _Notification_notification;
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- exports.Notification = exports.NotificationFields = void 0;
16
- const notificationDetails_1 = require("./details/notificationDetails");
17
- const abstractEntity_1 = require("../../abstractEntity");
18
- var NotificationFields;
19
- (function (NotificationFields) {
20
- NotificationFields["COLUMN_NOTIFICATION"] = "notification";
21
- })(NotificationFields = exports.NotificationFields || (exports.NotificationFields = {}));
22
- class Notification extends abstractEntity_1.AbstractEntity {
23
- constructor(notification) {
24
- super(notification);
25
- _Notification_notification.set(this, void 0);
26
- __classPrivateFieldSet(this, _Notification_notification, new notificationDetails_1.NotificationDetails(notification[NotificationFields.COLUMN_NOTIFICATION]), "f");
27
- }
28
- get notification() {
29
- return __classPrivateFieldGet(this, _Notification_notification, "f");
30
- }
31
- toJSON() {
32
- return {
33
- [NotificationFields.COLUMN_NOTIFICATION]: this.notification.toJSON(),
34
- };
35
- }
36
- }
37
- exports.Notification = Notification;
38
- _Notification_notification = new WeakMap();
39
- //# sourceMappingURL=notification.js.map