@flowio/types 11.24.38 → 11.24.40

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.
@@ -7025,7 +7025,7 @@ declare namespace io.flow.shopify.markets.v0.models {
7025
7025
  readonly discount_applications: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountApplication[];
7026
7026
  readonly discount_codes: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountCode[];
7027
7027
  readonly email?: string;
7028
- readonly financial_status: io.flow.shopify.markets.v0.enums.ShopifyOrderFinancialStatusType;
7028
+ readonly financial_status?: io.flow.shopify.markets.v0.enums.ShopifyOrderFinancialStatusType;
7029
7029
  readonly fulfillments: io.flow.shopify.markets.v0.models.ShopifyOrderFulfillment[];
7030
7030
  readonly fulfillment_status?: io.flow.shopify.markets.v0.enums.ShopifyOrderFulfillmentStatusType;
7031
7031
  readonly landing_site?: string;
@@ -7955,7 +7955,7 @@ declare namespace io.flow.payment.gateway.v0.models {
7955
7955
  readonly first_name?: string;
7956
7956
  readonly last_name: string;
7957
7957
  readonly email: string;
7958
- readonly phone: string;
7958
+ readonly phone?: string;
7959
7959
  }
7960
7960
 
7961
7961
  interface PaymentDiscount {
@@ -11381,6 +11381,7 @@ declare namespace io.flow.billing.v0.enums {
11381
11381
  | 'other_adjustment'
11382
11382
  | 'tax_adjustment'
11383
11383
  | 'channel'
11384
+ | 'channel_billed'
11384
11385
  | 'order_service'
11385
11386
  | 'virtual_card_capture'
11386
11387
  | 'virtual_card_refund';
@@ -11403,6 +11404,10 @@ declare namespace io.flow.billing.v0.models {
11403
11404
  readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
11404
11405
  }
11405
11406
 
11407
+ interface BankAccountReference {
11408
+ readonly id: string;
11409
+ }
11410
+
11406
11411
  interface BillingChannelOrderSummary {
11407
11412
  readonly organization: io.flow.billing.v0.models.BillingChannelOrganizationSummary;
11408
11413
  readonly number: string;
@@ -11452,6 +11457,10 @@ declare namespace io.flow.billing.v0.models {
11452
11457
  readonly created_at: string;
11453
11458
  }
11454
11459
 
11460
+ interface DefaultBankAccountForm {
11461
+ readonly bank_account_id: string;
11462
+ }
11463
+
11455
11464
  interface FeeDeduction {
11456
11465
  readonly type: io.flow.billing.v0.enums.FeeDeductionType;
11457
11466
  readonly amount: number;
@@ -11468,6 +11477,11 @@ declare namespace io.flow.billing.v0.models {
11468
11477
  readonly last4: string;
11469
11478
  }
11470
11479
 
11480
+ interface OrganizationDefaultBankAccount {
11481
+ readonly id: string;
11482
+ readonly bank_account: io.flow.billing.v0.models.BankAccountReference;
11483
+ }
11484
+
11471
11485
  interface Payout {
11472
11486
  readonly discriminator: 'payout';
11473
11487
  readonly status: io.flow.billing.v0.models.PayoutStatus;
@@ -13177,6 +13191,7 @@ declare namespace io.flow.internal.v0.enums {
13177
13191
  | 'statement'
13178
13192
  | 'consumer_invoice'
13179
13193
  | 'credit_memo'
13194
+ | 'channel_billed'
13180
13195
  | 'transactions'
13181
13196
  | 'virtual_card'
13182
13197
  | 'tax_remittance'
@@ -13204,7 +13219,8 @@ declare namespace io.flow.internal.v0.enums {
13204
13219
  | 'dispute'
13205
13220
  | 'channel'
13206
13221
  | 'label'
13207
- | 'order';
13222
+ | 'order'
13223
+ | 'channel_billed';
13208
13224
  type BlazeCheckoutEvent =
13209
13225
  | 'begin_checkout'
13210
13226
  | 'select_promotion'
@@ -13225,6 +13241,7 @@ declare namespace io.flow.internal.v0.enums {
13225
13241
  | 'item_prices'
13226
13242
  | 'price_book_items_import'
13227
13243
  | 'price_book_items_query_import';
13244
+ type ChannelBilledTransactionType = 'adjustment' | 'channel_initiated';
13228
13245
  type ChannelOrderAcceptanceRejectionReason =
13229
13246
  | 'unsupported_origin_country'
13230
13247
  | 'unsupported_destination_country'
@@ -13605,6 +13622,14 @@ declare namespace io.flow.internal.v0.enums {
13605
13622
  | 'bank_payment_deleted'
13606
13623
  | 'bank_payment_upserted_v2'
13607
13624
  | 'bank_payment_deleted_v2'
13625
+ | 'channel_transaction_upserted'
13626
+ | 'channel_transaction_deleted'
13627
+ | 'order_transaction_upserted'
13628
+ | 'order_transaction_deleted'
13629
+ | 'label_transaction_upserted'
13630
+ | 'label_transaction_deleted'
13631
+ | 'channel_billed_transaction_upserted'
13632
+ | 'channel_billed_transaction_deleted'
13608
13633
  | 'calculator_organization_settings_upserted'
13609
13634
  | 'calculator_organization_settings_deleted'
13610
13635
  | 'carrier_account_upserted_v2'
@@ -14008,10 +14033,10 @@ declare namespace io.flow.internal.v0.enums {
14008
14033
  type OrganizationPaymentStatus = 'active' | 'archived';
14009
14034
  type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
14010
14035
  type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason';
14011
- type OrganizationRestrictionRiskLevel = '5' | '10' | '15';
14036
+ type OrganizationRestrictionRiskLevel = '5' | '15';
14012
14037
  type OrganizationRestrictionScreeningStatus =
14013
- | 'approved'
14014
- | 'pending'
14038
+ | 'in_review'
14039
+ | 'full_reviewed'
14015
14040
  | 'rejected'
14016
14041
  | 'unscreened';
14017
14042
  type OutputStyle = 'flow' | 'shopify_p1';
@@ -15237,6 +15262,7 @@ declare namespace io.flow.internal.v0.models {
15237
15262
  readonly channel: io.flow.common.v0.models.Price;
15238
15263
  readonly label: io.flow.common.v0.models.Price;
15239
15264
  readonly order: io.flow.common.v0.models.Price;
15265
+ readonly channel_billed: io.flow.common.v0.models.Price;
15240
15266
  readonly ending_balance: io.flow.common.v0.models.Price;
15241
15267
  }
15242
15268
 
@@ -15712,6 +15738,55 @@ declare namespace io.flow.internal.v0.models {
15712
15738
  readonly channel_account: io.flow.internal.v0.models.ChannelAccount;
15713
15739
  }
15714
15740
 
15741
+ interface ChannelBilledTransaction {
15742
+ readonly discriminator: 'channel_billed_transaction';
15743
+ readonly id: string;
15744
+ readonly type: io.flow.internal.v0.enums.BillingTransactionType;
15745
+ readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
15746
+ readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
15747
+ readonly posted_at?: string;
15748
+ readonly value: io.flow.common.v0.models.Price;
15749
+ readonly description: string;
15750
+ readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
15751
+ readonly created_at: string;
15752
+ }
15753
+
15754
+ interface ChannelBilledTransactionDeleted {
15755
+ readonly discriminator: 'channel_billed_transaction_deleted';
15756
+ readonly event_id: string;
15757
+ readonly timestamp: string;
15758
+ readonly id: string;
15759
+ }
15760
+
15761
+ interface ChannelBilledTransactionPair {
15762
+ readonly id: string;
15763
+ readonly key: string;
15764
+ readonly attributes?: Record<string, string>;
15765
+ readonly organization_transaction: io.flow.internal.v0.models.ChannelBilledTransactionReference;
15766
+ readonly channel_transaction: io.flow.internal.v0.models.ChannelBilledTransactionReference;
15767
+ }
15768
+
15769
+ interface ChannelBilledTransactionPairForm {
15770
+ readonly channel_id: string;
15771
+ readonly organization_id: string;
15772
+ readonly amount: number;
15773
+ readonly currency: string;
15774
+ readonly description: string;
15775
+ readonly order_number?: string;
15776
+ readonly attributes?: Record<string, string>;
15777
+ }
15778
+
15779
+ interface ChannelBilledTransactionReference {
15780
+ readonly id: string;
15781
+ }
15782
+
15783
+ interface ChannelBilledTransactionUpserted {
15784
+ readonly discriminator: 'channel_billed_transaction_upserted';
15785
+ readonly event_id: string;
15786
+ readonly timestamp: string;
15787
+ readonly channel_billed_transaction: io.flow.internal.v0.models.ChannelBilledTransaction;
15788
+ }
15789
+
15715
15790
  interface ChannelBillingStatement {
15716
15791
  readonly id: string;
15717
15792
  readonly account: io.flow.internal.v0.models.AccountReference;
@@ -15869,6 +15944,13 @@ declare namespace io.flow.internal.v0.models {
15869
15944
  readonly created_at: string;
15870
15945
  }
15871
15946
 
15947
+ interface ChannelTransactionDeleted {
15948
+ readonly discriminator: 'channel_transaction_deleted';
15949
+ readonly event_id: string;
15950
+ readonly timestamp: string;
15951
+ readonly id: string;
15952
+ }
15953
+
15872
15954
  interface ChannelTransactionRate {
15873
15955
  readonly from: string;
15874
15956
  readonly to: string;
@@ -15876,6 +15958,13 @@ declare namespace io.flow.internal.v0.models {
15876
15958
  readonly timestamp: string;
15877
15959
  }
15878
15960
 
15961
+ interface ChannelTransactionUpserted {
15962
+ readonly discriminator: 'channel_transaction_upserted';
15963
+ readonly event_id: string;
15964
+ readonly timestamp: string;
15965
+ readonly channel_transaction: io.flow.internal.v0.models.ChannelTransaction;
15966
+ }
15967
+
15879
15968
  interface Chargeback {
15880
15969
  readonly id: string;
15881
15970
  readonly key: string;
@@ -19254,6 +19343,30 @@ declare namespace io.flow.internal.v0.models {
19254
19343
  readonly order_number?: string;
19255
19344
  }
19256
19345
 
19346
+ interface ExternalFulfillmentProof {
19347
+ readonly id: string;
19348
+ readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
19349
+ readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
19350
+ readonly tracking: io.flow.internal.v0.models.ExternalFulfillmentProofTracking[];
19351
+ }
19352
+
19353
+ interface ExternalFulfillmentProofForm {
19354
+ readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
19355
+ readonly tracking?: io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm[];
19356
+ }
19357
+
19358
+ interface ExternalFulfillmentProofTracking {
19359
+ readonly carrier_id?: string;
19360
+ readonly service_id?: string;
19361
+ readonly carrier_tracking_number?: string;
19362
+ }
19363
+
19364
+ interface ExternalFulfillmentProofTrackingForm {
19365
+ readonly carrier_id?: string;
19366
+ readonly service_id?: string;
19367
+ readonly carrier_tracking_number?: string;
19368
+ }
19369
+
19257
19370
  interface FacebookPixel {
19258
19371
  readonly discriminator: 'facebook_pixel';
19259
19372
  readonly name?: string;
@@ -20854,7 +20967,7 @@ declare namespace io.flow.internal.v0.models {
20854
20967
 
20855
20968
  interface InternalPaypalAuthorizationDetails {
20856
20969
  readonly discriminator: 'internal_paypal_authorization_details';
20857
- readonly paypal_authentication_data: io.flow.internal.v0.models.PaypalAuthenticationDataReference;
20970
+ readonly paypal_authentication_data: io.flow.internal.v0.models.PaypalAccountReference;
20858
20971
  }
20859
20972
 
20860
20973
  interface InternalRedirectAuthorizationDetails {
@@ -21338,6 +21451,20 @@ declare namespace io.flow.internal.v0.models {
21338
21451
  readonly created_at: string;
21339
21452
  }
21340
21453
 
21454
+ interface LabelTransactionDeleted {
21455
+ readonly discriminator: 'label_transaction_deleted';
21456
+ readonly event_id: string;
21457
+ readonly timestamp: string;
21458
+ readonly id: string;
21459
+ }
21460
+
21461
+ interface LabelTransactionUpserted {
21462
+ readonly discriminator: 'label_transaction_upserted';
21463
+ readonly event_id: string;
21464
+ readonly timestamp: string;
21465
+ readonly label_transaction: io.flow.internal.v0.models.LabelTransaction;
21466
+ }
21467
+
21341
21468
  interface LabeledContent {
21342
21469
  readonly label: io.flow.internal.v0.models.ContentLabel;
21343
21470
  readonly contents: io.flow.internal.v0.unions.ContentItem[];
@@ -22345,6 +22472,20 @@ declare namespace io.flow.internal.v0.models {
22345
22472
  readonly created_at: string;
22346
22473
  }
22347
22474
 
22475
+ interface OrderTransactionDeleted {
22476
+ readonly discriminator: 'order_transaction_deleted';
22477
+ readonly event_id: string;
22478
+ readonly timestamp: string;
22479
+ readonly id: string;
22480
+ }
22481
+
22482
+ interface OrderTransactionUpserted {
22483
+ readonly discriminator: 'order_transaction_upserted';
22484
+ readonly event_id: string;
22485
+ readonly timestamp: string;
22486
+ readonly order_transaction: io.flow.internal.v0.models.OrderTransaction;
22487
+ }
22488
+
22348
22489
  interface OrganizationAccount {
22349
22490
  readonly organization: io.flow.common.v0.models.OrganizationReference;
22350
22491
  readonly id: string;
@@ -22531,6 +22672,7 @@ declare namespace io.flow.internal.v0.models {
22531
22672
 
22532
22673
  interface OrganizationRestrictionScreeningDecisionForm {
22533
22674
  readonly organization_id: string;
22675
+ readonly approval_status: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
22534
22676
  readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
22535
22677
  readonly risk_level?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
22536
22678
  readonly hs_code?: string;
@@ -22572,7 +22714,7 @@ declare namespace io.flow.internal.v0.models {
22572
22714
  readonly organization_id: string;
22573
22715
  readonly approval: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
22574
22716
  readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
22575
- readonly risk_level: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
22717
+ readonly risk_level?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
22576
22718
  readonly selective_review_start_date?: string;
22577
22719
  readonly selective_review_end_date?: string;
22578
22720
  readonly full_review_start_date?: string;
@@ -22681,6 +22823,14 @@ declare namespace io.flow.internal.v0.models {
22681
22823
  readonly partner: string;
22682
22824
  }
22683
22825
 
22826
+ interface PartnerOrganizationSettings {
22827
+ readonly glbe_merchant_guid: string;
22828
+ }
22829
+
22830
+ interface PartnerOrganizationSettingsForm {
22831
+ readonly glbe_merchant_guid: string;
22832
+ }
22833
+
22684
22834
  interface Passphrase {
22685
22835
  readonly id: string;
22686
22836
  readonly tribe: io.flow.internal.v0.models.Tribe;
@@ -22806,23 +22956,14 @@ declare namespace io.flow.internal.v0.models {
22806
22956
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
22807
22957
  }
22808
22958
 
22809
- interface PaypalAuthentication {
22810
- readonly username: string;
22811
- readonly password_reference: string;
22812
- }
22813
-
22814
- interface PaypalAuthenticationData {
22959
+ interface PaypalAccountReference {
22815
22960
  readonly id: string;
22816
- readonly organization: string;
22817
- readonly key: string;
22818
- readonly environment: io.flow.common.v0.enums.Environment;
22819
- readonly client_id: io.flow.internal.v0.models.CipherReference;
22820
- readonly secret: io.flow.internal.v0.models.CipherReference;
22961
+ readonly flow_merchant_id?: string;
22821
22962
  }
22822
22963
 
22823
- interface PaypalAuthenticationDataReference {
22824
- readonly id: string;
22825
- readonly flow_merchant_id?: string;
22964
+ interface PaypalAuthentication {
22965
+ readonly username: string;
22966
+ readonly password_reference: string;
22826
22967
  }
22827
22968
 
22828
22969
  interface PaypalAuthenticationForm {
@@ -23248,6 +23389,11 @@ declare namespace io.flow.internal.v0.models {
23248
23389
  readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
23249
23390
  }
23250
23391
 
23392
+ interface ProofOfPostingExternallyFulfilled {
23393
+ readonly discriminator: 'external';
23394
+ readonly external_fulfillment_proof_id: string;
23395
+ }
23396
+
23251
23397
  interface ProofOfPostingFulfilled {
23252
23398
  readonly discriminator: 'fulfilled';
23253
23399
  readonly billable_label_id: string;
@@ -23702,6 +23848,7 @@ declare namespace io.flow.internal.v0.models {
23702
23848
  readonly name: string;
23703
23849
  readonly environment: io.flow.common.v0.enums.Environment;
23704
23850
  readonly url?: string;
23851
+ readonly approval_status?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
23705
23852
  readonly screening_status?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
23706
23853
  readonly risk_level?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
23707
23854
  readonly hs_code?: string;
@@ -25831,6 +25978,14 @@ declare namespace io.flow.internal.v0.unions {
25831
25978
  | io.flow.internal.v0.models.BankPaymentDeleted
25832
25979
  | io.flow.internal.v0.models.BankPaymentUpsertedV2
25833
25980
  | io.flow.internal.v0.models.BankPaymentDeletedV2
25981
+ | io.flow.internal.v0.models.ChannelTransactionUpserted
25982
+ | io.flow.internal.v0.models.ChannelTransactionDeleted
25983
+ | io.flow.internal.v0.models.OrderTransactionUpserted
25984
+ | io.flow.internal.v0.models.OrderTransactionDeleted
25985
+ | io.flow.internal.v0.models.LabelTransactionUpserted
25986
+ | io.flow.internal.v0.models.LabelTransactionDeleted
25987
+ | io.flow.internal.v0.models.ChannelBilledTransactionUpserted
25988
+ | io.flow.internal.v0.models.ChannelBilledTransactionDeleted
25834
25989
  | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted
25835
25990
  | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
25836
25991
  | io.flow.internal.v0.models.CarrierAccountUpsertedV2
@@ -26229,6 +26384,7 @@ declare namespace io.flow.internal.v0.unions {
26229
26384
  | io.flow.internal.v0.models.PaypalMerchantPutForm;
26230
26385
  type ProofOfPosting =
26231
26386
  | io.flow.internal.v0.models.ProofOfPostingFulfilled
26387
+ | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled
26232
26388
  | io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
26233
26389
  type RoutingEntity =
26234
26390
  | io.flow.internal.v0.models.RoutingProcessor
@@ -26281,7 +26437,8 @@ declare namespace io.flow.internal.v0.unions {
26281
26437
  | io.flow.internal.v0.models.DisputeTransaction
26282
26438
  | io.flow.internal.v0.models.ChannelTransaction
26283
26439
  | io.flow.internal.v0.models.LabelTransaction
26284
- | io.flow.internal.v0.models.OrderTransaction;
26440
+ | io.flow.internal.v0.models.OrderTransaction
26441
+ | io.flow.internal.v0.models.ChannelBilledTransaction;
26285
26442
  type TransactionSummary =
26286
26443
  | io.flow.internal.v0.models.PaymentSummaryV2
26287
26444
  | io.flow.internal.v0.models.FraudSummary;
@@ -26701,6 +26858,20 @@ export type ChannelAccountDeleted =
26701
26858
  io.flow.internal.v0.models.ChannelAccountDeleted;
26702
26859
  export type ChannelAccountUpsertedV2 =
26703
26860
  io.flow.internal.v0.models.ChannelAccountUpsertedV2;
26861
+ export type ChannelBilledTransaction =
26862
+ io.flow.internal.v0.models.ChannelBilledTransaction;
26863
+ export type ChannelBilledTransactionDeleted =
26864
+ io.flow.internal.v0.models.ChannelBilledTransactionDeleted;
26865
+ export type ChannelBilledTransactionPair =
26866
+ io.flow.internal.v0.models.ChannelBilledTransactionPair;
26867
+ export type ChannelBilledTransactionPairForm =
26868
+ io.flow.internal.v0.models.ChannelBilledTransactionPairForm;
26869
+ export type ChannelBilledTransactionReference =
26870
+ io.flow.internal.v0.models.ChannelBilledTransactionReference;
26871
+ export type ChannelBilledTransactionType =
26872
+ io.flow.internal.v0.enums.ChannelBilledTransactionType;
26873
+ export type ChannelBilledTransactionUpserted =
26874
+ io.flow.internal.v0.models.ChannelBilledTransactionUpserted;
26704
26875
  export type ChannelBillingStatement =
26705
26876
  io.flow.internal.v0.models.ChannelBillingStatement;
26706
26877
  export type ChannelCurrencyForm =
@@ -26748,10 +26919,14 @@ export type ChannelRateMetadataIdentity =
26748
26919
  export type ChannelRateMetadataRate =
26749
26920
  io.flow.internal.v0.models.ChannelRateMetadataRate;
26750
26921
  export type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
26922
+ export type ChannelTransactionDeleted =
26923
+ io.flow.internal.v0.models.ChannelTransactionDeleted;
26751
26924
  export type ChannelTransactionRate =
26752
26925
  io.flow.internal.v0.models.ChannelTransactionRate;
26753
26926
  export type ChannelTransactionType =
26754
26927
  io.flow.internal.v0.enums.ChannelTransactionType;
26928
+ export type ChannelTransactionUpserted =
26929
+ io.flow.internal.v0.models.ChannelTransactionUpserted;
26755
26930
  export type Chargeback = io.flow.internal.v0.models.Chargeback;
26756
26931
  export type ChargebackDeleted = io.flow.internal.v0.models.ChargebackDeleted;
26757
26932
  export type ChargebackPaymentStatus =
@@ -28126,6 +28301,14 @@ export type ExportTrackingLabel =
28126
28301
  io.flow.internal.v0.models.ExportTrackingLabel;
28127
28302
  export type ExportTrackingLabelEvent =
28128
28303
  io.flow.internal.v0.models.ExportTrackingLabelEvent;
28304
+ export type ExternalFulfillmentProof =
28305
+ io.flow.internal.v0.models.ExternalFulfillmentProof;
28306
+ export type ExternalFulfillmentProofForm =
28307
+ io.flow.internal.v0.models.ExternalFulfillmentProofForm;
28308
+ export type ExternalFulfillmentProofTracking =
28309
+ io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
28310
+ export type ExternalFulfillmentProofTrackingForm =
28311
+ io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
28129
28312
  export type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
28130
28313
  export type Feature = io.flow.internal.v0.models.Feature;
28131
28314
  export type FeatureContextForm = io.flow.internal.v0.models.FeatureContextForm;
@@ -28563,8 +28746,12 @@ export type LabelTrackingSummaryDeleted =
28563
28746
  export type LabelTrackingSummaryUpserted =
28564
28747
  io.flow.internal.v0.models.LabelTrackingSummaryUpserted;
28565
28748
  export type LabelTransaction = io.flow.internal.v0.models.LabelTransaction;
28749
+ export type LabelTransactionDeleted =
28750
+ io.flow.internal.v0.models.LabelTransactionDeleted;
28566
28751
  export type LabelTransactionType =
28567
28752
  io.flow.internal.v0.enums.LabelTransactionType;
28753
+ export type LabelTransactionUpserted =
28754
+ io.flow.internal.v0.models.LabelTransactionUpserted;
28568
28755
  export type LabeledContent = io.flow.internal.v0.models.LabeledContent;
28569
28756
  export type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
28570
28757
  export type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
@@ -28856,8 +29043,12 @@ export type OrderShipped = io.flow.internal.v0.models.OrderShipped;
28856
29043
  export type OrderSubmissionForm =
28857
29044
  io.flow.internal.v0.models.OrderSubmissionForm;
28858
29045
  export type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
29046
+ export type OrderTransactionDeleted =
29047
+ io.flow.internal.v0.models.OrderTransactionDeleted;
28859
29048
  export type OrderTransactionType =
28860
29049
  io.flow.internal.v0.enums.OrderTransactionType;
29050
+ export type OrderTransactionUpserted =
29051
+ io.flow.internal.v0.models.OrderTransactionUpserted;
28861
29052
  export type OrganizationAccount =
28862
29053
  io.flow.internal.v0.models.OrganizationAccount;
28863
29054
  export type OrganizationAccountDeleted =
@@ -28961,6 +29152,10 @@ export type PartnerOrganizationAuthorization =
28961
29152
  io.flow.internal.v0.models.PartnerOrganizationAuthorization;
28962
29153
  export type PartnerOrganizationAuthorizationForm =
28963
29154
  io.flow.internal.v0.models.PartnerOrganizationAuthorizationForm;
29155
+ export type PartnerOrganizationSettings =
29156
+ io.flow.internal.v0.models.PartnerOrganizationSettings;
29157
+ export type PartnerOrganizationSettingsForm =
29158
+ io.flow.internal.v0.models.PartnerOrganizationSettingsForm;
28964
29159
  export type Passphrase = io.flow.internal.v0.models.Passphrase;
28965
29160
  export type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
28966
29161
  export type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
@@ -28993,12 +29188,10 @@ export type PaypalAccountModificationForm =
28993
29188
  io.flow.internal.v0.models.PaypalAccountModificationForm;
28994
29189
  export type PaypalAccountPutForm =
28995
29190
  io.flow.internal.v0.models.PaypalAccountPutForm;
29191
+ export type PaypalAccountReference =
29192
+ io.flow.internal.v0.models.PaypalAccountReference;
28996
29193
  export type PaypalAuthentication =
28997
29194
  io.flow.internal.v0.models.PaypalAuthentication;
28998
- export type PaypalAuthenticationData =
28999
- io.flow.internal.v0.models.PaypalAuthenticationData;
29000
- export type PaypalAuthenticationDataReference =
29001
- io.flow.internal.v0.models.PaypalAuthenticationDataReference;
29002
29195
  export type PaypalAuthenticationForm =
29003
29196
  io.flow.internal.v0.models.PaypalAuthenticationForm;
29004
29197
  export type PaypalAuthorizationPayload =
@@ -29119,6 +29312,8 @@ export type PromptCheckoutDisplayPosition =
29119
29312
  export type PromptOptions = io.flow.internal.v0.enums.PromptOptions;
29120
29313
  export type PromptTarget = io.flow.internal.v0.enums.PromptTarget;
29121
29314
  export type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
29315
+ export type ProofOfPostingExternallyFulfilled =
29316
+ io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled;
29122
29317
  export type ProofOfPostingFulfilled =
29123
29318
  io.flow.internal.v0.models.ProofOfPostingFulfilled;
29124
29319
  export type ProofOfPostingFullyRefunded =