@justair/justair-library 3.1.40 → 3.2.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.
Files changed (87) hide show
  1. package/README +85 -85
  2. package/package.json +27 -27
  3. package/src/config/db.js +43 -22
  4. package/src/config/logger.js +44 -44
  5. package/src/index.js +82 -82
  6. package/src/models/admin.js +22 -22
  7. package/src/models/announcements.js +31 -31
  8. package/src/models/apiKey.js +22 -22
  9. package/src/models/configurations.js +17 -17
  10. package/src/models/contexts.js +13 -13
  11. package/src/models/events.js +26 -26
  12. package/src/models/jobs.js +34 -34
  13. package/src/models/lightmonitors.js +28 -28
  14. package/src/models/measurements.js +17 -17
  15. package/src/models/monitorRequests.js +15 -15
  16. package/src/models/monitorSuppliers.js +11 -11
  17. package/src/models/monitors.js +95 -95
  18. package/src/models/organizations.js +23 -23
  19. package/src/models/parameters.js +11 -11
  20. package/src/models/qanotifications.js +29 -29
  21. package/src/models/referenceMonitorInfo.js +18 -18
  22. package/src/models/tests/admin.test.js +42 -42
  23. package/src/models/tests/configurations.test.js +44 -44
  24. package/src/models/tests/measurements.test.js +46 -46
  25. package/src/models/tests/monitorRequests.test.js +46 -46
  26. package/src/models/tests/monitors.test.js +62 -62
  27. package/src/models/tests/organizations.test.js +51 -51
  28. package/src/models/tests/users.test.js +54 -54
  29. package/src/models/usageMetrics.js +28 -28
  30. package/src/models/users.js +30 -30
  31. package/tsconfig.json +10 -10
  32. package/dist/config/db.d.ts +0 -11
  33. package/dist/config/db.d.ts.map +0 -1
  34. package/dist/config/logger.d.ts +0 -13
  35. package/dist/config/logger.d.ts.map +0 -1
  36. package/dist/index.d.ts +0 -48
  37. package/dist/index.d.ts.map +0 -1
  38. package/dist/models/admin.d.ts +0 -3
  39. package/dist/models/admin.d.ts.map +0 -1
  40. package/dist/models/announcements.d.ts +0 -3
  41. package/dist/models/announcements.d.ts.map +0 -1
  42. package/dist/models/apiKey.d.ts +0 -3
  43. package/dist/models/apiKey.d.ts.map +0 -1
  44. package/dist/models/configurations.d.ts +0 -3
  45. package/dist/models/configurations.d.ts.map +0 -1
  46. package/dist/models/contexts.d.ts +0 -3
  47. package/dist/models/contexts.d.ts.map +0 -1
  48. package/dist/models/events.d.ts +0 -3
  49. package/dist/models/events.d.ts.map +0 -1
  50. package/dist/models/jobs.d.ts +0 -3
  51. package/dist/models/jobs.d.ts.map +0 -1
  52. package/dist/models/lightmonitors.d.ts +0 -3
  53. package/dist/models/lightmonitors.d.ts.map +0 -1
  54. package/dist/models/measurements.d.ts +0 -3
  55. package/dist/models/measurements.d.ts.map +0 -1
  56. package/dist/models/monitorRequests.d.ts +0 -3
  57. package/dist/models/monitorRequests.d.ts.map +0 -1
  58. package/dist/models/monitorSuppliers.d.ts +0 -3
  59. package/dist/models/monitorSuppliers.d.ts.map +0 -1
  60. package/dist/models/monitors.d.ts +0 -3
  61. package/dist/models/monitors.d.ts.map +0 -1
  62. package/dist/models/organizations.d.ts +0 -3
  63. package/dist/models/organizations.d.ts.map +0 -1
  64. package/dist/models/parameters.d.ts +0 -3
  65. package/dist/models/parameters.d.ts.map +0 -1
  66. package/dist/models/qanotifications.d.ts +0 -3
  67. package/dist/models/qanotifications.d.ts.map +0 -1
  68. package/dist/models/referenceMonitorInfo.d.ts +0 -3
  69. package/dist/models/referenceMonitorInfo.d.ts.map +0 -1
  70. package/dist/models/tests/admin.test.d.ts +0 -2
  71. package/dist/models/tests/admin.test.d.ts.map +0 -1
  72. package/dist/models/tests/configurations.test.d.ts +0 -2
  73. package/dist/models/tests/configurations.test.d.ts.map +0 -1
  74. package/dist/models/tests/measurements.test.d.ts +0 -2
  75. package/dist/models/tests/measurements.test.d.ts.map +0 -1
  76. package/dist/models/tests/monitorRequests.test.d.ts +0 -2
  77. package/dist/models/tests/monitorRequests.test.d.ts.map +0 -1
  78. package/dist/models/tests/monitors.test.d.ts +0 -2
  79. package/dist/models/tests/monitors.test.d.ts.map +0 -1
  80. package/dist/models/tests/organizations.test.d.ts +0 -2
  81. package/dist/models/tests/organizations.test.d.ts.map +0 -1
  82. package/dist/models/tests/users.test.d.ts +0 -2
  83. package/dist/models/tests/users.test.d.ts.map +0 -1
  84. package/dist/models/usageMetrics.d.ts +0 -3
  85. package/dist/models/usageMetrics.d.ts.map +0 -1
  86. package/dist/models/users.d.ts +0 -3
  87. package/dist/models/users.d.ts.map +0 -1
