@wix/notifications 1.0.46 → 1.0.48
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/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -0
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -0
- package/build/es/index.js +1 -0
- package/build/es/index.js.map +1 -0
- package/build/es/meta.js +1 -0
- package/build/es/meta.js.map +1 -0
- package/build/es/package.json +3 -0
- package/meta/package.json +1 -5
- package/package.json +20 -17
- package/build/cjs/context.d.ts +0 -2
- package/build/cjs/context.js +0 -28
- package/build/es/context.d.ts +0 -2
- package/build/es/context.js +0 -2
- package/context/package.json +0 -7
- package/type-bundles/context.bundle.d.ts +0 -1145
- package/type-bundles/index.bundle.d.ts +0 -1145
- package/type-bundles/meta.bundle.d.ts +0 -233
package/build/cjs/index.js
CHANGED
|
@@ -28,3 +28,4 @@ const notifications = __importStar(require("@wix/notifications_notifications"));
|
|
|
28
28
|
exports.notifications = notifications;
|
|
29
29
|
const notificationsV3 = __importStar(require("@wix/notifications_notifications-v-3"));
|
|
30
30
|
exports.notificationsV3 = notificationsV3;
|
|
31
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,gFAAkE;AAGzD,sCAAa;AAFtB,sFAAwE;AAEhD,0CAAe"}
|
package/build/cjs/meta.js
CHANGED
|
@@ -26,3 +26,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.notificationsV3 = exports.notifications = void 0;
|
|
27
27
|
exports.notifications = __importStar(require("@wix/notifications_notifications/meta"));
|
|
28
28
|
exports.notificationsV3 = __importStar(require("@wix/notifications_notifications-v-3/meta"));
|
|
29
|
+
//# sourceMappingURL=meta.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"meta.js","sourceRoot":"","sources":["../../meta.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uFAAuE;AACvE,6FAA6E"}
|
package/build/es/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,aAAa,MAAM,kCAAkC,CAAC;AAClE,OAAO,KAAK,eAAe,MAAM,sCAAsC,CAAC;AAExE,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,CAAC"}
|
package/build/es/meta.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"meta.js","sourceRoot":"","sources":["../../meta.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,aAAa,MAAM,uCAAuC,CAAC;AACvE,OAAO,KAAK,eAAe,MAAM,2CAA2C,CAAC"}
|
package/meta/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/notifications",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.48",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -9,31 +9,34 @@
|
|
|
9
9
|
"wix-sdk-module=backend,page,public"
|
|
10
10
|
],
|
|
11
11
|
"sideEffects": false,
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
12
|
+
"main": "./build/cjs/index.js",
|
|
13
|
+
"types": "./build/es/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./build/es/index.js",
|
|
17
|
+
"require": "./build/cjs/index.js",
|
|
18
|
+
"types": "./build/es/index.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./meta": {
|
|
21
|
+
"import": "./build/es/meta.js",
|
|
22
|
+
"require": "./build/cjs/meta.js",
|
|
23
|
+
"types": "./build/es/meta.d.ts"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
16
26
|
"files": [
|
|
17
27
|
"build",
|
|
18
|
-
"frontend/package.json",
|
|
19
28
|
"meta",
|
|
20
|
-
"
|
|
21
|
-
"type-bundles"
|
|
29
|
+
"service-plugins"
|
|
22
30
|
],
|
|
23
31
|
"dependencies": {
|
|
24
|
-
"@wix/notifications_notifications": "1.0.
|
|
25
|
-
"@wix/notifications_notifications-v-3": "1.0.
|
|
32
|
+
"@wix/notifications_notifications": "1.0.29",
|
|
33
|
+
"@wix/notifications_notifications-v-3": "1.0.10"
|
|
26
34
|
},
|
|
27
35
|
"devDependencies": {
|
|
28
|
-
"glob": "^10.4.1",
|
|
29
|
-
"rollup": "^4.18.0",
|
|
30
|
-
"rollup-plugin-dts": "^6.1.1",
|
|
31
36
|
"typescript": "^5.3.2"
|
|
32
37
|
},
|
|
33
38
|
"scripts": {
|
|
34
|
-
"build": "tsc -b tsconfig.json tsconfig.esm.json
|
|
35
|
-
"build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
|
|
36
|
-
"build:validate-dts": "tsc type-bundles/*.d.ts --noEmit",
|
|
39
|
+
"build": "tsc -b tsconfig.json tsconfig.esm.json",
|
|
37
40
|
"test": ":"
|
|
38
41
|
},
|
|
39
42
|
"wix": {
|
|
@@ -47,5 +50,5 @@
|
|
|
47
50
|
"fqdn": ""
|
|
48
51
|
}
|
|
49
52
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "902bd9162ebe38150333b5e1a086ef7c9709fcdf9e253a641f45a654"
|
|
51
54
|
}
|
package/build/cjs/context.d.ts
DELETED
package/build/cjs/context.js
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.notificationsV3 = exports.notifications = void 0;
|
|
27
|
-
exports.notifications = __importStar(require("@wix/notifications_notifications/context"));
|
|
28
|
-
exports.notificationsV3 = __importStar(require("@wix/notifications_notifications-v-3/context"));
|
package/build/es/context.d.ts
DELETED
package/build/es/context.js
DELETED