This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * This Api class lets you define an API endpoint and methods to request | |
| * data and process it. | |
| */ | |
| import { ApisauceInstance, create } from 'apisauce' | |
| import type { | |
| ApiConfig, | |
| CloudHeroSummaryParams, | |
| CloudHeroSummaryRow, | |
| CloutHeroQuickOverviewParams, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| compiler: { | |
| removeConsole: { | |
| exclude: ['error'] | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use client" | |
| import { ChatClient, LogLevel } from "@ably/chat" | |
| import { ChatClientProvider } from "@ably/chat/react" | |
| import type { User } from "@supabase/supabase-js" | |
| import * as Ably from "ably" | |
| import { AblyProvider } from "ably/react" | |
| enum AblyLogLevel { | |
| Silent = 0, | |
| Error = 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use client" | |
| import { GameChatMessagesListItem } from "@/app/[locale]/(dynamic)/cs/lobby/[room]/_components/game-chat-message-list-item" | |
| import { Button } from "@/components/ui/button" | |
| import { Textarea } from "@/components/ui/textarea" | |
| import type { MatchForLobby } from "@/types/database.types" | |
| import type { Message } from "@ably/chat" | |
| import { useMessages } from "@ably/chat/react" | |
| import { useUser } from "@supabase/auth-helpers-react" | |
| import type { User } from "@supabase/supabase-js" | |
| import { useCallback, useEffect, useRef, useState } from "react" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { seo } from "@/config/seo" | |
| import "./globals.css" | |
| import { Providers } from "@/app/providers" | |
| import { Provider as AnalyticsProvider } from "@repo/analytics/client" | |
| import type { Metadata, Viewport } from "next" | |
| import { SiteChat } from "@/components/site-chat" | |
| import { SupabaseAuthListener } from "@/components/supabase-auth-listener" | |
| import { Toaster } from "@/components/ui/sonner" | |
| import { fontSans } from "@/config/fonts" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "json" | |
| require "httparty" | |
| require "sem_version" | |
| require 'xcodeproj' | |
| # | |
| # CONSTS | |
| # | |
| FASTLANE_ENV_FILE = ".fastlane" | |
| PROJECT = "REDACTED" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as Analytics from "expo-firebase-analytics" | |
| import { recordError } from "./exceptions" | |
| export const setCurrentScreen = (screenName: string): void => { | |
| void Analytics.logEvent("screen_view", { screen_name: screenName }) | |
| // track screens. | |
| __DEV__ && console.tron.log(`currentScreen: ${screenName}`) | |
| } | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { TextProps as TextProperties } from "react-native" | |
| import type { SxProps } from "@bridge/ui/view" | |
| import type { Nullable } from "@bridge/types" | |
| import { TextVariants } from "../theme" | |
| export interface TextProps extends TextProperties, SxProps { | |
| /** | |
| * Children components. | |
| */ | |
| children?: React.ReactNode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const GENERATION_MODELS: Record<string, GenerationModel> = { | |
| "6c2ccdf0300616cfca3ba78701b511def42447960b086bb47a487aed5a9a892d": { | |
| name: "Realism", | |
| path: "models/ckpt/aresmix.safetensors", | |
| vae: "models/vae/vae-ft-mse-840000-ema-pruned.safetensors", | |
| modelHash: | |
| "6c2ccdf0300616cfca3ba78701b511def42447960b086bb47a487aed5a9a892d", | |
| positivePromptStart: `${POSITIVE_PROMPT_START}, RAW photo, cinematic still, high quality, film grain, sharp focus, (high detailed skin:1.2), 8k uhd, dslr, award winning photograph,`, | |
| }, | |
| c5b6055a843f079998738c7d115060a4e116f0eedd1a5cb10b2b52d6f5f0ff68: { |
NewerOlder