@@ -1,51 +1,51 @@
1
- import mongoose from 'mongoose';
2
- import { MongoMemoryServer } from 'mongodb-memory-server';
3
- import Organizations from '../organizations.js'; // Assuming this file is in the same directory
4
-
5
- let mongoServer;
6
-
7
- // Before running the tests, start the mock MongoDB server
8
- beforeAll(async () => {
9
- mongoServer = await MongoMemoryServer.create();
10
- const mongoUri = mongoServer.getUri();
11
- mongoose.connect(mongoUri, { useNewUrlParser: true, useUnifiedTopology: true });
12
- });
13
-
14
- // After running the tests, stop the mock MongoDB server and close the Mongoose connection
15
- afterAll(async () => {
16
- await mongoose.disconnect();
17
- await mongoServer.stop();
18
- });
19
-
20
- // Clear the database and reset the state before each test
21
- beforeEach(async () => {
22
- await mongoose.connection.dropDatabase();
23
- });
24
-
25
- // Sample test case
26
- test('Create organization and fetch it from the database', async () => {
27
- const organizationData = {
28
- name: 'Acme Corp',
29
- website: 'https://www.example.com',
30
- location: {
31
- city: 'San Francisco',
32
- country: 'United States',
33
- },
34
- authorized: false,
35
- orgAPIKey: [{ key: 'ABC123' }],
36
- orgCode: 'ACME123',
37
- orgDescription: 'A sample organization',
38
- orgLogo: 'https://www.example.com/logo.png',
39
- connectedMonitors: [mongoose.Types.ObjectId()], // Generate a new ObjectId for each connected monitor
40
- communityMessages: [{ message: 'Welcome to our community!' }],
41
- isActive: true,
42
- };
43
-
44
- // Create a new organization document
45
- const createdOrganization = await Organizations.create(organizationData);
46
-
47
- // Fetch the organization from the database
48
- const fetchedOrganization = await Organizations.findById(createdOrganization._id);
49
-
50
- expect(fetchedOrganization).toMatchObject(organizationData);
51
- });
1
+ import mongoose from 'mongoose';
2
+ import { MongoMemoryServer } from 'mongodb-memory-server';
3
+ import Organizations from '../organizations.js'; // Assuming this file is in the same directory
4
+
5
+ let mongoServer;
6
+
7
+ // Before running the tests, start the mock MongoDB server
8
+ beforeAll(async () => {
9
+ mongoServer = await MongoMemoryServer.create();
10
+ const mongoUri = mongoServer.getUri();
11
+ mongoose.connect(mongoUri, { useNewUrlParser: true, useUnifiedTopology: true });
12
+ });
13
+
14
+ // After running the tests, stop the mock MongoDB server and close the Mongoose connection
15
+ afterAll(async () => {
16
+ await mongoose.disconnect();
17
+ await mongoServer.stop();
18
+ });
19
+
20
+ // Clear the database and reset the state before each test
21
+ beforeEach(async () => {
22
+ await mongoose.connection.dropDatabase();
23
+ });
24
+
25
+ // Sample test case
26
+ test('Create organization and fetch it from the database', async () => {
27
+ const organizationData = {
28
+ name: 'Acme Corp',
29
+ website: 'https://www.example.com',
30
+ location: {
31
+ city: 'San Francisco',
32
+ country: 'United States',
33
+ },
34
+ authorized: false,
35
+ orgAPIKey: [{ key: 'ABC123' }],
36
+ orgCode: 'ACME123',
37
+ orgDescription: 'A sample organization',
38
+ orgLogo: 'https://www.example.com/logo.png',
39
+ connectedMonitors: [mongoose.Types.ObjectId()], // Generate a new ObjectId for each connected monitor
40
+ communityMessages: [{ message: 'Welcome to our community!' }],
41
+ isActive: true,
42
+ };
43
+
44
+ // Create a new organization document
45
+ const createdOrganization = await Organizations.create(organizationData);
46
+
47
+ // Fetch the organization from the database
48
+ const fetchedOrganization = await Organizations.findById(createdOrganization._id);
49
+
50
+ expect(fetchedOrganization).toMatchObject(organizationData);
51
+ });
@@ -1,54 +1,54 @@
1
- import mongoose from 'mongoose';
2
- import { MongoMemoryServer } from 'mongodb-memory-server';
3
- import Users from '../users.js'; // Assuming this file is in the same directory
4
-
5
- let mongoServer;
6
-
7
- // Before running the tests, start the mock MongoDB server
8
- beforeAll(async () => {
9
- mongoServer = await MongoMemoryServer.create();
10
- const mongoUri = mongoServer.getUri();
11
- mongoose.connect(mongoUri, { useNewUrlParser: true, useUnifiedTopology: true });
12
- });
13
-
14
- // After running the tests, stop the mock MongoDB server and close the Mongoose connection
15
- afterAll(async () => {
16
- await mongoose.disconnect();
17
- await mongoServer.stop();
18
- });
19
-
20
- // Clear the database and reset the state before each test
21
- beforeEach(async () => {
22
- await mongoose.connection.dropDatabase();
23
- });
24
-
25
- // Sample test case
26
- test('Create user and fetch it from the database', async () => {
27
- const userData = {
28
- name: 'John Doe',
29
- phone: '1234567890',
30
- email: 'john.doe@example.com',
31
- zipCode: '12345',
32
- location: {
33
- city: 'San Francisco',
34
- country: 'United States',
35
- },
36
- organizations: [mongoose.Types.ObjectId()], // Generate a new ObjectId for each organization
37
- alertPhone: '9876543210',
38
- alertCount: 0,
39
- subscribedMonitors: [mongoose.Types.ObjectId()], // Generate a new ObjectId for each subscribed monitor
40
- currentAlertMode: 'Good',
41
- latestAlerts: [{ message: 'Alert 1' }],
42
- optInPhone: true,
43
- optInEmail: true,
44
- isActive: true,
45
- };
46
-
47
- // Create a new user document
48
- const createdUser = await Users.create(userData);
49
-
50
- // Fetch the user from the database
51
- const fetchedUser = await Users.findById(createdUser._id);
52
-
53
- expect(fetchedUser).toMatchObject(userData);
54
- });
1
+ import mongoose from 'mongoose';
2
+ import { MongoMemoryServer } from 'mongodb-memory-server';
3
+ import Users from '../users.js'; // Assuming this file is in the same directory
4
+
5
+ let mongoServer;
6
+
7
+ // Before running the tests, start the mock MongoDB server
8
+ beforeAll(async () => {
9
+ mongoServer = await MongoMemoryServer.create();
10
+ const mongoUri = mongoServer.getUri();
11
+ mongoose.connect(mongoUri, { useNewUrlParser: true, useUnifiedTopology: true });
12
+ });
13
+
14
+ // After running the tests, stop the mock MongoDB server and close the Mongoose connection
15
+ afterAll(async () => {
16
+ await mongoose.disconnect();
17
+ await mongoServer.stop();
18
+ });
19
+
20
+ // Clear the database and reset the state before each test
21
+ beforeEach(async () => {
22
+ await mongoose.connection.dropDatabase();
23
+ });
24
+
25
+ // Sample test case
26
+ test('Create user and fetch it from the database', async () => {
27
+ const userData = {
28
+ name: 'John Doe',
29
+ phone: '1234567890',
30
+ email: 'john.doe@example.com',
31
+ zipCode: '12345',
32
+ location: {
33
+ city: 'San Francisco',
34
+ country: 'United States',
35
+ },
36
+ organizations: [mongoose.Types.ObjectId()], // Generate a new ObjectId for each organization
37
+ alertPhone: '9876543210',
38
+ alertCount: 0,
39
+ subscribedMonitors: [mongoose.Types.ObjectId()], // Generate a new ObjectId for each subscribed monitor
40
+ currentAlertMode: 'Good',
41
+ latestAlerts: [{ message: 'Alert 1' }],
42
+ optInPhone: true,
43
+ optInEmail: true,
44
+ isActive: true,
45
+ };
46
+
47
+ // Create a new user document
48
+ const createdUser = await Users.create(userData);
49
+
50
+ // Fetch the user from the database
51
+ const fetchedUser = await Users.findById(createdUser._id);
52
+
53
+ expect(fetchedUser).toMatchObject(userData);
54
+ });
@@ -1,28 +1,28 @@
1
- import mongoose, { Schema } from "mongoose";
2
-
3
- const requestSchema = new Schema(
4
- {
5
- endpoint: String,
6
- count: Number,
7
- },
8
- { timestamps: true }
9
- );
10
-
11
- const usageMetricsSchema = mongoose.Schema(
12
- {
13
- apiKeyId: { type: mongoose.Schema.Types.ObjectId, ref: "ApiKey" },
14
- endpoint: String,
15
- response: {
16
- sizeInMB: Number,
17
- sizeInKB: Number,
18
- }
19
-
20
- },
21
- { timestamps: true }
22
- );
23
-
24
- const UsageMetrics = mongoose.model("UsageMetrics", usageMetricsSchema);
25
-
26
- export { usageMetricsSchema, UsageMetrics };
27
-
28
-
1
+ import mongoose, { Schema } from "mongoose";
2
+
3
+ const requestSchema = new Schema(
4
+ {
5
+ endpoint: String,
6
+ count: Number,
7
+ },
8
+ { timestamps: true }
9
+ );
10
+
11
+ const usageMetricsSchema = mongoose.Schema(
12
+ {
13
+ apiKeyId: { type: mongoose.Schema.Types.ObjectId, ref: "ApiKey" },
14
+ endpoint: String,
15
+ response: {
16
+ sizeInMB: Number,
17
+ sizeInKB: Number,
18
+ }
19
+
20
+ },
21
+ { timestamps: true }
22
+ );
23
+
24
+ const UsageMetrics = mongoose.model("UsageMetrics", usageMetricsSchema);
25
+
26
+ export { usageMetricsSchema, UsageMetrics };
27
+
28
+
@@ -1,31 +1,31 @@
1
- import mongoose from 'mongoose';
2
-
3
- const usersSchema = mongoose.Schema({
4
- name: String,
5
- phone: String,
6
- email: String,
7
- zipCode: String,
8
- location: [Object],
9
- organizations: [{ type: mongoose.Types.ObjectId, ref: 'Organizations' }],
10
- alertPhone: String,
11
- alertCount: { type: Number, default: 0 },
12
- subscribedMonitors: [{ type: mongoose.Types.ObjectId, ref: 'Monitors' }],
13
- currentAlertMode: { type: String, enum: ['Good', 'Unhealthy','Moderate', 'Unhealthy for SG', 'Very Unhealthy', 'Hazardous'], default: 'Good' },
14
- latestAlerts: [Object],
15
- optInPhone: { type: Boolean, default: true },
16
- optInEmail: { type: Boolean, default: true },
17
- isActive: { type: Boolean, default: true },
18
- hasOnboarded: {type: Boolean, default: false},
19
- isSharingLocation: {type: Boolean, default: false},
20
- toolTips: Object,
21
- alertPreferenceLevel: { type: String, enum: ['Good', 'Moderate', 'Unhealthy for SG', 'Unhealthy', 'Very Unhealthy', 'Hazardous'], default: 'Good' }
22
- },
23
- {
24
- timestamps: true
25
- });
26
-
27
- usersSchema.index({phone: 1});
28
-
29
- const Users = mongoose.model('Users', usersSchema);
30
-
1
+ import mongoose from 'mongoose';
2
+
3
+ const usersSchema = mongoose.Schema({
4
+ name: String,
5
+ phone: String,
6
+ email: String,
7
+ zipCode: String,
8
+ location: [Object],
9
+ organizations: [{ type: mongoose.Types.ObjectId, ref: 'Organizations' }],
10
+ alertPhone: String,
11
+ alertCount: { type: Number, default: 0 },
12
+ subscribedMonitors: [{ type: mongoose.Types.ObjectId, ref: 'Monitors' }],
13
+ currentAlertMode: { type: String, enum: ['Good', 'Unhealthy','Moderate', 'Unhealthy for SG', 'Very Unhealthy', 'Hazardous'], default: 'Good' },
14
+ latestAlerts: [Object],
15
+ optInPhone: { type: Boolean, default: true },
16
+ optInEmail: { type: Boolean, default: true },
17
+ isActive: { type: Boolean, default: true },
18
+ hasOnboarded: {type: Boolean, default: false},
19
+ isSharingLocation: {type: Boolean, default: false},
20
+ toolTips: Object,
21
+ alertPreferenceLevel: { type: String, enum: ['Good', 'Moderate', 'Unhealthy for SG', 'Unhealthy', 'Very Unhealthy', 'Hazardous'], default: 'Good' }
22
+ },
23
+ {
24
+ timestamps: true
25
+ });
26
+
27
+ usersSchema.index({phone: 1});
28
+
29
+ const Users = mongoose.model('Users', usersSchema);
30
+
31
31
  export {usersSchema, Users};
