@orbit-software/sdk 1.91.4 → 1.92.1

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.
@@ -14,7 +14,12 @@
14
14
  "Bash(pnpm build:*)",
15
15
  "Bash(npm run build)",
16
16
  "WebFetch(domain:github.com)",
17
- "Bash(git status -u)"
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)",
21
+ "Bash(git checkout:*)",
22
+ "Bash(git cherry-pick:*)"
18
23
  ]
19
24
  }
20
25
  }
@@ -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) => any;
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 {};
@@ -1,3 +1,3 @@
1
1
  export declare function initMonetagAds(monetagHtml: string): Promise<string | null>;
2
2
  export declare function createMonetagFallbackFunction(monetagShowAdFnName: string | null, placementId?: string): () => Promise<boolean>;
3
- export declare function showMonetagAdWithTimeout<T extends boolean>(monetagShowAdFnName: string | null, ymid: string, placementId?: string): Promise<T>;
3
+ export declare function showMonetagAd<T extends boolean>(monetagShowAdFnName: string | null, ymid: string, placementId?: string): Promise<T>;
@@ -0,0 +1 @@
1
+ export declare function assetUrl(path: string): string;