@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.
@@ -41,6 +41,7 @@ export interface CryptoSteamSDKProfile {
41
41
  minimum_usdt_withdraw: number;
42
42
  level: number;
43
43
  level_up_exp: number;
44
+ current_level_exp: number;
44
45
  invited: number;
45
46
  invited_full: number;
46
47
  games_count: number;
@@ -280,19 +281,16 @@ export interface ConfirmMessage {
280
281
  export interface OrbitAdsResponse {
281
282
  campaign?: {
282
283
  id: number;
283
- type: string;
284
- layout: string;
284
+ type: AdType;
285
+ layout?: string;
285
286
  link: string;
286
- title?: string;
287
- description?: string;
288
- creative: {
287
+ creative?: {
289
288
  url: string;
290
- preview?: string;
291
- colors?: string[];
289
+ colors: string[];
292
290
  width: number;
293
291
  height: number;
294
292
  };
293
+ banner?: string;
295
294
  };
296
- impression_id?: number;
297
- should_show_internal_ad: boolean;
295
+ is_direct_sales: boolean;
298
296
  }