package/tsconfig.json CHANGED
@@ -1,11 +1,11 @@
1
- {
2
- "include": ["src/**/*"],
3
- "compilerOptions": {
4
- "allowJs": true,
5
- // Generate d.ts files
6
- "declaration": true,
7
- "emitDeclarationOnly": true,
8
- "outDir": "dist",
9
- "declarationMap": true
10
- }
1
+ {
2
+ "include": ["src/**/*"],
3
+ "compilerOptions": {
4
+ "allowJs": true,
5
+ // Generate d.ts files
6
+ "declaration": true,
7
+ "emitDeclarationOnly": true,
8
+ "outDir": "dist",
9
+ "declarationMap": true
10
+ }
11
11
  }
@@ -1,11 +0,0 @@
1
- export default Database;
2
- declare class Database {
3
- constructor({ CONNECTION_URL, database }: {
4
- CONNECTION_URL: any;
5
- database: any;
6
- });
7
- CONNECTION_URL: any;
8
- database: any;
9
- _connect(): void;
10
- }
11
- //# sourceMappingURL=db.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"db.d.ts","sourceRoot":"","sources":["../../src/config/db.js"],"names":[],"mappings":";AAEA;IACI;;;OAIC;IAHG,oBAAoC;IACpC,cAAwB;IAI5B,iBASC;CACJ"}
@@ -1,13 +0,0 @@
1
- export default CustomLogger;
2
- declare class CustomLogger {
3
- constructor({ DATADOG_API_KEY, APPLICATION_NAME }: {
4
- DATADOG_API_KEY: any;
5
- APPLICATION_NAME: any;
6
- });
7
- DATADOG_API_KEY: any;
8
- APPLICATION_NAME: any;
9
- logger: import("winston").Logger;
10
- _createLogger(): import("winston").Logger;
11
- getLogger(): import("winston").Logger;
12
- }
13
- //# sourceMappingURL=logger.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../src/config/logger.js"],"names":[],"mappings":";AAGA;IACI;;;OAIC;IAHG,qBAAsC;IACtC,sBAAwC;IACxC,iCAAkC;IAGtC,0CA2BC;IAED,sCAEC;CACJ"}
package/dist/index.d.ts DELETED
@@ -1,48 +0,0 @@
1
- export function createDatabaseInstance({ CONNECTION_URL, database }: {
2
- CONNECTION_URL: any;
3
- database: any;
4
- }): dbConfig;
5
- export function createLoggerInstance({ DATADOG_API_KEY, APPLICATION_NAME }: {
6
- DATADOG_API_KEY: any;
7
- APPLICATION_NAME: any;
8
- }): CustomLogger;
9
- import dbConfig from "./config/db.js";
10
- import CustomLogger from "./config/logger.js";
11
- import { adminSchema } from "./models/admin.js";
12
- import { Admin } from "./models/admin.js";
13
- import { configurationsSchema } from "./models/configurations.js";
14
- import { Configurations } from "./models/configurations.js";
15
- import { measurementsSchema } from "./models/measurements.js";
16
- import { Measurements } from "./models/measurements.js";
17
- import { monitorRequestsSchema } from "./models/monitorRequests.js";
18
- import { MonitorRequests } from "./models/monitorRequests.js";
19
- import { monitorsSchema } from "./models/monitors.js";
20
- import { Monitors } from "./models/monitors.js";
21
- import { organizationsSchema } from "./models/organizations.js";
22
- import { Organizations } from "./models/organizations.js";
23
- import { referenceMonitorInfoSchema } from "./models/referenceMonitorInfo.js";
24
- import { ReferenceMonitorInfo } from "./models/referenceMonitorInfo.js";
25
- import { usersSchema } from "./models/users.js";
26
- import { Users } from "./models/users.js";
27
- import { eventsSchema } from "./models/events.js";
28
- import { Events } from "./models/events.js";
29
- import { lightMonitorSchema } from "./models/lightmonitors.js";
30
- import { LightMonitors } from "./models/lightmonitors.js";
31
- import { monitorSuppliersSchema } from "./models/monitorSuppliers.js";
32
- import { MonitorSuppliers } from "./models/monitorSuppliers.js";
33
- import { contextsSchema } from "./models/contexts.js";
34
- import { Contexts } from "./models/contexts.js";
35
- import { parametersSchema } from "./models/parameters.js";
36
- import { Parameters } from "./models/parameters.js";
37
- import { qaNotificationsSchema } from "./models/qanotifications.js";
38
- import { QANotifications } from "./models/qanotifications.js";
39
- import { announcementSchema } from "./models/announcements.js";
40
- import { Announcements } from "./models/announcements.js";
41
- import { jobsSchema } from "./models/jobs.js";
42
- import { Jobs } from "./models/jobs.js";
43
- import { apiKeySchema } from "./models/apiKey.js";
44
- import { ApiKey } from "./models/apiKey.js";
45
- import { UsageMetrics } from "./models/usageMetrics.js";
46
- import { usageMetricsSchema } from "./models/usageMetrics.js";
47
- export { adminSchema, Admin, configurationsSchema, Configurations, measurementsSchema, Measurements, monitorRequestsSchema, MonitorRequests, monitorsSchema, Monitors, organizationsSchema, Organizations, referenceMonitorInfoSchema, ReferenceMonitorInfo, usersSchema, Users, eventsSchema, Events, lightMonitorSchema, LightMonitors, monitorSuppliersSchema, MonitorSuppliers, contextsSchema, Contexts, parametersSchema, Parameters, qaNotificationsSchema, QANotifications, announcementSchema, Announcements, jobsSchema, Jobs, apiKeySchema, ApiKey, UsageMetrics, usageMetricsSchema };
48
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":"AAoCA;;;aAEC;AAED;;;iBAEC;qBAToB,gBAAgB;yBACZ,oBAAoB;4BAlCV,mBAAmB;sBAAnB,mBAAmB;qCAI/C,4BAA4B;+BAA5B,4BAA4B;mCACc,0BAA0B;6BAA1B,0BAA0B;sCAIpE,6BAA6B;gCAA7B,6BAA6B;+BACK,sBAAsB;yBAAtB,sBAAsB;oCACZ,2BAA2B;8BAA3B,2BAA2B;2CAIvE,kCAAkC;qCAAlC,kCAAkC;4BAQN,mBAAmB;sBAAnB,mBAAmB;6BACjB,oBAAoB;uBAApB,oBAAoB;mCARP,2BAA2B;8BAA3B,2BAA2B;uCAItE,8BAA8B;iCAA9B,8BAA8B;+BACI,sBAAsB;yBAAtB,sBAAsB;iCAClB,wBAAwB;2BAAxB,wBAAwB;sCAM9D,6BAA6B;gCAA7B,6BAA6B;mCACc,2BAA2B;8BAA3B,2BAA2B;2BAC5C,kBAAkB;qBAAlB,kBAAkB;6BACd,oBAAoB;uBAApB,oBAAoB;6BACR,0BAA0B;mCAA1B,0BAA0B"}
@@ -1,3 +0,0 @@
1
- export const adminSchema: any;
2
- export const Admin: any;
3
- //# sourceMappingURL=admin.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"admin.d.ts","sourceRoot":"","sources":["../../src/models/admin.js"],"names":[],"mappings":"AAEA,8BAaG;AAKH,wBAAmD"}
@@ -1,3 +0,0 @@
1
- export const announcementSchema: any;
2
- export const Announcements: any;
3
- //# sourceMappingURL=announcements.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"announcements.d.ts","sourceRoot":"","sources":["../../src/models/announcements.js"],"names":[],"mappings":"AAcA,qCAWE;AAEF,gCAA0E"}
@@ -1,3 +0,0 @@
1
- export const apiKeySchema: any;
2
- export const ApiKey: any;
3
- //# sourceMappingURL=apiKey.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"apiKey.d.ts","sourceRoot":"","sources":["../../src/models/apiKey.js"],"names":[],"mappings":"AACA,+BAiBE;AAEF,yBAAsD"}
@@ -1,3 +0,0 @@
1
- export const configurationsSchema: any;
2
- export const Configurations: any;
3
- //# sourceMappingURL=configurations.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"configurations.d.ts","sourceRoot":"","sources":["../../src/models/configurations.js"],"names":[],"mappings":"AAEA,uCAQG;AAIH,iCAA8E"}
@@ -1,3 +0,0 @@
1
- export const contextsSchema: any;
2
- export const Contexts: any;
3
- //# sourceMappingURL=contexts.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"contexts.d.ts","sourceRoot":"","sources":["../../src/models/contexts.js"],"names":[],"mappings":"AAEA,iCAOE;AAEF,2BAA4D"}
@@ -1,3 +0,0 @@
1
- export const eventsSchema: any;
2
- export const Events: any;
3
- //# sourceMappingURL=events.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../../src/models/events.js"],"names":[],"mappings":"AAEA,+BAiBE;AAKF,yBAAsD"}
@@ -1,3 +0,0 @@
1
- export const jobsSchema: any;
2
- export const Jobs: any;
3
- //# sourceMappingURL=jobs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"jobs.d.ts","sourceRoot":"","sources":["../../src/models/jobs.js"],"names":[],"mappings":"AAEA,6BA4BE;AAEF,uBAAgD"}
@@ -1,3 +0,0 @@
1
- export const lightMonitorSchema: any;
2
- export const LightMonitors: any;
3
- //# sourceMappingURL=lightmonitors.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"lightmonitors.d.ts","sourceRoot":"","sources":["../../src/models/lightmonitors.js"],"names":[],"mappings":"AAEA,qCAmBE;AAIF,gCAAyE"}
@@ -1,3 +0,0 @@
1
- export const measurementsSchema: any;
2
- export const Measurements: any;
3
- //# sourceMappingURL=measurements.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"measurements.d.ts","sourceRoot":"","sources":["../../src/models/measurements.js"],"names":[],"mappings":"AAEA,qCAQG;AAKH,+BAAwE"}
@@ -1,3 +0,0 @@
1
- export const monitorRequestsSchema: any;
2
- export const MonitorRequests: any;
3
- //# sourceMappingURL=monitorRequests.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"monitorRequests.d.ts","sourceRoot":"","sources":["../../src/models/monitorRequests.js"],"names":[],"mappings":"AAEA,wCASG;AAEH,kCAAiF"}
@@ -1,3 +0,0 @@
1
- export const monitorSuppliersSchema: any;
2
- export const MonitorSuppliers: any;
3
- //# sourceMappingURL=monitorSuppliers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"monitorSuppliers.d.ts","sourceRoot":"","sources":["../../src/models/monitorSuppliers.js"],"names":[],"mappings":"AAEA,yCAKG;AAEH,mCAAoF"}
@@ -1,3 +0,0 @@
1
- export const monitorsSchema: any;
2
- export const Monitors: any;
3
- //# sourceMappingURL=monitors.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"monitors.d.ts","sourceRoot":"","sources":["../../src/models/monitors.js"],"names":[],"mappings":"AAEA,iCAmFE;AAOF,2BAA4D"}
@@ -1,3 +0,0 @@
1
- export const organizationsSchema: any;
2
- export const Organizations: any;
3
- //# sourceMappingURL=organizations.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"organizations.d.ts","sourceRoot":"","sources":["../../src/models/organizations.js"],"names":[],"mappings":"AAEA,sCAiBO;AAEP,gCAA2E"}
@@ -1,3 +0,0 @@
1
- export const parametersSchema: any;
2
- export const Parameters: any;
3
- //# sourceMappingURL=parameters.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../src/models/parameters.js"],"names":[],"mappings":"AAEA,mCAKG;AAEH,6BAAkE"}
@@ -1,3 +0,0 @@
1
- export const qaNotificationsSchema: any;
2
- export const QANotifications: any;
3
- //# sourceMappingURL=qanotifications.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"qanotifications.d.ts","sourceRoot":"","sources":["../../src/models/qanotifications.js"],"names":[],"mappings":"AAEA,wCAmBE;AAEF,kCAGE"}
@@ -1,3 +0,0 @@
1
- export const referenceMonitorInfoSchema: any;
2
- export const ReferenceMonitorInfo: any;
3
- //# sourceMappingURL=referenceMonitorInfo.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"referenceMonitorInfo.d.ts","sourceRoot":"","sources":["../../src/models/referenceMonitorInfo.js"],"names":[],"mappings":"AAEA,6CAYG;AAEH,uCAAgG"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=admin.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"admin.test.d.ts","sourceRoot":"","sources":["../../../src/models/tests/admin.test.js"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=configurations.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"configurations.test.d.ts","sourceRoot":"","sources":["../../../src/models/tests/configurations.test.js"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=measurements.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"measurements.test.d.ts","sourceRoot":"","sources":["../../../src/models/tests/measurements.test.js"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=monitorRequests.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"monitorRequests.test.d.ts","sourceRoot":"","sources":["../../../src/models/tests/monitorRequests.test.js"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=monitors.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"monitors.test.d.ts","sourceRoot":"","sources":["../../../src/models/tests/monitors.test.js"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=organizations.test.d.ts.map