@blackcode_sa/metaestetics-api 1.6.15 → 1.6.17

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/dist/index.mjs CHANGED
@@ -8085,20 +8085,20 @@ var ProcedureService = class extends BaseService {
8085
8085
  const proceduresCollection = collection15(this.db, PROCEDURES_COLLECTION);
8086
8086
  let proceduresQuery = query15(proceduresCollection);
8087
8087
  if (pagination && pagination > 0) {
8088
- const { limit: limit12, startAfter: startAfter12 } = await import("firebase/firestore");
8088
+ const { limit: limit13, startAfter: startAfter13 } = await import("firebase/firestore");
8089
8089
  if (lastDoc) {
8090
8090
  proceduresQuery = query15(
8091
8091
  proceduresCollection,
8092
8092
  orderBy4("name"),
8093
8093
  // Use imported orderBy
8094
- startAfter12(lastDoc),
8095
- limit12(pagination)
8094
+ startAfter13(lastDoc),
8095
+ limit13(pagination)
8096
8096
  );
8097
8097
  } else {
8098
8098
  proceduresQuery = query15(
8099
8099
  proceduresCollection,
8100
8100
  orderBy4("name"),
8101
- limit12(pagination)
8101
+ limit13(pagination)
8102
8102
  );
8103
8103
  }
8104
8104
  } else {
@@ -12249,7 +12249,14 @@ import {
12249
12249
  Timestamp as Timestamp28,
12250
12250
  serverTimestamp as serverTimestamp24,
12251
12251
  arrayUnion as arrayUnion8,
12252
- arrayRemove as arrayRemove7
12252
+ arrayRemove as arrayRemove7,
12253
+ where as where26,
12254
+ orderBy as orderBy13,
12255
+ collection as collection26,
12256
+ query as query26,
12257
+ limit as limit11,
12258
+ startAfter as startAfter11,
12259
+ getDocs as getDocs26
12253
12260
  } from "firebase/firestore";
12254
12261
  import { getFunctions } from "firebase/functions";
12255
12262
 
@@ -13162,20 +13169,161 @@ var AppointmentService = class extends BaseService {
13162
13169
  };
13163
13170
  return this.updateAppointment(appointmentId, updateData);
13164
13171
  }
13172
+ /**
13173
+ * Gets upcoming appointments for a specific patient.
13174
+ * These include appointments with statuses: PENDING, CONFIRMED, CHECKED_IN, IN_PROGRESS
13175
+ *
13176
+ * @param patientId ID of the patient
13177
+ * @param options Optional parameters for filtering and pagination
13178
+ * @returns Found appointments and the last document for pagination
13179
+ */
13180
+ async getUpcomingPatientAppointments(patientId, options) {
13181
+ try {
13182
+ console.log(
13183
+ `[APPOINTMENT_SERVICE] Getting upcoming appointments for patient: ${patientId}`
13184
+ );
13185
+ const effectiveStartDate = (options == null ? void 0 : options.startDate) || /* @__PURE__ */ new Date();
13186
+ const upcomingStatuses = [
13187
+ "pending" /* PENDING */,
13188
+ "confirmed" /* CONFIRMED */,
13189
+ "checked_in" /* CHECKED_IN */,
13190
+ "in_progress" /* IN_PROGRESS */,
13191
+ "rescheduled_by_clinic" /* RESCHEDULED_BY_CLINIC */
13192
+ ];
13193
+ const constraints = [];
13194
+ constraints.push(where26("patientId", "==", patientId));
13195
+ constraints.push(where26("status", "in", upcomingStatuses));
13196
+ constraints.push(
13197
+ where26(
13198
+ "appointmentStartTime",
13199
+ ">=",
13200
+ Timestamp28.fromDate(effectiveStartDate)
13201
+ )
13202
+ );
13203
+ if (options == null ? void 0 : options.endDate) {
13204
+ constraints.push(
13205
+ where26(
13206
+ "appointmentStartTime",
13207
+ "<=",
13208
+ Timestamp28.fromDate(options.endDate)
13209
+ )
13210
+ );
13211
+ }
13212
+ constraints.push(orderBy13("appointmentStartTime", "asc"));
13213
+ if (options == null ? void 0 : options.limit) {
13214
+ constraints.push(limit11(options.limit));
13215
+ }
13216
+ if (options == null ? void 0 : options.startAfter) {
13217
+ constraints.push(startAfter11(options.startAfter));
13218
+ }
13219
+ const q = query26(
13220
+ collection26(this.db, APPOINTMENTS_COLLECTION),
13221
+ ...constraints
13222
+ );
13223
+ const querySnapshot = await getDocs26(q);
13224
+ const appointments = querySnapshot.docs.map(
13225
+ (doc33) => doc33.data()
13226
+ );
13227
+ const lastDoc = querySnapshot.docs.length > 0 ? querySnapshot.docs[querySnapshot.docs.length - 1] : null;
13228
+ console.log(
13229
+ `[APPOINTMENT_SERVICE] Found ${appointments.length} upcoming appointments for patient ${patientId}`
13230
+ );
13231
+ return { appointments, lastDoc };
13232
+ } catch (error) {
13233
+ console.error(
13234
+ `[APPOINTMENT_SERVICE] Error getting upcoming appointments for patient ${patientId}:`,
13235
+ error
13236
+ );
13237
+ throw error;
13238
+ }
13239
+ }
13240
+ /**
13241
+ * Gets past appointments for a specific patient.
13242
+ * These include appointments with statuses: COMPLETED, CANCELED_PATIENT,
13243
+ * CANCELED_PATIENT_RESCHEDULED, CANCELED_CLINIC, NO_SHOW
13244
+ *
13245
+ * @param patientId ID of the patient
13246
+ * @param options Optional parameters for filtering and pagination
13247
+ * @returns Found appointments and the last document for pagination
13248
+ */
13249
+ async getPastPatientAppointments(patientId, options) {
13250
+ try {
13251
+ console.log(
13252
+ `[APPOINTMENT_SERVICE] Getting past appointments for patient: ${patientId}`
13253
+ );
13254
+ const effectiveEndDate = (options == null ? void 0 : options.endDate) || /* @__PURE__ */ new Date();
13255
+ const pastStatuses = ["completed" /* COMPLETED */];
13256
+ if (options == null ? void 0 : options.showCanceled) {
13257
+ pastStatuses.push(
13258
+ "canceled_patient" /* CANCELED_PATIENT */,
13259
+ "canceled_patient_rescheduled" /* CANCELED_PATIENT_RESCHEDULED */,
13260
+ "canceled_clinic" /* CANCELED_CLINIC */
13261
+ );
13262
+ }
13263
+ if (options == null ? void 0 : options.showNoShow) {
13264
+ pastStatuses.push("no_show" /* NO_SHOW */);
13265
+ }
13266
+ const constraints = [];
13267
+ constraints.push(where26("patientId", "==", patientId));
13268
+ constraints.push(where26("status", "in", pastStatuses));
13269
+ if (options == null ? void 0 : options.startDate) {
13270
+ constraints.push(
13271
+ where26(
13272
+ "appointmentStartTime",
13273
+ ">=",
13274
+ Timestamp28.fromDate(options.startDate)
13275
+ )
13276
+ );
13277
+ }
13278
+ constraints.push(
13279
+ where26(
13280
+ "appointmentStartTime",
13281
+ "<=",
13282
+ Timestamp28.fromDate(effectiveEndDate)
13283
+ )
13284
+ );
13285
+ constraints.push(orderBy13("appointmentStartTime", "desc"));
13286
+ if (options == null ? void 0 : options.limit) {
13287
+ constraints.push(limit11(options.limit));
13288
+ }
13289
+ if (options == null ? void 0 : options.startAfter) {
13290
+ constraints.push(startAfter11(options.startAfter));
13291
+ }
13292
+ const q = query26(
13293
+ collection26(this.db, APPOINTMENTS_COLLECTION),
13294
+ ...constraints
13295
+ );
13296
+ const querySnapshot = await getDocs26(q);
13297
+ const appointments = querySnapshot.docs.map(
13298
+ (doc33) => doc33.data()
13299
+ );
13300
+ const lastDoc = querySnapshot.docs.length > 0 ? querySnapshot.docs[querySnapshot.docs.length - 1] : null;
13301
+ console.log(
13302
+ `[APPOINTMENT_SERVICE] Found ${appointments.length} past appointments for patient ${patientId}`
13303
+ );
13304
+ return { appointments, lastDoc };
13305
+ } catch (error) {
13306
+ console.error(
13307
+ `[APPOINTMENT_SERVICE] Error getting past appointments for patient ${patientId}:`,
13308
+ error
13309
+ );
13310
+ throw error;
13311
+ }
13312
+ }
13165
13313
  };
