@flowio/api-internal-factories 0.0.104 → 0.0.106
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/cjs/api-internal.js +1270 -1062
- package/dist/esm/api-internal.js +1160 -982
- package/dist/types/api-internal.d.ts +74 -45
- package/package.json +2 -2
- package/src/api-internal.ts +1299 -1147
package/src/api-internal.ts
CHANGED
|
@@ -627,6 +627,7 @@ const factories = {
|
|
|
627
627
|
order: factories['io.flow.billing.accounting.v0.models.order_summary'](),
|
|
628
628
|
shopper: factories['io.flow.billing.accounting.v0.models.shopper_summary'](),
|
|
629
629
|
remittance: factories['io.flow.billing.accounting.v0.models.remittance_responsibility'](),
|
|
630
|
+
payment: factories['io.flow.billing.accounting.v0.models.payment_summary'](),
|
|
630
631
|
merchant: factories['io.flow.billing.accounting.v0.models.merchant_summary'](),
|
|
631
632
|
sequence_number: factories.long(),
|
|
632
633
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
@@ -771,11 +772,21 @@ const factories = {
|
|
|
771
772
|
currency: factories.string(),
|
|
772
773
|
}),
|
|
773
774
|
|
|
775
|
+
'io.flow.billing.accounting.v0.models.payment_summary': (): io.flow.billing.accounting.v0.models.PaymentSummary => ({
|
|
776
|
+
psp: factories.decimal(),
|
|
777
|
+
credit: factories.decimal(),
|
|
778
|
+
subsidized: factories.decimal(),
|
|
779
|
+
manual: factories.decimal(),
|
|
780
|
+
cod: factories.decimal(),
|
|
781
|
+
total: factories.decimal(),
|
|
782
|
+
}),
|
|
783
|
+
|
|
774
784
|
'io.flow.billing.accounting.v0.models.pending_order': (): io.flow.billing.accounting.v0.models.PendingOrder => ({
|
|
775
785
|
id: factories.string(),
|
|
776
786
|
order: factories['io.flow.billing.accounting.v0.models.order_summary'](),
|
|
777
787
|
shopper: factories['io.flow.billing.accounting.v0.models.shopper_summary'](),
|
|
778
788
|
merchant: factories['io.flow.billing.accounting.v0.models.merchant_summary'](),
|
|
789
|
+
payment: factories['io.flow.billing.accounting.v0.models.payment_summary'](),
|
|
779
790
|
remittance: factories['io.flow.billing.accounting.v0.models.remittance_responsibility'](),
|
|
780
791
|
sequence_number: factories.long(),
|
|
781
792
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
@@ -792,6 +803,7 @@ const factories = {
|
|
|
792
803
|
shopper: factories['io.flow.billing.accounting.v0.models.shopper_summary'](),
|
|
793
804
|
merchant: factories['io.flow.billing.accounting.v0.models.merchant_summary'](),
|
|
794
805
|
remittance: factories['io.flow.billing.accounting.v0.models.remittance_responsibility'](),
|
|
806
|
+
payment: factories['io.flow.billing.accounting.v0.models.payment_summary'](),
|
|
795
807
|
sequence_number: factories.long(),
|
|
796
808
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
797
809
|
trigger: factories['io.flow.billing.accounting.v0.unions.return_trigger'](),
|
|
@@ -844,6 +856,7 @@ const factories = {
|
|
|
844
856
|
product: factories['io.flow.billing.accounting.v0.models.shopper_lines'](),
|
|
845
857
|
fees: factories['io.flow.billing.accounting.v0.models.shopper_fees'](),
|
|
846
858
|
freight: factories['io.flow.billing.accounting.v0.models.shopper_freight'](),
|
|
859
|
+
tips: factories.decimal(),
|
|
847
860
|
order_discount: factories.decimal(),
|
|
848
861
|
total: factories.decimal(),
|
|
849
862
|
}),
|
|
@@ -918,469 +931,7 @@ const factories = {
|
|
|
918
931
|
return f();
|
|
919
932
|
},
|
|
920
933
|
|
|
921
|
-
'io.flow.billing.
|
|
922
|
-
id: factories.string(),
|
|
923
|
-
currency: factories.string(),
|
|
924
|
-
}),
|
|
925
|
-
|
|
926
|
-
'io.flow.billing.csv.v0.models.billing_channel_csv_order': (): io.flow.billing.csv.v0.models.BillingChannelCsvOrder => ({
|
|
927
|
-
number: factories.string(),
|
|
928
|
-
submitted_at: factories.date_time_iso_8601(),
|
|
929
|
-
local: factories['io.flow.billing.csv.v0.models.billing_channel_csv_order_detail'](),
|
|
930
|
-
|
|
931
|
-
deliveries: arrayOf(
|
|
932
|
-
() => factories['io.flow.billing.csv.v0.models.billing_channel_csv_order_delivery'](),
|
|
933
|
-
),
|
|
934
|
-
}),
|
|
935
|
-
|
|
936
|
-
'io.flow.billing.csv.v0.models.billing_channel_csv_order_delivery': (): io.flow.billing.csv.v0.models.BillingChannelCsvOrderDelivery => ({
|
|
937
|
-
carrier: factories['io.flow.billing.csv.v0.models.billing_csv_carrier'](),
|
|
938
|
-
service: factories['io.flow.billing.csv.v0.models.billing_csv_service'](),
|
|
939
|
-
delivered_duty: factories['io.flow.common.v0.enums.delivered_duty'](),
|
|
940
|
-
ratecard_owner: factories['io.flow.billing.internal.v0.enums.responsible_party'](),
|
|
941
|
-
tier: factories['io.flow.billing.csv.v0.models.billing_csv_tier'](),
|
|
942
|
-
}),
|
|
943
|
-
|
|
944
|
-
'io.flow.billing.csv.v0.models.billing_channel_csv_order_detail': (): io.flow.billing.csv.v0.models.BillingChannelCsvOrderDetail => ({
|
|
945
|
-
currency: factories.string(),
|
|
946
|
-
freight: factories.decimal(),
|
|
947
|
-
total: factories.decimal(),
|
|
948
|
-
subtotal: factories.decimal(),
|
|
949
|
-
vat: factories.decimal(),
|
|
950
|
-
duty: factories.decimal(),
|
|
951
|
-
discount: factories.decimal(),
|
|
952
|
-
adjustment: factories.decimal(),
|
|
953
|
-
insurance: factories.decimal(),
|
|
954
|
-
shipping: factories.decimal(),
|
|
955
|
-
}),
|
|
956
|
-
|
|
957
|
-
'io.flow.billing.csv.v0.models.billing_csv_carrier': (): io.flow.billing.csv.v0.models.BillingCsvCarrier => ({
|
|
958
|
-
id: factories.string(),
|
|
959
|
-
}),
|
|
960
|
-
|
|
961
|
-
'io.flow.billing.csv.v0.models.billing_csv_center': (): io.flow.billing.csv.v0.models.BillingCsvCenter => ({
|
|
962
|
-
key: factories.string(),
|
|
963
|
-
}),
|
|
964
|
-
|
|
965
|
-
'io.flow.billing.csv.v0.models.billing_csv_channel_billed_transaction': (): io.flow.billing.csv.v0.models.BillingCsvChannelBilledTransaction => ({
|
|
966
|
-
id: factories.string(),
|
|
967
|
-
type: factories.string(),
|
|
968
|
-
net: factories.decimal(),
|
|
969
|
-
description: factories.string(),
|
|
970
|
-
account: factories['io.flow.billing.csv.v0.models.account_summary'](),
|
|
971
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
972
|
-
order: factories['io.flow.billing.csv.v0.models.billing_csv_order_summary'](),
|
|
973
|
-
}),
|
|
974
|
-
|
|
975
|
-
'io.flow.billing.csv.v0.models.billing_csv_channel_transaction': (): io.flow.billing.csv.v0.models.BillingCsvChannelTransaction => ({
|
|
976
|
-
id: factories.string(),
|
|
977
|
-
account: factories['io.flow.billing.csv.v0.models.account_summary'](),
|
|
978
|
-
type: factories.string(),
|
|
979
|
-
description: factories.string(),
|
|
980
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
981
|
-
order: factories['io.flow.billing.csv.v0.models.billing_csv_order_with_mor_summary'](),
|
|
982
|
-
processing_transaction: factories['io.flow.billing.csv.v0.models.billing_csv_channel_transaction_processing_transaction'](),
|
|
983
|
-
spot_rate: factories['io.flow.billing.csv.v0.models.billing_csv_exchange_rate'](),
|
|
984
|
-
processing_transaction_base_amount_in_channel_account_currency: factories.decimal(),
|
|
985
|
-
processing_transaction_total_fees_in_channel_account_currency: factories.decimal(),
|
|
986
|
-
processing_fee: factories['io.flow.billing.csv.v0.models.billing_csv_fee'](),
|
|
987
|
-
fraud_fee: factories['io.flow.billing.csv.v0.models.billing_csv_fee'](),
|
|
988
|
-
mor_fee: factories['io.flow.billing.csv.v0.models.billing_csv_fee'](),
|
|
989
|
-
fx_fee: factories['io.flow.billing.csv.v0.models.billing_csv_fee'](),
|
|
990
|
-
duty_guarantee_fee: factories['io.flow.billing.csv.v0.models.billing_csv_fee'](),
|
|
991
|
-
rate_lock_fee: factories['io.flow.billing.csv.v0.models.billing_csv_fee'](),
|
|
992
|
-
transfer_fee: factories['io.flow.billing.csv.v0.models.billing_csv_fee'](),
|
|
993
|
-
total_fees: factories.decimal(),
|
|
994
|
-
amount: factories.decimal(),
|
|
995
|
-
}),
|
|
996
|
-
|
|
997
|
-
'io.flow.billing.csv.v0.models.billing_csv_channel_transaction_processing_transaction': (): io.flow.billing.csv.v0.models.BillingCsvChannelTransactionProcessingTransaction => ({
|
|
998
|
-
id: factories.string(),
|
|
999
|
-
account: factories['io.flow.billing.csv.v0.models.account_summary'](),
|
|
1000
|
-
local_currency: factories.string(),
|
|
1001
|
-
base_amount: factories.decimal(),
|
|
1002
|
-
total_fees: factories.decimal(),
|
|
1003
|
-
payment_method: factories.string(),
|
|
1004
|
-
}),
|
|
1005
|
-
|
|
1006
|
-
'io.flow.billing.csv.v0.models.billing_csv_consumer_invoice': (): io.flow.billing.csv.v0.models.BillingCsvConsumerInvoice => ({
|
|
1007
|
-
invoice: factories['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_summary'](),
|
|
1008
|
-
order: factories['io.flow.billing.internal.v0.models.billing_order_summary'](),
|
|
1009
|
-
|
|
1010
|
-
lines: arrayOf(
|
|
1011
|
-
() => factories['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_line_detail'](),
|
|
1012
|
-
),
|
|
1013
|
-
}),
|
|
1014
|
-
|
|
1015
|
-
'io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_line': (): io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceLine => ({
|
|
1016
|
-
invoice: factories['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_summary'](),
|
|
1017
|
-
order: factories['io.flow.billing.internal.v0.models.billing_order_summary'](),
|
|
1018
|
-
line: factories['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_line_detail'](),
|
|
1019
|
-
}),
|
|
1020
|
-
|
|
1021
|
-
'io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_line_detail': (): io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceLineDetail => ({
|
|
1022
|
-
discriminator: factories.string(),
|
|
1023
|
-
item_number: factories.string(),
|
|
1024
|
-
quantity: factories.long(),
|
|
1025
|
-
unit_price: factories['io.flow.common.v0.models.price'](),
|
|
1026
|
-
unit_discount: factories['io.flow.common.v0.models.price'](),
|
|
1027
|
-
unit_tax: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'](),
|
|
1028
|
-
unit_duty: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'](),
|
|
1029
|
-
}),
|
|
1030
|
-
|
|
1031
|
-
'io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_summary': (): io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceSummary => ({
|
|
1032
|
-
id: factories.string(),
|
|
1033
|
-
number: factories.string(),
|
|
1034
|
-
date: factories.date_time_iso_8601(),
|
|
1035
|
-
key: factories.string(),
|
|
1036
|
-
}),
|
|
1037
|
-
|
|
1038
|
-
'io.flow.billing.csv.v0.models.billing_csv_delivery': (): io.flow.billing.csv.v0.models.BillingCsvDelivery => ({
|
|
1039
|
-
delivered_duty: factories['io.flow.common.v0.enums.delivered_duty'](),
|
|
1040
|
-
carrier: factories['io.flow.billing.csv.v0.models.billing_csv_carrier'](),
|
|
1041
|
-
center: factories['io.flow.billing.csv.v0.models.billing_csv_center'](),
|
|
1042
|
-
service: factories['io.flow.billing.csv.v0.models.billing_csv_service'](),
|
|
1043
|
-
tier: factories['io.flow.billing.csv.v0.models.billing_csv_tier'](),
|
|
1044
|
-
cost: factories['io.flow.billing.csv.v0.models.billing_csv_delivery_cost_detail'](),
|
|
1045
|
-
ratecard_owner: factories['io.flow.billing.internal.v0.enums.responsible_party'](),
|
|
1046
|
-
}),
|
|
1047
|
-
|
|
1048
|
-
'io.flow.billing.csv.v0.models.billing_csv_delivery_cost_detail': (): io.flow.billing.csv.v0.models.BillingCsvDeliveryCostDetail => ({
|
|
1049
|
-
ratecard_base_cost: factories.decimal(),
|
|
1050
|
-
ratecard_ddp_fee: factories.decimal(),
|
|
1051
|
-
ratecard_emergency_situation_surcharge: factories.decimal(),
|
|
1052
|
-
ratecard_peak_surcharge: factories.decimal(),
|
|
1053
|
-
ratecard_fuel_surcharge: factories.decimal(),
|
|
1054
|
-
ratecard_oversized_shipment_fee: factories.decimal(),
|
|
1055
|
-
ratecard_rural_shipment_fee: factories.decimal(),
|
|
1056
|
-
center_commercial_invoice_fee: factories.decimal(),
|
|
1057
|
-
center_inbound_carton_fee: factories.decimal(),
|
|
1058
|
-
center_outbound_carton_fee: factories.decimal(),
|
|
1059
|
-
}),
|
|
1060
|
-
|
|
1061
|
-
'io.flow.billing.csv.v0.models.billing_csv_exchange_rate': (): io.flow.billing.csv.v0.models.BillingCsvExchangeRate => ({
|
|
1062
|
-
base_currency: factories.string(),
|
|
1063
|
-
local_currency: factories.string(),
|
|
1064
|
-
rate: factories.decimal(),
|
|
1065
|
-
}),
|
|
1066
|
-
|
|
1067
|
-
'io.flow.billing.csv.v0.models.billing_csv_fee': (): io.flow.billing.csv.v0.models.BillingCsvFee => ({
|
|
1068
|
-
amount: factories.decimal(),
|
|
1069
|
-
description: factories.string(),
|
|
1070
|
-
}),
|
|
1071
|
-
|
|
1072
|
-
'io.flow.billing.csv.v0.models.billing_csv_generic_transaction': (): io.flow.billing.csv.v0.models.BillingCsvGenericTransaction => ({
|
|
1073
|
-
id: factories.string(),
|
|
1074
|
-
posted_at: factories.date_time_iso_8601(),
|
|
1075
|
-
type: factories['io.flow.billing.internal.v0.enums.billing_transaction_type'](),
|
|
1076
|
-
amount: factories.decimal(),
|
|
1077
|
-
description: factories.string(),
|
|
1078
|
-
}),
|
|
1079
|
-
|
|
1080
|
-
'io.flow.billing.csv.v0.models.billing_csv_label_transaction': (): io.flow.billing.csv.v0.models.BillingCsvLabelTransaction => ({
|
|
1081
|
-
id: factories.string(),
|
|
1082
|
-
type: factories.string(),
|
|
1083
|
-
gross: factories.decimal(),
|
|
1084
|
-
net: factories.decimal(),
|
|
1085
|
-
discounts: arrayOf(() => factories['io.flow.billing.internal.v0.models.discount']()),
|
|
1086
|
-
description: factories.string(),
|
|
1087
|
-
account: factories['io.flow.billing.csv.v0.models.account_summary'](),
|
|
1088
|
-
label: factories['io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_summary'](),
|
|
1089
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
1090
|
-
order: factories['io.flow.billing.csv.v0.models.billing_csv_order_with_mor_summary'](),
|
|
1091
|
-
}),
|
|
1092
|
-
|
|
1093
|
-
'io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_summary': (): io.flow.billing.csv.v0.models.BillingCsvLabelTransactionBillableLabelSummary => ({
|
|
1094
|
-
id: factories.string(),
|
|
1095
|
-
owner: factories['io.flow.fulfillment.v0.enums.ratecard_owner'](),
|
|
1096
|
-
carrier_id: factories.string(),
|
|
1097
|
-
carrier_tracking_number: factories.string(),
|
|
1098
|
-
cost: factories['io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_summary_cost'](),
|
|
1099
|
-
request_method: factories['io.flow.label.v0.enums.label_request_method'](),
|
|
1100
|
-
trigger_method: factories['io.flow.label.v0.enums.label_trigger_method'](),
|
|
1101
|
-
identifiers: objectOf(() => factories.string()),
|
|
1102
|
-
}),
|
|
1103
|
-
|
|
1104
|
-
'io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_summary_cost': (): io.flow.billing.csv.v0.models.BillingCsvLabelTransactionBillableLabelSummaryCost => ({
|
|
1105
|
-
amount: factories.decimal(),
|
|
1106
|
-
currency: factories.string(),
|
|
1107
|
-
source: factories['io.flow.label.v0.enums.cost_estimate_source'](),
|
|
1108
|
-
}),
|
|
1109
|
-
|
|
1110
|
-
'io.flow.billing.csv.v0.models.billing_csv_merchant_reference': (): io.flow.billing.csv.v0.models.BillingCsvMerchantReference => ({
|
|
1111
|
-
id: factories.string(),
|
|
1112
|
-
}),
|
|
1113
|
-
|
|
1114
|
-
'io.flow.billing.csv.v0.models.billing_csv_order': (): io.flow.billing.csv.v0.models.BillingCsvOrder => ({
|
|
1115
|
-
number: factories.string(),
|
|
1116
|
-
primary_identifier: factories.string(),
|
|
1117
|
-
submitted_at: factories.date_time_iso_8601(),
|
|
1118
|
-
timezone: factories.string(),
|
|
1119
|
-
local: factories['io.flow.billing.csv.v0.models.billing_csv_order_detail'](),
|
|
1120
|
-
base: factories['io.flow.billing.csv.v0.models.billing_csv_order_detail'](),
|
|
1121
|
-
transaction_amount: factories.decimal(),
|
|
1122
|
-
deliveries: arrayOf(() => factories['io.flow.billing.csv.v0.models.billing_csv_delivery']()),
|
|
1123
|
-
exchange_rate: factories['io.flow.billing.csv.v0.models.billing_csv_exchange_rate'](),
|
|
1124
|
-
}),
|
|
1125
|
-
|
|
1126
|
-
'io.flow.billing.csv.v0.models.billing_csv_order_destination': (): io.flow.billing.csv.v0.models.BillingCsvOrderDestination => ({
|
|
1127
|
-
city: factories.string(),
|
|
1128
|
-
province: factories.string(),
|
|
1129
|
-
postal: factories.string(),
|
|
1130
|
-
country: factories.string(),
|
|
1131
|
-
}),
|
|
1132
|
-
|
|
1133
|
-
'io.flow.billing.csv.v0.models.billing_csv_order_detail': (): io.flow.billing.csv.v0.models.BillingCsvOrderDetail => ({
|
|
1134
|
-
currency: factories.string(),
|
|
1135
|
-
adjustment: factories.decimal(),
|
|
1136
|
-
subtotal: factories.decimal(),
|
|
1137
|
-
vat: factories.decimal(),
|
|
1138
|
-
duty: factories.decimal(),
|
|
1139
|
-
shipping: factories.decimal(),
|
|
1140
|
-
insurance: factories.decimal(),
|
|
1141
|
-
discount: factories.decimal(),
|
|
1142
|
-
total: factories.decimal(),
|
|
1143
|
-
freight: factories.decimal(),
|
|
1144
|
-
}),
|
|
1145
|
-
|
|
1146
|
-
'io.flow.billing.csv.v0.models.billing_csv_order_summary': (): io.flow.billing.csv.v0.models.BillingCsvOrderSummary => ({
|
|
1147
|
-
number: factories.string(),
|
|
1148
|
-
identifiers: objectOf(() => factories.string()),
|
|
1149
|
-
}),
|
|
1150
|
-
|
|
1151
|
-
'io.flow.billing.csv.v0.models.billing_csv_order_transaction': (): io.flow.billing.csv.v0.models.BillingCsvOrderTransaction => ({
|
|
1152
|
-
id: factories.string(),
|
|
1153
|
-
type: factories.string(),
|
|
1154
|
-
amount: factories.decimal(),
|
|
1155
|
-
description: factories.string(),
|
|
1156
|
-
account: factories['io.flow.billing.csv.v0.models.account_summary'](),
|
|
1157
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
1158
|
-
order: factories['io.flow.billing.csv.v0.models.billing_csv_order_with_mor_summary'](),
|
|
1159
|
-
}),
|
|
1160
|
-
|
|
1161
|
-
'io.flow.billing.csv.v0.models.billing_csv_order_with_mor_summary': (): io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary => ({
|
|
1162
|
-
number: factories.string(),
|
|
1163
|
-
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
1164
|
-
identifiers: objectOf(() => factories.string()),
|
|
1165
|
-
}),
|
|
1166
|
-
|
|
1167
|
-
'io.flow.billing.csv.v0.models.billing_csv_processing_transaction': (): io.flow.billing.csv.v0.models.BillingCsvProcessingTransaction => ({
|
|
1168
|
-
id: factories.string(),
|
|
1169
|
-
reference: factories.string(),
|
|
1170
|
-
primary_identifier: factories.string(),
|
|
1171
|
-
parent_id: factories.string(),
|
|
1172
|
-
created_at: factories.date_time_iso_8601(),
|
|
1173
|
-
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
1174
|
-
posted_at: factories.date_time_iso_8601(),
|
|
1175
|
-
type: factories['io.flow.billing.internal.v0.enums.billing_transaction_type'](),
|
|
1176
|
-
timezone: factories.string(),
|
|
1177
|
-
order_number: factories.string(),
|
|
1178
|
-
order_primary_identifier: factories.string(),
|
|
1179
|
-
order_identifiers: objectOf(() => factories.string()),
|
|
1180
|
-
order_submitted_at: factories.date_time_iso_8601(),
|
|
1181
|
-
order: factories['io.flow.billing.internal.v0.models.billing_order_summary'](),
|
|
1182
|
-
payment_method: factories.string(),
|
|
1183
|
-
local_amount: factories.decimal(),
|
|
1184
|
-
local_currency: factories.string(),
|
|
1185
|
-
base_amount: factories.decimal(),
|
|
1186
|
-
base_currency: factories.string(),
|
|
1187
|
-
processing_fee: factories.decimal(),
|
|
1188
|
-
processing_fee_description: factories.string(),
|
|
1189
|
-
rate_lock_fee: factories.decimal(),
|
|
1190
|
-
rate_lock_fee_description: factories.string(),
|
|
1191
|
-
vat_withholding: factories.decimal(),
|
|
1192
|
-
duty_withholding: factories.decimal(),
|
|
1193
|
-
freight_withholding: factories.decimal(),
|
|
1194
|
-
insurance_withholding: factories.decimal(),
|
|
1195
|
-
revenue_share: factories.decimal(),
|
|
1196
|
-
revenue_share_currency: factories.string(),
|
|
1197
|
-
amount: factories.decimal(),
|
|
1198
|
-
order_detail: factories['io.flow.billing.csv.v0.models.billing_csv_processing_transaction_order_detail'](),
|
|
1199
|
-
mor_fee: factories.decimal(),
|
|
1200
|
-
mor_fee_description: factories.string(),
|
|
1201
|
-
fx_fee: factories.decimal(),
|
|
1202
|
-
fx_fee_description: factories.string(),
|
|
1203
|
-
duty_guarantee_fee: factories.decimal(),
|
|
1204
|
-
duty_guarantee_fee_description: factories.string(),
|
|
1205
|
-
negative_balance_fee: factories.decimal(),
|
|
1206
|
-
negative_balance_fee_description: factories.string(),
|
|
1207
|
-
}),
|
|
1208
|
-
|
|
1209
|
-
'io.flow.billing.csv.v0.models.billing_csv_processing_transaction_delivery': (): io.flow.billing.csv.v0.models.BillingCsvProcessingTransactionDelivery => ({
|
|
1210
|
-
delivery_option_id: factories.string(),
|
|
1211
|
-
ratecard_owner: factories['io.flow.billing.internal.v0.enums.responsible_party'](),
|
|
1212
|
-
service: factories['io.flow.billing.csv.v0.models.billing_csv_service'](),
|
|
1213
|
-
center: factories['io.flow.billing.csv.v0.models.billing_csv_center'](),
|
|
1214
|
-
ship_from_country: factories.string(),
|
|
1215
|
-
delivered_duty: factories.string(),
|
|
1216
|
-
}),
|
|
1217
|
-
|
|
1218
|
-
'io.flow.billing.csv.v0.models.billing_csv_processing_transaction_order_detail': (): io.flow.billing.csv.v0.models.BillingCsvProcessingTransactionOrderDetail => ({
|
|
1219
|
-
total: factories.decimal(),
|
|
1220
|
-
subtotal: factories.decimal(),
|
|
1221
|
-
discount: factories.decimal(),
|
|
1222
|
-
vat: factories.decimal(),
|
|
1223
|
-
duty: factories.decimal(),
|
|
1224
|
-
shipping: factories.decimal(),
|
|
1225
|
-
vat_subsidy: factories.decimal(),
|
|
1226
|
-
duty_subsidy: factories.decimal(),
|
|
1227
|
-
estimated_freight: factories.decimal(),
|
|
1228
|
-
|
|
1229
|
-
selected_deliveries: arrayOf(
|
|
1230
|
-
() => factories['io.flow.billing.csv.v0.models.billing_csv_processing_transaction_delivery'](),
|
|
1231
|
-
),
|
|
1232
|
-
}),
|
|
1233
|
-
|
|
1234
|
-
'io.flow.billing.csv.v0.models.billing_csv_service': (): io.flow.billing.csv.v0.models.BillingCsvService => ({
|
|
1235
|
-
id: factories.string(),
|
|
1236
|
-
}),
|
|
1237
|
-
|
|
1238
|
-
'io.flow.billing.csv.v0.models.billing_csv_tier': (): io.flow.billing.csv.v0.models.BillingCsvTier => ({
|
|
1239
|
-
name: factories.string(),
|
|
1240
|
-
}),
|
|
1241
|
-
|
|
1242
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction': (): io.flow.billing.csv.v0.models.BillingCsvTransaction => ({
|
|
1243
|
-
id: factories.string(),
|
|
1244
|
-
type: factories['io.flow.billing.internal.v0.enums.billing_transaction_type'](),
|
|
1245
|
-
account: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_account'](),
|
|
1246
|
-
metadata: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata'](),
|
|
1247
|
-
order: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary'](),
|
|
1248
|
-
currency: factories.string(),
|
|
1249
|
-
source: factories['io.flow.billing.v0.enums.transaction_source'](),
|
|
1250
|
-
parent: factories['io.flow.billing.v0.models.parent_transaction_summary'](),
|
|
1251
|
-
gross: factories.decimal(),
|
|
1252
|
-
fees: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_fees'](),
|
|
1253
|
-
withholdings: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_withholdings'](),
|
|
1254
|
-
discount: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_discount'](),
|
|
1255
|
-
net: factories.decimal(),
|
|
1256
|
-
identifiers: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_identifiers'](),
|
|
1257
|
-
created_at: factories.date_time_iso_8601(),
|
|
1258
|
-
updated_at: factories.date_time_iso_8601(),
|
|
1259
|
-
}),
|
|
1260
|
-
|
|
1261
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_account': (): io.flow.billing.csv.v0.models.BillingCsvTransactionAccount => ({
|
|
1262
|
-
id: factories.string(),
|
|
1263
|
-
merchant: factories['io.flow.billing.csv.v0.models.billing_csv_merchant_reference'](),
|
|
1264
|
-
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
1265
|
-
source: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_account_source_summary'](),
|
|
1266
|
-
}),
|
|
1267
|
-
|
|
1268
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_account_source_summary': (): io.flow.billing.csv.v0.models.BillingCsvTransactionAccountSourceSummary => ({
|
|
1269
|
-
id: factories.string(),
|
|
1270
|
-
type: factories['io.flow.billing.internal.v0.enums.account_type'](),
|
|
1271
|
-
}),
|
|
1272
|
-
|
|
1273
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_discount': (): io.flow.billing.csv.v0.models.BillingCsvTransactionDiscount => ({
|
|
1274
|
-
amount: factories.decimal(),
|
|
1275
|
-
description: factories.string(),
|
|
1276
|
-
}),
|
|
1277
|
-
|
|
1278
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_fees': (): io.flow.billing.csv.v0.models.BillingCsvTransactionFees => ({
|
|
1279
|
-
duty_guarantee: factories.decimal(),
|
|
1280
|
-
mor: factories.decimal(),
|
|
1281
|
-
fraud: factories.decimal(),
|
|
1282
|
-
fx: factories.decimal(),
|
|
1283
|
-
processing: factories.decimal(),
|
|
1284
|
-
rate_lock: factories.decimal(),
|
|
1285
|
-
transfer: factories.decimal(),
|
|
1286
|
-
negative_balance: factories.decimal(),
|
|
1287
|
-
}),
|
|
1288
|
-
|
|
1289
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_identifiers': (): io.flow.billing.csv.v0.models.BillingCsvTransactionIdentifiers => ({
|
|
1290
|
-
reference_id: factories.string(),
|
|
1291
|
-
}),
|
|
1292
|
-
|
|
1293
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata': (): io.flow.billing.csv.v0.models.BillingCsvTransactionMetadata => ({
|
|
1294
|
-
channel: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel'](),
|
|
1295
|
-
shipping_label: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label'](),
|
|
1296
|
-
shipping_label_revenue_share: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label_revenue_share'](),
|
|
1297
|
-
trueup: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'](),
|
|
1298
|
-
carrier_charge: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge'](),
|
|
1299
|
-
manual: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'](),
|
|
1300
|
-
failed_payout: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_failed_payout'](),
|
|
1301
|
-
}),
|
|
1302
|
-
|
|
1303
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge': (): io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierCharge => ({
|
|
1304
|
-
reason: factories['io.flow.trueup.v0.enums.carrier_charge_reason'](),
|
|
1305
|
-
label_created_at: factories.date_time_iso_8601(),
|
|
1306
|
-
carrier_id: factories.string(),
|
|
1307
|
-
carrier_tracking_number: factories.string(),
|
|
1308
|
-
revenue_share_percentage: factories.decimal(),
|
|
1309
|
-
outbound_transaction_id: factories.string(),
|
|
1310
|
-
}),
|
|
1311
|
-
|
|
1312
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel': (): io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel => ({
|
|
1313
|
-
method: factories.string(),
|
|
1314
|
-
card: factories['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'](),
|
|
1315
|
-
}),
|
|
1316
|
-
|
|
1317
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_failed_payout': (): io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataFailedPayout => ({
|
|
1318
|
-
failed_payment: factories['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'](),
|
|
1319
|
-
}),
|
|
1320
|
-
|
|
1321
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual': (): io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual => ({
|
|
1322
|
-
description: factories.string(),
|
|
1323
|
-
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
1324
|
-
category: factories['io.flow.billing.internal.v0.enums.manual_transaction_category'](),
|
|
1325
|
-
url: factories.string(),
|
|
1326
|
-
}),
|
|
1327
|
-
|
|
1328
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label': (): io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel => ({
|
|
1329
|
-
request_method: factories['io.flow.label.v0.enums.label_request_method'](),
|
|
1330
|
-
}),
|
|
1331
|
-
|
|
1332
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label_revenue_share': (): io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabelRevenueShare => ({
|
|
1333
|
-
label_id: factories.string(),
|
|
1334
|
-
base_amount: factories.decimal(),
|
|
1335
|
-
percentage: factories.decimal(),
|
|
1336
|
-
}),
|
|
1337
|
-
|
|
1338
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup': (): io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup => ({
|
|
1339
|
-
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
1340
|
-
label_transaction_id: factories.string(),
|
|
1341
|
-
label_invoice_request_id: factories.string(),
|
|
1342
|
-
carrier_charge_id: factories.string(),
|
|
1343
|
-
}),
|
|
1344
|
-
|
|
1345
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary': (): io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummary => ({
|
|
1346
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
1347
|
-
number: factories.string(),
|
|
1348
|
-
identifiers: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary_identifiers'](),
|
|
1349
|
-
}),
|
|
1350
|
-
|
|
1351
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary_identifiers': (): io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummaryIdentifiers => ({
|
|
1352
|
-
shopify_order_id: factories.string(),
|
|
1353
|
-
}),
|
|
1354
|
-
|
|
1355
|
-
'io.flow.billing.csv.v0.models.billing_csv_transaction_withholdings': (): io.flow.billing.csv.v0.models.BillingCsvTransactionWithholdings => ({
|
|
1356
|
-
tax: factories.decimal(),
|
|
1357
|
-
duty: factories.decimal(),
|
|
1358
|
-
freight: factories.decimal(),
|
|
1359
|
-
insurance: factories.decimal(),
|
|
1360
|
-
}),
|
|
1361
|
-
|
|
1362
|
-
'io.flow.billing.csv.v0.models.flow_finance_payment_summary': (): io.flow.billing.csv.v0.models.FlowFinancePaymentSummary => ({
|
|
1363
|
-
id: factories.string(),
|
|
1364
|
-
status: factories['io.flow.billing.internal.v0.enums.bank_payment_status_code'](),
|
|
1365
|
-
amount: factories.decimal(),
|
|
1366
|
-
bank_account_last4: factories.string(),
|
|
1367
|
-
}),
|
|
1368
|
-
|
|
1369
|
-
'io.flow.billing.csv.v0.models.flow_finance_statement_summary': (): io.flow.billing.csv.v0.models.FlowFinanceStatementSummary => ({
|
|
1370
|
-
account_id: factories.string(),
|
|
1371
|
-
payment: factories['io.flow.billing.csv.v0.models.flow_finance_payment_summary'](),
|
|
1372
|
-
statement_id: factories.string(),
|
|
1373
|
-
settlement_currency: factories.string(),
|
|
1374
|
-
starting_balance: factories.decimal(),
|
|
1375
|
-
balance_forward: factories.decimal(),
|
|
1376
|
-
transactions_posted: factories.decimal(),
|
|
1377
|
-
platform_fee: factories.decimal(),
|
|
1378
|
-
account_balance: factories.decimal(),
|
|
1379
|
-
dispute_balance: factories.decimal(),
|
|
1380
|
-
one_time_adjustments: objectOf(() => factories.decimal()),
|
|
1381
|
-
}),
|
|
1382
|
-
|
|
1383
|
-
'io.flow.billing.internal.v0.enums.account_payment_hold_reason': (): io.flow.billing.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'invalid_bank_account']),
|
|
934
|
+
'io.flow.billing.internal.v0.enums.account_payment_hold_reason': (): io.flow.billing.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'frozen', 'invalid_bank_account']),
|
|
1384
935
|
'io.flow.billing.internal.v0.enums.account_setting_liabilities_method': (): io.flow.billing.internal.v0.enums.AccountSettingLiabilitiesMethod => faker.helpers.arrayElement(['withholding', 'transaction']),
|
|
1385
936
|
'io.flow.billing.internal.v0.enums.account_type': (): io.flow.billing.internal.v0.enums.AccountType => faker.helpers.arrayElement(['channel', 'organization']),
|
|
1386
937
|
'io.flow.billing.internal.v0.enums.adjustment_transaction_type': (): io.flow.billing.internal.v0.enums.AdjustmentTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal']),
|
|
@@ -2739,7 +2290,6 @@ const factories = {
|
|
|
2739
2290
|
sequence_number: factories.long(),
|
|
2740
2291
|
fulfilled_at: factories.date_time_iso_8601(),
|
|
2741
2292
|
completes_order: factories.boolean(),
|
|
2742
|
-
payment: factories['io.flow.billing.reporting.v0.models.reporting_payment'](),
|
|
2743
2293
|
value: factories['io.flow.billing.reporting.v0.models.fulfillment_shopper_breakdown'](),
|
|
2744
2294
|
dispatch_country: factories['io.flow.billing.reporting.v0.models.reporting_country'](),
|
|
2745
2295
|
destination: factories['io.flow.billing.reporting.v0.models.reporting_destination'](),
|
|
@@ -2774,11 +2324,15 @@ const factories = {
|
|
|
2774
2324
|
|
|
2775
2325
|
'io.flow.billing.reporting.v0.enums.report_type': (): io.flow.billing.reporting.v0.enums.ReportType => faker.helpers.arrayElement([
|
|
2776
2326
|
'sales_record',
|
|
2327
|
+
'refund_record',
|
|
2328
|
+
'other_record',
|
|
2329
|
+
'pending_record',
|
|
2777
2330
|
'trueup_overview',
|
|
2778
2331
|
'non_channel_payment_bank_account',
|
|
2779
2332
|
'scheduled_payment',
|
|
2780
2333
|
'account_quarterly_balances',
|
|
2781
2334
|
'invariants',
|
|
2335
|
+
'payments',
|
|
2782
2336
|
]),
|
|
2783
2337
|
|
|
2784
2338
|
'io.flow.billing.reporting.v0.enums.reporting_fulfillment_is_virtual': (): io.flow.billing.reporting.v0.enums.ReportingFulfillmentIsVirtual => faker.helpers.arrayElement(['all', 'mixed', 'none']),
|
|
@@ -2791,6 +2345,7 @@ const factories = {
|
|
|
2791
2345
|
subtotal: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2792
2346
|
tax: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2793
2347
|
duty: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2348
|
+
tips: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2794
2349
|
discount: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2795
2350
|
total: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2796
2351
|
}),
|
|
@@ -2923,11 +2478,11 @@ const factories = {
|
|
|
2923
2478
|
sequence_number: factories.long(),
|
|
2924
2479
|
fulfilled_at: factories.date_time_iso_8601(),
|
|
2925
2480
|
completes_order: factories.boolean(),
|
|
2926
|
-
payment: factories['io.flow.billing.reporting.v0.models.reporting_payment'](),
|
|
2927
2481
|
refund: factories['io.flow.billing.reporting.v0.models.reporting_refund_reference'](),
|
|
2928
2482
|
value: factories['io.flow.billing.reporting.v0.models.fulfillment_shopper_breakdown'](),
|
|
2929
2483
|
dispatch_country: factories['io.flow.billing.reporting.v0.models.reporting_country'](),
|
|
2930
2484
|
destination: factories['io.flow.billing.reporting.v0.models.reporting_destination'](),
|
|
2485
|
+
payment: factories['io.flow.billing.reporting.v0.models.reporting_payment'](),
|
|
2931
2486
|
shipment: factories['io.flow.billing.reporting.v0.models.reporting_shipment'](),
|
|
2932
2487
|
is: factories['io.flow.billing.reporting.v0.models.reporting_fulfillment_is'](),
|
|
2933
2488
|
has: factories['io.flow.billing.reporting.v0.models.reporting_fulfillment_has'](),
|
|
@@ -2946,6 +2501,11 @@ const factories = {
|
|
|
2946
2501
|
wyol: factories.boolean(),
|
|
2947
2502
|
b2b: factories.boolean(),
|
|
2948
2503
|
domestic: factories.boolean(),
|
|
2504
|
+
combined_shipment: factories.boolean(),
|
|
2505
|
+
order_cancelled: factories.boolean(),
|
|
2506
|
+
lvg: factories.boolean(),
|
|
2507
|
+
tax_inclusive: factories.boolean(),
|
|
2508
|
+
duty_inclusive: factories.boolean(),
|
|
2949
2509
|
}),
|
|
2950
2510
|
|
|
2951
2511
|
'io.flow.billing.reporting.v0.models.reporting_fx': (): io.flow.billing.reporting.v0.models.ReportingFx => ({
|
|
@@ -2954,6 +2514,7 @@ const factories = {
|
|
|
2954
2514
|
product: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
2955
2515
|
tax: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
2956
2516
|
duty: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
2517
|
+
tips: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
2957
2518
|
total: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
2958
2519
|
}),
|
|
2959
2520
|
|
|
@@ -2971,6 +2532,7 @@ const factories = {
|
|
|
2971
2532
|
processing: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2972
2533
|
rate_lock: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2973
2534
|
transfer: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2535
|
+
total: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2974
2536
|
}),
|
|
2975
2537
|
|
|
2976
2538
|
'io.flow.billing.reporting.v0.models.reporting_merchant_subsidies': (): io.flow.billing.reporting.v0.models.ReportingMerchantSubsidies => ({
|
|
@@ -2978,6 +2540,7 @@ const factories = {
|
|
|
2978
2540
|
tax: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2979
2541
|
duty: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2980
2542
|
ccf: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2543
|
+
total: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2981
2544
|
}),
|
|
2982
2545
|
|
|
2983
2546
|
'io.flow.billing.reporting.v0.models.reporting_merchant_transactions': (): io.flow.billing.reporting.v0.models.ReportingMerchantTransactions => ({
|
|
@@ -2986,6 +2549,8 @@ const factories = {
|
|
|
2986
2549
|
tax: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2987
2550
|
duty: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2988
2551
|
freight: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2552
|
+
discount: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2553
|
+
total: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2989
2554
|
}),
|
|
2990
2555
|
|
|
2991
2556
|
'io.flow.billing.reporting.v0.models.reporting_monetary_value': (): io.flow.billing.reporting.v0.models.ReportingMonetaryValue => ({
|
|
@@ -3008,25 +2573,14 @@ const factories = {
|
|
|
3008
2573
|
}),
|
|
3009
2574
|
|
|
3010
2575
|
'io.flow.billing.reporting.v0.models.reporting_payment': (): io.flow.billing.reporting.v0.models.ReportingPayment => ({
|
|
3011
|
-
metadata: factories['io.flow.billing.reporting.v0.models.reporting_payment_metadata'](),
|
|
3012
2576
|
psp: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3013
2577
|
credit: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2578
|
+
subsidized: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2579
|
+
manual: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2580
|
+
cod: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3014
2581
|
total: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3015
2582
|
}),
|
|
3016
2583
|
|
|
3017
|
-
'io.flow.billing.reporting.v0.models.reporting_payment_metadata': (): io.flow.billing.reporting.v0.models.ReportingPaymentMetadata => ({
|
|
3018
|
-
gateway: factories['io.flow.payment.internal.v0.enums.processor'](),
|
|
3019
|
-
method: factories.string(),
|
|
3020
|
-
psp_reference: factories.string(),
|
|
3021
|
-
authorization: factories['io.flow.billing.reporting.v0.models.reporting_authorization_reference'](),
|
|
3022
|
-
settlement_date: factories.date_time_iso_8601(),
|
|
3023
|
-
additional_authorizations: factories['io.flow.billing.reporting.v0.models.reporting_payment_metadata_additional_authorizations'](),
|
|
3024
|
-
}),
|
|
3025
|
-
|
|
3026
|
-
'io.flow.billing.reporting.v0.models.reporting_payment_metadata_additional_authorizations': (): io.flow.billing.reporting.v0.models.ReportingPaymentMetadataAdditionalAuthorizations => ({
|
|
3027
|
-
ids: factories.string(),
|
|
3028
|
-
}),
|
|
3029
|
-
|
|
3030
2584
|
'io.flow.billing.reporting.v0.models.reporting_province': (): io.flow.billing.reporting.v0.models.ReportingProvince => ({
|
|
3031
2585
|
code: factories.string(),
|
|
3032
2586
|
name: factories.string(),
|
|
@@ -3055,6 +2609,7 @@ const factories = {
|
|
|
3055
2609
|
ccf: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3056
2610
|
emergency: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3057
2611
|
peak: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2612
|
+
total: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3058
2613
|
}),
|
|
3059
2614
|
|
|
3060
2615
|
'io.flow.billing.reporting.v0.models.reporting_usd': (): io.flow.billing.reporting.v0.models.ReportingUsd => ({
|
|
@@ -3448,7 +3003,7 @@ const factories = {
|
|
|
3448
3003
|
discriminator: 'channel',
|
|
3449
3004
|
method: factories.string(),
|
|
3450
3005
|
card: factories['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'](),
|
|
3451
|
-
organization_transaction: factories['io.flow.billing.v0.models.
|
|
3006
|
+
organization_transaction: factories['io.flow.billing.v0.models.transaction_metadata_channel_organization_transaction'](),
|
|
3452
3007
|
}),
|
|
3453
3008
|
|
|
3454
3009
|
'io.flow.billing.v0.models.transaction_metadata_channel_card_metadata': (): io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata => ({
|
|
@@ -3461,6 +3016,11 @@ const factories = {
|
|
|
3461
3016
|
country: factories.string(),
|
|
3462
3017
|
}),
|
|
3463
3018
|
|
|
3019
|
+
'io.flow.billing.v0.models.transaction_metadata_channel_organization_transaction': (): io.flow.billing.v0.models.TransactionMetadataChannelOrganizationTransaction => ({
|
|
3020
|
+
id: factories.string(),
|
|
3021
|
+
metadata: factories['io.flow.billing.v0.models.transaction_metadata_payment_transaction'](),
|
|
3022
|
+
}),
|
|
3023
|
+
|
|
3464
3024
|
'io.flow.billing.v0.models.transaction_metadata_failed_payout': (): io.flow.billing.v0.models.TransactionMetadataFailedPayout => ({
|
|
3465
3025
|
discriminator: 'failed_payout',
|
|
3466
3026
|
failed_payout: factories['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'](),
|
|
@@ -4370,6 +3930,7 @@ const factories = {
|
|
|
4370
3930
|
'unsupported_virtual_goods',
|
|
4371
3931
|
'non_matching_currencies',
|
|
4372
3932
|
'unsupported_order_edit',
|
|
3933
|
+
'order_missing',
|
|
4373
3934
|
]),
|
|
4374
3935
|
|
|
4375
3936
|
'io.flow.channel.internal.v0.enums.channel_order_acceptance_status': (): io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus => faker.helpers.arrayElement(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']),
|
|
@@ -5099,261 +4660,6 @@ const factories = {
|
|
|
5099
4660
|
return f();
|
|
5100
4661
|
},
|
|
5101
4662
|
|
|
5102
|
-
'io.flow.consumer.invoice.v0.enums.b2b_invoice_type': (): io.flow.consumer.invoice.v0.enums.B2BInvoiceType => faker.helpers.arrayElement(['self_bill_invoice', 'invoice']),
|
|
5103
|
-
'io.flow.consumer.invoice.v0.enums.consumer_invoice_customer_type': (): io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType => faker.helpers.arrayElement(['business_eu_verified', 'business_non_verified', 'individual']),
|
|
5104
|
-
'io.flow.consumer.invoice.v0.enums.consumer_invoice_document_type': (): io.flow.consumer.invoice.v0.enums.ConsumerInvoiceDocumentType => faker.helpers.arrayElement(['pdf']),
|
|
5105
|
-
'io.flow.consumer.invoice.v0.enums.consumer_invoice_status': (): io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus => faker.helpers.arrayElement(['pending', 'available', 'invalid']),
|
|
5106
|
-
|
|
5107
|
-
'io.flow.consumer.invoice.v0.models.b2b_credit_memo': (): io.flow.consumer.invoice.v0.models.B2BCreditMemo => ({
|
|
5108
|
-
id: factories.string(),
|
|
5109
|
-
number: factories.string(),
|
|
5110
|
-
buyer: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
|
|
5111
|
-
seller: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
|
|
5112
|
-
status: factories['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'](),
|
|
5113
|
-
date: factories.date_time_iso_8601(),
|
|
5114
|
-
key: factories.string(),
|
|
5115
|
-
invoice: factories['io.flow.consumer.invoice.v0.models.b2b_invoice_reference'](),
|
|
5116
|
-
|
|
5117
|
-
lines: arrayOf(
|
|
5118
|
-
() => factories['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'](),
|
|
5119
|
-
),
|
|
5120
|
-
|
|
5121
|
-
documents: arrayOf(
|
|
5122
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_document'](),
|
|
5123
|
-
),
|
|
5124
|
-
|
|
5125
|
-
attributes: objectOf(() => factories.string()),
|
|
5126
|
-
b2b_invoice_type: factories['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'](),
|
|
5127
|
-
}),
|
|
5128
|
-
|
|
5129
|
-
'io.flow.consumer.invoice.v0.models.b2b_invoice': (): io.flow.consumer.invoice.v0.models.B2BInvoice => ({
|
|
5130
|
-
id: factories.string(),
|
|
5131
|
-
number: factories.string(),
|
|
5132
|
-
buyer: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
|
|
5133
|
-
seller: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
|
|
5134
|
-
status: factories['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'](),
|
|
5135
|
-
date: factories.date_time_iso_8601(),
|
|
5136
|
-
key: factories.string(),
|
|
5137
|
-
order: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'](),
|
|
5138
|
-
economic_title_location: factories['io.flow.merchant.of.record.v0.enums.economic_title_location'](),
|
|
5139
|
-
center: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'](),
|
|
5140
|
-
destination: factories['io.flow.experience.v0.models.order_address'](),
|
|
5141
|
-
tax: factories['io.flow.common.v0.models.money'](),
|
|
5142
|
-
|
|
5143
|
-
lines: arrayOf(
|
|
5144
|
-
() => factories['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'](),
|
|
5145
|
-
),
|
|
5146
|
-
|
|
5147
|
-
documents: arrayOf(
|
|
5148
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_document'](),
|
|
5149
|
-
),
|
|
5150
|
-
|
|
5151
|
-
attributes: objectOf(() => factories.string()),
|
|
5152
|
-
estimated_delivery_date: factories.date_time_iso_8601(),
|
|
5153
|
-
b2b_invoice_type: factories['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'](),
|
|
5154
|
-
}),
|
|
5155
|
-
|
|
5156
|
-
'io.flow.consumer.invoice.v0.models.b2b_invoice_reference': (): io.flow.consumer.invoice.v0.models.B2BInvoiceReference => ({
|
|
5157
|
-
id: factories.string(),
|
|
5158
|
-
key: factories.string(),
|
|
5159
|
-
number: factories.string(),
|
|
5160
|
-
}),
|
|
5161
|
-
|
|
5162
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice': (): io.flow.consumer.invoice.v0.models.ConsumerInvoice => ({
|
|
5163
|
-
id: factories.string(),
|
|
5164
|
-
number: factories.string(),
|
|
5165
|
-
status: factories['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'](),
|
|
5166
|
-
date: factories.date_time_iso_8601(),
|
|
5167
|
-
key: factories.string(),
|
|
5168
|
-
order: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'](),
|
|
5169
|
-
entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
|
|
5170
|
-
|
|
5171
|
-
payments: arrayOf(
|
|
5172
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_payment'](),
|
|
5173
|
-
),
|
|
5174
|
-
|
|
5175
|
-
center: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'](),
|
|
5176
|
-
destination: factories['io.flow.experience.v0.models.order_address'](),
|
|
5177
|
-
billing_address: factories['io.flow.common.v0.models.billing_address'](),
|
|
5178
|
-
|
|
5179
|
-
lines: arrayOf(
|
|
5180
|
-
() => factories['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'](),
|
|
5181
|
-
),
|
|
5182
|
-
|
|
5183
|
-
documents: arrayOf(
|
|
5184
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_document'](),
|
|
5185
|
-
),
|
|
5186
|
-
|
|
5187
|
-
attributes: objectOf(() => factories.string()),
|
|
5188
|
-
tax_registration: factories['io.flow.harmonization.v0.models.tax_registration'](),
|
|
5189
|
-
customer_type: factories['io.flow.consumer.invoice.v0.enums.consumer_invoice_customer_type'](),
|
|
5190
|
-
estimated_delivery_date: factories.date_time_iso_8601(),
|
|
5191
|
-
}),
|
|
5192
|
-
|
|
5193
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference => ({
|
|
5194
|
-
id: factories.string(),
|
|
5195
|
-
key: factories.string(),
|
|
5196
|
-
name: factories.string(),
|
|
5197
|
-
address: factories['io.flow.common.v0.models.address'](),
|
|
5198
|
-
}),
|
|
5199
|
-
|
|
5200
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_document': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument => ({
|
|
5201
|
-
type: factories['io.flow.consumer.invoice.v0.enums.consumer_invoice_document_type'](),
|
|
5202
|
-
language: factories.string(),
|
|
5203
|
-
url: factories.string(),
|
|
5204
|
-
}),
|
|
5205
|
-
|
|
5206
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_form': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceForm => ({
|
|
5207
|
-
order_number: factories.string(),
|
|
5208
|
-
attributes: objectOf(() => factories.string()),
|
|
5209
|
-
}),
|
|
5210
|
-
|
|
5211
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_form_by_order': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceFormByOrder => ({
|
|
5212
|
-
attributes: objectOf(() => factories.string()),
|
|
5213
|
-
}),
|
|
5214
|
-
|
|
5215
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_levy': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy => ({
|
|
5216
|
-
rate: factories.decimal(),
|
|
5217
|
-
value: factories['io.flow.common.v0.models.price'](),
|
|
5218
|
-
}),
|
|
5219
|
-
|
|
5220
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm => ({
|
|
5221
|
-
rate: factories.decimal(),
|
|
5222
|
-
amount: factories.decimal(),
|
|
5223
|
-
}),
|
|
5224
|
-
|
|
5225
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount => ({
|
|
5226
|
-
discriminator: 'discount',
|
|
5227
|
-
price: factories['io.flow.common.v0.models.price'](),
|
|
5228
|
-
}),
|
|
5229
|
-
|
|
5230
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount_form': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscountForm => ({
|
|
5231
|
-
discriminator: 'discount',
|
|
5232
|
-
price: factories.decimal(),
|
|
5233
|
-
}),
|
|
5234
|
-
|
|
5235
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_line_item': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem => ({
|
|
5236
|
-
discriminator: 'item',
|
|
5237
|
-
item: factories['io.flow.common.v0.models.item_reference'](),
|
|
5238
|
-
description: factories.string(),
|
|
5239
|
-
quantity: factories.long(),
|
|
5240
|
-
unit_price: factories['io.flow.common.v0.models.price'](),
|
|
5241
|
-
unit_discount: factories['io.flow.common.v0.models.price'](),
|
|
5242
|
-
unit_tax: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'](),
|
|
5243
|
-
unit_duty: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'](),
|
|
5244
|
-
}),
|
|
5245
|
-
|
|
5246
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_line_item_form': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm => ({
|
|
5247
|
-
discriminator: 'item',
|
|
5248
|
-
item_number: factories.string(),
|
|
5249
|
-
quantity: factories.long(),
|
|
5250
|
-
unit_price: factories.decimal(),
|
|
5251
|
-
unit_discount: factories.decimal(),
|
|
5252
|
-
unit_tax: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'](),
|
|
5253
|
-
unit_duty: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'](),
|
|
5254
|
-
}),
|
|
5255
|
-
|
|
5256
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping => ({
|
|
5257
|
-
discriminator: 'shipping',
|
|
5258
|
-
price: factories['io.flow.common.v0.models.price'](),
|
|
5259
|
-
discount: factories['io.flow.common.v0.models.price'](),
|
|
5260
|
-
tax: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'](),
|
|
5261
|
-
duty: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'](),
|
|
5262
|
-
}),
|
|
5263
|
-
|
|
5264
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping_form': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingForm => ({
|
|
5265
|
-
discriminator: 'shipping',
|
|
5266
|
-
price: factories.decimal(),
|
|
5267
|
-
discount: factories.decimal(),
|
|
5268
|
-
tax: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'](),
|
|
5269
|
-
duty: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'](),
|
|
5270
|
-
}),
|
|
5271
|
-
|
|
5272
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary => ({
|
|
5273
|
-
id: factories.string(),
|
|
5274
|
-
number: factories.string(),
|
|
5275
|
-
submitted_at: factories.date_time_iso_8601(),
|
|
5276
|
-
}),
|
|
5277
|
-
|
|
5278
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_payment': (): io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment => ({
|
|
5279
|
-
date: factories.date_time_iso_8601(),
|
|
5280
|
-
description: factories.string(),
|
|
5281
|
-
value: factories['io.flow.common.v0.models.price'](),
|
|
5282
|
-
billing_address: factories['io.flow.common.v0.models.billing_address'](),
|
|
5283
|
-
}),
|
|
5284
|
-
|
|
5285
|
-
'io.flow.consumer.invoice.v0.models.consumer_invoice_reference': (): io.flow.consumer.invoice.v0.models.ConsumerInvoiceReference => ({
|
|
5286
|
-
id: factories.string(),
|
|
5287
|
-
key: factories.string(),
|
|
5288
|
-
number: factories.string(),
|
|
5289
|
-
}),
|
|
5290
|
-
|
|
5291
|
-
'io.flow.consumer.invoice.v0.models.credit_memo': (): io.flow.consumer.invoice.v0.models.CreditMemo => ({
|
|
5292
|
-
id: factories.string(),
|
|
5293
|
-
number: factories.string(),
|
|
5294
|
-
status: factories['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'](),
|
|
5295
|
-
date: factories.date_time_iso_8601(),
|
|
5296
|
-
key: factories.string(),
|
|
5297
|
-
invoice: factories['io.flow.consumer.invoice.v0.models.consumer_invoice_reference'](),
|
|
5298
|
-
entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
|
|
5299
|
-
|
|
5300
|
-
payments: arrayOf(
|
|
5301
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_payment'](),
|
|
5302
|
-
),
|
|
5303
|
-
|
|
5304
|
-
lines: arrayOf(
|
|
5305
|
-
() => factories['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'](),
|
|
5306
|
-
),
|
|
5307
|
-
|
|
5308
|
-
documents: arrayOf(
|
|
5309
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_document'](),
|
|
5310
|
-
),
|
|
5311
|
-
|
|
5312
|
-
attributes: objectOf(() => factories.string()),
|
|
5313
|
-
tax_registration: factories['io.flow.harmonization.v0.models.tax_registration'](),
|
|
5314
|
-
}),
|
|
5315
|
-
|
|
5316
|
-
'io.flow.consumer.invoice.v0.models.credit_memo_form': (): io.flow.consumer.invoice.v0.models.CreditMemoForm => ({
|
|
5317
|
-
refund_id: factories.string(),
|
|
5318
|
-
refund_key: factories.string(),
|
|
5319
|
-
refund_identifier: factories.string(),
|
|
5320
|
-
|
|
5321
|
-
lines: arrayOf(
|
|
5322
|
-
() => factories['io.flow.consumer.invoice.v0.unions.consumer_invoice_line_form'](),
|
|
5323
|
-
),
|
|
5324
|
-
|
|
5325
|
-
attributes: objectOf(() => factories.string()),
|
|
5326
|
-
}),
|
|
5327
|
-
|
|
5328
|
-
'io.flow.consumer.invoice.v0.models.invoice_export': (): io.flow.consumer.invoice.v0.models.InvoiceExport => ({
|
|
5329
|
-
id: factories.string(),
|
|
5330
|
-
}),
|
|
5331
|
-
|
|
5332
|
-
'io.flow.consumer.invoice.v0.models.invoice_export_form': (): io.flow.consumer.invoice.v0.models.InvoiceExportForm => ({
|
|
5333
|
-
date_from: factories.date_iso_8601(),
|
|
5334
|
-
date_to: factories.date_iso_8601(),
|
|
5335
|
-
}),
|
|
5336
|
-
|
|
5337
|
-
'io.flow.consumer.invoice.v0.unions.consumer_invoice_line': (): io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine => {
|
|
5338
|
-
const f = faker.helpers.arrayElement([
|
|
5339
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item'](),
|
|
5340
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'](),
|
|
5341
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping'](),
|
|
5342
|
-
]);
|
|
5343
|
-
|
|
5344
|
-
return f();
|
|
5345
|
-
},
|
|
5346
|
-
|
|
5347
|
-
'io.flow.consumer.invoice.v0.unions.consumer_invoice_line_form': (): io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm => {
|
|
5348
|
-
const f = faker.helpers.arrayElement([
|
|
5349
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item_form'](),
|
|
5350
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount_form'](),
|
|
5351
|
-
() => factories['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping_form'](),
|
|
5352
|
-
]);
|
|
5353
|
-
|
|
5354
|
-
return f();
|
|
5355
|
-
},
|
|
5356
|
-
|
|
5357
4663
|
'io.flow.crypto.v0.enums.error_type': (): io.flow.crypto.v0.enums.ErrorType => faker.helpers.arrayElement(['authentication_error', 'invalid_request_error', 'rate_limit_error']),
|
|
5358
4664
|
'io.flow.crypto.v0.enums.payment_status': (): io.flow.crypto.v0.enums.PaymentStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'cancelled']),
|
|
5359
4665
|
'io.flow.crypto.v0.enums.reason_type': (): io.flow.crypto.v0.enums.ReasonType => faker.helpers.arrayElement(['duplicate', 'fraudulent', 'requested_by_customer']),
|
|
@@ -6839,6 +6145,228 @@ const factories = {
|
|
|
6839
6145
|
return f();
|
|
6840
6146
|
},
|
|
6841
6147
|
|
|
6148
|
+
'io.flow.experiment.internal.v0.enums.experiment_discriminator_key': (): io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey => faker.helpers.arrayElement(['experience', 'feature']),
|
|
6149
|
+
'io.flow.experiment.internal.v0.enums.scope': (): io.flow.experiment.internal.v0.enums.Scope => faker.helpers.arrayElement(['organization', 'global']),
|
|
6150
|
+
'io.flow.experiment.internal.v0.enums.significance_action': (): io.flow.experiment.internal.v0.enums.SignificanceAction => faker.helpers.arrayElement(['end_and_implement_winner', 'end_and_revert', 'do_nothing']),
|
|
6151
|
+
'io.flow.experiment.internal.v0.enums.status': (): io.flow.experiment.internal.v0.enums.Status => faker.helpers.arrayElement(['draft', 'scheduled', 'live', 'ended', 'archived']),
|
|
6152
|
+
'io.flow.experiment.internal.v0.enums.timeseries_type': (): io.flow.experiment.internal.v0.enums.TimeseriesType => faker.helpers.arrayElement(['daily', 'weekly', 'monthly', 'yearly']),
|
|
6153
|
+
|
|
6154
|
+
'io.flow.experiment.internal.v0.models.daily_experiment_results': (): io.flow.experiment.internal.v0.models.DailyExperimentResults => ({
|
|
6155
|
+
id: factories.string(),
|
|
6156
|
+
day: factories.date_iso_8601(),
|
|
6157
|
+
experiment_key: factories.string(),
|
|
6158
|
+
experiment_variant_key: factories.string(),
|
|
6159
|
+
visitor_count: factories.long(),
|
|
6160
|
+
visitors_with_transactions_count: factories.long(),
|
|
6161
|
+
conversion_rate: factories.decimal(),
|
|
6162
|
+
lower_bound: factories.decimal(),
|
|
6163
|
+
upper_bound: factories.decimal(),
|
|
6164
|
+
probability_of_being_best: factories.decimal(),
|
|
6165
|
+
currency: factories.string(),
|
|
6166
|
+
average_order_value: factories.double(),
|
|
6167
|
+
revenue_generated: factories.double(),
|
|
6168
|
+
total_order_count: factories.long(),
|
|
6169
|
+
conversion_rate_uplift: factories.decimal(),
|
|
6170
|
+
average_order_value_uplift: factories.decimal(),
|
|
6171
|
+
revenue_generated_uplift: factories.decimal(),
|
|
6172
|
+
}),
|
|
6173
|
+
|
|
6174
|
+
'io.flow.experiment.internal.v0.models.experience_experiment': (): io.flow.experiment.internal.v0.models.ExperienceExperiment => ({
|
|
6175
|
+
discriminator: 'experience',
|
|
6176
|
+
id: factories.string(),
|
|
6177
|
+
key: factories.string(),
|
|
6178
|
+
name: factories.string(),
|
|
6179
|
+
description: factories.string(),
|
|
6180
|
+
status: factories['io.flow.experiment.internal.v0.enums.status'](),
|
|
6181
|
+
emails: arrayOf(() => factories.string()),
|
|
6182
|
+
started_at: factories.date_time_iso_8601(),
|
|
6183
|
+
ended_at: factories.date_time_iso_8601(),
|
|
6184
|
+
|
|
6185
|
+
variants: arrayOf(
|
|
6186
|
+
() => factories['io.flow.experiment.internal.v0.models.experience_variant'](),
|
|
6187
|
+
),
|
|
6188
|
+
|
|
6189
|
+
transitions: arrayOf(() => factories['io.flow.experiment.internal.v0.enums.status']()),
|
|
6190
|
+
significance_action: factories['io.flow.experiment.internal.v0.enums.significance_action'](),
|
|
6191
|
+
}),
|
|
6192
|
+
|
|
6193
|
+
'io.flow.experiment.internal.v0.models.experience_variant': (): io.flow.experiment.internal.v0.models.ExperienceVariant => ({
|
|
6194
|
+
discriminator: 'experience_variant',
|
|
6195
|
+
experience: factories['io.flow.experiment.internal.v0.models.experience_variant_summary'](),
|
|
6196
|
+
traffic_percentage: factories.integer(),
|
|
6197
|
+
experiment_results: factories['io.flow.experiment.internal.v0.models.experiment_results'](),
|
|
6198
|
+
}),
|
|
6199
|
+
|
|
6200
|
+
'io.flow.experiment.internal.v0.models.experience_variant_form': (): io.flow.experiment.internal.v0.models.ExperienceVariantForm => ({
|
|
6201
|
+
discriminator: 'experience',
|
|
6202
|
+
key: factories.string(),
|
|
6203
|
+
traffic_percentage: factories.integer(),
|
|
6204
|
+
}),
|
|
6205
|
+
|
|
6206
|
+
'io.flow.experiment.internal.v0.models.experience_variant_summary': (): io.flow.experiment.internal.v0.models.ExperienceVariantSummary => ({
|
|
6207
|
+
key: factories.string(),
|
|
6208
|
+
name: factories.string(),
|
|
6209
|
+
}),
|
|
6210
|
+
|
|
6211
|
+
'io.flow.experiment.internal.v0.models.experiment_form': (): io.flow.experiment.internal.v0.models.ExperimentForm => ({
|
|
6212
|
+
name: factories.string(),
|
|
6213
|
+
description: factories.string(),
|
|
6214
|
+
emails: arrayOf(() => factories.string()),
|
|
6215
|
+
variants: arrayOf(() => factories['io.flow.experiment.internal.v0.unions.variant_form']()),
|
|
6216
|
+
significance_action: factories['io.flow.experiment.internal.v0.enums.significance_action'](),
|
|
6217
|
+
session_query: factories.string(),
|
|
6218
|
+
}),
|
|
6219
|
+
|
|
6220
|
+
'io.flow.experiment.internal.v0.models.experiment_form_default': (): io.flow.experiment.internal.v0.models.ExperimentFormDefault => ({
|
|
6221
|
+
discriminator: factories['io.flow.experiment.internal.v0.models.experiment_form_default_discriminator'](),
|
|
6222
|
+
|
|
6223
|
+
variants: arrayOf(
|
|
6224
|
+
() => factories['io.flow.experiment.internal.v0.models.experiment_form_default_variant'](),
|
|
6225
|
+
),
|
|
6226
|
+
}),
|
|
6227
|
+
|
|
6228
|
+
'io.flow.experiment.internal.v0.models.experiment_form_default_discriminator': (): io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator => ({
|
|
6229
|
+
key: factories['io.flow.experiment.internal.v0.enums.experiment_discriminator_key'](),
|
|
6230
|
+
|
|
6231
|
+
values: arrayOf(
|
|
6232
|
+
() => factories['io.flow.experiment.internal.v0.models.experiment_form_default_discriminator_value'](),
|
|
6233
|
+
),
|
|
6234
|
+
}),
|
|
6235
|
+
|
|
6236
|
+
'io.flow.experiment.internal.v0.models.experiment_form_default_discriminator_value': (): io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue => ({
|
|
6237
|
+
key: factories.string(),
|
|
6238
|
+
name: factories.string(),
|
|
6239
|
+
scope: factories['io.flow.experiment.internal.v0.enums.scope'](),
|
|
6240
|
+
}),
|
|
6241
|
+
|
|
6242
|
+
'io.flow.experiment.internal.v0.models.experiment_form_default_variant': (): io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant => ({
|
|
6243
|
+
key: factories.string(),
|
|
6244
|
+
name: factories.string(),
|
|
6245
|
+
traffic_percentage: factories.integer(),
|
|
6246
|
+
}),
|
|
6247
|
+
|
|
6248
|
+
'io.flow.experiment.internal.v0.models.experiment_milestone': (): io.flow.experiment.internal.v0.models.ExperimentMilestone => ({
|
|
6249
|
+
id: factories.string(),
|
|
6250
|
+
experiment: factories['io.flow.experiment.internal.v0.models.experiment_reference'](),
|
|
6251
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6252
|
+
description: factories.string(),
|
|
6253
|
+
}),
|
|
6254
|
+
|
|
6255
|
+
'io.flow.experiment.internal.v0.models.experiment_milestone_form': (): io.flow.experiment.internal.v0.models.ExperimentMilestoneForm => ({
|
|
6256
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6257
|
+
description: factories.string(),
|
|
6258
|
+
}),
|
|
6259
|
+
|
|
6260
|
+
'io.flow.experiment.internal.v0.models.experiment_reference': (): io.flow.experiment.internal.v0.models.ExperimentReference => ({
|
|
6261
|
+
key: factories.string(),
|
|
6262
|
+
}),
|
|
6263
|
+
|
|
6264
|
+
'io.flow.experiment.internal.v0.models.experiment_results': (): io.flow.experiment.internal.v0.models.ExperimentResults => ({
|
|
6265
|
+
id: factories.string(),
|
|
6266
|
+
experiment_key: factories.string(),
|
|
6267
|
+
experiment_variant_key: factories.string(),
|
|
6268
|
+
visitor_count: factories.long(),
|
|
6269
|
+
visitors_with_transactions_count: factories.long(),
|
|
6270
|
+
conversion_rate: factories.decimal(),
|
|
6271
|
+
lower_bound: factories.decimal(),
|
|
6272
|
+
upper_bound: factories.decimal(),
|
|
6273
|
+
probability_of_being_best: factories.decimal(),
|
|
6274
|
+
currency: factories.string(),
|
|
6275
|
+
average_order_value: factories.double(),
|
|
6276
|
+
revenue_generated: factories.double(),
|
|
6277
|
+
total_order_count: factories.long(),
|
|
6278
|
+
conversion_rate_uplift: factories.decimal(),
|
|
6279
|
+
average_order_value_uplift: factories.decimal(),
|
|
6280
|
+
revenue_generated_uplift: factories.decimal(),
|
|
6281
|
+
}),
|
|
6282
|
+
|
|
6283
|
+
'io.flow.experiment.internal.v0.models.experiment_results_with_timestamp': (): io.flow.experiment.internal.v0.models.ExperimentResultsWithTimestamp => ({
|
|
6284
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6285
|
+
|
|
6286
|
+
results: arrayOf(
|
|
6287
|
+
() => factories['io.flow.experiment.internal.v0.models.experiment_results'](),
|
|
6288
|
+
),
|
|
6289
|
+
}),
|
|
6290
|
+
|
|
6291
|
+
'io.flow.experiment.internal.v0.models.experiment_session_query_form': (): io.flow.experiment.internal.v0.models.ExperimentSessionQueryForm => ({
|
|
6292
|
+
session_query: factories.string(),
|
|
6293
|
+
}),
|
|
6294
|
+
|
|
6295
|
+
'io.flow.experiment.internal.v0.models.experiment_version': (): io.flow.experiment.internal.v0.models.ExperimentVersion => ({
|
|
6296
|
+
id: factories.string(),
|
|
6297
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6298
|
+
type: factories['io.flow.common.v0.enums.change_type'](),
|
|
6299
|
+
experiment: factories['io.flow.experiment.internal.v0.unions.experiment'](),
|
|
6300
|
+
}),
|
|
6301
|
+
|
|
6302
|
+
'io.flow.experiment.internal.v0.models.feature_experiment': (): io.flow.experiment.internal.v0.models.FeatureExperiment => ({
|
|
6303
|
+
discriminator: 'feature',
|
|
6304
|
+
id: factories.string(),
|
|
6305
|
+
key: factories.string(),
|
|
6306
|
+
name: factories.string(),
|
|
6307
|
+
description: factories.string(),
|
|
6308
|
+
status: factories['io.flow.experiment.internal.v0.enums.status'](),
|
|
6309
|
+
emails: arrayOf(() => factories.string()),
|
|
6310
|
+
scope: factories['io.flow.experiment.internal.v0.enums.scope'](),
|
|
6311
|
+
started_at: factories.date_time_iso_8601(),
|
|
6312
|
+
ended_at: factories.date_time_iso_8601(),
|
|
6313
|
+
variants: arrayOf(() => factories['io.flow.experiment.internal.v0.models.feature_variant']()),
|
|
6314
|
+
transitions: arrayOf(() => factories['io.flow.experiment.internal.v0.enums.status']()),
|
|
6315
|
+
significance_action: factories['io.flow.experiment.internal.v0.enums.significance_action'](),
|
|
6316
|
+
session_query: factories.string(),
|
|
6317
|
+
}),
|
|
6318
|
+
|
|
6319
|
+
'io.flow.experiment.internal.v0.models.feature_value_reference': (): io.flow.experiment.internal.v0.models.FeatureValueReference => ({
|
|
6320
|
+
feature_key: factories.string(),
|
|
6321
|
+
value: factories.string(),
|
|
6322
|
+
}),
|
|
6323
|
+
|
|
6324
|
+
'io.flow.experiment.internal.v0.models.feature_variant': (): io.flow.experiment.internal.v0.models.FeatureVariant => ({
|
|
6325
|
+
discriminator: 'feature_variant',
|
|
6326
|
+
value: factories['io.flow.experiment.internal.v0.models.feature_variant_summary'](),
|
|
6327
|
+
traffic_percentage: factories.integer(),
|
|
6328
|
+
experiment_results: factories['io.flow.experiment.internal.v0.models.experiment_results'](),
|
|
6329
|
+
}),
|
|
6330
|
+
|
|
6331
|
+
'io.flow.experiment.internal.v0.models.feature_variant_form': (): io.flow.experiment.internal.v0.models.FeatureVariantForm => ({
|
|
6332
|
+
discriminator: 'feature',
|
|
6333
|
+
key: factories.string(),
|
|
6334
|
+
traffic_percentage: factories.integer(),
|
|
6335
|
+
}),
|
|
6336
|
+
|
|
6337
|
+
'io.flow.experiment.internal.v0.models.feature_variant_summary': (): io.flow.experiment.internal.v0.models.FeatureVariantSummary => ({
|
|
6338
|
+
key: factories.string(),
|
|
6339
|
+
feature_value: factories['io.flow.experiment.internal.v0.models.feature_value_reference'](),
|
|
6340
|
+
name: factories.string(),
|
|
6341
|
+
}),
|
|
6342
|
+
|
|
6343
|
+
'io.flow.experiment.internal.v0.unions.experiment': (): io.flow.experiment.internal.v0.unions.Experiment => {
|
|
6344
|
+
const f = faker.helpers.arrayElement([
|
|
6345
|
+
() => factories['io.flow.experiment.internal.v0.models.experience_experiment'](),
|
|
6346
|
+
() => factories['io.flow.experiment.internal.v0.models.feature_experiment'](),
|
|
6347
|
+
]);
|
|
6348
|
+
|
|
6349
|
+
return f();
|
|
6350
|
+
},
|
|
6351
|
+
|
|
6352
|
+
'io.flow.experiment.internal.v0.unions.variant': (): io.flow.experiment.internal.v0.unions.Variant => {
|
|
6353
|
+
const f = faker.helpers.arrayElement([
|
|
6354
|
+
() => factories['io.flow.experiment.internal.v0.models.experience_variant'](),
|
|
6355
|
+
() => factories['io.flow.experiment.internal.v0.models.feature_variant'](),
|
|
6356
|
+
]);
|
|
6357
|
+
|
|
6358
|
+
return f();
|
|
6359
|
+
},
|
|
6360
|
+
|
|
6361
|
+
'io.flow.experiment.internal.v0.unions.variant_form': (): io.flow.experiment.internal.v0.unions.VariantForm => {
|
|
6362
|
+
const f = faker.helpers.arrayElement([
|
|
6363
|
+
() => factories['io.flow.experiment.internal.v0.models.experience_variant_form'](),
|
|
6364
|
+
() => factories['io.flow.experiment.internal.v0.models.feature_variant_form'](),
|
|
6365
|
+
]);
|
|
6366
|
+
|
|
6367
|
+
return f();
|
|
6368
|
+
},
|
|
6369
|
+
|
|
6842
6370
|
'io.flow.export.v0.enums.export_status': (): io.flow.RESERVED_WORD_export.v0.enums.ExportStatus => faker.helpers.arrayElement(['created', 'processing', 'completed', 'failed']),
|
|
6843
6371
|
'io.flow.export.v0.enums.item_identifier': (): io.flow.RESERVED_WORD_export.v0.enums.ItemIdentifier => faker.helpers.arrayElement(['item_number', 'sku']),
|
|
6844
6372
|
|
|
@@ -9427,7 +8955,7 @@ const factories = {
|
|
|
9427
8955
|
company_name: factories.string(),
|
|
9428
8956
|
}),
|
|
9429
8957
|
|
|
9430
|
-
'io.flow.internal.v0.enums.account_payment_hold_reason': (): io.flow.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'invalid_bank_account']),
|
|
8958
|
+
'io.flow.internal.v0.enums.account_payment_hold_reason': (): io.flow.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'frozen', 'invalid_bank_account']),
|
|
9431
8959
|
'io.flow.internal.v0.enums.account_setting_liabilities_method': (): io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod => faker.helpers.arrayElement(['withholding', 'transaction']),
|
|
9432
8960
|
'io.flow.internal.v0.enums.account_type': (): io.flow.internal.v0.enums.AccountType => faker.helpers.arrayElement(['channel', 'organization']),
|
|
9433
8961
|
'io.flow.internal.v0.enums.address_configuration_setting_province_code': (): io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode => faker.helpers.arrayElement(['iso_3166_2', 'name']),
|
|
@@ -9581,10 +9109,12 @@ const factories = {
|
|
|
9581
9109
|
'negative_balance_number_accounts',
|
|
9582
9110
|
'negative_balance_number_accounts_with_order_in_past_30_days',
|
|
9583
9111
|
'negative_balance_number_accounts_without_order_in_past_30_days',
|
|
9112
|
+
'negative_balance_number_active_accounts_with_balance_over_1000',
|
|
9584
9113
|
'negative_balance_total',
|
|
9585
9114
|
'negative_balance_total_with_order_in_past_30_days',
|
|
9586
9115
|
'negative_balance_total_without_order_in_past_30_days',
|
|
9587
9116
|
'negative_balance_single_account_max',
|
|
9117
|
+
'negative_balance_single_active_account_max',
|
|
9588
9118
|
'negative_balance_fee_total',
|
|
9589
9119
|
'accounts_with_payment_holds_count',
|
|
9590
9120
|
'accounts_with_payment_holds_pending_payment_promise_count',
|
|
@@ -9698,6 +9228,7 @@ const factories = {
|
|
|
9698
9228
|
'unsupported_virtual_goods',
|
|
9699
9229
|
'non_matching_currencies',
|
|
9700
9230
|
'unsupported_order_edit',
|
|
9231
|
+
'order_missing',
|
|
9701
9232
|
]),
|
|
9702
9233
|
|
|
9703
9234
|
'io.flow.internal.v0.enums.channel_order_acceptance_status': (): io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus => faker.helpers.arrayElement(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']),
|
|
@@ -9753,6 +9284,7 @@ const factories = {
|
|
|
9753
9284
|
'io.flow.internal.v0.enums.classification_type': (): io.flow.internal.v0.enums.ClassificationType => faker.helpers.arrayElement(['None', 'Manual', 'ML']),
|
|
9754
9285
|
'io.flow.internal.v0.enums.clothing_age_classification': (): io.flow.internal.v0.enums.ClothingAgeClassification => faker.helpers.arrayElement(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']),
|
|
9755
9286
|
'io.flow.internal.v0.enums.colm_item_type': (): io.flow.internal.v0.enums.ColmItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
9287
|
+
'io.flow.internal.v0.enums.company': (): io.flow.internal.v0.enums.Company => faker.helpers.arrayElement(['globale', 'flow']),
|
|
9756
9288
|
'io.flow.internal.v0.enums.compliance_type': (): io.flow.internal.v0.enums.ComplianceType => faker.helpers.arrayElement(['weee']),
|
|
9757
9289
|
'io.flow.internal.v0.enums.content_element_type': (): io.flow.internal.v0.enums.ContentElementType => faker.helpers.arrayElement(['markdown', 'html', 'plain_text', 'href']),
|
|
9758
9290
|
'io.flow.internal.v0.enums.content_status': (): io.flow.internal.v0.enums.ContentStatus => faker.helpers.arrayElement(['draft', 'live', 'archived']),
|
|
@@ -9861,6 +9393,8 @@ const factories = {
|
|
|
9861
9393
|
'sales_record_deleted',
|
|
9862
9394
|
'revenue_record_upserted',
|
|
9863
9395
|
'revenue_record_deleted',
|
|
9396
|
+
'other_record_upserted',
|
|
9397
|
+
'other_record_deleted',
|
|
9864
9398
|
'calculator_organization_settings_upserted',
|
|
9865
9399
|
'calculator_organization_settings_deleted',
|
|
9866
9400
|
'carrier_account_upserted_v2',
|
|
@@ -9923,14 +9457,6 @@ const factories = {
|
|
|
9923
9457
|
'experience_import_request',
|
|
9924
9458
|
'submitted_order_upserted',
|
|
9925
9459
|
'levy_rate_summary_upserted',
|
|
9926
|
-
'experiment_upserted',
|
|
9927
|
-
'experiment_deleted',
|
|
9928
|
-
'experiment_results_upserted',
|
|
9929
|
-
'experiment_results_deleted',
|
|
9930
|
-
'daily_experiment_results_upserted',
|
|
9931
|
-
'daily_experiment_results_deleted',
|
|
9932
|
-
'experiment_milestone_upserted',
|
|
9933
|
-
'experiment_milestone_deleted',
|
|
9934
9460
|
'export_completed',
|
|
9935
9461
|
'export_failed',
|
|
9936
9462
|
'feature_upserted',
|
|
@@ -9965,6 +9491,12 @@ const factories = {
|
|
|
9965
9491
|
'fraud_pending_review_deleted',
|
|
9966
9492
|
'fraud_review_decision_upserted',
|
|
9967
9493
|
'fraud_review_decision_deleted',
|
|
9494
|
+
'fraud_review_authorization_upserted',
|
|
9495
|
+
'fraud_review_authorization_deleted',
|
|
9496
|
+
'fraud_pending_review_authorization_upserted',
|
|
9497
|
+
'fraud_pending_review_authorization_deleted',
|
|
9498
|
+
'fraud_review_authorization_decision_upserted',
|
|
9499
|
+
'fraud_review_authorization_decision_deleted',
|
|
9968
9500
|
'fraud_provider_configuration_upserted',
|
|
9969
9501
|
'fraud_provider_configuration_deleted',
|
|
9970
9502
|
'manual_review_rule_upserted',
|
|
@@ -10042,6 +9574,8 @@ const factories = {
|
|
|
10042
9574
|
'organization_deactivation_deleted',
|
|
10043
9575
|
'merchant_guid_assignment_upserted',
|
|
10044
9576
|
'merchant_guid_assignment_deleted',
|
|
9577
|
+
'organization_metadata_upserted',
|
|
9578
|
+
'organization_metadata_deleted',
|
|
10045
9579
|
'partner_organization_settings_upserted',
|
|
10046
9580
|
'partner_organization_settings_deleted',
|
|
10047
9581
|
'unassigned_merchant_guid_upserted',
|
|
@@ -10117,6 +9651,8 @@ const factories = {
|
|
|
10117
9651
|
'channel_order_summary_deleted',
|
|
10118
9652
|
'channel_organization_identifier_upserted',
|
|
10119
9653
|
'channel_organization_identifier_deleted',
|
|
9654
|
+
'order_tax_and_duty_inclusivity_setting_upserted',
|
|
9655
|
+
'order_tax_and_duty_inclusivity_setting_deleted',
|
|
10120
9656
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
10121
9657
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
10122
9658
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -10135,8 +9671,16 @@ const factories = {
|
|
|
10135
9671
|
'svitlana_item_deleted',
|
|
10136
9672
|
'colm_item_upserted',
|
|
10137
9673
|
'colm_item_deleted',
|
|
9674
|
+
'harinath_item_upserted',
|
|
9675
|
+
'harinath_item_deleted',
|
|
9676
|
+
'konstantin_item_upserted',
|
|
9677
|
+
'konstantin_item_deleted',
|
|
10138
9678
|
'matias_item_upserted',
|
|
10139
9679
|
'matias_item_deleted',
|
|
9680
|
+
'michaelyan_item_upserted',
|
|
9681
|
+
'michaelyan_item_deleted',
|
|
9682
|
+
'miljenko_item_upserted',
|
|
9683
|
+
'miljenko_item_deleted',
|
|
10140
9684
|
'shruti_demo_item_upserted',
|
|
10141
9685
|
'shruti_demo_item_deleted',
|
|
10142
9686
|
'tam_item_upserted',
|
|
@@ -10149,6 +9693,8 @@ const factories = {
|
|
|
10149
9693
|
'tracking_label_deleted',
|
|
10150
9694
|
'tracking_upserted',
|
|
10151
9695
|
'tracking_deleted',
|
|
9696
|
+
'tracking_assurance_analysis_upserted',
|
|
9697
|
+
'tracking_assurance_analysis_deleted',
|
|
10152
9698
|
'tracking_request_upserted',
|
|
10153
9699
|
'tracking_response_upserted',
|
|
10154
9700
|
'user_upserted_v2',
|
|
@@ -10158,7 +9704,6 @@ const factories = {
|
|
|
10158
9704
|
'io.flow.internal.v0.enums.experience_import_type': (): io.flow.internal.v0.enums.ExperienceImportType => faker.helpers.arrayElement(['experience_with_settings']),
|
|
10159
9705
|
'io.flow.internal.v0.enums.experience_order_action': (): io.flow.internal.v0.enums.ExperienceOrderAction => faker.helpers.arrayElement(['submit', 'refund_gift_cards']),
|
|
10160
9706
|
'io.flow.internal.v0.enums.experience_order_action_trigger': (): io.flow.internal.v0.enums.ExperienceOrderActionTrigger => faker.helpers.arrayElement(['zero_balance', 'unsubmitted_order']),
|
|
10161
|
-
'io.flow.internal.v0.enums.experiment_discriminator_key': (): io.flow.internal.v0.enums.ExperimentDiscriminatorKey => faker.helpers.arrayElement(['experience', 'feature']),
|
|
10162
9707
|
'io.flow.internal.v0.enums.export_content_type': (): io.flow.internal.v0.enums.ExportContentType => faker.helpers.arrayElement(['item', 'price_book_item']),
|
|
10163
9708
|
'io.flow.internal.v0.enums.feature_scope': (): io.flow.internal.v0.enums.FeatureScope => faker.helpers.arrayElement(['global', 'organization']),
|
|
10164
9709
|
'io.flow.internal.v0.enums.feature_status': (): io.flow.internal.v0.enums.FeatureStatus => faker.helpers.arrayElement(['draft', 'active', 'archived']),
|
|
@@ -10181,6 +9726,8 @@ const factories = {
|
|
|
10181
9726
|
|
|
10182
9727
|
'io.flow.internal.v0.enums.ftp_protocol': (): io.flow.internal.v0.enums.FtpProtocol => faker.helpers.arrayElement(['sftp', 'ftp']),
|
|
10183
9728
|
'io.flow.internal.v0.enums.google_analytics_plugin': (): io.flow.internal.v0.enums.GoogleAnalyticsPlugin => faker.helpers.arrayElement(['ec']),
|
|
9729
|
+
'io.flow.internal.v0.enums.harinath_item_type': (): io.flow.internal.v0.enums.HarinathItemType => faker.helpers.arrayElement(['digital', 'physical']),
|
|
9730
|
+
'io.flow.internal.v0.enums.harmonization_decision_source': (): io.flow.internal.v0.enums.HarmonizationDecisionSource => faker.helpers.arrayElement(['human', 'legacy_model', 'enterprise_model']),
|
|
10184
9731
|
'io.flow.internal.v0.enums.http_method': (): io.flow.internal.v0.enums.HttpMethod => faker.helpers.arrayElement(['get', 'post']),
|
|
10185
9732
|
'io.flow.internal.v0.enums.inventory_check_service': (): io.flow.internal.v0.enums.InventoryCheckService => faker.helpers.arrayElement(['sfcc', 'gymboree']),
|
|
10186
9733
|
'io.flow.internal.v0.enums.inventory_reservation': (): io.flow.internal.v0.enums.InventoryReservation => faker.helpers.arrayElement(['synchronous-on-submit']),
|
|
@@ -10205,6 +9752,7 @@ const factories = {
|
|
|
10205
9752
|
'io.flow.internal.v0.enums.item_quantity_action': (): io.flow.internal.v0.enums.ItemQuantityAction => faker.helpers.arrayElement(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']),
|
|
10206
9753
|
'io.flow.internal.v0.enums.item_type': (): io.flow.internal.v0.enums.ItemType => faker.helpers.arrayElement(['standard', 'multi_product']),
|
|
10207
9754
|
'io.flow.internal.v0.enums.keyword_type': (): io.flow.internal.v0.enums.KeywordType => faker.helpers.arrayElement(['positive', 'negative']),
|
|
9755
|
+
'io.flow.internal.v0.enums.konstantin_item_type': (): io.flow.internal.v0.enums.KonstantinItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
10208
9756
|
'io.flow.internal.v0.enums.label_billing_strategy': (): io.flow.internal.v0.enums.LabelBillingStrategy => faker.helpers.arrayElement(['quote', 'carrier']),
|
|
10209
9757
|
'io.flow.internal.v0.enums.label_cancellation_error_code': (): io.flow.internal.v0.enums.LabelCancellationErrorCode => faker.helpers.arrayElement(['already_used', 'carrier_unsupported']),
|
|
10210
9758
|
'io.flow.internal.v0.enums.label_creation_status': (): io.flow.internal.v0.enums.LabelCreationStatus => faker.helpers.arrayElement(['success', 'error', 'pending', 'cancelled']),
|
|
@@ -10225,6 +9773,13 @@ const factories = {
|
|
|
10225
9773
|
),
|
|
10226
9774
|
|
|
10227
9775
|
'io.flow.internal.v0.enums.logistics_capability': (): io.flow.internal.v0.enums.LogisticsCapability => faker.helpers.arrayElement(['logistics_address_correction']),
|
|
9776
|
+
|
|
9777
|
+
'io.flow.internal.v0.enums.logistics_payout_resolution_method': (): io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod => faker.helpers.arrayElement([
|
|
9778
|
+
'order_combined_shipment',
|
|
9779
|
+
'intransit_label_event',
|
|
9780
|
+
'shipping_notification',
|
|
9781
|
+
]),
|
|
9782
|
+
|
|
10228
9783
|
'io.flow.internal.v0.enums.manual_review_rule_status': (): io.flow.internal.v0.enums.ManualReviewRuleStatus => faker.helpers.arrayElement(['active', 'archived']),
|
|
10229
9784
|
|
|
10230
9785
|
'io.flow.internal.v0.enums.manual_transaction_category': (): io.flow.internal.v0.enums.ManualTransactionCategory => faker.helpers.arrayElement([
|
|
@@ -10292,6 +9847,8 @@ const factories = {
|
|
|
10292
9847
|
),
|
|
10293
9848
|
|
|
10294
9849
|
'io.flow.internal.v0.enums.matias_item_type': (): io.flow.internal.v0.enums.MatiasItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
9850
|
+
'io.flow.internal.v0.enums.michaelyan_item_type': (): io.flow.internal.v0.enums.MichaelyanItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
9851
|
+
'io.flow.internal.v0.enums.miljenko_item_type': (): io.flow.internal.v0.enums.MiljenkoItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
10295
9852
|
'io.flow.internal.v0.enums.mixed_bag_weight': (): io.flow.internal.v0.enums.MixedBagWeight => faker.helpers.arrayElement(['0', '1', '2']),
|
|
10296
9853
|
|
|
10297
9854
|
'io.flow.internal.v0.enums.nature_of_sale': (): io.flow.internal.v0.enums.NatureOfSale => faker.helpers.arrayElement([
|
|
@@ -10344,6 +9901,7 @@ const factories = {
|
|
|
10344
9901
|
'unit_test',
|
|
10345
9902
|
'api',
|
|
10346
9903
|
'api_activation',
|
|
9904
|
+
'api_reject',
|
|
10347
9905
|
'audit_auto_activation',
|
|
10348
9906
|
'api_deactivation',
|
|
10349
9907
|
'api_sandbox_setup',
|
|
@@ -10455,11 +10013,15 @@ const factories = {
|
|
|
10455
10013
|
|
|
10456
10014
|
'io.flow.internal.v0.enums.report_type': (): io.flow.internal.v0.enums.ReportType => faker.helpers.arrayElement([
|
|
10457
10015
|
'sales_record',
|
|
10016
|
+
'refund_record',
|
|
10017
|
+
'other_record',
|
|
10018
|
+
'pending_record',
|
|
10458
10019
|
'trueup_overview',
|
|
10459
10020
|
'non_channel_payment_bank_account',
|
|
10460
10021
|
'scheduled_payment',
|
|
10461
10022
|
'account_quarterly_balances',
|
|
10462
10023
|
'invariants',
|
|
10024
|
+
'payments',
|
|
10463
10025
|
]),
|
|
10464
10026
|
|
|
10465
10027
|
'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': (): io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual => faker.helpers.arrayElement(['all', 'mixed', 'none']),
|
|
@@ -10478,7 +10040,6 @@ const factories = {
|
|
|
10478
10040
|
'io.flow.internal.v0.enums.revenue_record_type': (): io.flow.internal.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['pending', 'sales', 'refund']),
|
|
10479
10041
|
'io.flow.internal.v0.enums.risk_check': (): io.flow.internal.v0.enums.RiskCheck => faker.helpers.arrayElement(['three_d_secure']),
|
|
10480
10042
|
'io.flow.internal.v0.enums.risk_evaluation': (): io.flow.internal.v0.enums.RiskEvaluation => faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']),
|
|
10481
|
-
'io.flow.internal.v0.enums.scope': (): io.flow.internal.v0.enums.Scope => faker.helpers.arrayElement(['organization', 'global']),
|
|
10482
10043
|
'io.flow.internal.v0.enums.serial_reservation_error': (): io.flow.internal.v0.enums.SerialReservationError => faker.helpers.arrayElement(['duration_too_long', 'items_not_found', 'reservation_expired']),
|
|
10483
10044
|
'io.flow.internal.v0.enums.service_name': (): io.flow.internal.v0.enums.ServiceName => faker.helpers.arrayElement(['catalog', 'demandware', 'metric']),
|
|
10484
10045
|
'io.flow.internal.v0.enums.session_country_status': (): io.flow.internal.v0.enums.SessionCountryStatus => faker.helpers.arrayElement(['enabled', 'disabled']),
|
|
@@ -10546,7 +10107,6 @@ const factories = {
|
|
|
10546
10107
|
'io.flow.internal.v0.enums.shopify_promotion_status': (): io.flow.internal.v0.enums.ShopifyPromotionStatus => faker.helpers.arrayElement(['active', 'inactive']),
|
|
10547
10108
|
'io.flow.internal.v0.enums.shopify_service': (): io.flow.internal.v0.enums.ShopifyService => faker.helpers.arrayElement(['payment', 'duty_tax_calculator']),
|
|
10548
10109
|
'io.flow.internal.v0.enums.shruti_demo_type': (): io.flow.internal.v0.enums.ShrutiDemoType => faker.helpers.arrayElement(['digital', 'physical']),
|
|
10549
|
-
'io.flow.internal.v0.enums.significance_action': (): io.flow.internal.v0.enums.SignificanceAction => faker.helpers.arrayElement(['end_and_implement_winner', 'end_and_revert', 'do_nothing']),
|
|
10550
10110
|
'io.flow.internal.v0.enums.simple_rounding_strategy': (): io.flow.internal.v0.enums.SimpleRoundingStrategy => faker.helpers.arrayElement(['no_rounding', 'currency_precision']),
|
|
10551
10111
|
'io.flow.internal.v0.enums.snooze_next_action_with': (): io.flow.internal.v0.enums.SnoozeNextActionWith => faker.helpers.arrayElement(['customer_service', 'engineering']),
|
|
10552
10112
|
'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['task', 'invariant']),
|
|
@@ -10569,7 +10129,6 @@ const factories = {
|
|
|
10569
10129
|
'rate-freshness',
|
|
10570
10130
|
]),
|
|
10571
10131
|
|
|
10572
|
-
'io.flow.internal.v0.enums.status': (): io.flow.internal.v0.enums.Status => faker.helpers.arrayElement(['draft', 'scheduled', 'live', 'ended', 'archived']),
|
|
10573
10132
|
'io.flow.internal.v0.enums.subscription_frequency': (): io.flow.internal.v0.enums.SubscriptionFrequency => faker.helpers.arrayElement(['yearly', 'monthly']),
|
|
10574
10133
|
'io.flow.internal.v0.enums.suggestion_action': (): io.flow.internal.v0.enums.SuggestionAction => faker.helpers.arrayElement(['accept', 'validate', 'review']),
|
|
10575
10134
|
'io.flow.internal.v0.enums.svitlana_type': (): io.flow.internal.v0.enums.SvitlanaType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
@@ -10586,10 +10145,17 @@ const factories = {
|
|
|
10586
10145
|
'center_defaults',
|
|
10587
10146
|
]),
|
|
10588
10147
|
|
|
10148
|
+
'io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting': (): io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting => faker.helpers.arrayElement([
|
|
10149
|
+
'duty_exclusive_tax_exclusive',
|
|
10150
|
+
'duty_inclusive_tax_exclusive',
|
|
10151
|
+
'duty_exclusive_tax_inclusive',
|
|
10152
|
+
'duty_inclusive_tax_inclusive',
|
|
10153
|
+
]),
|
|
10154
|
+
|
|
10589
10155
|
'io.flow.internal.v0.enums.tax_calculation_error_code': (): io.flow.internal.v0.enums.TaxCalculationErrorCode => faker.helpers.arrayElement(['generic_error', 'outside_of_jurisdiction']),
|
|
10590
10156
|
'io.flow.internal.v0.enums.tax_party': (): io.flow.internal.v0.enums.TaxParty => faker.helpers.arrayElement(['consumer', 'organization', 'flow', 'carrier']),
|
|
10591
10157
|
'io.flow.internal.v0.enums.tax_transaction_type': (): io.flow.internal.v0.enums.TaxTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'tax']),
|
|
10592
|
-
'io.flow.internal.v0.enums.
|
|
10158
|
+
'io.flow.internal.v0.enums.thiago_item_type': (): io.flow.internal.v0.enums.ThiagoItemType => faker.helpers.arrayElement(['digital', 'physical']),
|
|
10593
10159
|
'io.flow.internal.v0.enums.tracking_integration_type': (): io.flow.internal.v0.enums.TrackingIntegrationType => faker.helpers.arrayElement(['api', 'bulk', 'aftership']),
|
|
10594
10160
|
|
|
10595
10161
|
'io.flow.internal.v0.enums.tracking_processing_failure_classification': (): io.flow.internal.v0.enums.TrackingProcessingFailureClassification => faker.helpers.arrayElement([
|
|
@@ -11417,17 +10983,6 @@ const factories = {
|
|
|
11417
10983
|
action: factories['io.flow.internal.v0.enums.restriction_status'](),
|
|
11418
10984
|
}),
|
|
11419
10985
|
|
|
11420
|
-
'io.flow.internal.v0.models.backfill': (): io.flow.internal.v0.models.Backfill => ({
|
|
11421
|
-
days_to_backfill: arrayOf(() => factories.date_time_iso_8601()),
|
|
11422
|
-
}),
|
|
11423
|
-
|
|
11424
|
-
'io.flow.internal.v0.models.backfill_form': (): io.flow.internal.v0.models.BackfillForm => ({
|
|
11425
|
-
start_date: factories.date_time_iso_8601(),
|
|
11426
|
-
end_date: factories.date_time_iso_8601(),
|
|
11427
|
-
organization_id: factories.string(),
|
|
11428
|
-
experiment_key: factories.string(),
|
|
11429
|
-
}),
|
|
11430
|
-
|
|
11431
10986
|
'io.flow.internal.v0.models.bank_account_reference': (): io.flow.internal.v0.models.BankAccountReference => ({
|
|
11432
10987
|
id: factories.string(),
|
|
11433
10988
|
}),
|
|
@@ -11550,7 +11105,7 @@ const factories = {
|
|
|
11550
11105
|
discriminator: 'billing_csv_transaction_upserted',
|
|
11551
11106
|
event_id: factories.string(),
|
|
11552
11107
|
timestamp: factories.date_time_iso_8601(),
|
|
11553
|
-
transaction: factories['io.flow.
|
|
11108
|
+
transaction: factories['io.flow.internal.v0.models.csv_transaction'](),
|
|
11554
11109
|
}),
|
|
11555
11110
|
|
|
11556
11111
|
'io.flow.internal.v0.models.billing_invoice_summary': (): io.flow.internal.v0.models.BillingInvoiceSummary => ({
|
|
@@ -13026,28 +12581,38 @@ const factories = {
|
|
|
13026
12581
|
}),
|
|
13027
12582
|
|
|
13028
12583
|
'io.flow.internal.v0.models.classification_product_request': (): io.flow.internal.v0.models.ClassificationProductRequest => ({
|
|
13029
|
-
|
|
13030
|
-
|
|
13031
|
-
|
|
13032
|
-
|
|
13033
|
-
|
|
13034
|
-
|
|
13035
|
-
|
|
13036
|
-
|
|
13037
|
-
|
|
13038
|
-
|
|
13039
|
-
|
|
12584
|
+
MerchantId: factories.string(),
|
|
12585
|
+
ProductName: factories.string(),
|
|
12586
|
+
ProductDescription: factories.string(),
|
|
12587
|
+
ProductIdInternal: factories.string(),
|
|
12588
|
+
ProductIdExternal: factories.string(),
|
|
12589
|
+
ProductGroupCode: factories.string(),
|
|
12590
|
+
ProductUrl: factories.string(),
|
|
12591
|
+
ProductImage: factories.string(),
|
|
12592
|
+
ProductAttributes: objectOf(() => factories.string()),
|
|
12593
|
+
Categories: arrayOf(() => factories.string()),
|
|
12594
|
+
PlatformId: factories['io.flow.internal.v0.enums.classification_platform'](),
|
|
12595
|
+
}),
|
|
12596
|
+
|
|
12597
|
+
'io.flow.internal.v0.models.classification_product_request_envelope': (): io.flow.internal.v0.models.ClassificationProductRequestEnvelope => ({
|
|
12598
|
+
messageType: arrayOf(() => factories.string()),
|
|
12599
|
+
message: factories['io.flow.internal.v0.models.classification_product_request'](),
|
|
13040
12600
|
}),
|
|
13041
12601
|
|
|
13042
12602
|
'io.flow.internal.v0.models.classification_product_result': (): io.flow.internal.v0.models.ClassificationProductResult => ({
|
|
13043
|
-
|
|
13044
|
-
|
|
13045
|
-
|
|
13046
|
-
|
|
12603
|
+
productId: factories.string(),
|
|
12604
|
+
merchantId: factories.string(),
|
|
12605
|
+
platformId: factories['io.flow.internal.v0.enums.classification_platform'](),
|
|
12606
|
+
hsCode: factories.string(),
|
|
13047
12607
|
probability: factories.integer(),
|
|
13048
|
-
|
|
13049
|
-
|
|
13050
|
-
|
|
12608
|
+
classificationDecision: factories['io.flow.internal.v0.enums.classification_decision'](),
|
|
12609
|
+
classificationType: factories['io.flow.internal.v0.enums.classification_type'](),
|
|
12610
|
+
clothingAgeClassification: factories['io.flow.internal.v0.enums.clothing_age_classification'](),
|
|
12611
|
+
}),
|
|
12612
|
+
|
|
12613
|
+
'io.flow.internal.v0.models.classification_product_result_envelope': (): io.flow.internal.v0.models.ClassificationProductResultEnvelope => ({
|
|
12614
|
+
messageType: arrayOf(() => factories.string()),
|
|
12615
|
+
message: factories['io.flow.internal.v0.models.classification_product_result'](),
|
|
13051
12616
|
}),
|
|
13052
12617
|
|
|
13053
12618
|
'io.flow.internal.v0.models.classification_product_summary': (): io.flow.internal.v0.models.ClassificationProductSummary => ({
|
|
@@ -13390,6 +12955,25 @@ const factories = {
|
|
|
13390
12955
|
signature_secret: factories.string(),
|
|
13391
12956
|
}),
|
|
13392
12957
|
|
|
12958
|
+
'io.flow.internal.v0.models.csv_transaction': (): io.flow.internal.v0.models.CsvTransaction => ({
|
|
12959
|
+
id: factories.string(),
|
|
12960
|
+
type: factories['io.flow.internal.v0.enums.billing_transaction_type'](),
|
|
12961
|
+
account: factories['io.flow.internal.v0.models.other_record_account'](),
|
|
12962
|
+
metadata: factories['io.flow.internal.v0.models.other_record_metadata'](),
|
|
12963
|
+
order: factories['io.flow.internal.v0.models.other_record_order_summary'](),
|
|
12964
|
+
currency: factories.string(),
|
|
12965
|
+
source: factories['io.flow.billing.v0.enums.transaction_source'](),
|
|
12966
|
+
parent: factories['io.flow.billing.v0.models.parent_transaction_summary'](),
|
|
12967
|
+
gross: factories.decimal(),
|
|
12968
|
+
fees: factories['io.flow.internal.v0.models.other_record_fees'](),
|
|
12969
|
+
withholdings: factories['io.flow.internal.v0.models.other_record_withholdings'](),
|
|
12970
|
+
discount: factories['io.flow.internal.v0.models.other_record_discount'](),
|
|
12971
|
+
net: factories.decimal(),
|
|
12972
|
+
identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
|
|
12973
|
+
created_at: factories.date_time_iso_8601(),
|
|
12974
|
+
updated_at: factories.date_time_iso_8601(),
|
|
12975
|
+
}),
|
|
12976
|
+
|
|
13393
12977
|
'io.flow.internal.v0.models.currency_internal_rate': (): io.flow.internal.v0.models.CurrencyInternalRate => ({
|
|
13394
12978
|
id: factories.string(),
|
|
13395
12979
|
organization_id: factories.string(),
|
|
@@ -13495,53 +13079,6 @@ const factories = {
|
|
|
13495
13079
|
construction: factories['io.flow.internal.v0.models.customs_product_attribute_label'](),
|
|
13496
13080
|
}),
|
|
13497
13081
|
|
|
13498
|
-
'io.flow.internal.v0.models.daily_experiment_engine_results': (): io.flow.internal.v0.models.DailyExperimentEngineResults => ({
|
|
13499
|
-
day: factories.date_time_iso_8601(),
|
|
13500
|
-
organization_id: factories.string(),
|
|
13501
|
-
experiment_key: factories.string(),
|
|
13502
|
-
experiment_variant_key: factories.string(),
|
|
13503
|
-
distinct_visitors_count: factories.long(),
|
|
13504
|
-
visitors_with_transactions_count: factories.long(),
|
|
13505
|
-
total_visitors_count: factories.long(),
|
|
13506
|
-
total_revenue: factories.decimal(),
|
|
13507
|
-
}),
|
|
13508
|
-
|
|
13509
|
-
'io.flow.internal.v0.models.daily_experiment_results': (): io.flow.internal.v0.models.DailyExperimentResults => ({
|
|
13510
|
-
id: factories.string(),
|
|
13511
|
-
day: factories.date_iso_8601(),
|
|
13512
|
-
experiment_key: factories.string(),
|
|
13513
|
-
experiment_variant_key: factories.string(),
|
|
13514
|
-
visitor_count: factories.long(),
|
|
13515
|
-
visitors_with_transactions_count: factories.long(),
|
|
13516
|
-
conversion_rate: factories.decimal(),
|
|
13517
|
-
lower_bound: factories.decimal(),
|
|
13518
|
-
upper_bound: factories.decimal(),
|
|
13519
|
-
probability_of_being_best: factories.decimal(),
|
|
13520
|
-
currency: factories.string(),
|
|
13521
|
-
average_order_value: factories.double(),
|
|
13522
|
-
revenue_generated: factories.double(),
|
|
13523
|
-
total_order_count: factories.long(),
|
|
13524
|
-
conversion_rate_uplift: factories.decimal(),
|
|
13525
|
-
average_order_value_uplift: factories.decimal(),
|
|
13526
|
-
revenue_generated_uplift: factories.decimal(),
|
|
13527
|
-
}),
|
|
13528
|
-
|
|
13529
|
-
'io.flow.internal.v0.models.daily_experiment_results_deleted': (): io.flow.internal.v0.models.DailyExperimentResultsDeleted => ({
|
|
13530
|
-
discriminator: 'daily_experiment_results_deleted',
|
|
13531
|
-
event_id: factories.string(),
|
|
13532
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13533
|
-
organization_id: factories.string(),
|
|
13534
|
-
daily_experiment_results: factories['io.flow.internal.v0.models.daily_experiment_results'](),
|
|
13535
|
-
}),
|
|
13536
|
-
|
|
13537
|
-
'io.flow.internal.v0.models.daily_experiment_results_upserted': (): io.flow.internal.v0.models.DailyExperimentResultsUpserted => ({
|
|
13538
|
-
discriminator: 'daily_experiment_results_upserted',
|
|
13539
|
-
event_id: factories.string(),
|
|
13540
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13541
|
-
organization_id: factories.string(),
|
|
13542
|
-
daily_experiment_results: factories['io.flow.internal.v0.models.daily_experiment_results'](),
|
|
13543
|
-
}),
|
|
13544
|
-
|
|
13545
13082
|
'io.flow.internal.v0.models.daily_value': (): io.flow.internal.v0.models.DailyValue => ({
|
|
13546
13083
|
id: factories.string(),
|
|
13547
13084
|
key: factories['io.flow.internal.v0.enums.billing_metric_key'](),
|
|
@@ -14266,6 +13803,7 @@ const factories = {
|
|
|
14266
13803
|
}),
|
|
14267
13804
|
|
|
14268
13805
|
'io.flow.internal.v0.models.erp_priority_vendor_form': (): io.flow.internal.v0.models.ErpPriorityVendorForm => ({
|
|
13806
|
+
company: factories['io.flow.internal.v0.enums.company'](),
|
|
14269
13807
|
acc_des: factories.string(),
|
|
14270
13808
|
tax_code: factories.string(),
|
|
14271
13809
|
tax_code_2: factories.string(),
|
|
@@ -14365,21 +13903,6 @@ const factories = {
|
|
|
14365
13903
|
total: factories['io.flow.common.v0.models.money'](),
|
|
14366
13904
|
}),
|
|
14367
13905
|
|
|
14368
|
-
'io.flow.internal.v0.models.experience_experiment': (): io.flow.internal.v0.models.ExperienceExperiment => ({
|
|
14369
|
-
discriminator: 'experience',
|
|
14370
|
-
id: factories.string(),
|
|
14371
|
-
key: factories.string(),
|
|
14372
|
-
name: factories.string(),
|
|
14373
|
-
description: factories.string(),
|
|
14374
|
-
status: factories['io.flow.internal.v0.enums.status'](),
|
|
14375
|
-
emails: arrayOf(() => factories.string()),
|
|
14376
|
-
started_at: factories.date_time_iso_8601(),
|
|
14377
|
-
ended_at: factories.date_time_iso_8601(),
|
|
14378
|
-
variants: arrayOf(() => factories['io.flow.internal.v0.models.experience_variant']()),
|
|
14379
|
-
transitions: arrayOf(() => factories['io.flow.internal.v0.enums.status']()),
|
|
14380
|
-
significance_action: factories['io.flow.internal.v0.enums.significance_action'](),
|
|
14381
|
-
}),
|
|
14382
|
-
|
|
14383
13906
|
'io.flow.internal.v0.models.experience_export_request': (): io.flow.internal.v0.models.ExperienceExportRequest => ({
|
|
14384
13907
|
discriminator: 'experience_export_request',
|
|
14385
13908
|
event_id: factories.string(),
|
|
@@ -14410,171 +13933,6 @@ const factories = {
|
|
|
14410
13933
|
id: factories.string(),
|
|
14411
13934
|
}),
|
|
14412
13935
|
|
|
14413
|
-
'io.flow.internal.v0.models.experience_variant': (): io.flow.internal.v0.models.ExperienceVariant => ({
|
|
14414
|
-
discriminator: 'experience_variant',
|
|
14415
|
-
experience: factories['io.flow.internal.v0.models.experience_variant_summary'](),
|
|
14416
|
-
traffic_percentage: factories.integer(),
|
|
14417
|
-
experiment_results: factories['io.flow.internal.v0.models.experiment_results'](),
|
|
14418
|
-
}),
|
|
14419
|
-
|
|
14420
|
-
'io.flow.internal.v0.models.experience_variant_form': (): io.flow.internal.v0.models.ExperienceVariantForm => ({
|
|
14421
|
-
discriminator: 'experience',
|
|
14422
|
-
key: factories.string(),
|
|
14423
|
-
traffic_percentage: factories.integer(),
|
|
14424
|
-
}),
|
|
14425
|
-
|
|
14426
|
-
'io.flow.internal.v0.models.experience_variant_summary': (): io.flow.internal.v0.models.ExperienceVariantSummary => ({
|
|
14427
|
-
key: factories.string(),
|
|
14428
|
-
name: factories.string(),
|
|
14429
|
-
}),
|
|
14430
|
-
|
|
14431
|
-
'io.flow.internal.v0.models.experiment_deleted': (): io.flow.internal.v0.models.ExperimentDeleted => ({
|
|
14432
|
-
discriminator: 'experiment_deleted',
|
|
14433
|
-
event_id: factories.string(),
|
|
14434
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14435
|
-
organization_id: factories.string(),
|
|
14436
|
-
id: factories.string(),
|
|
14437
|
-
}),
|
|
14438
|
-
|
|
14439
|
-
'io.flow.internal.v0.models.experiment_engine_results': (): io.flow.internal.v0.models.ExperimentEngineResults => ({
|
|
14440
|
-
organization_id: factories.string(),
|
|
14441
|
-
experiment_key: factories.string(),
|
|
14442
|
-
experiment_variant_key: factories.string(),
|
|
14443
|
-
distinct_visitors_count: factories.long(),
|
|
14444
|
-
visitors_with_transactions_count: factories.long(),
|
|
14445
|
-
total_visitors_count: factories.long(),
|
|
14446
|
-
total_revenue: factories.decimal(),
|
|
14447
|
-
day: factories.date_time_iso_8601(),
|
|
14448
|
-
}),
|
|
14449
|
-
|
|
14450
|
-
'io.flow.internal.v0.models.experiment_form': (): io.flow.internal.v0.models.ExperimentForm => ({
|
|
14451
|
-
name: factories.string(),
|
|
14452
|
-
description: factories.string(),
|
|
14453
|
-
emails: arrayOf(() => factories.string()),
|
|
14454
|
-
variants: arrayOf(() => factories['io.flow.internal.v0.unions.variant_form']()),
|
|
14455
|
-
significance_action: factories['io.flow.internal.v0.enums.significance_action'](),
|
|
14456
|
-
session_query: factories.string(),
|
|
14457
|
-
}),
|
|
14458
|
-
|
|
14459
|
-
'io.flow.internal.v0.models.experiment_form_default': (): io.flow.internal.v0.models.ExperimentFormDefault => ({
|
|
14460
|
-
discriminator: factories['io.flow.internal.v0.models.experiment_form_default_discriminator'](),
|
|
14461
|
-
|
|
14462
|
-
variants: arrayOf(
|
|
14463
|
-
() => factories['io.flow.internal.v0.models.experiment_form_default_variant'](),
|
|
14464
|
-
),
|
|
14465
|
-
}),
|
|
14466
|
-
|
|
14467
|
-
'io.flow.internal.v0.models.experiment_form_default_discriminator': (): io.flow.internal.v0.models.ExperimentFormDefaultDiscriminator => ({
|
|
14468
|
-
key: factories['io.flow.internal.v0.enums.experiment_discriminator_key'](),
|
|
14469
|
-
|
|
14470
|
-
values: arrayOf(
|
|
14471
|
-
() => factories['io.flow.internal.v0.models.experiment_form_default_discriminator_value'](),
|
|
14472
|
-
),
|
|
14473
|
-
}),
|
|
14474
|
-
|
|
14475
|
-
'io.flow.internal.v0.models.experiment_form_default_discriminator_value': (): io.flow.internal.v0.models.ExperimentFormDefaultDiscriminatorValue => ({
|
|
14476
|
-
key: factories.string(),
|
|
14477
|
-
name: factories.string(),
|
|
14478
|
-
scope: factories['io.flow.internal.v0.enums.scope'](),
|
|
14479
|
-
}),
|
|
14480
|
-
|
|
14481
|
-
'io.flow.internal.v0.models.experiment_form_default_variant': (): io.flow.internal.v0.models.ExperimentFormDefaultVariant => ({
|
|
14482
|
-
key: factories.string(),
|
|
14483
|
-
name: factories.string(),
|
|
14484
|
-
traffic_percentage: factories.integer(),
|
|
14485
|
-
}),
|
|
14486
|
-
|
|
14487
|
-
'io.flow.internal.v0.models.experiment_milestone': (): io.flow.internal.v0.models.ExperimentMilestone => ({
|
|
14488
|
-
id: factories.string(),
|
|
14489
|
-
experiment: factories['io.flow.internal.v0.models.experiment_reference'](),
|
|
14490
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14491
|
-
description: factories.string(),
|
|
14492
|
-
}),
|
|
14493
|
-
|
|
14494
|
-
'io.flow.internal.v0.models.experiment_milestone_deleted': (): io.flow.internal.v0.models.ExperimentMilestoneDeleted => ({
|
|
14495
|
-
discriminator: 'experiment_milestone_deleted',
|
|
14496
|
-
event_id: factories.string(),
|
|
14497
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14498
|
-
organization: factories.string(),
|
|
14499
|
-
id: factories.string(),
|
|
14500
|
-
}),
|
|
14501
|
-
|
|
14502
|
-
'io.flow.internal.v0.models.experiment_milestone_form': (): io.flow.internal.v0.models.ExperimentMilestoneForm => ({
|
|
14503
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14504
|
-
description: factories.string(),
|
|
14505
|
-
}),
|
|
14506
|
-
|
|
14507
|
-
'io.flow.internal.v0.models.experiment_milestone_upserted': (): io.flow.internal.v0.models.ExperimentMilestoneUpserted => ({
|
|
14508
|
-
discriminator: 'experiment_milestone_upserted',
|
|
14509
|
-
event_id: factories.string(),
|
|
14510
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14511
|
-
organization: factories.string(),
|
|
14512
|
-
experiment_milestone: factories['io.flow.internal.v0.models.experiment_milestone'](),
|
|
14513
|
-
}),
|
|
14514
|
-
|
|
14515
|
-
'io.flow.internal.v0.models.experiment_reference': (): io.flow.internal.v0.models.ExperimentReference => ({
|
|
14516
|
-
key: factories.string(),
|
|
14517
|
-
}),
|
|
14518
|
-
|
|
14519
|
-
'io.flow.internal.v0.models.experiment_results': (): io.flow.internal.v0.models.ExperimentResults => ({
|
|
14520
|
-
id: factories.string(),
|
|
14521
|
-
experiment_key: factories.string(),
|
|
14522
|
-
experiment_variant_key: factories.string(),
|
|
14523
|
-
visitor_count: factories.long(),
|
|
14524
|
-
visitors_with_transactions_count: factories.long(),
|
|
14525
|
-
conversion_rate: factories.decimal(),
|
|
14526
|
-
lower_bound: factories.decimal(),
|
|
14527
|
-
upper_bound: factories.decimal(),
|
|
14528
|
-
probability_of_being_best: factories.decimal(),
|
|
14529
|
-
currency: factories.string(),
|
|
14530
|
-
average_order_value: factories.double(),
|
|
14531
|
-
revenue_generated: factories.double(),
|
|
14532
|
-
total_order_count: factories.long(),
|
|
14533
|
-
conversion_rate_uplift: factories.decimal(),
|
|
14534
|
-
average_order_value_uplift: factories.decimal(),
|
|
14535
|
-
revenue_generated_uplift: factories.decimal(),
|
|
14536
|
-
}),
|
|
14537
|
-
|
|
14538
|
-
'io.flow.internal.v0.models.experiment_results_deleted': (): io.flow.internal.v0.models.ExperimentResultsDeleted => ({
|
|
14539
|
-
discriminator: 'experiment_results_deleted',
|
|
14540
|
-
event_id: factories.string(),
|
|
14541
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14542
|
-
organization_id: factories.string(),
|
|
14543
|
-
experiment_results: factories['io.flow.internal.v0.models.experiment_results'](),
|
|
14544
|
-
}),
|
|
14545
|
-
|
|
14546
|
-
'io.flow.internal.v0.models.experiment_results_upserted': (): io.flow.internal.v0.models.ExperimentResultsUpserted => ({
|
|
14547
|
-
discriminator: 'experiment_results_upserted',
|
|
14548
|
-
event_id: factories.string(),
|
|
14549
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14550
|
-
organization_id: factories.string(),
|
|
14551
|
-
experiment_results: factories['io.flow.internal.v0.models.experiment_results'](),
|
|
14552
|
-
}),
|
|
14553
|
-
|
|
14554
|
-
'io.flow.internal.v0.models.experiment_results_with_timestamp': (): io.flow.internal.v0.models.ExperimentResultsWithTimestamp => ({
|
|
14555
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14556
|
-
results: arrayOf(() => factories['io.flow.internal.v0.models.experiment_results']()),
|
|
14557
|
-
}),
|
|
14558
|
-
|
|
14559
|
-
'io.flow.internal.v0.models.experiment_session_query_form': (): io.flow.internal.v0.models.ExperimentSessionQueryForm => ({
|
|
14560
|
-
session_query: factories.string(),
|
|
14561
|
-
}),
|
|
14562
|
-
|
|
14563
|
-
'io.flow.internal.v0.models.experiment_upserted': (): io.flow.internal.v0.models.ExperimentUpserted => ({
|
|
14564
|
-
discriminator: 'experiment_upserted',
|
|
14565
|
-
event_id: factories.string(),
|
|
14566
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14567
|
-
organization_id: factories.string(),
|
|
14568
|
-
experiment: factories['io.flow.internal.v0.unions.experiment'](),
|
|
14569
|
-
}),
|
|
14570
|
-
|
|
14571
|
-
'io.flow.internal.v0.models.experiment_version': (): io.flow.internal.v0.models.ExperimentVersion => ({
|
|
14572
|
-
id: factories.string(),
|
|
14573
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14574
|
-
type: factories['io.flow.common.v0.enums.change_type'](),
|
|
14575
|
-
experiment: factories['io.flow.internal.v0.unions.experiment'](),
|
|
14576
|
-
}),
|
|
14577
|
-
|
|
14578
13936
|
'io.flow.internal.v0.models.explicit_statement': (): io.flow.internal.v0.models.ExplicitStatement => ({
|
|
14579
13937
|
id: factories.string(),
|
|
14580
13938
|
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
@@ -14643,6 +14001,7 @@ const factories = {
|
|
|
14643
14001
|
delivery_estimate: factories.date_time_iso_8601(),
|
|
14644
14002
|
description: factories.string(),
|
|
14645
14003
|
order_number: factories.string(),
|
|
14004
|
+
raw_carrier_event_code: factories.string(),
|
|
14646
14005
|
}),
|
|
14647
14006
|
|
|
14648
14007
|
'io.flow.internal.v0.models.external_fulfillment_proof': (): io.flow.internal.v0.models.ExternalFulfillmentProof => ({
|
|
@@ -14722,23 +14081,6 @@ const factories = {
|
|
|
14722
14081
|
feature: factories['io.flow.internal.v0.models.feature'](),
|
|
14723
14082
|
}),
|
|
14724
14083
|
|
|
14725
|
-
'io.flow.internal.v0.models.feature_experiment': (): io.flow.internal.v0.models.FeatureExperiment => ({
|
|
14726
|
-
discriminator: 'feature',
|
|
14727
|
-
id: factories.string(),
|
|
14728
|
-
key: factories.string(),
|
|
14729
|
-
name: factories.string(),
|
|
14730
|
-
description: factories.string(),
|
|
14731
|
-
status: factories['io.flow.internal.v0.enums.status'](),
|
|
14732
|
-
emails: arrayOf(() => factories.string()),
|
|
14733
|
-
scope: factories['io.flow.internal.v0.enums.scope'](),
|
|
14734
|
-
started_at: factories.date_time_iso_8601(),
|
|
14735
|
-
ended_at: factories.date_time_iso_8601(),
|
|
14736
|
-
variants: arrayOf(() => factories['io.flow.internal.v0.models.feature_variant']()),
|
|
14737
|
-
transitions: arrayOf(() => factories['io.flow.internal.v0.enums.status']()),
|
|
14738
|
-
significance_action: factories['io.flow.internal.v0.enums.significance_action'](),
|
|
14739
|
-
session_query: factories.string(),
|
|
14740
|
-
}),
|
|
14741
|
-
|
|
14742
14084
|
'io.flow.internal.v0.models.feature_form': (): io.flow.internal.v0.models.FeatureForm => ({
|
|
14743
14085
|
name: factories.string(),
|
|
14744
14086
|
description: factories.string(),
|
|
@@ -14796,34 +14138,10 @@ const factories = {
|
|
|
14796
14138
|
context: factories['io.flow.internal.v0.models.feature_context_form'](),
|
|
14797
14139
|
}),
|
|
14798
14140
|
|
|
14799
|
-
'io.flow.internal.v0.models.feature_value_reference': (): io.flow.internal.v0.models.FeatureValueReference => ({
|
|
14800
|
-
feature_key: factories.string(),
|
|
14801
|
-
value: factories.string(),
|
|
14802
|
-
}),
|
|
14803
|
-
|
|
14804
14141
|
'io.flow.internal.v0.models.feature_value_result': (): io.flow.internal.v0.models.FeatureValueResult => ({
|
|
14805
14142
|
values: arrayOf(() => factories['io.flow.internal.v0.unions.feature_value']()),
|
|
14806
14143
|
}),
|
|
14807
14144
|
|
|
14808
|
-
'io.flow.internal.v0.models.feature_variant': (): io.flow.internal.v0.models.FeatureVariant => ({
|
|
14809
|
-
discriminator: 'feature_variant',
|
|
14810
|
-
value: factories['io.flow.internal.v0.models.feature_variant_summary'](),
|
|
14811
|
-
traffic_percentage: factories.integer(),
|
|
14812
|
-
experiment_results: factories['io.flow.internal.v0.models.experiment_results'](),
|
|
14813
|
-
}),
|
|
14814
|
-
|
|
14815
|
-
'io.flow.internal.v0.models.feature_variant_form': (): io.flow.internal.v0.models.FeatureVariantForm => ({
|
|
14816
|
-
discriminator: 'feature',
|
|
14817
|
-
key: factories.string(),
|
|
14818
|
-
traffic_percentage: factories.integer(),
|
|
14819
|
-
}),
|
|
14820
|
-
|
|
14821
|
-
'io.flow.internal.v0.models.feature_variant_summary': (): io.flow.internal.v0.models.FeatureVariantSummary => ({
|
|
14822
|
-
key: factories.string(),
|
|
14823
|
-
feature_value: factories['io.flow.internal.v0.models.feature_value_reference'](),
|
|
14824
|
-
name: factories.string(),
|
|
14825
|
-
}),
|
|
14826
|
-
|
|
14827
14145
|
'io.flow.internal.v0.models.fedex': (): io.flow.internal.v0.models.Fedex => ({
|
|
14828
14146
|
discriminator: 'fedex',
|
|
14829
14147
|
key: factories.string(),
|
|
@@ -15079,8 +14397,10 @@ const factories = {
|
|
|
15079
14397
|
next_action_from: factories['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'](),
|
|
15080
14398
|
}),
|
|
15081
14399
|
|
|
15082
|
-
'io.flow.internal.v0.models.
|
|
15083
|
-
|
|
14400
|
+
'io.flow.internal.v0.models.fraud_authorization_summary': (): io.flow.internal.v0.models.FraudAuthorizationSummary => ({
|
|
14401
|
+
fraud_review_authorization: factories['io.flow.internal.v0.models.fraud_review_authorization'](),
|
|
14402
|
+
fraud_pending_review_authorization: factories['io.flow.internal.v0.models.fraud_pending_review_authorization'](),
|
|
14403
|
+
fraud_review_authorization_decision: factories['io.flow.internal.v0.models.fraud_review_authorization_decision'](),
|
|
15084
14404
|
}),
|
|
15085
14405
|
|
|
15086
14406
|
'io.flow.internal.v0.models.fraud_pending_review': (): io.flow.internal.v0.models.FraudPendingReview => ({
|
|
@@ -15093,6 +14413,32 @@ const factories = {
|
|
|
15093
14413
|
liability: factories['io.flow.fraud.v0.enums.fraud_liability'](),
|
|
15094
14414
|
}),
|
|
15095
14415
|
|
|
14416
|
+
'io.flow.internal.v0.models.fraud_pending_review_authorization': (): io.flow.internal.v0.models.FraudPendingReviewAuthorization => ({
|
|
14417
|
+
id: factories.string(),
|
|
14418
|
+
fraud_review_authorization_id: factories.string(),
|
|
14419
|
+
order: factories['io.flow.experience.v0.models.order_reference'](),
|
|
14420
|
+
fraud_order_reference: factories['io.flow.fraud.v0.unions.fraud_order_reference'](),
|
|
14421
|
+
recommended_status: factories['io.flow.fraud.v0.enums.fraud_status'](),
|
|
14422
|
+
apply_at: factories.date_time_iso_8601(),
|
|
14423
|
+
liability: factories['io.flow.fraud.v0.enums.fraud_liability'](),
|
|
14424
|
+
}),
|
|
14425
|
+
|
|
14426
|
+
'io.flow.internal.v0.models.fraud_pending_review_authorization_deleted': (): io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted => ({
|
|
14427
|
+
discriminator: 'fraud_pending_review_authorization_deleted',
|
|
14428
|
+
event_id: factories.string(),
|
|
14429
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14430
|
+
organization: factories.string(),
|
|
14431
|
+
id: factories.string(),
|
|
14432
|
+
}),
|
|
14433
|
+
|
|
14434
|
+
'io.flow.internal.v0.models.fraud_pending_review_authorization_upserted': (): io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted => ({
|
|
14435
|
+
discriminator: 'fraud_pending_review_authorization_upserted',
|
|
14436
|
+
event_id: factories.string(),
|
|
14437
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14438
|
+
organization: factories.string(),
|
|
14439
|
+
fraud_pending_review_authorization: factories['io.flow.internal.v0.models.fraud_pending_review_authorization'](),
|
|
14440
|
+
}),
|
|
14441
|
+
|
|
15096
14442
|
'io.flow.internal.v0.models.fraud_pending_review_deleted': (): io.flow.internal.v0.models.FraudPendingReviewDeleted => ({
|
|
15097
14443
|
discriminator: 'fraud_pending_review_deleted',
|
|
15098
14444
|
event_id: factories.string(),
|
|
@@ -15173,6 +14519,67 @@ const factories = {
|
|
|
15173
14519
|
created_at: factories.date_time_iso_8601(),
|
|
15174
14520
|
}),
|
|
15175
14521
|
|
|
14522
|
+
'io.flow.internal.v0.models.fraud_review_authorization': (): io.flow.internal.v0.models.FraudReviewAuthorization => ({
|
|
14523
|
+
id: factories.string(),
|
|
14524
|
+
organization_id: factories.string(),
|
|
14525
|
+
order: factories['io.flow.experience.v0.models.order_reference'](),
|
|
14526
|
+
fraud_order_reference: factories['io.flow.fraud.v0.unions.fraud_order_reference'](),
|
|
14527
|
+
status: factories['io.flow.fraud.v0.enums.fraud_status'](),
|
|
14528
|
+
responsible_party: factories['io.flow.internal.v0.enums.fraud_review_responsible_party'](),
|
|
14529
|
+
description: factories.string(),
|
|
14530
|
+
risk_evaluation: factories['io.flow.internal.v0.enums.risk_evaluation'](),
|
|
14531
|
+
liability: factories['io.flow.fraud.v0.enums.fraud_liability'](),
|
|
14532
|
+
status_updated_at: factories.date_time_iso_8601(),
|
|
14533
|
+
attributes: objectOf(() => factories.string()),
|
|
14534
|
+
provider: factories['io.flow.internal.v0.enums.fraud_provider'](),
|
|
14535
|
+
payment_authorization_id: factories.string(),
|
|
14536
|
+
decline_reason: factories['io.flow.internal.v0.unions.decline_reason'](),
|
|
14537
|
+
created_at: factories.date_time_iso_8601(),
|
|
14538
|
+
}),
|
|
14539
|
+
|
|
14540
|
+
'io.flow.internal.v0.models.fraud_review_authorization_decision': (): io.flow.internal.v0.models.FraudReviewAuthorizationDecision => ({
|
|
14541
|
+
id: factories.string(),
|
|
14542
|
+
fraud_review_authorization_id: factories.string(),
|
|
14543
|
+
order: factories['io.flow.experience.v0.models.order_reference'](),
|
|
14544
|
+
fraud_order_reference: factories['io.flow.fraud.v0.unions.fraud_order_reference'](),
|
|
14545
|
+
status: factories['io.flow.fraud.v0.enums.fraud_status'](),
|
|
14546
|
+
created_at: factories.date_time_iso_8601(),
|
|
14547
|
+
liability: factories['io.flow.fraud.v0.enums.fraud_liability'](),
|
|
14548
|
+
updated_by_user: factories['io.flow.common.v0.models.user_reference'](),
|
|
14549
|
+
}),
|
|
14550
|
+
|
|
14551
|
+
'io.flow.internal.v0.models.fraud_review_authorization_decision_deleted': (): io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted => ({
|
|
14552
|
+
discriminator: 'fraud_review_authorization_decision_deleted',
|
|
14553
|
+
event_id: factories.string(),
|
|
14554
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14555
|
+
organization: factories.string(),
|
|
14556
|
+
id: factories.string(),
|
|
14557
|
+
}),
|
|
14558
|
+
|
|
14559
|
+
'io.flow.internal.v0.models.fraud_review_authorization_decision_upserted': (): io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted => ({
|
|
14560
|
+
discriminator: 'fraud_review_authorization_decision_upserted',
|
|
14561
|
+
event_id: factories.string(),
|
|
14562
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14563
|
+
organization: factories.string(),
|
|
14564
|
+
fraud_review_authorization_decision: factories['io.flow.internal.v0.models.fraud_review_authorization_decision'](),
|
|
14565
|
+
}),
|
|
14566
|
+
|
|
14567
|
+
'io.flow.internal.v0.models.fraud_review_authorization_deleted': (): io.flow.internal.v0.models.FraudReviewAuthorizationDeleted => ({
|
|
14568
|
+
discriminator: 'fraud_review_authorization_deleted',
|
|
14569
|
+
event_id: factories.string(),
|
|
14570
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14571
|
+
organization: factories.string(),
|
|
14572
|
+
id: factories.string(),
|
|
14573
|
+
}),
|
|
14574
|
+
|
|
14575
|
+
'io.flow.internal.v0.models.fraud_review_authorization_upserted': (): io.flow.internal.v0.models.FraudReviewAuthorizationUpserted => ({
|
|
14576
|
+
discriminator: 'fraud_review_authorization_upserted',
|
|
14577
|
+
event_id: factories.string(),
|
|
14578
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14579
|
+
organization: factories.string(),
|
|
14580
|
+
fraud_review_authorization: factories['io.flow.internal.v0.models.fraud_review_authorization'](),
|
|
14581
|
+
}),
|
|
14582
|
+
|
|
15176
14583
|
'io.flow.internal.v0.models.fraud_review_decision': (): io.flow.internal.v0.models.FraudReviewDecision => ({
|
|
15177
14584
|
id: factories.string(),
|
|
15178
14585
|
fraud_review_id: factories.string(),
|
|
@@ -15231,6 +14638,10 @@ const factories = {
|
|
|
15231
14638
|
fraud_review: factories['io.flow.internal.v0.models.fraud_review'](),
|
|
15232
14639
|
fraud_pending_review: factories['io.flow.internal.v0.models.fraud_pending_review'](),
|
|
15233
14640
|
fraud_review_decision: factories['io.flow.internal.v0.models.fraud_review_decision'](),
|
|
14641
|
+
|
|
14642
|
+
fraud_review_authorizations: arrayOf(
|
|
14643
|
+
() => factories['io.flow.internal.v0.models.fraud_authorization_summary'](),
|
|
14644
|
+
),
|
|
15234
14645
|
}),
|
|
15235
14646
|
|
|
15236
14647
|
'io.flow.internal.v0.models.ftp_file_deleted': (): io.flow.internal.v0.models.FtpFileDeleted => ({
|
|
@@ -15305,6 +14716,7 @@ const factories = {
|
|
|
15305
14716
|
order: factories['io.flow.internal.v0.models.order_summary'](),
|
|
15306
14717
|
shopper: factories['io.flow.internal.v0.models.shopper_summary'](),
|
|
15307
14718
|
remittance: factories['io.flow.internal.v0.models.remittance_responsibility'](),
|
|
14719
|
+
payment: factories['io.flow.internal.v0.models.payment_summary'](),
|
|
15308
14720
|
merchant: factories['io.flow.internal.v0.models.merchant_summary'](),
|
|
15309
14721
|
sequence_number: factories.long(),
|
|
15310
14722
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
@@ -15426,6 +14838,7 @@ const factories = {
|
|
|
15426
14838
|
subtotal: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15427
14839
|
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15428
14840
|
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
14841
|
+
tips: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15429
14842
|
discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15430
14843
|
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15431
14844
|
}),
|
|
@@ -15590,6 +15003,37 @@ const factories = {
|
|
|
15590
15003
|
tracker_id: factories.string(),
|
|
15591
15004
|
}),
|
|
15592
15005
|
|
|
15006
|
+
'io.flow.internal.v0.models.harinath_item': (): io.flow.internal.v0.models.HarinathItem => ({
|
|
15007
|
+
id: factories.string(),
|
|
15008
|
+
number: factories.string(),
|
|
15009
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
15010
|
+
description: factories.string(),
|
|
15011
|
+
type: factories['io.flow.internal.v0.enums.harinath_item_type'](),
|
|
15012
|
+
added_on: factories.date_time_iso_8601(),
|
|
15013
|
+
}),
|
|
15014
|
+
|
|
15015
|
+
'io.flow.internal.v0.models.harinath_item_deleted': (): io.flow.internal.v0.models.HarinathItemDeleted => ({
|
|
15016
|
+
discriminator: 'harinath_item_deleted',
|
|
15017
|
+
event_id: factories.string(),
|
|
15018
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15019
|
+
id: factories.string(),
|
|
15020
|
+
}),
|
|
15021
|
+
|
|
15022
|
+
'io.flow.internal.v0.models.harinath_item_form': (): io.flow.internal.v0.models.HarinathItemForm => ({
|
|
15023
|
+
number: factories.string(),
|
|
15024
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
15025
|
+
description: factories.string(),
|
|
15026
|
+
type: factories['io.flow.internal.v0.enums.harinath_item_type'](),
|
|
15027
|
+
added_on: factories.date_time_iso_8601(),
|
|
15028
|
+
}),
|
|
15029
|
+
|
|
15030
|
+
'io.flow.internal.v0.models.harinath_item_upserted': (): io.flow.internal.v0.models.HarinathItemUpserted => ({
|
|
15031
|
+
discriminator: 'harinath_item_upserted',
|
|
15032
|
+
event_id: factories.string(),
|
|
15033
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15034
|
+
item: factories['io.flow.internal.v0.models.harinath_item'](),
|
|
15035
|
+
}),
|
|
15036
|
+
|
|
15593
15037
|
'io.flow.internal.v0.models.harmonization_classification_statistics_data': (): io.flow.internal.v0.models.HarmonizationClassificationStatisticsData => ({
|
|
15594
15038
|
statistics: factories['io.flow.internal.v0.models.classification_statistics'](),
|
|
15595
15039
|
}),
|
|
@@ -16126,6 +15570,7 @@ const factories = {
|
|
|
16126
15570
|
price_amount: factories.decimal(),
|
|
16127
15571
|
status: factories['io.flow.internal.v0.enums.item_harmonization_status'](),
|
|
16128
15572
|
tariffs: objectOf(() => factories['io.flow.internal.v0.models.tariff_code_duty']()),
|
|
15573
|
+
decision_source: factories['io.flow.internal.v0.enums.harmonization_decision_source'](),
|
|
16129
15574
|
created_at: factories.date_time_iso_8601(),
|
|
16130
15575
|
updated_at: factories.date_time_iso_8601(),
|
|
16131
15576
|
updated_by_user_id: factories.string(),
|
|
@@ -16285,6 +15730,37 @@ const factories = {
|
|
|
16285
15730
|
descriptive_asset_urls: factories.string(),
|
|
16286
15731
|
}),
|
|
16287
15732
|
|
|
15733
|
+
'io.flow.internal.v0.models.konstantin_item': (): io.flow.internal.v0.models.KonstantinItem => ({
|
|
15734
|
+
id: factories.string(),
|
|
15735
|
+
number: factories.string(),
|
|
15736
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
15737
|
+
description: factories.string(),
|
|
15738
|
+
type: factories['io.flow.internal.v0.enums.konstantin_item_type'](),
|
|
15739
|
+
added_on: factories.date_time_iso_8601(),
|
|
15740
|
+
}),
|
|
15741
|
+
|
|
15742
|
+
'io.flow.internal.v0.models.konstantin_item_deleted': (): io.flow.internal.v0.models.KonstantinItemDeleted => ({
|
|
15743
|
+
discriminator: 'konstantin_item_deleted',
|
|
15744
|
+
event_id: factories.string(),
|
|
15745
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15746
|
+
id: factories.string(),
|
|
15747
|
+
}),
|
|
15748
|
+
|
|
15749
|
+
'io.flow.internal.v0.models.konstantin_item_form': (): io.flow.internal.v0.models.KonstantinItemForm => ({
|
|
15750
|
+
number: factories.string(),
|
|
15751
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
15752
|
+
description: factories.string(),
|
|
15753
|
+
type: factories['io.flow.internal.v0.enums.konstantin_item_type'](),
|
|
15754
|
+
added_on: factories.date_time_iso_8601(),
|
|
15755
|
+
}),
|
|
15756
|
+
|
|
15757
|
+
'io.flow.internal.v0.models.konstantin_item_upserted': (): io.flow.internal.v0.models.KonstantinItemUpserted => ({
|
|
15758
|
+
discriminator: 'konstantin_item_upserted',
|
|
15759
|
+
event_id: factories.string(),
|
|
15760
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15761
|
+
item: factories['io.flow.internal.v0.models.konstantin_item'](),
|
|
15762
|
+
}),
|
|
15763
|
+
|
|
16288
15764
|
'io.flow.internal.v0.models.lab_project_settings': (): io.flow.internal.v0.models.LabProjectSettings => ({
|
|
16289
15765
|
id: factories.string(),
|
|
16290
15766
|
flow_lab_project_key: factories.string(),
|
|
@@ -16837,6 +16313,26 @@ const factories = {
|
|
|
16837
16313
|
capabilities: arrayOf(() => factories['io.flow.internal.v0.enums.logistics_capability']()),
|
|
16838
16314
|
}),
|
|
16839
16315
|
|
|
16316
|
+
'io.flow.internal.v0.models.logistics_payout_request': (): io.flow.internal.v0.models.LogisticsPayoutRequest => ({
|
|
16317
|
+
organization_id: factories.string(),
|
|
16318
|
+
order_number: factories.string(),
|
|
16319
|
+
carrier: factories.string(),
|
|
16320
|
+
carrier_tracking_number: factories.string(),
|
|
16321
|
+
dry_run: factories.boolean(),
|
|
16322
|
+
payout_resolution_method: factories['io.flow.internal.v0.enums.logistics_payout_resolution_method'](),
|
|
16323
|
+
label_id: factories.string(),
|
|
16324
|
+
combined_shipment_order_number: factories.string(),
|
|
16325
|
+
}),
|
|
16326
|
+
|
|
16327
|
+
'io.flow.internal.v0.models.logistics_payout_request_form': (): io.flow.internal.v0.models.LogisticsPayoutRequestForm => ({
|
|
16328
|
+
organization_id: factories.string(),
|
|
16329
|
+
order_identifier: factories.string(),
|
|
16330
|
+
carrier_id: factories.string(),
|
|
16331
|
+
carrier_name: factories.string(),
|
|
16332
|
+
carrier_tracking_number: factories.string(),
|
|
16333
|
+
external_reference_number: factories.string(),
|
|
16334
|
+
}),
|
|
16335
|
+
|
|
16840
16336
|
'io.flow.internal.v0.models.logo': (): io.flow.internal.v0.models.Logo => ({
|
|
16841
16337
|
url: factories.string(),
|
|
16842
16338
|
}),
|
|
@@ -17428,6 +16924,68 @@ const factories = {
|
|
|
17428
16924
|
proposition: factories['io.flow.internal.v0.models.metadata_proposition'](),
|
|
17429
16925
|
}),
|
|
17430
16926
|
|
|
16927
|
+
'io.flow.internal.v0.models.michaelyan_item': (): io.flow.internal.v0.models.MichaelyanItem => ({
|
|
16928
|
+
id: factories.string(),
|
|
16929
|
+
number: factories.string(),
|
|
16930
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
16931
|
+
description: factories.string(),
|
|
16932
|
+
type: factories['io.flow.internal.v0.enums.michaelyan_item_type'](),
|
|
16933
|
+
added_on: factories.date_time_iso_8601(),
|
|
16934
|
+
}),
|
|
16935
|
+
|
|
16936
|
+
'io.flow.internal.v0.models.michaelyan_item_deleted': (): io.flow.internal.v0.models.MichaelyanItemDeleted => ({
|
|
16937
|
+
discriminator: 'michaelyan_item_deleted',
|
|
16938
|
+
event_id: factories.string(),
|
|
16939
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16940
|
+
id: factories.string(),
|
|
16941
|
+
}),
|
|
16942
|
+
|
|
16943
|
+
'io.flow.internal.v0.models.michaelyan_item_form': (): io.flow.internal.v0.models.MichaelyanItemForm => ({
|
|
16944
|
+
number: factories.string(),
|
|
16945
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
16946
|
+
description: factories.string(),
|
|
16947
|
+
type: factories['io.flow.internal.v0.enums.michaelyan_item_type'](),
|
|
16948
|
+
added_on: factories.date_time_iso_8601(),
|
|
16949
|
+
}),
|
|
16950
|
+
|
|
16951
|
+
'io.flow.internal.v0.models.michaelyan_item_upserted': (): io.flow.internal.v0.models.MichaelyanItemUpserted => ({
|
|
16952
|
+
discriminator: 'michaelyan_item_upserted',
|
|
16953
|
+
event_id: factories.string(),
|
|
16954
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16955
|
+
item: factories['io.flow.internal.v0.models.michaelyan_item'](),
|
|
16956
|
+
}),
|
|
16957
|
+
|
|
16958
|
+
'io.flow.internal.v0.models.miljenko_item': (): io.flow.internal.v0.models.MiljenkoItem => ({
|
|
16959
|
+
id: factories.string(),
|
|
16960
|
+
number: factories.string(),
|
|
16961
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
16962
|
+
description: factories.string(),
|
|
16963
|
+
type: factories['io.flow.internal.v0.enums.miljenko_item_type'](),
|
|
16964
|
+
added_on: factories.date_time_iso_8601(),
|
|
16965
|
+
}),
|
|
16966
|
+
|
|
16967
|
+
'io.flow.internal.v0.models.miljenko_item_deleted': (): io.flow.internal.v0.models.MiljenkoItemDeleted => ({
|
|
16968
|
+
discriminator: 'miljenko_item_deleted',
|
|
16969
|
+
event_id: factories.string(),
|
|
16970
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16971
|
+
id: factories.string(),
|
|
16972
|
+
}),
|
|
16973
|
+
|
|
16974
|
+
'io.flow.internal.v0.models.miljenko_item_form': (): io.flow.internal.v0.models.MiljenkoItemForm => ({
|
|
16975
|
+
number: factories.string(),
|
|
16976
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
16977
|
+
description: factories.string(),
|
|
16978
|
+
type: factories['io.flow.internal.v0.enums.miljenko_item_type'](),
|
|
16979
|
+
added_on: factories.date_time_iso_8601(),
|
|
16980
|
+
}),
|
|
16981
|
+
|
|
16982
|
+
'io.flow.internal.v0.models.miljenko_item_upserted': (): io.flow.internal.v0.models.MiljenkoItemUpserted => ({
|
|
16983
|
+
discriminator: 'miljenko_item_upserted',
|
|
16984
|
+
event_id: factories.string(),
|
|
16985
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16986
|
+
item: factories['io.flow.internal.v0.models.miljenko_item'](),
|
|
16987
|
+
}),
|
|
16988
|
+
|
|
17431
16989
|
'io.flow.internal.v0.models.next_billing_statement': (): io.flow.internal.v0.models.NextBillingStatement => ({
|
|
17432
16990
|
date: factories.date_time_iso_8601(),
|
|
17433
16991
|
amount: factories['io.flow.common.v0.models.price'](),
|
|
@@ -17855,6 +17413,29 @@ const factories = {
|
|
|
17855
17413
|
currency: factories.string(),
|
|
17856
17414
|
}),
|
|
17857
17415
|
|
|
17416
|
+
'io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting': (): io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting => ({
|
|
17417
|
+
id: factories.string(),
|
|
17418
|
+
organization_id: factories.string(),
|
|
17419
|
+
shopify_order_id: factories.string(),
|
|
17420
|
+
order_number: factories.string(),
|
|
17421
|
+
tax_and_duty_inclusivity_setting: factories['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting'](),
|
|
17422
|
+
}),
|
|
17423
|
+
|
|
17424
|
+
'io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted': (): io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted => ({
|
|
17425
|
+
discriminator: 'order_tax_and_duty_inclusivity_setting_deleted',
|
|
17426
|
+
event_id: factories.string(),
|
|
17427
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17428
|
+
organization: factories.string(),
|
|
17429
|
+
id: factories.string(),
|
|
17430
|
+
}),
|
|
17431
|
+
|
|
17432
|
+
'io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted': (): io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted => ({
|
|
17433
|
+
discriminator: 'order_tax_and_duty_inclusivity_setting_upserted',
|
|
17434
|
+
event_id: factories.string(),
|
|
17435
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17436
|
+
order_tax_and_duty_inclusivity_setting: factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'](),
|
|
17437
|
+
}),
|
|
17438
|
+
|
|
17858
17439
|
'io.flow.internal.v0.models.order_transaction': (): io.flow.internal.v0.models.OrderTransaction => ({
|
|
17859
17440
|
discriminator: 'order_transaction',
|
|
17860
17441
|
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
@@ -18148,6 +17729,34 @@ const factories = {
|
|
|
18148
17729
|
to: factories.string(),
|
|
18149
17730
|
}),
|
|
18150
17731
|
|
|
17732
|
+
'io.flow.internal.v0.models.organization_metadata': (): io.flow.internal.v0.models.OrganizationMetadata => ({
|
|
17733
|
+
id: factories.string(),
|
|
17734
|
+
organization_id: factories.string(),
|
|
17735
|
+
pending_restriction_count: factories.long(),
|
|
17736
|
+
pending_verification_count: factories.long(),
|
|
17737
|
+
oldest_pending_restriction_date: factories.date_time_iso_8601(),
|
|
17738
|
+
oldest_pending_verification_date: factories.date_time_iso_8601(),
|
|
17739
|
+
product_count: factories.long(),
|
|
17740
|
+
restricted_product_count: factories.long(),
|
|
17741
|
+
last_order_submitted_at: factories.date_time_iso_8601(),
|
|
17742
|
+
}),
|
|
17743
|
+
|
|
17744
|
+
'io.flow.internal.v0.models.organization_metadata_deleted': (): io.flow.internal.v0.models.OrganizationMetadataDeleted => ({
|
|
17745
|
+
discriminator: 'organization_metadata_deleted',
|
|
17746
|
+
event_id: factories.string(),
|
|
17747
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17748
|
+
organization: factories.string(),
|
|
17749
|
+
id: factories.string(),
|
|
17750
|
+
}),
|
|
17751
|
+
|
|
17752
|
+
'io.flow.internal.v0.models.organization_metadata_upserted': (): io.flow.internal.v0.models.OrganizationMetadataUpserted => ({
|
|
17753
|
+
discriminator: 'organization_metadata_upserted',
|
|
17754
|
+
event_id: factories.string(),
|
|
17755
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17756
|
+
organization: factories.string(),
|
|
17757
|
+
organization_metadata: factories['io.flow.internal.v0.models.organization_metadata'](),
|
|
17758
|
+
}),
|
|
17759
|
+
|
|
18151
17760
|
'io.flow.internal.v0.models.organization_onboarding_state_adjustment_result': (): io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult => ({
|
|
18152
17761
|
organization_onboarding_state: factories['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'](),
|
|
18153
17762
|
}),
|
|
@@ -18347,6 +17956,144 @@ const factories = {
|
|
|
18347
17956
|
audit_result: factories['io.flow.internal.v0.enums.onboarding_audit_result'](),
|
|
18348
17957
|
}),
|
|
18349
17958
|
|
|
17959
|
+
'io.flow.internal.v0.models.other_record': (): io.flow.internal.v0.models.OtherRecord => ({
|
|
17960
|
+
id: factories.string(),
|
|
17961
|
+
type: factories['io.flow.internal.v0.enums.billing_transaction_type'](),
|
|
17962
|
+
account: factories['io.flow.internal.v0.models.other_record_account'](),
|
|
17963
|
+
metadata: factories['io.flow.internal.v0.models.other_record_metadata'](),
|
|
17964
|
+
order: factories['io.flow.internal.v0.models.other_record_order_summary'](),
|
|
17965
|
+
currency: factories.string(),
|
|
17966
|
+
source: factories['io.flow.billing.v0.enums.transaction_source'](),
|
|
17967
|
+
parent: factories['io.flow.billing.v0.models.parent_transaction_summary'](),
|
|
17968
|
+
gross: factories.decimal(),
|
|
17969
|
+
fees: factories['io.flow.internal.v0.models.other_record_fees'](),
|
|
17970
|
+
withholdings: factories['io.flow.internal.v0.models.other_record_withholdings'](),
|
|
17971
|
+
discount: factories['io.flow.internal.v0.models.other_record_discount'](),
|
|
17972
|
+
net: factories.decimal(),
|
|
17973
|
+
identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
|
|
17974
|
+
created_at: factories.date_time_iso_8601(),
|
|
17975
|
+
updated_at: factories.date_time_iso_8601(),
|
|
17976
|
+
}),
|
|
17977
|
+
|
|
17978
|
+
'io.flow.internal.v0.models.other_record_account': (): io.flow.internal.v0.models.OtherRecordAccount => ({
|
|
17979
|
+
id: factories.string(),
|
|
17980
|
+
merchant: factories['io.flow.internal.v0.models.other_record_merchant_reference'](),
|
|
17981
|
+
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
17982
|
+
source: factories['io.flow.internal.v0.models.other_record_account_source_summary'](),
|
|
17983
|
+
}),
|
|
17984
|
+
|
|
17985
|
+
'io.flow.internal.v0.models.other_record_account_source_summary': (): io.flow.internal.v0.models.OtherRecordAccountSourceSummary => ({
|
|
17986
|
+
id: factories.string(),
|
|
17987
|
+
type: factories['io.flow.internal.v0.enums.account_type'](),
|
|
17988
|
+
}),
|
|
17989
|
+
|
|
17990
|
+
'io.flow.internal.v0.models.other_record_deleted': (): io.flow.internal.v0.models.OtherRecordDeleted => ({
|
|
17991
|
+
discriminator: 'other_record_deleted',
|
|
17992
|
+
event_id: factories.string(),
|
|
17993
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17994
|
+
id: factories.string(),
|
|
17995
|
+
}),
|
|
17996
|
+
|
|
17997
|
+
'io.flow.internal.v0.models.other_record_discount': (): io.flow.internal.v0.models.OtherRecordDiscount => ({
|
|
17998
|
+
amount: factories.decimal(),
|
|
17999
|
+
description: factories.string(),
|
|
18000
|
+
}),
|
|
18001
|
+
|
|
18002
|
+
'io.flow.internal.v0.models.other_record_fees': (): io.flow.internal.v0.models.OtherRecordFees => ({
|
|
18003
|
+
duty_guarantee: factories.decimal(),
|
|
18004
|
+
mor: factories.decimal(),
|
|
18005
|
+
fraud: factories.decimal(),
|
|
18006
|
+
fx: factories.decimal(),
|
|
18007
|
+
processing: factories.decimal(),
|
|
18008
|
+
rate_lock: factories.decimal(),
|
|
18009
|
+
transfer: factories.decimal(),
|
|
18010
|
+
negative_balance: factories.decimal(),
|
|
18011
|
+
}),
|
|
18012
|
+
|
|
18013
|
+
'io.flow.internal.v0.models.other_record_identifiers': (): io.flow.internal.v0.models.OtherRecordIdentifiers => ({
|
|
18014
|
+
reference_id: factories.string(),
|
|
18015
|
+
}),
|
|
18016
|
+
|
|
18017
|
+
'io.flow.internal.v0.models.other_record_merchant_reference': (): io.flow.internal.v0.models.OtherRecordMerchantReference => ({
|
|
18018
|
+
id: factories.string(),
|
|
18019
|
+
}),
|
|
18020
|
+
|
|
18021
|
+
'io.flow.internal.v0.models.other_record_metadata': (): io.flow.internal.v0.models.OtherRecordMetadata => ({
|
|
18022
|
+
channel: factories['io.flow.internal.v0.models.other_record_metadata_channel'](),
|
|
18023
|
+
shipping_label: factories['io.flow.internal.v0.models.other_record_metadata_shipping_label'](),
|
|
18024
|
+
shipping_label_revenue_share: factories['io.flow.internal.v0.models.other_record_metadata_shipping_label_revenue_share'](),
|
|
18025
|
+
trueup: factories['io.flow.internal.v0.models.other_record_metadata_trueup'](),
|
|
18026
|
+
carrier_charge: factories['io.flow.internal.v0.models.other_record_metadata_carrier_charge'](),
|
|
18027
|
+
manual: factories['io.flow.internal.v0.models.other_record_metadata_manual'](),
|
|
18028
|
+
failed_payout: factories['io.flow.internal.v0.models.other_record_metadata_failed_payout'](),
|
|
18029
|
+
}),
|
|
18030
|
+
|
|
18031
|
+
'io.flow.internal.v0.models.other_record_metadata_carrier_charge': (): io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge => ({
|
|
18032
|
+
reason: factories['io.flow.trueup.v0.enums.carrier_charge_reason'](),
|
|
18033
|
+
label_created_at: factories.date_time_iso_8601(),
|
|
18034
|
+
carrier_id: factories.string(),
|
|
18035
|
+
carrier_tracking_number: factories.string(),
|
|
18036
|
+
revenue_share_percentage: factories.decimal(),
|
|
18037
|
+
outbound_transaction_id: factories.string(),
|
|
18038
|
+
}),
|
|
18039
|
+
|
|
18040
|
+
'io.flow.internal.v0.models.other_record_metadata_channel': (): io.flow.internal.v0.models.OtherRecordMetadataChannel => ({
|
|
18041
|
+
method: factories.string(),
|
|
18042
|
+
card: factories['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'](),
|
|
18043
|
+
}),
|
|
18044
|
+
|
|
18045
|
+
'io.flow.internal.v0.models.other_record_metadata_failed_payout': (): io.flow.internal.v0.models.OtherRecordMetadataFailedPayout => ({
|
|
18046
|
+
failed_payment: factories['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'](),
|
|
18047
|
+
}),
|
|
18048
|
+
|
|
18049
|
+
'io.flow.internal.v0.models.other_record_metadata_manual': (): io.flow.internal.v0.models.OtherRecordMetadataManual => ({
|
|
18050
|
+
description: factories.string(),
|
|
18051
|
+
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
18052
|
+
category: factories['io.flow.internal.v0.enums.manual_transaction_category'](),
|
|
18053
|
+
url: factories.string(),
|
|
18054
|
+
}),
|
|
18055
|
+
|
|
18056
|
+
'io.flow.internal.v0.models.other_record_metadata_shipping_label': (): io.flow.internal.v0.models.OtherRecordMetadataShippingLabel => ({
|
|
18057
|
+
request_method: factories['io.flow.label.v0.enums.label_request_method'](),
|
|
18058
|
+
}),
|
|
18059
|
+
|
|
18060
|
+
'io.flow.internal.v0.models.other_record_metadata_shipping_label_revenue_share': (): io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare => ({
|
|
18061
|
+
label_id: factories.string(),
|
|
18062
|
+
base_amount: factories.decimal(),
|
|
18063
|
+
percentage: factories.decimal(),
|
|
18064
|
+
}),
|
|
18065
|
+
|
|
18066
|
+
'io.flow.internal.v0.models.other_record_metadata_trueup': (): io.flow.internal.v0.models.OtherRecordMetadataTrueup => ({
|
|
18067
|
+
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
18068
|
+
label_transaction_id: factories.string(),
|
|
18069
|
+
label_invoice_request_id: factories.string(),
|
|
18070
|
+
carrier_charge_id: factories.string(),
|
|
18071
|
+
}),
|
|
18072
|
+
|
|
18073
|
+
'io.flow.internal.v0.models.other_record_order_summary': (): io.flow.internal.v0.models.OtherRecordOrderSummary => ({
|
|
18074
|
+
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
18075
|
+
number: factories.string(),
|
|
18076
|
+
identifiers: factories['io.flow.internal.v0.models.other_record_order_summary_identifiers'](),
|
|
18077
|
+
}),
|
|
18078
|
+
|
|
18079
|
+
'io.flow.internal.v0.models.other_record_order_summary_identifiers': (): io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers => ({
|
|
18080
|
+
shopify_order_id: factories.string(),
|
|
18081
|
+
}),
|
|
18082
|
+
|
|
18083
|
+
'io.flow.internal.v0.models.other_record_upserted': (): io.flow.internal.v0.models.OtherRecordUpserted => ({
|
|
18084
|
+
discriminator: 'other_record_upserted',
|
|
18085
|
+
event_id: factories.string(),
|
|
18086
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18087
|
+
other_record: factories['io.flow.internal.v0.models.other_record'](),
|
|
18088
|
+
}),
|
|
18089
|
+
|
|
18090
|
+
'io.flow.internal.v0.models.other_record_withholdings': (): io.flow.internal.v0.models.OtherRecordWithholdings => ({
|
|
18091
|
+
tax: factories.decimal(),
|
|
18092
|
+
duty: factories.decimal(),
|
|
18093
|
+
freight: factories.decimal(),
|
|
18094
|
+
insurance: factories.decimal(),
|
|
18095
|
+
}),
|
|
18096
|
+
|
|
18350
18097
|
'io.flow.internal.v0.models.partner': (): io.flow.internal.v0.models.Partner => ({
|
|
18351
18098
|
id: factories.string(),
|
|
18352
18099
|
name: factories.string(),
|
|
@@ -18518,6 +18265,15 @@ const factories = {
|
|
|
18518
18265
|
merchant: factories['io.flow.internal.v0.unions.processor_merchant'](),
|
|
18519
18266
|
}),
|
|
18520
18267
|
|
|
18268
|
+
'io.flow.internal.v0.models.payment_summary': (): io.flow.internal.v0.models.PaymentSummary => ({
|
|
18269
|
+
psp: factories.decimal(),
|
|
18270
|
+
credit: factories.decimal(),
|
|
18271
|
+
subsidized: factories.decimal(),
|
|
18272
|
+
manual: factories.decimal(),
|
|
18273
|
+
cod: factories.decimal(),
|
|
18274
|
+
total: factories.decimal(),
|
|
18275
|
+
}),
|
|
18276
|
+
|
|
18521
18277
|
'io.flow.internal.v0.models.payment_summary_v2': (): io.flow.internal.v0.models.PaymentSummaryV2 => ({
|
|
18522
18278
|
discriminator: 'payment_summary_v2',
|
|
18523
18279
|
id: factories.string(),
|
|
@@ -18738,6 +18494,7 @@ const factories = {
|
|
|
18738
18494
|
order: factories['io.flow.internal.v0.models.order_summary'](),
|
|
18739
18495
|
shopper: factories['io.flow.internal.v0.models.shopper_summary'](),
|
|
18740
18496
|
merchant: factories['io.flow.internal.v0.models.merchant_summary'](),
|
|
18497
|
+
payment: factories['io.flow.internal.v0.models.payment_summary'](),
|
|
18741
18498
|
remittance: factories['io.flow.internal.v0.models.remittance_responsibility'](),
|
|
18742
18499
|
sequence_number: factories.long(),
|
|
18743
18500
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
@@ -19707,11 +19464,11 @@ const factories = {
|
|
|
19707
19464
|
sequence_number: factories.long(),
|
|
19708
19465
|
fulfilled_at: factories.date_time_iso_8601(),
|
|
19709
19466
|
completes_order: factories.boolean(),
|
|
19710
|
-
payment: factories['io.flow.internal.v0.models.reporting_payment'](),
|
|
19711
19467
|
refund: factories['io.flow.internal.v0.models.reporting_refund_reference'](),
|
|
19712
19468
|
value: factories['io.flow.internal.v0.models.fulfillment_shopper_breakdown'](),
|
|
19713
19469
|
dispatch_country: factories['io.flow.internal.v0.models.reporting_country'](),
|
|
19714
19470
|
destination: factories['io.flow.internal.v0.models.reporting_destination'](),
|
|
19471
|
+
payment: factories['io.flow.internal.v0.models.reporting_payment'](),
|
|
19715
19472
|
shipment: factories['io.flow.internal.v0.models.reporting_shipment'](),
|
|
19716
19473
|
is: factories['io.flow.internal.v0.models.reporting_fulfillment_is'](),
|
|
19717
19474
|
has: factories['io.flow.internal.v0.models.reporting_fulfillment_has'](),
|
|
@@ -19730,6 +19487,11 @@ const factories = {
|
|
|
19730
19487
|
wyol: factories.boolean(),
|
|
19731
19488
|
b2b: factories.boolean(),
|
|
19732
19489
|
domestic: factories.boolean(),
|
|
19490
|
+
combined_shipment: factories.boolean(),
|
|
19491
|
+
order_cancelled: factories.boolean(),
|
|
19492
|
+
lvg: factories.boolean(),
|
|
19493
|
+
tax_inclusive: factories.boolean(),
|
|
19494
|
+
duty_inclusive: factories.boolean(),
|
|
19733
19495
|
}),
|
|
19734
19496
|
|
|
19735
19497
|
'io.flow.internal.v0.models.reporting_fx': (): io.flow.internal.v0.models.ReportingFx => ({
|
|
@@ -19738,6 +19500,7 @@ const factories = {
|
|
|
19738
19500
|
product: factories['io.flow.internal.v0.models.reporting_usd'](),
|
|
19739
19501
|
tax: factories['io.flow.internal.v0.models.reporting_usd'](),
|
|
19740
19502
|
duty: factories['io.flow.internal.v0.models.reporting_usd'](),
|
|
19503
|
+
tips: factories['io.flow.internal.v0.models.reporting_usd'](),
|
|
19741
19504
|
total: factories['io.flow.internal.v0.models.reporting_usd'](),
|
|
19742
19505
|
}),
|
|
19743
19506
|
|
|
@@ -19755,6 +19518,7 @@ const factories = {
|
|
|
19755
19518
|
processing: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19756
19519
|
rate_lock: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19757
19520
|
transfer: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19521
|
+
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19758
19522
|
}),
|
|
19759
19523
|
|
|
19760
19524
|
'io.flow.internal.v0.models.reporting_merchant_subsidies': (): io.flow.internal.v0.models.ReportingMerchantSubsidies => ({
|
|
@@ -19762,6 +19526,7 @@ const factories = {
|
|
|
19762
19526
|
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19763
19527
|
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19764
19528
|
ccf: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19529
|
+
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19765
19530
|
}),
|
|
19766
19531
|
|
|
19767
19532
|
'io.flow.internal.v0.models.reporting_merchant_transactions': (): io.flow.internal.v0.models.ReportingMerchantTransactions => ({
|
|
@@ -19770,6 +19535,8 @@ const factories = {
|
|
|
19770
19535
|
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19771
19536
|
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19772
19537
|
freight: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19538
|
+
discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19539
|
+
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19773
19540
|
}),
|
|
19774
19541
|
|
|
19775
19542
|
'io.flow.internal.v0.models.reporting_monetary_value': (): io.flow.internal.v0.models.ReportingMonetaryValue => ({
|
|
@@ -19792,25 +19559,14 @@ const factories = {
|
|
|
19792
19559
|
}),
|
|
19793
19560
|
|
|
19794
19561
|
'io.flow.internal.v0.models.reporting_payment': (): io.flow.internal.v0.models.ReportingPayment => ({
|
|
19795
|
-
metadata: factories['io.flow.internal.v0.models.reporting_payment_metadata'](),
|
|
19796
19562
|
psp: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19797
19563
|
credit: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19564
|
+
subsidized: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19565
|
+
manual: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19566
|
+
cod: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19798
19567
|
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19799
19568
|
}),
|
|
19800
19569
|
|
|
19801
|
-
'io.flow.internal.v0.models.reporting_payment_metadata': (): io.flow.internal.v0.models.ReportingPaymentMetadata => ({
|
|
19802
|
-
gateway: factories['io.flow.internal.v0.enums.processor'](),
|
|
19803
|
-
method: factories.string(),
|
|
19804
|
-
psp_reference: factories.string(),
|
|
19805
|
-
authorization: factories['io.flow.internal.v0.models.reporting_authorization_reference'](),
|
|
19806
|
-
settlement_date: factories.date_time_iso_8601(),
|
|
19807
|
-
additional_authorizations: factories['io.flow.internal.v0.models.reporting_payment_metadata_additional_authorizations'](),
|
|
19808
|
-
}),
|
|
19809
|
-
|
|
19810
|
-
'io.flow.internal.v0.models.reporting_payment_metadata_additional_authorizations': (): io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations => ({
|
|
19811
|
-
ids: factories.string(),
|
|
19812
|
-
}),
|
|
19813
|
-
|
|
19814
19570
|
'io.flow.internal.v0.models.reporting_province': (): io.flow.internal.v0.models.ReportingProvince => ({
|
|
19815
19571
|
code: factories.string(),
|
|
19816
19572
|
name: factories.string(),
|
|
@@ -19839,6 +19595,7 @@ const factories = {
|
|
|
19839
19595
|
ccf: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19840
19596
|
emergency: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19841
19597
|
peak: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19598
|
+
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19842
19599
|
}),
|
|
19843
19600
|
|
|
19844
19601
|
'io.flow.internal.v0.models.reporting_usd': (): io.flow.internal.v0.models.ReportingUsd => ({
|
|
@@ -19866,6 +19623,10 @@ const factories = {
|
|
|
19866
19623
|
select_mismatching_item_types: factories.boolean(),
|
|
19867
19624
|
}),
|
|
19868
19625
|
|
|
19626
|
+
'io.flow.internal.v0.models.rescreen_restrictions_products': (): io.flow.internal.v0.models.RescreenRestrictionsProducts => ({
|
|
19627
|
+
placeholder: factories.boolean(),
|
|
19628
|
+
}),
|
|
19629
|
+
|
|
19869
19630
|
'io.flow.internal.v0.models.restriction_category': (): io.flow.internal.v0.models.RestrictionCategory => ({
|
|
19870
19631
|
category: factories.string(),
|
|
19871
19632
|
}),
|
|
@@ -20157,6 +19918,7 @@ const factories = {
|
|
|
20157
19918
|
shopper: factories['io.flow.internal.v0.models.shopper_summary'](),
|
|
20158
19919
|
merchant: factories['io.flow.internal.v0.models.merchant_summary'](),
|
|
20159
19920
|
remittance: factories['io.flow.internal.v0.models.remittance_responsibility'](),
|
|
19921
|
+
payment: factories['io.flow.internal.v0.models.payment_summary'](),
|
|
20160
19922
|
sequence_number: factories.long(),
|
|
20161
19923
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
20162
19924
|
trigger: factories['io.flow.internal.v0.unions.return_trigger'](),
|
|
@@ -20357,7 +20119,7 @@ const factories = {
|
|
|
20357
20119
|
discriminator: 'search_experiment_summary',
|
|
20358
20120
|
key: factories.string(),
|
|
20359
20121
|
name: factories.string(),
|
|
20360
|
-
status: factories['io.flow.internal.v0.enums.status'](),
|
|
20122
|
+
status: factories['io.flow.experiment.internal.v0.enums.status'](),
|
|
20361
20123
|
}),
|
|
20362
20124
|
|
|
20363
20125
|
'io.flow.internal.v0.models.search_item_summary': (): io.flow.internal.v0.models.SearchItemSummary => ({
|
|
@@ -21033,6 +20795,8 @@ const factories = {
|
|
|
21033
20795
|
id: factories.string(),
|
|
21034
20796
|
initial_catalog_synced_at: factories.date_time_iso_8601(),
|
|
21035
20797
|
catalog_sync_duration: factories.long(),
|
|
20798
|
+
restrictions_sync_duration: factories.long(),
|
|
20799
|
+
classifications_sync_duration: factories.long(),
|
|
21036
20800
|
catalog_products_count: factories.long(),
|
|
21037
20801
|
initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
|
|
21038
20802
|
}),
|
|
@@ -21106,6 +20870,7 @@ const factories = {
|
|
|
21106
20870
|
product: factories['io.flow.internal.v0.models.shopper_lines'](),
|
|
21107
20871
|
fees: factories['io.flow.internal.v0.models.shopper_fees'](),
|
|
21108
20872
|
freight: factories['io.flow.internal.v0.models.shopper_freight'](),
|
|
20873
|
+
tips: factories.decimal(),
|
|
21109
20874
|
order_discount: factories.decimal(),
|
|
21110
20875
|
total: factories.decimal(),
|
|
21111
20876
|
}),
|
|
@@ -21829,6 +21594,23 @@ const factories = {
|
|
|
21829
21594
|
name: factories.string(),
|
|
21830
21595
|
}),
|
|
21831
21596
|
|
|
21597
|
+
'io.flow.internal.v0.models.thiago_item': (): io.flow.internal.v0.models.ThiagoItem => ({
|
|
21598
|
+
id: factories.string(),
|
|
21599
|
+
number: factories.string(),
|
|
21600
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
21601
|
+
description: factories.string(),
|
|
21602
|
+
type: factories['io.flow.internal.v0.enums.thiago_item_type'](),
|
|
21603
|
+
added_on: factories.date_time_iso_8601(),
|
|
21604
|
+
}),
|
|
21605
|
+
|
|
21606
|
+
'io.flow.internal.v0.models.thiago_item_form': (): io.flow.internal.v0.models.ThiagoItemForm => ({
|
|
21607
|
+
number: factories.string(),
|
|
21608
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
21609
|
+
description: factories.string(),
|
|
21610
|
+
type: factories['io.flow.internal.v0.enums.thiago_item_type'](),
|
|
21611
|
+
added_on: factories.date_time_iso_8601(),
|
|
21612
|
+
}),
|
|
21613
|
+
|
|
21832
21614
|
'io.flow.internal.v0.models.third_party_logistics_partner': (): io.flow.internal.v0.models.ThirdPartyLogisticsPartner => ({
|
|
21833
21615
|
warehouse_address: factories['io.flow.common.v0.models.billing_address'](),
|
|
21834
21616
|
warehouse_url: factories.string(),
|
|
@@ -21907,6 +21689,47 @@ const factories = {
|
|
|
21907
21689
|
timezone: factories.string(),
|
|
21908
21690
|
}),
|
|
21909
21691
|
|
|
21692
|
+
'io.flow.internal.v0.models.tracking_assurance_analysis': (): io.flow.internal.v0.models.TrackingAssuranceAnalysis => ({
|
|
21693
|
+
id: factories.string(),
|
|
21694
|
+
job_id: factories.string(),
|
|
21695
|
+
label_id: factories.string(),
|
|
21696
|
+
order_number: factories.string(),
|
|
21697
|
+
carrier_tracking_number: factories.string(),
|
|
21698
|
+
flow_tracking_number: factories.string(),
|
|
21699
|
+
carrier_status: factories.string(),
|
|
21700
|
+
aftership_status: factories.string(),
|
|
21701
|
+
flow_status: factories.string(),
|
|
21702
|
+
latest_carrier_event_date: factories.date_time_iso_8601(),
|
|
21703
|
+
latest_aftership_event_date: factories.date_time_iso_8601(),
|
|
21704
|
+
latest_flow_event_date: factories.date_time_iso_8601(),
|
|
21705
|
+
label_created_at: factories.date_time_iso_8601(),
|
|
21706
|
+
carrier_id: factories.string(),
|
|
21707
|
+
carrier_origin_country: factories.string(),
|
|
21708
|
+
label_origin_country: factories.string(),
|
|
21709
|
+
label_destination_country: factories.string(),
|
|
21710
|
+
carrier_destination_country: factories.string(),
|
|
21711
|
+
}),
|
|
21712
|
+
|
|
21713
|
+
'io.flow.internal.v0.models.tracking_assurance_analysis_deleted': (): io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted => ({
|
|
21714
|
+
discriminator: 'tracking_assurance_analysis_deleted',
|
|
21715
|
+
event_id: factories.string(),
|
|
21716
|
+
timestamp: factories.date_time_iso_8601(),
|
|
21717
|
+
organization: factories.string(),
|
|
21718
|
+
id: factories.string(),
|
|
21719
|
+
}),
|
|
21720
|
+
|
|
21721
|
+
'io.flow.internal.v0.models.tracking_assurance_analysis_upserted': (): io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted => ({
|
|
21722
|
+
discriminator: 'tracking_assurance_analysis_upserted',
|
|
21723
|
+
event_id: factories.string(),
|
|
21724
|
+
timestamp: factories.date_time_iso_8601(),
|
|
21725
|
+
organization: factories.string(),
|
|
21726
|
+
analysis: factories['io.flow.internal.v0.models.tracking_assurance_analysis'](),
|
|
21727
|
+
}),
|
|
21728
|
+
|
|
21729
|
+
'io.flow.internal.v0.models.tracking_debug_force_transit_form': (): io.flow.internal.v0.models.TrackingDebugForceTransitForm => ({
|
|
21730
|
+
description: factories.string(),
|
|
21731
|
+
}),
|
|
21732
|
+
|
|
21910
21733
|
'io.flow.internal.v0.models.tracking_debug_label': (): io.flow.internal.v0.models.TrackingDebugLabel => ({
|
|
21911
21734
|
in_transit_location: factories['io.flow.internal.v0.models.tracking_debug_label_location'](),
|
|
21912
21735
|
delivery_location: factories['io.flow.internal.v0.models.tracking_debug_label_location'](),
|
|
@@ -22633,6 +22456,8 @@ const factories = {
|
|
|
22633
22456
|
() => factories['io.flow.internal.v0.models.sales_record_deleted'](),
|
|
22634
22457
|
() => factories['io.flow.internal.v0.models.revenue_record_upserted'](),
|
|
22635
22458
|
() => factories['io.flow.internal.v0.models.revenue_record_deleted'](),
|
|
22459
|
+
() => factories['io.flow.internal.v0.models.other_record_upserted'](),
|
|
22460
|
+
() => factories['io.flow.internal.v0.models.other_record_deleted'](),
|
|
22636
22461
|
() => factories['io.flow.internal.v0.models.calculator_organization_settings_upserted'](),
|
|
22637
22462
|
() => factories['io.flow.internal.v0.models.calculator_organization_settings_deleted'](),
|
|
22638
22463
|
() => factories['io.flow.internal.v0.models.carrier_account_upserted_v2'](),
|
|
@@ -22695,14 +22520,6 @@ const factories = {
|
|
|
22695
22520
|
() => factories['io.flow.internal.v0.models.experience_import_request'](),
|
|
22696
22521
|
() => factories['io.flow.internal.v0.models.submitted_order_upserted'](),
|
|
22697
22522
|
() => factories['io.flow.internal.v0.models.levy_rate_summary_upserted'](),
|
|
22698
|
-
() => factories['io.flow.internal.v0.models.experiment_upserted'](),
|
|
22699
|
-
() => factories['io.flow.internal.v0.models.experiment_deleted'](),
|
|
22700
|
-
() => factories['io.flow.internal.v0.models.experiment_results_upserted'](),
|
|
22701
|
-
() => factories['io.flow.internal.v0.models.experiment_results_deleted'](),
|
|
22702
|
-
() => factories['io.flow.internal.v0.models.daily_experiment_results_upserted'](),
|
|
22703
|
-
() => factories['io.flow.internal.v0.models.daily_experiment_results_deleted'](),
|
|
22704
|
-
() => factories['io.flow.internal.v0.models.experiment_milestone_upserted'](),
|
|
22705
|
-
() => factories['io.flow.internal.v0.models.experiment_milestone_deleted'](),
|
|
22706
22523
|
() => factories['io.flow.internal.v0.models.export_completed'](),
|
|
22707
22524
|
() => factories['io.flow.internal.v0.models.export_failed'](),
|
|
22708
22525
|
() => factories['io.flow.internal.v0.models.feature_upserted'](),
|
|
@@ -22737,6 +22554,12 @@ const factories = {
|
|
|
22737
22554
|
() => factories['io.flow.internal.v0.models.fraud_pending_review_deleted'](),
|
|
22738
22555
|
() => factories['io.flow.internal.v0.models.fraud_review_decision_upserted'](),
|
|
22739
22556
|
() => factories['io.flow.internal.v0.models.fraud_review_decision_deleted'](),
|
|
22557
|
+
() => factories['io.flow.internal.v0.models.fraud_review_authorization_upserted'](),
|
|
22558
|
+
() => factories['io.flow.internal.v0.models.fraud_review_authorization_deleted'](),
|
|
22559
|
+
() => factories['io.flow.internal.v0.models.fraud_pending_review_authorization_upserted'](),
|
|
22560
|
+
() => factories['io.flow.internal.v0.models.fraud_pending_review_authorization_deleted'](),
|
|
22561
|
+
() => factories['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'](),
|
|
22562
|
+
() => factories['io.flow.internal.v0.models.fraud_review_authorization_decision_deleted'](),
|
|
22740
22563
|
() => factories['io.flow.internal.v0.models.fraud_provider_configuration_upserted'](),
|
|
22741
22564
|
() => factories['io.flow.internal.v0.models.fraud_provider_configuration_deleted'](),
|
|
22742
22565
|
() => factories['io.flow.internal.v0.models.manual_review_rule_upserted'](),
|
|
@@ -22814,6 +22637,8 @@ const factories = {
|
|
|
22814
22637
|
() => factories['io.flow.internal.v0.models.organization_deactivation_deleted'](),
|
|
22815
22638
|
() => factories['io.flow.internal.v0.models.merchant_guid_assignment_upserted'](),
|
|
22816
22639
|
() => factories['io.flow.internal.v0.models.merchant_guid_assignment_deleted'](),
|
|
22640
|
+
() => factories['io.flow.internal.v0.models.organization_metadata_upserted'](),
|
|
22641
|
+
() => factories['io.flow.internal.v0.models.organization_metadata_deleted'](),
|
|
22817
22642
|
() => factories['io.flow.internal.v0.models.partner_organization_settings_upserted'](),
|
|
22818
22643
|
() => factories['io.flow.internal.v0.models.partner_organization_settings_deleted'](),
|
|
22819
22644
|
() => factories['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'](),
|
|
@@ -22889,6 +22714,8 @@ const factories = {
|
|
|
22889
22714
|
() => factories['io.flow.internal.v0.models.channel_order_summary_deleted'](),
|
|
22890
22715
|
() => factories['io.flow.internal.v0.models.channel_organization_identifier_upserted'](),
|
|
22891
22716
|
() => factories['io.flow.internal.v0.models.channel_organization_identifier_deleted'](),
|
|
22717
|
+
() => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted'](),
|
|
22718
|
+
() => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'](),
|
|
22892
22719
|
() => factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'](),
|
|
22893
22720
|
() => factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'](),
|
|
22894
22721
|
() => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'](),
|
|
@@ -22907,8 +22734,16 @@ const factories = {
|
|
|
22907
22734
|
() => factories['io.flow.internal.v0.models.svitlana_item_deleted'](),
|
|
22908
22735
|
() => factories['io.flow.internal.v0.models.colm_item_upserted'](),
|
|
22909
22736
|
() => factories['io.flow.internal.v0.models.colm_item_deleted'](),
|
|
22737
|
+
() => factories['io.flow.internal.v0.models.harinath_item_upserted'](),
|
|
22738
|
+
() => factories['io.flow.internal.v0.models.harinath_item_deleted'](),
|
|
22739
|
+
() => factories['io.flow.internal.v0.models.konstantin_item_upserted'](),
|
|
22740
|
+
() => factories['io.flow.internal.v0.models.konstantin_item_deleted'](),
|
|
22910
22741
|
() => factories['io.flow.internal.v0.models.matias_item_upserted'](),
|
|
22911
22742
|
() => factories['io.flow.internal.v0.models.matias_item_deleted'](),
|
|
22743
|
+
() => factories['io.flow.internal.v0.models.michaelyan_item_upserted'](),
|
|
22744
|
+
() => factories['io.flow.internal.v0.models.michaelyan_item_deleted'](),
|
|
22745
|
+
() => factories['io.flow.internal.v0.models.miljenko_item_upserted'](),
|
|
22746
|
+
() => factories['io.flow.internal.v0.models.miljenko_item_deleted'](),
|
|
22912
22747
|
() => factories['io.flow.internal.v0.models.shruti_demo_item_upserted'](),
|
|
22913
22748
|
() => factories['io.flow.internal.v0.models.shruti_demo_item_deleted'](),
|
|
22914
22749
|
() => factories['io.flow.internal.v0.models.tam_item_upserted'](),
|
|
@@ -22921,6 +22756,8 @@ const factories = {
|
|
|
22921
22756
|
() => factories['io.flow.internal.v0.models.tracking_label_deleted'](),
|
|
22922
22757
|
() => factories['io.flow.internal.v0.models.tracking_upserted'](),
|
|
22923
22758
|
() => factories['io.flow.internal.v0.models.tracking_deleted'](),
|
|
22759
|
+
() => factories['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'](),
|
|
22760
|
+
() => factories['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'](),
|
|
22924
22761
|
() => factories['io.flow.internal.v0.models.tracking_request_upserted'](),
|
|
22925
22762
|
() => factories['io.flow.internal.v0.models.tracking_response_upserted'](),
|
|
22926
22763
|
() => factories['io.flow.internal.v0.models.user_upserted_v2'](),
|
|
@@ -22930,15 +22767,6 @@ const factories = {
|
|
|
22930
22767
|
return f();
|
|
22931
22768
|
},
|
|
22932
22769
|
|
|
22933
|
-
'io.flow.internal.v0.unions.experiment': (): io.flow.internal.v0.unions.Experiment => {
|
|
22934
|
-
const f = faker.helpers.arrayElement([
|
|
22935
|
-
() => factories['io.flow.internal.v0.models.experience_experiment'](),
|
|
22936
|
-
() => factories['io.flow.internal.v0.models.feature_experiment'](),
|
|
22937
|
-
]);
|
|
22938
|
-
|
|
22939
|
-
return f();
|
|
22940
|
-
},
|
|
22941
|
-
|
|
22942
22770
|
'io.flow.internal.v0.unions.explicit_statement_form': (): io.flow.internal.v0.unions.ExplicitStatementForm => {
|
|
22943
22771
|
const f = faker.helpers.arrayElement([
|
|
22944
22772
|
() => factories['io.flow.internal.v0.models.explicit_statement_form_transaction_ids'](),
|
|
@@ -23500,24 +23328,6 @@ const factories = {
|
|
|
23500
23328
|
return f();
|
|
23501
23329
|
},
|
|
23502
23330
|
|
|
23503
|
-
'io.flow.internal.v0.unions.variant': (): io.flow.internal.v0.unions.Variant => {
|
|
23504
|
-
const f = faker.helpers.arrayElement([
|
|
23505
|
-
() => factories['io.flow.internal.v0.models.experience_variant'](),
|
|
23506
|
-
() => factories['io.flow.internal.v0.models.feature_variant'](),
|
|
23507
|
-
]);
|
|
23508
|
-
|
|
23509
|
-
return f();
|
|
23510
|
-
},
|
|
23511
|
-
|
|
23512
|
-
'io.flow.internal.v0.unions.variant_form': (): io.flow.internal.v0.unions.VariantForm => {
|
|
23513
|
-
const f = faker.helpers.arrayElement([
|
|
23514
|
-
() => factories['io.flow.internal.v0.models.experience_variant_form'](),
|
|
23515
|
-
() => factories['io.flow.internal.v0.models.feature_variant_form'](),
|
|
23516
|
-
]);
|
|
23517
|
-
|
|
23518
|
-
return f();
|
|
23519
|
-
},
|
|
23520
|
-
|
|
23521
23331
|
'io.flow.inventory.v0.enums.aggregate': (): io.flow.inventory.v0.enums.Aggregate => faker.helpers.arrayElement(['maximum', 'minimum']),
|
|
23522
23332
|
'io.flow.inventory.v0.enums.inventory_status': (): io.flow.inventory.v0.enums.InventoryStatus => faker.helpers.arrayElement(['has_inventory', 'no_inventory']),
|
|
23523
23333
|
'io.flow.inventory.v0.enums.update_type': (): io.flow.inventory.v0.enums.UpdateType => faker.helpers.arrayElement(['change', 'set']),
|
|
@@ -24504,6 +24314,7 @@ const factories = {
|
|
|
24504
24314
|
'business_street_address_is_po_box',
|
|
24505
24315
|
'exception_merchant',
|
|
24506
24316
|
'application_missing',
|
|
24317
|
+
'missing_logistics_contact_info',
|
|
24507
24318
|
]),
|
|
24508
24319
|
|
|
24509
24320
|
'io.flow.organization.onboarding.state.v0.models.activation_put_form': (): io.flow.organization.onboarding.state.v0.models.ActivationPutForm => ({
|
|
@@ -24566,6 +24377,11 @@ const factories = {
|
|
|
24566
24377
|
onboarding_started_at: factories.date_time_iso_8601(),
|
|
24567
24378
|
}),
|
|
24568
24379
|
|
|
24380
|
+
'io.flow.organization.onboarding.state.v0.models.rejection_put_form': (): io.flow.organization.onboarding.state.v0.models.RejectionPutForm => ({
|
|
24381
|
+
reason: factories['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'](),
|
|
24382
|
+
description: factories.string(),
|
|
24383
|
+
}),
|
|
24384
|
+
|
|
24569
24385
|
'io.flow.organization.onboarding.state.v0.models.setup_blocked': (): io.flow.organization.onboarding.state.v0.models.SetupBlocked => ({
|
|
24570
24386
|
discriminator: 'setup_blocked',
|
|
24571
24387
|
|
|
@@ -24941,6 +24757,7 @@ const factories = {
|
|
|
24941
24757
|
'order_missing_information',
|
|
24942
24758
|
'order_domestic',
|
|
24943
24759
|
'order_mismatched_currencies',
|
|
24760
|
+
'order_missing',
|
|
24944
24761
|
]),
|
|
24945
24762
|
|
|
24946
24763
|
'io.flow.payment.gateway.v0.enums.payment_request_review_status': (): io.flow.payment.gateway.v0.enums.PaymentRequestReviewStatus => faker.helpers.arrayElement(['pending', 'approved', 'rejected']),
|
|
@@ -25540,6 +25357,11 @@ const factories = {
|
|
|
25540
25357
|
review: factories['io.flow.payment.gateway.v0.models.payment_request_review'](),
|
|
25541
25358
|
}),
|
|
25542
25359
|
|
|
25360
|
+
'io.flow.payment.gateway.v0.models.payment_request_cancellation_reason_order_missing': (): io.flow.payment.gateway.v0.models.PaymentRequestCancellationReasonOrderMissing => ({
|
|
25361
|
+
type: 'order_missing',
|
|
25362
|
+
description: factories.string(),
|
|
25363
|
+
}),
|
|
25364
|
+
|
|
25543
25365
|
'io.flow.payment.gateway.v0.models.payment_request_form': (): io.flow.payment.gateway.v0.models.PaymentRequestForm => ({
|
|
25544
25366
|
amount: factories.decimal(),
|
|
25545
25367
|
currency: factories.string(),
|
|
@@ -25755,6 +25577,14 @@ const factories = {
|
|
|
25755
25577
|
return f();
|
|
25756
25578
|
},
|
|
25757
25579
|
|
|
25580
|
+
'io.flow.payment.gateway.v0.unions.payment_request_cancellation_reason': (): io.flow.payment.gateway.v0.unions.PaymentRequestCancellationReason => {
|
|
25581
|
+
const f = faker.helpers.arrayElement([
|
|
25582
|
+
() => factories['io.flow.payment.gateway.v0.models.payment_request_cancellation_reason_order_missing'](),
|
|
25583
|
+
]);
|
|
25584
|
+
|
|
25585
|
+
return f();
|
|
25586
|
+
},
|
|
25587
|
+
|
|
25758
25588
|
'io.flow.payment.gateway.v0.unions.sdk_adyen_v3_authentication_token': (): io.flow.payment.gateway.v0.unions.SdkAdyenV3AuthenticationToken => {
|
|
25759
25589
|
const f = faker.helpers.arrayElement([
|
|
25760
25590
|
() => factories['io.flow.payment.gateway.v0.models.adyen_v3_fingerprint_token'](),
|
|
@@ -27491,6 +27321,15 @@ const factories = {
|
|
|
27491
27321
|
processor: factories.string(),
|
|
27492
27322
|
}),
|
|
27493
27323
|
|
|
27324
|
+
'io.flow.payment.v0.models.payment_processor_transaction_details_apm': (): io.flow.payment.v0.models.PaymentProcessorTransactionDetailsApm => ({
|
|
27325
|
+
discriminator: 'apm',
|
|
27326
|
+
transaction_identifier: factories.string(),
|
|
27327
|
+
capture_identifier: factories.string(),
|
|
27328
|
+
method_type: factories.string(),
|
|
27329
|
+
result_status: factories.string(),
|
|
27330
|
+
reason_code: factories.string(),
|
|
27331
|
+
}),
|
|
27332
|
+
|
|
27494
27333
|
'io.flow.payment.v0.models.payment_processor_transaction_details_card': (): io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard => ({
|
|
27495
27334
|
discriminator: 'card',
|
|
27496
27335
|
transaction_identifier: factories.string(),
|
|
@@ -27520,6 +27359,7 @@ const factories = {
|
|
|
27520
27359
|
'io.flow.payment.v0.models.paypal_authorization_details': (): io.flow.payment.v0.models.PaypalAuthorizationDetails => ({
|
|
27521
27360
|
discriminator: 'paypal_authorization_details',
|
|
27522
27361
|
payment_id: factories.string(),
|
|
27362
|
+
internal_payment_id: factories.string(),
|
|
27523
27363
|
payment_method: factories.string(),
|
|
27524
27364
|
payment_state: factories.string(),
|
|
27525
27365
|
payer_id: factories.string(),
|
|
@@ -27987,6 +27827,7 @@ const factories = {
|
|
|
27987
27827
|
'io.flow.payment.v0.unions.payment_processor_transaction_details': (): io.flow.payment.v0.unions.PaymentProcessorTransactionDetails => {
|
|
27988
27828
|
const f = faker.helpers.arrayElement([
|
|
27989
27829
|
() => factories['io.flow.payment.v0.models.payment_processor_transaction_details_card'](),
|
|
27830
|
+
() => factories['io.flow.payment.v0.models.payment_processor_transaction_details_apm'](),
|
|
27990
27831
|
]);
|
|
27991
27832
|
|
|
27992
27833
|
return f();
|
|
@@ -29615,6 +29456,7 @@ const factories = {
|
|
|
29615
29456
|
published_at: factories.date_time_iso_8601(),
|
|
29616
29457
|
created_at: factories.date_time_iso_8601(),
|
|
29617
29458
|
updated_at: factories.date_time_iso_8601(),
|
|
29459
|
+
has_variants_that_requires_components: factories.boolean(),
|
|
29618
29460
|
}),
|
|
29619
29461
|
|
|
29620
29462
|
'io.flow.shopify.external.v0.models.product_delete': (): io.flow.shopify.external.v0.models.ProductDelete => ({
|
|
@@ -30455,6 +30297,21 @@ const factories = {
|
|
|
30455
30297
|
channel_organization_identifier: factories['io.flow.shopify.markets.internal.v0.models.channel_organization_identifier'](),
|
|
30456
30298
|
}),
|
|
30457
30299
|
|
|
30300
|
+
'io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_deleted': (): io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted => ({
|
|
30301
|
+
discriminator: 'order_tax_and_duty_inclusivity_setting_deleted',
|
|
30302
|
+
event_id: factories.string(),
|
|
30303
|
+
timestamp: factories.date_time_iso_8601(),
|
|
30304
|
+
organization: factories.string(),
|
|
30305
|
+
id: factories.string(),
|
|
30306
|
+
}),
|
|
30307
|
+
|
|
30308
|
+
'io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted': (): io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted => ({
|
|
30309
|
+
discriminator: 'order_tax_and_duty_inclusivity_setting_upserted',
|
|
30310
|
+
event_id: factories.string(),
|
|
30311
|
+
timestamp: factories.date_time_iso_8601(),
|
|
30312
|
+
order_tax_and_duty_inclusivity_setting: factories['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'](),
|
|
30313
|
+
}),
|
|
30314
|
+
|
|
30458
30315
|
'io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted => ({
|
|
30459
30316
|
discriminator: 'shopify_markets_metrics_deleted',
|
|
30460
30317
|
event_id: factories.string(),
|
|
@@ -30554,6 +30411,8 @@ const factories = {
|
|
|
30554
30411
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_deleted'](),
|
|
30555
30412
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_upserted'](),
|
|
30556
30413
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_deleted'](),
|
|
30414
|
+
() => factories['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'](),
|
|
30415
|
+
() => factories['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_deleted'](),
|
|
30557
30416
|
]);
|
|
30558
30417
|
|
|
30559
30418
|
return f();
|
|
@@ -30604,6 +30463,13 @@ const factories = {
|
|
|
30604
30463
|
'other',
|
|
30605
30464
|
]),
|
|
30606
30465
|
|
|
30466
|
+
'io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting': (): io.flow.shopify.markets.internal.v0.enums.TaxAndDutyInclusivitySetting => faker.helpers.arrayElement([
|
|
30467
|
+
'duty_exclusive_tax_exclusive',
|
|
30468
|
+
'duty_inclusive_tax_exclusive',
|
|
30469
|
+
'duty_exclusive_tax_inclusive',
|
|
30470
|
+
'duty_inclusive_tax_inclusive',
|
|
30471
|
+
]),
|
|
30472
|
+
|
|
30607
30473
|
'io.flow.shopify.markets.internal.v0.models.catalog_publication_sync_validation_error': (): io.flow.shopify.markets.internal.v0.models.CatalogPublicationSyncValidationError => ({
|
|
30608
30474
|
message: factories.string(),
|
|
30609
30475
|
reason: factories.string(),
|
|
@@ -30650,6 +30516,14 @@ const factories = {
|
|
|
30650
30516
|
id: factories.string(),
|
|
30651
30517
|
}),
|
|
30652
30518
|
|
|
30519
|
+
'io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting': (): io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting => ({
|
|
30520
|
+
id: factories.string(),
|
|
30521
|
+
organization_id: factories.string(),
|
|
30522
|
+
shopify_order_id: factories.string(),
|
|
30523
|
+
order_number: factories.string(),
|
|
30524
|
+
tax_and_duty_inclusivity_setting: factories['io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting'](),
|
|
30525
|
+
}),
|
|
30526
|
+
|
|
30653
30527
|
'io.flow.shopify.markets.internal.v0.models.order_validation_error': (): io.flow.shopify.markets.internal.v0.models.OrderValidationError => ({
|
|
30654
30528
|
message: factories.string(),
|
|
30655
30529
|
reason: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'](),
|
|
@@ -30781,6 +30655,8 @@ const factories = {
|
|
|
30781
30655
|
id: factories.string(),
|
|
30782
30656
|
initial_catalog_synced_at: factories.date_time_iso_8601(),
|
|
30783
30657
|
catalog_sync_duration: factories.long(),
|
|
30658
|
+
restrictions_sync_duration: factories.long(),
|
|
30659
|
+
classifications_sync_duration: factories.long(),
|
|
30784
30660
|
catalog_products_count: factories.long(),
|
|
30785
30661
|
initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
|
|
30786
30662
|
}),
|
|
@@ -30886,7 +30762,16 @@ const factories = {
|
|
|
30886
30762
|
'io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status_type': (): io.flow.shopify.markets.v0.enums.ShopifyOrderFulfillmentStatusType => faker.helpers.arrayElement(['fulfilled', 'null', 'partial']),
|
|
30887
30763
|
'io.flow.shopify.markets.v0.enums.shopify_order_inventory_behaviour': (): io.flow.shopify.markets.v0.enums.ShopifyOrderInventoryBehaviour => faker.helpers.arrayElement(['bypass', 'decrement_ignoring_policy', 'decrement_obeying_policy']),
|
|
30888
30764
|
'io.flow.shopify.markets.v0.enums.shopify_order_kind_type': (): io.flow.shopify.markets.v0.enums.ShopifyOrderKindType => faker.helpers.arrayElement(['authorization', 'capture', 'sale', 'void', 'refund']),
|
|
30889
|
-
|
|
30765
|
+
|
|
30766
|
+
'io.flow.shopify.markets.v0.enums.shopify_order_payment_gateway_names': (): io.flow.shopify.markets.v0.enums.ShopifyOrderPaymentGatewayNames => faker.helpers.arrayElement([
|
|
30767
|
+
'flow_commerce',
|
|
30768
|
+
'gift_card',
|
|
30769
|
+
'manual',
|
|
30770
|
+
'shopify_payments',
|
|
30771
|
+
'shop_cash',
|
|
30772
|
+
'shopify_store_credit',
|
|
30773
|
+
]),
|
|
30774
|
+
|
|
30890
30775
|
'io.flow.shopify.markets.v0.enums.shopify_order_processing_method_type': (): io.flow.shopify.markets.v0.enums.ShopifyOrderProcessingMethodType => faker.helpers.arrayElement(['checkout', 'direct', 'manual', 'offsite', 'express', 'deferred_payment']),
|
|
30891
30776
|
'io.flow.shopify.markets.v0.enums.shopify_order_restock_type': (): io.flow.shopify.markets.v0.enums.ShopifyOrderRestockType => faker.helpers.arrayElement(['no_restock', 'cancel', 'return']),
|
|
30892
30777
|
'io.flow.shopify.markets.v0.enums.shopify_order_status_type': (): io.flow.shopify.markets.v0.enums.ShopifyOrderStatusType => faker.helpers.arrayElement(['open', 'closed', 'cancelled', 'any']),
|
|
@@ -32161,6 +32046,45 @@ const factories = {
|
|
|
32161
32046
|
'io.flow.stripe.v0.enums.account_type': (): io.flow.stripe.v0.enums.AccountType => faker.helpers.arrayElement(['platform', 'custom', 'standard', 'express']),
|
|
32162
32047
|
'io.flow.stripe.v0.enums.apple_pay_type': (): io.flow.stripe.v0.enums.ApplePayType => faker.helpers.arrayElement(['apple_pay', 'apple_pay_later']),
|
|
32163
32048
|
|
|
32049
|
+
'io.flow.stripe.v0.enums.bank_ideal': (): io.flow.stripe.v0.enums.BankIdeal => faker.helpers.arrayElement([
|
|
32050
|
+
'abn_amro',
|
|
32051
|
+
'asn_bank',
|
|
32052
|
+
'bunq',
|
|
32053
|
+
'handelsbanken',
|
|
32054
|
+
'ing',
|
|
32055
|
+
'knab',
|
|
32056
|
+
'moneyou',
|
|
32057
|
+
'n26',
|
|
32058
|
+
'nn',
|
|
32059
|
+
'rabobank',
|
|
32060
|
+
'regiobank',
|
|
32061
|
+
'revolut',
|
|
32062
|
+
'sns_bank',
|
|
32063
|
+
'triodos_bank',
|
|
32064
|
+
'van_lanschot',
|
|
32065
|
+
'yoursafe',
|
|
32066
|
+
]),
|
|
32067
|
+
|
|
32068
|
+
'io.flow.stripe.v0.enums.bic_ideal': (): io.flow.stripe.v0.enums.BicIdeal => faker.helpers.arrayElement([
|
|
32069
|
+
'ABNANL2A',
|
|
32070
|
+
'ASNBNL21',
|
|
32071
|
+
'BITSNL2A',
|
|
32072
|
+
'BUNQNL2A',
|
|
32073
|
+
'FVLBNL22',
|
|
32074
|
+
'HANDNL2A',
|
|
32075
|
+
'INGBNL2A',
|
|
32076
|
+
'KNABNL2H',
|
|
32077
|
+
'MOYONL21',
|
|
32078
|
+
'NNBANL2G',
|
|
32079
|
+
'NTSBDEB1',
|
|
32080
|
+
'RABONL2U',
|
|
32081
|
+
'RBRBNL21',
|
|
32082
|
+
'REVOIE23',
|
|
32083
|
+
'REVOLT21',
|
|
32084
|
+
'SNSBNL2A',
|
|
32085
|
+
'TRIONL2U',
|
|
32086
|
+
]),
|
|
32087
|
+
|
|
32164
32088
|
'io.flow.stripe.v0.enums.cancellation_reason': (): io.flow.stripe.v0.enums.CancellationReason => faker.helpers.arrayElement([
|
|
32165
32089
|
'abandoned',
|
|
32166
32090
|
'automatic',
|
|
@@ -32251,6 +32175,44 @@ const factories = {
|
|
|
32251
32175
|
'requested_block_on_incorrect_cvc',
|
|
32252
32176
|
]),
|
|
32253
32177
|
|
|
32178
|
+
'io.flow.stripe.v0.enums.dispute_event_type': (): io.flow.stripe.v0.enums.DisputeEventType => faker.helpers.arrayElement([
|
|
32179
|
+
'charge.dispute.closed',
|
|
32180
|
+
'charge.dispute.created',
|
|
32181
|
+
'charge.dispute.funds_reinstated',
|
|
32182
|
+
'charge.dispute.funds_withdrawn',
|
|
32183
|
+
'charge.dispute.updated',
|
|
32184
|
+
]),
|
|
32185
|
+
|
|
32186
|
+
'io.flow.stripe.v0.enums.dispute_payment_method_details_card_case_type': (): io.flow.stripe.v0.enums.DisputePaymentMethodDetailsCardCaseType => faker.helpers.arrayElement(['chargeback', 'inquiry']),
|
|
32187
|
+
'io.flow.stripe.v0.enums.dispute_payment_method_details_type': (): io.flow.stripe.v0.enums.DisputePaymentMethodDetailsType => faker.helpers.arrayElement(['card', 'klarna', 'paypal']),
|
|
32188
|
+
|
|
32189
|
+
'io.flow.stripe.v0.enums.dispute_reason': (): io.flow.stripe.v0.enums.DisputeReason => faker.helpers.arrayElement([
|
|
32190
|
+
'bank_cannot_process',
|
|
32191
|
+
'check_returned',
|
|
32192
|
+
'credit_not_processed',
|
|
32193
|
+
'customer_initiated',
|
|
32194
|
+
'debit_not_authorized',
|
|
32195
|
+
'duplicate',
|
|
32196
|
+
'fraudulent',
|
|
32197
|
+
'general',
|
|
32198
|
+
'incorrect_account_details',
|
|
32199
|
+
'insufficient_funds',
|
|
32200
|
+
'product_not_received',
|
|
32201
|
+
'product_unacceptable',
|
|
32202
|
+
'subscription_canceled',
|
|
32203
|
+
'unrecognized',
|
|
32204
|
+
]),
|
|
32205
|
+
|
|
32206
|
+
'io.flow.stripe.v0.enums.dispute_status': (): io.flow.stripe.v0.enums.DisputeStatus => faker.helpers.arrayElement([
|
|
32207
|
+
'warning_needs_response',
|
|
32208
|
+
'warning_under_review',
|
|
32209
|
+
'warning_closed',
|
|
32210
|
+
'needs_response',
|
|
32211
|
+
'under_review',
|
|
32212
|
+
'won',
|
|
32213
|
+
'lost',
|
|
32214
|
+
]),
|
|
32215
|
+
|
|
32254
32216
|
'io.flow.stripe.v0.enums.error_code': (): io.flow.stripe.v0.enums.ErrorCode => faker.helpers.arrayElement([
|
|
32255
32217
|
'invalid_number',
|
|
32256
32218
|
'invalid_expiry_month',
|
|
@@ -32345,6 +32307,11 @@ const factories = {
|
|
|
32345
32307
|
'charge.succeeded',
|
|
32346
32308
|
'charge.updated',
|
|
32347
32309
|
'charge.refund.updated',
|
|
32310
|
+
'charge.dispute.closed',
|
|
32311
|
+
'charge.dispute.created',
|
|
32312
|
+
'charge.dispute.funds_reinstated',
|
|
32313
|
+
'charge.dispute.funds_withdrawn',
|
|
32314
|
+
'charge.dispute.updated',
|
|
32348
32315
|
'payment_intent.created',
|
|
32349
32316
|
'payment_intent.amount_capturable_updated',
|
|
32350
32317
|
'payment_intent.payment_failed',
|
|
@@ -32391,9 +32358,10 @@ const factories = {
|
|
|
32391
32358
|
]),
|
|
32392
32359
|
|
|
32393
32360
|
'io.flow.stripe.v0.enums.payment_method_category_klarna': (): io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna => faker.helpers.arrayElement(['pay_later', 'pay_now', 'pay_with_financing', 'pay_in_installments']),
|
|
32394
|
-
'io.flow.stripe.v0.enums.payment_method_type': (): io.flow.stripe.v0.enums.PaymentMethodType => faker.helpers.arrayElement(['card', 'card_present', 'klarna']),
|
|
32361
|
+
'io.flow.stripe.v0.enums.payment_method_type': (): io.flow.stripe.v0.enums.PaymentMethodType => faker.helpers.arrayElement(['card', 'card_present', 'ideal', 'klarna', 'bancontact']),
|
|
32395
32362
|
'io.flow.stripe.v0.enums.payment_outcome_type': (): io.flow.stripe.v0.enums.PaymentOutcomeType => faker.helpers.arrayElement(['authorized', 'manual_review', 'issuer_declined', 'blocked', 'invalid']),
|
|
32396
32363
|
'io.flow.stripe.v0.enums.payment_status': (): io.flow.stripe.v0.enums.PaymentStatus => faker.helpers.arrayElement(['succeeded', 'pending', 'failed']),
|
|
32364
|
+
'io.flow.stripe.v0.enums.preferred_language_bancontact': (): io.flow.stripe.v0.enums.PreferredLanguageBancontact => faker.helpers.arrayElement(['de', 'en', 'fr', 'nl']),
|
|
32397
32365
|
|
|
32398
32366
|
'io.flow.stripe.v0.enums.preferred_locale_klarna': (): io.flow.stripe.v0.enums.PreferredLocaleKlarna => faker.helpers.arrayElement([
|
|
32399
32367
|
'de-AT',
|
|
@@ -32718,6 +32686,54 @@ const factories = {
|
|
|
32718
32686
|
description: factories.string(),
|
|
32719
32687
|
}),
|
|
32720
32688
|
|
|
32689
|
+
'io.flow.stripe.v0.models.dispute': (): io.flow.stripe.v0.models.Dispute => ({
|
|
32690
|
+
id: factories.string(),
|
|
32691
|
+
amount: factories.integer(),
|
|
32692
|
+
charge: factories.string(),
|
|
32693
|
+
currency: factories.string(),
|
|
32694
|
+
evidence: factories.object(),
|
|
32695
|
+
metadata: objectOf(() => factories.string()),
|
|
32696
|
+
payment_intent: factories.string(),
|
|
32697
|
+
reason: factories['io.flow.stripe.v0.enums.dispute_reason'](),
|
|
32698
|
+
status: factories['io.flow.stripe.v0.enums.dispute_status'](),
|
|
32699
|
+
object: factories.string(),
|
|
32700
|
+
balance_transactions: arrayOf(() => factories.object()),
|
|
32701
|
+
created: factories.long(),
|
|
32702
|
+
evidence_details: factories['io.flow.stripe.v0.models.dispute_evidence_details'](),
|
|
32703
|
+
is_charge_refundable: factories.boolean(),
|
|
32704
|
+
livemode: factories.boolean(),
|
|
32705
|
+
payment_method_details: factories['io.flow.stripe.v0.models.dispute_payment_method_details'](),
|
|
32706
|
+
}),
|
|
32707
|
+
|
|
32708
|
+
'io.flow.stripe.v0.models.dispute_evidence_details': (): io.flow.stripe.v0.models.DisputeEvidenceDetails => ({
|
|
32709
|
+
due_by: factories.long(),
|
|
32710
|
+
has_evidence: factories.boolean(),
|
|
32711
|
+
past_due: factories.boolean(),
|
|
32712
|
+
submission_count: factories.integer(),
|
|
32713
|
+
}),
|
|
32714
|
+
|
|
32715
|
+
'io.flow.stripe.v0.models.dispute_payment_method_details': (): io.flow.stripe.v0.models.DisputePaymentMethodDetails => ({
|
|
32716
|
+
card: factories['io.flow.stripe.v0.models.dispute_payment_method_details_card'](),
|
|
32717
|
+
klarna: factories['io.flow.stripe.v0.models.dispute_payment_method_details_klarna'](),
|
|
32718
|
+
paypal: factories['io.flow.stripe.v0.models.dispute_payment_method_details_paypal'](),
|
|
32719
|
+
type: factories['io.flow.stripe.v0.enums.dispute_payment_method_details_type'](),
|
|
32720
|
+
}),
|
|
32721
|
+
|
|
32722
|
+
'io.flow.stripe.v0.models.dispute_payment_method_details_card': (): io.flow.stripe.v0.models.DisputePaymentMethodDetailsCard => ({
|
|
32723
|
+
brand: factories.string(),
|
|
32724
|
+
case_type: factories['io.flow.stripe.v0.enums.dispute_payment_method_details_card_case_type'](),
|
|
32725
|
+
network_reason_code: factories.string(),
|
|
32726
|
+
}),
|
|
32727
|
+
|
|
32728
|
+
'io.flow.stripe.v0.models.dispute_payment_method_details_klarna': (): io.flow.stripe.v0.models.DisputePaymentMethodDetailsKlarna => ({
|
|
32729
|
+
reason_code: factories.string(),
|
|
32730
|
+
}),
|
|
32731
|
+
|
|
32732
|
+
'io.flow.stripe.v0.models.dispute_payment_method_details_paypal': (): io.flow.stripe.v0.models.DisputePaymentMethodDetailsPaypal => ({
|
|
32733
|
+
case_id: factories.string(),
|
|
32734
|
+
reason_code: factories.string(),
|
|
32735
|
+
}),
|
|
32736
|
+
|
|
32721
32737
|
'io.flow.stripe.v0.models.error': (): io.flow.stripe.v0.models.Error => ({
|
|
32722
32738
|
error: factories['io.flow.stripe.v0.models.stripe_error'](),
|
|
32723
32739
|
}),
|
|
@@ -32976,8 +32992,10 @@ const factories = {
|
|
|
32976
32992
|
id: factories.string(),
|
|
32977
32993
|
object: factories.string(),
|
|
32978
32994
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
32995
|
+
bancontact: factories.object(),
|
|
32979
32996
|
card: factories['io.flow.stripe.v0.models.payment_method_card_details'](),
|
|
32980
32997
|
card_present: factories.object(),
|
|
32998
|
+
ideal: factories.object(),
|
|
32981
32999
|
klarna: factories.object(),
|
|
32982
33000
|
created: factories.long(),
|
|
32983
33001
|
customer: factories.string(),
|
|
@@ -33012,6 +33030,12 @@ const factories = {
|
|
|
33012
33030
|
cvc: factories.string(),
|
|
33013
33031
|
}),
|
|
33014
33032
|
|
|
33033
|
+
'io.flow.stripe.v0.models.payment_method_data_bancontact': (): io.flow.stripe.v0.models.PaymentMethodDataBancontact => ({
|
|
33034
|
+
type: 'bancontact',
|
|
33035
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
33036
|
+
metadata: factories.object(),
|
|
33037
|
+
}),
|
|
33038
|
+
|
|
33015
33039
|
'io.flow.stripe.v0.models.payment_method_data_card': (): io.flow.stripe.v0.models.PaymentMethodDataCard => ({
|
|
33016
33040
|
type: 'card',
|
|
33017
33041
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -33019,6 +33043,13 @@ const factories = {
|
|
|
33019
33043
|
card: factories['io.flow.stripe.v0.models.payment_method_card_form'](),
|
|
33020
33044
|
}),
|
|
33021
33045
|
|
|
33046
|
+
'io.flow.stripe.v0.models.payment_method_data_ideal': (): io.flow.stripe.v0.models.PaymentMethodDataIdeal => ({
|
|
33047
|
+
type: 'ideal',
|
|
33048
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
33049
|
+
metadata: factories.object(),
|
|
33050
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_ideal_form'](),
|
|
33051
|
+
}),
|
|
33052
|
+
|
|
33022
33053
|
'io.flow.stripe.v0.models.payment_method_data_klarna': (): io.flow.stripe.v0.models.PaymentMethodDataKlarna => ({
|
|
33023
33054
|
type: 'klarna',
|
|
33024
33055
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -33026,6 +33057,22 @@ const factories = {
|
|
|
33026
33057
|
klarna: factories['io.flow.stripe.v0.models.payment_method_klarna_form'](),
|
|
33027
33058
|
}),
|
|
33028
33059
|
|
|
33060
|
+
'io.flow.stripe.v0.models.payment_method_details_bancontact': (): io.flow.stripe.v0.models.PaymentMethodDetailsBancontact => ({
|
|
33061
|
+
type: 'bancontact',
|
|
33062
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_details_bancontact_information'](),
|
|
33063
|
+
}),
|
|
33064
|
+
|
|
33065
|
+
'io.flow.stripe.v0.models.payment_method_details_bancontact_information': (): io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation => ({
|
|
33066
|
+
bank_code: factories.string(),
|
|
33067
|
+
bank_name: factories.string(),
|
|
33068
|
+
bic: factories.string(),
|
|
33069
|
+
generated_sepa_debit: factories.string(),
|
|
33070
|
+
generated_sepa_debit_mandate: factories.string(),
|
|
33071
|
+
iban_last4: factories.string(),
|
|
33072
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
33073
|
+
verified_name: factories.string(),
|
|
33074
|
+
}),
|
|
33075
|
+
|
|
33029
33076
|
'io.flow.stripe.v0.models.payment_method_details_card': (): io.flow.stripe.v0.models.PaymentMethodDetailsCard => ({
|
|
33030
33077
|
type: 'card',
|
|
33031
33078
|
card: factories['io.flow.stripe.v0.models.payment_method_details_card_information'](),
|
|
@@ -33057,6 +33104,20 @@ const factories = {
|
|
|
33057
33104
|
overcapture: factories['io.flow.stripe.v0.models.overcapture'](),
|
|
33058
33105
|
}),
|
|
33059
33106
|
|
|
33107
|
+
'io.flow.stripe.v0.models.payment_method_details_ideal': (): io.flow.stripe.v0.models.PaymentMethodDetailsIdeal => ({
|
|
33108
|
+
type: 'ideal',
|
|
33109
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_details_ideal_information'](),
|
|
33110
|
+
}),
|
|
33111
|
+
|
|
33112
|
+
'io.flow.stripe.v0.models.payment_method_details_ideal_information': (): io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation => ({
|
|
33113
|
+
bank: factories['io.flow.stripe.v0.enums.bank_ideal'](),
|
|
33114
|
+
bic: factories['io.flow.stripe.v0.enums.bic_ideal'](),
|
|
33115
|
+
generated_sepa_debit: factories.string(),
|
|
33116
|
+
generated_sepa_debit_mandate: factories.string(),
|
|
33117
|
+
iban_last4: factories.string(),
|
|
33118
|
+
verified_name: factories.string(),
|
|
33119
|
+
}),
|
|
33120
|
+
|
|
33060
33121
|
'io.flow.stripe.v0.models.payment_method_details_klarna': (): io.flow.stripe.v0.models.PaymentMethodDetailsKlarna => ({
|
|
33061
33122
|
type: 'klarna',
|
|
33062
33123
|
klarna: factories['io.flow.stripe.v0.models.payment_method_details_klarna_information'](),
|
|
@@ -33067,6 +33128,13 @@ const factories = {
|
|
|
33067
33128
|
preferred_locale: factories['io.flow.stripe.v0.enums.preferred_locale_klarna'](),
|
|
33068
33129
|
}),
|
|
33069
33130
|
|
|
33131
|
+
'io.flow.stripe.v0.models.payment_method_form_bancontact': (): io.flow.stripe.v0.models.PaymentMethodFormBancontact => ({
|
|
33132
|
+
type: 'bancontact',
|
|
33133
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
33134
|
+
metadata: factories.object(),
|
|
33135
|
+
bancontact: factories.object(),
|
|
33136
|
+
}),
|
|
33137
|
+
|
|
33070
33138
|
'io.flow.stripe.v0.models.payment_method_form_card': (): io.flow.stripe.v0.models.PaymentMethodFormCard => ({
|
|
33071
33139
|
type: 'card',
|
|
33072
33140
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -33074,6 +33142,13 @@ const factories = {
|
|
|
33074
33142
|
card: factories['io.flow.stripe.v0.models.payment_method_card_form'](),
|
|
33075
33143
|
}),
|
|
33076
33144
|
|
|
33145
|
+
'io.flow.stripe.v0.models.payment_method_form_ideal': (): io.flow.stripe.v0.models.PaymentMethodFormIdeal => ({
|
|
33146
|
+
type: 'ideal',
|
|
33147
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
33148
|
+
metadata: factories.object(),
|
|
33149
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_ideal_form'](),
|
|
33150
|
+
}),
|
|
33151
|
+
|
|
33077
33152
|
'io.flow.stripe.v0.models.payment_method_form_klarna': (): io.flow.stripe.v0.models.PaymentMethodFormKlarna => ({
|
|
33078
33153
|
type: 'klarna',
|
|
33079
33154
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -33081,13 +33156,27 @@ const factories = {
|
|
|
33081
33156
|
klarna: factories['io.flow.stripe.v0.models.payment_method_klarna_form'](),
|
|
33082
33157
|
}),
|
|
33083
33158
|
|
|
33159
|
+
'io.flow.stripe.v0.models.payment_method_ideal_form': (): io.flow.stripe.v0.models.PaymentMethodIdealForm => ({
|
|
33160
|
+
bank: factories.string(),
|
|
33161
|
+
}),
|
|
33162
|
+
|
|
33084
33163
|
'io.flow.stripe.v0.models.payment_method_klarna_form': (): io.flow.stripe.v0.models.PaymentMethodKlarnaForm => ({
|
|
33085
33164
|
dob: factories['io.flow.stripe.v0.models.klarna_dob_form'](),
|
|
33086
33165
|
}),
|
|
33087
33166
|
|
|
33088
33167
|
'io.flow.stripe.v0.models.payment_method_options': (): io.flow.stripe.v0.models.PaymentMethodOptions => ({
|
|
33089
33168
|
card: factories['io.flow.stripe.v0.models.payment_method_options_card'](),
|
|
33169
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_options_ideal'](),
|
|
33090
33170
|
klarna: factories['io.flow.stripe.v0.models.payment_method_options_klarna'](),
|
|
33171
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_options_bancontact'](),
|
|
33172
|
+
}),
|
|
33173
|
+
|
|
33174
|
+
'io.flow.stripe.v0.models.payment_method_options_bancontact': (): io.flow.stripe.v0.models.PaymentMethodOptionsBancontact => ({
|
|
33175
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
33176
|
+
}),
|
|
33177
|
+
|
|
33178
|
+
'io.flow.stripe.v0.models.payment_method_options_bancontact_form': (): io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm => ({
|
|
33179
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
33091
33180
|
}),
|
|
33092
33181
|
|
|
33093
33182
|
'io.flow.stripe.v0.models.payment_method_options_card': (): io.flow.stripe.v0.models.PaymentMethodOptionsCard => ({
|
|
@@ -33107,7 +33196,17 @@ const factories = {
|
|
|
33107
33196
|
|
|
33108
33197
|
'io.flow.stripe.v0.models.payment_method_options_form': (): io.flow.stripe.v0.models.PaymentMethodOptionsForm => ({
|
|
33109
33198
|
card: factories['io.flow.stripe.v0.models.payment_method_options_card_form'](),
|
|
33199
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_options_ideal_form'](),
|
|
33110
33200
|
klarna: factories['io.flow.stripe.v0.models.payment_method_options_klarna_form'](),
|
|
33201
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_options_bancontact_form'](),
|
|
33202
|
+
}),
|
|
33203
|
+
|
|
33204
|
+
'io.flow.stripe.v0.models.payment_method_options_ideal': (): io.flow.stripe.v0.models.PaymentMethodOptionsIdeal => ({
|
|
33205
|
+
setup_future_usage: factories['io.flow.stripe.v0.enums.setup_future_usage'](),
|
|
33206
|
+
}),
|
|
33207
|
+
|
|
33208
|
+
'io.flow.stripe.v0.models.payment_method_options_ideal_form': (): io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm => ({
|
|
33209
|
+
setup_future_usage: factories['io.flow.stripe.v0.enums.setup_future_usage'](),
|
|
33111
33210
|
}),
|
|
33112
33211
|
|
|
33113
33212
|
'io.flow.stripe.v0.models.payment_method_options_klarna': (): io.flow.stripe.v0.models.PaymentMethodOptionsKlarna => ({
|
|
@@ -33322,6 +33421,24 @@ const factories = {
|
|
|
33322
33421
|
directory_server_encryption: factories.object(),
|
|
33323
33422
|
}),
|
|
33324
33423
|
|
|
33424
|
+
'io.flow.stripe.v0.models.stripe_dispute_event': (): io.flow.stripe.v0.models.StripeDisputeEvent => ({
|
|
33425
|
+
id: factories.string(),
|
|
33426
|
+
api_version: factories.string(),
|
|
33427
|
+
data: factories['io.flow.stripe.v0.models.stripe_dispute_event_data'](),
|
|
33428
|
+
request: factories.object(),
|
|
33429
|
+
type: factories['io.flow.stripe.v0.enums.dispute_event_type'](),
|
|
33430
|
+
object: factories.string(),
|
|
33431
|
+
account: factories.string(),
|
|
33432
|
+
created: factories.long(),
|
|
33433
|
+
livemode: factories.boolean(),
|
|
33434
|
+
pending_webhooks: factories.integer(),
|
|
33435
|
+
}),
|
|
33436
|
+
|
|
33437
|
+
'io.flow.stripe.v0.models.stripe_dispute_event_data': (): io.flow.stripe.v0.models.StripeDisputeEventData => ({
|
|
33438
|
+
object: factories['io.flow.stripe.v0.models.dispute'](),
|
|
33439
|
+
previous_attributes: factories.object(),
|
|
33440
|
+
}),
|
|
33441
|
+
|
|
33325
33442
|
'io.flow.stripe.v0.models.stripe_error': (): io.flow.stripe.v0.models.StripeError => ({
|
|
33326
33443
|
type: factories['io.flow.stripe.v0.enums.error_type'](),
|
|
33327
33444
|
charge: factories.string(),
|
|
@@ -33429,7 +33546,9 @@ const factories = {
|
|
|
33429
33546
|
'io.flow.stripe.v0.unions.payment_method_data': (): io.flow.stripe.v0.unions.PaymentMethodData => {
|
|
33430
33547
|
const f = faker.helpers.arrayElement([
|
|
33431
33548
|
() => factories['io.flow.stripe.v0.models.payment_method_data_card'](),
|
|
33549
|
+
() => factories['io.flow.stripe.v0.models.payment_method_data_ideal'](),
|
|
33432
33550
|
() => factories['io.flow.stripe.v0.models.payment_method_data_klarna'](),
|
|
33551
|
+
() => factories['io.flow.stripe.v0.models.payment_method_data_bancontact'](),
|
|
33433
33552
|
]);
|
|
33434
33553
|
|
|
33435
33554
|
return f();
|
|
@@ -33438,7 +33557,9 @@ const factories = {
|
|
|
33438
33557
|
'io.flow.stripe.v0.unions.payment_method_details': (): io.flow.stripe.v0.unions.PaymentMethodDetails => {
|
|
33439
33558
|
const f = faker.helpers.arrayElement([
|
|
33440
33559
|
() => factories['io.flow.stripe.v0.models.payment_method_details_card'](),
|
|
33560
|
+
() => factories['io.flow.stripe.v0.models.payment_method_details_ideal'](),
|
|
33441
33561
|
() => factories['io.flow.stripe.v0.models.payment_method_details_klarna'](),
|
|
33562
|
+
() => factories['io.flow.stripe.v0.models.payment_method_details_bancontact'](),
|
|
33442
33563
|
]);
|
|
33443
33564
|
|
|
33444
33565
|
return f();
|
|
@@ -33447,7 +33568,9 @@ const factories = {
|
|
|
33447
33568
|
'io.flow.stripe.v0.unions.payment_method_form': (): io.flow.stripe.v0.unions.PaymentMethodForm => {
|
|
33448
33569
|
const f = faker.helpers.arrayElement([
|
|
33449
33570
|
() => factories['io.flow.stripe.v0.models.payment_method_form_card'](),
|
|
33571
|
+
() => factories['io.flow.stripe.v0.models.payment_method_form_ideal'](),
|
|
33450
33572
|
() => factories['io.flow.stripe.v0.models.payment_method_form_klarna'](),
|
|
33573
|
+
() => factories['io.flow.stripe.v0.models.payment_method_form_bancontact'](),
|
|
33451
33574
|
]);
|
|
33452
33575
|
|
|
33453
33576
|
return f();
|
|
@@ -33928,8 +34051,6 @@ export const makeAuthorizedOrderCharge = () => factories['io.flow.internal.v0.un
|
|
|
33928
34051
|
export const makeAuthorizedShippingCharge = () => factories['io.flow.internal.v0.models.authorized_shipping_charge']();
|
|
33929
34052
|
export const makeAutoRestrictRule = () => factories['io.flow.internal.v0.enums.auto_restrict_rule']();
|
|
33930
34053
|
export const makeAutoReviewCriteria = () => factories['io.flow.internal.v0.models.auto_review_criteria']();
|
|
33931
|
-
export const makeBackfill = () => factories['io.flow.internal.v0.models.backfill']();
|
|
33932
|
-
export const makeBackfillForm = () => factories['io.flow.internal.v0.models.backfill_form']();
|
|
33933
34054
|
export const makeBankAccountReference = () => factories['io.flow.internal.v0.models.bank_account_reference']();
|
|
33934
34055
|
export const makeBankPayment = () => factories['io.flow.internal.v0.models.bank_payment']();
|
|
33935
34056
|
export const makeBankPaymentDeletedV2 = () => factories['io.flow.internal.v0.models.bank_payment_deleted_v2']();
|
|
@@ -34185,7 +34306,9 @@ export const makeClassificationProduct = () => factories['io.flow.internal.v0.mo
|
|
|
34185
34306
|
export const makeClassificationProductHarmonization = () => factories['io.flow.internal.v0.models.classification_product_harmonization']();
|
|
34186
34307
|
export const makeClassificationProductId = () => factories['io.flow.internal.v0.models.classification_product_id']();
|
|
34187
34308
|
export const makeClassificationProductRequest = () => factories['io.flow.internal.v0.models.classification_product_request']();
|
|
34309
|
+
export const makeClassificationProductRequestEnvelope = () => factories['io.flow.internal.v0.models.classification_product_request_envelope']();
|
|
34188
34310
|
export const makeClassificationProductResult = () => factories['io.flow.internal.v0.models.classification_product_result']();
|
|
34311
|
+
export const makeClassificationProductResultEnvelope = () => factories['io.flow.internal.v0.models.classification_product_result_envelope']();
|
|
34189
34312
|
export const makeClassificationProductSummary = () => factories['io.flow.internal.v0.models.classification_product_summary']();
|
|
34190
34313
|
export const makeClassificationProductSummaryPage = () => factories['io.flow.internal.v0.models.classification_product_summary_page']();
|
|
34191
34314
|
export const makeClassificationRequeueRequest = () => factories['io.flow.internal.v0.models.classification_requeue_request']();
|
|
@@ -34210,6 +34333,7 @@ export const makeCommercialInvoiceInternal = () => factories['io.flow.internal.v
|
|
|
34210
34333
|
export const makeCommercialInvoiceInternalDeleted = () => factories['io.flow.internal.v0.models.commercial_invoice_internal_deleted']();
|
|
34211
34334
|
export const makeCommercialInvoiceInternalUpserted = () => factories['io.flow.internal.v0.models.commercial_invoice_internal_upserted']();
|
|
34212
34335
|
export const makeCommercialInvoiceSummary = () => factories['io.flow.internal.v0.models.commercial_invoice_summary']();
|
|
34336
|
+
export const makeCompany = () => factories['io.flow.internal.v0.enums.company']();
|
|
34213
34337
|
export const makeCompanyReference = () => factories['io.flow.internal.v0.models.company_reference']();
|
|
34214
34338
|
export const makeCompliance = () => factories['io.flow.internal.v0.models.compliance']();
|
|
34215
34339
|
export const makeComplianceData = () => factories['io.flow.internal.v0.unions.compliance_data']();
|
|
@@ -34244,6 +34368,7 @@ export const makeCryptoAccountModificationForm = () => factories['io.flow.intern
|
|
|
34244
34368
|
export const makeCryptoAccountPutForm = () => factories['io.flow.internal.v0.models.crypto_account_put_form']();
|
|
34245
34369
|
export const makeCryptoAuthentication = () => factories['io.flow.internal.v0.models.crypto_authentication']();
|
|
34246
34370
|
export const makeCryptoAuthenticationForm = () => factories['io.flow.internal.v0.models.crypto_authentication_form']();
|
|
34371
|
+
export const makeCsvTransaction = () => factories['io.flow.internal.v0.models.csv_transaction']();
|
|
34247
34372
|
export const makeCurrencyInternalRate = () => factories['io.flow.internal.v0.models.currency_internal_rate']();
|
|
34248
34373
|
export const makeCustomerPurgeUpserted = () => factories['io.flow.internal.v0.models.customer_purge_upserted']();
|
|
34249
34374
|
export const makeCustomerSecret = () => factories['io.flow.internal.v0.models.customer_secret']();
|
|
@@ -34257,10 +34382,6 @@ export const makeCustomsDetails = () => factories['io.flow.internal.v0.models.cu
|
|
|
34257
34382
|
export const makeCustomsDetailsForm = () => factories['io.flow.internal.v0.models.customs_details_form']();
|
|
34258
34383
|
export const makeCustomsProductAttributeLabel = () => factories['io.flow.internal.v0.models.customs_product_attribute_label']();
|
|
34259
34384
|
export const makeCustomsProductLabels = () => factories['io.flow.internal.v0.models.customs_product_labels']();
|
|
34260
|
-
export const makeDailyExperimentEngineResults = () => factories['io.flow.internal.v0.models.daily_experiment_engine_results']();
|
|
34261
|
-
export const makeDailyExperimentResults = () => factories['io.flow.internal.v0.models.daily_experiment_results']();
|
|
34262
|
-
export const makeDailyExperimentResultsDeleted = () => factories['io.flow.internal.v0.models.daily_experiment_results_deleted']();
|
|
34263
|
-
export const makeDailyExperimentResultsUpserted = () => factories['io.flow.internal.v0.models.daily_experiment_results_upserted']();
|
|
34264
34385
|
export const makeDailyValue = () => factories['io.flow.internal.v0.models.daily_value']();
|
|
34265
34386
|
export const makeDailyValueDeleted = () => factories['io.flow.internal.v0.models.daily_value_deleted']();
|
|
34266
34387
|
export const makeDailyValueUpserted = () => factories['io.flow.internal.v0.models.daily_value_upserted']();
|
|
@@ -34390,7 +34511,6 @@ export const makeExclusionRuleDeleted = () => factories['io.flow.internal.v0.mod
|
|
|
34390
34511
|
export const makeExclusionRuleExportRequest = () => factories['io.flow.internal.v0.models.exclusion_rule_export_request']();
|
|
34391
34512
|
export const makeExclusionRuleUpserted = () => factories['io.flow.internal.v0.models.exclusion_rule_upserted']();
|
|
34392
34513
|
export const makeExpectedOrderSummary = () => factories['io.flow.internal.v0.models.expected_order_summary']();
|
|
34393
|
-
export const makeExperienceExperiment = () => factories['io.flow.internal.v0.models.experience_experiment']();
|
|
34394
34514
|
export const makeExperienceExportRequest = () => factories['io.flow.internal.v0.models.experience_export_request']();
|
|
34395
34515
|
export const makeExperienceImportRequest = () => factories['io.flow.internal.v0.models.experience_import_request']();
|
|
34396
34516
|
export const makeExperienceImportType = () => factories['io.flow.internal.v0.enums.experience_import_type']();
|
|
@@ -34398,30 +34518,6 @@ export const makeExperienceOrderAction = () => factories['io.flow.internal.v0.en
|
|
|
34398
34518
|
export const makeExperienceOrderActionRule = () => factories['io.flow.internal.v0.models.experience_order_action_rule']();
|
|
34399
34519
|
export const makeExperienceOrderActionTrigger = () => factories['io.flow.internal.v0.enums.experience_order_action_trigger']();
|
|
34400
34520
|
export const makeExperienceSessionReference = () => factories['io.flow.internal.v0.models.experience_session_reference']();
|
|
34401
|
-
export const makeExperienceVariant = () => factories['io.flow.internal.v0.models.experience_variant']();
|
|
34402
|
-
export const makeExperienceVariantForm = () => factories['io.flow.internal.v0.models.experience_variant_form']();
|
|
34403
|
-
export const makeExperienceVariantSummary = () => factories['io.flow.internal.v0.models.experience_variant_summary']();
|
|
34404
|
-
export const makeExperiment = () => factories['io.flow.internal.v0.unions.experiment']();
|
|
34405
|
-
export const makeExperimentDeleted = () => factories['io.flow.internal.v0.models.experiment_deleted']();
|
|
34406
|
-
export const makeExperimentDiscriminatorKey = () => factories['io.flow.internal.v0.enums.experiment_discriminator_key']();
|
|
34407
|
-
export const makeExperimentEngineResults = () => factories['io.flow.internal.v0.models.experiment_engine_results']();
|
|
34408
|
-
export const makeExperimentForm = () => factories['io.flow.internal.v0.models.experiment_form']();
|
|
34409
|
-
export const makeExperimentFormDefault = () => factories['io.flow.internal.v0.models.experiment_form_default']();
|
|
34410
|
-
export const makeExperimentFormDefaultDiscriminator = () => factories['io.flow.internal.v0.models.experiment_form_default_discriminator']();
|
|
34411
|
-
export const makeExperimentFormDefaultDiscriminatorValue = () => factories['io.flow.internal.v0.models.experiment_form_default_discriminator_value']();
|
|
34412
|
-
export const makeExperimentFormDefaultVariant = () => factories['io.flow.internal.v0.models.experiment_form_default_variant']();
|
|
34413
|
-
export const makeExperimentMilestone = () => factories['io.flow.internal.v0.models.experiment_milestone']();
|
|
34414
|
-
export const makeExperimentMilestoneDeleted = () => factories['io.flow.internal.v0.models.experiment_milestone_deleted']();
|
|
34415
|
-
export const makeExperimentMilestoneForm = () => factories['io.flow.internal.v0.models.experiment_milestone_form']();
|
|
34416
|
-
export const makeExperimentMilestoneUpserted = () => factories['io.flow.internal.v0.models.experiment_milestone_upserted']();
|
|
34417
|
-
export const makeExperimentReference = () => factories['io.flow.internal.v0.models.experiment_reference']();
|
|
34418
|
-
export const makeExperimentResults = () => factories['io.flow.internal.v0.models.experiment_results']();
|
|
34419
|
-
export const makeExperimentResultsDeleted = () => factories['io.flow.internal.v0.models.experiment_results_deleted']();
|
|
34420
|
-
export const makeExperimentResultsUpserted = () => factories['io.flow.internal.v0.models.experiment_results_upserted']();
|
|
34421
|
-
export const makeExperimentResultsWithTimestamp = () => factories['io.flow.internal.v0.models.experiment_results_with_timestamp']();
|
|
34422
|
-
export const makeExperimentSessionQueryForm = () => factories['io.flow.internal.v0.models.experiment_session_query_form']();
|
|
34423
|
-
export const makeExperimentUpserted = () => factories['io.flow.internal.v0.models.experiment_upserted']();
|
|
34424
|
-
export const makeExperimentVersion = () => factories['io.flow.internal.v0.models.experiment_version']();
|
|
34425
34521
|
export const makeExplicitStatement = () => factories['io.flow.internal.v0.models.explicit_statement']();
|
|
34426
34522
|
export const makeExplicitStatementForm = () => factories['io.flow.internal.v0.unions.explicit_statement_form']();
|
|
34427
34523
|
export const makeExplicitStatementFormAllPendingPostedTransactions = () => factories['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions']();
|
|
@@ -34444,7 +34540,6 @@ export const makeFeature = () => factories['io.flow.internal.v0.models.feature']
|
|
|
34444
34540
|
export const makeFeatureContextForm = () => factories['io.flow.internal.v0.models.feature_context_form']();
|
|
34445
34541
|
export const makeFeatureDefaultValue = () => factories['io.flow.internal.v0.unions.feature_default_value']();
|
|
34446
34542
|
export const makeFeatureDeleted = () => factories['io.flow.internal.v0.models.feature_deleted']();
|
|
34447
|
-
export const makeFeatureExperiment = () => factories['io.flow.internal.v0.models.feature_experiment']();
|
|
34448
34543
|
export const makeFeatureForm = () => factories['io.flow.internal.v0.models.feature_form']();
|
|
34449
34544
|
export const makeFeatureGeoForm = () => factories['io.flow.internal.v0.models.feature_geo_form']();
|
|
34450
34545
|
export const makeFeatureIdReference = () => factories['io.flow.internal.v0.models.feature_id_reference']();
|
|
@@ -34462,11 +34557,7 @@ export const makeFeatureType = () => factories['io.flow.internal.v0.enums.featur
|
|
|
34462
34557
|
export const makeFeatureUpserted = () => factories['io.flow.internal.v0.models.feature_upserted']();
|
|
34463
34558
|
export const makeFeatureValue = () => factories['io.flow.internal.v0.unions.feature_value']();
|
|
34464
34559
|
export const makeFeatureValueForm = () => factories['io.flow.internal.v0.models.feature_value_form']();
|
|
34465
|
-
export const makeFeatureValueReference = () => factories['io.flow.internal.v0.models.feature_value_reference']();
|
|
34466
34560
|
export const makeFeatureValueResult = () => factories['io.flow.internal.v0.models.feature_value_result']();
|
|
34467
|
-
export const makeFeatureVariant = () => factories['io.flow.internal.v0.models.feature_variant']();
|
|
34468
|
-
export const makeFeatureVariantForm = () => factories['io.flow.internal.v0.models.feature_variant_form']();
|
|
34469
|
-
export const makeFeatureVariantSummary = () => factories['io.flow.internal.v0.models.feature_variant_summary']();
|
|
34470
34561
|
export const makeFedex = () => factories['io.flow.internal.v0.models.fedex']();
|
|
34471
34562
|
export const makeFedexCrossborder = () => factories['io.flow.internal.v0.models.fedex_crossborder']();
|
|
34472
34563
|
export const makeFee = () => factories['io.flow.internal.v0.models.fee']();
|
|
@@ -34501,9 +34592,12 @@ export const makeFlowLabProjectPutForm = () => factories['io.flow.internal.v0.mo
|
|
|
34501
34592
|
export const makeFlowLabelSetting = () => factories['io.flow.internal.v0.models.flow_label_setting']();
|
|
34502
34593
|
export const makeFlowLabelSettingForm = () => factories['io.flow.internal.v0.models.flow_label_setting_form']();
|
|
34503
34594
|
export const makeFlowShopValidationError = () => factories['io.flow.internal.v0.models.flow_shop_validation_error']();
|
|
34504
|
-
export const makeForceTransitForm = () => factories['io.flow.internal.v0.models.force_transit_form']();
|
|
34505
34595
|
export const makeFormat = () => factories['io.flow.internal.v0.enums.format']();
|
|
34596
|
+
export const makeFraudAuthorizationSummary = () => factories['io.flow.internal.v0.models.fraud_authorization_summary']();
|
|
34506
34597
|
export const makeFraudPendingReview = () => factories['io.flow.internal.v0.models.fraud_pending_review']();
|
|
34598
|
+
export const makeFraudPendingReviewAuthorization = () => factories['io.flow.internal.v0.models.fraud_pending_review_authorization']();
|
|
34599
|
+
export const makeFraudPendingReviewAuthorizationDeleted = () => factories['io.flow.internal.v0.models.fraud_pending_review_authorization_deleted']();
|
|
34600
|
+
export const makeFraudPendingReviewAuthorizationUpserted = () => factories['io.flow.internal.v0.models.fraud_pending_review_authorization_upserted']();
|
|
34507
34601
|
export const makeFraudPendingReviewDeleted = () => factories['io.flow.internal.v0.models.fraud_pending_review_deleted']();
|
|
34508
34602
|
export const makeFraudPendingReviewDetail = () => factories['io.flow.internal.v0.models.fraud_pending_review_detail']();
|
|
34509
34603
|
export const makeFraudPendingReviewUpserted = () => factories['io.flow.internal.v0.models.fraud_pending_review_upserted']();
|
|
@@ -34516,6 +34610,12 @@ export const makeFraudProviderConfigurationRiskified = () => factories['io.flow.
|
|
|
34516
34610
|
export const makeFraudProviderConfigurationUpserted = () => factories['io.flow.internal.v0.models.fraud_provider_configuration_upserted']();
|
|
34517
34611
|
export const makeFraudProviderStatus = () => factories['io.flow.internal.v0.enums.fraud_provider_status']();
|
|
34518
34612
|
export const makeFraudReview = () => factories['io.flow.internal.v0.models.fraud_review']();
|
|
34613
|
+
export const makeFraudReviewAuthorization = () => factories['io.flow.internal.v0.models.fraud_review_authorization']();
|
|
34614
|
+
export const makeFraudReviewAuthorizationDecision = () => factories['io.flow.internal.v0.models.fraud_review_authorization_decision']();
|
|
34615
|
+
export const makeFraudReviewAuthorizationDecisionDeleted = () => factories['io.flow.internal.v0.models.fraud_review_authorization_decision_deleted']();
|
|
34616
|
+
export const makeFraudReviewAuthorizationDecisionUpserted = () => factories['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted']();
|
|
34617
|
+
export const makeFraudReviewAuthorizationDeleted = () => factories['io.flow.internal.v0.models.fraud_review_authorization_deleted']();
|
|
34618
|
+
export const makeFraudReviewAuthorizationUpserted = () => factories['io.flow.internal.v0.models.fraud_review_authorization_upserted']();
|
|
34519
34619
|
export const makeFraudReviewDecision = () => factories['io.flow.internal.v0.models.fraud_review_decision']();
|
|
34520
34620
|
export const makeFraudReviewDecisionDeleted = () => factories['io.flow.internal.v0.models.fraud_review_decision_deleted']();
|
|
34521
34621
|
export const makeFraudReviewDecisionForm = () => factories['io.flow.internal.v0.models.fraud_review_decision_form']();
|
|
@@ -34583,10 +34683,16 @@ export const makeGoogleLinker = () => factories['io.flow.internal.v0.models.goog
|
|
|
34583
34683
|
export const makeGoogleShoppingAccountParameters = () => factories['io.flow.internal.v0.models.google_shopping_account_parameters']();
|
|
34584
34684
|
export const makeGoogleShoppingSetting = () => factories['io.flow.internal.v0.models.google_shopping_setting']();
|
|
34585
34685
|
export const makeGoogleTagManager = () => factories['io.flow.internal.v0.models.google_tag_manager']();
|
|
34686
|
+
export const makeHarinathItem = () => factories['io.flow.internal.v0.models.harinath_item']();
|
|
34687
|
+
export const makeHarinathItemDeleted = () => factories['io.flow.internal.v0.models.harinath_item_deleted']();
|
|
34688
|
+
export const makeHarinathItemForm = () => factories['io.flow.internal.v0.models.harinath_item_form']();
|
|
34689
|
+
export const makeHarinathItemType = () => factories['io.flow.internal.v0.enums.harinath_item_type']();
|
|
34690
|
+
export const makeHarinathItemUpserted = () => factories['io.flow.internal.v0.models.harinath_item_upserted']();
|
|
34586
34691
|
export const makeHarmonizationClassificationStatisticsData = () => factories['io.flow.internal.v0.models.harmonization_classification_statistics_data']();
|
|
34587
34692
|
export const makeHarmonizationClassificationStatisticsPublished = () => factories['io.flow.internal.v0.models.harmonization_classification_statistics_published']();
|
|
34588
34693
|
export const makeHarmonizationCodesImport = () => factories['io.flow.internal.v0.models.harmonization_codes_import']();
|
|
34589
34694
|
export const makeHarmonizationColumnSetting = () => factories['io.flow.internal.v0.models.harmonization_column_setting']();
|
|
34695
|
+
export const makeHarmonizationDecisionSource = () => factories['io.flow.internal.v0.enums.harmonization_decision_source']();
|
|
34590
34696
|
export const makeHarmonizationItemClassification = () => factories['io.flow.internal.v0.models.harmonization_item_classification']();
|
|
34591
34697
|
export const makeHarmonizationItemClassificationDeleted = () => factories['io.flow.internal.v0.models.harmonization_item_classification_deleted']();
|
|
34592
34698
|
export const makeHarmonizationItemClassificationUpserted = () => factories['io.flow.internal.v0.models.harmonization_item_classification_upserted']();
|
|
@@ -34690,6 +34796,11 @@ export const makeKeyReference = () => factories['io.flow.internal.v0.models.key_
|
|
|
34690
34796
|
export const makeKeywordType = () => factories['io.flow.internal.v0.enums.keyword_type']();
|
|
34691
34797
|
export const makeKlarnaAuthorizationParameters = () => factories['io.flow.internal.v0.models.klarna_authorization_parameters']();
|
|
34692
34798
|
export const makeKlarnaPaymentMethodCategory = () => factories['io.flow.internal.v0.models.klarna_payment_method_category']();
|
|
34799
|
+
export const makeKonstantinItem = () => factories['io.flow.internal.v0.models.konstantin_item']();
|
|
34800
|
+
export const makeKonstantinItemDeleted = () => factories['io.flow.internal.v0.models.konstantin_item_deleted']();
|
|
34801
|
+
export const makeKonstantinItemForm = () => factories['io.flow.internal.v0.models.konstantin_item_form']();
|
|
34802
|
+
export const makeKonstantinItemType = () => factories['io.flow.internal.v0.enums.konstantin_item_type']();
|
|
34803
|
+
export const makeKonstantinItemUpserted = () => factories['io.flow.internal.v0.models.konstantin_item_upserted']();
|
|
34693
34804
|
export const makeLabProjectSettings = () => factories['io.flow.internal.v0.models.lab_project_settings']();
|
|
34694
34805
|
export const makeLabProjectSettingsForm = () => factories['io.flow.internal.v0.models.lab_project_settings_form']();
|
|
34695
34806
|
export const makeLabProjectSettingsFormAcceptance = () => factories['io.flow.internal.v0.models.lab_project_settings_form_acceptance']();
|
|
@@ -34766,6 +34877,9 @@ export const makeLocation = () => factories['io.flow.internal.v0.models.location
|
|
|
34766
34877
|
export const makeLogisticsCapabilities = () => factories['io.flow.internal.v0.models.logistics_capabilities']();
|
|
34767
34878
|
export const makeLogisticsCapabilitiesForm = () => factories['io.flow.internal.v0.models.logistics_capabilities_form']();
|
|
34768
34879
|
export const makeLogisticsCapability = () => factories['io.flow.internal.v0.enums.logistics_capability']();
|
|
34880
|
+
export const makeLogisticsPayoutRequest = () => factories['io.flow.internal.v0.models.logistics_payout_request']();
|
|
34881
|
+
export const makeLogisticsPayoutRequestForm = () => factories['io.flow.internal.v0.models.logistics_payout_request_form']();
|
|
34882
|
+
export const makeLogisticsPayoutResolutionMethod = () => factories['io.flow.internal.v0.enums.logistics_payout_resolution_method']();
|
|
34769
34883
|
export const makeLogo = () => factories['io.flow.internal.v0.models.logo']();
|
|
34770
34884
|
export const makeLostChargeback = () => factories['io.flow.internal.v0.models.lost_chargeback']();
|
|
34771
34885
|
export const makeLoyaltyProgram = () => factories['io.flow.internal.v0.models.loyalty_program']();
|
|
@@ -34865,6 +34979,16 @@ export const makeMerchantUpserted = () => factories['io.flow.internal.v0.models.
|
|
|
34865
34979
|
export const makeMessageStamp = () => factories['io.flow.internal.v0.models.message_stamp']();
|
|
34866
34980
|
export const makeMetadataProposition = () => factories['io.flow.internal.v0.models.metadata_proposition']();
|
|
34867
34981
|
export const makeMetadataRatecard = () => factories['io.flow.internal.v0.models.metadata_ratecard']();
|
|
34982
|
+
export const makeMichaelyanItem = () => factories['io.flow.internal.v0.models.michaelyan_item']();
|
|
34983
|
+
export const makeMichaelyanItemDeleted = () => factories['io.flow.internal.v0.models.michaelyan_item_deleted']();
|
|
34984
|
+
export const makeMichaelyanItemForm = () => factories['io.flow.internal.v0.models.michaelyan_item_form']();
|
|
34985
|
+
export const makeMichaelyanItemType = () => factories['io.flow.internal.v0.enums.michaelyan_item_type']();
|
|
34986
|
+
export const makeMichaelyanItemUpserted = () => factories['io.flow.internal.v0.models.michaelyan_item_upserted']();
|
|
34987
|
+
export const makeMiljenkoItem = () => factories['io.flow.internal.v0.models.miljenko_item']();
|
|
34988
|
+
export const makeMiljenkoItemDeleted = () => factories['io.flow.internal.v0.models.miljenko_item_deleted']();
|
|
34989
|
+
export const makeMiljenkoItemForm = () => factories['io.flow.internal.v0.models.miljenko_item_form']();
|
|
34990
|
+
export const makeMiljenkoItemType = () => factories['io.flow.internal.v0.enums.miljenko_item_type']();
|
|
34991
|
+
export const makeMiljenkoItemUpserted = () => factories['io.flow.internal.v0.models.miljenko_item_upserted']();
|
|
34868
34992
|
export const makeMixedBagWeight = () => factories['io.flow.internal.v0.enums.mixed_bag_weight']();
|
|
34869
34993
|
export const makeNatureOfSale = () => factories['io.flow.internal.v0.enums.nature_of_sale']();
|
|
34870
34994
|
export const makeNextBillingStatement = () => factories['io.flow.internal.v0.models.next_billing_statement']();
|
|
@@ -34939,6 +35063,9 @@ export const makeOrderServiceChangeCsvForm = () => factories['io.flow.internal.v
|
|
|
34939
35063
|
export const makeOrderShipped = () => factories['io.flow.internal.v0.models.order_shipped']();
|
|
34940
35064
|
export const makeOrderSubmissionForm = () => factories['io.flow.internal.v0.models.order_submission_form']();
|
|
34941
35065
|
export const makeOrderSummary = () => factories['io.flow.internal.v0.models.order_summary']();
|
|
35066
|
+
export const makeOrderTaxAndDutyInclusivitySetting = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting']();
|
|
35067
|
+
export const makeOrderTaxAndDutyInclusivitySettingDeleted = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted']();
|
|
35068
|
+
export const makeOrderTaxAndDutyInclusivitySettingUpserted = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted']();
|
|
34942
35069
|
export const makeOrderTransaction = () => factories['io.flow.internal.v0.models.order_transaction']();
|
|
34943
35070
|
export const makeOrderTransactionDeleted = () => factories['io.flow.internal.v0.models.order_transaction_deleted']();
|
|
34944
35071
|
export const makeOrderTransactionType = () => factories['io.flow.internal.v0.enums.order_transaction_type']();
|
|
@@ -34978,6 +35105,9 @@ export const makeOrganizationDebugTransaction = () => factories['io.flow.interna
|
|
|
34978
35105
|
export const makeOrganizationInvitationAcceptForm = () => factories['io.flow.internal.v0.models.organization_invitation_accept_form']();
|
|
34979
35106
|
export const makeOrganizationMembershipCopy = () => factories['io.flow.internal.v0.models.organization_membership_copy']();
|
|
34980
35107
|
export const makeOrganizationMembershipCopyForm = () => factories['io.flow.internal.v0.models.organization_membership_copy_form']();
|
|
35108
|
+
export const makeOrganizationMetadata = () => factories['io.flow.internal.v0.models.organization_metadata']();
|
|
35109
|
+
export const makeOrganizationMetadataDeleted = () => factories['io.flow.internal.v0.models.organization_metadata_deleted']();
|
|
35110
|
+
export const makeOrganizationMetadataUpserted = () => factories['io.flow.internal.v0.models.organization_metadata_upserted']();
|
|
34981
35111
|
export const makeOrganizationMetricType = () => factories['io.flow.internal.v0.enums.organization_metric_type']();
|
|
34982
35112
|
export const makeOrganizationOnboardingStateAdjustmentResult = () => factories['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result']();
|
|
34983
35113
|
export const makeOrganizationOnboardingStateAuditResult = () => factories['io.flow.internal.v0.models.organization_onboarding_state_audit_result']();
|
|
@@ -35007,6 +35137,26 @@ export const makeOrganizationStatusChange = () => factories['io.flow.internal.v0
|
|
|
35007
35137
|
export const makeOrganizationStatusChangeDeleted = () => factories['io.flow.internal.v0.models.organization_status_change_deleted']();
|
|
35008
35138
|
export const makeOrganizationStatusChangeUpserted = () => factories['io.flow.internal.v0.models.organization_status_change_upserted']();
|
|
35009
35139
|
export const makeOrganizationsAuditCheckReport = () => factories['io.flow.internal.v0.models.organizations_audit_check_report']();
|
|
35140
|
+
export const makeOtherRecord = () => factories['io.flow.internal.v0.models.other_record']();
|
|
35141
|
+
export const makeOtherRecordAccount = () => factories['io.flow.internal.v0.models.other_record_account']();
|
|
35142
|
+
export const makeOtherRecordAccountSourceSummary = () => factories['io.flow.internal.v0.models.other_record_account_source_summary']();
|
|
35143
|
+
export const makeOtherRecordDeleted = () => factories['io.flow.internal.v0.models.other_record_deleted']();
|
|
35144
|
+
export const makeOtherRecordDiscount = () => factories['io.flow.internal.v0.models.other_record_discount']();
|
|
35145
|
+
export const makeOtherRecordFees = () => factories['io.flow.internal.v0.models.other_record_fees']();
|
|
35146
|
+
export const makeOtherRecordIdentifiers = () => factories['io.flow.internal.v0.models.other_record_identifiers']();
|
|
35147
|
+
export const makeOtherRecordMerchantReference = () => factories['io.flow.internal.v0.models.other_record_merchant_reference']();
|
|
35148
|
+
export const makeOtherRecordMetadata = () => factories['io.flow.internal.v0.models.other_record_metadata']();
|
|
35149
|
+
export const makeOtherRecordMetadataCarrierCharge = () => factories['io.flow.internal.v0.models.other_record_metadata_carrier_charge']();
|
|
35150
|
+
export const makeOtherRecordMetadataChannel = () => factories['io.flow.internal.v0.models.other_record_metadata_channel']();
|
|
35151
|
+
export const makeOtherRecordMetadataFailedPayout = () => factories['io.flow.internal.v0.models.other_record_metadata_failed_payout']();
|
|
35152
|
+
export const makeOtherRecordMetadataManual = () => factories['io.flow.internal.v0.models.other_record_metadata_manual']();
|
|
35153
|
+
export const makeOtherRecordMetadataShippingLabel = () => factories['io.flow.internal.v0.models.other_record_metadata_shipping_label']();
|
|
35154
|
+
export const makeOtherRecordMetadataShippingLabelRevenueShare = () => factories['io.flow.internal.v0.models.other_record_metadata_shipping_label_revenue_share']();
|
|
35155
|
+
export const makeOtherRecordMetadataTrueup = () => factories['io.flow.internal.v0.models.other_record_metadata_trueup']();
|
|
35156
|
+
export const makeOtherRecordOrderSummary = () => factories['io.flow.internal.v0.models.other_record_order_summary']();
|
|
35157
|
+
export const makeOtherRecordOrderSummaryIdentifiers = () => factories['io.flow.internal.v0.models.other_record_order_summary_identifiers']();
|
|
35158
|
+
export const makeOtherRecordUpserted = () => factories['io.flow.internal.v0.models.other_record_upserted']();
|
|
35159
|
+
export const makeOtherRecordWithholdings = () => factories['io.flow.internal.v0.models.other_record_withholdings']();
|
|
35010
35160
|
export const makeOutputStyle = () => factories['io.flow.internal.v0.enums.output_style']();
|
|
35011
35161
|
export const makeOwner = () => factories['io.flow.internal.v0.enums.owner']();
|
|
35012
35162
|
export const makePartner = () => factories['io.flow.internal.v0.models.partner']();
|
|
@@ -35036,6 +35186,7 @@ export const makePaymentProcessorAccountUpserted = () => factories['io.flow.inte
|
|
|
35036
35186
|
export const makePaymentProcessorMerchantDeleted = () => factories['io.flow.internal.v0.models.payment_processor_merchant_deleted']();
|
|
35037
35187
|
export const makePaymentProcessorMerchantUpserted = () => factories['io.flow.internal.v0.models.payment_processor_merchant_upserted']();
|
|
35038
35188
|
export const makePaymentRedirect = () => factories['io.flow.internal.v0.unions.payment_redirect']();
|
|
35189
|
+
export const makePaymentSummary = () => factories['io.flow.internal.v0.models.payment_summary']();
|
|
35039
35190
|
export const makePaymentSummaryDetails = () => factories['io.flow.internal.v0.unions.payment_summary_details']();
|
|
35040
35191
|
export const makePaymentSummaryStatus = () => factories['io.flow.internal.v0.enums.payment_summary_status']();
|
|
35041
35192
|
export const makePaymentSummaryType = () => factories['io.flow.internal.v0.enums.payment_summary_type']();
|
|
@@ -35237,8 +35388,6 @@ export const makeReportingMonetaryValue = () => factories['io.flow.internal.v0.m
|
|
|
35237
35388
|
export const makeReportingOrderSummary = () => factories['io.flow.internal.v0.models.reporting_order_summary']();
|
|
35238
35389
|
export const makeReportingOrganizationSummary = () => factories['io.flow.internal.v0.models.reporting_organization_summary']();
|
|
35239
35390
|
export const makeReportingPayment = () => factories['io.flow.internal.v0.models.reporting_payment']();
|
|
35240
|
-
export const makeReportingPaymentMetadata = () => factories['io.flow.internal.v0.models.reporting_payment_metadata']();
|
|
35241
|
-
export const makeReportingPaymentMetadataAdditionalAuthorizations = () => factories['io.flow.internal.v0.models.reporting_payment_metadata_additional_authorizations']();
|
|
35242
35391
|
export const makeReportingProvince = () => factories['io.flow.internal.v0.models.reporting_province']();
|
|
35243
35392
|
export const makeReportingReconciliation = () => factories['io.flow.internal.v0.models.reporting_reconciliation']();
|
|
35244
35393
|
export const makeReportingRefundReference = () => factories['io.flow.internal.v0.models.reporting_refund_reference']();
|
|
@@ -35250,6 +35399,7 @@ export const makeReportingVatRemittance = () => factories['io.flow.internal.v0.m
|
|
|
35250
35399
|
export const makeReportingVatRemittanceRate = () => factories['io.flow.internal.v0.models.reporting_vat_remittance_rate']();
|
|
35251
35400
|
export const makeReportingVendor = () => factories['io.flow.internal.v0.models.reporting_vendor']();
|
|
35252
35401
|
export const makeRequeueRequestForm = () => factories['io.flow.internal.v0.models.requeue_request_form']();
|
|
35402
|
+
export const makeRescreenRestrictionsProducts = () => factories['io.flow.internal.v0.models.rescreen_restrictions_products']();
|
|
35253
35403
|
export const makeResponsibleParty = () => factories['io.flow.internal.v0.enums.responsible_party']();
|
|
35254
35404
|
export const makeRestrictionAction = () => factories['io.flow.internal.v0.enums.restriction_action']();
|
|
35255
35405
|
export const makeRestrictionCategory = () => factories['io.flow.internal.v0.models.restriction_category']();
|
|
@@ -35310,7 +35460,6 @@ export const makeSalesRecordUpserted = () => factories['io.flow.internal.v0.mode
|
|
|
35310
35460
|
export const makeSandboxSetup = () => factories['io.flow.internal.v0.models.sandbox_setup']();
|
|
35311
35461
|
export const makeSandboxSetupForm = () => factories['io.flow.internal.v0.models.sandbox_setup_form']();
|
|
35312
35462
|
export const makeScheduledPayment = () => factories['io.flow.internal.v0.models.scheduled_payment']();
|
|
35313
|
-
export const makeScope = () => factories['io.flow.internal.v0.enums.scope']();
|
|
35314
35463
|
export const makeScreen = () => factories['io.flow.internal.v0.models.screen']();
|
|
35315
35464
|
export const makeScreenForm = () => factories['io.flow.internal.v0.models.screen_form']();
|
|
35316
35465
|
export const makeScreeningStatusChange = () => factories['io.flow.internal.v0.models.screening_status_change']();
|
|
@@ -35456,7 +35605,6 @@ export const makeShrutiDemoItemDeleted = () => factories['io.flow.internal.v0.mo
|
|
|
35456
35605
|
export const makeShrutiDemoItemForm = () => factories['io.flow.internal.v0.models.shruti_demo_item_form']();
|
|
35457
35606
|
export const makeShrutiDemoItemUpserted = () => factories['io.flow.internal.v0.models.shruti_demo_item_upserted']();
|
|
35458
35607
|
export const makeShrutiDemoType = () => factories['io.flow.internal.v0.enums.shruti_demo_type']();
|
|
35459
|
-
export const makeSignificanceAction = () => factories['io.flow.internal.v0.enums.significance_action']();
|
|
35460
35608
|
export const makeSimpleAccountReference = () => factories['io.flow.internal.v0.models.simple_account_reference']();
|
|
35461
35609
|
export const makeSimpleRoundingStrategy = () => factories['io.flow.internal.v0.enums.simple_rounding_strategy']();
|
|
35462
35610
|
export const makeSimplifiedClassificationTaxonomy = () => factories['io.flow.internal.v0.unions.simplified_classification_taxonomy']();
|
|
@@ -35486,7 +35634,6 @@ export const makeStatementCreationMetadata = () => factories['io.flow.internal.v
|
|
|
35486
35634
|
export const makeStatementStatus = () => factories['io.flow.internal.v0.enums.statement_status']();
|
|
35487
35635
|
export const makeStatementTransferTransactionLocation = () => factories['io.flow.internal.v0.enums.statement_transfer_transaction_location']();
|
|
35488
35636
|
export const makeStatisticType = () => factories['io.flow.internal.v0.enums.statistic_type']();
|
|
35489
|
-
export const makeStatus = () => factories['io.flow.internal.v0.enums.status']();
|
|
35490
35637
|
export const makeStoreConnection = () => factories['io.flow.internal.v0.models.store_connection']();
|
|
35491
35638
|
export const makeStoreConnectionForm = () => factories['io.flow.internal.v0.models.store_connection_form']();
|
|
35492
35639
|
export const makeStringFeatureDefaultValue = () => factories['io.flow.internal.v0.models.string_feature_default_value']();
|
|
@@ -35549,6 +35696,7 @@ export const makeTaskProcessQueuedEvent = () => factories['io.flow.internal.v0.m
|
|
|
35549
35696
|
export const makeTaskProcessorKey = () => factories['io.flow.internal.v0.enums.task_processor_key']();
|
|
35550
35697
|
export const makeTaskSummarizeCode = () => factories['io.flow.internal.v0.models.task_summarize_code']();
|
|
35551
35698
|
export const makeTaxAmount = () => factories['io.flow.internal.v0.unions.tax_amount']();
|
|
35699
|
+
export const makeTaxAndDutyInclusivitySetting = () => factories['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting']();
|
|
35552
35700
|
export const makeTaxCalculation = () => factories['io.flow.internal.v0.models.tax_calculation']();
|
|
35553
35701
|
export const makeTaxCalculationError = () => factories['io.flow.internal.v0.models.tax_calculation_error']();
|
|
35554
35702
|
export const makeTaxCalculationErrorCode = () => factories['io.flow.internal.v0.enums.tax_calculation_error_code']();
|
|
@@ -35568,6 +35716,9 @@ export const makeTaxonomyNode = () => factories['io.flow.internal.v0.models.taxo
|
|
|
35568
35716
|
export const makeTechOnboardingDescription = () => factories['io.flow.internal.v0.models.tech_onboarding_description']();
|
|
35569
35717
|
export const makeTest = () => factories['io.flow.internal.v0.models.test']();
|
|
35570
35718
|
export const makeTestForm = () => factories['io.flow.internal.v0.models.test_form']();
|
|
35719
|
+
export const makeThiagoItem = () => factories['io.flow.internal.v0.models.thiago_item']();
|
|
35720
|
+
export const makeThiagoItemForm = () => factories['io.flow.internal.v0.models.thiago_item_form']();
|
|
35721
|
+
export const makeThiagoItemType = () => factories['io.flow.internal.v0.enums.thiago_item_type']();
|
|
35571
35722
|
export const makeThirdPartyLogisticsPartner = () => factories['io.flow.internal.v0.models.third_party_logistics_partner']();
|
|
35572
35723
|
export const makeThirdPartyLogisticsPickUpTimeWindow = () => factories['io.flow.internal.v0.models.third_party_logistics_pick_up_time_window']();
|
|
35573
35724
|
export const makeTieredFee = () => factories['io.flow.internal.v0.models.tiered_fee']();
|
|
@@ -35579,8 +35730,11 @@ export const makeTimeToClassifyAggregatedUpserted = () => factories['io.flow.int
|
|
|
35579
35730
|
export const makeTimeToClassifyDeleted = () => factories['io.flow.internal.v0.models.time_to_classify_deleted']();
|
|
35580
35731
|
export const makeTimeToClassifyUpserted = () => factories['io.flow.internal.v0.models.time_to_classify_upserted']();
|
|
35581
35732
|
export const makeTimeWithTimezone = () => factories['io.flow.internal.v0.models.time_with_timezone']();
|
|
35582
|
-
export const makeTimeseriesType = () => factories['io.flow.internal.v0.enums.timeseries_type']();
|
|
35583
35733
|
export const makeTracker = () => factories['io.flow.internal.v0.unions.tracker']();
|
|
35734
|
+
export const makeTrackingAssuranceAnalysis = () => factories['io.flow.internal.v0.models.tracking_assurance_analysis']();
|
|
35735
|
+
export const makeTrackingAssuranceAnalysisDeleted = () => factories['io.flow.internal.v0.models.tracking_assurance_analysis_deleted']();
|
|
35736
|
+
export const makeTrackingAssuranceAnalysisUpserted = () => factories['io.flow.internal.v0.models.tracking_assurance_analysis_upserted']();
|
|
35737
|
+
export const makeTrackingDebugForceTransitForm = () => factories['io.flow.internal.v0.models.tracking_debug_force_transit_form']();
|
|
35584
35738
|
export const makeTrackingDebugLabel = () => factories['io.flow.internal.v0.models.tracking_debug_label']();
|
|
35585
35739
|
export const makeTrackingDebugLabelEvent = () => factories['io.flow.internal.v0.models.tracking_debug_label_event']();
|
|
35586
35740
|
export const makeTrackingDebugLabelLocation = () => factories['io.flow.internal.v0.models.tracking_debug_label_location']();
|
|
@@ -35643,8 +35797,6 @@ export const makeUserUpsertedV2 = () => factories['io.flow.internal.v0.models.us
|
|
|
35643
35797
|
export const makeV1Checkout = () => factories['io.flow.internal.v0.models.v1_checkout']();
|
|
35644
35798
|
export const makeValidationCharacterLength = () => factories['io.flow.internal.v0.models.validation_character_length']();
|
|
35645
35799
|
export const makeValidationRule = () => factories['io.flow.internal.v0.unions.validation_rule']();
|
|
35646
|
-
export const makeVariant = () => factories['io.flow.internal.v0.unions.variant']();
|
|
35647
|
-
export const makeVariantForm = () => factories['io.flow.internal.v0.unions.variant_form']();
|
|
35648
35800
|
export const makeViesResult = () => factories['io.flow.internal.v0.models.vies_result']();
|
|
35649
35801
|
export const makeVirtualCardTransaction = () => factories['io.flow.internal.v0.models.virtual_card_transaction']();
|
|
35650
35802
|
export const makeWasteElectricalAndElectronicEquipmentComplianceData = () => factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data']();
|