@stackedapp/types 1.15.7 → 1.15.9
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/stacked-types.d.ts +9 -6
- package/package.json +1 -1
package/dist/stacked-types.d.ts
CHANGED
|
@@ -1080,17 +1080,20 @@ interface IThirdPartyApp {
|
|
|
1080
1080
|
_id: Stringable;
|
|
1081
1081
|
/** the organization_id from stytch for b2b auth */
|
|
1082
1082
|
stytchId?: string;
|
|
1083
|
-
/** if true, then automatically add and connect this organization to the stacked User's app
|
|
1083
|
+
/** if true, then automatically add and connect this organization to the stacked User's app
|
|
1084
|
+
* connections, using the unified user _id */
|
|
1084
1085
|
autoAdd?: boolean;
|
|
1085
|
-
/**
|
|
1086
|
-
|
|
1087
|
-
/** should we show advanced offer fields and settings? */
|
|
1088
|
-
advancedOffers?: boolean;
|
|
1086
|
+
/** this means you can't unlink this org from app connections in unified user */
|
|
1087
|
+
unlinkable?: boolean;
|
|
1089
1088
|
/** If ture, the stacked app should show this
|
|
1090
1089
|
* org as a connection even if it hasn't been linked
|
|
1091
1090
|
* or tunneled into yet
|
|
1092
1091
|
*/
|
|
1093
1092
|
showLinkable?: string;
|
|
1093
|
+
/** growthbook project id */
|
|
1094
|
+
growthbookProjectId?: string;
|
|
1095
|
+
/** should we show advanced offer fields and settings? */
|
|
1096
|
+
advancedOffers?: boolean;
|
|
1094
1097
|
/** url of this game. must exist with showLinkable
|
|
1095
1098
|
* if it is to be shown in the app always
|
|
1096
1099
|
*/
|
|
@@ -1286,7 +1289,7 @@ interface IAppState {
|
|
|
1286
1289
|
activeListeners?: Record<string, IActiveListener[]>;
|
|
1287
1290
|
}
|
|
1288
1291
|
|
|
1289
|
-
type StackedThirdPartyApp = Pick<IThirdPartyApp, 'id' | 'displayName' | 'image' | 'showLinkable' | 'url' | 'tagline' | 'description' | 'genres' | 'trailerUrl' | 'gameThumbnail' | 'logo' | 'squareLogo' | 'headerImage' | 'squareScreenshot' | 'screenshots' | 'appStoreUrl' | 'playStoreUrl' | 'webUrl' | 'landingPageUrl' | 'appStoreRating' | 'appStoreRatingCount' | 'playStoreRating' | 'playStoreRatingCount'>;
|
|
1292
|
+
type StackedThirdPartyApp = Pick<IThirdPartyApp, 'id' | 'displayName' | 'image' | 'showLinkable' | 'unlinkable' | 'autoAdd' | 'url' | 'tagline' | 'description' | 'genres' | 'trailerUrl' | 'gameThumbnail' | 'logo' | 'squareLogo' | 'headerImage' | 'squareScreenshot' | 'screenshots' | 'appStoreUrl' | 'playStoreUrl' | 'webUrl' | 'landingPageUrl' | 'appStoreRating' | 'appStoreRatingCount' | 'playStoreRating' | 'playStoreRatingCount'>;
|
|
1290
1293
|
type StackedAppState = Pick<IAppState, 'featureFlags' | 'maxCryptoWallets' | 'maxOfferSlots' | 'restrictedCountryCodes' | 'deleteWalletThresholdDays'>;
|
|
1291
1294
|
|
|
1292
1295
|
declare const SupportedNetworks: readonly [
|