apps-sdk 2.1.1 → 2.1.3
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/config.js +50 -16
- package/index.js +2 -1
- package/package.json +2 -2
- package/src/libraries/Authentication.js +799 -0
- package/src/libraries/Networking.js +13 -2
- package/src/libraries/Rating.js +312 -50
- package/src/libraries/Session.js +5 -0
- package/src/libraries/index.js +1 -0
- package/types/index.d.ts +39 -1
package/config.js
CHANGED
|
@@ -1,27 +1,61 @@
|
|
|
1
1
|
const config = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
ATTRIBUTION_SET_DATA: "https://backend.ailandsapp.com/user/set-adjust-data",
|
|
8
|
-
USER_CREATE_ID: "https://backend.ailandsapp.com/user/create-id",
|
|
9
|
-
NOTIFICATION_SET_TOKEN: "https://backend.ailandsapp.com/user/notification-token",
|
|
10
|
-
CONFIG: "https://backend.ailandsapp.com/core/config",
|
|
11
|
-
SUB_NEW: "https://backend.ailandsapp.com/core/sub-new",
|
|
12
|
-
SUB_STATUS: "https://backend.ailandsapp.com/core/sub-status",
|
|
13
|
-
LOCALIZE: "https://backend.ailandsapp.com",
|
|
14
|
-
AUDIENCES: "https://backend.ailandsapp.com",
|
|
15
|
-
CONTENTS: "https://backend.ailandsapp.com",
|
|
2
|
+
// ========================================
|
|
3
|
+
// BASE URLS (Dynamic - configurable)
|
|
4
|
+
// ========================================
|
|
5
|
+
BASE_URLS: {
|
|
6
|
+
CORE: "https://backend.ailandsapp.com",// Default, can be overridden from app
|
|
16
7
|
EVENTS: "https://ap0404.gways.org",
|
|
17
|
-
|
|
18
|
-
|
|
8
|
+
WEBAPP: "https://bc1742.gways.org", // Default, can be overridden from app
|
|
9
|
+
},
|
|
10
|
+
|
|
11
|
+
// ========================================
|
|
12
|
+
// PATHS -
|
|
13
|
+
// ========================================
|
|
14
|
+
CORE_PATHS: {
|
|
15
|
+
CONTENT: "/content",
|
|
16
|
+
PAYMENT_CARD: "/payment-card",
|
|
17
|
+
EVENTS_PUSH: "/event/push",
|
|
18
|
+
ATTRIBUTION_SET_ID: "/user/set-attribution-data",
|
|
19
|
+
ATTRIBUTION_SET_DATA: "/user/set-adjust-data",
|
|
20
|
+
USER_CREATE_ID: "/user/create-id",
|
|
21
|
+
NOTIFICATION_SET_TOKEN: "/user/notification-token",
|
|
22
|
+
CONFIG: "/core/config",
|
|
23
|
+
SUB_NEW: "/core/sub-new",
|
|
24
|
+
SUB_STATUS: "/core/sub-status",
|
|
19
25
|
},
|
|
20
26
|
|
|
21
27
|
WEBAPP_PATHS: {
|
|
22
28
|
GET_CREDITS: "/user/get-credits",
|
|
23
29
|
},
|
|
24
30
|
|
|
31
|
+
LEGAL_PATHS: {
|
|
32
|
+
BASE: "/legal",
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
// ========================================
|
|
36
|
+
// COMPUTED ENDPOINTS (dynamic getter)
|
|
37
|
+
// ========================================
|
|
38
|
+
get ENDPOINTS() {
|
|
39
|
+
return {
|
|
40
|
+
CONTENT: `${this.BASE_URLS.CORE}${this.CORE_PATHS.CONTENT}`,
|
|
41
|
+
PAYMENT_CARD: `${this.BASE_URLS.CORE}${this.CORE_PATHS.PAYMENT_CARD}`,
|
|
42
|
+
EVENTS_PUSH: `${this.BASE_URLS.CORE}${this.CORE_PATHS.EVENTS_PUSH}`,
|
|
43
|
+
ATTRIBUTION_SET_ID: `${this.BASE_URLS.CORE}${this.CORE_PATHS.ATTRIBUTION_SET_ID}`,
|
|
44
|
+
ATTRIBUTION_SET_DATA: `${this.BASE_URLS.CORE}${this.CORE_PATHS.ATTRIBUTION_SET_DATA}`,
|
|
45
|
+
USER_CREATE_ID: `${this.BASE_URLS.CORE}${this.CORE_PATHS.USER_CREATE_ID}`,
|
|
46
|
+
NOTIFICATION_SET_TOKEN: `${this.BASE_URLS.CORE}${this.CORE_PATHS.NOTIFICATION_SET_TOKEN}`,
|
|
47
|
+
CONFIG: `${this.BASE_URLS.CORE}${this.CORE_PATHS.CONFIG}`,
|
|
48
|
+
SUB_NEW: `${this.BASE_URLS.CORE}${this.CORE_PATHS.SUB_NEW}`,
|
|
49
|
+
SUB_STATUS: `${this.BASE_URLS.CORE}${this.CORE_PATHS.SUB_STATUS}`,
|
|
50
|
+
LOCALIZE: this.BASE_URLS.CORE,
|
|
51
|
+
AUDIENCES: this.BASE_URLS.CORE,
|
|
52
|
+
CONTENTS: this.BASE_URLS.CORE,
|
|
53
|
+
EVENTS: this.BASE_URLS.EVENTS,
|
|
54
|
+
LEGAL_BASE: `${this.BASE_URLS.WEBAPP}${this.LEGAL_PATHS.BASE}`, // LEGAL uses WEBAPP base
|
|
55
|
+
WEBAPP: this.BASE_URLS.WEBAPP,
|
|
56
|
+
};
|
|
57
|
+
},
|
|
58
|
+
|
|
25
59
|
EVENTS: {},
|
|
26
60
|
EVENTS_MIXPANEL: {},
|
|
27
61
|
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {NotificationsPush, Networking, Storage, Session, Utils, PayWallLogic, Rating, AdJust, TrackingTransparency, Voice, MixPanel, Adapty, HomeActions, Facebook,
|
|
1
|
+
import {NotificationsPush, Networking, Storage, Session, Utils, PayWallLogic, Rating, AdJust, TrackingTransparency, Voice, MixPanel, Adapty, HomeActions, Facebook, Legal, Authentication} from "./src/libraries";
|
|
2
2
|
// import PayWall from "./src/components/PayWall"; // DEPRECATED: Use SDK.adaptyOnboarding or SDK.adapty.showPaywall() instead
|
|
3
3
|
import AdaptyOnboarding from "./src/components/AdaptyOnboarding";
|
|
4
4
|
|
|
@@ -65,4 +65,5 @@ export default {
|
|
|
65
65
|
facebook: Facebook,
|
|
66
66
|
firebase: Firebase,
|
|
67
67
|
legal: Legal,
|
|
68
|
+
authentication: Authentication,
|
|
68
69
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apps-sdk",
|
|
3
|
-
"version": "2.1.
|
|
4
|
-
"description": "Apps SDK - Compatible with Expo SDK 54 + React 19 -
|
|
3
|
+
"version": "2.1.3",
|
|
4
|
+
"description": "Apps SDK - Compatible with Expo SDK 54 + React 19 - add rating flow, auth modules",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "ASD",
|
|
7
7
|
"license": "ISC",
|