@flowio/api-types 0.0.228 → 0.0.229

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.
@@ -288,8 +288,8 @@ declare namespace io.flow.external.paypal.v1.models {
288
288
  }
289
289
 
290
290
  interface Money {
291
- readonly 'currency_code'?: string;
292
- readonly 'value'?: string;
291
+ readonly 'currency_code': string;
292
+ readonly 'value': string;
293
293
  }
294
294
 
295
295
  interface MoneyMovement {
@@ -356,6 +356,16 @@ declare namespace io.flow.external.paypal.v1.models {
356
356
  readonly 'application_context'?: io.flow.external.paypal.v1.models.ApplicationContext;
357
357
  }
358
358
 
359
+ interface PaypalDisputeEvent {
360
+ readonly 'id': string;
361
+ readonly 'resource_type': string;
362
+ readonly 'event_type': string;
363
+ readonly 'summary': string;
364
+ readonly 'event_version': string;
365
+ readonly 'create_time': string;
366
+ readonly 'resource': io.flow.external.paypal.v1.models.Dispute;
367
+ }
368
+
359
369
  interface ProductDetails {
360
370
  readonly 'description'?: string;
361
371
  readonly 'product_received'?: io.flow.external.paypal.v1.enums.ProductReceived;
@@ -527,12 +537,12 @@ declare namespace io.flow.external.paypal.v1.models {
527
537
 
528
538
  interface TransactionInfo {
529
539
  readonly 'buyer_transaction_id'?: string;
530
- readonly 'seller_transaction_id'?: string;
540
+ readonly 'seller_transaction_id': string;
531
541
  readonly 'reference_id'?: string;
532
542
  readonly 'create_time'?: string;
533
543
  readonly 'transaction_status'?: io.flow.external.paypal.v1.enums.TransactionStatus;
534
544
  readonly 'gross_amount'?: io.flow.external.paypal.v1.models.Money;
535
- readonly 'invoice_number'?: string;
545
+ readonly 'invoice_number': string;
536
546
  readonly 'custom'?: string;
537
547
  readonly 'buyer'?: io.flow.external.paypal.v1.models.Buyer;
538
548
  readonly 'seller': io.flow.external.paypal.v1.models.Seller;