@blackcode_sa/metaestetics-api 1.15.17-staging.7 → 1.15.17-staging.9
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.d.mts +30 -3
- package/dist/index.d.ts +30 -3
- package/dist/index.js +186 -32
- package/dist/index.mjs +186 -32
- package/package.json +1 -1
- package/src/config/tiers.config.ts +126 -21
- package/src/services/resource/resource.service.ts +85 -16
package/dist/index.mjs
CHANGED
|
@@ -12753,14 +12753,20 @@ import {
|
|
|
12753
12753
|
|
|
12754
12754
|
// src/config/tiers.config.ts
|
|
12755
12755
|
var PERMISSION_KEYS = {
|
|
12756
|
-
//
|
|
12756
|
+
// Clinic
|
|
12757
12757
|
"clinic.view": true,
|
|
12758
12758
|
"clinic.edit": true,
|
|
12759
|
+
"clinic.create": true,
|
|
12759
12760
|
"reviews.view": true,
|
|
12760
|
-
// Calendar
|
|
12761
|
+
// Calendar
|
|
12761
12762
|
"calendar.view": true,
|
|
12763
|
+
"calendar.addEvent": true,
|
|
12764
|
+
"calendar.editEvent": true,
|
|
12765
|
+
"calendar.deleteEvent": true,
|
|
12766
|
+
// Appointments
|
|
12762
12767
|
"appointments.view": true,
|
|
12763
12768
|
"appointments.confirm": true,
|
|
12769
|
+
"appointments.reschedule": true,
|
|
12764
12770
|
"appointments.cancel": true,
|
|
12765
12771
|
// Messaging
|
|
12766
12772
|
"messaging": true,
|
|
@@ -12776,16 +12782,27 @@ var PERMISSION_KEYS = {
|
|
|
12776
12782
|
"resources.delete": true,
|
|
12777
12783
|
// Patients
|
|
12778
12784
|
"patients.view": true,
|
|
12785
|
+
"patients.viewDetails": true,
|
|
12786
|
+
"patients.create": true,
|
|
12779
12787
|
"patients.edit": true,
|
|
12788
|
+
"patients.manageTokens": true,
|
|
12780
12789
|
// Providers (doctors, nurses, laser assistants, etc.)
|
|
12781
12790
|
"providers.view": true,
|
|
12782
|
-
"providers.
|
|
12791
|
+
"providers.create": true,
|
|
12792
|
+
"providers.invite": true,
|
|
12793
|
+
"providers.edit": true,
|
|
12783
12794
|
// Analytics
|
|
12784
12795
|
"analytics.view": true,
|
|
12785
12796
|
// Staff management
|
|
12786
|
-
"staff.
|
|
12797
|
+
"staff.view": true,
|
|
12798
|
+
"staff.edit": true,
|
|
12799
|
+
"staff.invite": true,
|
|
12800
|
+
"staff.delete": true,
|
|
12801
|
+
"staff.viewTokens": true,
|
|
12802
|
+
"staff.deleteTokens": true,
|
|
12787
12803
|
// Settings / Admin
|
|
12788
12804
|
"settings.manage": true,
|
|
12805
|
+
"billing.view": true,
|
|
12789
12806
|
"billing.manage": true
|
|
12790
12807
|
};
|
|
12791
12808
|
var TIER_CONFIG = {
|
|
@@ -12821,10 +12838,15 @@ var DEFAULT_ROLE_PERMISSIONS = {
|
|
|
12821
12838
|
["owner" /* OWNER */]: {
|
|
12822
12839
|
"clinic.view": true,
|
|
12823
12840
|
"clinic.edit": true,
|
|
12841
|
+
"clinic.create": true,
|
|
12824
12842
|
"reviews.view": true,
|
|
12825
12843
|
"calendar.view": true,
|
|
12844
|
+
"calendar.addEvent": true,
|
|
12845
|
+
"calendar.editEvent": true,
|
|
12846
|
+
"calendar.deleteEvent": true,
|
|
12826
12847
|
"appointments.view": true,
|
|
12827
12848
|
"appointments.confirm": true,
|
|
12849
|
+
"appointments.reschedule": true,
|
|
12828
12850
|
"appointments.cancel": true,
|
|
12829
12851
|
"messaging": true,
|
|
12830
12852
|
"procedures.view": true,
|
|
@@ -12836,21 +12858,37 @@ var DEFAULT_ROLE_PERMISSIONS = {
|
|
|
12836
12858
|
"resources.edit": true,
|
|
12837
12859
|
"resources.delete": true,
|
|
12838
12860
|
"patients.view": true,
|
|
12861
|
+
"patients.viewDetails": true,
|
|
12862
|
+
"patients.create": true,
|
|
12839
12863
|
"patients.edit": true,
|
|
12864
|
+
"patients.manageTokens": true,
|
|
12840
12865
|
"providers.view": true,
|
|
12841
|
-
"providers.
|
|
12866
|
+
"providers.create": true,
|
|
12867
|
+
"providers.invite": true,
|
|
12868
|
+
"providers.edit": true,
|
|
12842
12869
|
"analytics.view": true,
|
|
12843
|
-
"staff.
|
|
12870
|
+
"staff.view": true,
|
|
12871
|
+
"staff.edit": true,
|
|
12872
|
+
"staff.invite": true,
|
|
12873
|
+
"staff.delete": true,
|
|
12874
|
+
"staff.viewTokens": true,
|
|
12875
|
+
"staff.deleteTokens": true,
|
|
12844
12876
|
"settings.manage": true,
|
|
12877
|
+
"billing.view": true,
|
|
12845
12878
|
"billing.manage": true
|
|
12846
12879
|
},
|
|
12847
12880
|
["admin" /* ADMIN */]: {
|
|
12848
12881
|
"clinic.view": true,
|
|
12849
12882
|
"clinic.edit": true,
|
|
12883
|
+
"clinic.create": false,
|
|
12850
12884
|
"reviews.view": true,
|
|
12851
12885
|
"calendar.view": true,
|
|
12886
|
+
"calendar.addEvent": true,
|
|
12887
|
+
"calendar.editEvent": true,
|
|
12888
|
+
"calendar.deleteEvent": true,
|
|
12852
12889
|
"appointments.view": true,
|
|
12853
12890
|
"appointments.confirm": true,
|
|
12891
|
+
"appointments.reschedule": true,
|
|
12854
12892
|
"appointments.cancel": true,
|
|
12855
12893
|
"messaging": true,
|
|
12856
12894
|
"procedures.view": true,
|
|
@@ -12862,21 +12900,37 @@ var DEFAULT_ROLE_PERMISSIONS = {
|
|
|
12862
12900
|
"resources.edit": true,
|
|
12863
12901
|
"resources.delete": true,
|
|
12864
12902
|
"patients.view": true,
|
|
12903
|
+
"patients.viewDetails": true,
|
|
12904
|
+
"patients.create": true,
|
|
12865
12905
|
"patients.edit": true,
|
|
12906
|
+
"patients.manageTokens": true,
|
|
12866
12907
|
"providers.view": true,
|
|
12867
|
-
"providers.
|
|
12908
|
+
"providers.create": true,
|
|
12909
|
+
"providers.invite": true,
|
|
12910
|
+
"providers.edit": true,
|
|
12868
12911
|
"analytics.view": true,
|
|
12869
|
-
"staff.
|
|
12912
|
+
"staff.view": true,
|
|
12913
|
+
"staff.edit": false,
|
|
12914
|
+
"staff.invite": false,
|
|
12915
|
+
"staff.delete": false,
|
|
12916
|
+
"staff.viewTokens": false,
|
|
12917
|
+
"staff.deleteTokens": false,
|
|
12870
12918
|
"settings.manage": true,
|
|
12919
|
+
"billing.view": true,
|
|
12871
12920
|
"billing.manage": false
|
|
12872
12921
|
},
|
|
12873
12922
|
["receptionist" /* RECEPTIONIST */]: {
|
|
12874
12923
|
"clinic.view": true,
|
|
12875
12924
|
"clinic.edit": false,
|
|
12925
|
+
"clinic.create": false,
|
|
12876
12926
|
"reviews.view": true,
|
|
12877
12927
|
"calendar.view": true,
|
|
12928
|
+
"calendar.addEvent": true,
|
|
12929
|
+
"calendar.editEvent": false,
|
|
12930
|
+
"calendar.deleteEvent": false,
|
|
12878
12931
|
"appointments.view": true,
|
|
12879
12932
|
"appointments.confirm": true,
|
|
12933
|
+
"appointments.reschedule": true,
|
|
12880
12934
|
"appointments.cancel": false,
|
|
12881
12935
|
"messaging": true,
|
|
12882
12936
|
"procedures.view": true,
|
|
@@ -12888,21 +12942,37 @@ var DEFAULT_ROLE_PERMISSIONS = {
|
|
|
12888
12942
|
"resources.edit": false,
|
|
12889
12943
|
"resources.delete": false,
|
|
12890
12944
|
"patients.view": true,
|
|
12945
|
+
"patients.viewDetails": true,
|
|
12946
|
+
"patients.create": true,
|
|
12891
12947
|
"patients.edit": false,
|
|
12948
|
+
"patients.manageTokens": false,
|
|
12892
12949
|
"providers.view": true,
|
|
12893
|
-
"providers.
|
|
12950
|
+
"providers.create": false,
|
|
12951
|
+
"providers.invite": false,
|
|
12952
|
+
"providers.edit": false,
|
|
12894
12953
|
"analytics.view": false,
|
|
12895
|
-
"staff.
|
|
12954
|
+
"staff.view": false,
|
|
12955
|
+
"staff.edit": false,
|
|
12956
|
+
"staff.invite": false,
|
|
12957
|
+
"staff.delete": false,
|
|
12958
|
+
"staff.viewTokens": false,
|
|
12959
|
+
"staff.deleteTokens": false,
|
|
12896
12960
|
"settings.manage": false,
|
|
12961
|
+
"billing.view": false,
|
|
12897
12962
|
"billing.manage": false
|
|
12898
12963
|
},
|
|
12899
12964
|
["assistant" /* ASSISTANT */]: {
|
|
12900
12965
|
"clinic.view": true,
|
|
12901
12966
|
"clinic.edit": false,
|
|
12967
|
+
"clinic.create": false,
|
|
12902
12968
|
"reviews.view": true,
|
|
12903
12969
|
"calendar.view": true,
|
|
12970
|
+
"calendar.addEvent": false,
|
|
12971
|
+
"calendar.editEvent": false,
|
|
12972
|
+
"calendar.deleteEvent": false,
|
|
12904
12973
|
"appointments.view": true,
|
|
12905
12974
|
"appointments.confirm": false,
|
|
12975
|
+
"appointments.reschedule": false,
|
|
12906
12976
|
"appointments.cancel": false,
|
|
12907
12977
|
"messaging": false,
|
|
12908
12978
|
"procedures.view": true,
|
|
@@ -12914,12 +12984,23 @@ var DEFAULT_ROLE_PERMISSIONS = {
|
|
|
12914
12984
|
"resources.edit": false,
|
|
12915
12985
|
"resources.delete": false,
|
|
12916
12986
|
"patients.view": true,
|
|
12987
|
+
"patients.viewDetails": false,
|
|
12988
|
+
"patients.create": false,
|
|
12917
12989
|
"patients.edit": false,
|
|
12990
|
+
"patients.manageTokens": false,
|
|
12918
12991
|
"providers.view": true,
|
|
12919
|
-
"providers.
|
|
12992
|
+
"providers.create": false,
|
|
12993
|
+
"providers.invite": false,
|
|
12994
|
+
"providers.edit": false,
|
|
12920
12995
|
"analytics.view": false,
|
|
12921
|
-
"staff.
|
|
12996
|
+
"staff.view": false,
|
|
12997
|
+
"staff.edit": false,
|
|
12998
|
+
"staff.invite": false,
|
|
12999
|
+
"staff.delete": false,
|
|
13000
|
+
"staff.viewTokens": false,
|
|
13001
|
+
"staff.deleteTokens": false,
|
|
12922
13002
|
"settings.manage": false,
|
|
13003
|
+
"billing.view": false,
|
|
12923
13004
|
"billing.manage": false
|
|
12924
13005
|
}
|
|
12925
13006
|
};
|
|
@@ -13006,28 +13087,44 @@ var DEFAULT_PLAN_CONFIG = {
|
|
|
13006
13087
|
var PERMISSION_LABELS = {
|
|
13007
13088
|
"clinic.view": { label: "View Clinic", description: "See clinic information and profile", category: "Clinic" },
|
|
13008
13089
|
"clinic.edit": { label: "Edit Clinic", description: "Modify clinic settings and profile", category: "Clinic" },
|
|
13090
|
+
"clinic.create": { label: "Create Clinic", description: "Create new clinic branches", category: "Clinic" },
|
|
13009
13091
|
"reviews.view": { label: "View Reviews", description: "See patient reviews and ratings", category: "Clinic" },
|
|
13010
13092
|
"calendar.view": { label: "View Calendar", description: "See the clinic calendar and schedules", category: "Calendar" },
|
|
13093
|
+
"calendar.addEvent": { label: "Add Events", description: "Create appointments and blocking events on the calendar", category: "Calendar" },
|
|
13094
|
+
"calendar.editEvent": { label: "Edit Events", description: "Edit blocking events on the calendar", category: "Calendar" },
|
|
13095
|
+
"calendar.deleteEvent": { label: "Delete Events", description: "Delete blocking events from the calendar", category: "Calendar" },
|
|
13011
13096
|
"appointments.view": { label: "View Appointments", description: "See appointment list and details", category: "Appointments" },
|
|
13012
|
-
"appointments.confirm": { label: "Confirm Appointments", description: "Confirm
|
|
13097
|
+
"appointments.confirm": { label: "Confirm Appointments", description: "Confirm, reject, check in, and manage appointment status", category: "Appointments" },
|
|
13098
|
+
"appointments.reschedule": { label: "Reschedule Appointments", description: "Reschedule confirmed appointments to a new time", category: "Appointments" },
|
|
13013
13099
|
"appointments.cancel": { label: "Cancel Appointments", description: "Cancel existing appointments", category: "Appointments" },
|
|
13014
13100
|
"messaging": { label: "Messaging", description: "Send and receive messages with patients", category: "Messaging" },
|
|
13015
13101
|
"procedures.view": { label: "View Procedures", description: "See the procedures catalog", category: "Procedures" },
|
|
13016
|
-
"procedures.create": { label: "Create Procedures", description: "Add new procedures to
|
|
13102
|
+
"procedures.create": { label: "Create Procedures", description: "Add new procedures and assign to practitioners", category: "Procedures" },
|
|
13017
13103
|
"procedures.edit": { label: "Edit Procedures", description: "Modify existing procedures", category: "Procedures" },
|
|
13018
13104
|
"procedures.delete": { label: "Delete Procedures", description: "Remove procedures from the catalog", category: "Procedures" },
|
|
13019
13105
|
"resources.view": { label: "View Resources", description: "See clinic resources and equipment", category: "Resources" },
|
|
13020
13106
|
"resources.create": { label: "Create Resources", description: "Add new resources", category: "Resources" },
|
|
13021
|
-
"resources.edit": { label: "Edit Resources", description: "Modify existing resources", category: "Resources" },
|
|
13022
|
-
"resources.delete": { label: "Delete Resources", description: "
|
|
13023
|
-
"patients.view": { label: "View Patients", description: "See patient list
|
|
13024
|
-
"patients.
|
|
13107
|
+
"resources.edit": { label: "Edit Resources", description: "Modify existing resources and activate instances", category: "Resources" },
|
|
13108
|
+
"resources.delete": { label: "Delete Resources", description: "Deactivate resources and delete instances", category: "Resources" },
|
|
13109
|
+
"patients.view": { label: "View Patients", description: "See patient list", category: "Patients" },
|
|
13110
|
+
"patients.viewDetails": { label: "View Patient Details", description: "Open patient file and detailed profile", category: "Patients" },
|
|
13111
|
+
"patients.create": { label: "Create Patients", description: "Add new patients", category: "Patients" },
|
|
13112
|
+
"patients.edit": { label: "Edit Patients", description: "Modify patient records and schedule appointments", category: "Patients" },
|
|
13113
|
+
"patients.manageTokens": { label: "Manage Patient Tokens", description: "Create and manage patient invitation tokens", category: "Patients" },
|
|
13025
13114
|
"providers.view": { label: "View Providers", description: "See the practitioners/providers list", category: "Providers" },
|
|
13026
|
-
"providers.
|
|
13115
|
+
"providers.create": { label: "Create Providers", description: "Add new practitioners to the clinic", category: "Providers" },
|
|
13116
|
+
"providers.invite": { label: "Invite Providers", description: "Invite existing practitioners to the clinic", category: "Providers" },
|
|
13117
|
+
"providers.edit": { label: "Edit Providers", description: "Edit practitioner profiles and manage tokens", category: "Providers" },
|
|
13027
13118
|
"analytics.view": { label: "View Analytics", description: "Access analytics dashboards and reports", category: "Analytics" },
|
|
13028
|
-
"staff.
|
|
13119
|
+
"staff.view": { label: "View Staff", description: "See staff management page and team members", category: "Staff Management" },
|
|
13120
|
+
"staff.edit": { label: "Edit Staff", description: "Edit roles, permissions, and clinic assignments", category: "Staff Management" },
|
|
13121
|
+
"staff.invite": { label: "Invite Staff", description: "Invite new team members", category: "Staff Management" },
|
|
13122
|
+
"staff.delete": { label: "Delete Staff", description: "Remove team members and cancel invitations", category: "Staff Management" },
|
|
13123
|
+
"staff.viewTokens": { label: "View Tokens", description: "See registration tokens", category: "Staff Management" },
|
|
13124
|
+
"staff.deleteTokens": { label: "Delete Tokens", description: "Delete registration tokens", category: "Staff Management" },
|
|
13029
13125
|
"settings.manage": { label: "Manage Settings", description: "Modify clinic group settings", category: "Administration" },
|
|
13030
|
-
"billing.
|
|
13126
|
+
"billing.view": { label: "View Billing", description: "View subscription plans and billing history", category: "Administration" },
|
|
13127
|
+
"billing.manage": { label: "Manage Billing", description: "Manage subscriptions, upgrades, and payments", category: "Administration" }
|
|
13031
13128
|
};
|
|
13032
13129
|
var PERMISSION_CATEGORIES = [
|
|
13033
13130
|
"Clinic",
|
|
@@ -13039,6 +13136,7 @@ var PERMISSION_CATEGORIES = [
|
|
|
13039
13136
|
"Patients",
|
|
13040
13137
|
"Providers",
|
|
13041
13138
|
"Analytics",
|
|
13139
|
+
"Staff Management",
|
|
13042
13140
|
"Administration"
|
|
13043
13141
|
];
|
|
13044
13142
|
var TIER_MAP = {
|
|
@@ -25384,24 +25482,46 @@ var ResourceService = class extends BaseService {
|
|
|
25384
25482
|
if (data.status !== void 0) updateData.status = data.status;
|
|
25385
25483
|
if (data.quantity !== void 0 && data.quantity !== existing.quantity) {
|
|
25386
25484
|
if (data.quantity > existing.quantity) {
|
|
25485
|
+
const allInstances = await this.getResourceInstances(clinicBranchId, resourceId);
|
|
25486
|
+
const activeInstances = allInstances.filter((i) => i.status === "active" /* ACTIVE */);
|
|
25487
|
+
const inactiveInstances = allInstances.filter((i) => i.status === "inactive" /* INACTIVE */);
|
|
25488
|
+
const needed = data.quantity - activeInstances.length;
|
|
25387
25489
|
const batch = writeBatch7(this.db);
|
|
25388
25490
|
const now = serverTimestamp36();
|
|
25389
25491
|
const resourceName = data.name || existing.name;
|
|
25390
|
-
|
|
25492
|
+
let reactivated = 0;
|
|
25493
|
+
const sortedInactive = [...inactiveInstances].sort((a, b) => a.index - b.index);
|
|
25494
|
+
for (const instance of sortedInactive) {
|
|
25495
|
+
if (reactivated >= needed) break;
|
|
25391
25496
|
const instanceRef = doc46(
|
|
25392
|
-
this.getInstancesRef(clinicBranchId, resourceId)
|
|
25497
|
+
this.getInstancesRef(clinicBranchId, resourceId),
|
|
25498
|
+
instance.id
|
|
25393
25499
|
);
|
|
25394
|
-
|
|
25395
|
-
id: instanceRef.id,
|
|
25396
|
-
resourceId,
|
|
25397
|
-
clinicBranchId,
|
|
25398
|
-
label: `${resourceName} #${i}`,
|
|
25399
|
-
index: i,
|
|
25500
|
+
batch.update(instanceRef, {
|
|
25400
25501
|
status: "active" /* ACTIVE */,
|
|
25401
|
-
createdAt: now,
|
|
25402
25502
|
updatedAt: now
|
|
25403
|
-
};
|
|
25404
|
-
|
|
25503
|
+
});
|
|
25504
|
+
reactivated++;
|
|
25505
|
+
}
|
|
25506
|
+
const remaining = needed - reactivated;
|
|
25507
|
+
if (remaining > 0) {
|
|
25508
|
+
const maxIndex = allInstances.reduce((max, i) => Math.max(max, i.index), 0);
|
|
25509
|
+
for (let i = 1; i <= remaining; i++) {
|
|
25510
|
+
const instanceRef = doc46(
|
|
25511
|
+
this.getInstancesRef(clinicBranchId, resourceId)
|
|
25512
|
+
);
|
|
25513
|
+
const instanceData = {
|
|
25514
|
+
id: instanceRef.id,
|
|
25515
|
+
resourceId,
|
|
25516
|
+
clinicBranchId,
|
|
25517
|
+
label: `${resourceName} #${maxIndex + i}`,
|
|
25518
|
+
index: maxIndex + i,
|
|
25519
|
+
status: "active" /* ACTIVE */,
|
|
25520
|
+
createdAt: now,
|
|
25521
|
+
updatedAt: now
|
|
25522
|
+
};
|
|
25523
|
+
batch.set(instanceRef, instanceData);
|
|
25524
|
+
}
|
|
25405
25525
|
}
|
|
25406
25526
|
updateData.quantity = data.quantity;
|
|
25407
25527
|
const resourceDocRef2 = this.getResourceDocRef(
|
|
@@ -25468,6 +25588,40 @@ var ResourceService = class extends BaseService {
|
|
|
25468
25588
|
status: "inactive" /* INACTIVE */
|
|
25469
25589
|
});
|
|
25470
25590
|
}
|
|
25591
|
+
/**
|
|
25592
|
+
* Hard deletes a specific instance and all its calendar events.
|
|
25593
|
+
* Only works on INACTIVE instances with no future bookings.
|
|
25594
|
+
*/
|
|
25595
|
+
async hardDeleteInstance(clinicBranchId, resourceId, instanceId) {
|
|
25596
|
+
const instanceRef = doc46(
|
|
25597
|
+
this.getInstancesRef(clinicBranchId, resourceId),
|
|
25598
|
+
instanceId
|
|
25599
|
+
);
|
|
25600
|
+
const instanceSnap = await getDoc47(instanceRef);
|
|
25601
|
+
if (!instanceSnap.exists()) throw new Error("Instance not found");
|
|
25602
|
+
const instance = instanceSnap.data();
|
|
25603
|
+
if (instance.status === "active" /* ACTIVE */) {
|
|
25604
|
+
throw new Error("Cannot hard-delete an active instance. Deactivate it first.");
|
|
25605
|
+
}
|
|
25606
|
+
const hasFutureBookings = await this.instanceHasFutureBookings(
|
|
25607
|
+
clinicBranchId,
|
|
25608
|
+
resourceId,
|
|
25609
|
+
instanceId
|
|
25610
|
+
);
|
|
25611
|
+
if (hasFutureBookings) {
|
|
25612
|
+
throw new Error("Cannot delete instance with future bookings.");
|
|
25613
|
+
}
|
|
25614
|
+
const calendarRef = this.getInstanceCalendarRef(
|
|
25615
|
+
clinicBranchId,
|
|
25616
|
+
resourceId,
|
|
25617
|
+
instanceId
|
|
25618
|
+
);
|
|
25619
|
+
const calendarSnap = await getDocs35(calendarRef);
|
|
25620
|
+
const batch = writeBatch7(this.db);
|
|
25621
|
+
calendarSnap.docs.forEach((d) => batch.delete(d.ref));
|
|
25622
|
+
batch.delete(instanceRef);
|
|
25623
|
+
await batch.commit();
|
|
25624
|
+
}
|
|
25471
25625
|
/**
|
|
25472
25626
|
* Gets all instances for a resource
|
|
25473
25627
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blackcode_sa/metaestetics-api",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.15.17-staging.
|
|
4
|
+
"version": "1.15.17-staging.9",
|
|
5
5
|
"description": "Firebase authentication service with anonymous upgrade support",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.mjs",
|