@glissandoo/lib 1.61.0 → 1.61.1

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 (167) hide show
  1. package/functions/auth.js +2 -1
  2. package/functions/communication.js +2 -1
  3. package/functions/communicationComment.js +2 -1
  4. package/functions/customer.js +2 -1
  5. package/functions/customerGroup.js +2 -1
  6. package/functions/event.js +5 -2
  7. package/functions/eventPlayer.js +5 -2
  8. package/functions/eventRepertory.js +2 -1
  9. package/functions/federation.js +2 -1
  10. package/functions/federationPartnership.js +2 -1
  11. package/functions/group.js +2 -1
  12. package/functions/groupPlayer.js +2 -1
  13. package/functions/groupRepertory.js +2 -1
  14. package/functions/index.js +5 -2
  15. package/functions/jwt.js +2 -1
  16. package/functions/misc.js +2 -1
  17. package/functions/notification.js +2 -1
  18. package/functions/partner.js +2 -1
  19. package/functions/partnership.js +2 -1
  20. package/functions/partnershipGroup.js +2 -1
  21. package/functions/partnershipPlan.js +2 -1
  22. package/functions/regions.js +128 -124
  23. package/functions/subscription.js +2 -1
  24. package/functions/user.js +2 -1
  25. package/helpers/appScenes.js +5 -2
  26. package/helpers/audios.js +9 -5
  27. package/helpers/auth.js +9 -5
  28. package/helpers/badges.js +19 -10
  29. package/helpers/collections.js +5 -2
  30. package/helpers/countries.js +4 -1
  31. package/helpers/dlinks.js +5 -2
  32. package/helpers/errors.js +5 -2
  33. package/helpers/fileSections/index.js +8 -5
  34. package/helpers/fileSections/orders.js +16 -11
  35. package/helpers/glissandooAdmin.js +6 -2
  36. package/helpers/instruments/index.js +6 -3
  37. package/helpers/instruments/lists.js +19 -11
  38. package/helpers/musicStyles/index.js +36 -29
  39. package/helpers/musicStyles/orders.js +179 -174
  40. package/helpers/notifications/index.js +122 -119
  41. package/helpers/notifications/placeholders.js +26 -18
  42. package/helpers/objects.js +23 -15
  43. package/helpers/payments.js +8 -5
  44. package/helpers/plans.js +9 -6
  45. package/helpers/rates.js +6 -2
  46. package/helpers/reasons.js +21 -17
  47. package/helpers/slate.js +12 -5
  48. package/helpers/styles.js +4 -1
  49. package/helpers/ts-extras/array-includes.js +5 -1
  50. package/helpers/ts-extras/as-mutable.js +5 -1
  51. package/helpers/ts-extras/assert-error.js +5 -1
  52. package/helpers/ts-extras/index.js +33 -15
  53. package/helpers/ts-extras/is-defined.js +5 -1
  54. package/helpers/ts-extras/is-empty.js +5 -1
  55. package/helpers/ts-extras/is-finite.js +4 -1
  56. package/helpers/ts-extras/is-infinite.js +5 -1
  57. package/helpers/ts-extras/is-integer.js +4 -1
  58. package/helpers/ts-extras/is-present.js +5 -1
  59. package/helpers/ts-extras/is-safe-integer.js +4 -1
  60. package/helpers/ts-extras/object-entries.js +4 -1
  61. package/helpers/ts-extras/object-from-entries.js +4 -1
  62. package/helpers/ts-extras/object-has-own.js +5 -1
  63. package/helpers/ts-extras/object-keys.js +4 -1
  64. package/helpers/ts-extras/set-has.js +5 -1
  65. package/helpers/types.js +5 -2
  66. package/helpers/utils.d.ts +1 -0
  67. package/helpers/utils.js +23 -8
  68. package/lang/index.js +51 -42
  69. package/models/Communication/Comment/index.js +12 -5
  70. package/models/Communication/Comment/types.js +2 -1
  71. package/models/Communication/index.js +21 -15
  72. package/models/Communication/types.js +7 -4
  73. package/models/Counters/Group/Analytics/index.js +12 -5
  74. package/models/Counters/Group/Analytics/types.js +5 -2
  75. package/models/Counters/Group/index.js +8 -2
  76. package/models/Counters/Group/types.js +2 -1
  77. package/models/Counters/event.js +8 -2
  78. package/models/Counters/index.js +8 -2
  79. package/models/Counters/types.js +2 -1
  80. package/models/Customer/Group/index.js +14 -7
  81. package/models/Customer/Group/types.js +2 -1
  82. package/models/Customer/basic.js +10 -4
  83. package/models/Customer/index.js +11 -5
  84. package/models/Customer/types.js +5 -2
  85. package/models/Evento/Player/basic.js +11 -10
  86. package/models/Evento/Player/index.js +19 -12
  87. package/models/Evento/Player/types.js +7 -4
  88. package/models/Evento/Repertory/index.js +10 -3
  89. package/models/Evento/Repertory/types.js +2 -1
  90. package/models/Evento/basic.js +18 -12
  91. package/models/Evento/index.js +38 -32
  92. package/models/Evento/promoter.js +8 -2
  93. package/models/Evento/tiny.js +9 -9
  94. package/models/Evento/types.js +17 -14
  95. package/models/Federation/Partnership/index.js +10 -3
  96. package/models/Federation/Partnership/types.js +2 -1
  97. package/models/Federation/index.js +13 -7
  98. package/models/Federation/types.js +2 -1
  99. package/models/Group/Analytics/index.js +12 -5
  100. package/models/Group/Analytics/types.js +5 -2
  101. package/models/Group/Event/index.js +12 -6
  102. package/models/Group/Event/types.js +2 -1
  103. package/models/Group/Player/Event/index.js +18 -11
  104. package/models/Group/Player/Event/types.js +2 -1
  105. package/models/Group/Player/Log/index.js +8 -2
  106. package/models/Group/Player/Log/types.js +2 -1
  107. package/models/Group/Player/index.js +25 -18
  108. package/models/Group/Player/types.js +5 -2
  109. package/models/Group/Repertory/File/Section/index.js +16 -12
  110. package/models/Group/Repertory/File/Section/types.js +5 -2
  111. package/models/Group/Repertory/File/index.js +12 -11
  112. package/models/Group/Repertory/File/types.js +2 -1
  113. package/models/Group/Repertory/FilePath/index.js +15 -12
  114. package/models/Group/Repertory/index.js +32 -25
  115. package/models/Group/Repertory/types.js +5 -2
  116. package/models/Group/StageTemplate/index.js +8 -2
  117. package/models/Group/StageTemplate/types.js +2 -1
  118. package/models/Group/basic.js +11 -5
  119. package/models/Group/index.js +47 -41
  120. package/models/Group/types.js +17 -14
  121. package/models/Instrument/group.js +11 -6
  122. package/models/Instrument/index.js +9 -8
  123. package/models/Metrics/index.js +16 -10
  124. package/models/Metrics/types.js +2 -1
  125. package/models/Model/index.js +6 -7
  126. package/models/Model/lang.js +10 -5
  127. package/models/MusicStyle/index.js +10 -9
  128. package/models/Notification/index.js +8 -2
  129. package/models/Notification/types.js +5 -2
  130. package/models/Partner/basic.js +12 -6
  131. package/models/Partner/index.js +10 -4
  132. package/models/Partner/tiny.js +8 -2
  133. package/models/Partner/types.js +5 -2
  134. package/models/Partnership/Group/index.js +12 -5
  135. package/models/Partnership/Group/types.js +2 -1
  136. package/models/Partnership/Partner/Subscription/index.js +15 -8
  137. package/models/Partnership/Partner/Subscription/types.js +5 -2
  138. package/models/Partnership/Partner/index.js +10 -3
  139. package/models/Partnership/Partner/types.js +2 -1
  140. package/models/Partnership/Payment/index.js +8 -2
  141. package/models/Partnership/Payment/types.js +2 -1
  142. package/models/Partnership/Plan/basic.js +18 -12
  143. package/models/Partnership/Plan/index.js +10 -3
  144. package/models/Partnership/Plan/types.js +5 -2
  145. package/models/Partnership/basic.js +10 -4
  146. package/models/Partnership/index.js +11 -5
  147. package/models/Partnership/types.js +7 -4
  148. package/models/Payment/basic.js +13 -7
  149. package/models/Payment/index.js +8 -2
  150. package/models/Payment/types.js +7 -4
  151. package/models/Player/basic.js +10 -4
  152. package/models/Player/types.js +2 -1
  153. package/models/Repertory/basic.js +8 -2
  154. package/models/Repertory/types.js +2 -1
  155. package/models/User/Group/index.js +15 -8
  156. package/models/User/Group/types.js +2 -1
  157. package/models/User/Notification/index.d.ts +1 -1
  158. package/models/User/Notification/index.js +21 -16
  159. package/models/User/Notification/types.js +2 -1
  160. package/models/User/basic.js +10 -4
  161. package/models/User/index.js +24 -18
  162. package/models/User/types.js +15 -12
  163. package/models/WebhookEvent/index.js +8 -2
  164. package/models/WebhookEvent/types.js +5 -2
  165. package/package.json +1 -1
  166. package/types/firestore.js +5 -2
  167. package/types/messagebirdChatWidget.js +2 -1
