diff options
Diffstat (limited to 'node_modules/@jet-app/app-store/tmp/src/gameservicesui')
2 files changed, 69 insertions, 0 deletions
diff --git a/node_modules/@jet-app/app-store/tmp/src/gameservicesui/src/foundation/media-api/requests/recommendation-request-types.js b/node_modules/@jet-app/app-store/tmp/src/gameservicesui/src/foundation/media-api/requests/recommendation-request-types.js new file mode 100644 index 0000000..7005cf7 --- /dev/null +++ b/node_modules/@jet-app/app-store/tmp/src/gameservicesui/src/foundation/media-api/requests/recommendation-request-types.js @@ -0,0 +1,49 @@ +export const AllPlayNowFeedContent = [ + "players", + "apps", + "achievements", + "leaderboards", + "contents", + "challenges", + "challenge-instances", + "activities", +]; +export const AllPlayNowFeedContentTypes = [ + "friend-request-modules", + "friend-playing-modules", + "achievement-modules", + "leaderboard-modules", + "chart-modules", + "content-modules", + "challenge-invite-modules", + "challenge-modules", + "challenge-suggestion-modules", + "on-device-modules", + "activities", + "activity-invite-modules", + "activity-modules", + "activity-suggestion-modules", +]; +export const PlayNowFeedAppsAttributes = [ + "compatibilityControllerRequirement", + "editorialArtwork", + "editorialClientParams", + "editorialVideo", + "expectedReleaseDateDisplayFormat", + "isAppleWatchSupported", + "minimumOSVersion", + "screenshotsByType", + "videoPreviewsByType", + "gameDisplayName", + "miniGamesDeepLink", +]; +export const PlayNowFeedEditorialItemsAttributes = [ + "editorialArtwork", + "editorialClientParams", + "editorialVideo", + "expectedReleaseDateDisplayFormat", + "showExpectedReleaseDate", +]; +export const PlayNowFeedEditorialPagesAttributes = ["editorialArtwork", "editorialClientParams", "editorialVideo"]; +export const AppEventsAttributes = ["description", "productArtwork", "productVideo"]; +//# sourceMappingURL=recommendation-request-types.js.map
\ No newline at end of file diff --git a/node_modules/@jet-app/app-store/tmp/src/gameservicesui/src/foundation/object-graph-types.js b/node_modules/@jet-app/app-store/tmp/src/gameservicesui/src/foundation/object-graph-types.js new file mode 100644 index 0000000..26d7621 --- /dev/null +++ b/node_modules/@jet-app/app-store/tmp/src/gameservicesui/src/foundation/object-graph-types.js @@ -0,0 +1,20 @@ +import { makeMetatype } from "@jet/environment/util/metatype"; +import * as jetTypes from "@jet/environment/types/globals/types"; +/** + * Known dependencies that injectable from ObjectGraph. + */ +export const ObjectGraphType = { + bag: jetTypes.bag, + dispatcher: makeMetatype("dispatcher"), + host: jetTypes.host, + localizer: jetTypes.localizer, + network: jetTypes.net, + plist: jetTypes.plist, + platform: jetTypes.platform, + router: makeMetatype("router"), + client: makeMetatype("client"), + debugSettings: makeMetatype("debugSettings"), + nativeIntentDispatcher: makeMetatype("nativeIntentDispatcher"), + personNameComponentsFormatter: makeMetatype("personNameComponentsFormatter"), +}; +//# sourceMappingURL=object-graph-types.js.map
\ No newline at end of file |
