@getsupertab/supertab-js 3.22.0 → 3.22.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.
- package/dist/pkg/prod/{browser-ponyfill-DQtSolF7.js → browser-ponyfill-COMhlckU.js} +1 -1
- package/dist/pkg/prod/{sentry-BfU8w763.js → sentry-CkhvrBzC.js} +1 -1
- package/dist/pkg/prod/{supertab-B8Vn8zcc.js → supertab-CsEpZyRy.js} +4104 -4100
- package/dist/pkg/prod/supertab.d.ts +38 -2
- package/dist/pkg/prod/supertab.js +1 -1
- package/package.json +1 -1
|
@@ -110,11 +110,11 @@ declare class ApiClient {
|
|
|
110
110
|
};
|
|
111
111
|
amount: number;
|
|
112
112
|
};
|
|
113
|
-
entitlementDetails: {
|
|
113
|
+
entitlementDetails: null[] | {
|
|
114
114
|
contentKey: string;
|
|
115
115
|
duration: string;
|
|
116
116
|
isRecurring: boolean;
|
|
117
|
-
} |
|
|
117
|
+
} | {
|
|
118
118
|
contentKey: string;
|
|
119
119
|
duration: string;
|
|
120
120
|
isRecurring: boolean;
|
|
@@ -210,6 +210,42 @@ declare class ApiClient {
|
|
|
210
210
|
next: string;
|
|
211
211
|
reason: string;
|
|
212
212
|
} | null;
|
|
213
|
+
} | {
|
|
214
|
+
purchases: {
|
|
215
|
+
status: "completed" | "pending" | "abandoned";
|
|
216
|
+
id: string;
|
|
217
|
+
offeringId: string;
|
|
218
|
+
onetimeOfferingId: string | null;
|
|
219
|
+
purchasedAt: string | (string | null)[] | null;
|
|
220
|
+
completedAt: string | (string | null)[] | null;
|
|
221
|
+
description: string;
|
|
222
|
+
price: {
|
|
223
|
+
currency: {
|
|
224
|
+
symbol: string;
|
|
225
|
+
code: string;
|
|
226
|
+
name: string;
|
|
227
|
+
baseUnit: number;
|
|
228
|
+
};
|
|
229
|
+
amount: number;
|
|
230
|
+
};
|
|
231
|
+
entitlementStatus: {
|
|
232
|
+
contentKey: string;
|
|
233
|
+
hasEntitlement: boolean;
|
|
234
|
+
expires: string | (string | null)[] | null;
|
|
235
|
+
recursAt: string | (string | null)[] | null;
|
|
236
|
+
} | null[] | {
|
|
237
|
+
contentKey: string;
|
|
238
|
+
hasEntitlement: boolean;
|
|
239
|
+
expires: string | (string | null)[] | null;
|
|
240
|
+
recursAt: string | (string | null)[] | null;
|
|
241
|
+
}[] | null;
|
|
242
|
+
metadata?: unknown;
|
|
243
|
+
}[];
|
|
244
|
+
actionRequired: boolean;
|
|
245
|
+
actionRequiredDetails: {
|
|
246
|
+
next: string;
|
|
247
|
+
reason: string;
|
|
248
|
+
} | null;
|
|
213
249
|
} | undefined>;
|
|
214
250
|
}
|
|
215
251
|
|