@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.
- package/generated/io.flow.external.paypal.v1.paypal.d.ts +14 -4
- package/generated/io.flow.internal.v0.api-internal.d.ts +190 -22
- package/generated/io.flow.payment.gateway.v0.payment-gateway.d.ts +23 -3
- package/generated/io.flow.shopify.external.v0.shopify-external.d.ts +87 -5
- package/generated/io.flow.shopify.markets.internal.event.v0.shopify-markets-internal-event.d.ts +17 -1
- package/generated/io.flow.shopify.markets.internal.v0.shopify-markets-internal.d.ts +20 -0
- package/generated/io.flow.stripe.v0.stripe.d.ts +60 -2
- package/generated/io.flow.v0.api.d.ts +23 -3
- package/index.d.ts +0 -6
- package/package.json +2 -2
- package/generated/io.flow.billing.accounting.v0.billing-accounting.d.ts +0 -246
- package/generated/io.flow.billing.internal.v0.billing-internal.d.ts +0 -1138
- package/generated/io.flow.billing.reporting.csv.v0.billing-reporting-csv.d.ts +0 -35
- package/generated/io.flow.billing.reporting.v0.billing-reporting.d.ts +0 -324
- package/generated/io.flow.invoice.v0.invoice.d.ts +0 -21
- package/generated/io.flow.payment.internal.v0.payment-internal.d.ts +0 -853
|
@@ -288,8 +288,8 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
288
288
|
}
|
|
289
289
|
|
|
290
290
|
interface Money {
|
|
291
|
-
readonly 'currency_code'
|
|
292
|
-
readonly 'value'
|
|
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'
|
|
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'
|
|
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;
|