@orbit-software/sdk 1.84.8 → 1.85.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/dist/esm/sdk.d.ts CHANGED
@@ -214,6 +214,8 @@ export interface StartupConfig {
214
214
  export declare function startGameTimeTrack(): void;
215
215
  export interface CryptoSteamSDK {
216
216
  version: string;
217
+ onAdStart: (() => void) | null;
218
+ onAdEnd: ((result: boolean) => void) | null;
217
219
  initialize: (botId?: string, options?: InitializeOptions) => Promise<void>;
218
220
  getConfig: () => Promise<CryptoSteamSDKConfig>;
219
221
  isAdEnabled: () => Promise<boolean>;
@@ -239,7 +241,6 @@ export interface CryptoSteamSDK {
239
241
  height: number;
240
242
  }) => Promise<PurchaseConfirmResponse>;
241
243
  createInvoice: (title: string, description: string, to_user_id: number, amount: number) => Promise<ServiceInvoiceCreatedResponse>;
242
- claimTask: (taskId: number) => Promise<void>;
243
244
  getValue: (key: string) => Promise<string>;
244
245
  setValue: (key: string, value: string) => Promise<void>;
245
246
  /**