13166
13314
 
13167
13315
  // src/services/patient/patientRequirements.service.ts
13168
13316
  import {
13169
- collection as collection26,
13170
- getDocs as getDocs26,
13171
- query as query26,
13172
- where as where26,
13317
+ collection as collection27,
13318
+ getDocs as getDocs27,
13319
+ query as query27,
13320
+ where as where27,
13173
13321
  doc as doc27,
13174
13322
  updateDoc as updateDoc26,
13175
13323
  Timestamp as Timestamp29,
13176
- orderBy as orderBy13,
13177
- limit as limit11,
13178
- startAfter as startAfter11,
13324
+ orderBy as orderBy14,
13325
+ limit as limit12,
13326
+ startAfter as startAfter12,
13179
13327
  getDoc as getDoc29
13180
13328
  } from "firebase/firestore";
13181
13329
 
@@ -13207,7 +13355,7 @@ var PatientRequirementsService = class extends BaseService {
13207
13355
  super(db, auth, app);
13208
13356
  }
13209
13357
  getPatientRequirementsCollectionRef(patientId) {
13210
- return collection26(
13358
+ return collection27(
13211
13359
  this.db,
13212
13360
  `patients/${patientId}/${PATIENT_REQUIREMENTS_SUBCOLLECTION_NAME}`
13213
13361
  );
@@ -13245,22 +13393,22 @@ var PatientRequirementsService = class extends BaseService {
13245
13393
  */
13246
13394
  async getAllPatientRequirementInstances(patientId, filters, pageLimit = 20, lastVisible) {
13247
13395
  const collRef = this.getPatientRequirementsCollectionRef(patientId);
13248
- let q = query26(collRef, orderBy13("createdAt", "desc"));
13396
+ let q = query27(collRef, orderBy14("createdAt", "desc"));
13249
13397
  const queryConstraints = [];
13250
13398
  if ((filters == null ? void 0 : filters.appointmentId) && filters.appointmentId !== "all") {
13251
13399
  queryConstraints.push(
13252
- where26("appointmentId", "==", filters.appointmentId)
13400
+ where27("appointmentId", "==", filters.appointmentId)
13253
13401
  );
13254
13402
  }
13255
13403
  if ((filters == null ? void 0 : filters.statuses) && filters.statuses.length > 0) {
13256
- queryConstraints.push(where26("overallStatus", "in", filters.statuses));
13404
+ queryConstraints.push(where27("overallStatus", "in", filters.statuses));
13257
13405
  }
13258
13406
  if (lastVisible) {
13259
- queryConstraints.push(startAfter11(lastVisible));
13407
+ queryConstraints.push(startAfter12(lastVisible));
13260
13408
  }
13261
- queryConstraints.push(limit11(pageLimit));
13262
- q = query26(collRef, ...queryConstraints);
13263
- const snapshot = await getDocs26(q);
13409
+ queryConstraints.push(limit12(pageLimit));
13410
+ q = query27(collRef, ...queryConstraints);
13411
+ const snapshot = await getDocs27(q);
13264
13412
  let requirements = snapshot.docs.map((docSnap) => {
13265
13413
  const data = docSnap.data();
13266
13414
  return { id: docSnap.id, ...data };
@@ -13373,13 +13521,13 @@ var PatientRequirementsService = class extends BaseService {
13373
13521
  // src/backoffice/services/brand.service.ts
13374
13522
  import {
13375
13523
  addDoc as addDoc3,
13376
- collection as collection27,
13524
+ collection as collection28,
13377
13525
  doc as doc28,
13378
13526
  getDoc as getDoc30,
13379
- getDocs as getDocs27,
13380
- query as query27,
13527
+ getDocs as getDocs28,
13528
+ query as query28,
13381
13529
  updateDoc as updateDoc27,
13382
- where as where27
13530
+ where as where28
13383
13531
  } from "firebase/firestore";
13384
13532
 
13385
13533
  // src/backoffice/types/brand.types.ts
@@ -13391,7 +13539,7 @@ var BrandService = class extends BaseService {
13391
13539
  * Gets reference to brands collection
13392
13540
  */
13393
13541
  getBrandsRef() {
13394
- return collection27(this.db, BRANDS_COLLECTION);
13542
+ return collection28(this.db, BRANDS_COLLECTION);
13395
13543
  }
13396
13544
  /**
13397
13545
  * Creates a new brand
@@ -13411,8 +13559,8 @@ var BrandService = class extends BaseService {
13411
13559
  * Gets all active brands
13412
13560
  */
13413
13561
  async getAll() {
13414
- const q = query27(this.getBrandsRef(), where27("isActive", "==", true));
13415
- const snapshot = await getDocs27(q);
13562
+ const q = query28(this.getBrandsRef(), where28("isActive", "==", true));
13563
+ const snapshot = await getDocs28(q);
13416
13564
  return snapshot.docs.map(
13417
13565
  (doc33) => ({
13418
13566
  id: doc33.id,
@@ -13457,13 +13605,13 @@ var BrandService = class extends BaseService {
13457
13605
  // src/backoffice/services/category.service.ts
13458
13606
  import {
13459
13607
  addDoc as addDoc4,
13460
- collection as collection28,
13608
+ collection as collection29,
13461
13609
  doc as doc29,
13462
13610
  getDoc as getDoc31,
13463
- getDocs as getDocs28,
13464
- query as query28,
13611
+ getDocs as getDocs29,
13612
+ query as query29,
13465
13613
  updateDoc as updateDoc28,
13466
- where as where28
13614
+ where as where29
13467
13615
  } from "firebase/firestore";
13468
13616
 
13469
13617
  // src/backoffice/types/category.types.ts
@@ -13475,7 +13623,7 @@ var CategoryService = class extends BaseService {
13475
13623
  * Referenca na Firestore kolekciju kategorija
13476
13624
  */
13477
13625
  get categoriesRef() {
13478
- return collection28(this.db, CATEGORIES_COLLECTION);
13626
+ return collection29(this.db, CATEGORIES_COLLECTION);
13479
13627
  }
13480
13628
  /**
13481
13629
  * Kreira novu kategoriju u sistemu
@@ -13498,8 +13646,8 @@ var CategoryService = class extends BaseService {
13498
13646
  * @returns Lista aktivnih kategorija
13499
13647
  */
13500
13648
  async getAll() {
13501
- const q = query28(this.categoriesRef, where28("isActive", "==", true));
13502
- const snapshot = await getDocs28(q);
13649
+ const q = query29(this.categoriesRef, where29("isActive", "==", true));
13650
+ const snapshot = await getDocs29(q);
13503
13651
  return snapshot.docs.map(
13504
13652
  (doc33) => ({
13505
13653
  id: doc33.id,
@@ -13513,12 +13661,12 @@ var CategoryService = class extends BaseService {
13513
13661
  * @returns Lista kategorija koje pripadaju traženoj familiji
13514
13662
  */
13515
13663
  async getAllByFamily(family) {
13516
- const q = query28(
13664
+ const q = query29(
13517
13665
  this.categoriesRef,
13518
- where28("family", "==", family),
13519
- where28("isActive", "==", true)
13666
+ where29("family", "==", family),
13667
+ where29("isActive", "==", true)
13520
13668
  );
13521
- const snapshot = await getDocs28(q);
13669
+ const snapshot = await getDocs29(q);
13522
13670
  return snapshot.docs.map(
13523
13671
  (doc33) => ({
13524
13672
  id: doc33.id,
@@ -13567,13 +13715,13 @@ var CategoryService = class extends BaseService {
13567
13715
  // src/backoffice/services/subcategory.service.ts
13568
13716
  import {
13569
13717
  addDoc as addDoc5,
13570
- collection as collection29,
13718
+ collection as collection30,
13571
13719
  doc as doc30,
13572
13720
  getDoc as getDoc32,
13573
- getDocs as getDocs29,
13574
- query as query29,
13721
+ getDocs as getDocs30,
13722
+ query as query30,
13575
13723
  updateDoc as updateDoc29,
13576
- where as where29
13724
+ where as where30
13577
13725
  } from "firebase/firestore";
13578
13726
 
13579
13727
  // src/backoffice/types/subcategory.types.ts
@@ -13586,7 +13734,7 @@ var SubcategoryService = class extends BaseService {
13586
13734
  * @param categoryId - ID roditeljske kategorije
13587
13735
  */
13588
13736
  getSubcategoriesRef(categoryId) {
13589
- return collection29(
13737
+ return collection30(
13590
13738
  this.db,
13591
13739
  CATEGORIES_COLLECTION,
13592
13740
  categoryId,
@@ -13620,11 +13768,11 @@ var SubcategoryService = class extends BaseService {
13620
13768
  * @returns Lista aktivnih podkategorija
13621
13769
  */
13622
13770
  async getAllByCategoryId(categoryId) {
13623
- const q = query29(
13771
+ const q = query30(
13624
13772
  this.getSubcategoriesRef(categoryId),
13625
- where29("isActive", "==", true)
13773
+ where30("isActive", "==", true)
13626
13774
  );
13627
- const snapshot = await getDocs29(q);
13775
+ const snapshot = await getDocs30(q);
13628
13776
  return snapshot.docs.map(
13629
13777
  (doc33) => ({
13630
13778
  id: doc33.id,
@@ -13676,13 +13824,13 @@ var SubcategoryService = class extends BaseService {
13676
13824
  // src/backoffice/services/technology.service.ts
13677
13825
  import {
13678
13826
  addDoc as addDoc6,
13679
- collection as collection30,
13827
+ collection as collection31,
13680
13828
  doc as doc31,
13681
13829
  getDoc as getDoc33,
13682
- getDocs as getDocs30,
13683
- query as query30,
13830
+ getDocs as getDocs31,
13831
+ query as query31,
13684
13832
  updateDoc as updateDoc30,
13685
- where as where30,
13833
+ where as where31,
13686
13834
  arrayUnion as arrayUnion9,
13687
13835
  arrayRemove as arrayRemove8
13688
13836
  } from "firebase/firestore";
@@ -13695,7 +13843,7 @@ var TechnologyService = class extends BaseService {
13695
13843
  * Vraća referencu na Firestore kolekciju tehnologija
13696
13844
  */
13697
13845
  getTechnologiesRef() {
13698
- return collection30(this.db, TECHNOLOGIES_COLLECTION);
13846
+ return collection31(this.db, TECHNOLOGIES_COLLECTION);
13699
13847
  }
13700
13848
  /**
13701
13849
  * Kreira novu tehnologiju
@@ -13726,8 +13874,8 @@ var TechnologyService = class extends BaseService {
13726
13874
  * @returns Lista aktivnih tehnologija
13727
13875
  */
13728
13876
  async getAll() {
13729
- const q = query30(this.getTechnologiesRef(), where30("isActive", "==", true));
13730
- const snapshot = await getDocs30(q);
13877
+ const q = query31(this.getTechnologiesRef(), where31("isActive", "==", true));
13878
+ const snapshot = await getDocs31(q);
13731
13879
  return snapshot.docs.map(
13732
13880
  (doc33) => ({
13733
13881
  id: doc33.id,
@@ -13741,12 +13889,12 @@ var TechnologyService = class extends BaseService {
13741
13889
  * @returns Lista aktivnih tehnologija
13742
13890
  */
13743
13891
  async getAllByFamily(family) {
13744
- const q = query30(
13892
+ const q = query31(
13745
13893
  this.getTechnologiesRef(),
13746
- where30("isActive", "==", true),
13747
- where30("family", "==", family)
13894
+ where31("isActive", "==", true),
13895
+ where31("family", "==", family)
13748
13896
  );
13749
- const snapshot = await getDocs30(q);
13897
+ const snapshot = await getDocs31(q);
13750
13898
  return snapshot.docs.map(
13751
13899
  (doc33) => ({
13752
13900
  id: doc33.id,
@@ -13760,12 +13908,12 @@ var TechnologyService = class extends BaseService {
13760
13908
  * @returns Lista aktivnih tehnologija
13761
13909
  */
13762
13910
  async getAllByCategoryId(categoryId) {
13763
- const q = query30(
13911
+ const q = query31(
13764
13912
  this.getTechnologiesRef(),
13765
- where30("isActive", "==", true),
13766
- where30("categoryId", "==", categoryId)
13913
+ where31("isActive", "==", true),
13914
+ where31("categoryId", "==", categoryId)
13767
13915
  );
13768
- const snapshot = await getDocs30(q);
13916
+ const snapshot = await getDocs31(q);
13769
13917
  return snapshot.docs.map(
13770
13918
  (doc33) => ({
13771
13919
  id: doc33.id,
@@ -13779,12 +13927,12 @@ var TechnologyService = class extends BaseService {
13779
13927
  * @returns Lista aktivnih tehnologija
13780
13928
  */
13781
13929
  async getAllBySubcategoryId(subcategoryId) {
13782
- const q = query30(
13930
+ const q = query31(
13783
13931
  this.getTechnologiesRef(),
13784
- where30("isActive", "==", true),
13785
- where30("subcategoryId", "==", subcategoryId)
13932
+ where31("isActive", "==", true),
13933
+ where31("subcategoryId", "==", subcategoryId)
13786
13934
  );
13787
- const snapshot = await getDocs30(q);
13935
+ const snapshot = await getDocs31(q);
13788
13936
  return snapshot.docs.map(
13789
13937
  (doc33) => ({
13790
13938
  id: doc33.id,
@@ -14106,13 +14254,13 @@ var TechnologyService = class extends BaseService {
14106
14254
  // src/backoffice/services/product.service.ts
14107
14255
  import {
14108
14256
  addDoc as addDoc7,
14109
- collection as collection31,
14257
+ collection as collection32,
14110
14258
  doc as doc32,
14111
14259
  getDoc as getDoc34,
14112
- getDocs as getDocs31,
14113
- query as query31,
14260
+ getDocs as getDocs32,
14261
+ query as query32,
14114
14262
  updateDoc as updateDoc31,
14115
- where as where31
14263
+ where as where32
14116
14264
  } from "firebase/firestore";
14117
14265
 
14118
14266
  // src/backoffice/types/product.types.ts
@@ -14126,7 +14274,7 @@ var ProductService = class extends BaseService {
14126
14274
  * @returns Firestore collection reference
14127
14275
  */
14128
14276
  getProductsRef(technologyId) {
14129
- return collection31(
14277
+ return collection32(
14130
14278
  this.db,
14131
14279
  TECHNOLOGIES_COLLECTION,
14132
14280
  technologyId,
@@ -14156,11 +14304,11 @@ var ProductService = class extends BaseService {
14156
14304
  * Gets all products for a technology
14157
14305
  */
14158
14306
  async getAllByTechnology(technologyId) {
14159
- const q = query31(
14307
+ const q = query32(
14160
14308
  this.getProductsRef(technologyId),
14161
- where31("isActive", "==", true)
14309
+ where32("isActive", "==", true)
14162
14310
  );
14163
- const snapshot = await getDocs31(q);
14311
+ const snapshot = await getDocs32(q);
14164
14312
  return snapshot.docs.map(
14165
14313
  (doc33) => ({
14166
14314
  id: doc33.id,
@@ -14172,16 +14320,16 @@ var ProductService = class extends BaseService {
14172
14320
  * Gets all products for a brand by filtering through all technologies
14173
14321
  */
14174
14322
  async getAllByBrand(brandId) {
14175
- const allTechnologiesRef = collection31(this.db, TECHNOLOGIES_COLLECTION);
14176
- const technologiesSnapshot = await getDocs31(allTechnologiesRef);
14323
+ const allTechnologiesRef = collection32(this.db, TECHNOLOGIES_COLLECTION);
14324
+ const technologiesSnapshot = await getDocs32(allTechnologiesRef);
14177
14325
  const products = [];
14178
14326
  for (const techDoc of technologiesSnapshot.docs) {
14179
- const q = query31(
14327
+ const q = query32(
14180
14328
  this.getProductsRef(techDoc.id),
14181
- where31("brandId", "==", brandId),
14182
- where31("isActive", "==", true)
14329
+ where32("brandId", "==", brandId),
14330
+ where32("isActive", "==", true)
14183
14331
  );
14184
- const snapshot = await getDocs31(q);
14332
+ const snapshot = await getDocs32(q);
14185
14333
  products.push(
14186
14334
  ...snapshot.docs.map(
14187
14335
  (doc33) => ({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@blackcode_sa/metaestetics-api",
3
3
  "private": false,
4
- "version": "1.6.15",
4
+ "version": "1.6.17",
5
5
  "description": "Firebase authentication service with anonymous upgrade support",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",