@orbit-software/sdk 1.90.0 → 1.92.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/.claude/settings.local.json +7 -1
- package/dist/esm/components/modals/ProfileInventoryModal.d.ts +1 -1
- package/dist/esm/components/ui/LazyLottie.d.ts +8 -0
- package/dist/esm/lib/ads/ad-logger.d.ts +10 -0
- package/dist/esm/lib/assets.d.ts +1 -0
- package/dist/esm/sdk.mjs +18047 -17938
- package/dist/esm/sdk.umd.js +88 -88
- package/dist/stats-esm.html +1 -1
- package/dist/stats-umd-react.html +1 -1
- package/dist/stats-umd.html +1 -1
- package/dist/tmp/sdk.umd.js +33 -33
- package/dist/umd/sdk.umd.js +88 -88
- package/dist/umd_react/sdk_react.umd.js +88 -88
- package/package.json +5 -3
- package/dist/esm/assets/lottie/moneyTongue.json.d.ts +0 -3
- package/dist/esm/assets/lottie/newspaper.json.d.ts +0 -3
|
@@ -11,7 +11,13 @@
|
|
|
11
11
|
"Bash(npm info:*)",
|
|
12
12
|
"WebFetch(domain:unpkg.com)",
|
|
13
13
|
"Bash(pnpm install:*)",
|
|
14
|
-
"Bash(pnpm build:*)"
|
|
14
|
+
"Bash(pnpm build:*)",
|
|
15
|
+
"Bash(npm run build)",
|
|
16
|
+
"WebFetch(domain:github.com)",
|
|
17
|
+
"Bash(git status -u)",
|
|
18
|
+
"Bash(find /Users/lgklsv/Developer/Projects/sdk -maxdepth 1 -type f -name *.toml -o -name *.config.*)",
|
|
19
|
+
"Bash(find /Users/lgklsv/Developer/Projects/sdk -name wrangler* -o -name *.toml)",
|
|
20
|
+
"Bash(find /Users/lgklsv/Developer/Projects/sdk -name .env* -type f)"
|
|
15
21
|
]
|
|
16
22
|
}
|
|
17
23
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { InventoryItem } from '../../types/api';
|
|
2
2
|
import { ModalProps } from '@telegram-apps/telegram-ui';
|
|
3
|
-
export declare const getBoxImage: (item: InventoryItem) =>
|
|
3
|
+
export declare const getBoxImage: (item: InventoryItem) => string;
|
|
4
4
|
export declare function ProfileInventoryModal({ ...props }: Omit<ModalProps, 'trigger'>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { LottieComponentProps } from 'lottie-react';
|
|
2
|
+
interface LazyLottieProps extends Omit<LottieComponentProps, 'animationData'> {
|
|
3
|
+
asset: string;
|
|
4
|
+
height: number;
|
|
5
|
+
width: number;
|
|
6
|
+
}
|
|
7
|
+
export declare function LazyLottie({ asset, height, width, ...props }: LazyLottieProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface AdLogger {
|
|
2
|
+
info(message: string, data?: unknown): void;
|
|
3
|
+
warn(message: string, data?: unknown): void;
|
|
4
|
+
error(message: string, data?: unknown): void;
|
|
5
|
+
group(label: string): void;
|
|
6
|
+
groupEnd(): void;
|
|
7
|
+
time(label: string): void;
|
|
8
|
+
timeEnd(label: string): void;
|
|
9
|
+
}
|
|
10
|
+
export declare function createAdLogger(provider: string): AdLogger;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function assetUrl(path: string): string;
|