@guardian/bridget 8.3.3 → 8.5.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/Environment.d.ts +32 -0
- package/Environment.js +185 -3
- package/Interactives.d.ts +71 -0
- package/Interactives.js +273 -0
- package/ListenToArticle.d.ts +178 -0
- package/ListenToArticle.js +963 -0
- package/NativePlatform.d.ts +4 -0
- package/NativePlatform.js +14 -0
- package/index.d.ts +5 -0
- package/index.js +6 -1
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NativePlatform = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
/*
|
|
7
|
+
* Autogenerated by @creditkarma/thrift-typescript v3.7.6
|
|
8
|
+
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
9
|
+
*/
|
|
10
|
+
var NativePlatform;
|
|
11
|
+
(function (NativePlatform) {
|
|
12
|
+
NativePlatform[NativePlatform["ios"] = 0] = "ios";
|
|
13
|
+
NativePlatform[NativePlatform["android"] = 1] = "android";
|
|
14
|
+
})(NativePlatform || (exports.NativePlatform = NativePlatform = {}));
|
package/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from "./MediaEvent";
|
|
|
2
2
|
export * from "./PurchaseScreenReason";
|
|
3
3
|
export * from "./SignInScreenReason";
|
|
4
4
|
export * from "./SignInScreenReferrer";
|
|
5
|
+
export * from "./NativePlatform";
|
|
5
6
|
export * from "./DiscussionNativeError";
|
|
6
7
|
export * from "./Rect";
|
|
7
8
|
export * from "./AdSlot";
|
|
@@ -25,6 +26,8 @@ import * as Tag from "./Tag";
|
|
|
25
26
|
export { Tag as Tag };
|
|
26
27
|
import * as Notifications from "./Notifications";
|
|
27
28
|
export { Notifications as Notifications };
|
|
29
|
+
import * as ListenToArticle from "./ListenToArticle";
|
|
30
|
+
export { ListenToArticle as ListenToArticle };
|
|
28
31
|
import * as User from "./User";
|
|
29
32
|
export { User as User };
|
|
30
33
|
import * as Gallery from "./Gallery";
|
|
@@ -43,3 +46,5 @@ import * as Newsletters from "./Newsletters";
|
|
|
43
46
|
export { Newsletters as Newsletters };
|
|
44
47
|
import * as Interaction from "./Interaction";
|
|
45
48
|
export { Interaction as Interaction };
|
|
49
|
+
import * as Interactives from "./Interactives";
|
|
50
|
+
export { Interactives as Interactives };
|
package/index.js
CHANGED
|
@@ -26,7 +26,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
26
26
|
return result;
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.Interaction = exports.Newsletters = exports.Navigation = exports.Analytics = exports.Discussion = exports.Metrics = exports.Videos = exports.Gallery = exports.User = exports.Notifications = exports.Tag = exports.Acquisitions = exports.Commercial = exports.Environment = void 0;
|
|
29
|
+
exports.Interactives = exports.Interaction = exports.Newsletters = exports.Navigation = exports.Analytics = exports.Discussion = exports.Metrics = exports.Videos = exports.Gallery = exports.User = exports.ListenToArticle = exports.Notifications = exports.Tag = exports.Acquisitions = exports.Commercial = exports.Environment = void 0;
|
|
30
30
|
/* tslint:disable */
|
|
31
31
|
/* eslint-disable */
|
|
32
32
|
/*
|
|
@@ -37,6 +37,7 @@ __exportStar(require("./MediaEvent"), exports);
|
|
|
37
37
|
__exportStar(require("./PurchaseScreenReason"), exports);
|
|
38
38
|
__exportStar(require("./SignInScreenReason"), exports);
|
|
39
39
|
__exportStar(require("./SignInScreenReferrer"), exports);
|
|
40
|
+
__exportStar(require("./NativePlatform"), exports);
|
|
40
41
|
__exportStar(require("./DiscussionNativeError"), exports);
|
|
41
42
|
__exportStar(require("./Rect"), exports);
|
|
42
43
|
__exportStar(require("./AdSlot"), exports);
|
|
@@ -60,6 +61,8 @@ const Tag = __importStar(require("./Tag"));
|
|
|
60
61
|
exports.Tag = Tag;
|
|
61
62
|
const Notifications = __importStar(require("./Notifications"));
|
|
62
63
|
exports.Notifications = Notifications;
|
|
64
|
+
const ListenToArticle = __importStar(require("./ListenToArticle"));
|
|
65
|
+
exports.ListenToArticle = ListenToArticle;
|
|
63
66
|
const User = __importStar(require("./User"));
|
|
64
67
|
exports.User = User;
|
|
65
68
|
const Gallery = __importStar(require("./Gallery"));
|
|
@@ -78,3 +81,5 @@ const Newsletters = __importStar(require("./Newsletters"));
|
|
|
78
81
|
exports.Newsletters = Newsletters;
|
|
79
82
|
const Interaction = __importStar(require("./Interaction"));
|
|
80
83
|
exports.Interaction = Interaction;
|
|
84
|
+
const Interactives = __importStar(require("./Interactives"));
|
|
85
|
+
exports.Interactives = Interactives;
|