@@ -1,25 +1,29 @@
1
- import { get } from 'lodash';
2
- import { replaceKeysNotification, replaceVarsBrackets, } from '../../../helpers/notifications/placeholders';
3
- import { defaultLocale, getTranslation } from '../../../lang';
4
- import Model from '../../Model';
5
- export default class Notification extends Model {
6
- lang;
7
- constructor(doc, lang = defaultLocale) {
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const lodash_1 = require("lodash");
7
+ const placeholders_1 = require("../../../helpers/notifications/placeholders");
8
+ const lang_1 = require("../../../lang");
9
+ const Model_1 = __importDefault(require("../../Model"));
10
+ class Notification extends Model_1.default {
11
+ constructor(doc, lang = lang_1.defaultLocale) {
8
12
  super(doc);
13
+ this.getTranslationByAction = (key) => {
14
+ const translation = (0, lang_1.getTranslation)(`${this.action}.${key}`, this.lang);
15
+ return !translation
16
+ ? this.action
17
+ : (0, placeholders_1.replaceKeysNotification)(translation, this.meta, this.lang);
18
+ };
9
19
  this.lang = lang;
10
20
  }
11
- getTranslationByAction = (key) => {
12
- const translation = getTranslation(`${this.action}.${key}`, this.lang);
13
- return !translation
14
- ? this.action
15
- : replaceKeysNotification(translation, this.meta, this.lang);
16
- };
17
21
  // Uso para consultas
18
22
  get references() {
19
23
  return this.data.references || [];
20
24
  }
21
25
  get userId() {
22
- return this.ref.path.split('/').at(-3);
26
+ return (0, lodash_1.at)(this.ref.path.split('/'), 1) || '';
23
27
  }
24
28
  get photoURL() {
25
29
  return this.data.photoURL;
@@ -31,7 +35,7 @@ export default class Notification extends Model {
31
35
  return this.data.action;
32
36
  }
33
37
  get cleanPhotoURL() {
34
- return this.isAvatar ? replaceVarsBrackets(this.photoURL, this.meta) : this.photoURL;
38
+ return this.isAvatar ? (0, placeholders_1.replaceVarsBrackets)(this.photoURL, this.meta) : this.photoURL;
35
39
  }
36
40
  get isAvatar() {
37
41
  return this.photoURL.slice(0, 1) === '[' && this.photoURL.slice(-1) === ']';
@@ -41,7 +45,7 @@ export default class Notification extends Model {
41
45
  return null;
42
46
  }
43
47
  const params = this.photoURL.substr(1).slice(0, -1).split('.');
44
- return get(this.meta, [params[0], params[1]]) || null;
48
+ return (0, lodash_1.get)(this.meta, [params[0], params[1]]) || null;
45
49
  }
46
50
  get title() {
47
51
  return this.getTranslationByAction('title');
@@ -74,3 +78,4 @@ export default class Notification extends Model {
74
78
  return this.readedAt !== null;
75
79
  }
76
80
  }
81
+ exports.default = Notification;
@@ -1 +1,2 @@
1
- export {};
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,7 +1,12 @@
1
- import { defaultLocale } from '../../lang';
2
- import ModelWithLang from '../Model/lang';
3
- export default class UserBasic extends ModelWithLang {
4
- constructor(doc, lang = defaultLocale) {
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const lang_1 = require("../../lang");
7
+ const lang_2 = __importDefault(require("../Model/lang"));
8
+ class UserBasic extends lang_2.default {
9
+ constructor(doc, lang = lang_1.defaultLocale) {
5
10
  super(doc, lang);
6
11
  }
7
12
  get tinyInfo() {
@@ -27,3 +32,4 @@ export default class UserBasic extends ModelWithLang {
27
32
  return this.data.photoURL;
28
33
  }
29
34
  }
35
+ exports.default = UserBasic;
@@ -1,14 +1,19 @@
1
- import { isNull, isString } from 'lodash';
2
- import { CollectionNames } from '../../helpers/collections';
3
- import { getGlissandooAdminEntityURL } from '../../helpers/glissandooAdmin';
4
- import { mapToArray } from '../../helpers/objects';
5
- import { enumToObj } from '../../helpers/utils';
6
- import { defaultLocale } from '../../lang';
7
- import UserBasic from './basic';
8
- import { UserEmailSettings, UserNotificationSettings, UserRole, } from './types';
9
- export default class User extends UserBasic {
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const lodash_1 = require("lodash");
7
+ const collections_1 = require("../../helpers/collections");
8
+ const glissandooAdmin_1 = require("../../helpers/glissandooAdmin");
9
+ const objects_1 = require("../../helpers/objects");
10
+ const utils_1 = require("../../helpers/utils");
11
+ const lang_1 = require("../../lang");
12
+ const basic_1 = __importDefault(require("./basic"));
13
+ const types_1 = require("./types");
14
+ class User extends basic_1.default {
10
15
  constructor(doc) {
11
- super(doc, doc.get('language') || defaultLocale);
16
+ super(doc, doc.get('language') || lang_1.defaultLocale);
12
17
  }
13
18
  get name() {
14
19
  return this.data.name;
@@ -29,13 +34,13 @@ export default class User extends UserBasic {
29
34
  return this.data.email;
30
35
  }
31
36
  get hasRegistrationComplete() {
32
- return isString(this.displayName) && isString(this.photoURL) && isString(this.email);
37
+ return (0, lodash_1.isString)(this.displayName) && (0, lodash_1.isString)(this.photoURL) && (0, lodash_1.isString)(this.email);
33
38
  }
34
39
  get role() {
35
40
  return this.data.role;
36
41
  }
37
42
  get isSuperAdmin() {
38
- return this.role === UserRole.SuperAdmin;
43
+ return this.role === types_1.UserRole.SuperAdmin;
39
44
  }
40
45
  get description() {
41
46
  return this.data.description || null;
@@ -56,7 +61,7 @@ export default class User extends UserBasic {
56
61
  return this.data.notifications || 0;
57
62
  }
58
63
  get language() {
59
- return this.data.language || defaultLocale;
64
+ return this.data.language || lang_1.defaultLocale;
60
65
  }
61
66
  get createdAt() {
62
67
  return this.data.createdAt;
@@ -80,10 +85,10 @@ export default class User extends UserBasic {
80
85
  return this.data.birthDate;
81
86
  }
82
87
  get notificationSettings() {
83
- return this.data.notificationSettings || enumToObj(UserNotificationSettings, true);
88
+ return this.data.notificationSettings || (0, utils_1.enumToObj)(types_1.UserNotificationSettings, true);
84
89
  }
85
90
  get emailSettings() {
86
- return this.data.emailSettings || enumToObj(UserEmailSettings, true);
91
+ return this.data.emailSettings || (0, utils_1.enumToObj)(types_1.UserEmailSettings, true);
87
92
  }
88
93
  get isActive() {
89
94
  return !this.isDeleted && this.hasRegistrationComplete;
@@ -92,7 +97,7 @@ export default class User extends UserBasic {
92
97
  return this.data.deletedAt || null;
93
98
  }
94
99
  get isDeleted() {
95
- return !this.exists || !isNull(this.deletedAt);
100
+ return !this.exists || !(0, lodash_1.isNull)(this.deletedAt);
96
101
  }
97
102
  get appConfig() {
98
103
  return this.data.appConfig || {};
@@ -113,7 +118,7 @@ export default class User extends UserBasic {
113
118
  return this.data.lastWebLoginAt || null;
114
119
  }
115
120
  get glissandooAdminUrl() {
116
- return getGlissandooAdminEntityURL(CollectionNames.User, this.id);
121
+ return (0, glissandooAdmin_1.getGlissandooAdminEntityURL)(collections_1.CollectionNames.User, this.id);
117
122
  }
118
123
  get customerIds() {
119
124
  return this.data.customerIds || [];
@@ -122,6 +127,7 @@ export default class User extends UserBasic {
122
127
  return this.data.devices || {};
123
128
  }
124
129
  get devicesList() {
125
- return mapToArray(this.devices);
130
+ return (0, objects_1.mapToArray)(this.devices);
126
131
  }
127
132
  }
133
+ exports.default = User;
@@ -1,34 +1,37 @@
1
- export var UserRole;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UserEventsFilter = exports.UserEmailSettings = exports.UserNotificationSettings = exports.UserAppConfig = exports.UserRegisterVia = exports.UserRole = void 0;
4
+ var UserRole;
2
5
  (function (UserRole) {
3
6
  UserRole["SuperAdmin"] = "admin";
4
7
  UserRole["User"] = "user";
5
- })(UserRole || (UserRole = {}));
6
- export var UserRegisterVia;
8
+ })(UserRole = exports.UserRole || (exports.UserRole = {}));
9
+ var UserRegisterVia;
7
10
  (function (UserRegisterVia) {
8
11
  UserRegisterVia["Web"] = "web";
9
12
  UserRegisterVia["App"] = "app";
10
- })(UserRegisterVia || (UserRegisterVia = {}));
11
- export var UserAppConfig;
13
+ })(UserRegisterVia = exports.UserRegisterVia || (exports.UserRegisterVia = {}));
14
+ var UserAppConfig;
12
15
  (function (UserAppConfig) {
13
16
  UserAppConfig["DefaultGroupId"] = "default_group_id";
14
17
  UserAppConfig["DefaultEventsFilter"] = "default_events_filter";
15
- })(UserAppConfig || (UserAppConfig = {}));
16
- export var UserNotificationSettings;
18
+ })(UserAppConfig = exports.UserAppConfig || (exports.UserAppConfig = {}));
19
+ var UserNotificationSettings;
17
20
  (function (UserNotificationSettings) {
18
21
  UserNotificationSettings["AttendanceConfirmed"] = "enabled_attendance_confirmed";
19
22
  UserNotificationSettings["AttendanceDeclined"] = "enabled_attendance_declined";
20
23
  UserNotificationSettings["InterestConfirmed"] = "enabled_interest_confirmed";
21
24
  UserNotificationSettings["InterestLost"] = "enabled_interest_lost";
22
- })(UserNotificationSettings || (UserNotificationSettings = {}));
23
- export var UserEmailSettings;
25
+ })(UserNotificationSettings = exports.UserNotificationSettings || (exports.UserNotificationSettings = {}));
26
+ var UserEmailSettings;
24
27
  (function (UserEmailSettings) {
25
28
  UserEmailSettings["ReminderBiweeklyEvents"] = "enabled_reminder_biweekly_events";
26
- })(UserEmailSettings || (UserEmailSettings = {}));
27
- export var UserEventsFilter;
29
+ })(UserEmailSettings = exports.UserEmailSettings || (exports.UserEmailSettings = {}));
30
+ var UserEventsFilter;
28
31
  (function (UserEventsFilter) {
29
32
  UserEventsFilter[UserEventsFilter["Month"] = 1] = "Month";
30
33
  UserEventsFilter[UserEventsFilter["Trimonth"] = 3] = "Trimonth";
31
34
  UserEventsFilter[UserEventsFilter["SemiAnnual"] = 6] = "SemiAnnual";
32
35
  UserEventsFilter[UserEventsFilter["Annual"] = 12] = "Annual";
33
36
  UserEventsFilter[UserEventsFilter["Always"] = 1000] = "Always";
34
- })(UserEventsFilter || (UserEventsFilter = {}));
37
+ })(UserEventsFilter = exports.UserEventsFilter || (exports.UserEventsFilter = {}));
@@ -1,5 +1,10 @@
1
- import Model from '../Model';
2
- export default class WebhookEvent extends Model {
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const Model_1 = __importDefault(require("../Model"));
7
+ class WebhookEvent extends Model_1.default {
3
8
  constructor(doc) {
4
9
  super(doc);
5
10
  }
@@ -16,3 +21,4 @@ export default class WebhookEvent extends Model {
16
21
  return this.data.createdAt;
17
22
  }
18
23
  }
24
+ exports.default = WebhookEvent;
@@ -1,6 +1,9 @@
1
- export var WebhookEventSource;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WebhookEventSource = void 0;
4
+ var WebhookEventSource;
2
5
  (function (WebhookEventSource) {
3
6
  WebhookEventSource["stripe"] = "stripe";
4
7
  WebhookEventSource["messageBird"] = "messageBird";
5
8
  WebhookEventSource["gocardless"] = "gocardless";
6
- })(WebhookEventSource || (WebhookEventSource = {}));
9
+ })(WebhookEventSource = exports.WebhookEventSource || (exports.WebhookEventSource = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.61.0",
3
+ "version": "1.61.1",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  /*!
2
3
  * Copyright 2020 Google LLC
3
4
  *
@@ -13,6 +14,8 @@
13
14
  * See the License for the specific language governing permissions and
14
15
  * limitations under the License.
15
16
  */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.GrpcStatus = void 0;
16
19
  /**
17
20
  * The v1beta1 Veneer client. This client provides access to to the underlying
18
21
  * Firestore v1beta1 RPCs.
@@ -32,7 +35,7 @@
32
35
  /**
33
36
  * Status codes returned by Firestore's gRPC calls.
34
37
  */
35
- export var GrpcStatus;
38
+ var GrpcStatus;
36
39
  (function (GrpcStatus) {
37
40
  GrpcStatus[GrpcStatus["OK"] = 0] = "OK";
38
41
  GrpcStatus[GrpcStatus["CANCELLED"] = 1] = "CANCELLED";
@@ -51,4 +54,4 @@ export var GrpcStatus;
51
54
  GrpcStatus[GrpcStatus["UNAVAILABLE"] = 14] = "UNAVAILABLE";
52
55
  GrpcStatus[GrpcStatus["DATA_LOSS"] = 15] = "DATA_LOSS";
53
56
  GrpcStatus[GrpcStatus["UNAUTHENTICATED"] = 16] = "UNAUTHENTICATED";
54
- })(GrpcStatus || (GrpcStatus = {}));
57
+ })(GrpcStatus = exports.GrpcStatus || (exports.GrpcStatus = {}));
@@ -1 +1,2 @@
1
- export {};
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });