@bytexbyte/berify-analytics-api 1.5.2 → 1.6.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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@bytexbyte/berify-analytics-api",
3
- "version": "1.5.2",
3
+ "version": "1.6.0",
4
4
  "description": "api",
5
- "main": "lib/index.js",
6
- "types": "lib/index.d.ts",
5
+ "main": "lib/berifyAnalyticsApi/index.js",
6
+ "types": "lib/berifyAnalyticsApi/index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1",
9
9
  "build": "tsc",
@@ -1,12 +0,0 @@
1
- import BxBApi from '@bytexbyte/bxb-api';
2
- import { HeatmapRequest, HeatmapResponse, LastUpdatedAtResponse } from './type';
3
- declare class BerifyHeatMapApi extends BxBApi {
4
- constructor({ host, secretKey, secret }: {
5
- host: string;
6
- secretKey?: string;
7
- secret?: string;
8
- });
9
- getHeatmap(form: HeatmapRequest): Promise<HeatmapResponse>;
10
- getLastUpdatedAt(): Promise<LastUpdatedAtResponse>;
11
- }
12
- export default BerifyHeatMapApi;
@@ -1,105 +0,0 @@
1
- "use strict";
2
- var __extends = (this && this.__extends) || (function () {
3
- var extendStatics = function (d, b) {
4
- extendStatics = Object.setPrototypeOf ||
5
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
- return extendStatics(d, b);
8
- };
9
- return function (d, b) {
10
- if (typeof b !== "function" && b !== null)
11
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
- extendStatics(d, b);
13
- function __() { this.constructor = d; }
14
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
- };
16
- })();
17
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
18
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
19
- return new (P || (P = Promise))(function (resolve, reject) {
20
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
21
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
22
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
23
- step((generator = generator.apply(thisArg, _arguments || [])).next());
24
- });
25
- };
26
- var __generator = (this && this.__generator) || function (thisArg, body) {
27
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
28
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
29
- function verb(n) { return function (v) { return step([n, v]); }; }
30
- function step(op) {
31
- if (f) throw new TypeError("Generator is already executing.");
32
- while (g && (g = 0, op[0] && (_ = 0)), _) try {
33
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
34
- if (y = 0, t) op = [op[0] & 2, t.value];
35
- switch (op[0]) {
36
- case 0: case 1: t = op; break;
37
- case 4: _.label++; return { value: op[1], done: false };
38
- case 5: _.label++; y = op[1]; op = [0]; continue;
39
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
40
- default:
41
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
42
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
43
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
44
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
45
- if (t[2]) _.ops.pop();
46
- _.trys.pop(); continue;
47
- }
48
- op = body.call(thisArg, _);
49
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
50
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
51
- }
52
- };
53
- Object.defineProperty(exports, "__esModule", { value: true });
54
- var bxb_api_1 = require("@bytexbyte/bxb-api");
55
- var BerifyHeatMapApi = /** @class */ (function (_super) {
56
- __extends(BerifyHeatMapApi, _super);
57
- function BerifyHeatMapApi(_a) {
58
- var host = _a.host, secretKey = _a.secretKey, secret = _a.secret;
59
- return _super.call(this, {
60
- host: host,
61
- moduleName: 'heatmap',
62
- secretKey: secretKey !== null && secretKey !== void 0 ? secretKey : 'secretKey',
63
- secret: secret !== null && secret !== void 0 ? secret : 'secret'
64
- }) || this;
65
- }
66
- BerifyHeatMapApi.prototype.getHeatmap = function (form) {
67
- return __awaiter(this, void 0, void 0, function () {
68
- var response;
69
- return __generator(this, function (_a) {
70
- switch (_a.label) {
71
- case 0: return [4 /*yield*/, this.bxbFetch({
72
- method: 'POST',
73
- headers: {
74
- 'Content-Type': 'application/json'
75
- },
76
- body: JSON.stringify(form)
77
- })];
78
- case 1:
79
- response = _a.sent();
80
- return [2 /*return*/, response.json()];
81
- }
82
- });
83
- });
84
- };
85
- BerifyHeatMapApi.prototype.getLastUpdatedAt = function () {
86
- return __awaiter(this, void 0, void 0, function () {
87
- var response;
88
- return __generator(this, function (_a) {
89
- switch (_a.label) {
90
- case 0: return [4 /*yield*/, this.bxbFetch({
91
- method: 'GET',
92
- headers: {
93
- 'Content-Type': 'application/json'
94
- }
95
- })];
96
- case 1:
97
- response = _a.sent();
98
- return [2 /*return*/, response.json()];
99
- }
100
- });
101
- });
102
- };
103
- return BerifyHeatMapApi;
104
- }(bxb_api_1.default));
105
- exports.default = BerifyHeatMapApi;
@@ -1,33 +0,0 @@
1
- import { Decimal } from "@prisma/client/runtime/library";
2
- export type HeatmapApi = (form: HeatmapRequest) => Promise<HeatmapResponse>;
3
- declare enum TimeInterval {
4
- All = "All Time",
5
- LastHour = "Last hour",
6
- LastDay = "Last day",
7
- LastWeek = "Last week",
8
- LastMonth = "Last month"
9
- }
10
- export type HeatmapRequest = {
11
- userId: string;
12
- companyId?: number;
13
- tagTokenId?: string;
14
- batchId?: string;
15
- collectionRuleId?: number;
16
- timeInterval: TimeInterval;
17
- };
18
- export type HeatmapResult = {
19
- id: number;
20
- latitude: Decimal | null;
21
- longitude: Decimal | null;
22
- }[];
23
- export type HeatmapResponse = {
24
- status: 'ok' | 'error';
25
- data?: HeatmapResult;
26
- error?: string;
27
- };
28
- export type LastUpdatedAtResponse = {
29
- status: 'ok' | 'error';
30
- data?: Date;
31
- error?: string;
32
- };
33
- export {};
@@ -1,10 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var TimeInterval;
4
- (function (TimeInterval) {
5
- TimeInterval["All"] = "All Time";
6
- TimeInterval["LastHour"] = "Last hour";
7
- TimeInterval["LastDay"] = "Last day";
8
- TimeInterval["LastWeek"] = "Last week";
9
- TimeInterval["LastMonth"] = "Last month";
10
- })(TimeInterval || (TimeInterval = {}));
@@ -1,16 +0,0 @@
1
- import BxBApi from '@bytexbyte/bxb-api';
2
- import { ScanReportRequest, ScanReportResponse, UserReportRequest, UserReportResponse, ScanRateResponse, ScanRateByTimeRequest, ScanRateByTimeResponse, User, BatchScanDataRequest, BatchScanDataResponse, LeaderBoardResponse, LeaderBoardRequest } from './type';
3
- declare class BerifyScanChartApi extends BxBApi {
4
- constructor({ host, secretKey, secret }: {
5
- host: string;
6
- secretKey?: string;
7
- secret?: string;
8
- });
9
- getScanReport(user: User, form: ScanReportRequest): Promise<ScanReportResponse>;
10
- getUserReport(user: User, form: UserReportRequest): Promise<UserReportResponse>;
11
- getScanRateAll(user: User, form: UserReportRequest): Promise<ScanRateResponse>;
12
- getScanRateByTime(user: User, form: ScanRateByTimeRequest): Promise<ScanRateByTimeResponse>;
13
- getBatchScanData(form: BatchScanDataRequest): Promise<BatchScanDataResponse>;
14
- getLeaderBoard(user: User, form: LeaderBoardRequest): Promise<LeaderBoardResponse>;
15
- }
16
- export default BerifyScanChartApi;
@@ -1,182 +0,0 @@
1
- "use strict";
2
- var __extends = (this && this.__extends) || (function () {
3
- var extendStatics = function (d, b) {
4
- extendStatics = Object.setPrototypeOf ||
5
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
- return extendStatics(d, b);
8
- };
9
- return function (d, b) {
10
- if (typeof b !== "function" && b !== null)
11
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
- extendStatics(d, b);
13
- function __() { this.constructor = d; }
14
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
- };
16
- })();
17
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
18
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
19
- return new (P || (P = Promise))(function (resolve, reject) {
20
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
21
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
22
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
23
- step((generator = generator.apply(thisArg, _arguments || [])).next());
24
- });
25
- };
26
- var __generator = (this && this.__generator) || function (thisArg, body) {
27
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
28
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
29
- function verb(n) { return function (v) { return step([n, v]); }; }
30
- function step(op) {
31
- if (f) throw new TypeError("Generator is already executing.");
32
- while (g && (g = 0, op[0] && (_ = 0)), _) try {
33
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
34
- if (y = 0, t) op = [op[0] & 2, t.value];
35
- switch (op[0]) {
36
- case 0: case 1: t = op; break;
37
- case 4: _.label++; return { value: op[1], done: false };
38
- case 5: _.label++; y = op[1]; op = [0]; continue;
39
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
40
- default:
41
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
42
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
43
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
44
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
45
- if (t[2]) _.ops.pop();
46
- _.trys.pop(); continue;
47
- }
48
- op = body.call(thisArg, _);
49
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
50
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
51
- }
52
- };
53
- Object.defineProperty(exports, "__esModule", { value: true });
54
- var bxb_api_1 = require("@bytexbyte/bxb-api");
55
- var BerifyScanChartApi = /** @class */ (function (_super) {
56
- __extends(BerifyScanChartApi, _super);
57
- function BerifyScanChartApi(_a) {
58
- var host = _a.host, secretKey = _a.secretKey, secret = _a.secret;
59
- return _super.call(this, {
60
- host: host,
61
- moduleName: 'scan-chart',
62
- secretKey: secretKey !== null && secretKey !== void 0 ? secretKey : 'secretKey',
63
- secret: secret !== null && secret !== void 0 ? secret : 'secret'
64
- }) || this;
65
- }
66
- BerifyScanChartApi.prototype.getScanReport = function (user, form) {
67
- return __awaiter(this, void 0, void 0, function () {
68
- var response;
69
- return __generator(this, function (_a) {
70
- switch (_a.label) {
71
- case 0: return [4 /*yield*/, this.bxbFetch({
72
- method: 'POST',
73
- headers: {
74
- 'Content-Type': 'application/json'
75
- },
76
- body: JSON.stringify({ user: user, form: form })
77
- }, 'scan-report')];
78
- case 1:
79
- response = _a.sent();
80
- return [2 /*return*/, response.json()];
81
- }
82
- });
83
- });
84
- };
85
- BerifyScanChartApi.prototype.getUserReport = function (user, form) {
86
- return __awaiter(this, void 0, void 0, function () {
87
- var response;
88
- return __generator(this, function (_a) {
89
- switch (_a.label) {
90
- case 0: return [4 /*yield*/, this.bxbFetch({
91
- method: 'POST',
92
- headers: {
93
- 'Content-Type': 'application/json'
94
- },
95
- body: JSON.stringify({ user: user, form: form })
96
- }, 'user-report')];
97
- case 1:
98
- response = _a.sent();
99
- return [2 /*return*/, response.json()];
100
- }
101
- });
102
- });
103
- };
104
- BerifyScanChartApi.prototype.getScanRateAll = function (user, form) {
105
- return __awaiter(this, void 0, void 0, function () {
106
- var response;
107
- return __generator(this, function (_a) {
108
- switch (_a.label) {
109
- case 0: return [4 /*yield*/, this.bxbFetch({
110
- method: 'POST',
111
- headers: {
112
- 'Content-Type': 'application/json'
113
- },
114
- body: JSON.stringify({ user: user, form: form })
115
- }, 'scan-rate-all')];
116
- case 1:
117
- response = _a.sent();
118
- return [2 /*return*/, response.json()];
119
- }
120
- });
121
- });
122
- };
123
- BerifyScanChartApi.prototype.getScanRateByTime = function (user, form) {
124
- return __awaiter(this, void 0, void 0, function () {
125
- var response;
126
- return __generator(this, function (_a) {
127
- switch (_a.label) {
128
- case 0: return [4 /*yield*/, this.bxbFetch({
129
- method: 'POST',
130
- headers: {
131
- 'Content-Type': 'application/json'
132
- },
133
- body: JSON.stringify({ user: user, form: form })
134
- }, 'scan-rate-by-time')];
135
- case 1:
136
- response = _a.sent();
137
- return [2 /*return*/, response.json()];
138
- }
139
- });
140
- });
141
- };
142
- BerifyScanChartApi.prototype.getBatchScanData = function (form) {
143
- return __awaiter(this, void 0, void 0, function () {
144
- var response;
145
- return __generator(this, function (_a) {
146
- switch (_a.label) {
147
- case 0: return [4 /*yield*/, this.bxbFetch({
148
- method: 'POST',
149
- headers: {
150
- 'Content-Type': 'application/json'
151
- },
152
- body: JSON.stringify({ form: form })
153
- }, 'batch-scan-data')];
154
- case 1:
155
- response = _a.sent();
156
- return [2 /*return*/, response.json()];
157
- }
158
- });
159
- });
160
- };
161
- BerifyScanChartApi.prototype.getLeaderBoard = function (user, form) {
162
- return __awaiter(this, void 0, void 0, function () {
163
- var response;
164
- return __generator(this, function (_a) {
165
- switch (_a.label) {
166
- case 0: return [4 /*yield*/, this.bxbFetch({
167
- method: 'POST',
168
- headers: {
169
- 'Content-Type': 'application/json'
170
- },
171
- body: JSON.stringify({ user: user, form: form })
172
- }, 'leaderBoard')];
173
- case 1:
174
- response = _a.sent();
175
- return [2 /*return*/, response.json()];
176
- }
177
- });
178
- });
179
- };
180
- return BerifyScanChartApi;
181
- }(bxb_api_1.default));
182
- exports.default = BerifyScanChartApi;
@@ -1,143 +0,0 @@
1
- export type ScanReportRequest = {
2
- tagTokenId?: string;
3
- batchId?: string;
4
- companyId?: number;
5
- };
6
- export type ScanReportResult = {
7
- anonymous: number;
8
- unique: number;
9
- returning: number;
10
- total: number;
11
- };
12
- export type ScanReportResponse = {
13
- status: 'ok' | 'error';
14
- data?: ScanReportResult;
15
- error?: string;
16
- };
17
- export type UserReportRequest = {
18
- tagTokenId?: string;
19
- batchId?: string;
20
- companyId?: number;
21
- };
22
- export type UserReportResult = {
23
- appClip: number;
24
- appUser: number;
25
- registeredAppUser: number;
26
- total: number;
27
- };
28
- export type UserReportResponse = {
29
- status: 'ok' | 'error';
30
- data?: UserReportResult;
31
- error?: string;
32
- };
33
- export type ScanRateResponse = {
34
- status: 'ok' | 'error';
35
- data?: {
36
- month: string;
37
- scanCounts: number;
38
- }[];
39
- error?: string;
40
- };
41
- export declare enum TimeInterval {
42
- All = "All Time",
43
- LastHour = "Last hour",
44
- LastDay = "Last day",
45
- LastWeek = "Last week",
46
- LastMonth = "Last month"
47
- }
48
- export type ScanRateByTimeRequest = {
49
- batchId?: string;
50
- companyId?: number;
51
- tagTokenId?: string;
52
- time: TimeInterval;
53
- };
54
- export type ScanRateByTimeResponse = {
55
- status: 'ok' | 'error';
56
- data?: {
57
- scanCounts: number;
58
- date?: Date;
59
- year?: string;
60
- month?: string;
61
- day?: string;
62
- hour?: string;
63
- minute?: string;
64
- }[];
65
- error?: string;
66
- };
67
- export type CompanyRoleType = 'super' | 'admin' | 'marketing' | 'supplier' | 'seo' | 'associate';
68
- export type User = {
69
- id: string;
70
- companyId: number;
71
- companyRole: CompanyRoleType;
72
- };
73
- export type ScanRateType = {
74
- date?: Date;
75
- year?: string;
76
- month?: string;
77
- day?: string;
78
- hour?: string;
79
- minute?: string;
80
- scanCounts: number;
81
- };
82
- export type BatchScanDataRequest = {
83
- batchId: string;
84
- page: string;
85
- pageSize: string;
86
- sort: 'lastScanned' | 'totalScan' | 'uniqueCount';
87
- order: 'asc' | 'desc';
88
- gtRedeemStatus?: 'redeemed' | 'not_redeemed' | 'none';
89
- search?: string;
90
- };
91
- export type BlockChainStatusType = 'transferred' | 'minted' | 'queued' | 'transferring' | 'fail';
92
- export type BatchScanDataResult = {
93
- tagTokenId: string;
94
- totalScan: number;
95
- uniqueCount: number;
96
- lastScanned: Date;
97
- goldenTicketPrize: {
98
- id: number;
99
- tagTokenId: string;
100
- goldenTicketPrizeId: number;
101
- };
102
- goldenTicketRedeem: {
103
- id: number;
104
- tagTokenId: string;
105
- goldenTicketRedeemId: number;
106
- };
107
- tagNft: {
108
- id: number;
109
- tagTokenId: string;
110
- blockchainStatus: BlockChainStatusType;
111
- updatedAt: Date;
112
- };
113
- };
114
- export type BatchScanDataResponse = {
115
- status: 'ok' | 'error';
116
- data?: BatchScanDataResult[];
117
- error?: string;
118
- currentPage: number;
119
- totalPages: number;
120
- pageSize: number;
121
- totalItems: number;
122
- };
123
- export type LeaderBoardRequest = {
124
- tagTokenId?: string;
125
- batchId?: string;
126
- companyId?: number;
127
- page?: number;
128
- pageSize?: number;
129
- };
130
- export type LeaderBoardResult = {
131
- position: number;
132
- batchId: string;
133
- batchName: string;
134
- totalScans: number;
135
- }[];
136
- export type LeaderBoardResponse = {
137
- status: 'ok' | 'error';
138
- data?: {
139
- data: LeaderBoardResult;
140
- totalDatasNumber: number;
141
- };
142
- error?: string;
143
- };
@@ -1,11 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TimeInterval = void 0;
4
- var TimeInterval;
5
- (function (TimeInterval) {
6
- TimeInterval["All"] = "All Time";
7
- TimeInterval["LastHour"] = "Last hour";
8
- TimeInterval["LastDay"] = "Last day";
9
- TimeInterval["LastWeek"] = "Last week";
10
- TimeInterval["LastMonth"] = "Last month";
11
- })(TimeInterval = exports.TimeInterval || (exports.TimeInterval = {}));
package/lib/config.d.ts DELETED
@@ -1 +0,0 @@
1
- export declare const AnalyticsApiSecret = "Analytics-Api-Secret";
package/lib/config.js DELETED
@@ -1,4 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AnalyticsApiSecret = void 0;
4
- exports.AnalyticsApiSecret = 'Analytics-Api-Secret';
package/lib/index.d.ts DELETED
@@ -1,15 +0,0 @@
1
- import BerifyHeatMapApi from "./Heatmap";
2
- import BerifyScanChartApi from "./ScanChart";
3
- declare class BerifyAnalyticsApi {
4
- host: string;
5
- secretKey?: string;
6
- secret?: string;
7
- heatmap: BerifyHeatMapApi;
8
- scanChart: BerifyScanChartApi;
9
- constructor({ host, secretKey, secret }: {
10
- host: string;
11
- secretKey?: string;
12
- secret?: string;
13
- });
14
- }
15
- export default BerifyAnalyticsApi;
package/lib/index.js DELETED
@@ -1,16 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var Heatmap_1 = require("./Heatmap");
4
- var ScanChart_1 = require("./ScanChart");
5
- var BerifyAnalyticsApi = /** @class */ (function () {
6
- function BerifyAnalyticsApi(_a) {
7
- var host = _a.host, secretKey = _a.secretKey, secret = _a.secret;
8
- this.host = host;
9
- this.secretKey = secretKey;
10
- this.secret = secret;
11
- this.heatmap = new Heatmap_1.default({ host: host, secretKey: secretKey, secret: secret });
12
- this.scanChart = new ScanChart_1.default({ host: host, secretKey: secretKey, secret: secret });
13
- }
14
- return BerifyAnalyticsApi;
15
- }());
16
- exports.default = BerifyAnalyticsApi;