@orbit-software/sdk 1.89.0 → 1.90.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.
@@ -277,3 +277,22 @@ export interface ConfirmMessage {
277
277
  type: 'confirm' | 'cancel' | 'error';
278
278
  message?: string;
279
279
  }
280
+ export interface OrbitAdsResponse {
281
+ campaign?: {
282
+ id: number;
283
+ type: string;
284
+ layout: string;
285
+ link: string;
286
+ title?: string;
287
+ description?: string;
288
+ creative: {
289
+ url: string;
290
+ preview?: string;
291
+ colors?: string[];
292
+ width: number;
293
+ height: number;
294
+ };
295
+ };
296
+ impression_id?: number;
297
+ should_show_internal_ad: boolean;
298
+ }