@flowio/types 11.24.32 → 11.24.34
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/api-internal.d.ts +393 -43
- package/dist/api.d.ts +63 -24
- package/package.json +2 -2
- package/src/api-internal.ts +546 -52
- package/src/api.ts +78 -27
package/src/api-internal.ts
CHANGED
|
@@ -381,6 +381,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
381
381
|
| 'inactive'
|
|
382
382
|
| 'deactivated'
|
|
383
383
|
| 'provisioned';
|
|
384
|
+
type OrganizationType = 'standalone' | 'channel';
|
|
384
385
|
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
385
386
|
type Role = 'admin' | 'member';
|
|
386
387
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
@@ -586,6 +587,24 @@ declare namespace io.flow.common.v0.models {
|
|
|
586
587
|
readonly quantity: number;
|
|
587
588
|
}
|
|
588
589
|
|
|
590
|
+
interface LogoImageSetStatic {
|
|
591
|
+
readonly discriminator: 'static';
|
|
592
|
+
readonly small?: io.flow.common.v0.models.LogoImageStatic;
|
|
593
|
+
readonly medium: io.flow.common.v0.models.LogoImageStatic;
|
|
594
|
+
readonly large?: io.flow.common.v0.models.LogoImageStatic;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
interface LogoImageStatic {
|
|
598
|
+
readonly url: string;
|
|
599
|
+
readonly width: number;
|
|
600
|
+
readonly height: number;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
interface LogoImageSvg {
|
|
604
|
+
readonly discriminator: 'svg';
|
|
605
|
+
readonly url: string;
|
|
606
|
+
}
|
|
607
|
+
|
|
589
608
|
interface Margin {
|
|
590
609
|
readonly type: io.flow.common.v0.enums.MarginType;
|
|
591
610
|
readonly value: number;
|
|
@@ -664,6 +683,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
664
683
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
665
684
|
readonly created_at?: string;
|
|
666
685
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
686
|
+
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
667
687
|
}
|
|
668
688
|
|
|
669
689
|
interface OrganizationDefaults {
|
|
@@ -802,6 +822,9 @@ declare namespace io.flow.common.v0.unions {
|
|
|
802
822
|
| io.flow.common.v0.models.UserReference;
|
|
803
823
|
type InputSpecificationLimitation =
|
|
804
824
|
io.flow.common.v0.models.InputSpecificationLimitationMax;
|
|
825
|
+
type LogoImage =
|
|
826
|
+
| io.flow.common.v0.models.LogoImageSvg
|
|
827
|
+
| io.flow.common.v0.models.LogoImageSetStatic;
|
|
805
828
|
type PriceSource =
|
|
806
829
|
| io.flow.common.v0.models.PriceSourcePriceBook
|
|
807
830
|
| io.flow.common.v0.models.PriceSourceCatalog
|
|
@@ -1823,7 +1846,12 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1823
1846
|
| 'reversed';
|
|
1824
1847
|
type AvsCode = 'match' | 'partial' | 'unsupported' | 'no_match';
|
|
1825
1848
|
type CaptureDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1826
|
-
type CaptureStatus =
|
|
1849
|
+
type CaptureStatus =
|
|
1850
|
+
| 'initiated'
|
|
1851
|
+
| 'pending'
|
|
1852
|
+
| 'succeeded'
|
|
1853
|
+
| 'failed'
|
|
1854
|
+
| 'canceled';
|
|
1827
1855
|
type CardErrorCode =
|
|
1828
1856
|
| 'invalid_address'
|
|
1829
1857
|
| 'invalid_currency'
|
|
@@ -3355,7 +3383,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3355
3383
|
readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
3356
3384
|
readonly payment_method_types?: string[];
|
|
3357
3385
|
readonly receipt_email?: string;
|
|
3358
|
-
readonly save_payment_method
|
|
3386
|
+
readonly save_payment_method?: boolean;
|
|
3359
3387
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3360
3388
|
}
|
|
3361
3389
|
|
|
@@ -3376,7 +3404,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3376
3404
|
readonly payment_method_types?: string[];
|
|
3377
3405
|
readonly receipt_email?: string;
|
|
3378
3406
|
readonly return_url?: string;
|
|
3379
|
-
readonly save_payment_method
|
|
3407
|
+
readonly save_payment_method?: boolean;
|
|
3380
3408
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3381
3409
|
readonly statement_descriptor?: string;
|
|
3382
3410
|
readonly statement_descriptor_suffix?: string;
|
|
@@ -3393,7 +3421,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3393
3421
|
readonly payment_method?: string;
|
|
3394
3422
|
readonly payment_method_types?: string[];
|
|
3395
3423
|
readonly receipt_email?: string;
|
|
3396
|
-
readonly save_payment_method
|
|
3424
|
+
readonly save_payment_method?: boolean;
|
|
3397
3425
|
readonly statement_descriptor?: string;
|
|
3398
3426
|
readonly statement_descriptor_suffix?: string;
|
|
3399
3427
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
@@ -3784,6 +3812,7 @@ declare namespace io.flow.customer.v0.models {
|
|
|
3784
3812
|
}
|
|
3785
3813
|
|
|
3786
3814
|
declare namespace io.flow.label.v0.enums {
|
|
3815
|
+
type CostEstimateSource = 'flow' | 'channel';
|
|
3787
3816
|
type Direction = 'outbound' | 'return';
|
|
3788
3817
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3789
3818
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
@@ -3856,9 +3885,11 @@ declare namespace io.flow.label.v0.models {
|
|
|
3856
3885
|
interface ShippingLabel {
|
|
3857
3886
|
readonly id: string;
|
|
3858
3887
|
readonly hop?: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
3888
|
+
readonly reference_id: string;
|
|
3859
3889
|
readonly attributes: Record<string, string>;
|
|
3860
3890
|
readonly carrier_tracking_number: string;
|
|
3861
3891
|
readonly carrier_tracking_number_url: string;
|
|
3892
|
+
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
3862
3893
|
readonly cost?: io.flow.common.v0.models.Price;
|
|
3863
3894
|
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3864
3895
|
readonly flow_tracking_number: string;
|
|
@@ -4830,14 +4861,14 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
4830
4861
|
readonly currency: string;
|
|
4831
4862
|
readonly posData?: string;
|
|
4832
4863
|
readonly notificationURL?: string;
|
|
4833
|
-
readonly transactionSpeed
|
|
4864
|
+
readonly transactionSpeed?: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
4834
4865
|
readonly fullNotifications?: boolean;
|
|
4835
4866
|
readonly notificationEmail?: string;
|
|
4836
4867
|
readonly redirectURL?: string;
|
|
4837
4868
|
readonly orderId?: string;
|
|
4838
4869
|
readonly itemDesc?: string;
|
|
4839
4870
|
readonly itemCode?: string;
|
|
4840
|
-
readonly physical
|
|
4871
|
+
readonly physical?: boolean;
|
|
4841
4872
|
readonly buyerName?: string;
|
|
4842
4873
|
readonly buyerAddress1?: string;
|
|
4843
4874
|
readonly buyerAddress2?: string;
|
|
@@ -4894,12 +4925,12 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
4894
4925
|
readonly currency: string;
|
|
4895
4926
|
readonly posData?: string;
|
|
4896
4927
|
readonly notificationURL?: string;
|
|
4897
|
-
readonly transactionSpeed
|
|
4928
|
+
readonly transactionSpeed?: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
4898
4929
|
readonly fullNotifications?: boolean;
|
|
4899
4930
|
readonly extendedNotifications?: boolean;
|
|
4900
4931
|
readonly redirectURL?: string;
|
|
4901
4932
|
readonly orderId?: string;
|
|
4902
|
-
readonly physical
|
|
4933
|
+
readonly physical?: boolean;
|
|
4903
4934
|
readonly buyerName?: string;
|
|
4904
4935
|
readonly buyerAddress1?: string;
|
|
4905
4936
|
readonly buyerAddress2?: string;
|
|
@@ -5891,7 +5922,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5891
5922
|
interface Product {
|
|
5892
5923
|
readonly id: number;
|
|
5893
5924
|
readonly handle: string;
|
|
5894
|
-
readonly variants
|
|
5925
|
+
readonly variants?: io.flow.shopify.external.v0.models.ProductVariant[];
|
|
5895
5926
|
readonly images: io.flow.shopify.external.v0.models.ProductImage[];
|
|
5896
5927
|
readonly title: string;
|
|
5897
5928
|
readonly vendor?: string;
|
|
@@ -6076,7 +6107,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6076
6107
|
}
|
|
6077
6108
|
|
|
6078
6109
|
interface ShopifyClientDetail {
|
|
6079
|
-
readonly accept_language
|
|
6110
|
+
readonly accept_language?: boolean;
|
|
6080
6111
|
readonly browser_height?: number;
|
|
6081
6112
|
readonly browser_ip?: string;
|
|
6082
6113
|
readonly browser_width?: number;
|
|
@@ -6092,7 +6123,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6092
6123
|
readonly tax_exempt: boolean;
|
|
6093
6124
|
readonly verified_email: boolean;
|
|
6094
6125
|
readonly state: io.flow.shopify.external.v0.enums.ShopifyCustomerState;
|
|
6095
|
-
readonly accepts_marketing
|
|
6126
|
+
readonly accepts_marketing?: boolean;
|
|
6096
6127
|
readonly default_address?: any /*object*/;
|
|
6097
6128
|
readonly email?: string;
|
|
6098
6129
|
readonly first_name?: string;
|
|
@@ -6171,7 +6202,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6171
6202
|
readonly requires_shipping: boolean;
|
|
6172
6203
|
readonly currency?: string;
|
|
6173
6204
|
readonly items: io.flow.shopify.external.v0.models.ShopifyExternalCartItem[];
|
|
6174
|
-
readonly cart_level_discount_applications
|
|
6205
|
+
readonly cart_level_discount_applications?: io.flow.shopify.external.v0.models.ShopifyDiscountApplication[];
|
|
6175
6206
|
}
|
|
6176
6207
|
|
|
6177
6208
|
interface ShopifyExternalCartItem {
|
|
@@ -6186,7 +6217,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6186
6217
|
readonly original_line_price: number;
|
|
6187
6218
|
readonly total_discount: number;
|
|
6188
6219
|
readonly discounted_price: number;
|
|
6189
|
-
readonly discounts
|
|
6220
|
+
readonly discounts?: io.flow.shopify.external.v0.models.ShopifyCartItemDiscount[];
|
|
6190
6221
|
readonly taxable: boolean;
|
|
6191
6222
|
readonly quantity: number;
|
|
6192
6223
|
readonly sku?: string;
|
|
@@ -6204,8 +6235,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6204
6235
|
readonly product_description?: string;
|
|
6205
6236
|
readonly product_type: string;
|
|
6206
6237
|
readonly variant_title?: string;
|
|
6207
|
-
readonly variant_options
|
|
6208
|
-
readonly line_level_discount_allocations
|
|
6238
|
+
readonly variant_options?: string[];
|
|
6239
|
+
readonly line_level_discount_allocations?: io.flow.shopify.external.v0.models.ShopifyLineLevelDiscountAllocation[];
|
|
6209
6240
|
}
|
|
6210
6241
|
|
|
6211
6242
|
interface ShopifyFulfillment {
|
|
@@ -6446,11 +6477,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6446
6477
|
readonly updated_at?: string;
|
|
6447
6478
|
readonly user_id?: number;
|
|
6448
6479
|
readonly order_status_url?: string;
|
|
6449
|
-
readonly inventory_behaviour
|
|
6480
|
+
readonly inventory_behaviour?: io.flow.shopify.external.v0.enums.InventoryBehaviour;
|
|
6450
6481
|
readonly gateway?: string;
|
|
6451
6482
|
readonly transactions?: io.flow.shopify.external.v0.models.ShopifyTransactionForm[];
|
|
6452
6483
|
readonly send_receipt?: boolean;
|
|
6453
|
-
readonly metafields
|
|
6484
|
+
readonly metafields?: io.flow.shopify.external.v0.models.MetafieldForm[];
|
|
6454
6485
|
}
|
|
6455
6486
|
|
|
6456
6487
|
interface ShopifyOrderCount {
|
|
@@ -6588,7 +6619,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6588
6619
|
|
|
6589
6620
|
interface ShopifyWebhookOrder {
|
|
6590
6621
|
readonly id?: number;
|
|
6591
|
-
readonly line_items
|
|
6622
|
+
readonly line_items?: io.flow.shopify.external.v0.models.ShopifyWebhookOrderLineItem[];
|
|
6592
6623
|
}
|
|
6593
6624
|
|
|
6594
6625
|
interface ShopifyWebhookOrderCancelled {
|
|
@@ -6998,7 +7029,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6998
7029
|
readonly updated_at?: string;
|
|
6999
7030
|
readonly user_id?: number;
|
|
7000
7031
|
readonly order_status_url?: string;
|
|
7001
|
-
readonly inventory_behaviour
|
|
7032
|
+
readonly inventory_behaviour?: io.flow.shopify.markets.v0.enums.ShopifyOrderInventoryBehaviour;
|
|
7002
7033
|
readonly gateway?: string;
|
|
7003
7034
|
readonly transactions?: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction[];
|
|
7004
7035
|
readonly send_receipt?: boolean;
|
|
@@ -7036,7 +7067,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7036
7067
|
}
|
|
7037
7068
|
|
|
7038
7069
|
interface ShopifyOrderClientDetail {
|
|
7039
|
-
readonly accept_language
|
|
7070
|
+
readonly accept_language?: string;
|
|
7040
7071
|
readonly browser_height?: number;
|
|
7041
7072
|
readonly browser_ip?: string;
|
|
7042
7073
|
readonly browser_width?: number;
|
|
@@ -7280,7 +7311,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7280
7311
|
readonly kind: io.flow.shopify.markets.v0.enums.ShopifyOrderKindType;
|
|
7281
7312
|
readonly gateway: string;
|
|
7282
7313
|
readonly currency: string;
|
|
7283
|
-
readonly status
|
|
7314
|
+
readonly status?: io.flow.shopify.markets.v0.enums.ShopifyOrderTransactionStatus;
|
|
7284
7315
|
readonly payment_details?: io.flow.shopify.markets.v0.models.ShopifyOrderPaymentDetail;
|
|
7285
7316
|
readonly receipt: any /*object*/;
|
|
7286
7317
|
readonly authorization?: string;
|
|
@@ -7872,6 +7903,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
7872
7903
|
interface PaymentCaptureForm {
|
|
7873
7904
|
readonly amount?: number;
|
|
7874
7905
|
readonly currency?: string;
|
|
7906
|
+
readonly attributes?: Record<string, string>;
|
|
7875
7907
|
}
|
|
7876
7908
|
|
|
7877
7909
|
interface PaymentCaptureOptionAutomaticImmediate {
|
|
@@ -9439,6 +9471,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
9439
9471
|
interface PaymentMethodIssuer {
|
|
9440
9472
|
readonly id: string;
|
|
9441
9473
|
readonly name: string;
|
|
9474
|
+
readonly logo?: io.flow.common.v0.unions.LogoImage;
|
|
9442
9475
|
}
|
|
9443
9476
|
|
|
9444
9477
|
interface PaymentMethodRule {
|
|
@@ -10469,7 +10502,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10469
10502
|
readonly organization_reference: io.flow.merchant.onboarding.v0.models.OnboardingOrganizationReference;
|
|
10470
10503
|
readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
10471
10504
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
10472
|
-
readonly indirect_tax_number?: string;
|
|
10473
10505
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
10474
10506
|
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
10475
10507
|
readonly beneficiary?: string;
|
|
@@ -10499,7 +10531,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10499
10531
|
interface ShopifyMerchantApplicationForm {
|
|
10500
10532
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
10501
10533
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
10502
|
-
readonly indirect_tax_number?: string;
|
|
10503
10534
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
10504
10535
|
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
10505
10536
|
readonly beneficiary?: string;
|
|
@@ -11256,6 +11287,162 @@ declare namespace io.flow.item.v0.models {
|
|
|
11256
11287
|
}
|
|
11257
11288
|
}
|
|
11258
11289
|
|
|
11290
|
+
declare namespace io.flow.billing.v0.enums {
|
|
11291
|
+
type AttachmentType = 'csv';
|
|
11292
|
+
type FeeDeductionType =
|
|
11293
|
+
| 'duty_guarantee'
|
|
11294
|
+
| 'mor'
|
|
11295
|
+
| 'fraud'
|
|
11296
|
+
| 'fx'
|
|
11297
|
+
| 'processing'
|
|
11298
|
+
| 'rate_lock'
|
|
11299
|
+
| 'transfer';
|
|
11300
|
+
type PayoutStatusCode =
|
|
11301
|
+
| 'scheduled'
|
|
11302
|
+
| 'sent'
|
|
11303
|
+
| 'cancelled'
|
|
11304
|
+
| 'failed'
|
|
11305
|
+
| 'succeeded';
|
|
11306
|
+
type TransactionSource =
|
|
11307
|
+
| 'capture'
|
|
11308
|
+
| 'refund'
|
|
11309
|
+
| 'dispute'
|
|
11310
|
+
| 'adjustment'
|
|
11311
|
+
| 'shipping_label'
|
|
11312
|
+
| 'shipping_label_service'
|
|
11313
|
+
| 'shipping_label_revenue_share'
|
|
11314
|
+
| 'platform_fee'
|
|
11315
|
+
| 'other_adjustment'
|
|
11316
|
+
| 'tax_adjustment'
|
|
11317
|
+
| 'channel'
|
|
11318
|
+
| 'order_service'
|
|
11319
|
+
| 'virtual_card_capture'
|
|
11320
|
+
| 'virtual_card_refund';
|
|
11321
|
+
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11322
|
+
}
|
|
11323
|
+
|
|
11324
|
+
declare namespace io.flow.billing.v0.models {
|
|
11325
|
+
interface AccountReference {
|
|
11326
|
+
readonly id: string;
|
|
11327
|
+
readonly currency: string;
|
|
11328
|
+
}
|
|
11329
|
+
|
|
11330
|
+
interface Attachment {
|
|
11331
|
+
readonly type: io.flow.billing.v0.enums.AttachmentType;
|
|
11332
|
+
readonly url: string;
|
|
11333
|
+
}
|
|
11334
|
+
|
|
11335
|
+
interface BankAccountForm {
|
|
11336
|
+
readonly last4: string;
|
|
11337
|
+
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
11338
|
+
}
|
|
11339
|
+
|
|
11340
|
+
interface BillingChannelOrderSummary {
|
|
11341
|
+
readonly organization: io.flow.billing.v0.models.BillingChannelOrganizationSummary;
|
|
11342
|
+
readonly number: string;
|
|
11343
|
+
readonly identifiers?: Record<string, string>;
|
|
11344
|
+
}
|
|
11345
|
+
|
|
11346
|
+
interface BillingChannelOrganizationSummary {
|
|
11347
|
+
readonly id: string;
|
|
11348
|
+
}
|
|
11349
|
+
|
|
11350
|
+
interface BillingChannelPaymentRequestReference {
|
|
11351
|
+
readonly id: string;
|
|
11352
|
+
readonly reference?: string;
|
|
11353
|
+
}
|
|
11354
|
+
|
|
11355
|
+
interface BillingChannelStatementReference {
|
|
11356
|
+
readonly id: string;
|
|
11357
|
+
}
|
|
11358
|
+
|
|
11359
|
+
interface ChannelStatement {
|
|
11360
|
+
readonly id: string;
|
|
11361
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11362
|
+
readonly ending_balance: number;
|
|
11363
|
+
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
11364
|
+
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
11365
|
+
readonly created_at: string;
|
|
11366
|
+
}
|
|
11367
|
+
|
|
11368
|
+
interface ChannelTransaction {
|
|
11369
|
+
readonly id: string;
|
|
11370
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
11371
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
11372
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
11373
|
+
readonly currency: string;
|
|
11374
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
11375
|
+
readonly gross: number;
|
|
11376
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
11377
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
11378
|
+
readonly net: number;
|
|
11379
|
+
readonly created_at: string;
|
|
11380
|
+
}
|
|
11381
|
+
|
|
11382
|
+
interface FeeDeduction {
|
|
11383
|
+
readonly type: io.flow.billing.v0.enums.FeeDeductionType;
|
|
11384
|
+
readonly amount: number;
|
|
11385
|
+
readonly description?: string;
|
|
11386
|
+
}
|
|
11387
|
+
|
|
11388
|
+
interface NoPayout {
|
|
11389
|
+
readonly discriminator: 'no_payout';
|
|
11390
|
+
readonly placeholder?: string;
|
|
11391
|
+
}
|
|
11392
|
+
|
|
11393
|
+
interface OrganizationBankAccount {
|
|
11394
|
+
readonly id: string;
|
|
11395
|
+
readonly last4: string;
|
|
11396
|
+
}
|
|
11397
|
+
|
|
11398
|
+
interface Payout {
|
|
11399
|
+
readonly discriminator: 'payout';
|
|
11400
|
+
readonly status: io.flow.billing.v0.models.PayoutStatus;
|
|
11401
|
+
readonly amount: number;
|
|
11402
|
+
readonly sent_on?: string;
|
|
11403
|
+
}
|
|
11404
|
+
|
|
11405
|
+
interface PayoutStatus {
|
|
11406
|
+
readonly code: io.flow.billing.v0.enums.PayoutStatusCode;
|
|
11407
|
+
readonly reason?: string;
|
|
11408
|
+
}
|
|
11409
|
+
|
|
11410
|
+
interface Statement {
|
|
11411
|
+
readonly id: string;
|
|
11412
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11413
|
+
readonly ending_balance: number;
|
|
11414
|
+
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
11415
|
+
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
11416
|
+
readonly created_at: string;
|
|
11417
|
+
}
|
|
11418
|
+
|
|
11419
|
+
interface Transaction {
|
|
11420
|
+
readonly id: string;
|
|
11421
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
11422
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
11423
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
11424
|
+
readonly currency: string;
|
|
11425
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
11426
|
+
readonly gross: number;
|
|
11427
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
11428
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
11429
|
+
readonly net: number;
|
|
11430
|
+
readonly created_at: string;
|
|
11431
|
+
}
|
|
11432
|
+
|
|
11433
|
+
interface WithholdingDeduction {
|
|
11434
|
+
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
11435
|
+
readonly amount: number;
|
|
11436
|
+
readonly description?: string;
|
|
11437
|
+
}
|
|
11438
|
+
}
|
|
11439
|
+
|
|
11440
|
+
declare namespace io.flow.billing.v0.unions {
|
|
11441
|
+
type Settlement =
|
|
11442
|
+
| io.flow.billing.v0.models.NoPayout
|
|
11443
|
+
| io.flow.billing.v0.models.Payout;
|
|
11444
|
+
}
|
|
11445
|
+
|
|
11259
11446
|
declare namespace io.flow.harmonization.v0.enums {
|
|
11260
11447
|
type TaxApplicability = 'none' | 'all';
|
|
11261
11448
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -12857,9 +13044,26 @@ declare namespace io.flow.session.v0.unions {
|
|
|
12857
13044
|
io.flow.session.v0.models.OrganizationSessionAuthorization;
|
|
12858
13045
|
}
|
|
12859
13046
|
|
|
13047
|
+
declare namespace io.flow.billing.bank.account.v0.models {
|
|
13048
|
+
interface BankAccountInfoUsa {
|
|
13049
|
+
readonly discriminator: 'usa';
|
|
13050
|
+
readonly routing_number: string;
|
|
13051
|
+
readonly account_number: string;
|
|
13052
|
+
}
|
|
13053
|
+
}
|
|
13054
|
+
|
|
13055
|
+
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
13056
|
+
type BankAccountInfo =
|
|
13057
|
+
io.flow.billing.bank.account.v0.models.BankAccountInfoUsa;
|
|
13058
|
+
}
|
|
13059
|
+
|
|
12860
13060
|
declare namespace io.flow.internal.v0.enums {
|
|
12861
13061
|
type AccountType = 'channel' | 'organization';
|
|
12862
13062
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
13063
|
+
type AdyenIntegrationType =
|
|
13064
|
+
| 'hosted_payment_page'
|
|
13065
|
+
| 'checkout_payments_api'
|
|
13066
|
+
| 'classic_authorise_api';
|
|
12863
13067
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12864
13068
|
type ApiCallReferenceId =
|
|
12865
13069
|
| 'duty_rates_data_event'
|
|
@@ -12907,10 +13111,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12907
13111
|
| 'all';
|
|
12908
13112
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
12909
13113
|
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
12910
|
-
type BillingTransactionStatus =
|
|
12911
|
-
| 'pending'
|
|
12912
|
-
| 'pending_fulfillment_proof'
|
|
12913
|
-
| 'posted';
|
|
13114
|
+
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
12914
13115
|
type BillingTransactionType =
|
|
12915
13116
|
| 'manual'
|
|
12916
13117
|
| 'subscription'
|
|
@@ -12957,6 +13158,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12957
13158
|
| 'missing_order_information'
|
|
12958
13159
|
| 'unsupported_payment_information';
|
|
12959
13160
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
13161
|
+
type ChannelTransactionType = 'adjustment' | 'processing';
|
|
12960
13162
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
12961
13163
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
12962
13164
|
type CheckoutAddAuthorizationErrorCode =
|
|
@@ -13405,10 +13607,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13405
13607
|
| 'billing_organization_processing_rates_deleted'
|
|
13406
13608
|
| 'billing_organization_settings_upserted'
|
|
13407
13609
|
| 'billing_organization_settings_deleted'
|
|
13610
|
+
| 'billing_statement_batch_upserted'
|
|
13611
|
+
| 'billing_statement_batch_deleted'
|
|
13612
|
+
| 'billing_statement_batch_statement_upserted'
|
|
13613
|
+
| 'billing_statement_batch_statement_deleted'
|
|
13408
13614
|
| 'platform_fee_change_upserted'
|
|
13409
13615
|
| 'platform_fee_change_deleted'
|
|
13410
|
-
| 'fx_revenue_recognition_upserted'
|
|
13411
|
-
| 'fx_revenue_recognition_deleted'
|
|
13412
13616
|
| 'fraud_review_upserted'
|
|
13413
13617
|
| 'fraud_review_deleted'
|
|
13414
13618
|
| 'fraud_pending_review_upserted'
|
|
@@ -13465,6 +13669,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13465
13669
|
| 'fulfillment_cancel'
|
|
13466
13670
|
| 'order_shipped'
|
|
13467
13671
|
| 'items_shipped'
|
|
13672
|
+
| 'organization_restriction_approval_upserted'
|
|
13673
|
+
| 'organization_restriction_snapshot_upserted'
|
|
13674
|
+
| 'organization_restriction_snapshot_deleted'
|
|
13468
13675
|
| 'internal_authorization_upserted'
|
|
13469
13676
|
| 'internal_authorization_deleted'
|
|
13470
13677
|
| 'afterpay_authorization_upserted'
|
|
@@ -13485,6 +13692,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13485
13692
|
| 'virtual_card_provider_deleted'
|
|
13486
13693
|
| 'authorization_bundle_upserted'
|
|
13487
13694
|
| 'authorization_bundle_deleted'
|
|
13695
|
+
| 'organization_payment_setting_upserted'
|
|
13696
|
+
| 'organization_payment_setting_deleted'
|
|
13488
13697
|
| 'paypal_payment_deleted'
|
|
13489
13698
|
| 'paypal_payment_upserted'
|
|
13490
13699
|
| 'paypal_execution_deleted'
|
|
@@ -13594,7 +13803,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13594
13803
|
| 'low_value_goods_tax'
|
|
13595
13804
|
| 'high_value_goods_tax'
|
|
13596
13805
|
| 'duties';
|
|
13597
|
-
type MainTransactionStatus = 'scheduled' | '
|
|
13806
|
+
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
13598
13807
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
13599
13808
|
type ManualTransactionCategory =
|
|
13600
13809
|
| 'cancelled_order_refund'
|
|
@@ -13713,6 +13922,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13713
13922
|
type OrderTransactionType = 'adjustment' | 'order_service';
|
|
13714
13923
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
13715
13924
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
13925
|
+
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
13716
13926
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
13717
13927
|
type Owner = 'flow' | 'organization';
|
|
13718
13928
|
type PaymentSummaryStatus =
|
|
@@ -13866,12 +14076,19 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13866
14076
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
13867
14077
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
13868
14078
|
type TariffEligibilityType = 'rex';
|
|
13869
|
-
type TaskProcessorKey =
|
|
14079
|
+
type TaskProcessorKey =
|
|
14080
|
+
| 'billing_account'
|
|
14081
|
+
| 'order_messenger'
|
|
14082
|
+
| 'harmonization'
|
|
14083
|
+
| 'fraud_review'
|
|
14084
|
+
| 'carrier_account'
|
|
14085
|
+
| 'payment'
|
|
14086
|
+
| 'label_generation_settings';
|
|
13870
14087
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
13871
14088
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
13872
14089
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
13873
14090
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
13874
|
-
type TransactionPostingMethod = 'time' | '
|
|
14091
|
+
type TransactionPostingMethod = 'time' | 'proof';
|
|
13875
14092
|
type TransferMethod = 'ach';
|
|
13876
14093
|
type UnclassifiedProductStatus =
|
|
13877
14094
|
| 'ignored'
|
|
@@ -13908,6 +14125,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13908
14125
|
readonly first_name?: string;
|
|
13909
14126
|
readonly last_name?: string;
|
|
13910
14127
|
readonly phone?: string;
|
|
14128
|
+
readonly account?: io.flow.internal.v0.models.SimpleAccountReference;
|
|
13911
14129
|
}
|
|
13912
14130
|
|
|
13913
14131
|
interface AccountContactDeleted {
|
|
@@ -14184,6 +14402,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14184
14402
|
readonly account_id: string;
|
|
14185
14403
|
readonly merchant_account: string;
|
|
14186
14404
|
readonly origin_key?: string;
|
|
14405
|
+
readonly integration_type?: io.flow.internal.v0.enums.AdyenIntegrationType;
|
|
14187
14406
|
}
|
|
14188
14407
|
|
|
14189
14408
|
interface AdyenAuthenticationForm {
|
|
@@ -14821,6 +15040,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14821
15040
|
interface BillingStatementBatch {
|
|
14822
15041
|
readonly id: string;
|
|
14823
15042
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
15043
|
+
readonly reconciliation: io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
15044
|
+
}
|
|
15045
|
+
|
|
15046
|
+
interface BillingStatementBatchDeleted {
|
|
15047
|
+
readonly discriminator: 'billing_statement_batch_deleted';
|
|
15048
|
+
readonly event_id: string;
|
|
15049
|
+
readonly timestamp: string;
|
|
15050
|
+
readonly id: string;
|
|
15051
|
+
}
|
|
15052
|
+
|
|
15053
|
+
interface BillingStatementBatchReconciliation {
|
|
15054
|
+
readonly month: string;
|
|
15055
|
+
}
|
|
15056
|
+
|
|
15057
|
+
interface BillingStatementBatchReference {
|
|
15058
|
+
readonly id: string;
|
|
15059
|
+
}
|
|
15060
|
+
|
|
15061
|
+
interface BillingStatementBatchStatement {
|
|
15062
|
+
readonly id: string;
|
|
15063
|
+
readonly batch: io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
15064
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
15065
|
+
}
|
|
15066
|
+
|
|
15067
|
+
interface BillingStatementBatchStatementDeleted {
|
|
15068
|
+
readonly discriminator: 'billing_statement_batch_statement_deleted';
|
|
15069
|
+
readonly event_id: string;
|
|
15070
|
+
readonly timestamp: string;
|
|
15071
|
+
readonly id: string;
|
|
15072
|
+
}
|
|
15073
|
+
|
|
15074
|
+
interface BillingStatementBatchStatementUpserted {
|
|
15075
|
+
readonly discriminator: 'billing_statement_batch_statement_upserted';
|
|
15076
|
+
readonly event_id: string;
|
|
15077
|
+
readonly timestamp: string;
|
|
15078
|
+
readonly billing_statement_batch_statement: io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
15079
|
+
}
|
|
15080
|
+
|
|
15081
|
+
interface BillingStatementBatchUpserted {
|
|
15082
|
+
readonly discriminator: 'billing_statement_batch_upserted';
|
|
15083
|
+
readonly event_id: string;
|
|
15084
|
+
readonly timestamp: string;
|
|
15085
|
+
readonly billing_statement_batch: io.flow.internal.v0.models.BillingStatementBatch;
|
|
14824
15086
|
}
|
|
14825
15087
|
|
|
14826
15088
|
interface BillingStatementDeleted {
|
|
@@ -15413,6 +15675,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15413
15675
|
readonly payment_request_id?: string;
|
|
15414
15676
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
15415
15677
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
15678
|
+
readonly order_created_at?: string;
|
|
15416
15679
|
}
|
|
15417
15680
|
|
|
15418
15681
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -16916,6 +17179,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16916
17179
|
interface CheckoutPaymentMethodIssuer {
|
|
16917
17180
|
readonly id: string;
|
|
16918
17181
|
readonly name: string;
|
|
17182
|
+
readonly logo?: io.flow.common.v0.unions.LogoImage;
|
|
16919
17183
|
}
|
|
16920
17184
|
|
|
16921
17185
|
interface CheckoutPaymentSourceOption {
|
|
@@ -18095,6 +18359,96 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18095
18359
|
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
18096
18360
|
}
|
|
18097
18361
|
|
|
18362
|
+
interface DebugDetails {
|
|
18363
|
+
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
18364
|
+
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
18365
|
+
readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
18366
|
+
}
|
|
18367
|
+
|
|
18368
|
+
interface DebugLabel {
|
|
18369
|
+
readonly carrier_id: string;
|
|
18370
|
+
readonly carrier_tracking_number: string;
|
|
18371
|
+
readonly billable_label_id?: string;
|
|
18372
|
+
readonly transactions?: io.flow.internal.v0.models.DebugLabelTransactionSummary[];
|
|
18373
|
+
}
|
|
18374
|
+
|
|
18375
|
+
interface DebugLabelTransactionSummary {
|
|
18376
|
+
readonly id: string;
|
|
18377
|
+
readonly type: string;
|
|
18378
|
+
}
|
|
18379
|
+
|
|
18380
|
+
interface DebugOrder {
|
|
18381
|
+
readonly organization_id: string;
|
|
18382
|
+
readonly number: string;
|
|
18383
|
+
readonly identifiers?: Record<string, string>;
|
|
18384
|
+
readonly submitted_at?: string;
|
|
18385
|
+
}
|
|
18386
|
+
|
|
18387
|
+
interface DebugOrderTransaction {
|
|
18388
|
+
readonly order: io.flow.internal.v0.models.DebugOrder;
|
|
18389
|
+
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
18390
|
+
readonly transactions: io.flow.billing.v0.models.Transaction[];
|
|
18391
|
+
}
|
|
18392
|
+
|
|
18393
|
+
interface DebugOrderTransactionForm {
|
|
18394
|
+
readonly order_id?: string;
|
|
18395
|
+
readonly organization_id?: string;
|
|
18396
|
+
readonly order_number?: string;
|
|
18397
|
+
readonly transaction_id?: string;
|
|
18398
|
+
readonly capture_id?: string;
|
|
18399
|
+
readonly refund_id?: string;
|
|
18400
|
+
readonly order_identifier?: io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
18401
|
+
readonly authorization_id?: string;
|
|
18402
|
+
}
|
|
18403
|
+
|
|
18404
|
+
interface DebugOrderTransactionFormOrderIdentifier {
|
|
18405
|
+
readonly key?: string;
|
|
18406
|
+
readonly value?: string;
|
|
18407
|
+
}
|
|
18408
|
+
|
|
18409
|
+
interface DebugPaymentTransactionSummary {
|
|
18410
|
+
readonly id: string;
|
|
18411
|
+
readonly type: string;
|
|
18412
|
+
readonly processing_transaction_id?: string;
|
|
18413
|
+
readonly queue_errors?: string[];
|
|
18414
|
+
readonly processing_transaction_ignore_reason?: string;
|
|
18415
|
+
readonly channel_transaction_ignore_reason?: string;
|
|
18416
|
+
}
|
|
18417
|
+
|
|
18418
|
+
interface DebugTransactionDetails {
|
|
18419
|
+
readonly id: string;
|
|
18420
|
+
readonly status: io.flow.internal.v0.models.DebugTransactionDetailsStatus;
|
|
18421
|
+
readonly fx?: io.flow.internal.v0.models.DebugTransactionFx;
|
|
18422
|
+
}
|
|
18423
|
+
|
|
18424
|
+
interface DebugTransactionDetailsStatus {
|
|
18425
|
+
readonly status: io.flow.internal.v0.enums.MainTransactionStatus;
|
|
18426
|
+
readonly description: string;
|
|
18427
|
+
}
|
|
18428
|
+
|
|
18429
|
+
interface DebugTransactionForm {
|
|
18430
|
+
readonly transaction_id?: string;
|
|
18431
|
+
readonly capture_id?: string;
|
|
18432
|
+
readonly refund_id?: string;
|
|
18433
|
+
}
|
|
18434
|
+
|
|
18435
|
+
interface DebugTransactionFx {
|
|
18436
|
+
readonly timestamp?: string;
|
|
18437
|
+
readonly market: io.flow.internal.v0.models.DebugTransactionFxRate[];
|
|
18438
|
+
readonly order_effective_rate?: io.flow.internal.v0.models.DebugTransactionFxRate;
|
|
18439
|
+
readonly transaction_effective_rate?: io.flow.internal.v0.models.DebugTransactionFxRate;
|
|
18440
|
+
}
|
|
18441
|
+
|
|
18442
|
+
interface DebugTransactionFxRate {
|
|
18443
|
+
readonly base: string;
|
|
18444
|
+
readonly target: string;
|
|
18445
|
+
readonly value: number;
|
|
18446
|
+
}
|
|
18447
|
+
|
|
18448
|
+
interface DebugTransactionQueued {
|
|
18449
|
+
readonly reasons: string[];
|
|
18450
|
+
}
|
|
18451
|
+
|
|
18098
18452
|
interface Decision {
|
|
18099
18453
|
readonly id: string;
|
|
18100
18454
|
readonly status: string;
|
|
@@ -19360,13 +19714,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19360
19714
|
readonly value: number;
|
|
19361
19715
|
}
|
|
19362
19716
|
|
|
19363
|
-
interface FxRevenueRecognitionDeleted {
|
|
19364
|
-
readonly discriminator: 'fx_revenue_recognition_deleted';
|
|
19365
|
-
readonly event_id: string;
|
|
19366
|
-
readonly timestamp: string;
|
|
19367
|
-
readonly id: string;
|
|
19368
|
-
}
|
|
19369
|
-
|
|
19370
19717
|
interface FxRevenueRecognitionOrder {
|
|
19371
19718
|
readonly number: string;
|
|
19372
19719
|
readonly submitted_at: string;
|
|
@@ -19388,13 +19735,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19388
19735
|
readonly transaction_created_at: string;
|
|
19389
19736
|
}
|
|
19390
19737
|
|
|
19391
|
-
interface FxRevenueRecognitionUpserted {
|
|
19392
|
-
readonly discriminator: 'fx_revenue_recognition_upserted';
|
|
19393
|
-
readonly event_id: string;
|
|
19394
|
-
readonly timestamp: string;
|
|
19395
|
-
readonly fx_revenue_recognition: io.flow.internal.v0.models.FxRevenueRecognition;
|
|
19396
|
-
}
|
|
19397
|
-
|
|
19398
19738
|
interface GiftCard {
|
|
19399
19739
|
readonly id: string;
|
|
19400
19740
|
readonly number: string;
|
|
@@ -20335,6 +20675,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20335
20675
|
readonly rate: io.flow.internal.v0.models.InternalChannelRate;
|
|
20336
20676
|
}
|
|
20337
20677
|
|
|
20678
|
+
interface InternalDebugTransaction {
|
|
20679
|
+
readonly debug?: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
20680
|
+
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
20681
|
+
readonly queue?: io.flow.internal.v0.models.DebugTransactionQueued;
|
|
20682
|
+
}
|
|
20683
|
+
|
|
20338
20684
|
interface InternalExclusionRuleForm {
|
|
20339
20685
|
readonly id: string;
|
|
20340
20686
|
readonly export_id: string;
|
|
@@ -21917,6 +22263,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21917
22263
|
readonly organization_currency_setting: io.flow.internal.v0.models.OrganizationCurrencySetting;
|
|
21918
22264
|
}
|
|
21919
22265
|
|
|
22266
|
+
interface OrganizationDebugTransaction {
|
|
22267
|
+
readonly debug?: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
22268
|
+
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
22269
|
+
readonly queue?: io.flow.internal.v0.models.DebugTransactionQueued;
|
|
22270
|
+
}
|
|
22271
|
+
|
|
21920
22272
|
interface OrganizationInvitationAcceptForm {
|
|
21921
22273
|
readonly email: string;
|
|
21922
22274
|
}
|
|
@@ -21944,6 +22296,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21944
22296
|
readonly updated_at: string;
|
|
21945
22297
|
}
|
|
21946
22298
|
|
|
22299
|
+
interface OrganizationPaymentSettingDeleted {
|
|
22300
|
+
readonly discriminator: 'organization_payment_setting_deleted';
|
|
22301
|
+
readonly event_id: string;
|
|
22302
|
+
readonly timestamp: string;
|
|
22303
|
+
readonly organization: string;
|
|
22304
|
+
readonly id: string;
|
|
22305
|
+
}
|
|
22306
|
+
|
|
21947
22307
|
interface OrganizationPaymentSettingForm {
|
|
21948
22308
|
readonly default_capture_option: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
21949
22309
|
readonly status: io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
@@ -21952,6 +22312,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21952
22312
|
readonly payment_statement_suffix?: string;
|
|
21953
22313
|
}
|
|
21954
22314
|
|
|
22315
|
+
interface OrganizationPaymentSettingUpserted {
|
|
22316
|
+
readonly discriminator: 'organization_payment_setting_upserted';
|
|
22317
|
+
readonly event_id: string;
|
|
22318
|
+
readonly timestamp: string;
|
|
22319
|
+
readonly organization: string;
|
|
22320
|
+
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
22321
|
+
}
|
|
22322
|
+
|
|
21955
22323
|
interface OrganizationPaymentSettingVersion {
|
|
21956
22324
|
readonly id: string;
|
|
21957
22325
|
readonly timestamp: string;
|
|
@@ -21959,7 +22327,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21959
22327
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
21960
22328
|
}
|
|
21961
22329
|
|
|
22330
|
+
interface OrganizationRestrictionApproval {
|
|
22331
|
+
readonly status: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
22332
|
+
readonly reason?: string;
|
|
22333
|
+
readonly updated_at: string;
|
|
22334
|
+
}
|
|
22335
|
+
|
|
22336
|
+
interface OrganizationRestrictionApprovalUpserted {
|
|
22337
|
+
readonly discriminator: 'organization_restriction_approval_upserted';
|
|
22338
|
+
readonly event_id: string;
|
|
22339
|
+
readonly timestamp: string;
|
|
22340
|
+
readonly organization: string;
|
|
22341
|
+
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
22342
|
+
}
|
|
22343
|
+
|
|
21962
22344
|
interface OrganizationRestrictionSnapshot {
|
|
22345
|
+
readonly id: string;
|
|
21963
22346
|
readonly organization_id: string;
|
|
21964
22347
|
readonly organization_channel_id: string;
|
|
21965
22348
|
readonly organization_status: string;
|
|
@@ -21972,6 +22355,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21972
22355
|
readonly date: string;
|
|
21973
22356
|
}
|
|
21974
22357
|
|
|
22358
|
+
interface OrganizationRestrictionSnapshotDeleted {
|
|
22359
|
+
readonly discriminator: 'organization_restriction_snapshot_deleted';
|
|
22360
|
+
readonly event_id: string;
|
|
22361
|
+
readonly timestamp: string;
|
|
22362
|
+
readonly organization_restriction_snapshot: io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
22363
|
+
}
|
|
22364
|
+
|
|
22365
|
+
interface OrganizationRestrictionSnapshotUpserted {
|
|
22366
|
+
readonly discriminator: 'organization_restriction_snapshot_upserted';
|
|
22367
|
+
readonly event_id: string;
|
|
22368
|
+
readonly timestamp: string;
|
|
22369
|
+
readonly organization_restriction_snapshot: io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
22370
|
+
}
|
|
22371
|
+
|
|
21975
22372
|
interface OrganizationRestrictionSummary {
|
|
21976
22373
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
21977
22374
|
readonly earliest_date: string;
|
|
@@ -22081,6 +22478,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22081
22478
|
readonly tribe: io.flow.internal.v0.models.Tribe;
|
|
22082
22479
|
}
|
|
22083
22480
|
|
|
22481
|
+
interface PaymentMethodDetail {
|
|
22482
|
+
readonly method: io.flow.reference.v0.models.PaymentMethod;
|
|
22483
|
+
readonly method_options?: io.flow.internal.v0.models.PaymentMethodOption[];
|
|
22484
|
+
}
|
|
22485
|
+
|
|
22486
|
+
interface PaymentMethodOption {
|
|
22487
|
+
readonly id: string;
|
|
22488
|
+
readonly name: string;
|
|
22489
|
+
readonly logo?: io.flow.common.v0.unions.LogoImage;
|
|
22490
|
+
}
|
|
22491
|
+
|
|
22084
22492
|
interface PaymentOrganizationSettings {
|
|
22085
22493
|
readonly id: string;
|
|
22086
22494
|
readonly enable_auto_capture: boolean;
|
|
@@ -22617,6 +23025,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22617
23025
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
22618
23026
|
}
|
|
22619
23027
|
|
|
23028
|
+
interface ProofOfPostingFulfilled {
|
|
23029
|
+
readonly discriminator: 'fulfilled';
|
|
23030
|
+
readonly billable_label_id: string;
|
|
23031
|
+
}
|
|
23032
|
+
|
|
23033
|
+
interface ProofOfPostingFullyRefunded {
|
|
23034
|
+
readonly discriminator: 'fully_refunded';
|
|
23035
|
+
readonly capture_id: string;
|
|
23036
|
+
readonly refund_ids: string[];
|
|
23037
|
+
}
|
|
23038
|
+
|
|
22620
23039
|
interface QuoteRequest {
|
|
22621
23040
|
readonly id: string;
|
|
22622
23041
|
readonly request_type: io.flow.internal.v0.enums.QuoteRequestType;
|
|
@@ -25247,10 +25666,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25247
25666
|
| io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted
|
|
25248
25667
|
| io.flow.internal.v0.models.BillingOrganizationSettingsUpserted
|
|
25249
25668
|
| io.flow.internal.v0.models.BillingOrganizationSettingsDeleted
|
|
25669
|
+
| io.flow.internal.v0.models.BillingStatementBatchUpserted
|
|
25670
|
+
| io.flow.internal.v0.models.BillingStatementBatchDeleted
|
|
25671
|
+
| io.flow.internal.v0.models.BillingStatementBatchStatementUpserted
|
|
25672
|
+
| io.flow.internal.v0.models.BillingStatementBatchStatementDeleted
|
|
25250
25673
|
| io.flow.internal.v0.models.PlatformFeeChangeUpserted
|
|
25251
25674
|
| io.flow.internal.v0.models.PlatformFeeChangeDeleted
|
|
25252
|
-
| io.flow.internal.v0.models.FxRevenueRecognitionUpserted
|
|
25253
|
-
| io.flow.internal.v0.models.FxRevenueRecognitionDeleted
|
|
25254
25675
|
| io.flow.internal.v0.models.FraudReviewUpserted
|
|
25255
25676
|
| io.flow.internal.v0.models.FraudReviewDeleted
|
|
25256
25677
|
| io.flow.internal.v0.models.FraudPendingReviewUpserted
|
|
@@ -25307,6 +25728,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25307
25728
|
| io.flow.internal.v0.models.FulfillmentCancel
|
|
25308
25729
|
| io.flow.internal.v0.models.OrderShipped
|
|
25309
25730
|
| io.flow.internal.v0.models.ItemsShipped
|
|
25731
|
+
| io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted
|
|
25732
|
+
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted
|
|
25733
|
+
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted
|
|
25310
25734
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
25311
25735
|
| io.flow.internal.v0.models.InternalAuthorizationDeleted
|
|
25312
25736
|
| io.flow.internal.v0.models.AfterpayAuthorizationUpserted
|
|
@@ -25327,6 +25751,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25327
25751
|
| io.flow.internal.v0.models.VirtualCardProviderDeleted
|
|
25328
25752
|
| io.flow.internal.v0.models.AuthorizationBundleUpserted
|
|
25329
25753
|
| io.flow.internal.v0.models.AuthorizationBundleDeleted
|
|
25754
|
+
| io.flow.internal.v0.models.OrganizationPaymentSettingUpserted
|
|
25755
|
+
| io.flow.internal.v0.models.OrganizationPaymentSettingDeleted
|
|
25330
25756
|
| io.flow.internal.v0.models.PaypalPaymentDeleted
|
|
25331
25757
|
| io.flow.internal.v0.models.PaypalPaymentUpserted
|
|
25332
25758
|
| io.flow.internal.v0.models.PaypalExecutionDeleted
|
|
@@ -25551,6 +25977,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25551
25977
|
| io.flow.internal.v0.models.AdyenMerchantPutForm
|
|
25552
25978
|
| io.flow.internal.v0.models.FiservMerchantPutForm
|
|
25553
25979
|
| io.flow.internal.v0.models.PaypalMerchantPutForm;
|
|
25980
|
+
type ProofOfPosting =
|
|
25981
|
+
| io.flow.internal.v0.models.ProofOfPostingFulfilled
|
|
25982
|
+
| io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
25554
25983
|
type RoutingEntity =
|
|
25555
25984
|
| io.flow.internal.v0.models.RoutingProcessor
|
|
25556
25985
|
| io.flow.internal.v0.models.RoutingAccount
|
|
@@ -25691,6 +26120,8 @@ export type AdyenCaptureDeleted =
|
|
|
25691
26120
|
io.flow.internal.v0.models.AdyenCaptureDeleted;
|
|
25692
26121
|
export type AdyenCaptureUpserted =
|
|
25693
26122
|
io.flow.internal.v0.models.AdyenCaptureUpserted;
|
|
26123
|
+
export type AdyenIntegrationType =
|
|
26124
|
+
io.flow.internal.v0.enums.AdyenIntegrationType;
|
|
25694
26125
|
export type AdyenInternalAuthorization =
|
|
25695
26126
|
io.flow.internal.v0.models.AdyenInternalAuthorization;
|
|
25696
26127
|
export type AdyenInternalCancel =
|
|
@@ -25840,8 +26271,22 @@ export type BillingStatementAttachmentKey =
|
|
|
25840
26271
|
io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
25841
26272
|
export type BillingStatementBatch =
|
|
25842
26273
|
io.flow.internal.v0.models.BillingStatementBatch;
|
|
26274
|
+
export type BillingStatementBatchDeleted =
|
|
26275
|
+
io.flow.internal.v0.models.BillingStatementBatchDeleted;
|
|
25843
26276
|
export type BillingStatementBatchFileKey =
|
|
25844
26277
|
io.flow.internal.v0.enums.BillingStatementBatchFileKey;
|
|
26278
|
+
export type BillingStatementBatchReconciliation =
|
|
26279
|
+
io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
26280
|
+
export type BillingStatementBatchReference =
|
|
26281
|
+
io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
26282
|
+
export type BillingStatementBatchStatement =
|
|
26283
|
+
io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
26284
|
+
export type BillingStatementBatchStatementDeleted =
|
|
26285
|
+
io.flow.internal.v0.models.BillingStatementBatchStatementDeleted;
|
|
26286
|
+
export type BillingStatementBatchStatementUpserted =
|
|
26287
|
+
io.flow.internal.v0.models.BillingStatementBatchStatementUpserted;
|
|
26288
|
+
export type BillingStatementBatchUpserted =
|
|
26289
|
+
io.flow.internal.v0.models.BillingStatementBatchUpserted;
|
|
25845
26290
|
export type BillingStatementDeleted =
|
|
25846
26291
|
io.flow.internal.v0.models.BillingStatementDeleted;
|
|
25847
26292
|
export type BillingStatementPendingReview =
|
|
@@ -26049,6 +26494,8 @@ export type ChannelRateMetadataRate =
|
|
|
26049
26494
|
export type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
26050
26495
|
export type ChannelTransactionRate =
|
|
26051
26496
|
io.flow.internal.v0.models.ChannelTransactionRate;
|
|
26497
|
+
export type ChannelTransactionType =
|
|
26498
|
+
io.flow.internal.v0.enums.ChannelTransactionType;
|
|
26052
26499
|
export type Chargeback = io.flow.internal.v0.models.Chargeback;
|
|
26053
26500
|
export type ChargebackDeleted = io.flow.internal.v0.models.ChargebackDeleted;
|
|
26054
26501
|
export type ChargebackPaymentStatus =
|
|
@@ -27201,6 +27648,30 @@ export type DailyExperimentResultsDeleted =
|
|
|
27201
27648
|
io.flow.internal.v0.models.DailyExperimentResultsDeleted;
|
|
27202
27649
|
export type DailyExperimentResultsUpserted =
|
|
27203
27650
|
io.flow.internal.v0.models.DailyExperimentResultsUpserted;
|
|
27651
|
+
export type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
27652
|
+
export type DebugLabel = io.flow.internal.v0.models.DebugLabel;
|
|
27653
|
+
export type DebugLabelTransactionSummary =
|
|
27654
|
+
io.flow.internal.v0.models.DebugLabelTransactionSummary;
|
|
27655
|
+
export type DebugOrder = io.flow.internal.v0.models.DebugOrder;
|
|
27656
|
+
export type DebugOrderTransaction =
|
|
27657
|
+
io.flow.internal.v0.models.DebugOrderTransaction;
|
|
27658
|
+
export type DebugOrderTransactionForm =
|
|
27659
|
+
io.flow.internal.v0.models.DebugOrderTransactionForm;
|
|
27660
|
+
export type DebugOrderTransactionFormOrderIdentifier =
|
|
27661
|
+
io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
27662
|
+
export type DebugPaymentTransactionSummary =
|
|
27663
|
+
io.flow.internal.v0.models.DebugPaymentTransactionSummary;
|
|
27664
|
+
export type DebugTransactionDetails =
|
|
27665
|
+
io.flow.internal.v0.models.DebugTransactionDetails;
|
|
27666
|
+
export type DebugTransactionDetailsStatus =
|
|
27667
|
+
io.flow.internal.v0.models.DebugTransactionDetailsStatus;
|
|
27668
|
+
export type DebugTransactionForm =
|
|
27669
|
+
io.flow.internal.v0.models.DebugTransactionForm;
|
|
27670
|
+
export type DebugTransactionFx = io.flow.internal.v0.models.DebugTransactionFx;
|
|
27671
|
+
export type DebugTransactionFxRate =
|
|
27672
|
+
io.flow.internal.v0.models.DebugTransactionFxRate;
|
|
27673
|
+
export type DebugTransactionQueued =
|
|
27674
|
+
io.flow.internal.v0.models.DebugTransactionQueued;
|
|
27204
27675
|
export type Decision = io.flow.internal.v0.models.Decision;
|
|
27205
27676
|
export type DeclineReason = io.flow.internal.v0.unions.DeclineReason;
|
|
27206
27677
|
export type DeclineReasonChannelOrderAcceptance =
|
|
@@ -27532,8 +28003,6 @@ export type FxRevenueRecognitionAccount =
|
|
|
27532
28003
|
io.flow.internal.v0.models.FxRevenueRecognitionAccount;
|
|
27533
28004
|
export type FxRevenueRecognitionAccountRate =
|
|
27534
28005
|
io.flow.internal.v0.models.FxRevenueRecognitionAccountRate;
|
|
27535
|
-
export type FxRevenueRecognitionDeleted =
|
|
27536
|
-
io.flow.internal.v0.models.FxRevenueRecognitionDeleted;
|
|
27537
28006
|
export type FxRevenueRecognitionOrder =
|
|
27538
28007
|
io.flow.internal.v0.models.FxRevenueRecognitionOrder;
|
|
27539
28008
|
export type FxRevenueRecognitionOrganization =
|
|
@@ -27542,8 +28011,6 @@ export type FxRevenueRecognitionRate =
|
|
|
27542
28011
|
io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
27543
28012
|
export type FxRevenueRecognitionSource =
|
|
27544
28013
|
io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
27545
|
-
export type FxRevenueRecognitionUpserted =
|
|
27546
|
-
io.flow.internal.v0.models.FxRevenueRecognitionUpserted;
|
|
27547
28014
|
export type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
27548
28015
|
export type GiftCardAuthorizationError =
|
|
27549
28016
|
io.flow.internal.v0.models.GiftCardAuthorizationError;
|
|
@@ -27701,6 +28168,8 @@ export type InternalChannelRateDeleted =
|
|
|
27701
28168
|
io.flow.internal.v0.models.InternalChannelRateDeleted;
|
|
27702
28169
|
export type InternalChannelRateUpserted =
|
|
27703
28170
|
io.flow.internal.v0.models.InternalChannelRateUpserted;
|
|
28171
|
+
export type InternalDebugTransaction =
|
|
28172
|
+
io.flow.internal.v0.models.InternalDebugTransaction;
|
|
27704
28173
|
export type InternalExclusionRuleForm =
|
|
27705
28174
|
io.flow.internal.v0.models.InternalExclusionRuleForm;
|
|
27706
28175
|
export type InternalFiservAuthorizationDetails =
|
|
@@ -28144,6 +28613,8 @@ export type OrganizationCurrencySettingUpserted =
|
|
|
28144
28613
|
io.flow.internal.v0.models.OrganizationCurrencySettingUpserted;
|
|
28145
28614
|
export type OrganizationCurrencySettingVersion =
|
|
28146
28615
|
io.flow.internal.v0.models.OrganizationCurrencySettingVersion;
|
|
28616
|
+
export type OrganizationDebugTransaction =
|
|
28617
|
+
io.flow.internal.v0.models.OrganizationDebugTransaction;
|
|
28147
28618
|
export type OrganizationInvitationAcceptForm =
|
|
28148
28619
|
io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
28149
28620
|
export type OrganizationMembershipCopy =
|
|
@@ -28152,14 +28623,28 @@ export type OrganizationMembershipCopyForm =
|
|
|
28152
28623
|
io.flow.internal.v0.models.OrganizationMembershipCopyForm;
|
|
28153
28624
|
export type OrganizationPaymentSetting =
|
|
28154
28625
|
io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
28626
|
+
export type OrganizationPaymentSettingDeleted =
|
|
28627
|
+
io.flow.internal.v0.models.OrganizationPaymentSettingDeleted;
|
|
28155
28628
|
export type OrganizationPaymentSettingForm =
|
|
28156
28629
|
io.flow.internal.v0.models.OrganizationPaymentSettingForm;
|
|
28630
|
+
export type OrganizationPaymentSettingUpserted =
|
|
28631
|
+
io.flow.internal.v0.models.OrganizationPaymentSettingUpserted;
|
|
28157
28632
|
export type OrganizationPaymentSettingVersion =
|
|
28158
28633
|
io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
28159
28634
|
export type OrganizationPaymentStatus =
|
|
28160
28635
|
io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
28636
|
+
export type OrganizationRestrictionApproval =
|
|
28637
|
+
io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
28638
|
+
export type OrganizationRestrictionApprovalStatus =
|
|
28639
|
+
io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
28640
|
+
export type OrganizationRestrictionApprovalUpserted =
|
|
28641
|
+
io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted;
|
|
28161
28642
|
export type OrganizationRestrictionSnapshot =
|
|
28162
28643
|
io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
28644
|
+
export type OrganizationRestrictionSnapshotDeleted =
|
|
28645
|
+
io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted;
|
|
28646
|
+
export type OrganizationRestrictionSnapshotUpserted =
|
|
28647
|
+
io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
28163
28648
|
export type OrganizationRestrictionSummary =
|
|
28164
28649
|
io.flow.internal.v0.models.OrganizationRestrictionSummary;
|
|
28165
28650
|
export type OrganizationSettings =
|
|
@@ -28190,6 +28675,10 @@ export type PartnerOrganizationAuthorizationForm =
|
|
|
28190
28675
|
export type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
28191
28676
|
export type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
28192
28677
|
export type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
|
|
28678
|
+
export type PaymentMethodDetail =
|
|
28679
|
+
io.flow.internal.v0.models.PaymentMethodDetail;
|
|
28680
|
+
export type PaymentMethodOption =
|
|
28681
|
+
io.flow.internal.v0.models.PaymentMethodOption;
|
|
28193
28682
|
export type PaymentOrganizationSettings =
|
|
28194
28683
|
io.flow.internal.v0.models.PaymentOrganizationSettings;
|
|
28195
28684
|
export type PaymentOrganizationSettingsPutForm =
|
|
@@ -28340,6 +28829,11 @@ export type PromptCheckoutDisplayPosition =
|
|
|
28340
28829
|
io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
|
|
28341
28830
|
export type PromptOptions = io.flow.internal.v0.enums.PromptOptions;
|
|
28342
28831
|
export type PromptTarget = io.flow.internal.v0.enums.PromptTarget;
|
|
28832
|
+
export type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
28833
|
+
export type ProofOfPostingFulfilled =
|
|
28834
|
+
io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
28835
|
+
export type ProofOfPostingFullyRefunded =
|
|
28836
|
+
io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
28343
28837
|
export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
28344
28838
|
export type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
|
|
28345
28839
|
export type RateAndRuleItem = io.flow.internal.v0.models.RateAndRuleItem;
|