@temple-wallet/extension-ads 10.1.1-dev.1638.2 → 11.0.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/dist/index.d.ts +2 -3
- package/dist/index.js +11 -1721
- package/dist/referrals/index.js +10 -181
- package/package.json +1 -1
- package/src/execute-ads-actions/utils.ts +24 -0
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ type StringRecord<T = string> = Record<string, T>;
|
|
|
2
2
|
|
|
3
3
|
interface AdSource {
|
|
4
4
|
shouldNotUseStrictContainerLimits?: boolean;
|
|
5
|
-
providerName: 'Temple' | 'Persona' | 'HypeLab' | 'SmartyAds'
|
|
5
|
+
providerName: 'Temple' | 'Persona' | 'HypeLab' | 'SmartyAds';
|
|
6
6
|
native?: boolean;
|
|
7
7
|
slug: string;
|
|
8
8
|
categories?: string[];
|
|
@@ -158,8 +158,7 @@ declare enum AdsProviderTitle {
|
|
|
158
158
|
SmartyAds = "SmartyAds",
|
|
159
159
|
HypeLab = "HypeLab",
|
|
160
160
|
Persona = "Persona",
|
|
161
|
-
Temple = "Temple Wallet"
|
|
162
|
-
Bitmedia = "Bitmedia"
|
|
161
|
+
Temple = "Temple Wallet"
|
|
163
162
|
}
|
|
164
163
|
type AdsProviderName = keyof typeof AdsProviderTitle;
|
|
165
164
|
|