@flowio/api-internal-factories 0.0.104 → 0.0.105
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 +1266 -1062
- package/dist/esm/api-internal.js +1156 -982
- package/dist/types/api-internal.d.ts +74 -45
- package/package.json +2 -2
- package/src/api-internal.ts +1295 -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,9 @@ 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(),
|
|
2949
2507
|
}),
|
|
2950
2508
|
|
|
2951
2509
|
'io.flow.billing.reporting.v0.models.reporting_fx': (): io.flow.billing.reporting.v0.models.ReportingFx => ({
|
|
@@ -2954,6 +2512,7 @@ const factories = {
|
|
|
2954
2512
|
product: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
2955
2513
|
tax: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
2956
2514
|
duty: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
2515
|
+
tips: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
2957
2516
|
total: factories['io.flow.billing.reporting.v0.models.reporting_usd'](),
|
|
2958
2517
|
}),
|
|
2959
2518
|
|
|
@@ -2971,6 +2530,7 @@ const factories = {
|
|
|
2971
2530
|
processing: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2972
2531
|
rate_lock: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2973
2532
|
transfer: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2533
|
+
total: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2974
2534
|
}),
|
|
2975
2535
|
|
|
2976
2536
|
'io.flow.billing.reporting.v0.models.reporting_merchant_subsidies': (): io.flow.billing.reporting.v0.models.ReportingMerchantSubsidies => ({
|
|
@@ -2978,6 +2538,7 @@ const factories = {
|
|
|
2978
2538
|
tax: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2979
2539
|
duty: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2980
2540
|
ccf: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2541
|
+
total: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2981
2542
|
}),
|
|
2982
2543
|
|
|
2983
2544
|
'io.flow.billing.reporting.v0.models.reporting_merchant_transactions': (): io.flow.billing.reporting.v0.models.ReportingMerchantTransactions => ({
|
|
@@ -2986,6 +2547,8 @@ const factories = {
|
|
|
2986
2547
|
tax: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2987
2548
|
duty: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2988
2549
|
freight: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2550
|
+
discount: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2551
|
+
total: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2989
2552
|
}),
|
|
2990
2553
|
|
|
2991
2554
|
'io.flow.billing.reporting.v0.models.reporting_monetary_value': (): io.flow.billing.reporting.v0.models.ReportingMonetaryValue => ({
|
|
@@ -3008,25 +2571,14 @@ const factories = {
|
|
|
3008
2571
|
}),
|
|
3009
2572
|
|
|
3010
2573
|
'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
2574
|
psp: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3013
2575
|
credit: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2576
|
+
subsidized: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2577
|
+
manual: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2578
|
+
cod: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3014
2579
|
total: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3015
2580
|
}),
|
|
3016
2581
|
|
|
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
2582
|
'io.flow.billing.reporting.v0.models.reporting_province': (): io.flow.billing.reporting.v0.models.ReportingProvince => ({
|
|
3031
2583
|
code: factories.string(),
|
|
3032
2584
|
name: factories.string(),
|
|
@@ -3055,6 +2607,7 @@ const factories = {
|
|
|
3055
2607
|
ccf: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3056
2608
|
emergency: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3057
2609
|
peak: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
2610
|
+
total: factories['io.flow.billing.reporting.v0.models.reporting_monetary_value'](),
|
|
3058
2611
|
}),
|
|
3059
2612
|
|
|
3060
2613
|
'io.flow.billing.reporting.v0.models.reporting_usd': (): io.flow.billing.reporting.v0.models.ReportingUsd => ({
|
|
@@ -3448,7 +3001,7 @@ const factories = {
|
|
|
3448
3001
|
discriminator: 'channel',
|
|
3449
3002
|
method: factories.string(),
|
|
3450
3003
|
card: factories['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'](),
|
|
3451
|
-
organization_transaction: factories['io.flow.billing.v0.models.
|
|
3004
|
+
organization_transaction: factories['io.flow.billing.v0.models.transaction_metadata_channel_organization_transaction'](),
|
|
3452
3005
|
}),
|
|
3453
3006
|
|
|
3454
3007
|
'io.flow.billing.v0.models.transaction_metadata_channel_card_metadata': (): io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata => ({
|
|
@@ -3461,6 +3014,11 @@ const factories = {
|
|
|
3461
3014
|
country: factories.string(),
|
|
3462
3015
|
}),
|
|
3463
3016
|
|
|
3017
|
+
'io.flow.billing.v0.models.transaction_metadata_channel_organization_transaction': (): io.flow.billing.v0.models.TransactionMetadataChannelOrganizationTransaction => ({
|
|
3018
|
+
id: factories.string(),
|
|
3019
|
+
metadata: factories['io.flow.billing.v0.models.transaction_metadata_payment_transaction'](),
|
|
3020
|
+
}),
|
|
3021
|
+
|
|
3464
3022
|
'io.flow.billing.v0.models.transaction_metadata_failed_payout': (): io.flow.billing.v0.models.TransactionMetadataFailedPayout => ({
|
|
3465
3023
|
discriminator: 'failed_payout',
|
|
3466
3024
|
failed_payout: factories['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'](),
|
|
@@ -4370,6 +3928,7 @@ const factories = {
|
|
|
4370
3928
|
'unsupported_virtual_goods',
|
|
4371
3929
|
'non_matching_currencies',
|
|
4372
3930
|
'unsupported_order_edit',
|
|
3931
|
+
'order_missing',
|
|
4373
3932
|
]),
|
|
4374
3933
|
|
|
4375
3934
|
'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 +4658,6 @@ const factories = {
|
|
|
5099
4658
|
return f();
|
|
5100
4659
|
},
|
|
5101
4660
|
|
|
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
4661
|
'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
4662
|
'io.flow.crypto.v0.enums.payment_status': (): io.flow.crypto.v0.enums.PaymentStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'cancelled']),
|
|
5359
4663
|
'io.flow.crypto.v0.enums.reason_type': (): io.flow.crypto.v0.enums.ReasonType => faker.helpers.arrayElement(['duplicate', 'fraudulent', 'requested_by_customer']),
|
|
@@ -6839,6 +6143,228 @@ const factories = {
|
|
|
6839
6143
|
return f();
|
|
6840
6144
|
},
|
|
6841
6145
|
|
|
6146
|
+
'io.flow.experiment.internal.v0.enums.experiment_discriminator_key': (): io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey => faker.helpers.arrayElement(['experience', 'feature']),
|
|
6147
|
+
'io.flow.experiment.internal.v0.enums.scope': (): io.flow.experiment.internal.v0.enums.Scope => faker.helpers.arrayElement(['organization', 'global']),
|
|
6148
|
+
'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']),
|
|
6149
|
+
'io.flow.experiment.internal.v0.enums.status': (): io.flow.experiment.internal.v0.enums.Status => faker.helpers.arrayElement(['draft', 'scheduled', 'live', 'ended', 'archived']),
|
|
6150
|
+
'io.flow.experiment.internal.v0.enums.timeseries_type': (): io.flow.experiment.internal.v0.enums.TimeseriesType => faker.helpers.arrayElement(['daily', 'weekly', 'monthly', 'yearly']),
|
|
6151
|
+
|
|
6152
|
+
'io.flow.experiment.internal.v0.models.daily_experiment_results': (): io.flow.experiment.internal.v0.models.DailyExperimentResults => ({
|
|
6153
|
+
id: factories.string(),
|
|
6154
|
+
day: factories.date_iso_8601(),
|
|
6155
|
+
experiment_key: factories.string(),
|
|
6156
|
+
experiment_variant_key: factories.string(),
|
|
6157
|
+
visitor_count: factories.long(),
|
|
6158
|
+
visitors_with_transactions_count: factories.long(),
|
|
6159
|
+
conversion_rate: factories.decimal(),
|
|
6160
|
+
lower_bound: factories.decimal(),
|
|
6161
|
+
upper_bound: factories.decimal(),
|
|
6162
|
+
probability_of_being_best: factories.decimal(),
|
|
6163
|
+
currency: factories.string(),
|
|
6164
|
+
average_order_value: factories.double(),
|
|
6165
|
+
revenue_generated: factories.double(),
|
|
6166
|
+
total_order_count: factories.long(),
|
|
6167
|
+
conversion_rate_uplift: factories.decimal(),
|
|
6168
|
+
average_order_value_uplift: factories.decimal(),
|
|
6169
|
+
revenue_generated_uplift: factories.decimal(),
|
|
6170
|
+
}),
|
|
6171
|
+
|
|
6172
|
+
'io.flow.experiment.internal.v0.models.experience_experiment': (): io.flow.experiment.internal.v0.models.ExperienceExperiment => ({
|
|
6173
|
+
discriminator: 'experience',
|
|
6174
|
+
id: factories.string(),
|
|
6175
|
+
key: factories.string(),
|
|
6176
|
+
name: factories.string(),
|
|
6177
|
+
description: factories.string(),
|
|
6178
|
+
status: factories['io.flow.experiment.internal.v0.enums.status'](),
|
|
6179
|
+
emails: arrayOf(() => factories.string()),
|
|
6180
|
+
started_at: factories.date_time_iso_8601(),
|
|
6181
|
+
ended_at: factories.date_time_iso_8601(),
|
|
6182
|
+
|
|
6183
|
+
variants: arrayOf(
|
|
6184
|
+
() => factories['io.flow.experiment.internal.v0.models.experience_variant'](),
|
|
6185
|
+
),
|
|
6186
|
+
|
|
6187
|
+
transitions: arrayOf(() => factories['io.flow.experiment.internal.v0.enums.status']()),
|
|
6188
|
+
significance_action: factories['io.flow.experiment.internal.v0.enums.significance_action'](),
|
|
6189
|
+
}),
|
|
6190
|
+
|
|
6191
|
+
'io.flow.experiment.internal.v0.models.experience_variant': (): io.flow.experiment.internal.v0.models.ExperienceVariant => ({
|
|
6192
|
+
discriminator: 'experience_variant',
|
|
6193
|
+
experience: factories['io.flow.experiment.internal.v0.models.experience_variant_summary'](),
|
|
6194
|
+
traffic_percentage: factories.integer(),
|
|
6195
|
+
experiment_results: factories['io.flow.experiment.internal.v0.models.experiment_results'](),
|
|
6196
|
+
}),
|
|
6197
|
+
|
|
6198
|
+
'io.flow.experiment.internal.v0.models.experience_variant_form': (): io.flow.experiment.internal.v0.models.ExperienceVariantForm => ({
|
|
6199
|
+
discriminator: 'experience',
|
|
6200
|
+
key: factories.string(),
|
|
6201
|
+
traffic_percentage: factories.integer(),
|
|
6202
|
+
}),
|
|
6203
|
+
|
|
6204
|
+
'io.flow.experiment.internal.v0.models.experience_variant_summary': (): io.flow.experiment.internal.v0.models.ExperienceVariantSummary => ({
|
|
6205
|
+
key: factories.string(),
|
|
6206
|
+
name: factories.string(),
|
|
6207
|
+
}),
|
|
6208
|
+
|
|
6209
|
+
'io.flow.experiment.internal.v0.models.experiment_form': (): io.flow.experiment.internal.v0.models.ExperimentForm => ({
|
|
6210
|
+
name: factories.string(),
|
|
6211
|
+
description: factories.string(),
|
|
6212
|
+
emails: arrayOf(() => factories.string()),
|
|
6213
|
+
variants: arrayOf(() => factories['io.flow.experiment.internal.v0.unions.variant_form']()),
|
|
6214
|
+
significance_action: factories['io.flow.experiment.internal.v0.enums.significance_action'](),
|
|
6215
|
+
session_query: factories.string(),
|
|
6216
|
+
}),
|
|
6217
|
+
|
|
6218
|
+
'io.flow.experiment.internal.v0.models.experiment_form_default': (): io.flow.experiment.internal.v0.models.ExperimentFormDefault => ({
|
|
6219
|
+
discriminator: factories['io.flow.experiment.internal.v0.models.experiment_form_default_discriminator'](),
|
|
6220
|
+
|
|
6221
|
+
variants: arrayOf(
|
|
6222
|
+
() => factories['io.flow.experiment.internal.v0.models.experiment_form_default_variant'](),
|
|
6223
|
+
),
|
|
6224
|
+
}),
|
|
6225
|
+
|
|
6226
|
+
'io.flow.experiment.internal.v0.models.experiment_form_default_discriminator': (): io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator => ({
|
|
6227
|
+
key: factories['io.flow.experiment.internal.v0.enums.experiment_discriminator_key'](),
|
|
6228
|
+
|
|
6229
|
+
values: arrayOf(
|
|
6230
|
+
() => factories['io.flow.experiment.internal.v0.models.experiment_form_default_discriminator_value'](),
|
|
6231
|
+
),
|
|
6232
|
+
}),
|
|
6233
|
+
|
|
6234
|
+
'io.flow.experiment.internal.v0.models.experiment_form_default_discriminator_value': (): io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue => ({
|
|
6235
|
+
key: factories.string(),
|
|
6236
|
+
name: factories.string(),
|
|
6237
|
+
scope: factories['io.flow.experiment.internal.v0.enums.scope'](),
|
|
6238
|
+
}),
|
|
6239
|
+
|
|
6240
|
+
'io.flow.experiment.internal.v0.models.experiment_form_default_variant': (): io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant => ({
|
|
6241
|
+
key: factories.string(),
|
|
6242
|
+
name: factories.string(),
|
|
6243
|
+
traffic_percentage: factories.integer(),
|
|
6244
|
+
}),
|
|
6245
|
+
|
|
6246
|
+
'io.flow.experiment.internal.v0.models.experiment_milestone': (): io.flow.experiment.internal.v0.models.ExperimentMilestone => ({
|
|
6247
|
+
id: factories.string(),
|
|
6248
|
+
experiment: factories['io.flow.experiment.internal.v0.models.experiment_reference'](),
|
|
6249
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6250
|
+
description: factories.string(),
|
|
6251
|
+
}),
|
|
6252
|
+
|
|
6253
|
+
'io.flow.experiment.internal.v0.models.experiment_milestone_form': (): io.flow.experiment.internal.v0.models.ExperimentMilestoneForm => ({
|
|
6254
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6255
|
+
description: factories.string(),
|
|
6256
|
+
}),
|
|
6257
|
+
|
|
6258
|
+
'io.flow.experiment.internal.v0.models.experiment_reference': (): io.flow.experiment.internal.v0.models.ExperimentReference => ({
|
|
6259
|
+
key: factories.string(),
|
|
6260
|
+
}),
|
|
6261
|
+
|
|
6262
|
+
'io.flow.experiment.internal.v0.models.experiment_results': (): io.flow.experiment.internal.v0.models.ExperimentResults => ({
|
|
6263
|
+
id: factories.string(),
|
|
6264
|
+
experiment_key: factories.string(),
|
|
6265
|
+
experiment_variant_key: factories.string(),
|
|
6266
|
+
visitor_count: factories.long(),
|
|
6267
|
+
visitors_with_transactions_count: factories.long(),
|
|
6268
|
+
conversion_rate: factories.decimal(),
|
|
6269
|
+
lower_bound: factories.decimal(),
|
|
6270
|
+
upper_bound: factories.decimal(),
|
|
6271
|
+
probability_of_being_best: factories.decimal(),
|
|
6272
|
+
currency: factories.string(),
|
|
6273
|
+
average_order_value: factories.double(),
|
|
6274
|
+
revenue_generated: factories.double(),
|
|
6275
|
+
total_order_count: factories.long(),
|
|
6276
|
+
conversion_rate_uplift: factories.decimal(),
|
|
6277
|
+
average_order_value_uplift: factories.decimal(),
|
|
6278
|
+
revenue_generated_uplift: factories.decimal(),
|
|
6279
|
+
}),
|
|
6280
|
+
|
|
6281
|
+
'io.flow.experiment.internal.v0.models.experiment_results_with_timestamp': (): io.flow.experiment.internal.v0.models.ExperimentResultsWithTimestamp => ({
|
|
6282
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6283
|
+
|
|
6284
|
+
results: arrayOf(
|
|
6285
|
+
() => factories['io.flow.experiment.internal.v0.models.experiment_results'](),
|
|
6286
|
+
),
|
|
6287
|
+
}),
|
|
6288
|
+
|
|
6289
|
+
'io.flow.experiment.internal.v0.models.experiment_session_query_form': (): io.flow.experiment.internal.v0.models.ExperimentSessionQueryForm => ({
|
|
6290
|
+
session_query: factories.string(),
|
|
6291
|
+
}),
|
|
6292
|
+
|
|
6293
|
+
'io.flow.experiment.internal.v0.models.experiment_version': (): io.flow.experiment.internal.v0.models.ExperimentVersion => ({
|
|
6294
|
+
id: factories.string(),
|
|
6295
|
+
timestamp: factories.date_time_iso_8601(),
|
|
6296
|
+
type: factories['io.flow.common.v0.enums.change_type'](),
|
|
6297
|
+
experiment: factories['io.flow.experiment.internal.v0.unions.experiment'](),
|
|
6298
|
+
}),
|
|
6299
|
+
|
|
6300
|
+
'io.flow.experiment.internal.v0.models.feature_experiment': (): io.flow.experiment.internal.v0.models.FeatureExperiment => ({
|
|
6301
|
+
discriminator: 'feature',
|
|
6302
|
+
id: factories.string(),
|
|
6303
|
+
key: factories.string(),
|
|
6304
|
+
name: factories.string(),
|
|
6305
|
+
description: factories.string(),
|
|
6306
|
+
status: factories['io.flow.experiment.internal.v0.enums.status'](),
|
|
6307
|
+
emails: arrayOf(() => factories.string()),
|
|
6308
|
+
scope: factories['io.flow.experiment.internal.v0.enums.scope'](),
|
|
6309
|
+
started_at: factories.date_time_iso_8601(),
|
|
6310
|
+
ended_at: factories.date_time_iso_8601(),
|
|
6311
|
+
variants: arrayOf(() => factories['io.flow.experiment.internal.v0.models.feature_variant']()),
|
|
6312
|
+
transitions: arrayOf(() => factories['io.flow.experiment.internal.v0.enums.status']()),
|
|
6313
|
+
significance_action: factories['io.flow.experiment.internal.v0.enums.significance_action'](),
|
|
6314
|
+
session_query: factories.string(),
|
|
6315
|
+
}),
|
|
6316
|
+
|
|
6317
|
+
'io.flow.experiment.internal.v0.models.feature_value_reference': (): io.flow.experiment.internal.v0.models.FeatureValueReference => ({
|
|
6318
|
+
feature_key: factories.string(),
|
|
6319
|
+
value: factories.string(),
|
|
6320
|
+
}),
|
|
6321
|
+
|
|
6322
|
+
'io.flow.experiment.internal.v0.models.feature_variant': (): io.flow.experiment.internal.v0.models.FeatureVariant => ({
|
|
6323
|
+
discriminator: 'feature_variant',
|
|
6324
|
+
value: factories['io.flow.experiment.internal.v0.models.feature_variant_summary'](),
|
|
6325
|
+
traffic_percentage: factories.integer(),
|
|
6326
|
+
experiment_results: factories['io.flow.experiment.internal.v0.models.experiment_results'](),
|
|
6327
|
+
}),
|
|
6328
|
+
|
|
6329
|
+
'io.flow.experiment.internal.v0.models.feature_variant_form': (): io.flow.experiment.internal.v0.models.FeatureVariantForm => ({
|
|
6330
|
+
discriminator: 'feature',
|
|
6331
|
+
key: factories.string(),
|
|
6332
|
+
traffic_percentage: factories.integer(),
|
|
6333
|
+
}),
|
|
6334
|
+
|
|
6335
|
+
'io.flow.experiment.internal.v0.models.feature_variant_summary': (): io.flow.experiment.internal.v0.models.FeatureVariantSummary => ({
|
|
6336
|
+
key: factories.string(),
|
|
6337
|
+
feature_value: factories['io.flow.experiment.internal.v0.models.feature_value_reference'](),
|
|
6338
|
+
name: factories.string(),
|
|
6339
|
+
}),
|
|
6340
|
+
|
|
6341
|
+
'io.flow.experiment.internal.v0.unions.experiment': (): io.flow.experiment.internal.v0.unions.Experiment => {
|
|
6342
|
+
const f = faker.helpers.arrayElement([
|
|
6343
|
+
() => factories['io.flow.experiment.internal.v0.models.experience_experiment'](),
|
|
6344
|
+
() => factories['io.flow.experiment.internal.v0.models.feature_experiment'](),
|
|
6345
|
+
]);
|
|
6346
|
+
|
|
6347
|
+
return f();
|
|
6348
|
+
},
|
|
6349
|
+
|
|
6350
|
+
'io.flow.experiment.internal.v0.unions.variant': (): io.flow.experiment.internal.v0.unions.Variant => {
|
|
6351
|
+
const f = faker.helpers.arrayElement([
|
|
6352
|
+
() => factories['io.flow.experiment.internal.v0.models.experience_variant'](),
|
|
6353
|
+
() => factories['io.flow.experiment.internal.v0.models.feature_variant'](),
|
|
6354
|
+
]);
|
|
6355
|
+
|
|
6356
|
+
return f();
|
|
6357
|
+
},
|
|
6358
|
+
|
|
6359
|
+
'io.flow.experiment.internal.v0.unions.variant_form': (): io.flow.experiment.internal.v0.unions.VariantForm => {
|
|
6360
|
+
const f = faker.helpers.arrayElement([
|
|
6361
|
+
() => factories['io.flow.experiment.internal.v0.models.experience_variant_form'](),
|
|
6362
|
+
() => factories['io.flow.experiment.internal.v0.models.feature_variant_form'](),
|
|
6363
|
+
]);
|
|
6364
|
+
|
|
6365
|
+
return f();
|
|
6366
|
+
},
|
|
6367
|
+
|
|
6842
6368
|
'io.flow.export.v0.enums.export_status': (): io.flow.RESERVED_WORD_export.v0.enums.ExportStatus => faker.helpers.arrayElement(['created', 'processing', 'completed', 'failed']),
|
|
6843
6369
|
'io.flow.export.v0.enums.item_identifier': (): io.flow.RESERVED_WORD_export.v0.enums.ItemIdentifier => faker.helpers.arrayElement(['item_number', 'sku']),
|
|
6844
6370
|
|
|
@@ -9427,7 +8953,7 @@ const factories = {
|
|
|
9427
8953
|
company_name: factories.string(),
|
|
9428
8954
|
}),
|
|
9429
8955
|
|
|
9430
|
-
'io.flow.internal.v0.enums.account_payment_hold_reason': (): io.flow.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'invalid_bank_account']),
|
|
8956
|
+
'io.flow.internal.v0.enums.account_payment_hold_reason': (): io.flow.internal.v0.enums.AccountPaymentHoldReason => faker.helpers.arrayElement(['fraudulent', 'frozen', 'invalid_bank_account']),
|
|
9431
8957
|
'io.flow.internal.v0.enums.account_setting_liabilities_method': (): io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod => faker.helpers.arrayElement(['withholding', 'transaction']),
|
|
9432
8958
|
'io.flow.internal.v0.enums.account_type': (): io.flow.internal.v0.enums.AccountType => faker.helpers.arrayElement(['channel', 'organization']),
|
|
9433
8959
|
'io.flow.internal.v0.enums.address_configuration_setting_province_code': (): io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode => faker.helpers.arrayElement(['iso_3166_2', 'name']),
|
|
@@ -9698,6 +9224,7 @@ const factories = {
|
|
|
9698
9224
|
'unsupported_virtual_goods',
|
|
9699
9225
|
'non_matching_currencies',
|
|
9700
9226
|
'unsupported_order_edit',
|
|
9227
|
+
'order_missing',
|
|
9701
9228
|
]),
|
|
9702
9229
|
|
|
9703
9230
|
'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 +9280,7 @@ const factories = {
|
|
|
9753
9280
|
'io.flow.internal.v0.enums.classification_type': (): io.flow.internal.v0.enums.ClassificationType => faker.helpers.arrayElement(['None', 'Manual', 'ML']),
|
|
9754
9281
|
'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
9282
|
'io.flow.internal.v0.enums.colm_item_type': (): io.flow.internal.v0.enums.ColmItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
9283
|
+
'io.flow.internal.v0.enums.company': (): io.flow.internal.v0.enums.Company => faker.helpers.arrayElement(['globale', 'flow']),
|
|
9756
9284
|
'io.flow.internal.v0.enums.compliance_type': (): io.flow.internal.v0.enums.ComplianceType => faker.helpers.arrayElement(['weee']),
|
|
9757
9285
|
'io.flow.internal.v0.enums.content_element_type': (): io.flow.internal.v0.enums.ContentElementType => faker.helpers.arrayElement(['markdown', 'html', 'plain_text', 'href']),
|
|
9758
9286
|
'io.flow.internal.v0.enums.content_status': (): io.flow.internal.v0.enums.ContentStatus => faker.helpers.arrayElement(['draft', 'live', 'archived']),
|
|
@@ -9861,6 +9389,8 @@ const factories = {
|
|
|
9861
9389
|
'sales_record_deleted',
|
|
9862
9390
|
'revenue_record_upserted',
|
|
9863
9391
|
'revenue_record_deleted',
|
|
9392
|
+
'other_record_upserted',
|
|
9393
|
+
'other_record_deleted',
|
|
9864
9394
|
'calculator_organization_settings_upserted',
|
|
9865
9395
|
'calculator_organization_settings_deleted',
|
|
9866
9396
|
'carrier_account_upserted_v2',
|
|
@@ -9923,14 +9453,6 @@ const factories = {
|
|
|
9923
9453
|
'experience_import_request',
|
|
9924
9454
|
'submitted_order_upserted',
|
|
9925
9455
|
'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
9456
|
'export_completed',
|
|
9935
9457
|
'export_failed',
|
|
9936
9458
|
'feature_upserted',
|
|
@@ -9965,6 +9487,12 @@ const factories = {
|
|
|
9965
9487
|
'fraud_pending_review_deleted',
|
|
9966
9488
|
'fraud_review_decision_upserted',
|
|
9967
9489
|
'fraud_review_decision_deleted',
|
|
9490
|
+
'fraud_review_authorization_upserted',
|
|
9491
|
+
'fraud_review_authorization_deleted',
|
|
9492
|
+
'fraud_pending_review_authorization_upserted',
|
|
9493
|
+
'fraud_pending_review_authorization_deleted',
|
|
9494
|
+
'fraud_review_authorization_decision_upserted',
|
|
9495
|
+
'fraud_review_authorization_decision_deleted',
|
|
9968
9496
|
'fraud_provider_configuration_upserted',
|
|
9969
9497
|
'fraud_provider_configuration_deleted',
|
|
9970
9498
|
'manual_review_rule_upserted',
|
|
@@ -10042,6 +9570,8 @@ const factories = {
|
|
|
10042
9570
|
'organization_deactivation_deleted',
|
|
10043
9571
|
'merchant_guid_assignment_upserted',
|
|
10044
9572
|
'merchant_guid_assignment_deleted',
|
|
9573
|
+
'organization_metadata_upserted',
|
|
9574
|
+
'organization_metadata_deleted',
|
|
10045
9575
|
'partner_organization_settings_upserted',
|
|
10046
9576
|
'partner_organization_settings_deleted',
|
|
10047
9577
|
'unassigned_merchant_guid_upserted',
|
|
@@ -10117,6 +9647,8 @@ const factories = {
|
|
|
10117
9647
|
'channel_order_summary_deleted',
|
|
10118
9648
|
'channel_organization_identifier_upserted',
|
|
10119
9649
|
'channel_organization_identifier_deleted',
|
|
9650
|
+
'order_tax_and_duty_inclusivity_setting_upserted',
|
|
9651
|
+
'order_tax_and_duty_inclusivity_setting_deleted',
|
|
10120
9652
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
10121
9653
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
10122
9654
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -10135,8 +9667,16 @@ const factories = {
|
|
|
10135
9667
|
'svitlana_item_deleted',
|
|
10136
9668
|
'colm_item_upserted',
|
|
10137
9669
|
'colm_item_deleted',
|
|
9670
|
+
'harinath_item_upserted',
|
|
9671
|
+
'harinath_item_deleted',
|
|
9672
|
+
'konstantin_item_upserted',
|
|
9673
|
+
'konstantin_item_deleted',
|
|
10138
9674
|
'matias_item_upserted',
|
|
10139
9675
|
'matias_item_deleted',
|
|
9676
|
+
'michaelyan_item_upserted',
|
|
9677
|
+
'michaelyan_item_deleted',
|
|
9678
|
+
'miljenko_item_upserted',
|
|
9679
|
+
'miljenko_item_deleted',
|
|
10140
9680
|
'shruti_demo_item_upserted',
|
|
10141
9681
|
'shruti_demo_item_deleted',
|
|
10142
9682
|
'tam_item_upserted',
|
|
@@ -10149,6 +9689,8 @@ const factories = {
|
|
|
10149
9689
|
'tracking_label_deleted',
|
|
10150
9690
|
'tracking_upserted',
|
|
10151
9691
|
'tracking_deleted',
|
|
9692
|
+
'tracking_assurance_analysis_upserted',
|
|
9693
|
+
'tracking_assurance_analysis_deleted',
|
|
10152
9694
|
'tracking_request_upserted',
|
|
10153
9695
|
'tracking_response_upserted',
|
|
10154
9696
|
'user_upserted_v2',
|
|
@@ -10158,7 +9700,6 @@ const factories = {
|
|
|
10158
9700
|
'io.flow.internal.v0.enums.experience_import_type': (): io.flow.internal.v0.enums.ExperienceImportType => faker.helpers.arrayElement(['experience_with_settings']),
|
|
10159
9701
|
'io.flow.internal.v0.enums.experience_order_action': (): io.flow.internal.v0.enums.ExperienceOrderAction => faker.helpers.arrayElement(['submit', 'refund_gift_cards']),
|
|
10160
9702
|
'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
9703
|
'io.flow.internal.v0.enums.export_content_type': (): io.flow.internal.v0.enums.ExportContentType => faker.helpers.arrayElement(['item', 'price_book_item']),
|
|
10163
9704
|
'io.flow.internal.v0.enums.feature_scope': (): io.flow.internal.v0.enums.FeatureScope => faker.helpers.arrayElement(['global', 'organization']),
|
|
10164
9705
|
'io.flow.internal.v0.enums.feature_status': (): io.flow.internal.v0.enums.FeatureStatus => faker.helpers.arrayElement(['draft', 'active', 'archived']),
|
|
@@ -10181,6 +9722,8 @@ const factories = {
|
|
|
10181
9722
|
|
|
10182
9723
|
'io.flow.internal.v0.enums.ftp_protocol': (): io.flow.internal.v0.enums.FtpProtocol => faker.helpers.arrayElement(['sftp', 'ftp']),
|
|
10183
9724
|
'io.flow.internal.v0.enums.google_analytics_plugin': (): io.flow.internal.v0.enums.GoogleAnalyticsPlugin => faker.helpers.arrayElement(['ec']),
|
|
9725
|
+
'io.flow.internal.v0.enums.harinath_item_type': (): io.flow.internal.v0.enums.HarinathItemType => faker.helpers.arrayElement(['digital', 'physical']),
|
|
9726
|
+
'io.flow.internal.v0.enums.harmonization_decision_source': (): io.flow.internal.v0.enums.HarmonizationDecisionSource => faker.helpers.arrayElement(['human', 'legacy_model', 'enterprise_model']),
|
|
10184
9727
|
'io.flow.internal.v0.enums.http_method': (): io.flow.internal.v0.enums.HttpMethod => faker.helpers.arrayElement(['get', 'post']),
|
|
10185
9728
|
'io.flow.internal.v0.enums.inventory_check_service': (): io.flow.internal.v0.enums.InventoryCheckService => faker.helpers.arrayElement(['sfcc', 'gymboree']),
|
|
10186
9729
|
'io.flow.internal.v0.enums.inventory_reservation': (): io.flow.internal.v0.enums.InventoryReservation => faker.helpers.arrayElement(['synchronous-on-submit']),
|
|
@@ -10205,6 +9748,7 @@ const factories = {
|
|
|
10205
9748
|
'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
9749
|
'io.flow.internal.v0.enums.item_type': (): io.flow.internal.v0.enums.ItemType => faker.helpers.arrayElement(['standard', 'multi_product']),
|
|
10207
9750
|
'io.flow.internal.v0.enums.keyword_type': (): io.flow.internal.v0.enums.KeywordType => faker.helpers.arrayElement(['positive', 'negative']),
|
|
9751
|
+
'io.flow.internal.v0.enums.konstantin_item_type': (): io.flow.internal.v0.enums.KonstantinItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
10208
9752
|
'io.flow.internal.v0.enums.label_billing_strategy': (): io.flow.internal.v0.enums.LabelBillingStrategy => faker.helpers.arrayElement(['quote', 'carrier']),
|
|
10209
9753
|
'io.flow.internal.v0.enums.label_cancellation_error_code': (): io.flow.internal.v0.enums.LabelCancellationErrorCode => faker.helpers.arrayElement(['already_used', 'carrier_unsupported']),
|
|
10210
9754
|
'io.flow.internal.v0.enums.label_creation_status': (): io.flow.internal.v0.enums.LabelCreationStatus => faker.helpers.arrayElement(['success', 'error', 'pending', 'cancelled']),
|
|
@@ -10225,6 +9769,13 @@ const factories = {
|
|
|
10225
9769
|
),
|
|
10226
9770
|
|
|
10227
9771
|
'io.flow.internal.v0.enums.logistics_capability': (): io.flow.internal.v0.enums.LogisticsCapability => faker.helpers.arrayElement(['logistics_address_correction']),
|
|
9772
|
+
|
|
9773
|
+
'io.flow.internal.v0.enums.logistics_payout_resolution_method': (): io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod => faker.helpers.arrayElement([
|
|
9774
|
+
'order_combined_shipment',
|
|
9775
|
+
'intransit_label_event',
|
|
9776
|
+
'shipping_notification',
|
|
9777
|
+
]),
|
|
9778
|
+
|
|
10228
9779
|
'io.flow.internal.v0.enums.manual_review_rule_status': (): io.flow.internal.v0.enums.ManualReviewRuleStatus => faker.helpers.arrayElement(['active', 'archived']),
|
|
10229
9780
|
|
|
10230
9781
|
'io.flow.internal.v0.enums.manual_transaction_category': (): io.flow.internal.v0.enums.ManualTransactionCategory => faker.helpers.arrayElement([
|
|
@@ -10292,6 +9843,8 @@ const factories = {
|
|
|
10292
9843
|
),
|
|
10293
9844
|
|
|
10294
9845
|
'io.flow.internal.v0.enums.matias_item_type': (): io.flow.internal.v0.enums.MatiasItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
9846
|
+
'io.flow.internal.v0.enums.michaelyan_item_type': (): io.flow.internal.v0.enums.MichaelyanItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
9847
|
+
'io.flow.internal.v0.enums.miljenko_item_type': (): io.flow.internal.v0.enums.MiljenkoItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
10295
9848
|
'io.flow.internal.v0.enums.mixed_bag_weight': (): io.flow.internal.v0.enums.MixedBagWeight => faker.helpers.arrayElement(['0', '1', '2']),
|
|
10296
9849
|
|
|
10297
9850
|
'io.flow.internal.v0.enums.nature_of_sale': (): io.flow.internal.v0.enums.NatureOfSale => faker.helpers.arrayElement([
|
|
@@ -10344,6 +9897,7 @@ const factories = {
|
|
|
10344
9897
|
'unit_test',
|
|
10345
9898
|
'api',
|
|
10346
9899
|
'api_activation',
|
|
9900
|
+
'api_reject',
|
|
10347
9901
|
'audit_auto_activation',
|
|
10348
9902
|
'api_deactivation',
|
|
10349
9903
|
'api_sandbox_setup',
|
|
@@ -10455,11 +10009,15 @@ const factories = {
|
|
|
10455
10009
|
|
|
10456
10010
|
'io.flow.internal.v0.enums.report_type': (): io.flow.internal.v0.enums.ReportType => faker.helpers.arrayElement([
|
|
10457
10011
|
'sales_record',
|
|
10012
|
+
'refund_record',
|
|
10013
|
+
'other_record',
|
|
10014
|
+
'pending_record',
|
|
10458
10015
|
'trueup_overview',
|
|
10459
10016
|
'non_channel_payment_bank_account',
|
|
10460
10017
|
'scheduled_payment',
|
|
10461
10018
|
'account_quarterly_balances',
|
|
10462
10019
|
'invariants',
|
|
10020
|
+
'payments',
|
|
10463
10021
|
]),
|
|
10464
10022
|
|
|
10465
10023
|
'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': (): io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual => faker.helpers.arrayElement(['all', 'mixed', 'none']),
|
|
@@ -10478,7 +10036,6 @@ const factories = {
|
|
|
10478
10036
|
'io.flow.internal.v0.enums.revenue_record_type': (): io.flow.internal.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['pending', 'sales', 'refund']),
|
|
10479
10037
|
'io.flow.internal.v0.enums.risk_check': (): io.flow.internal.v0.enums.RiskCheck => faker.helpers.arrayElement(['three_d_secure']),
|
|
10480
10038
|
'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
10039
|
'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
10040
|
'io.flow.internal.v0.enums.service_name': (): io.flow.internal.v0.enums.ServiceName => faker.helpers.arrayElement(['catalog', 'demandware', 'metric']),
|
|
10484
10041
|
'io.flow.internal.v0.enums.session_country_status': (): io.flow.internal.v0.enums.SessionCountryStatus => faker.helpers.arrayElement(['enabled', 'disabled']),
|
|
@@ -10546,7 +10103,6 @@ const factories = {
|
|
|
10546
10103
|
'io.flow.internal.v0.enums.shopify_promotion_status': (): io.flow.internal.v0.enums.ShopifyPromotionStatus => faker.helpers.arrayElement(['active', 'inactive']),
|
|
10547
10104
|
'io.flow.internal.v0.enums.shopify_service': (): io.flow.internal.v0.enums.ShopifyService => faker.helpers.arrayElement(['payment', 'duty_tax_calculator']),
|
|
10548
10105
|
'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
10106
|
'io.flow.internal.v0.enums.simple_rounding_strategy': (): io.flow.internal.v0.enums.SimpleRoundingStrategy => faker.helpers.arrayElement(['no_rounding', 'currency_precision']),
|
|
10551
10107
|
'io.flow.internal.v0.enums.snooze_next_action_with': (): io.flow.internal.v0.enums.SnoozeNextActionWith => faker.helpers.arrayElement(['customer_service', 'engineering']),
|
|
10552
10108
|
'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['task', 'invariant']),
|
|
@@ -10569,7 +10125,6 @@ const factories = {
|
|
|
10569
10125
|
'rate-freshness',
|
|
10570
10126
|
]),
|
|
10571
10127
|
|
|
10572
|
-
'io.flow.internal.v0.enums.status': (): io.flow.internal.v0.enums.Status => faker.helpers.arrayElement(['draft', 'scheduled', 'live', 'ended', 'archived']),
|
|
10573
10128
|
'io.flow.internal.v0.enums.subscription_frequency': (): io.flow.internal.v0.enums.SubscriptionFrequency => faker.helpers.arrayElement(['yearly', 'monthly']),
|
|
10574
10129
|
'io.flow.internal.v0.enums.suggestion_action': (): io.flow.internal.v0.enums.SuggestionAction => faker.helpers.arrayElement(['accept', 'validate', 'review']),
|
|
10575
10130
|
'io.flow.internal.v0.enums.svitlana_type': (): io.flow.internal.v0.enums.SvitlanaType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
@@ -10586,10 +10141,17 @@ const factories = {
|
|
|
10586
10141
|
'center_defaults',
|
|
10587
10142
|
]),
|
|
10588
10143
|
|
|
10144
|
+
'io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting': (): io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting => faker.helpers.arrayElement([
|
|
10145
|
+
'duty_exclusive_tax_exclusive',
|
|
10146
|
+
'duty_inclusive_tax_exclusive',
|
|
10147
|
+
'duty_exclusive_tax_inclusive',
|
|
10148
|
+
'duty_inclusive_tax_inclusive',
|
|
10149
|
+
]),
|
|
10150
|
+
|
|
10589
10151
|
'io.flow.internal.v0.enums.tax_calculation_error_code': (): io.flow.internal.v0.enums.TaxCalculationErrorCode => faker.helpers.arrayElement(['generic_error', 'outside_of_jurisdiction']),
|
|
10590
10152
|
'io.flow.internal.v0.enums.tax_party': (): io.flow.internal.v0.enums.TaxParty => faker.helpers.arrayElement(['consumer', 'organization', 'flow', 'carrier']),
|
|
10591
10153
|
'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.
|
|
10154
|
+
'io.flow.internal.v0.enums.thiago_item_type': (): io.flow.internal.v0.enums.ThiagoItemType => faker.helpers.arrayElement(['digital', 'physical']),
|
|
10593
10155
|
'io.flow.internal.v0.enums.tracking_integration_type': (): io.flow.internal.v0.enums.TrackingIntegrationType => faker.helpers.arrayElement(['api', 'bulk', 'aftership']),
|
|
10594
10156
|
|
|
10595
10157
|
'io.flow.internal.v0.enums.tracking_processing_failure_classification': (): io.flow.internal.v0.enums.TrackingProcessingFailureClassification => faker.helpers.arrayElement([
|
|
@@ -11417,17 +10979,6 @@ const factories = {
|
|
|
11417
10979
|
action: factories['io.flow.internal.v0.enums.restriction_status'](),
|
|
11418
10980
|
}),
|
|
11419
10981
|
|
|
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
10982
|
'io.flow.internal.v0.models.bank_account_reference': (): io.flow.internal.v0.models.BankAccountReference => ({
|
|
11432
10983
|
id: factories.string(),
|
|
11433
10984
|
}),
|
|
@@ -11550,7 +11101,7 @@ const factories = {
|
|
|
11550
11101
|
discriminator: 'billing_csv_transaction_upserted',
|
|
11551
11102
|
event_id: factories.string(),
|
|
11552
11103
|
timestamp: factories.date_time_iso_8601(),
|
|
11553
|
-
transaction: factories['io.flow.
|
|
11104
|
+
transaction: factories['io.flow.internal.v0.models.csv_transaction'](),
|
|
11554
11105
|
}),
|
|
11555
11106
|
|
|
11556
11107
|
'io.flow.internal.v0.models.billing_invoice_summary': (): io.flow.internal.v0.models.BillingInvoiceSummary => ({
|
|
@@ -13026,28 +12577,38 @@ const factories = {
|
|
|
13026
12577
|
}),
|
|
13027
12578
|
|
|
13028
12579
|
'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
|
-
|
|
12580
|
+
MerchantId: factories.string(),
|
|
12581
|
+
ProductName: factories.string(),
|
|
12582
|
+
ProductDescription: factories.string(),
|
|
12583
|
+
ProductIdInternal: factories.string(),
|
|
12584
|
+
ProductIdExternal: factories.string(),
|
|
12585
|
+
ProductGroupCode: factories.string(),
|
|
12586
|
+
ProductUrl: factories.string(),
|
|
12587
|
+
ProductImage: factories.string(),
|
|
12588
|
+
ProductAttributes: objectOf(() => factories.string()),
|
|
12589
|
+
Categories: arrayOf(() => factories.string()),
|
|
12590
|
+
PlatformId: factories['io.flow.internal.v0.enums.classification_platform'](),
|
|
12591
|
+
}),
|
|
12592
|
+
|
|
12593
|
+
'io.flow.internal.v0.models.classification_product_request_envelope': (): io.flow.internal.v0.models.ClassificationProductRequestEnvelope => ({
|
|
12594
|
+
messageType: arrayOf(() => factories.string()),
|
|
12595
|
+
message: factories['io.flow.internal.v0.models.classification_product_request'](),
|
|
13040
12596
|
}),
|
|
13041
12597
|
|
|
13042
12598
|
'io.flow.internal.v0.models.classification_product_result': (): io.flow.internal.v0.models.ClassificationProductResult => ({
|
|
13043
|
-
|
|
13044
|
-
|
|
13045
|
-
|
|
13046
|
-
|
|
12599
|
+
productId: factories.string(),
|
|
12600
|
+
merchantId: factories.string(),
|
|
12601
|
+
platformId: factories['io.flow.internal.v0.enums.classification_platform'](),
|
|
12602
|
+
hsCode: factories.string(),
|
|
13047
12603
|
probability: factories.integer(),
|
|
13048
|
-
|
|
13049
|
-
|
|
13050
|
-
|
|
12604
|
+
classificationDecision: factories['io.flow.internal.v0.enums.classification_decision'](),
|
|
12605
|
+
classificationType: factories['io.flow.internal.v0.enums.classification_type'](),
|
|
12606
|
+
clothingAgeClassification: factories['io.flow.internal.v0.enums.clothing_age_classification'](),
|
|
12607
|
+
}),
|
|
12608
|
+
|
|
12609
|
+
'io.flow.internal.v0.models.classification_product_result_envelope': (): io.flow.internal.v0.models.ClassificationProductResultEnvelope => ({
|
|
12610
|
+
messageType: arrayOf(() => factories.string()),
|
|
12611
|
+
message: factories['io.flow.internal.v0.models.classification_product_result'](),
|
|
13051
12612
|
}),
|
|
13052
12613
|
|
|
13053
12614
|
'io.flow.internal.v0.models.classification_product_summary': (): io.flow.internal.v0.models.ClassificationProductSummary => ({
|
|
@@ -13390,6 +12951,25 @@ const factories = {
|
|
|
13390
12951
|
signature_secret: factories.string(),
|
|
13391
12952
|
}),
|
|
13392
12953
|
|
|
12954
|
+
'io.flow.internal.v0.models.csv_transaction': (): io.flow.internal.v0.models.CsvTransaction => ({
|
|
12955
|
+
id: factories.string(),
|
|
12956
|
+
type: factories['io.flow.internal.v0.enums.billing_transaction_type'](),
|
|
12957
|
+
account: factories['io.flow.internal.v0.models.other_record_account'](),
|
|
12958
|
+
metadata: factories['io.flow.internal.v0.models.other_record_metadata'](),
|
|
12959
|
+
order: factories['io.flow.internal.v0.models.other_record_order_summary'](),
|
|
12960
|
+
currency: factories.string(),
|
|
12961
|
+
source: factories['io.flow.billing.v0.enums.transaction_source'](),
|
|
12962
|
+
parent: factories['io.flow.billing.v0.models.parent_transaction_summary'](),
|
|
12963
|
+
gross: factories.decimal(),
|
|
12964
|
+
fees: factories['io.flow.internal.v0.models.other_record_fees'](),
|
|
12965
|
+
withholdings: factories['io.flow.internal.v0.models.other_record_withholdings'](),
|
|
12966
|
+
discount: factories['io.flow.internal.v0.models.other_record_discount'](),
|
|
12967
|
+
net: factories.decimal(),
|
|
12968
|
+
identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
|
|
12969
|
+
created_at: factories.date_time_iso_8601(),
|
|
12970
|
+
updated_at: factories.date_time_iso_8601(),
|
|
12971
|
+
}),
|
|
12972
|
+
|
|
13393
12973
|
'io.flow.internal.v0.models.currency_internal_rate': (): io.flow.internal.v0.models.CurrencyInternalRate => ({
|
|
13394
12974
|
id: factories.string(),
|
|
13395
12975
|
organization_id: factories.string(),
|
|
@@ -13495,53 +13075,6 @@ const factories = {
|
|
|
13495
13075
|
construction: factories['io.flow.internal.v0.models.customs_product_attribute_label'](),
|
|
13496
13076
|
}),
|
|
13497
13077
|
|
|
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
13078
|
'io.flow.internal.v0.models.daily_value': (): io.flow.internal.v0.models.DailyValue => ({
|
|
13546
13079
|
id: factories.string(),
|
|
13547
13080
|
key: factories['io.flow.internal.v0.enums.billing_metric_key'](),
|
|
@@ -14266,6 +13799,7 @@ const factories = {
|
|
|
14266
13799
|
}),
|
|
14267
13800
|
|
|
14268
13801
|
'io.flow.internal.v0.models.erp_priority_vendor_form': (): io.flow.internal.v0.models.ErpPriorityVendorForm => ({
|
|
13802
|
+
company: factories['io.flow.internal.v0.enums.company'](),
|
|
14269
13803
|
acc_des: factories.string(),
|
|
14270
13804
|
tax_code: factories.string(),
|
|
14271
13805
|
tax_code_2: factories.string(),
|
|
@@ -14365,21 +13899,6 @@ const factories = {
|
|
|
14365
13899
|
total: factories['io.flow.common.v0.models.money'](),
|
|
14366
13900
|
}),
|
|
14367
13901
|
|
|
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
13902
|
'io.flow.internal.v0.models.experience_export_request': (): io.flow.internal.v0.models.ExperienceExportRequest => ({
|
|
14384
13903
|
discriminator: 'experience_export_request',
|
|
14385
13904
|
event_id: factories.string(),
|
|
@@ -14410,171 +13929,6 @@ const factories = {
|
|
|
14410
13929
|
id: factories.string(),
|
|
14411
13930
|
}),
|
|
14412
13931
|
|
|
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
13932
|
'io.flow.internal.v0.models.explicit_statement': (): io.flow.internal.v0.models.ExplicitStatement => ({
|
|
14579
13933
|
id: factories.string(),
|
|
14580
13934
|
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
@@ -14643,6 +13997,7 @@ const factories = {
|
|
|
14643
13997
|
delivery_estimate: factories.date_time_iso_8601(),
|
|
14644
13998
|
description: factories.string(),
|
|
14645
13999
|
order_number: factories.string(),
|
|
14000
|
+
raw_carrier_event_code: factories.string(),
|
|
14646
14001
|
}),
|
|
14647
14002
|
|
|
14648
14003
|
'io.flow.internal.v0.models.external_fulfillment_proof': (): io.flow.internal.v0.models.ExternalFulfillmentProof => ({
|
|
@@ -14722,23 +14077,6 @@ const factories = {
|
|
|
14722
14077
|
feature: factories['io.flow.internal.v0.models.feature'](),
|
|
14723
14078
|
}),
|
|
14724
14079
|
|
|
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
14080
|
'io.flow.internal.v0.models.feature_form': (): io.flow.internal.v0.models.FeatureForm => ({
|
|
14743
14081
|
name: factories.string(),
|
|
14744
14082
|
description: factories.string(),
|
|
@@ -14796,34 +14134,10 @@ const factories = {
|
|
|
14796
14134
|
context: factories['io.flow.internal.v0.models.feature_context_form'](),
|
|
14797
14135
|
}),
|
|
14798
14136
|
|
|
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
14137
|
'io.flow.internal.v0.models.feature_value_result': (): io.flow.internal.v0.models.FeatureValueResult => ({
|
|
14805
14138
|
values: arrayOf(() => factories['io.flow.internal.v0.unions.feature_value']()),
|
|
14806
14139
|
}),
|
|
14807
14140
|
|
|
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
14141
|
'io.flow.internal.v0.models.fedex': (): io.flow.internal.v0.models.Fedex => ({
|
|
14828
14142
|
discriminator: 'fedex',
|
|
14829
14143
|
key: factories.string(),
|
|
@@ -15079,8 +14393,10 @@ const factories = {
|
|
|
15079
14393
|
next_action_from: factories['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'](),
|
|
15080
14394
|
}),
|
|
15081
14395
|
|
|
15082
|
-
'io.flow.internal.v0.models.
|
|
15083
|
-
|
|
14396
|
+
'io.flow.internal.v0.models.fraud_authorization_summary': (): io.flow.internal.v0.models.FraudAuthorizationSummary => ({
|
|
14397
|
+
fraud_review_authorization: factories['io.flow.internal.v0.models.fraud_review_authorization'](),
|
|
14398
|
+
fraud_pending_review_authorization: factories['io.flow.internal.v0.models.fraud_pending_review_authorization'](),
|
|
14399
|
+
fraud_review_authorization_decision: factories['io.flow.internal.v0.models.fraud_review_authorization_decision'](),
|
|
15084
14400
|
}),
|
|
15085
14401
|
|
|
15086
14402
|
'io.flow.internal.v0.models.fraud_pending_review': (): io.flow.internal.v0.models.FraudPendingReview => ({
|
|
@@ -15093,6 +14409,32 @@ const factories = {
|
|
|
15093
14409
|
liability: factories['io.flow.fraud.v0.enums.fraud_liability'](),
|
|
15094
14410
|
}),
|
|
15095
14411
|
|
|
14412
|
+
'io.flow.internal.v0.models.fraud_pending_review_authorization': (): io.flow.internal.v0.models.FraudPendingReviewAuthorization => ({
|
|
14413
|
+
id: factories.string(),
|
|
14414
|
+
fraud_review_authorization_id: factories.string(),
|
|
14415
|
+
order: factories['io.flow.experience.v0.models.order_reference'](),
|
|
14416
|
+
fraud_order_reference: factories['io.flow.fraud.v0.unions.fraud_order_reference'](),
|
|
14417
|
+
recommended_status: factories['io.flow.fraud.v0.enums.fraud_status'](),
|
|
14418
|
+
apply_at: factories.date_time_iso_8601(),
|
|
14419
|
+
liability: factories['io.flow.fraud.v0.enums.fraud_liability'](),
|
|
14420
|
+
}),
|
|
14421
|
+
|
|
14422
|
+
'io.flow.internal.v0.models.fraud_pending_review_authorization_deleted': (): io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted => ({
|
|
14423
|
+
discriminator: 'fraud_pending_review_authorization_deleted',
|
|
14424
|
+
event_id: factories.string(),
|
|
14425
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14426
|
+
organization: factories.string(),
|
|
14427
|
+
id: factories.string(),
|
|
14428
|
+
}),
|
|
14429
|
+
|
|
14430
|
+
'io.flow.internal.v0.models.fraud_pending_review_authorization_upserted': (): io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted => ({
|
|
14431
|
+
discriminator: 'fraud_pending_review_authorization_upserted',
|
|
14432
|
+
event_id: factories.string(),
|
|
14433
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14434
|
+
organization: factories.string(),
|
|
14435
|
+
fraud_pending_review_authorization: factories['io.flow.internal.v0.models.fraud_pending_review_authorization'](),
|
|
14436
|
+
}),
|
|
14437
|
+
|
|
15096
14438
|
'io.flow.internal.v0.models.fraud_pending_review_deleted': (): io.flow.internal.v0.models.FraudPendingReviewDeleted => ({
|
|
15097
14439
|
discriminator: 'fraud_pending_review_deleted',
|
|
15098
14440
|
event_id: factories.string(),
|
|
@@ -15173,6 +14515,67 @@ const factories = {
|
|
|
15173
14515
|
created_at: factories.date_time_iso_8601(),
|
|
15174
14516
|
}),
|
|
15175
14517
|
|
|
14518
|
+
'io.flow.internal.v0.models.fraud_review_authorization': (): io.flow.internal.v0.models.FraudReviewAuthorization => ({
|
|
14519
|
+
id: factories.string(),
|
|
14520
|
+
organization_id: factories.string(),
|
|
14521
|
+
order: factories['io.flow.experience.v0.models.order_reference'](),
|
|
14522
|
+
fraud_order_reference: factories['io.flow.fraud.v0.unions.fraud_order_reference'](),
|
|
14523
|
+
status: factories['io.flow.fraud.v0.enums.fraud_status'](),
|
|
14524
|
+
responsible_party: factories['io.flow.internal.v0.enums.fraud_review_responsible_party'](),
|
|
14525
|
+
description: factories.string(),
|
|
14526
|
+
risk_evaluation: factories['io.flow.internal.v0.enums.risk_evaluation'](),
|
|
14527
|
+
liability: factories['io.flow.fraud.v0.enums.fraud_liability'](),
|
|
14528
|
+
status_updated_at: factories.date_time_iso_8601(),
|
|
14529
|
+
attributes: objectOf(() => factories.string()),
|
|
14530
|
+
provider: factories['io.flow.internal.v0.enums.fraud_provider'](),
|
|
14531
|
+
payment_authorization_id: factories.string(),
|
|
14532
|
+
decline_reason: factories['io.flow.internal.v0.unions.decline_reason'](),
|
|
14533
|
+
created_at: factories.date_time_iso_8601(),
|
|
14534
|
+
}),
|
|
14535
|
+
|
|
14536
|
+
'io.flow.internal.v0.models.fraud_review_authorization_decision': (): io.flow.internal.v0.models.FraudReviewAuthorizationDecision => ({
|
|
14537
|
+
id: factories.string(),
|
|
14538
|
+
fraud_review_authorization_id: factories.string(),
|
|
14539
|
+
order: factories['io.flow.experience.v0.models.order_reference'](),
|
|
14540
|
+
fraud_order_reference: factories['io.flow.fraud.v0.unions.fraud_order_reference'](),
|
|
14541
|
+
status: factories['io.flow.fraud.v0.enums.fraud_status'](),
|
|
14542
|
+
created_at: factories.date_time_iso_8601(),
|
|
14543
|
+
liability: factories['io.flow.fraud.v0.enums.fraud_liability'](),
|
|
14544
|
+
updated_by_user: factories['io.flow.common.v0.models.user_reference'](),
|
|
14545
|
+
}),
|
|
14546
|
+
|
|
14547
|
+
'io.flow.internal.v0.models.fraud_review_authorization_decision_deleted': (): io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted => ({
|
|
14548
|
+
discriminator: 'fraud_review_authorization_decision_deleted',
|
|
14549
|
+
event_id: factories.string(),
|
|
14550
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14551
|
+
organization: factories.string(),
|
|
14552
|
+
id: factories.string(),
|
|
14553
|
+
}),
|
|
14554
|
+
|
|
14555
|
+
'io.flow.internal.v0.models.fraud_review_authorization_decision_upserted': (): io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted => ({
|
|
14556
|
+
discriminator: 'fraud_review_authorization_decision_upserted',
|
|
14557
|
+
event_id: factories.string(),
|
|
14558
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14559
|
+
organization: factories.string(),
|
|
14560
|
+
fraud_review_authorization_decision: factories['io.flow.internal.v0.models.fraud_review_authorization_decision'](),
|
|
14561
|
+
}),
|
|
14562
|
+
|
|
14563
|
+
'io.flow.internal.v0.models.fraud_review_authorization_deleted': (): io.flow.internal.v0.models.FraudReviewAuthorizationDeleted => ({
|
|
14564
|
+
discriminator: 'fraud_review_authorization_deleted',
|
|
14565
|
+
event_id: factories.string(),
|
|
14566
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14567
|
+
organization: factories.string(),
|
|
14568
|
+
id: factories.string(),
|
|
14569
|
+
}),
|
|
14570
|
+
|
|
14571
|
+
'io.flow.internal.v0.models.fraud_review_authorization_upserted': (): io.flow.internal.v0.models.FraudReviewAuthorizationUpserted => ({
|
|
14572
|
+
discriminator: 'fraud_review_authorization_upserted',
|
|
14573
|
+
event_id: factories.string(),
|
|
14574
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14575
|
+
organization: factories.string(),
|
|
14576
|
+
fraud_review_authorization: factories['io.flow.internal.v0.models.fraud_review_authorization'](),
|
|
14577
|
+
}),
|
|
14578
|
+
|
|
15176
14579
|
'io.flow.internal.v0.models.fraud_review_decision': (): io.flow.internal.v0.models.FraudReviewDecision => ({
|
|
15177
14580
|
id: factories.string(),
|
|
15178
14581
|
fraud_review_id: factories.string(),
|
|
@@ -15231,6 +14634,10 @@ const factories = {
|
|
|
15231
14634
|
fraud_review: factories['io.flow.internal.v0.models.fraud_review'](),
|
|
15232
14635
|
fraud_pending_review: factories['io.flow.internal.v0.models.fraud_pending_review'](),
|
|
15233
14636
|
fraud_review_decision: factories['io.flow.internal.v0.models.fraud_review_decision'](),
|
|
14637
|
+
|
|
14638
|
+
fraud_review_authorizations: arrayOf(
|
|
14639
|
+
() => factories['io.flow.internal.v0.models.fraud_authorization_summary'](),
|
|
14640
|
+
),
|
|
15234
14641
|
}),
|
|
15235
14642
|
|
|
15236
14643
|
'io.flow.internal.v0.models.ftp_file_deleted': (): io.flow.internal.v0.models.FtpFileDeleted => ({
|
|
@@ -15305,6 +14712,7 @@ const factories = {
|
|
|
15305
14712
|
order: factories['io.flow.internal.v0.models.order_summary'](),
|
|
15306
14713
|
shopper: factories['io.flow.internal.v0.models.shopper_summary'](),
|
|
15307
14714
|
remittance: factories['io.flow.internal.v0.models.remittance_responsibility'](),
|
|
14715
|
+
payment: factories['io.flow.internal.v0.models.payment_summary'](),
|
|
15308
14716
|
merchant: factories['io.flow.internal.v0.models.merchant_summary'](),
|
|
15309
14717
|
sequence_number: factories.long(),
|
|
15310
14718
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
@@ -15426,6 +14834,7 @@ const factories = {
|
|
|
15426
14834
|
subtotal: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15427
14835
|
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15428
14836
|
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
14837
|
+
tips: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15429
14838
|
discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15430
14839
|
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
15431
14840
|
}),
|
|
@@ -15590,6 +14999,37 @@ const factories = {
|
|
|
15590
14999
|
tracker_id: factories.string(),
|
|
15591
15000
|
}),
|
|
15592
15001
|
|
|
15002
|
+
'io.flow.internal.v0.models.harinath_item': (): io.flow.internal.v0.models.HarinathItem => ({
|
|
15003
|
+
id: factories.string(),
|
|
15004
|
+
number: factories.string(),
|
|
15005
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
15006
|
+
description: factories.string(),
|
|
15007
|
+
type: factories['io.flow.internal.v0.enums.harinath_item_type'](),
|
|
15008
|
+
added_on: factories.date_time_iso_8601(),
|
|
15009
|
+
}),
|
|
15010
|
+
|
|
15011
|
+
'io.flow.internal.v0.models.harinath_item_deleted': (): io.flow.internal.v0.models.HarinathItemDeleted => ({
|
|
15012
|
+
discriminator: 'harinath_item_deleted',
|
|
15013
|
+
event_id: factories.string(),
|
|
15014
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15015
|
+
id: factories.string(),
|
|
15016
|
+
}),
|
|
15017
|
+
|
|
15018
|
+
'io.flow.internal.v0.models.harinath_item_form': (): io.flow.internal.v0.models.HarinathItemForm => ({
|
|
15019
|
+
number: factories.string(),
|
|
15020
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
15021
|
+
description: factories.string(),
|
|
15022
|
+
type: factories['io.flow.internal.v0.enums.harinath_item_type'](),
|
|
15023
|
+
added_on: factories.date_time_iso_8601(),
|
|
15024
|
+
}),
|
|
15025
|
+
|
|
15026
|
+
'io.flow.internal.v0.models.harinath_item_upserted': (): io.flow.internal.v0.models.HarinathItemUpserted => ({
|
|
15027
|
+
discriminator: 'harinath_item_upserted',
|
|
15028
|
+
event_id: factories.string(),
|
|
15029
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15030
|
+
item: factories['io.flow.internal.v0.models.harinath_item'](),
|
|
15031
|
+
}),
|
|
15032
|
+
|
|
15593
15033
|
'io.flow.internal.v0.models.harmonization_classification_statistics_data': (): io.flow.internal.v0.models.HarmonizationClassificationStatisticsData => ({
|
|
15594
15034
|
statistics: factories['io.flow.internal.v0.models.classification_statistics'](),
|
|
15595
15035
|
}),
|
|
@@ -16126,6 +15566,7 @@ const factories = {
|
|
|
16126
15566
|
price_amount: factories.decimal(),
|
|
16127
15567
|
status: factories['io.flow.internal.v0.enums.item_harmonization_status'](),
|
|
16128
15568
|
tariffs: objectOf(() => factories['io.flow.internal.v0.models.tariff_code_duty']()),
|
|
15569
|
+
decision_source: factories['io.flow.internal.v0.enums.harmonization_decision_source'](),
|
|
16129
15570
|
created_at: factories.date_time_iso_8601(),
|
|
16130
15571
|
updated_at: factories.date_time_iso_8601(),
|
|
16131
15572
|
updated_by_user_id: factories.string(),
|
|
@@ -16285,6 +15726,37 @@ const factories = {
|
|
|
16285
15726
|
descriptive_asset_urls: factories.string(),
|
|
16286
15727
|
}),
|
|
16287
15728
|
|
|
15729
|
+
'io.flow.internal.v0.models.konstantin_item': (): io.flow.internal.v0.models.KonstantinItem => ({
|
|
15730
|
+
id: factories.string(),
|
|
15731
|
+
number: factories.string(),
|
|
15732
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
15733
|
+
description: factories.string(),
|
|
15734
|
+
type: factories['io.flow.internal.v0.enums.konstantin_item_type'](),
|
|
15735
|
+
added_on: factories.date_time_iso_8601(),
|
|
15736
|
+
}),
|
|
15737
|
+
|
|
15738
|
+
'io.flow.internal.v0.models.konstantin_item_deleted': (): io.flow.internal.v0.models.KonstantinItemDeleted => ({
|
|
15739
|
+
discriminator: 'konstantin_item_deleted',
|
|
15740
|
+
event_id: factories.string(),
|
|
15741
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15742
|
+
id: factories.string(),
|
|
15743
|
+
}),
|
|
15744
|
+
|
|
15745
|
+
'io.flow.internal.v0.models.konstantin_item_form': (): io.flow.internal.v0.models.KonstantinItemForm => ({
|
|
15746
|
+
number: factories.string(),
|
|
15747
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
15748
|
+
description: factories.string(),
|
|
15749
|
+
type: factories['io.flow.internal.v0.enums.konstantin_item_type'](),
|
|
15750
|
+
added_on: factories.date_time_iso_8601(),
|
|
15751
|
+
}),
|
|
15752
|
+
|
|
15753
|
+
'io.flow.internal.v0.models.konstantin_item_upserted': (): io.flow.internal.v0.models.KonstantinItemUpserted => ({
|
|
15754
|
+
discriminator: 'konstantin_item_upserted',
|
|
15755
|
+
event_id: factories.string(),
|
|
15756
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15757
|
+
item: factories['io.flow.internal.v0.models.konstantin_item'](),
|
|
15758
|
+
}),
|
|
15759
|
+
|
|
16288
15760
|
'io.flow.internal.v0.models.lab_project_settings': (): io.flow.internal.v0.models.LabProjectSettings => ({
|
|
16289
15761
|
id: factories.string(),
|
|
16290
15762
|
flow_lab_project_key: factories.string(),
|
|
@@ -16837,6 +16309,26 @@ const factories = {
|
|
|
16837
16309
|
capabilities: arrayOf(() => factories['io.flow.internal.v0.enums.logistics_capability']()),
|
|
16838
16310
|
}),
|
|
16839
16311
|
|
|
16312
|
+
'io.flow.internal.v0.models.logistics_payout_request': (): io.flow.internal.v0.models.LogisticsPayoutRequest => ({
|
|
16313
|
+
organization_id: factories.string(),
|
|
16314
|
+
order_number: factories.string(),
|
|
16315
|
+
carrier: factories.string(),
|
|
16316
|
+
carrier_tracking_number: factories.string(),
|
|
16317
|
+
dry_run: factories.boolean(),
|
|
16318
|
+
payout_resolution_method: factories['io.flow.internal.v0.enums.logistics_payout_resolution_method'](),
|
|
16319
|
+
label_id: factories.string(),
|
|
16320
|
+
combined_shipment_order_number: factories.string(),
|
|
16321
|
+
}),
|
|
16322
|
+
|
|
16323
|
+
'io.flow.internal.v0.models.logistics_payout_request_form': (): io.flow.internal.v0.models.LogisticsPayoutRequestForm => ({
|
|
16324
|
+
organization_id: factories.string(),
|
|
16325
|
+
order_identifier: factories.string(),
|
|
16326
|
+
carrier_id: factories.string(),
|
|
16327
|
+
carrier_name: factories.string(),
|
|
16328
|
+
carrier_tracking_number: factories.string(),
|
|
16329
|
+
external_reference_number: factories.string(),
|
|
16330
|
+
}),
|
|
16331
|
+
|
|
16840
16332
|
'io.flow.internal.v0.models.logo': (): io.flow.internal.v0.models.Logo => ({
|
|
16841
16333
|
url: factories.string(),
|
|
16842
16334
|
}),
|
|
@@ -17428,6 +16920,68 @@ const factories = {
|
|
|
17428
16920
|
proposition: factories['io.flow.internal.v0.models.metadata_proposition'](),
|
|
17429
16921
|
}),
|
|
17430
16922
|
|
|
16923
|
+
'io.flow.internal.v0.models.michaelyan_item': (): io.flow.internal.v0.models.MichaelyanItem => ({
|
|
16924
|
+
id: factories.string(),
|
|
16925
|
+
number: factories.string(),
|
|
16926
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
16927
|
+
description: factories.string(),
|
|
16928
|
+
type: factories['io.flow.internal.v0.enums.michaelyan_item_type'](),
|
|
16929
|
+
added_on: factories.date_time_iso_8601(),
|
|
16930
|
+
}),
|
|
16931
|
+
|
|
16932
|
+
'io.flow.internal.v0.models.michaelyan_item_deleted': (): io.flow.internal.v0.models.MichaelyanItemDeleted => ({
|
|
16933
|
+
discriminator: 'michaelyan_item_deleted',
|
|
16934
|
+
event_id: factories.string(),
|
|
16935
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16936
|
+
id: factories.string(),
|
|
16937
|
+
}),
|
|
16938
|
+
|
|
16939
|
+
'io.flow.internal.v0.models.michaelyan_item_form': (): io.flow.internal.v0.models.MichaelyanItemForm => ({
|
|
16940
|
+
number: factories.string(),
|
|
16941
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
16942
|
+
description: factories.string(),
|
|
16943
|
+
type: factories['io.flow.internal.v0.enums.michaelyan_item_type'](),
|
|
16944
|
+
added_on: factories.date_time_iso_8601(),
|
|
16945
|
+
}),
|
|
16946
|
+
|
|
16947
|
+
'io.flow.internal.v0.models.michaelyan_item_upserted': (): io.flow.internal.v0.models.MichaelyanItemUpserted => ({
|
|
16948
|
+
discriminator: 'michaelyan_item_upserted',
|
|
16949
|
+
event_id: factories.string(),
|
|
16950
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16951
|
+
item: factories['io.flow.internal.v0.models.michaelyan_item'](),
|
|
16952
|
+
}),
|
|
16953
|
+
|
|
16954
|
+
'io.flow.internal.v0.models.miljenko_item': (): io.flow.internal.v0.models.MiljenkoItem => ({
|
|
16955
|
+
id: factories.string(),
|
|
16956
|
+
number: factories.string(),
|
|
16957
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
16958
|
+
description: factories.string(),
|
|
16959
|
+
type: factories['io.flow.internal.v0.enums.miljenko_item_type'](),
|
|
16960
|
+
added_on: factories.date_time_iso_8601(),
|
|
16961
|
+
}),
|
|
16962
|
+
|
|
16963
|
+
'io.flow.internal.v0.models.miljenko_item_deleted': (): io.flow.internal.v0.models.MiljenkoItemDeleted => ({
|
|
16964
|
+
discriminator: 'miljenko_item_deleted',
|
|
16965
|
+
event_id: factories.string(),
|
|
16966
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16967
|
+
id: factories.string(),
|
|
16968
|
+
}),
|
|
16969
|
+
|
|
16970
|
+
'io.flow.internal.v0.models.miljenko_item_form': (): io.flow.internal.v0.models.MiljenkoItemForm => ({
|
|
16971
|
+
number: factories.string(),
|
|
16972
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
16973
|
+
description: factories.string(),
|
|
16974
|
+
type: factories['io.flow.internal.v0.enums.miljenko_item_type'](),
|
|
16975
|
+
added_on: factories.date_time_iso_8601(),
|
|
16976
|
+
}),
|
|
16977
|
+
|
|
16978
|
+
'io.flow.internal.v0.models.miljenko_item_upserted': (): io.flow.internal.v0.models.MiljenkoItemUpserted => ({
|
|
16979
|
+
discriminator: 'miljenko_item_upserted',
|
|
16980
|
+
event_id: factories.string(),
|
|
16981
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16982
|
+
item: factories['io.flow.internal.v0.models.miljenko_item'](),
|
|
16983
|
+
}),
|
|
16984
|
+
|
|
17431
16985
|
'io.flow.internal.v0.models.next_billing_statement': (): io.flow.internal.v0.models.NextBillingStatement => ({
|
|
17432
16986
|
date: factories.date_time_iso_8601(),
|
|
17433
16987
|
amount: factories['io.flow.common.v0.models.price'](),
|
|
@@ -17855,6 +17409,29 @@ const factories = {
|
|
|
17855
17409
|
currency: factories.string(),
|
|
17856
17410
|
}),
|
|
17857
17411
|
|
|
17412
|
+
'io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting': (): io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting => ({
|
|
17413
|
+
id: factories.string(),
|
|
17414
|
+
organization_id: factories.string(),
|
|
17415
|
+
shopify_order_id: factories.string(),
|
|
17416
|
+
order_number: factories.string(),
|
|
17417
|
+
tax_and_duty_inclusivity_setting: factories['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting'](),
|
|
17418
|
+
}),
|
|
17419
|
+
|
|
17420
|
+
'io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted': (): io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted => ({
|
|
17421
|
+
discriminator: 'order_tax_and_duty_inclusivity_setting_deleted',
|
|
17422
|
+
event_id: factories.string(),
|
|
17423
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17424
|
+
organization: factories.string(),
|
|
17425
|
+
id: factories.string(),
|
|
17426
|
+
}),
|
|
17427
|
+
|
|
17428
|
+
'io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted': (): io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted => ({
|
|
17429
|
+
discriminator: 'order_tax_and_duty_inclusivity_setting_upserted',
|
|
17430
|
+
event_id: factories.string(),
|
|
17431
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17432
|
+
order_tax_and_duty_inclusivity_setting: factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'](),
|
|
17433
|
+
}),
|
|
17434
|
+
|
|
17858
17435
|
'io.flow.internal.v0.models.order_transaction': (): io.flow.internal.v0.models.OrderTransaction => ({
|
|
17859
17436
|
discriminator: 'order_transaction',
|
|
17860
17437
|
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
@@ -18148,6 +17725,34 @@ const factories = {
|
|
|
18148
17725
|
to: factories.string(),
|
|
18149
17726
|
}),
|
|
18150
17727
|
|
|
17728
|
+
'io.flow.internal.v0.models.organization_metadata': (): io.flow.internal.v0.models.OrganizationMetadata => ({
|
|
17729
|
+
id: factories.string(),
|
|
17730
|
+
organization_id: factories.string(),
|
|
17731
|
+
pending_restriction_count: factories.long(),
|
|
17732
|
+
pending_verification_count: factories.long(),
|
|
17733
|
+
oldest_pending_restriction_date: factories.date_time_iso_8601(),
|
|
17734
|
+
oldest_pending_verification_date: factories.date_time_iso_8601(),
|
|
17735
|
+
product_count: factories.long(),
|
|
17736
|
+
restricted_product_count: factories.long(),
|
|
17737
|
+
last_order_submitted_at: factories.date_time_iso_8601(),
|
|
17738
|
+
}),
|
|
17739
|
+
|
|
17740
|
+
'io.flow.internal.v0.models.organization_metadata_deleted': (): io.flow.internal.v0.models.OrganizationMetadataDeleted => ({
|
|
17741
|
+
discriminator: 'organization_metadata_deleted',
|
|
17742
|
+
event_id: factories.string(),
|
|
17743
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17744
|
+
organization: factories.string(),
|
|
17745
|
+
id: factories.string(),
|
|
17746
|
+
}),
|
|
17747
|
+
|
|
17748
|
+
'io.flow.internal.v0.models.organization_metadata_upserted': (): io.flow.internal.v0.models.OrganizationMetadataUpserted => ({
|
|
17749
|
+
discriminator: 'organization_metadata_upserted',
|
|
17750
|
+
event_id: factories.string(),
|
|
17751
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17752
|
+
organization: factories.string(),
|
|
17753
|
+
organization_metadata: factories['io.flow.internal.v0.models.organization_metadata'](),
|
|
17754
|
+
}),
|
|
17755
|
+
|
|
18151
17756
|
'io.flow.internal.v0.models.organization_onboarding_state_adjustment_result': (): io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult => ({
|
|
18152
17757
|
organization_onboarding_state: factories['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'](),
|
|
18153
17758
|
}),
|
|
@@ -18347,6 +17952,144 @@ const factories = {
|
|
|
18347
17952
|
audit_result: factories['io.flow.internal.v0.enums.onboarding_audit_result'](),
|
|
18348
17953
|
}),
|
|
18349
17954
|
|
|
17955
|
+
'io.flow.internal.v0.models.other_record': (): io.flow.internal.v0.models.OtherRecord => ({
|
|
17956
|
+
id: factories.string(),
|
|
17957
|
+
type: factories['io.flow.internal.v0.enums.billing_transaction_type'](),
|
|
17958
|
+
account: factories['io.flow.internal.v0.models.other_record_account'](),
|
|
17959
|
+
metadata: factories['io.flow.internal.v0.models.other_record_metadata'](),
|
|
17960
|
+
order: factories['io.flow.internal.v0.models.other_record_order_summary'](),
|
|
17961
|
+
currency: factories.string(),
|
|
17962
|
+
source: factories['io.flow.billing.v0.enums.transaction_source'](),
|
|
17963
|
+
parent: factories['io.flow.billing.v0.models.parent_transaction_summary'](),
|
|
17964
|
+
gross: factories.decimal(),
|
|
17965
|
+
fees: factories['io.flow.internal.v0.models.other_record_fees'](),
|
|
17966
|
+
withholdings: factories['io.flow.internal.v0.models.other_record_withholdings'](),
|
|
17967
|
+
discount: factories['io.flow.internal.v0.models.other_record_discount'](),
|
|
17968
|
+
net: factories.decimal(),
|
|
17969
|
+
identifiers: factories['io.flow.internal.v0.models.other_record_identifiers'](),
|
|
17970
|
+
created_at: factories.date_time_iso_8601(),
|
|
17971
|
+
updated_at: factories.date_time_iso_8601(),
|
|
17972
|
+
}),
|
|
17973
|
+
|
|
17974
|
+
'io.flow.internal.v0.models.other_record_account': (): io.flow.internal.v0.models.OtherRecordAccount => ({
|
|
17975
|
+
id: factories.string(),
|
|
17976
|
+
merchant: factories['io.flow.internal.v0.models.other_record_merchant_reference'](),
|
|
17977
|
+
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
17978
|
+
source: factories['io.flow.internal.v0.models.other_record_account_source_summary'](),
|
|
17979
|
+
}),
|
|
17980
|
+
|
|
17981
|
+
'io.flow.internal.v0.models.other_record_account_source_summary': (): io.flow.internal.v0.models.OtherRecordAccountSourceSummary => ({
|
|
17982
|
+
id: factories.string(),
|
|
17983
|
+
type: factories['io.flow.internal.v0.enums.account_type'](),
|
|
17984
|
+
}),
|
|
17985
|
+
|
|
17986
|
+
'io.flow.internal.v0.models.other_record_deleted': (): io.flow.internal.v0.models.OtherRecordDeleted => ({
|
|
17987
|
+
discriminator: 'other_record_deleted',
|
|
17988
|
+
event_id: factories.string(),
|
|
17989
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17990
|
+
id: factories.string(),
|
|
17991
|
+
}),
|
|
17992
|
+
|
|
17993
|
+
'io.flow.internal.v0.models.other_record_discount': (): io.flow.internal.v0.models.OtherRecordDiscount => ({
|
|
17994
|
+
amount: factories.decimal(),
|
|
17995
|
+
description: factories.string(),
|
|
17996
|
+
}),
|
|
17997
|
+
|
|
17998
|
+
'io.flow.internal.v0.models.other_record_fees': (): io.flow.internal.v0.models.OtherRecordFees => ({
|
|
17999
|
+
duty_guarantee: factories.decimal(),
|
|
18000
|
+
mor: factories.decimal(),
|
|
18001
|
+
fraud: factories.decimal(),
|
|
18002
|
+
fx: factories.decimal(),
|
|
18003
|
+
processing: factories.decimal(),
|
|
18004
|
+
rate_lock: factories.decimal(),
|
|
18005
|
+
transfer: factories.decimal(),
|
|
18006
|
+
negative_balance: factories.decimal(),
|
|
18007
|
+
}),
|
|
18008
|
+
|
|
18009
|
+
'io.flow.internal.v0.models.other_record_identifiers': (): io.flow.internal.v0.models.OtherRecordIdentifiers => ({
|
|
18010
|
+
reference_id: factories.string(),
|
|
18011
|
+
}),
|
|
18012
|
+
|
|
18013
|
+
'io.flow.internal.v0.models.other_record_merchant_reference': (): io.flow.internal.v0.models.OtherRecordMerchantReference => ({
|
|
18014
|
+
id: factories.string(),
|
|
18015
|
+
}),
|
|
18016
|
+
|
|
18017
|
+
'io.flow.internal.v0.models.other_record_metadata': (): io.flow.internal.v0.models.OtherRecordMetadata => ({
|
|
18018
|
+
channel: factories['io.flow.internal.v0.models.other_record_metadata_channel'](),
|
|
18019
|
+
shipping_label: factories['io.flow.internal.v0.models.other_record_metadata_shipping_label'](),
|
|
18020
|
+
shipping_label_revenue_share: factories['io.flow.internal.v0.models.other_record_metadata_shipping_label_revenue_share'](),
|
|
18021
|
+
trueup: factories['io.flow.internal.v0.models.other_record_metadata_trueup'](),
|
|
18022
|
+
carrier_charge: factories['io.flow.internal.v0.models.other_record_metadata_carrier_charge'](),
|
|
18023
|
+
manual: factories['io.flow.internal.v0.models.other_record_metadata_manual'](),
|
|
18024
|
+
failed_payout: factories['io.flow.internal.v0.models.other_record_metadata_failed_payout'](),
|
|
18025
|
+
}),
|
|
18026
|
+
|
|
18027
|
+
'io.flow.internal.v0.models.other_record_metadata_carrier_charge': (): io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge => ({
|
|
18028
|
+
reason: factories['io.flow.trueup.v0.enums.carrier_charge_reason'](),
|
|
18029
|
+
label_created_at: factories.date_time_iso_8601(),
|
|
18030
|
+
carrier_id: factories.string(),
|
|
18031
|
+
carrier_tracking_number: factories.string(),
|
|
18032
|
+
revenue_share_percentage: factories.decimal(),
|
|
18033
|
+
outbound_transaction_id: factories.string(),
|
|
18034
|
+
}),
|
|
18035
|
+
|
|
18036
|
+
'io.flow.internal.v0.models.other_record_metadata_channel': (): io.flow.internal.v0.models.OtherRecordMetadataChannel => ({
|
|
18037
|
+
method: factories.string(),
|
|
18038
|
+
card: factories['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'](),
|
|
18039
|
+
}),
|
|
18040
|
+
|
|
18041
|
+
'io.flow.internal.v0.models.other_record_metadata_failed_payout': (): io.flow.internal.v0.models.OtherRecordMetadataFailedPayout => ({
|
|
18042
|
+
failed_payment: factories['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'](),
|
|
18043
|
+
}),
|
|
18044
|
+
|
|
18045
|
+
'io.flow.internal.v0.models.other_record_metadata_manual': (): io.flow.internal.v0.models.OtherRecordMetadataManual => ({
|
|
18046
|
+
description: factories.string(),
|
|
18047
|
+
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
18048
|
+
category: factories['io.flow.internal.v0.enums.manual_transaction_category'](),
|
|
18049
|
+
url: factories.string(),
|
|
18050
|
+
}),
|
|
18051
|
+
|
|
18052
|
+
'io.flow.internal.v0.models.other_record_metadata_shipping_label': (): io.flow.internal.v0.models.OtherRecordMetadataShippingLabel => ({
|
|
18053
|
+
request_method: factories['io.flow.label.v0.enums.label_request_method'](),
|
|
18054
|
+
}),
|
|
18055
|
+
|
|
18056
|
+
'io.flow.internal.v0.models.other_record_metadata_shipping_label_revenue_share': (): io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare => ({
|
|
18057
|
+
label_id: factories.string(),
|
|
18058
|
+
base_amount: factories.decimal(),
|
|
18059
|
+
percentage: factories.decimal(),
|
|
18060
|
+
}),
|
|
18061
|
+
|
|
18062
|
+
'io.flow.internal.v0.models.other_record_metadata_trueup': (): io.flow.internal.v0.models.OtherRecordMetadataTrueup => ({
|
|
18063
|
+
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
18064
|
+
label_transaction_id: factories.string(),
|
|
18065
|
+
label_invoice_request_id: factories.string(),
|
|
18066
|
+
carrier_charge_id: factories.string(),
|
|
18067
|
+
}),
|
|
18068
|
+
|
|
18069
|
+
'io.flow.internal.v0.models.other_record_order_summary': (): io.flow.internal.v0.models.OtherRecordOrderSummary => ({
|
|
18070
|
+
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
18071
|
+
number: factories.string(),
|
|
18072
|
+
identifiers: factories['io.flow.internal.v0.models.other_record_order_summary_identifiers'](),
|
|
18073
|
+
}),
|
|
18074
|
+
|
|
18075
|
+
'io.flow.internal.v0.models.other_record_order_summary_identifiers': (): io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers => ({
|
|
18076
|
+
shopify_order_id: factories.string(),
|
|
18077
|
+
}),
|
|
18078
|
+
|
|
18079
|
+
'io.flow.internal.v0.models.other_record_upserted': (): io.flow.internal.v0.models.OtherRecordUpserted => ({
|
|
18080
|
+
discriminator: 'other_record_upserted',
|
|
18081
|
+
event_id: factories.string(),
|
|
18082
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18083
|
+
other_record: factories['io.flow.internal.v0.models.other_record'](),
|
|
18084
|
+
}),
|
|
18085
|
+
|
|
18086
|
+
'io.flow.internal.v0.models.other_record_withholdings': (): io.flow.internal.v0.models.OtherRecordWithholdings => ({
|
|
18087
|
+
tax: factories.decimal(),
|
|
18088
|
+
duty: factories.decimal(),
|
|
18089
|
+
freight: factories.decimal(),
|
|
18090
|
+
insurance: factories.decimal(),
|
|
18091
|
+
}),
|
|
18092
|
+
|
|
18350
18093
|
'io.flow.internal.v0.models.partner': (): io.flow.internal.v0.models.Partner => ({
|
|
18351
18094
|
id: factories.string(),
|
|
18352
18095
|
name: factories.string(),
|
|
@@ -18518,6 +18261,15 @@ const factories = {
|
|
|
18518
18261
|
merchant: factories['io.flow.internal.v0.unions.processor_merchant'](),
|
|
18519
18262
|
}),
|
|
18520
18263
|
|
|
18264
|
+
'io.flow.internal.v0.models.payment_summary': (): io.flow.internal.v0.models.PaymentSummary => ({
|
|
18265
|
+
psp: factories.decimal(),
|
|
18266
|
+
credit: factories.decimal(),
|
|
18267
|
+
subsidized: factories.decimal(),
|
|
18268
|
+
manual: factories.decimal(),
|
|
18269
|
+
cod: factories.decimal(),
|
|
18270
|
+
total: factories.decimal(),
|
|
18271
|
+
}),
|
|
18272
|
+
|
|
18521
18273
|
'io.flow.internal.v0.models.payment_summary_v2': (): io.flow.internal.v0.models.PaymentSummaryV2 => ({
|
|
18522
18274
|
discriminator: 'payment_summary_v2',
|
|
18523
18275
|
id: factories.string(),
|
|
@@ -18738,6 +18490,7 @@ const factories = {
|
|
|
18738
18490
|
order: factories['io.flow.internal.v0.models.order_summary'](),
|
|
18739
18491
|
shopper: factories['io.flow.internal.v0.models.shopper_summary'](),
|
|
18740
18492
|
merchant: factories['io.flow.internal.v0.models.merchant_summary'](),
|
|
18493
|
+
payment: factories['io.flow.internal.v0.models.payment_summary'](),
|
|
18741
18494
|
remittance: factories['io.flow.internal.v0.models.remittance_responsibility'](),
|
|
18742
18495
|
sequence_number: factories.long(),
|
|
18743
18496
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
@@ -19707,11 +19460,11 @@ const factories = {
|
|
|
19707
19460
|
sequence_number: factories.long(),
|
|
19708
19461
|
fulfilled_at: factories.date_time_iso_8601(),
|
|
19709
19462
|
completes_order: factories.boolean(),
|
|
19710
|
-
payment: factories['io.flow.internal.v0.models.reporting_payment'](),
|
|
19711
19463
|
refund: factories['io.flow.internal.v0.models.reporting_refund_reference'](),
|
|
19712
19464
|
value: factories['io.flow.internal.v0.models.fulfillment_shopper_breakdown'](),
|
|
19713
19465
|
dispatch_country: factories['io.flow.internal.v0.models.reporting_country'](),
|
|
19714
19466
|
destination: factories['io.flow.internal.v0.models.reporting_destination'](),
|
|
19467
|
+
payment: factories['io.flow.internal.v0.models.reporting_payment'](),
|
|
19715
19468
|
shipment: factories['io.flow.internal.v0.models.reporting_shipment'](),
|
|
19716
19469
|
is: factories['io.flow.internal.v0.models.reporting_fulfillment_is'](),
|
|
19717
19470
|
has: factories['io.flow.internal.v0.models.reporting_fulfillment_has'](),
|
|
@@ -19730,6 +19483,11 @@ const factories = {
|
|
|
19730
19483
|
wyol: factories.boolean(),
|
|
19731
19484
|
b2b: factories.boolean(),
|
|
19732
19485
|
domestic: factories.boolean(),
|
|
19486
|
+
combined_shipment: factories.boolean(),
|
|
19487
|
+
order_cancelled: factories.boolean(),
|
|
19488
|
+
lvg: factories.boolean(),
|
|
19489
|
+
tax_inclusive: factories.boolean(),
|
|
19490
|
+
duty_inclusive: factories.boolean(),
|
|
19733
19491
|
}),
|
|
19734
19492
|
|
|
19735
19493
|
'io.flow.internal.v0.models.reporting_fx': (): io.flow.internal.v0.models.ReportingFx => ({
|
|
@@ -19738,6 +19496,7 @@ const factories = {
|
|
|
19738
19496
|
product: factories['io.flow.internal.v0.models.reporting_usd'](),
|
|
19739
19497
|
tax: factories['io.flow.internal.v0.models.reporting_usd'](),
|
|
19740
19498
|
duty: factories['io.flow.internal.v0.models.reporting_usd'](),
|
|
19499
|
+
tips: factories['io.flow.internal.v0.models.reporting_usd'](),
|
|
19741
19500
|
total: factories['io.flow.internal.v0.models.reporting_usd'](),
|
|
19742
19501
|
}),
|
|
19743
19502
|
|
|
@@ -19755,6 +19514,7 @@ const factories = {
|
|
|
19755
19514
|
processing: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19756
19515
|
rate_lock: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19757
19516
|
transfer: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19517
|
+
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19758
19518
|
}),
|
|
19759
19519
|
|
|
19760
19520
|
'io.flow.internal.v0.models.reporting_merchant_subsidies': (): io.flow.internal.v0.models.ReportingMerchantSubsidies => ({
|
|
@@ -19762,6 +19522,7 @@ const factories = {
|
|
|
19762
19522
|
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19763
19523
|
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19764
19524
|
ccf: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19525
|
+
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19765
19526
|
}),
|
|
19766
19527
|
|
|
19767
19528
|
'io.flow.internal.v0.models.reporting_merchant_transactions': (): io.flow.internal.v0.models.ReportingMerchantTransactions => ({
|
|
@@ -19770,6 +19531,8 @@ const factories = {
|
|
|
19770
19531
|
tax: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19771
19532
|
duty: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19772
19533
|
freight: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19534
|
+
discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19535
|
+
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19773
19536
|
}),
|
|
19774
19537
|
|
|
19775
19538
|
'io.flow.internal.v0.models.reporting_monetary_value': (): io.flow.internal.v0.models.ReportingMonetaryValue => ({
|
|
@@ -19792,25 +19555,14 @@ const factories = {
|
|
|
19792
19555
|
}),
|
|
19793
19556
|
|
|
19794
19557
|
'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
19558
|
psp: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19797
19559
|
credit: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19560
|
+
subsidized: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19561
|
+
manual: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19562
|
+
cod: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19798
19563
|
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19799
19564
|
}),
|
|
19800
19565
|
|
|
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
19566
|
'io.flow.internal.v0.models.reporting_province': (): io.flow.internal.v0.models.ReportingProvince => ({
|
|
19815
19567
|
code: factories.string(),
|
|
19816
19568
|
name: factories.string(),
|
|
@@ -19839,6 +19591,7 @@ const factories = {
|
|
|
19839
19591
|
ccf: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19840
19592
|
emergency: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19841
19593
|
peak: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19594
|
+
total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
19842
19595
|
}),
|
|
19843
19596
|
|
|
19844
19597
|
'io.flow.internal.v0.models.reporting_usd': (): io.flow.internal.v0.models.ReportingUsd => ({
|
|
@@ -19866,6 +19619,10 @@ const factories = {
|
|
|
19866
19619
|
select_mismatching_item_types: factories.boolean(),
|
|
19867
19620
|
}),
|
|
19868
19621
|
|
|
19622
|
+
'io.flow.internal.v0.models.rescreen_restrictions_products': (): io.flow.internal.v0.models.RescreenRestrictionsProducts => ({
|
|
19623
|
+
placeholder: factories.boolean(),
|
|
19624
|
+
}),
|
|
19625
|
+
|
|
19869
19626
|
'io.flow.internal.v0.models.restriction_category': (): io.flow.internal.v0.models.RestrictionCategory => ({
|
|
19870
19627
|
category: factories.string(),
|
|
19871
19628
|
}),
|
|
@@ -20157,6 +19914,7 @@ const factories = {
|
|
|
20157
19914
|
shopper: factories['io.flow.internal.v0.models.shopper_summary'](),
|
|
20158
19915
|
merchant: factories['io.flow.internal.v0.models.merchant_summary'](),
|
|
20159
19916
|
remittance: factories['io.flow.internal.v0.models.remittance_responsibility'](),
|
|
19917
|
+
payment: factories['io.flow.internal.v0.models.payment_summary'](),
|
|
20160
19918
|
sequence_number: factories.long(),
|
|
20161
19919
|
posting_cutoff: factories.date_time_iso_8601(),
|
|
20162
19920
|
trigger: factories['io.flow.internal.v0.unions.return_trigger'](),
|
|
@@ -20357,7 +20115,7 @@ const factories = {
|
|
|
20357
20115
|
discriminator: 'search_experiment_summary',
|
|
20358
20116
|
key: factories.string(),
|
|
20359
20117
|
name: factories.string(),
|
|
20360
|
-
status: factories['io.flow.internal.v0.enums.status'](),
|
|
20118
|
+
status: factories['io.flow.experiment.internal.v0.enums.status'](),
|
|
20361
20119
|
}),
|
|
20362
20120
|
|
|
20363
20121
|
'io.flow.internal.v0.models.search_item_summary': (): io.flow.internal.v0.models.SearchItemSummary => ({
|
|
@@ -21033,6 +20791,8 @@ const factories = {
|
|
|
21033
20791
|
id: factories.string(),
|
|
21034
20792
|
initial_catalog_synced_at: factories.date_time_iso_8601(),
|
|
21035
20793
|
catalog_sync_duration: factories.long(),
|
|
20794
|
+
restrictions_sync_duration: factories.long(),
|
|
20795
|
+
classifications_sync_duration: factories.long(),
|
|
21036
20796
|
catalog_products_count: factories.long(),
|
|
21037
20797
|
initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
|
|
21038
20798
|
}),
|
|
@@ -21106,6 +20866,7 @@ const factories = {
|
|
|
21106
20866
|
product: factories['io.flow.internal.v0.models.shopper_lines'](),
|
|
21107
20867
|
fees: factories['io.flow.internal.v0.models.shopper_fees'](),
|
|
21108
20868
|
freight: factories['io.flow.internal.v0.models.shopper_freight'](),
|
|
20869
|
+
tips: factories.decimal(),
|
|
21109
20870
|
order_discount: factories.decimal(),
|
|
21110
20871
|
total: factories.decimal(),
|
|
21111
20872
|
}),
|
|
@@ -21829,6 +21590,23 @@ const factories = {
|
|
|
21829
21590
|
name: factories.string(),
|
|
21830
21591
|
}),
|
|
21831
21592
|
|
|
21593
|
+
'io.flow.internal.v0.models.thiago_item': (): io.flow.internal.v0.models.ThiagoItem => ({
|
|
21594
|
+
id: factories.string(),
|
|
21595
|
+
number: factories.string(),
|
|
21596
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
21597
|
+
description: factories.string(),
|
|
21598
|
+
type: factories['io.flow.internal.v0.enums.thiago_item_type'](),
|
|
21599
|
+
added_on: factories.date_time_iso_8601(),
|
|
21600
|
+
}),
|
|
21601
|
+
|
|
21602
|
+
'io.flow.internal.v0.models.thiago_item_form': (): io.flow.internal.v0.models.ThiagoItemForm => ({
|
|
21603
|
+
number: factories.string(),
|
|
21604
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
21605
|
+
description: factories.string(),
|
|
21606
|
+
type: factories['io.flow.internal.v0.enums.thiago_item_type'](),
|
|
21607
|
+
added_on: factories.date_time_iso_8601(),
|
|
21608
|
+
}),
|
|
21609
|
+
|
|
21832
21610
|
'io.flow.internal.v0.models.third_party_logistics_partner': (): io.flow.internal.v0.models.ThirdPartyLogisticsPartner => ({
|
|
21833
21611
|
warehouse_address: factories['io.flow.common.v0.models.billing_address'](),
|
|
21834
21612
|
warehouse_url: factories.string(),
|
|
@@ -21907,6 +21685,47 @@ const factories = {
|
|
|
21907
21685
|
timezone: factories.string(),
|
|
21908
21686
|
}),
|
|
21909
21687
|
|
|
21688
|
+
'io.flow.internal.v0.models.tracking_assurance_analysis': (): io.flow.internal.v0.models.TrackingAssuranceAnalysis => ({
|
|
21689
|
+
id: factories.string(),
|
|
21690
|
+
job_id: factories.string(),
|
|
21691
|
+
label_id: factories.string(),
|
|
21692
|
+
order_number: factories.string(),
|
|
21693
|
+
carrier_tracking_number: factories.string(),
|
|
21694
|
+
flow_tracking_number: factories.string(),
|
|
21695
|
+
carrier_status: factories.string(),
|
|
21696
|
+
aftership_status: factories.string(),
|
|
21697
|
+
flow_status: factories.string(),
|
|
21698
|
+
latest_carrier_event_date: factories.date_time_iso_8601(),
|
|
21699
|
+
latest_aftership_event_date: factories.date_time_iso_8601(),
|
|
21700
|
+
latest_flow_event_date: factories.date_time_iso_8601(),
|
|
21701
|
+
label_created_at: factories.date_time_iso_8601(),
|
|
21702
|
+
carrier_id: factories.string(),
|
|
21703
|
+
carrier_origin_country: factories.string(),
|
|
21704
|
+
label_origin_country: factories.string(),
|
|
21705
|
+
label_destination_country: factories.string(),
|
|
21706
|
+
carrier_destination_country: factories.string(),
|
|
21707
|
+
}),
|
|
21708
|
+
|
|
21709
|
+
'io.flow.internal.v0.models.tracking_assurance_analysis_deleted': (): io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted => ({
|
|
21710
|
+
discriminator: 'tracking_assurance_analysis_deleted',
|
|
21711
|
+
event_id: factories.string(),
|
|
21712
|
+
timestamp: factories.date_time_iso_8601(),
|
|
21713
|
+
organization: factories.string(),
|
|
21714
|
+
id: factories.string(),
|
|
21715
|
+
}),
|
|
21716
|
+
|
|
21717
|
+
'io.flow.internal.v0.models.tracking_assurance_analysis_upserted': (): io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted => ({
|
|
21718
|
+
discriminator: 'tracking_assurance_analysis_upserted',
|
|
21719
|
+
event_id: factories.string(),
|
|
21720
|
+
timestamp: factories.date_time_iso_8601(),
|
|
21721
|
+
organization: factories.string(),
|
|
21722
|
+
analysis: factories['io.flow.internal.v0.models.tracking_assurance_analysis'](),
|
|
21723
|
+
}),
|
|
21724
|
+
|
|
21725
|
+
'io.flow.internal.v0.models.tracking_debug_force_transit_form': (): io.flow.internal.v0.models.TrackingDebugForceTransitForm => ({
|
|
21726
|
+
description: factories.string(),
|
|
21727
|
+
}),
|
|
21728
|
+
|
|
21910
21729
|
'io.flow.internal.v0.models.tracking_debug_label': (): io.flow.internal.v0.models.TrackingDebugLabel => ({
|
|
21911
21730
|
in_transit_location: factories['io.flow.internal.v0.models.tracking_debug_label_location'](),
|
|
21912
21731
|
delivery_location: factories['io.flow.internal.v0.models.tracking_debug_label_location'](),
|
|
@@ -22633,6 +22452,8 @@ const factories = {
|
|
|
22633
22452
|
() => factories['io.flow.internal.v0.models.sales_record_deleted'](),
|
|
22634
22453
|
() => factories['io.flow.internal.v0.models.revenue_record_upserted'](),
|
|
22635
22454
|
() => factories['io.flow.internal.v0.models.revenue_record_deleted'](),
|
|
22455
|
+
() => factories['io.flow.internal.v0.models.other_record_upserted'](),
|
|
22456
|
+
() => factories['io.flow.internal.v0.models.other_record_deleted'](),
|
|
22636
22457
|
() => factories['io.flow.internal.v0.models.calculator_organization_settings_upserted'](),
|
|
22637
22458
|
() => factories['io.flow.internal.v0.models.calculator_organization_settings_deleted'](),
|
|
22638
22459
|
() => factories['io.flow.internal.v0.models.carrier_account_upserted_v2'](),
|
|
@@ -22695,14 +22516,6 @@ const factories = {
|
|
|
22695
22516
|
() => factories['io.flow.internal.v0.models.experience_import_request'](),
|
|
22696
22517
|
() => factories['io.flow.internal.v0.models.submitted_order_upserted'](),
|
|
22697
22518
|
() => 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
22519
|
() => factories['io.flow.internal.v0.models.export_completed'](),
|
|
22707
22520
|
() => factories['io.flow.internal.v0.models.export_failed'](),
|
|
22708
22521
|
() => factories['io.flow.internal.v0.models.feature_upserted'](),
|
|
@@ -22737,6 +22550,12 @@ const factories = {
|
|
|
22737
22550
|
() => factories['io.flow.internal.v0.models.fraud_pending_review_deleted'](),
|
|
22738
22551
|
() => factories['io.flow.internal.v0.models.fraud_review_decision_upserted'](),
|
|
22739
22552
|
() => factories['io.flow.internal.v0.models.fraud_review_decision_deleted'](),
|
|
22553
|
+
() => factories['io.flow.internal.v0.models.fraud_review_authorization_upserted'](),
|
|
22554
|
+
() => factories['io.flow.internal.v0.models.fraud_review_authorization_deleted'](),
|
|
22555
|
+
() => factories['io.flow.internal.v0.models.fraud_pending_review_authorization_upserted'](),
|
|
22556
|
+
() => factories['io.flow.internal.v0.models.fraud_pending_review_authorization_deleted'](),
|
|
22557
|
+
() => factories['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'](),
|
|
22558
|
+
() => factories['io.flow.internal.v0.models.fraud_review_authorization_decision_deleted'](),
|
|
22740
22559
|
() => factories['io.flow.internal.v0.models.fraud_provider_configuration_upserted'](),
|
|
22741
22560
|
() => factories['io.flow.internal.v0.models.fraud_provider_configuration_deleted'](),
|
|
22742
22561
|
() => factories['io.flow.internal.v0.models.manual_review_rule_upserted'](),
|
|
@@ -22814,6 +22633,8 @@ const factories = {
|
|
|
22814
22633
|
() => factories['io.flow.internal.v0.models.organization_deactivation_deleted'](),
|
|
22815
22634
|
() => factories['io.flow.internal.v0.models.merchant_guid_assignment_upserted'](),
|
|
22816
22635
|
() => factories['io.flow.internal.v0.models.merchant_guid_assignment_deleted'](),
|
|
22636
|
+
() => factories['io.flow.internal.v0.models.organization_metadata_upserted'](),
|
|
22637
|
+
() => factories['io.flow.internal.v0.models.organization_metadata_deleted'](),
|
|
22817
22638
|
() => factories['io.flow.internal.v0.models.partner_organization_settings_upserted'](),
|
|
22818
22639
|
() => factories['io.flow.internal.v0.models.partner_organization_settings_deleted'](),
|
|
22819
22640
|
() => factories['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'](),
|
|
@@ -22889,6 +22710,8 @@ const factories = {
|
|
|
22889
22710
|
() => factories['io.flow.internal.v0.models.channel_order_summary_deleted'](),
|
|
22890
22711
|
() => factories['io.flow.internal.v0.models.channel_organization_identifier_upserted'](),
|
|
22891
22712
|
() => factories['io.flow.internal.v0.models.channel_organization_identifier_deleted'](),
|
|
22713
|
+
() => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted'](),
|
|
22714
|
+
() => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'](),
|
|
22892
22715
|
() => factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'](),
|
|
22893
22716
|
() => factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'](),
|
|
22894
22717
|
() => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'](),
|
|
@@ -22907,8 +22730,16 @@ const factories = {
|
|
|
22907
22730
|
() => factories['io.flow.internal.v0.models.svitlana_item_deleted'](),
|
|
22908
22731
|
() => factories['io.flow.internal.v0.models.colm_item_upserted'](),
|
|
22909
22732
|
() => factories['io.flow.internal.v0.models.colm_item_deleted'](),
|
|
22733
|
+
() => factories['io.flow.internal.v0.models.harinath_item_upserted'](),
|
|
22734
|
+
() => factories['io.flow.internal.v0.models.harinath_item_deleted'](),
|
|
22735
|
+
() => factories['io.flow.internal.v0.models.konstantin_item_upserted'](),
|
|
22736
|
+
() => factories['io.flow.internal.v0.models.konstantin_item_deleted'](),
|
|
22910
22737
|
() => factories['io.flow.internal.v0.models.matias_item_upserted'](),
|
|
22911
22738
|
() => factories['io.flow.internal.v0.models.matias_item_deleted'](),
|
|
22739
|
+
() => factories['io.flow.internal.v0.models.michaelyan_item_upserted'](),
|
|
22740
|
+
() => factories['io.flow.internal.v0.models.michaelyan_item_deleted'](),
|
|
22741
|
+
() => factories['io.flow.internal.v0.models.miljenko_item_upserted'](),
|
|
22742
|
+
() => factories['io.flow.internal.v0.models.miljenko_item_deleted'](),
|
|
22912
22743
|
() => factories['io.flow.internal.v0.models.shruti_demo_item_upserted'](),
|
|
22913
22744
|
() => factories['io.flow.internal.v0.models.shruti_demo_item_deleted'](),
|
|
22914
22745
|
() => factories['io.flow.internal.v0.models.tam_item_upserted'](),
|
|
@@ -22921,6 +22752,8 @@ const factories = {
|
|
|
22921
22752
|
() => factories['io.flow.internal.v0.models.tracking_label_deleted'](),
|
|
22922
22753
|
() => factories['io.flow.internal.v0.models.tracking_upserted'](),
|
|
22923
22754
|
() => factories['io.flow.internal.v0.models.tracking_deleted'](),
|
|
22755
|
+
() => factories['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'](),
|
|
22756
|
+
() => factories['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'](),
|
|
22924
22757
|
() => factories['io.flow.internal.v0.models.tracking_request_upserted'](),
|
|
22925
22758
|
() => factories['io.flow.internal.v0.models.tracking_response_upserted'](),
|
|
22926
22759
|
() => factories['io.flow.internal.v0.models.user_upserted_v2'](),
|
|
@@ -22930,15 +22763,6 @@ const factories = {
|
|
|
22930
22763
|
return f();
|
|
22931
22764
|
},
|
|
22932
22765
|
|
|
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
22766
|
'io.flow.internal.v0.unions.explicit_statement_form': (): io.flow.internal.v0.unions.ExplicitStatementForm => {
|
|
22943
22767
|
const f = faker.helpers.arrayElement([
|
|
22944
22768
|
() => factories['io.flow.internal.v0.models.explicit_statement_form_transaction_ids'](),
|
|
@@ -23500,24 +23324,6 @@ const factories = {
|
|
|
23500
23324
|
return f();
|
|
23501
23325
|
},
|
|
23502
23326
|
|
|
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
23327
|
'io.flow.inventory.v0.enums.aggregate': (): io.flow.inventory.v0.enums.Aggregate => faker.helpers.arrayElement(['maximum', 'minimum']),
|
|
23522
23328
|
'io.flow.inventory.v0.enums.inventory_status': (): io.flow.inventory.v0.enums.InventoryStatus => faker.helpers.arrayElement(['has_inventory', 'no_inventory']),
|
|
23523
23329
|
'io.flow.inventory.v0.enums.update_type': (): io.flow.inventory.v0.enums.UpdateType => faker.helpers.arrayElement(['change', 'set']),
|
|
@@ -24504,6 +24310,7 @@ const factories = {
|
|
|
24504
24310
|
'business_street_address_is_po_box',
|
|
24505
24311
|
'exception_merchant',
|
|
24506
24312
|
'application_missing',
|
|
24313
|
+
'missing_logistics_contact_info',
|
|
24507
24314
|
]),
|
|
24508
24315
|
|
|
24509
24316
|
'io.flow.organization.onboarding.state.v0.models.activation_put_form': (): io.flow.organization.onboarding.state.v0.models.ActivationPutForm => ({
|
|
@@ -24566,6 +24373,11 @@ const factories = {
|
|
|
24566
24373
|
onboarding_started_at: factories.date_time_iso_8601(),
|
|
24567
24374
|
}),
|
|
24568
24375
|
|
|
24376
|
+
'io.flow.organization.onboarding.state.v0.models.rejection_put_form': (): io.flow.organization.onboarding.state.v0.models.RejectionPutForm => ({
|
|
24377
|
+
reason: factories['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'](),
|
|
24378
|
+
description: factories.string(),
|
|
24379
|
+
}),
|
|
24380
|
+
|
|
24569
24381
|
'io.flow.organization.onboarding.state.v0.models.setup_blocked': (): io.flow.organization.onboarding.state.v0.models.SetupBlocked => ({
|
|
24570
24382
|
discriminator: 'setup_blocked',
|
|
24571
24383
|
|
|
@@ -24941,6 +24753,7 @@ const factories = {
|
|
|
24941
24753
|
'order_missing_information',
|
|
24942
24754
|
'order_domestic',
|
|
24943
24755
|
'order_mismatched_currencies',
|
|
24756
|
+
'order_missing',
|
|
24944
24757
|
]),
|
|
24945
24758
|
|
|
24946
24759
|
'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 +25353,11 @@ const factories = {
|
|
|
25540
25353
|
review: factories['io.flow.payment.gateway.v0.models.payment_request_review'](),
|
|
25541
25354
|
}),
|
|
25542
25355
|
|
|
25356
|
+
'io.flow.payment.gateway.v0.models.payment_request_cancellation_reason_order_missing': (): io.flow.payment.gateway.v0.models.PaymentRequestCancellationReasonOrderMissing => ({
|
|
25357
|
+
type: 'order_missing',
|
|
25358
|
+
description: factories.string(),
|
|
25359
|
+
}),
|
|
25360
|
+
|
|
25543
25361
|
'io.flow.payment.gateway.v0.models.payment_request_form': (): io.flow.payment.gateway.v0.models.PaymentRequestForm => ({
|
|
25544
25362
|
amount: factories.decimal(),
|
|
25545
25363
|
currency: factories.string(),
|
|
@@ -25755,6 +25573,14 @@ const factories = {
|
|
|
25755
25573
|
return f();
|
|
25756
25574
|
},
|
|
25757
25575
|
|
|
25576
|
+
'io.flow.payment.gateway.v0.unions.payment_request_cancellation_reason': (): io.flow.payment.gateway.v0.unions.PaymentRequestCancellationReason => {
|
|
25577
|
+
const f = faker.helpers.arrayElement([
|
|
25578
|
+
() => factories['io.flow.payment.gateway.v0.models.payment_request_cancellation_reason_order_missing'](),
|
|
25579
|
+
]);
|
|
25580
|
+
|
|
25581
|
+
return f();
|
|
25582
|
+
},
|
|
25583
|
+
|
|
25758
25584
|
'io.flow.payment.gateway.v0.unions.sdk_adyen_v3_authentication_token': (): io.flow.payment.gateway.v0.unions.SdkAdyenV3AuthenticationToken => {
|
|
25759
25585
|
const f = faker.helpers.arrayElement([
|
|
25760
25586
|
() => factories['io.flow.payment.gateway.v0.models.adyen_v3_fingerprint_token'](),
|
|
@@ -27491,6 +27317,15 @@ const factories = {
|
|
|
27491
27317
|
processor: factories.string(),
|
|
27492
27318
|
}),
|
|
27493
27319
|
|
|
27320
|
+
'io.flow.payment.v0.models.payment_processor_transaction_details_apm': (): io.flow.payment.v0.models.PaymentProcessorTransactionDetailsApm => ({
|
|
27321
|
+
discriminator: 'apm',
|
|
27322
|
+
transaction_identifier: factories.string(),
|
|
27323
|
+
capture_identifier: factories.string(),
|
|
27324
|
+
method_type: factories.string(),
|
|
27325
|
+
result_status: factories.string(),
|
|
27326
|
+
reason_code: factories.string(),
|
|
27327
|
+
}),
|
|
27328
|
+
|
|
27494
27329
|
'io.flow.payment.v0.models.payment_processor_transaction_details_card': (): io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard => ({
|
|
27495
27330
|
discriminator: 'card',
|
|
27496
27331
|
transaction_identifier: factories.string(),
|
|
@@ -27520,6 +27355,7 @@ const factories = {
|
|
|
27520
27355
|
'io.flow.payment.v0.models.paypal_authorization_details': (): io.flow.payment.v0.models.PaypalAuthorizationDetails => ({
|
|
27521
27356
|
discriminator: 'paypal_authorization_details',
|
|
27522
27357
|
payment_id: factories.string(),
|
|
27358
|
+
internal_payment_id: factories.string(),
|
|
27523
27359
|
payment_method: factories.string(),
|
|
27524
27360
|
payment_state: factories.string(),
|
|
27525
27361
|
payer_id: factories.string(),
|
|
@@ -27987,6 +27823,7 @@ const factories = {
|
|
|
27987
27823
|
'io.flow.payment.v0.unions.payment_processor_transaction_details': (): io.flow.payment.v0.unions.PaymentProcessorTransactionDetails => {
|
|
27988
27824
|
const f = faker.helpers.arrayElement([
|
|
27989
27825
|
() => factories['io.flow.payment.v0.models.payment_processor_transaction_details_card'](),
|
|
27826
|
+
() => factories['io.flow.payment.v0.models.payment_processor_transaction_details_apm'](),
|
|
27990
27827
|
]);
|
|
27991
27828
|
|
|
27992
27829
|
return f();
|
|
@@ -29615,6 +29452,7 @@ const factories = {
|
|
|
29615
29452
|
published_at: factories.date_time_iso_8601(),
|
|
29616
29453
|
created_at: factories.date_time_iso_8601(),
|
|
29617
29454
|
updated_at: factories.date_time_iso_8601(),
|
|
29455
|
+
has_variants_that_requires_components: factories.boolean(),
|
|
29618
29456
|
}),
|
|
29619
29457
|
|
|
29620
29458
|
'io.flow.shopify.external.v0.models.product_delete': (): io.flow.shopify.external.v0.models.ProductDelete => ({
|
|
@@ -30455,6 +30293,21 @@ const factories = {
|
|
|
30455
30293
|
channel_organization_identifier: factories['io.flow.shopify.markets.internal.v0.models.channel_organization_identifier'](),
|
|
30456
30294
|
}),
|
|
30457
30295
|
|
|
30296
|
+
'io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_deleted': (): io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted => ({
|
|
30297
|
+
discriminator: 'order_tax_and_duty_inclusivity_setting_deleted',
|
|
30298
|
+
event_id: factories.string(),
|
|
30299
|
+
timestamp: factories.date_time_iso_8601(),
|
|
30300
|
+
organization: factories.string(),
|
|
30301
|
+
id: factories.string(),
|
|
30302
|
+
}),
|
|
30303
|
+
|
|
30304
|
+
'io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted': (): io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted => ({
|
|
30305
|
+
discriminator: 'order_tax_and_duty_inclusivity_setting_upserted',
|
|
30306
|
+
event_id: factories.string(),
|
|
30307
|
+
timestamp: factories.date_time_iso_8601(),
|
|
30308
|
+
order_tax_and_duty_inclusivity_setting: factories['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'](),
|
|
30309
|
+
}),
|
|
30310
|
+
|
|
30458
30311
|
'io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted => ({
|
|
30459
30312
|
discriminator: 'shopify_markets_metrics_deleted',
|
|
30460
30313
|
event_id: factories.string(),
|
|
@@ -30554,6 +30407,8 @@ const factories = {
|
|
|
30554
30407
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_deleted'](),
|
|
30555
30408
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_upserted'](),
|
|
30556
30409
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_deleted'](),
|
|
30410
|
+
() => factories['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'](),
|
|
30411
|
+
() => factories['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_deleted'](),
|
|
30557
30412
|
]);
|
|
30558
30413
|
|
|
30559
30414
|
return f();
|
|
@@ -30604,6 +30459,13 @@ const factories = {
|
|
|
30604
30459
|
'other',
|
|
30605
30460
|
]),
|
|
30606
30461
|
|
|
30462
|
+
'io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting': (): io.flow.shopify.markets.internal.v0.enums.TaxAndDutyInclusivitySetting => faker.helpers.arrayElement([
|
|
30463
|
+
'duty_exclusive_tax_exclusive',
|
|
30464
|
+
'duty_inclusive_tax_exclusive',
|
|
30465
|
+
'duty_exclusive_tax_inclusive',
|
|
30466
|
+
'duty_inclusive_tax_inclusive',
|
|
30467
|
+
]),
|
|
30468
|
+
|
|
30607
30469
|
'io.flow.shopify.markets.internal.v0.models.catalog_publication_sync_validation_error': (): io.flow.shopify.markets.internal.v0.models.CatalogPublicationSyncValidationError => ({
|
|
30608
30470
|
message: factories.string(),
|
|
30609
30471
|
reason: factories.string(),
|
|
@@ -30650,6 +30512,14 @@ const factories = {
|
|
|
30650
30512
|
id: factories.string(),
|
|
30651
30513
|
}),
|
|
30652
30514
|
|
|
30515
|
+
'io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting': (): io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting => ({
|
|
30516
|
+
id: factories.string(),
|
|
30517
|
+
organization_id: factories.string(),
|
|
30518
|
+
shopify_order_id: factories.string(),
|
|
30519
|
+
order_number: factories.string(),
|
|
30520
|
+
tax_and_duty_inclusivity_setting: factories['io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting'](),
|
|
30521
|
+
}),
|
|
30522
|
+
|
|
30653
30523
|
'io.flow.shopify.markets.internal.v0.models.order_validation_error': (): io.flow.shopify.markets.internal.v0.models.OrderValidationError => ({
|
|
30654
30524
|
message: factories.string(),
|
|
30655
30525
|
reason: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'](),
|
|
@@ -30781,6 +30651,8 @@ const factories = {
|
|
|
30781
30651
|
id: factories.string(),
|
|
30782
30652
|
initial_catalog_synced_at: factories.date_time_iso_8601(),
|
|
30783
30653
|
catalog_sync_duration: factories.long(),
|
|
30654
|
+
restrictions_sync_duration: factories.long(),
|
|
30655
|
+
classifications_sync_duration: factories.long(),
|
|
30784
30656
|
catalog_products_count: factories.long(),
|
|
30785
30657
|
initial_product_restrictions_synced_at: factories.date_time_iso_8601(),
|
|
30786
30658
|
}),
|
|
@@ -30886,7 +30758,16 @@ const factories = {
|
|
|
30886
30758
|
'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
30759
|
'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
30760
|
'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
|
-
|
|
30761
|
+
|
|
30762
|
+
'io.flow.shopify.markets.v0.enums.shopify_order_payment_gateway_names': (): io.flow.shopify.markets.v0.enums.ShopifyOrderPaymentGatewayNames => faker.helpers.arrayElement([
|
|
30763
|
+
'flow_commerce',
|
|
30764
|
+
'gift_card',
|
|
30765
|
+
'manual',
|
|
30766
|
+
'shopify_payments',
|
|
30767
|
+
'shop_cash',
|
|
30768
|
+
'shopify_store_credit',
|
|
30769
|
+
]),
|
|
30770
|
+
|
|
30890
30771
|
'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
30772
|
'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
30773
|
'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 +32042,45 @@ const factories = {
|
|
|
32161
32042
|
'io.flow.stripe.v0.enums.account_type': (): io.flow.stripe.v0.enums.AccountType => faker.helpers.arrayElement(['platform', 'custom', 'standard', 'express']),
|
|
32162
32043
|
'io.flow.stripe.v0.enums.apple_pay_type': (): io.flow.stripe.v0.enums.ApplePayType => faker.helpers.arrayElement(['apple_pay', 'apple_pay_later']),
|
|
32163
32044
|
|
|
32045
|
+
'io.flow.stripe.v0.enums.bank_ideal': (): io.flow.stripe.v0.enums.BankIdeal => faker.helpers.arrayElement([
|
|
32046
|
+
'abn_amro',
|
|
32047
|
+
'asn_bank',
|
|
32048
|
+
'bunq',
|
|
32049
|
+
'handelsbanken',
|
|
32050
|
+
'ing',
|
|
32051
|
+
'knab',
|
|
32052
|
+
'moneyou',
|
|
32053
|
+
'n26',
|
|
32054
|
+
'nn',
|
|
32055
|
+
'rabobank',
|
|
32056
|
+
'regiobank',
|
|
32057
|
+
'revolut',
|
|
32058
|
+
'sns_bank',
|
|
32059
|
+
'triodos_bank',
|
|
32060
|
+
'van_lanschot',
|
|
32061
|
+
'yoursafe',
|
|
32062
|
+
]),
|
|
32063
|
+
|
|
32064
|
+
'io.flow.stripe.v0.enums.bic_ideal': (): io.flow.stripe.v0.enums.BicIdeal => faker.helpers.arrayElement([
|
|
32065
|
+
'ABNANL2A',
|
|
32066
|
+
'ASNBNL21',
|
|
32067
|
+
'BITSNL2A',
|
|
32068
|
+
'BUNQNL2A',
|
|
32069
|
+
'FVLBNL22',
|
|
32070
|
+
'HANDNL2A',
|
|
32071
|
+
'INGBNL2A',
|
|
32072
|
+
'KNABNL2H',
|
|
32073
|
+
'MOYONL21',
|
|
32074
|
+
'NNBANL2G',
|
|
32075
|
+
'NTSBDEB1',
|
|
32076
|
+
'RABONL2U',
|
|
32077
|
+
'RBRBNL21',
|
|
32078
|
+
'REVOIE23',
|
|
32079
|
+
'REVOLT21',
|
|
32080
|
+
'SNSBNL2A',
|
|
32081
|
+
'TRIONL2U',
|
|
32082
|
+
]),
|
|
32083
|
+
|
|
32164
32084
|
'io.flow.stripe.v0.enums.cancellation_reason': (): io.flow.stripe.v0.enums.CancellationReason => faker.helpers.arrayElement([
|
|
32165
32085
|
'abandoned',
|
|
32166
32086
|
'automatic',
|
|
@@ -32251,6 +32171,44 @@ const factories = {
|
|
|
32251
32171
|
'requested_block_on_incorrect_cvc',
|
|
32252
32172
|
]),
|
|
32253
32173
|
|
|
32174
|
+
'io.flow.stripe.v0.enums.dispute_event_type': (): io.flow.stripe.v0.enums.DisputeEventType => faker.helpers.arrayElement([
|
|
32175
|
+
'charge.dispute.closed',
|
|
32176
|
+
'charge.dispute.created',
|
|
32177
|
+
'charge.dispute.funds_reinstated',
|
|
32178
|
+
'charge.dispute.funds_withdrawn',
|
|
32179
|
+
'charge.dispute.updated',
|
|
32180
|
+
]),
|
|
32181
|
+
|
|
32182
|
+
'io.flow.stripe.v0.enums.dispute_payment_method_details_card_case_type': (): io.flow.stripe.v0.enums.DisputePaymentMethodDetailsCardCaseType => faker.helpers.arrayElement(['chargeback', 'inquiry']),
|
|
32183
|
+
'io.flow.stripe.v0.enums.dispute_payment_method_details_type': (): io.flow.stripe.v0.enums.DisputePaymentMethodDetailsType => faker.helpers.arrayElement(['card', 'klarna', 'paypal']),
|
|
32184
|
+
|
|
32185
|
+
'io.flow.stripe.v0.enums.dispute_reason': (): io.flow.stripe.v0.enums.DisputeReason => faker.helpers.arrayElement([
|
|
32186
|
+
'bank_cannot_process',
|
|
32187
|
+
'check_returned',
|
|
32188
|
+
'credit_not_processed',
|
|
32189
|
+
'customer_initiated',
|
|
32190
|
+
'debit_not_authorized',
|
|
32191
|
+
'duplicate',
|
|
32192
|
+
'fraudulent',
|
|
32193
|
+
'general',
|
|
32194
|
+
'incorrect_account_details',
|
|
32195
|
+
'insufficient_funds',
|
|
32196
|
+
'product_not_received',
|
|
32197
|
+
'product_unacceptable',
|
|
32198
|
+
'subscription_canceled',
|
|
32199
|
+
'unrecognized',
|
|
32200
|
+
]),
|
|
32201
|
+
|
|
32202
|
+
'io.flow.stripe.v0.enums.dispute_status': (): io.flow.stripe.v0.enums.DisputeStatus => faker.helpers.arrayElement([
|
|
32203
|
+
'warning_needs_response',
|
|
32204
|
+
'warning_under_review',
|
|
32205
|
+
'warning_closed',
|
|
32206
|
+
'needs_response',
|
|
32207
|
+
'under_review',
|
|
32208
|
+
'won',
|
|
32209
|
+
'lost',
|
|
32210
|
+
]),
|
|
32211
|
+
|
|
32254
32212
|
'io.flow.stripe.v0.enums.error_code': (): io.flow.stripe.v0.enums.ErrorCode => faker.helpers.arrayElement([
|
|
32255
32213
|
'invalid_number',
|
|
32256
32214
|
'invalid_expiry_month',
|
|
@@ -32345,6 +32303,11 @@ const factories = {
|
|
|
32345
32303
|
'charge.succeeded',
|
|
32346
32304
|
'charge.updated',
|
|
32347
32305
|
'charge.refund.updated',
|
|
32306
|
+
'charge.dispute.closed',
|
|
32307
|
+
'charge.dispute.created',
|
|
32308
|
+
'charge.dispute.funds_reinstated',
|
|
32309
|
+
'charge.dispute.funds_withdrawn',
|
|
32310
|
+
'charge.dispute.updated',
|
|
32348
32311
|
'payment_intent.created',
|
|
32349
32312
|
'payment_intent.amount_capturable_updated',
|
|
32350
32313
|
'payment_intent.payment_failed',
|
|
@@ -32391,9 +32354,10 @@ const factories = {
|
|
|
32391
32354
|
]),
|
|
32392
32355
|
|
|
32393
32356
|
'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']),
|
|
32357
|
+
'io.flow.stripe.v0.enums.payment_method_type': (): io.flow.stripe.v0.enums.PaymentMethodType => faker.helpers.arrayElement(['card', 'card_present', 'ideal', 'klarna', 'bancontact']),
|
|
32395
32358
|
'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
32359
|
'io.flow.stripe.v0.enums.payment_status': (): io.flow.stripe.v0.enums.PaymentStatus => faker.helpers.arrayElement(['succeeded', 'pending', 'failed']),
|
|
32360
|
+
'io.flow.stripe.v0.enums.preferred_language_bancontact': (): io.flow.stripe.v0.enums.PreferredLanguageBancontact => faker.helpers.arrayElement(['de', 'en', 'fr', 'nl']),
|
|
32397
32361
|
|
|
32398
32362
|
'io.flow.stripe.v0.enums.preferred_locale_klarna': (): io.flow.stripe.v0.enums.PreferredLocaleKlarna => faker.helpers.arrayElement([
|
|
32399
32363
|
'de-AT',
|
|
@@ -32718,6 +32682,54 @@ const factories = {
|
|
|
32718
32682
|
description: factories.string(),
|
|
32719
32683
|
}),
|
|
32720
32684
|
|
|
32685
|
+
'io.flow.stripe.v0.models.dispute': (): io.flow.stripe.v0.models.Dispute => ({
|
|
32686
|
+
id: factories.string(),
|
|
32687
|
+
amount: factories.integer(),
|
|
32688
|
+
charge: factories.string(),
|
|
32689
|
+
currency: factories.string(),
|
|
32690
|
+
evidence: factories.object(),
|
|
32691
|
+
metadata: objectOf(() => factories.string()),
|
|
32692
|
+
payment_intent: factories.string(),
|
|
32693
|
+
reason: factories['io.flow.stripe.v0.enums.dispute_reason'](),
|
|
32694
|
+
status: factories['io.flow.stripe.v0.enums.dispute_status'](),
|
|
32695
|
+
object: factories.string(),
|
|
32696
|
+
balance_transactions: arrayOf(() => factories.object()),
|
|
32697
|
+
created: factories.long(),
|
|
32698
|
+
evidence_details: factories['io.flow.stripe.v0.models.dispute_evidence_details'](),
|
|
32699
|
+
is_charge_refundable: factories.boolean(),
|
|
32700
|
+
livemode: factories.boolean(),
|
|
32701
|
+
payment_method_details: factories['io.flow.stripe.v0.models.dispute_payment_method_details'](),
|
|
32702
|
+
}),
|
|
32703
|
+
|
|
32704
|
+
'io.flow.stripe.v0.models.dispute_evidence_details': (): io.flow.stripe.v0.models.DisputeEvidenceDetails => ({
|
|
32705
|
+
due_by: factories.long(),
|
|
32706
|
+
has_evidence: factories.boolean(),
|
|
32707
|
+
past_due: factories.boolean(),
|
|
32708
|
+
submission_count: factories.integer(),
|
|
32709
|
+
}),
|
|
32710
|
+
|
|
32711
|
+
'io.flow.stripe.v0.models.dispute_payment_method_details': (): io.flow.stripe.v0.models.DisputePaymentMethodDetails => ({
|
|
32712
|
+
card: factories['io.flow.stripe.v0.models.dispute_payment_method_details_card'](),
|
|
32713
|
+
klarna: factories['io.flow.stripe.v0.models.dispute_payment_method_details_klarna'](),
|
|
32714
|
+
paypal: factories['io.flow.stripe.v0.models.dispute_payment_method_details_paypal'](),
|
|
32715
|
+
type: factories['io.flow.stripe.v0.enums.dispute_payment_method_details_type'](),
|
|
32716
|
+
}),
|
|
32717
|
+
|
|
32718
|
+
'io.flow.stripe.v0.models.dispute_payment_method_details_card': (): io.flow.stripe.v0.models.DisputePaymentMethodDetailsCard => ({
|
|
32719
|
+
brand: factories.string(),
|
|
32720
|
+
case_type: factories['io.flow.stripe.v0.enums.dispute_payment_method_details_card_case_type'](),
|
|
32721
|
+
network_reason_code: factories.string(),
|
|
32722
|
+
}),
|
|
32723
|
+
|
|
32724
|
+
'io.flow.stripe.v0.models.dispute_payment_method_details_klarna': (): io.flow.stripe.v0.models.DisputePaymentMethodDetailsKlarna => ({
|
|
32725
|
+
reason_code: factories.string(),
|
|
32726
|
+
}),
|
|
32727
|
+
|
|
32728
|
+
'io.flow.stripe.v0.models.dispute_payment_method_details_paypal': (): io.flow.stripe.v0.models.DisputePaymentMethodDetailsPaypal => ({
|
|
32729
|
+
case_id: factories.string(),
|
|
32730
|
+
reason_code: factories.string(),
|
|
32731
|
+
}),
|
|
32732
|
+
|
|
32721
32733
|
'io.flow.stripe.v0.models.error': (): io.flow.stripe.v0.models.Error => ({
|
|
32722
32734
|
error: factories['io.flow.stripe.v0.models.stripe_error'](),
|
|
32723
32735
|
}),
|
|
@@ -32976,8 +32988,10 @@ const factories = {
|
|
|
32976
32988
|
id: factories.string(),
|
|
32977
32989
|
object: factories.string(),
|
|
32978
32990
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
32991
|
+
bancontact: factories.object(),
|
|
32979
32992
|
card: factories['io.flow.stripe.v0.models.payment_method_card_details'](),
|
|
32980
32993
|
card_present: factories.object(),
|
|
32994
|
+
ideal: factories.object(),
|
|
32981
32995
|
klarna: factories.object(),
|
|
32982
32996
|
created: factories.long(),
|
|
32983
32997
|
customer: factories.string(),
|
|
@@ -33012,6 +33026,12 @@ const factories = {
|
|
|
33012
33026
|
cvc: factories.string(),
|
|
33013
33027
|
}),
|
|
33014
33028
|
|
|
33029
|
+
'io.flow.stripe.v0.models.payment_method_data_bancontact': (): io.flow.stripe.v0.models.PaymentMethodDataBancontact => ({
|
|
33030
|
+
type: 'bancontact',
|
|
33031
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
33032
|
+
metadata: factories.object(),
|
|
33033
|
+
}),
|
|
33034
|
+
|
|
33015
33035
|
'io.flow.stripe.v0.models.payment_method_data_card': (): io.flow.stripe.v0.models.PaymentMethodDataCard => ({
|
|
33016
33036
|
type: 'card',
|
|
33017
33037
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -33019,6 +33039,13 @@ const factories = {
|
|
|
33019
33039
|
card: factories['io.flow.stripe.v0.models.payment_method_card_form'](),
|
|
33020
33040
|
}),
|
|
33021
33041
|
|
|
33042
|
+
'io.flow.stripe.v0.models.payment_method_data_ideal': (): io.flow.stripe.v0.models.PaymentMethodDataIdeal => ({
|
|
33043
|
+
type: 'ideal',
|
|
33044
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
33045
|
+
metadata: factories.object(),
|
|
33046
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_ideal_form'](),
|
|
33047
|
+
}),
|
|
33048
|
+
|
|
33022
33049
|
'io.flow.stripe.v0.models.payment_method_data_klarna': (): io.flow.stripe.v0.models.PaymentMethodDataKlarna => ({
|
|
33023
33050
|
type: 'klarna',
|
|
33024
33051
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -33026,6 +33053,22 @@ const factories = {
|
|
|
33026
33053
|
klarna: factories['io.flow.stripe.v0.models.payment_method_klarna_form'](),
|
|
33027
33054
|
}),
|
|
33028
33055
|
|
|
33056
|
+
'io.flow.stripe.v0.models.payment_method_details_bancontact': (): io.flow.stripe.v0.models.PaymentMethodDetailsBancontact => ({
|
|
33057
|
+
type: 'bancontact',
|
|
33058
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_details_bancontact_information'](),
|
|
33059
|
+
}),
|
|
33060
|
+
|
|
33061
|
+
'io.flow.stripe.v0.models.payment_method_details_bancontact_information': (): io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation => ({
|
|
33062
|
+
bank_code: factories.string(),
|
|
33063
|
+
bank_name: factories.string(),
|
|
33064
|
+
bic: factories.string(),
|
|
33065
|
+
generated_sepa_debit: factories.string(),
|
|
33066
|
+
generated_sepa_debit_mandate: factories.string(),
|
|
33067
|
+
iban_last4: factories.string(),
|
|
33068
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
33069
|
+
verified_name: factories.string(),
|
|
33070
|
+
}),
|
|
33071
|
+
|
|
33029
33072
|
'io.flow.stripe.v0.models.payment_method_details_card': (): io.flow.stripe.v0.models.PaymentMethodDetailsCard => ({
|
|
33030
33073
|
type: 'card',
|
|
33031
33074
|
card: factories['io.flow.stripe.v0.models.payment_method_details_card_information'](),
|
|
@@ -33057,6 +33100,20 @@ const factories = {
|
|
|
33057
33100
|
overcapture: factories['io.flow.stripe.v0.models.overcapture'](),
|
|
33058
33101
|
}),
|
|
33059
33102
|
|
|
33103
|
+
'io.flow.stripe.v0.models.payment_method_details_ideal': (): io.flow.stripe.v0.models.PaymentMethodDetailsIdeal => ({
|
|
33104
|
+
type: 'ideal',
|
|
33105
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_details_ideal_information'](),
|
|
33106
|
+
}),
|
|
33107
|
+
|
|
33108
|
+
'io.flow.stripe.v0.models.payment_method_details_ideal_information': (): io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation => ({
|
|
33109
|
+
bank: factories['io.flow.stripe.v0.enums.bank_ideal'](),
|
|
33110
|
+
bic: factories['io.flow.stripe.v0.enums.bic_ideal'](),
|
|
33111
|
+
generated_sepa_debit: factories.string(),
|
|
33112
|
+
generated_sepa_debit_mandate: factories.string(),
|
|
33113
|
+
iban_last4: factories.string(),
|
|
33114
|
+
verified_name: factories.string(),
|
|
33115
|
+
}),
|
|
33116
|
+
|
|
33060
33117
|
'io.flow.stripe.v0.models.payment_method_details_klarna': (): io.flow.stripe.v0.models.PaymentMethodDetailsKlarna => ({
|
|
33061
33118
|
type: 'klarna',
|
|
33062
33119
|
klarna: factories['io.flow.stripe.v0.models.payment_method_details_klarna_information'](),
|
|
@@ -33067,6 +33124,13 @@ const factories = {
|
|
|
33067
33124
|
preferred_locale: factories['io.flow.stripe.v0.enums.preferred_locale_klarna'](),
|
|
33068
33125
|
}),
|
|
33069
33126
|
|
|
33127
|
+
'io.flow.stripe.v0.models.payment_method_form_bancontact': (): io.flow.stripe.v0.models.PaymentMethodFormBancontact => ({
|
|
33128
|
+
type: 'bancontact',
|
|
33129
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
33130
|
+
metadata: factories.object(),
|
|
33131
|
+
bancontact: factories.object(),
|
|
33132
|
+
}),
|
|
33133
|
+
|
|
33070
33134
|
'io.flow.stripe.v0.models.payment_method_form_card': (): io.flow.stripe.v0.models.PaymentMethodFormCard => ({
|
|
33071
33135
|
type: 'card',
|
|
33072
33136
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -33074,6 +33138,13 @@ const factories = {
|
|
|
33074
33138
|
card: factories['io.flow.stripe.v0.models.payment_method_card_form'](),
|
|
33075
33139
|
}),
|
|
33076
33140
|
|
|
33141
|
+
'io.flow.stripe.v0.models.payment_method_form_ideal': (): io.flow.stripe.v0.models.PaymentMethodFormIdeal => ({
|
|
33142
|
+
type: 'ideal',
|
|
33143
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
33144
|
+
metadata: factories.object(),
|
|
33145
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_ideal_form'](),
|
|
33146
|
+
}),
|
|
33147
|
+
|
|
33077
33148
|
'io.flow.stripe.v0.models.payment_method_form_klarna': (): io.flow.stripe.v0.models.PaymentMethodFormKlarna => ({
|
|
33078
33149
|
type: 'klarna',
|
|
33079
33150
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -33081,13 +33152,27 @@ const factories = {
|
|
|
33081
33152
|
klarna: factories['io.flow.stripe.v0.models.payment_method_klarna_form'](),
|
|
33082
33153
|
}),
|
|
33083
33154
|
|
|
33155
|
+
'io.flow.stripe.v0.models.payment_method_ideal_form': (): io.flow.stripe.v0.models.PaymentMethodIdealForm => ({
|
|
33156
|
+
bank: factories.string(),
|
|
33157
|
+
}),
|
|
33158
|
+
|
|
33084
33159
|
'io.flow.stripe.v0.models.payment_method_klarna_form': (): io.flow.stripe.v0.models.PaymentMethodKlarnaForm => ({
|
|
33085
33160
|
dob: factories['io.flow.stripe.v0.models.klarna_dob_form'](),
|
|
33086
33161
|
}),
|
|
33087
33162
|
|
|
33088
33163
|
'io.flow.stripe.v0.models.payment_method_options': (): io.flow.stripe.v0.models.PaymentMethodOptions => ({
|
|
33089
33164
|
card: factories['io.flow.stripe.v0.models.payment_method_options_card'](),
|
|
33165
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_options_ideal'](),
|
|
33090
33166
|
klarna: factories['io.flow.stripe.v0.models.payment_method_options_klarna'](),
|
|
33167
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_options_bancontact'](),
|
|
33168
|
+
}),
|
|
33169
|
+
|
|
33170
|
+
'io.flow.stripe.v0.models.payment_method_options_bancontact': (): io.flow.stripe.v0.models.PaymentMethodOptionsBancontact => ({
|
|
33171
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
33172
|
+
}),
|
|
33173
|
+
|
|
33174
|
+
'io.flow.stripe.v0.models.payment_method_options_bancontact_form': (): io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm => ({
|
|
33175
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
33091
33176
|
}),
|
|
33092
33177
|
|
|
33093
33178
|
'io.flow.stripe.v0.models.payment_method_options_card': (): io.flow.stripe.v0.models.PaymentMethodOptionsCard => ({
|
|
@@ -33107,7 +33192,17 @@ const factories = {
|
|
|
33107
33192
|
|
|
33108
33193
|
'io.flow.stripe.v0.models.payment_method_options_form': (): io.flow.stripe.v0.models.PaymentMethodOptionsForm => ({
|
|
33109
33194
|
card: factories['io.flow.stripe.v0.models.payment_method_options_card_form'](),
|
|
33195
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_options_ideal_form'](),
|
|
33110
33196
|
klarna: factories['io.flow.stripe.v0.models.payment_method_options_klarna_form'](),
|
|
33197
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_options_bancontact_form'](),
|
|
33198
|
+
}),
|
|
33199
|
+
|
|
33200
|
+
'io.flow.stripe.v0.models.payment_method_options_ideal': (): io.flow.stripe.v0.models.PaymentMethodOptionsIdeal => ({
|
|
33201
|
+
setup_future_usage: factories['io.flow.stripe.v0.enums.setup_future_usage'](),
|
|
33202
|
+
}),
|
|
33203
|
+
|
|
33204
|
+
'io.flow.stripe.v0.models.payment_method_options_ideal_form': (): io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm => ({
|
|
33205
|
+
setup_future_usage: factories['io.flow.stripe.v0.enums.setup_future_usage'](),
|
|
33111
33206
|
}),
|
|
33112
33207
|
|
|
33113
33208
|
'io.flow.stripe.v0.models.payment_method_options_klarna': (): io.flow.stripe.v0.models.PaymentMethodOptionsKlarna => ({
|
|
@@ -33322,6 +33417,24 @@ const factories = {
|
|
|
33322
33417
|
directory_server_encryption: factories.object(),
|
|
33323
33418
|
}),
|
|
33324
33419
|
|
|
33420
|
+
'io.flow.stripe.v0.models.stripe_dispute_event': (): io.flow.stripe.v0.models.StripeDisputeEvent => ({
|
|
33421
|
+
id: factories.string(),
|
|
33422
|
+
api_version: factories.string(),
|
|
33423
|
+
data: factories['io.flow.stripe.v0.models.stripe_dispute_event_data'](),
|
|
33424
|
+
request: factories.object(),
|
|
33425
|
+
type: factories['io.flow.stripe.v0.enums.dispute_event_type'](),
|
|
33426
|
+
object: factories.string(),
|
|
33427
|
+
account: factories.string(),
|
|
33428
|
+
created: factories.long(),
|
|
33429
|
+
livemode: factories.boolean(),
|
|
33430
|
+
pending_webhooks: factories.integer(),
|
|
33431
|
+
}),
|
|
33432
|
+
|
|
33433
|
+
'io.flow.stripe.v0.models.stripe_dispute_event_data': (): io.flow.stripe.v0.models.StripeDisputeEventData => ({
|
|
33434
|
+
object: factories['io.flow.stripe.v0.models.dispute'](),
|
|
33435
|
+
previous_attributes: factories.object(),
|
|
33436
|
+
}),
|
|
33437
|
+
|
|
33325
33438
|
'io.flow.stripe.v0.models.stripe_error': (): io.flow.stripe.v0.models.StripeError => ({
|
|
33326
33439
|
type: factories['io.flow.stripe.v0.enums.error_type'](),
|
|
33327
33440
|
charge: factories.string(),
|
|
@@ -33429,7 +33542,9 @@ const factories = {
|
|
|
33429
33542
|
'io.flow.stripe.v0.unions.payment_method_data': (): io.flow.stripe.v0.unions.PaymentMethodData => {
|
|
33430
33543
|
const f = faker.helpers.arrayElement([
|
|
33431
33544
|
() => factories['io.flow.stripe.v0.models.payment_method_data_card'](),
|
|
33545
|
+
() => factories['io.flow.stripe.v0.models.payment_method_data_ideal'](),
|
|
33432
33546
|
() => factories['io.flow.stripe.v0.models.payment_method_data_klarna'](),
|
|
33547
|
+
() => factories['io.flow.stripe.v0.models.payment_method_data_bancontact'](),
|
|
33433
33548
|
]);
|
|
33434
33549
|
|
|
33435
33550
|
return f();
|
|
@@ -33438,7 +33553,9 @@ const factories = {
|
|
|
33438
33553
|
'io.flow.stripe.v0.unions.payment_method_details': (): io.flow.stripe.v0.unions.PaymentMethodDetails => {
|
|
33439
33554
|
const f = faker.helpers.arrayElement([
|
|
33440
33555
|
() => factories['io.flow.stripe.v0.models.payment_method_details_card'](),
|
|
33556
|
+
() => factories['io.flow.stripe.v0.models.payment_method_details_ideal'](),
|
|
33441
33557
|
() => factories['io.flow.stripe.v0.models.payment_method_details_klarna'](),
|
|
33558
|
+
() => factories['io.flow.stripe.v0.models.payment_method_details_bancontact'](),
|
|
33442
33559
|
]);
|
|
33443
33560
|
|
|
33444
33561
|
return f();
|
|
@@ -33447,7 +33564,9 @@ const factories = {
|
|
|
33447
33564
|
'io.flow.stripe.v0.unions.payment_method_form': (): io.flow.stripe.v0.unions.PaymentMethodForm => {
|
|
33448
33565
|
const f = faker.helpers.arrayElement([
|
|
33449
33566
|
() => factories['io.flow.stripe.v0.models.payment_method_form_card'](),
|
|
33567
|
+
() => factories['io.flow.stripe.v0.models.payment_method_form_ideal'](),
|
|
33450
33568
|
() => factories['io.flow.stripe.v0.models.payment_method_form_klarna'](),
|
|
33569
|
+
() => factories['io.flow.stripe.v0.models.payment_method_form_bancontact'](),
|
|
33451
33570
|
]);
|
|
33452
33571
|
|
|
33453
33572
|
return f();
|
|
@@ -33928,8 +34047,6 @@ export const makeAuthorizedOrderCharge = () => factories['io.flow.internal.v0.un
|
|
|
33928
34047
|
export const makeAuthorizedShippingCharge = () => factories['io.flow.internal.v0.models.authorized_shipping_charge']();
|
|
33929
34048
|
export const makeAutoRestrictRule = () => factories['io.flow.internal.v0.enums.auto_restrict_rule']();
|
|
33930
34049
|
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
34050
|
export const makeBankAccountReference = () => factories['io.flow.internal.v0.models.bank_account_reference']();
|
|
33934
34051
|
export const makeBankPayment = () => factories['io.flow.internal.v0.models.bank_payment']();
|
|
33935
34052
|
export const makeBankPaymentDeletedV2 = () => factories['io.flow.internal.v0.models.bank_payment_deleted_v2']();
|
|
@@ -34185,7 +34302,9 @@ export const makeClassificationProduct = () => factories['io.flow.internal.v0.mo
|
|
|
34185
34302
|
export const makeClassificationProductHarmonization = () => factories['io.flow.internal.v0.models.classification_product_harmonization']();
|
|
34186
34303
|
export const makeClassificationProductId = () => factories['io.flow.internal.v0.models.classification_product_id']();
|
|
34187
34304
|
export const makeClassificationProductRequest = () => factories['io.flow.internal.v0.models.classification_product_request']();
|
|
34305
|
+
export const makeClassificationProductRequestEnvelope = () => factories['io.flow.internal.v0.models.classification_product_request_envelope']();
|
|
34188
34306
|
export const makeClassificationProductResult = () => factories['io.flow.internal.v0.models.classification_product_result']();
|
|
34307
|
+
export const makeClassificationProductResultEnvelope = () => factories['io.flow.internal.v0.models.classification_product_result_envelope']();
|
|
34189
34308
|
export const makeClassificationProductSummary = () => factories['io.flow.internal.v0.models.classification_product_summary']();
|
|
34190
34309
|
export const makeClassificationProductSummaryPage = () => factories['io.flow.internal.v0.models.classification_product_summary_page']();
|
|
34191
34310
|
export const makeClassificationRequeueRequest = () => factories['io.flow.internal.v0.models.classification_requeue_request']();
|
|
@@ -34210,6 +34329,7 @@ export const makeCommercialInvoiceInternal = () => factories['io.flow.internal.v
|
|
|
34210
34329
|
export const makeCommercialInvoiceInternalDeleted = () => factories['io.flow.internal.v0.models.commercial_invoice_internal_deleted']();
|
|
34211
34330
|
export const makeCommercialInvoiceInternalUpserted = () => factories['io.flow.internal.v0.models.commercial_invoice_internal_upserted']();
|
|
34212
34331
|
export const makeCommercialInvoiceSummary = () => factories['io.flow.internal.v0.models.commercial_invoice_summary']();
|
|
34332
|
+
export const makeCompany = () => factories['io.flow.internal.v0.enums.company']();
|
|
34213
34333
|
export const makeCompanyReference = () => factories['io.flow.internal.v0.models.company_reference']();
|
|
34214
34334
|
export const makeCompliance = () => factories['io.flow.internal.v0.models.compliance']();
|
|
34215
34335
|
export const makeComplianceData = () => factories['io.flow.internal.v0.unions.compliance_data']();
|
|
@@ -34244,6 +34364,7 @@ export const makeCryptoAccountModificationForm = () => factories['io.flow.intern
|
|
|
34244
34364
|
export const makeCryptoAccountPutForm = () => factories['io.flow.internal.v0.models.crypto_account_put_form']();
|
|
34245
34365
|
export const makeCryptoAuthentication = () => factories['io.flow.internal.v0.models.crypto_authentication']();
|
|
34246
34366
|
export const makeCryptoAuthenticationForm = () => factories['io.flow.internal.v0.models.crypto_authentication_form']();
|
|
34367
|
+
export const makeCsvTransaction = () => factories['io.flow.internal.v0.models.csv_transaction']();
|
|
34247
34368
|
export const makeCurrencyInternalRate = () => factories['io.flow.internal.v0.models.currency_internal_rate']();
|
|
34248
34369
|
export const makeCustomerPurgeUpserted = () => factories['io.flow.internal.v0.models.customer_purge_upserted']();
|
|
34249
34370
|
export const makeCustomerSecret = () => factories['io.flow.internal.v0.models.customer_secret']();
|
|
@@ -34257,10 +34378,6 @@ export const makeCustomsDetails = () => factories['io.flow.internal.v0.models.cu
|
|
|
34257
34378
|
export const makeCustomsDetailsForm = () => factories['io.flow.internal.v0.models.customs_details_form']();
|
|
34258
34379
|
export const makeCustomsProductAttributeLabel = () => factories['io.flow.internal.v0.models.customs_product_attribute_label']();
|
|
34259
34380
|
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
34381
|
export const makeDailyValue = () => factories['io.flow.internal.v0.models.daily_value']();
|
|
34265
34382
|
export const makeDailyValueDeleted = () => factories['io.flow.internal.v0.models.daily_value_deleted']();
|
|
34266
34383
|
export const makeDailyValueUpserted = () => factories['io.flow.internal.v0.models.daily_value_upserted']();
|
|
@@ -34390,7 +34507,6 @@ export const makeExclusionRuleDeleted = () => factories['io.flow.internal.v0.mod
|
|
|
34390
34507
|
export const makeExclusionRuleExportRequest = () => factories['io.flow.internal.v0.models.exclusion_rule_export_request']();
|
|
34391
34508
|
export const makeExclusionRuleUpserted = () => factories['io.flow.internal.v0.models.exclusion_rule_upserted']();
|
|
34392
34509
|
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
34510
|
export const makeExperienceExportRequest = () => factories['io.flow.internal.v0.models.experience_export_request']();
|
|
34395
34511
|
export const makeExperienceImportRequest = () => factories['io.flow.internal.v0.models.experience_import_request']();
|
|
34396
34512
|
export const makeExperienceImportType = () => factories['io.flow.internal.v0.enums.experience_import_type']();
|
|
@@ -34398,30 +34514,6 @@ export const makeExperienceOrderAction = () => factories['io.flow.internal.v0.en
|
|
|
34398
34514
|
export const makeExperienceOrderActionRule = () => factories['io.flow.internal.v0.models.experience_order_action_rule']();
|
|
34399
34515
|
export const makeExperienceOrderActionTrigger = () => factories['io.flow.internal.v0.enums.experience_order_action_trigger']();
|
|
34400
34516
|
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
34517
|
export const makeExplicitStatement = () => factories['io.flow.internal.v0.models.explicit_statement']();
|
|
34426
34518
|
export const makeExplicitStatementForm = () => factories['io.flow.internal.v0.unions.explicit_statement_form']();
|
|
34427
34519
|
export const makeExplicitStatementFormAllPendingPostedTransactions = () => factories['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions']();
|
|
@@ -34444,7 +34536,6 @@ export const makeFeature = () => factories['io.flow.internal.v0.models.feature']
|
|
|
34444
34536
|
export const makeFeatureContextForm = () => factories['io.flow.internal.v0.models.feature_context_form']();
|
|
34445
34537
|
export const makeFeatureDefaultValue = () => factories['io.flow.internal.v0.unions.feature_default_value']();
|
|
34446
34538
|
export const makeFeatureDeleted = () => factories['io.flow.internal.v0.models.feature_deleted']();
|
|
34447
|
-
export const makeFeatureExperiment = () => factories['io.flow.internal.v0.models.feature_experiment']();
|
|
34448
34539
|
export const makeFeatureForm = () => factories['io.flow.internal.v0.models.feature_form']();
|
|
34449
34540
|
export const makeFeatureGeoForm = () => factories['io.flow.internal.v0.models.feature_geo_form']();
|
|
34450
34541
|
export const makeFeatureIdReference = () => factories['io.flow.internal.v0.models.feature_id_reference']();
|
|
@@ -34462,11 +34553,7 @@ export const makeFeatureType = () => factories['io.flow.internal.v0.enums.featur
|
|
|
34462
34553
|
export const makeFeatureUpserted = () => factories['io.flow.internal.v0.models.feature_upserted']();
|
|
34463
34554
|
export const makeFeatureValue = () => factories['io.flow.internal.v0.unions.feature_value']();
|
|
34464
34555
|
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
34556
|
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
34557
|
export const makeFedex = () => factories['io.flow.internal.v0.models.fedex']();
|
|
34471
34558
|
export const makeFedexCrossborder = () => factories['io.flow.internal.v0.models.fedex_crossborder']();
|
|
34472
34559
|
export const makeFee = () => factories['io.flow.internal.v0.models.fee']();
|
|
@@ -34501,9 +34588,12 @@ export const makeFlowLabProjectPutForm = () => factories['io.flow.internal.v0.mo
|
|
|
34501
34588
|
export const makeFlowLabelSetting = () => factories['io.flow.internal.v0.models.flow_label_setting']();
|
|
34502
34589
|
export const makeFlowLabelSettingForm = () => factories['io.flow.internal.v0.models.flow_label_setting_form']();
|
|
34503
34590
|
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
34591
|
export const makeFormat = () => factories['io.flow.internal.v0.enums.format']();
|
|
34592
|
+
export const makeFraudAuthorizationSummary = () => factories['io.flow.internal.v0.models.fraud_authorization_summary']();
|
|
34506
34593
|
export const makeFraudPendingReview = () => factories['io.flow.internal.v0.models.fraud_pending_review']();
|
|
34594
|
+
export const makeFraudPendingReviewAuthorization = () => factories['io.flow.internal.v0.models.fraud_pending_review_authorization']();
|
|
34595
|
+
export const makeFraudPendingReviewAuthorizationDeleted = () => factories['io.flow.internal.v0.models.fraud_pending_review_authorization_deleted']();
|
|
34596
|
+
export const makeFraudPendingReviewAuthorizationUpserted = () => factories['io.flow.internal.v0.models.fraud_pending_review_authorization_upserted']();
|
|
34507
34597
|
export const makeFraudPendingReviewDeleted = () => factories['io.flow.internal.v0.models.fraud_pending_review_deleted']();
|
|
34508
34598
|
export const makeFraudPendingReviewDetail = () => factories['io.flow.internal.v0.models.fraud_pending_review_detail']();
|
|
34509
34599
|
export const makeFraudPendingReviewUpserted = () => factories['io.flow.internal.v0.models.fraud_pending_review_upserted']();
|
|
@@ -34516,6 +34606,12 @@ export const makeFraudProviderConfigurationRiskified = () => factories['io.flow.
|
|
|
34516
34606
|
export const makeFraudProviderConfigurationUpserted = () => factories['io.flow.internal.v0.models.fraud_provider_configuration_upserted']();
|
|
34517
34607
|
export const makeFraudProviderStatus = () => factories['io.flow.internal.v0.enums.fraud_provider_status']();
|
|
34518
34608
|
export const makeFraudReview = () => factories['io.flow.internal.v0.models.fraud_review']();
|
|
34609
|
+
export const makeFraudReviewAuthorization = () => factories['io.flow.internal.v0.models.fraud_review_authorization']();
|
|
34610
|
+
export const makeFraudReviewAuthorizationDecision = () => factories['io.flow.internal.v0.models.fraud_review_authorization_decision']();
|
|
34611
|
+
export const makeFraudReviewAuthorizationDecisionDeleted = () => factories['io.flow.internal.v0.models.fraud_review_authorization_decision_deleted']();
|
|
34612
|
+
export const makeFraudReviewAuthorizationDecisionUpserted = () => factories['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted']();
|
|
34613
|
+
export const makeFraudReviewAuthorizationDeleted = () => factories['io.flow.internal.v0.models.fraud_review_authorization_deleted']();
|
|
34614
|
+
export const makeFraudReviewAuthorizationUpserted = () => factories['io.flow.internal.v0.models.fraud_review_authorization_upserted']();
|
|
34519
34615
|
export const makeFraudReviewDecision = () => factories['io.flow.internal.v0.models.fraud_review_decision']();
|
|
34520
34616
|
export const makeFraudReviewDecisionDeleted = () => factories['io.flow.internal.v0.models.fraud_review_decision_deleted']();
|
|
34521
34617
|
export const makeFraudReviewDecisionForm = () => factories['io.flow.internal.v0.models.fraud_review_decision_form']();
|
|
@@ -34583,10 +34679,16 @@ export const makeGoogleLinker = () => factories['io.flow.internal.v0.models.goog
|
|
|
34583
34679
|
export const makeGoogleShoppingAccountParameters = () => factories['io.flow.internal.v0.models.google_shopping_account_parameters']();
|
|
34584
34680
|
export const makeGoogleShoppingSetting = () => factories['io.flow.internal.v0.models.google_shopping_setting']();
|
|
34585
34681
|
export const makeGoogleTagManager = () => factories['io.flow.internal.v0.models.google_tag_manager']();
|
|
34682
|
+
export const makeHarinathItem = () => factories['io.flow.internal.v0.models.harinath_item']();
|
|
34683
|
+
export const makeHarinathItemDeleted = () => factories['io.flow.internal.v0.models.harinath_item_deleted']();
|
|
34684
|
+
export const makeHarinathItemForm = () => factories['io.flow.internal.v0.models.harinath_item_form']();
|
|
34685
|
+
export const makeHarinathItemType = () => factories['io.flow.internal.v0.enums.harinath_item_type']();
|
|
34686
|
+
export const makeHarinathItemUpserted = () => factories['io.flow.internal.v0.models.harinath_item_upserted']();
|
|
34586
34687
|
export const makeHarmonizationClassificationStatisticsData = () => factories['io.flow.internal.v0.models.harmonization_classification_statistics_data']();
|
|
34587
34688
|
export const makeHarmonizationClassificationStatisticsPublished = () => factories['io.flow.internal.v0.models.harmonization_classification_statistics_published']();
|
|
34588
34689
|
export const makeHarmonizationCodesImport = () => factories['io.flow.internal.v0.models.harmonization_codes_import']();
|
|
34589
34690
|
export const makeHarmonizationColumnSetting = () => factories['io.flow.internal.v0.models.harmonization_column_setting']();
|
|
34691
|
+
export const makeHarmonizationDecisionSource = () => factories['io.flow.internal.v0.enums.harmonization_decision_source']();
|
|
34590
34692
|
export const makeHarmonizationItemClassification = () => factories['io.flow.internal.v0.models.harmonization_item_classification']();
|
|
34591
34693
|
export const makeHarmonizationItemClassificationDeleted = () => factories['io.flow.internal.v0.models.harmonization_item_classification_deleted']();
|
|
34592
34694
|
export const makeHarmonizationItemClassificationUpserted = () => factories['io.flow.internal.v0.models.harmonization_item_classification_upserted']();
|
|
@@ -34690,6 +34792,11 @@ export const makeKeyReference = () => factories['io.flow.internal.v0.models.key_
|
|
|
34690
34792
|
export const makeKeywordType = () => factories['io.flow.internal.v0.enums.keyword_type']();
|
|
34691
34793
|
export const makeKlarnaAuthorizationParameters = () => factories['io.flow.internal.v0.models.klarna_authorization_parameters']();
|
|
34692
34794
|
export const makeKlarnaPaymentMethodCategory = () => factories['io.flow.internal.v0.models.klarna_payment_method_category']();
|
|
34795
|
+
export const makeKonstantinItem = () => factories['io.flow.internal.v0.models.konstantin_item']();
|
|
34796
|
+
export const makeKonstantinItemDeleted = () => factories['io.flow.internal.v0.models.konstantin_item_deleted']();
|
|
34797
|
+
export const makeKonstantinItemForm = () => factories['io.flow.internal.v0.models.konstantin_item_form']();
|
|
34798
|
+
export const makeKonstantinItemType = () => factories['io.flow.internal.v0.enums.konstantin_item_type']();
|
|
34799
|
+
export const makeKonstantinItemUpserted = () => factories['io.flow.internal.v0.models.konstantin_item_upserted']();
|
|
34693
34800
|
export const makeLabProjectSettings = () => factories['io.flow.internal.v0.models.lab_project_settings']();
|
|
34694
34801
|
export const makeLabProjectSettingsForm = () => factories['io.flow.internal.v0.models.lab_project_settings_form']();
|
|
34695
34802
|
export const makeLabProjectSettingsFormAcceptance = () => factories['io.flow.internal.v0.models.lab_project_settings_form_acceptance']();
|
|
@@ -34766,6 +34873,9 @@ export const makeLocation = () => factories['io.flow.internal.v0.models.location
|
|
|
34766
34873
|
export const makeLogisticsCapabilities = () => factories['io.flow.internal.v0.models.logistics_capabilities']();
|
|
34767
34874
|
export const makeLogisticsCapabilitiesForm = () => factories['io.flow.internal.v0.models.logistics_capabilities_form']();
|
|
34768
34875
|
export const makeLogisticsCapability = () => factories['io.flow.internal.v0.enums.logistics_capability']();
|
|
34876
|
+
export const makeLogisticsPayoutRequest = () => factories['io.flow.internal.v0.models.logistics_payout_request']();
|
|
34877
|
+
export const makeLogisticsPayoutRequestForm = () => factories['io.flow.internal.v0.models.logistics_payout_request_form']();
|
|
34878
|
+
export const makeLogisticsPayoutResolutionMethod = () => factories['io.flow.internal.v0.enums.logistics_payout_resolution_method']();
|
|
34769
34879
|
export const makeLogo = () => factories['io.flow.internal.v0.models.logo']();
|
|
34770
34880
|
export const makeLostChargeback = () => factories['io.flow.internal.v0.models.lost_chargeback']();
|
|
34771
34881
|
export const makeLoyaltyProgram = () => factories['io.flow.internal.v0.models.loyalty_program']();
|
|
@@ -34865,6 +34975,16 @@ export const makeMerchantUpserted = () => factories['io.flow.internal.v0.models.
|
|
|
34865
34975
|
export const makeMessageStamp = () => factories['io.flow.internal.v0.models.message_stamp']();
|
|
34866
34976
|
export const makeMetadataProposition = () => factories['io.flow.internal.v0.models.metadata_proposition']();
|
|
34867
34977
|
export const makeMetadataRatecard = () => factories['io.flow.internal.v0.models.metadata_ratecard']();
|
|
34978
|
+
export const makeMichaelyanItem = () => factories['io.flow.internal.v0.models.michaelyan_item']();
|
|
34979
|
+
export const makeMichaelyanItemDeleted = () => factories['io.flow.internal.v0.models.michaelyan_item_deleted']();
|
|
34980
|
+
export const makeMichaelyanItemForm = () => factories['io.flow.internal.v0.models.michaelyan_item_form']();
|
|
34981
|
+
export const makeMichaelyanItemType = () => factories['io.flow.internal.v0.enums.michaelyan_item_type']();
|
|
34982
|
+
export const makeMichaelyanItemUpserted = () => factories['io.flow.internal.v0.models.michaelyan_item_upserted']();
|
|
34983
|
+
export const makeMiljenkoItem = () => factories['io.flow.internal.v0.models.miljenko_item']();
|
|
34984
|
+
export const makeMiljenkoItemDeleted = () => factories['io.flow.internal.v0.models.miljenko_item_deleted']();
|
|
34985
|
+
export const makeMiljenkoItemForm = () => factories['io.flow.internal.v0.models.miljenko_item_form']();
|
|
34986
|
+
export const makeMiljenkoItemType = () => factories['io.flow.internal.v0.enums.miljenko_item_type']();
|
|
34987
|
+
export const makeMiljenkoItemUpserted = () => factories['io.flow.internal.v0.models.miljenko_item_upserted']();
|
|
34868
34988
|
export const makeMixedBagWeight = () => factories['io.flow.internal.v0.enums.mixed_bag_weight']();
|
|
34869
34989
|
export const makeNatureOfSale = () => factories['io.flow.internal.v0.enums.nature_of_sale']();
|
|
34870
34990
|
export const makeNextBillingStatement = () => factories['io.flow.internal.v0.models.next_billing_statement']();
|
|
@@ -34939,6 +35059,9 @@ export const makeOrderServiceChangeCsvForm = () => factories['io.flow.internal.v
|
|
|
34939
35059
|
export const makeOrderShipped = () => factories['io.flow.internal.v0.models.order_shipped']();
|
|
34940
35060
|
export const makeOrderSubmissionForm = () => factories['io.flow.internal.v0.models.order_submission_form']();
|
|
34941
35061
|
export const makeOrderSummary = () => factories['io.flow.internal.v0.models.order_summary']();
|
|
35062
|
+
export const makeOrderTaxAndDutyInclusivitySetting = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting']();
|
|
35063
|
+
export const makeOrderTaxAndDutyInclusivitySettingDeleted = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted']();
|
|
35064
|
+
export const makeOrderTaxAndDutyInclusivitySettingUpserted = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted']();
|
|
34942
35065
|
export const makeOrderTransaction = () => factories['io.flow.internal.v0.models.order_transaction']();
|
|
34943
35066
|
export const makeOrderTransactionDeleted = () => factories['io.flow.internal.v0.models.order_transaction_deleted']();
|
|
34944
35067
|
export const makeOrderTransactionType = () => factories['io.flow.internal.v0.enums.order_transaction_type']();
|
|
@@ -34978,6 +35101,9 @@ export const makeOrganizationDebugTransaction = () => factories['io.flow.interna
|
|
|
34978
35101
|
export const makeOrganizationInvitationAcceptForm = () => factories['io.flow.internal.v0.models.organization_invitation_accept_form']();
|
|
34979
35102
|
export const makeOrganizationMembershipCopy = () => factories['io.flow.internal.v0.models.organization_membership_copy']();
|
|
34980
35103
|
export const makeOrganizationMembershipCopyForm = () => factories['io.flow.internal.v0.models.organization_membership_copy_form']();
|
|
35104
|
+
export const makeOrganizationMetadata = () => factories['io.flow.internal.v0.models.organization_metadata']();
|
|
35105
|
+
export const makeOrganizationMetadataDeleted = () => factories['io.flow.internal.v0.models.organization_metadata_deleted']();
|
|
35106
|
+
export const makeOrganizationMetadataUpserted = () => factories['io.flow.internal.v0.models.organization_metadata_upserted']();
|
|
34981
35107
|
export const makeOrganizationMetricType = () => factories['io.flow.internal.v0.enums.organization_metric_type']();
|
|
34982
35108
|
export const makeOrganizationOnboardingStateAdjustmentResult = () => factories['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result']();
|
|
34983
35109
|
export const makeOrganizationOnboardingStateAuditResult = () => factories['io.flow.internal.v0.models.organization_onboarding_state_audit_result']();
|
|
@@ -35007,6 +35133,26 @@ export const makeOrganizationStatusChange = () => factories['io.flow.internal.v0
|
|
|
35007
35133
|
export const makeOrganizationStatusChangeDeleted = () => factories['io.flow.internal.v0.models.organization_status_change_deleted']();
|
|
35008
35134
|
export const makeOrganizationStatusChangeUpserted = () => factories['io.flow.internal.v0.models.organization_status_change_upserted']();
|
|
35009
35135
|
export const makeOrganizationsAuditCheckReport = () => factories['io.flow.internal.v0.models.organizations_audit_check_report']();
|
|
35136
|
+
export const makeOtherRecord = () => factories['io.flow.internal.v0.models.other_record']();
|
|
35137
|
+
export const makeOtherRecordAccount = () => factories['io.flow.internal.v0.models.other_record_account']();
|
|
35138
|
+
export const makeOtherRecordAccountSourceSummary = () => factories['io.flow.internal.v0.models.other_record_account_source_summary']();
|
|
35139
|
+
export const makeOtherRecordDeleted = () => factories['io.flow.internal.v0.models.other_record_deleted']();
|
|
35140
|
+
export const makeOtherRecordDiscount = () => factories['io.flow.internal.v0.models.other_record_discount']();
|
|
35141
|
+
export const makeOtherRecordFees = () => factories['io.flow.internal.v0.models.other_record_fees']();
|
|
35142
|
+
export const makeOtherRecordIdentifiers = () => factories['io.flow.internal.v0.models.other_record_identifiers']();
|
|
35143
|
+
export const makeOtherRecordMerchantReference = () => factories['io.flow.internal.v0.models.other_record_merchant_reference']();
|
|
35144
|
+
export const makeOtherRecordMetadata = () => factories['io.flow.internal.v0.models.other_record_metadata']();
|
|
35145
|
+
export const makeOtherRecordMetadataCarrierCharge = () => factories['io.flow.internal.v0.models.other_record_metadata_carrier_charge']();
|
|
35146
|
+
export const makeOtherRecordMetadataChannel = () => factories['io.flow.internal.v0.models.other_record_metadata_channel']();
|
|
35147
|
+
export const makeOtherRecordMetadataFailedPayout = () => factories['io.flow.internal.v0.models.other_record_metadata_failed_payout']();
|
|
35148
|
+
export const makeOtherRecordMetadataManual = () => factories['io.flow.internal.v0.models.other_record_metadata_manual']();
|
|
35149
|
+
export const makeOtherRecordMetadataShippingLabel = () => factories['io.flow.internal.v0.models.other_record_metadata_shipping_label']();
|
|
35150
|
+
export const makeOtherRecordMetadataShippingLabelRevenueShare = () => factories['io.flow.internal.v0.models.other_record_metadata_shipping_label_revenue_share']();
|
|
35151
|
+
export const makeOtherRecordMetadataTrueup = () => factories['io.flow.internal.v0.models.other_record_metadata_trueup']();
|
|
35152
|
+
export const makeOtherRecordOrderSummary = () => factories['io.flow.internal.v0.models.other_record_order_summary']();
|
|
35153
|
+
export const makeOtherRecordOrderSummaryIdentifiers = () => factories['io.flow.internal.v0.models.other_record_order_summary_identifiers']();
|
|
35154
|
+
export const makeOtherRecordUpserted = () => factories['io.flow.internal.v0.models.other_record_upserted']();
|
|
35155
|
+
export const makeOtherRecordWithholdings = () => factories['io.flow.internal.v0.models.other_record_withholdings']();
|
|
35010
35156
|
export const makeOutputStyle = () => factories['io.flow.internal.v0.enums.output_style']();
|
|
35011
35157
|
export const makeOwner = () => factories['io.flow.internal.v0.enums.owner']();
|
|
35012
35158
|
export const makePartner = () => factories['io.flow.internal.v0.models.partner']();
|
|
@@ -35036,6 +35182,7 @@ export const makePaymentProcessorAccountUpserted = () => factories['io.flow.inte
|
|
|
35036
35182
|
export const makePaymentProcessorMerchantDeleted = () => factories['io.flow.internal.v0.models.payment_processor_merchant_deleted']();
|
|
35037
35183
|
export const makePaymentProcessorMerchantUpserted = () => factories['io.flow.internal.v0.models.payment_processor_merchant_upserted']();
|
|
35038
35184
|
export const makePaymentRedirect = () => factories['io.flow.internal.v0.unions.payment_redirect']();
|
|
35185
|
+
export const makePaymentSummary = () => factories['io.flow.internal.v0.models.payment_summary']();
|
|
35039
35186
|
export const makePaymentSummaryDetails = () => factories['io.flow.internal.v0.unions.payment_summary_details']();
|
|
35040
35187
|
export const makePaymentSummaryStatus = () => factories['io.flow.internal.v0.enums.payment_summary_status']();
|
|
35041
35188
|
export const makePaymentSummaryType = () => factories['io.flow.internal.v0.enums.payment_summary_type']();
|
|
@@ -35237,8 +35384,6 @@ export const makeReportingMonetaryValue = () => factories['io.flow.internal.v0.m
|
|
|
35237
35384
|
export const makeReportingOrderSummary = () => factories['io.flow.internal.v0.models.reporting_order_summary']();
|
|
35238
35385
|
export const makeReportingOrganizationSummary = () => factories['io.flow.internal.v0.models.reporting_organization_summary']();
|
|
35239
35386
|
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
35387
|
export const makeReportingProvince = () => factories['io.flow.internal.v0.models.reporting_province']();
|
|
35243
35388
|
export const makeReportingReconciliation = () => factories['io.flow.internal.v0.models.reporting_reconciliation']();
|
|
35244
35389
|
export const makeReportingRefundReference = () => factories['io.flow.internal.v0.models.reporting_refund_reference']();
|
|
@@ -35250,6 +35395,7 @@ export const makeReportingVatRemittance = () => factories['io.flow.internal.v0.m
|
|
|
35250
35395
|
export const makeReportingVatRemittanceRate = () => factories['io.flow.internal.v0.models.reporting_vat_remittance_rate']();
|
|
35251
35396
|
export const makeReportingVendor = () => factories['io.flow.internal.v0.models.reporting_vendor']();
|
|
35252
35397
|
export const makeRequeueRequestForm = () => factories['io.flow.internal.v0.models.requeue_request_form']();
|
|
35398
|
+
export const makeRescreenRestrictionsProducts = () => factories['io.flow.internal.v0.models.rescreen_restrictions_products']();
|
|
35253
35399
|
export const makeResponsibleParty = () => factories['io.flow.internal.v0.enums.responsible_party']();
|
|
35254
35400
|
export const makeRestrictionAction = () => factories['io.flow.internal.v0.enums.restriction_action']();
|
|
35255
35401
|
export const makeRestrictionCategory = () => factories['io.flow.internal.v0.models.restriction_category']();
|
|
@@ -35310,7 +35456,6 @@ export const makeSalesRecordUpserted = () => factories['io.flow.internal.v0.mode
|
|
|
35310
35456
|
export const makeSandboxSetup = () => factories['io.flow.internal.v0.models.sandbox_setup']();
|
|
35311
35457
|
export const makeSandboxSetupForm = () => factories['io.flow.internal.v0.models.sandbox_setup_form']();
|
|
35312
35458
|
export const makeScheduledPayment = () => factories['io.flow.internal.v0.models.scheduled_payment']();
|
|
35313
|
-
export const makeScope = () => factories['io.flow.internal.v0.enums.scope']();
|
|
35314
35459
|
export const makeScreen = () => factories['io.flow.internal.v0.models.screen']();
|
|
35315
35460
|
export const makeScreenForm = () => factories['io.flow.internal.v0.models.screen_form']();
|
|
35316
35461
|
export const makeScreeningStatusChange = () => factories['io.flow.internal.v0.models.screening_status_change']();
|
|
@@ -35456,7 +35601,6 @@ export const makeShrutiDemoItemDeleted = () => factories['io.flow.internal.v0.mo
|
|
|
35456
35601
|
export const makeShrutiDemoItemForm = () => factories['io.flow.internal.v0.models.shruti_demo_item_form']();
|
|
35457
35602
|
export const makeShrutiDemoItemUpserted = () => factories['io.flow.internal.v0.models.shruti_demo_item_upserted']();
|
|
35458
35603
|
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
35604
|
export const makeSimpleAccountReference = () => factories['io.flow.internal.v0.models.simple_account_reference']();
|
|
35461
35605
|
export const makeSimpleRoundingStrategy = () => factories['io.flow.internal.v0.enums.simple_rounding_strategy']();
|
|
35462
35606
|
export const makeSimplifiedClassificationTaxonomy = () => factories['io.flow.internal.v0.unions.simplified_classification_taxonomy']();
|
|
@@ -35486,7 +35630,6 @@ export const makeStatementCreationMetadata = () => factories['io.flow.internal.v
|
|
|
35486
35630
|
export const makeStatementStatus = () => factories['io.flow.internal.v0.enums.statement_status']();
|
|
35487
35631
|
export const makeStatementTransferTransactionLocation = () => factories['io.flow.internal.v0.enums.statement_transfer_transaction_location']();
|
|
35488
35632
|
export const makeStatisticType = () => factories['io.flow.internal.v0.enums.statistic_type']();
|
|
35489
|
-
export const makeStatus = () => factories['io.flow.internal.v0.enums.status']();
|
|
35490
35633
|
export const makeStoreConnection = () => factories['io.flow.internal.v0.models.store_connection']();
|
|
35491
35634
|
export const makeStoreConnectionForm = () => factories['io.flow.internal.v0.models.store_connection_form']();
|
|
35492
35635
|
export const makeStringFeatureDefaultValue = () => factories['io.flow.internal.v0.models.string_feature_default_value']();
|
|
@@ -35549,6 +35692,7 @@ export const makeTaskProcessQueuedEvent = () => factories['io.flow.internal.v0.m
|
|
|
35549
35692
|
export const makeTaskProcessorKey = () => factories['io.flow.internal.v0.enums.task_processor_key']();
|
|
35550
35693
|
export const makeTaskSummarizeCode = () => factories['io.flow.internal.v0.models.task_summarize_code']();
|
|
35551
35694
|
export const makeTaxAmount = () => factories['io.flow.internal.v0.unions.tax_amount']();
|
|
35695
|
+
export const makeTaxAndDutyInclusivitySetting = () => factories['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting']();
|
|
35552
35696
|
export const makeTaxCalculation = () => factories['io.flow.internal.v0.models.tax_calculation']();
|
|
35553
35697
|
export const makeTaxCalculationError = () => factories['io.flow.internal.v0.models.tax_calculation_error']();
|
|
35554
35698
|
export const makeTaxCalculationErrorCode = () => factories['io.flow.internal.v0.enums.tax_calculation_error_code']();
|
|
@@ -35568,6 +35712,9 @@ export const makeTaxonomyNode = () => factories['io.flow.internal.v0.models.taxo
|
|
|
35568
35712
|
export const makeTechOnboardingDescription = () => factories['io.flow.internal.v0.models.tech_onboarding_description']();
|
|
35569
35713
|
export const makeTest = () => factories['io.flow.internal.v0.models.test']();
|
|
35570
35714
|
export const makeTestForm = () => factories['io.flow.internal.v0.models.test_form']();
|
|
35715
|
+
export const makeThiagoItem = () => factories['io.flow.internal.v0.models.thiago_item']();
|
|
35716
|
+
export const makeThiagoItemForm = () => factories['io.flow.internal.v0.models.thiago_item_form']();
|
|
35717
|
+
export const makeThiagoItemType = () => factories['io.flow.internal.v0.enums.thiago_item_type']();
|
|
35571
35718
|
export const makeThirdPartyLogisticsPartner = () => factories['io.flow.internal.v0.models.third_party_logistics_partner']();
|
|
35572
35719
|
export const makeThirdPartyLogisticsPickUpTimeWindow = () => factories['io.flow.internal.v0.models.third_party_logistics_pick_up_time_window']();
|
|
35573
35720
|
export const makeTieredFee = () => factories['io.flow.internal.v0.models.tiered_fee']();
|
|
@@ -35579,8 +35726,11 @@ export const makeTimeToClassifyAggregatedUpserted = () => factories['io.flow.int
|
|
|
35579
35726
|
export const makeTimeToClassifyDeleted = () => factories['io.flow.internal.v0.models.time_to_classify_deleted']();
|
|
35580
35727
|
export const makeTimeToClassifyUpserted = () => factories['io.flow.internal.v0.models.time_to_classify_upserted']();
|
|
35581
35728
|
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
35729
|
export const makeTracker = () => factories['io.flow.internal.v0.unions.tracker']();
|
|
35730
|
+
export const makeTrackingAssuranceAnalysis = () => factories['io.flow.internal.v0.models.tracking_assurance_analysis']();
|
|
35731
|
+
export const makeTrackingAssuranceAnalysisDeleted = () => factories['io.flow.internal.v0.models.tracking_assurance_analysis_deleted']();
|
|
35732
|
+
export const makeTrackingAssuranceAnalysisUpserted = () => factories['io.flow.internal.v0.models.tracking_assurance_analysis_upserted']();
|
|
35733
|
+
export const makeTrackingDebugForceTransitForm = () => factories['io.flow.internal.v0.models.tracking_debug_force_transit_form']();
|
|
35584
35734
|
export const makeTrackingDebugLabel = () => factories['io.flow.internal.v0.models.tracking_debug_label']();
|
|
35585
35735
|
export const makeTrackingDebugLabelEvent = () => factories['io.flow.internal.v0.models.tracking_debug_label_event']();
|
|
35586
35736
|
export const makeTrackingDebugLabelLocation = () => factories['io.flow.internal.v0.models.tracking_debug_label_location']();
|
|
@@ -35643,8 +35793,6 @@ export const makeUserUpsertedV2 = () => factories['io.flow.internal.v0.models.us
|
|
|
35643
35793
|
export const makeV1Checkout = () => factories['io.flow.internal.v0.models.v1_checkout']();
|
|
35644
35794
|
export const makeValidationCharacterLength = () => factories['io.flow.internal.v0.models.validation_character_length']();
|
|
35645
35795
|
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
35796
|
export const makeViesResult = () => factories['io.flow.internal.v0.models.vies_result']();
|
|
35649
35797
|
export const makeVirtualCardTransaction = () => factories['io.flow.internal.v0.models.virtual_card_transaction']();
|
|
35650
35798
|
export const makeWasteElectricalAndElectronicEquipmentComplianceData = () => factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data']();
|