@flowio/api-internal-constants 4.18.98 → 4.18.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +107 -128
- package/dist/api-internal.js +129 -156
- package/package.json +2 -2
- package/src/api-internal.ts +118 -145
package/dist/api-internal.d.ts
CHANGED
|
@@ -11,10 +11,6 @@ export declare enum AccountType {
|
|
|
11
11
|
CHANNEL = "channel",
|
|
12
12
|
ORGANIZATION = "organization"
|
|
13
13
|
}
|
|
14
|
-
export declare enum AddressConfigurationSettingProvinceCode {
|
|
15
|
-
ISO_3166_2 = "iso_3166_2",
|
|
16
|
-
NAME = "name"
|
|
17
|
-
}
|
|
18
14
|
export declare enum AdjustmentTransactionType {
|
|
19
15
|
ADJUSTMENT = "adjustment",
|
|
20
16
|
REVERSAL = "reversal"
|
|
@@ -28,6 +24,10 @@ export declare enum AldoItemType {
|
|
|
28
24
|
PHYSICAL = "physical",
|
|
29
25
|
DIGITAL = "digital"
|
|
30
26
|
}
|
|
27
|
+
export declare enum AnirbanItemType {
|
|
28
|
+
PHYSICAL = "physical",
|
|
29
|
+
DIGITAL = "digital"
|
|
30
|
+
}
|
|
31
31
|
export declare enum AnshItemType {
|
|
32
32
|
PHYSICAL = "physical",
|
|
33
33
|
DIGITAL = "digital"
|
|
@@ -256,15 +256,22 @@ export declare enum BillingMetricKey {
|
|
|
256
256
|
FOURTH_PLUS_ATTEMPT_SUCCESS_RATIO = "fourth_plus_attempt_success_ratio",
|
|
257
257
|
GE_REVENUE_SHARE_STANDARD_TRANSACTIONS_COUNT = "ge_revenue_share_standard_transactions_count",
|
|
258
258
|
GE_REVENUE_SHARE_STANDARD_TRANSACTIONS_TOTAL = "ge_revenue_share_standard_transactions_total",
|
|
259
|
+
GE_REVENUE_SHARE_STANDARD_TRANSACTIONS_PERCENTAGE = "ge_revenue_share_standard_transactions_percentage",
|
|
259
260
|
GE_REVENUE_SHARE_SHOPIFY_PLUS_TRANSACTIONS_COUNT = "ge_revenue_share_shopify_plus_transactions_count",
|
|
260
261
|
GE_REVENUE_SHARE_SHOPIFY_PLUS_TRANSACTIONS_TOTAL = "ge_revenue_share_shopify_plus_transactions_total",
|
|
262
|
+
GE_REVENUE_SHARE_SHOPIFY_PLUS_TRANSACTIONS_PERCENTAGE = "ge_revenue_share_shopify_plus_transactions_percentage",
|
|
261
263
|
NON_L_4_L_TAX_DUTY_FX_TRANSACTIONS_COUNT = "non_l4l_tax_duty_fx_transactions_count",
|
|
262
264
|
NON_L_4_L_TAX_DUTY_FX_TRANSACTIONS_TOTAL = "non_l4l_tax_duty_fx_transactions_total",
|
|
265
|
+
NON_L_4_L_TAX_DUTY_FX_TRANSACTIONS_PERCENTAGE = "non_l4l_tax_duty_fx_transactions_percentage",
|
|
263
266
|
SP_ADJUSTMENT_TRANSACTIONS_COUNT = "sp_adjustment_transactions_count",
|
|
264
267
|
SP_ADJUSTMENT_TRANSACTIONS_TOTAL = "sp_adjustment_transactions_total",
|
|
265
268
|
SP_BILLABLE_LABEL_TRANSACTIONS_COUNT = "sp_billable_label_transactions_count",
|
|
266
269
|
SP_BILLABLE_LABEL_TRANSACTIONS_COUNT_FOR_UNIQUE_ORDERS = "sp_billable_label_transactions_count_for_unique_orders",
|
|
267
270
|
SP_BILLABLE_LABEL_TRANSACTIONS_TOTAL = "sp_billable_label_transactions_total",
|
|
271
|
+
CAPTURE_TRANSACTIONS_STANDARD_COUNT = "capture_transactions_standard_count",
|
|
272
|
+
CAPTURE_TRANSACTIONS_STANDARD_TOTAL = "capture_transactions_standard_total",
|
|
273
|
+
CAPTURE_TRANSACTIONS_SHOPIFY_PLUS_COUNT = "capture_transactions_shopify_plus_count",
|
|
274
|
+
CAPTURE_TRANSACTIONS_SHOPIFY_PLUS_TOTAL = "capture_transactions_shopify_plus_total",
|
|
268
275
|
SP_CAPTURE_TRANSACTIONS_COUNT = "sp_capture_transactions_count",
|
|
269
276
|
SP_CAPTURE_TRANSACTIONS_TOTAL = "sp_capture_transactions_total",
|
|
270
277
|
SP_CARRIER_CHARGE_TRANSACTIONS_COUNT = "sp_carrier_charge_transactions_count",
|
|
@@ -338,7 +345,9 @@ export declare enum BillingTransactionType {
|
|
|
338
345
|
NON_L_4_L_TAX_DUTY_FX = "non_l4l_tax_duty_fx",
|
|
339
346
|
TAX_REFUND = "tax_refund",
|
|
340
347
|
DUTY_REFUND = "duty_refund",
|
|
341
|
-
GE_REVENUE_SHARE = "ge_revenue_share"
|
|
348
|
+
GE_REVENUE_SHARE = "ge_revenue_share",
|
|
349
|
+
MERCHANT_PAYOUT = "merchant_payout",
|
|
350
|
+
MERCHANT_REFUND = "merchant_refund"
|
|
342
351
|
}
|
|
343
352
|
export declare enum CalculatorEngine {
|
|
344
353
|
DTCE_WITH_DEMINIMIS = "dtce_with_deminimis",
|
|
@@ -356,6 +365,9 @@ export declare enum CarrierChargeType {
|
|
|
356
365
|
TAX = "tax",
|
|
357
366
|
OTHER = "other"
|
|
358
367
|
}
|
|
368
|
+
export declare enum CarrierDocumentType {
|
|
369
|
+
COMMERCIAL_INVOICE = "commercial_invoice"
|
|
370
|
+
}
|
|
359
371
|
export declare enum CarrierFileType {
|
|
360
372
|
FREIGHT = "freight",
|
|
361
373
|
TAX = "tax"
|
|
@@ -439,6 +451,11 @@ export declare enum ChannelTransactionType {
|
|
|
439
451
|
REVERSAL = "reversal",
|
|
440
452
|
PROCESSING = "processing"
|
|
441
453
|
}
|
|
454
|
+
export declare enum ChapterCheckStatus {
|
|
455
|
+
APPAREL_LIKE = "apparel_like",
|
|
456
|
+
SIMILAR = "similar",
|
|
457
|
+
DOES_NOT_MATCH = "does_not_match"
|
|
458
|
+
}
|
|
442
459
|
export declare enum ChargeEstimateSource {
|
|
443
460
|
GLOBAL_E = "global-e",
|
|
444
461
|
SHOPIFY = "shopify"
|
|
@@ -476,27 +493,10 @@ export declare enum CheckoutAssetType {
|
|
|
476
493
|
STYLESHEET = "stylesheet",
|
|
477
494
|
JAVASCRIPT = "javascript"
|
|
478
495
|
}
|
|
479
|
-
export declare enum CheckoutErrorCode {
|
|
480
|
-
GENERIC_ERROR = "generic_error",
|
|
481
|
-
ORDER_IDENTIFIER_INVALID = "order_identifier_invalid",
|
|
482
|
-
URL_INVALID = "url_invalid",
|
|
483
|
-
ORGANIZATION_INVALID = "organization_invalid",
|
|
484
|
-
SESSION_INVALID = "session_invalid",
|
|
485
|
-
SESSION_MISSING = "session_missing",
|
|
486
|
-
SESSION_ORGANIZATION_INVALID = "session_organization_invalid",
|
|
487
|
-
COUNTRY_INVALID = "country_invalid",
|
|
488
|
-
CURRENCY_INVALID = "currency_invalid",
|
|
489
|
-
LANGUAGE_INVALID = "language_invalid",
|
|
490
|
-
CHECKOUT_INVALID = "checkout_invalid"
|
|
491
|
-
}
|
|
492
496
|
export declare enum CheckoutPromptBehavior {
|
|
493
497
|
ALWAYS = "always",
|
|
494
498
|
INCOMPLETE = "incomplete"
|
|
495
499
|
}
|
|
496
|
-
export declare enum CheckoutRedirectMethod {
|
|
497
|
-
GET = "get",
|
|
498
|
-
POST = "post"
|
|
499
|
-
}
|
|
500
500
|
export declare enum CheckoutShippingMethodPromptBehavior {
|
|
501
501
|
ALWAYS = "always",
|
|
502
502
|
MULTIPLE = "multiple"
|
|
@@ -555,25 +555,6 @@ export declare enum ConnectReportTransferTransferType {
|
|
|
555
555
|
MANAGED_MARKETS_DISPUTE_WON_AMOUNT_CREDIT = "ManagedMarketsDisputeWonAmountCredit",
|
|
556
556
|
MANAGED_MARKETS_DUTIES_AND_TAXES_ADJUSTMENT_CREDIT = "ManagedMarketsDutiesAndTaxesAdjustmentCredit"
|
|
557
557
|
}
|
|
558
|
-
export declare enum ContentElementType {
|
|
559
|
-
MARKDOWN = "markdown",
|
|
560
|
-
HTML = "html",
|
|
561
|
-
PLAIN_TEXT = "plain_text",
|
|
562
|
-
HREF = "href"
|
|
563
|
-
}
|
|
564
|
-
export declare enum ContentStatus {
|
|
565
|
-
DRAFT = "draft",
|
|
566
|
-
LIVE = "live",
|
|
567
|
-
ARCHIVED = "archived"
|
|
568
|
-
}
|
|
569
|
-
export declare enum ContentType {
|
|
570
|
-
TEXT = "text",
|
|
571
|
-
HTML = "html"
|
|
572
|
-
}
|
|
573
|
-
export declare enum ContentTypeCast {
|
|
574
|
-
MARKDOWN_TO_HTML = "markdown_to_html",
|
|
575
|
-
MARKDOWN_TO_TEXT = "markdown_to_text"
|
|
576
|
-
}
|
|
577
558
|
export declare enum CrossdockTrackingStatus {
|
|
578
559
|
NOTIFIED = "notified",
|
|
579
560
|
RECEIVED = "received",
|
|
@@ -700,12 +681,20 @@ export declare enum DutyTransactionType {
|
|
|
700
681
|
DUTY = "duty",
|
|
701
682
|
REFUND = "refund"
|
|
702
683
|
}
|
|
684
|
+
export declare enum DutyVarianceStatus {
|
|
685
|
+
ACCEPTABLE = "acceptable",
|
|
686
|
+
EXCEEDED = "exceeded"
|
|
687
|
+
}
|
|
703
688
|
export declare enum EmptyAttribute {
|
|
704
689
|
IRRELEVANT = "irrelevant"
|
|
705
690
|
}
|
|
706
691
|
export declare enum ErpFileType {
|
|
707
692
|
VENDOR = "vendor"
|
|
708
693
|
}
|
|
694
|
+
export declare enum EvaluationCheckResult {
|
|
695
|
+
PASS = "pass",
|
|
696
|
+
FAIL = "fail"
|
|
697
|
+
}
|
|
709
698
|
export declare enum EventType {
|
|
710
699
|
ADYEN_AUTHORIZATION_DELETED = "adyen_authorization_deleted",
|
|
711
700
|
ADYEN_AUTHORIZATION_UPSERTED = "adyen_authorization_upserted",
|
|
@@ -789,12 +778,8 @@ export declare enum EventType {
|
|
|
789
778
|
CHANNEL_ORDER_ACCEPTANCE_UPSERTED = "channel_order_acceptance_upserted",
|
|
790
779
|
CHANNEL_ORDER_ACCEPTANCE_DELETED = "channel_order_acceptance_deleted",
|
|
791
780
|
CHANNEL_ORDER_ACCEPTANCE_FAILED = "channel_order_acceptance_failed",
|
|
792
|
-
CHECKOUT_CONFIGURATION_UPSERTED = "checkout_configuration_upserted",
|
|
793
|
-
CHECKOUT_CONFIGURATION_DELETED = "checkout_configuration_deleted",
|
|
794
781
|
COMMERCIAL_INVOICE_INTERNAL_UPSERTED = "commercial_invoice_internal_upserted",
|
|
795
782
|
COMMERCIAL_INVOICE_INTERNAL_DELETED = "commercial_invoice_internal_deleted",
|
|
796
|
-
LOCALIZED_CONTENT_UPSERTED = "localized_content_upserted",
|
|
797
|
-
LOCALIZATION_UPSERTED = "localization_upserted",
|
|
798
783
|
INTERNAL_CHANNEL_RATE_DELETED = "internal_channel_rate_deleted",
|
|
799
784
|
INTERNAL_CHANNEL_RATE_UPSERTED = "internal_channel_rate_upserted",
|
|
800
785
|
RATE_DELETED = "rate_deleted",
|
|
@@ -894,9 +879,9 @@ export declare enum EventType {
|
|
|
894
879
|
RATE_FRESHNESS_SUMMARY_DELETED = "rate_freshness_summary_deleted",
|
|
895
880
|
ITEM_HARMONIZATION_UPSERTED = "item_harmonization_upserted",
|
|
896
881
|
ITEM_HARMONIZATION_DELETED = "item_harmonization_deleted",
|
|
882
|
+
MERCHANT_OVERRIDE_UPSERTED = "merchant_override_upserted",
|
|
883
|
+
MERCHANT_OVERRIDE_DELETED = "merchant_override_deleted",
|
|
897
884
|
HARMONIZATION_CLASSIFICATION_STATISTICS_PUBLISHED = "harmonization_classification_statistics_published",
|
|
898
|
-
ISSUER_UPSERTED = "issuer_upserted",
|
|
899
|
-
ISSUER_DELETED = "issuer_deleted",
|
|
900
885
|
ITEM_FORM_IMPORT_REQUEST = "item_form_import_request",
|
|
901
886
|
LABEL_REQUEST_ERROR_UPSERTED = "label_request_error_upserted",
|
|
902
887
|
LABEL_REQUEST_ERROR_DELETED = "label_request_error_deleted",
|
|
@@ -953,6 +938,8 @@ export declare enum EventType {
|
|
|
953
938
|
AUTHORIZATION_BUNDLE_DELETED = "authorization_bundle_deleted",
|
|
954
939
|
ORGANIZATION_PAYMENT_SETTING_UPSERTED = "organization_payment_setting_upserted",
|
|
955
940
|
ORGANIZATION_PAYMENT_SETTING_DELETED = "organization_payment_setting_deleted",
|
|
941
|
+
ORDER_REFUND_TRANSACTION_UPSERTED = "order_refund_transaction_upserted",
|
|
942
|
+
ORDER_REFUND_TRANSACTION_DELETED = "order_refund_transaction_deleted",
|
|
956
943
|
PAYPAL_PAYMENT_DELETED = "paypal_payment_deleted",
|
|
957
944
|
PAYPAL_PAYMENT_UPSERTED = "paypal_payment_upserted",
|
|
958
945
|
PAYPAL_EXECUTION_DELETED = "paypal_execution_deleted",
|
|
@@ -994,10 +981,8 @@ export declare enum EventType {
|
|
|
994
981
|
RESTRICTION_RULE_EFFECT_DELETED = "restriction_rule_effect_deleted",
|
|
995
982
|
TAXONOMY_CATEGORY_HS_6_REF_UPSERTED = "taxonomy_category_hs6_ref_upserted",
|
|
996
983
|
TAXONOMY_CATEGORY_HS_6_REF_DELETED = "taxonomy_category_hs6_ref_deleted",
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
SHOPIFY_EXPERIENCE_SHORT_ID_UPSERTED = "shopify_experience_short_id_upserted",
|
|
1000
|
-
SHOPIFY_EXPERIENCE_SHORT_ID_DELETED = "shopify_experience_short_id_deleted",
|
|
984
|
+
SHOPIFY_HS_10_CODES_UPSERTED = "shopify_hs10_codes_upserted",
|
|
985
|
+
SHOPIFY_HS_10_CODES_DELETED = "shopify_hs10_codes_deleted",
|
|
1001
986
|
SHOPIFY_MARKETS_ORDER_UPSERTED = "shopify_markets_order_upserted",
|
|
1002
987
|
SHOPIFY_MARKETS_ORDER_DELETED = "shopify_markets_order_deleted",
|
|
1003
988
|
SHOPIFY_MARKETS_SHOP_UPSERTED = "shopify_markets_shop_upserted",
|
|
@@ -1006,6 +991,10 @@ export declare enum EventType {
|
|
|
1006
991
|
SHOPIFY_MARKETS_WEBHOOK_REGISTRATION_DELETED = "shopify_markets_webhook_registration_deleted",
|
|
1007
992
|
SHOPIFY_MARKETS_SHOP_STATISTICS_UPSERTED = "shopify_markets_shop_statistics_upserted",
|
|
1008
993
|
SHOPIFY_MARKETS_SHOP_STATISTICS_DELETED = "shopify_markets_shop_statistics_deleted",
|
|
994
|
+
SHOPIFY_PRODUCT_TAXONOMY_ATTRIBUTE_UPSERTED = "shopify_product_taxonomy_attribute_upserted",
|
|
995
|
+
SHOPIFY_PRODUCT_TAXONOMY_ATTRIBUTE_DELETED = "shopify_product_taxonomy_attribute_deleted",
|
|
996
|
+
SHOPIFY_PRODUCT_TAXONOMY_ATTRIBUTE_VALUE_UPSERTED = "shopify_product_taxonomy_attribute_value_upserted",
|
|
997
|
+
SHOPIFY_PRODUCT_TAXONOMY_ATTRIBUTE_VALUE_DELETED = "shopify_product_taxonomy_attribute_value_deleted",
|
|
1009
998
|
SHOPIFY_MARKETS_METRICS_UPSERTED = "shopify_markets_metrics_upserted",
|
|
1010
999
|
SHOPIFY_MARKETS_METRICS_DELETED = "shopify_markets_metrics_deleted",
|
|
1011
1000
|
CHANNEL_ORDER_SUMMARY_UPSERTED = "channel_order_summary_upserted",
|
|
@@ -1043,6 +1032,8 @@ export declare enum EventType {
|
|
|
1043
1032
|
SHOPIFY_MERCHANT_PLAN_DELETED = "shopify_merchant_plan_deleted",
|
|
1044
1033
|
SHOPIFY_DISPUTE_UPSERTED = "shopify_dispute_upserted",
|
|
1045
1034
|
SHOPIFY_DISPUTE_DELETED = "shopify_dispute_deleted",
|
|
1035
|
+
SHOPIFY_REPORT_FILE_UPSERTED = "shopify_report_file_upserted",
|
|
1036
|
+
SHOPIFY_REPORT_FILE_DELETED = "shopify_report_file_deleted",
|
|
1046
1037
|
STRIPE_AUTHORIZATION_DELETED = "stripe_authorization_deleted",
|
|
1047
1038
|
STRIPE_AUTHORIZATION_UPSERTED = "stripe_authorization_upserted",
|
|
1048
1039
|
STRIPE_REVERSAL_DELETED = "stripe_reversal_deleted",
|
|
@@ -1111,17 +1102,8 @@ export declare enum FeesSource {
|
|
|
1111
1102
|
SETTINGS = "settings",
|
|
1112
1103
|
AUTHORIZATION_BUNDLE = "authorization_bundle"
|
|
1113
1104
|
}
|
|
1114
|
-
export declare enum
|
|
1115
|
-
|
|
1116
|
-
ORGANIZATION = "organization"
|
|
1117
|
-
}
|
|
1118
|
-
export declare enum FlowApp {
|
|
1119
|
-
CONSOLE = "console"
|
|
1120
|
-
}
|
|
1121
|
-
export declare enum Format {
|
|
1122
|
-
TEXT = "text",
|
|
1123
|
-
PHONE = "phone",
|
|
1124
|
-
EMAIL = "email"
|
|
1105
|
+
export declare enum FileType {
|
|
1106
|
+
PDF = "pdf"
|
|
1125
1107
|
}
|
|
1126
1108
|
export declare enum FraudProvider {
|
|
1127
1109
|
FLOW = "flow",
|
|
@@ -1140,21 +1122,15 @@ export declare enum FraudReviewResponsibleParty {
|
|
|
1140
1122
|
FLOW = "flow",
|
|
1141
1123
|
ORGANIZATION = "organization"
|
|
1142
1124
|
}
|
|
1143
|
-
export declare enum FtpIntent {
|
|
1144
|
-
ORDERS_FROM_FLOW = "orders_from_flow",
|
|
1145
|
-
PRICEBOOKS_FROM_FLOW = "pricebooks_from_flow",
|
|
1146
|
-
PRICEBOOKS_TO_FLOW = "pricebooks_to_flow",
|
|
1147
|
-
CATALOG_TO_FLOW = "catalog_to_flow",
|
|
1148
|
-
INVENTORY_TO_FLOW = "inventory_to_flow"
|
|
1149
|
-
}
|
|
1150
|
-
export declare enum FtpProtocol {
|
|
1151
|
-
SFTP = "sftp",
|
|
1152
|
-
FTP = "ftp"
|
|
1153
|
-
}
|
|
1154
1125
|
export declare enum GeIngestionFileStatus {
|
|
1155
1126
|
PENDING = "pending",
|
|
1156
1127
|
PROCESSED = "processed"
|
|
1157
1128
|
}
|
|
1129
|
+
export declare enum GeRevenueShareTransactionType {
|
|
1130
|
+
ADJUSTMENT = "adjustment",
|
|
1131
|
+
REVERSAL = "reversal",
|
|
1132
|
+
REVENUE_SHARE = "revenue_share"
|
|
1133
|
+
}
|
|
1158
1134
|
export declare enum GoogleAnalyticsPlugin {
|
|
1159
1135
|
EC = "ec"
|
|
1160
1136
|
}
|
|
@@ -1208,7 +1184,8 @@ export declare enum ItemHarmonizationStatus {
|
|
|
1208
1184
|
WAITING_FOR_CLASSIFICATION = "waiting_for_classification",
|
|
1209
1185
|
CLASSIFIED = "classified",
|
|
1210
1186
|
NON_CLASSIFIABLE_NOT_ENOUGH_INFORMATION = "non_classifiable_not_enough_information",
|
|
1211
|
-
EXEMPT = "exempt"
|
|
1187
|
+
EXEMPT = "exempt",
|
|
1188
|
+
MANUAL_CLASSIFICATION_REQUIRED = "manual_classification_required"
|
|
1212
1189
|
}
|
|
1213
1190
|
export declare enum ItemQuantityAction {
|
|
1214
1191
|
FULFILLMENT_SHIP = "fulfillment_ship",
|
|
@@ -1219,6 +1196,11 @@ export declare enum ItemType {
|
|
|
1219
1196
|
STANDARD = "standard",
|
|
1220
1197
|
MULTI_PRODUCT = "multi_product"
|
|
1221
1198
|
}
|
|
1199
|
+
export declare enum JournalOperation {
|
|
1200
|
+
INSERT = "insert",
|
|
1201
|
+
UPDATE = "update",
|
|
1202
|
+
DELETE = "delete"
|
|
1203
|
+
}
|
|
1222
1204
|
export declare enum KeywordType {
|
|
1223
1205
|
POSITIVE = "positive",
|
|
1224
1206
|
NEGATIVE = "negative"
|
|
@@ -1565,25 +1547,8 @@ export declare enum ProcessorEntityStatus {
|
|
|
1565
1547
|
export declare enum ProductStatus {
|
|
1566
1548
|
ACTIVE = "active",
|
|
1567
1549
|
ARCHIVED = "archived",
|
|
1568
|
-
DRAFT = "draft"
|
|
1569
|
-
|
|
1570
|
-
export declare enum PromptAction {
|
|
1571
|
-
PROMPT_DISPLAYED = "prompt_displayed",
|
|
1572
|
-
CONSENT_GRANTED = "consent_granted",
|
|
1573
|
-
CONSENT_DENIED = "consent_denied"
|
|
1574
|
-
}
|
|
1575
|
-
export declare enum PromptCheckoutDisplayPosition {
|
|
1576
|
-
EMAIL = "email",
|
|
1577
|
-
SUBMISSION = "submission"
|
|
1578
|
-
}
|
|
1579
|
-
export declare enum PromptOptions {
|
|
1580
|
-
NOTICE_ONLY = "notice_only",
|
|
1581
|
-
REQUIRE_CONSENT = "require_consent",
|
|
1582
|
-
CONSENT_BY_DEFAULT = "consent_by_default"
|
|
1583
|
-
}
|
|
1584
|
-
export declare enum PromptTarget {
|
|
1585
|
-
BROWSE = "browse",
|
|
1586
|
-
CHECKOUT = "checkout"
|
|
1550
|
+
DRAFT = "draft",
|
|
1551
|
+
UNLISTED = "unlisted"
|
|
1587
1552
|
}
|
|
1588
1553
|
export declare enum RateLevelKey {
|
|
1589
1554
|
SHOPIFY_SMALL_USA = "shopify_small_usa",
|
|
@@ -1595,10 +1560,6 @@ export declare enum RateSource {
|
|
|
1595
1560
|
CALCULATED = "calculated",
|
|
1596
1561
|
MARKET = "market"
|
|
1597
1562
|
}
|
|
1598
|
-
export declare enum ReboundConfigurationStatus {
|
|
1599
|
-
ACTIVE = "active",
|
|
1600
|
-
INACTIVE = "inactive"
|
|
1601
|
-
}
|
|
1602
1563
|
export declare enum RedirectReason {
|
|
1603
1564
|
THREE_D_SECURE = "three_d_secure"
|
|
1604
1565
|
}
|
|
@@ -1647,7 +1608,8 @@ export declare enum ReportType {
|
|
|
1647
1608
|
PAYMENTS = "payments",
|
|
1648
1609
|
RECONCILE_NOT_RECORDED = "reconcile_not_recorded",
|
|
1649
1610
|
PRODUCTS_RECORD = "products_record",
|
|
1650
|
-
DISPUTES = "disputes"
|
|
1611
|
+
DISPUTES = "disputes",
|
|
1612
|
+
SALES_PAYMENTS_RECORD = "sales_payments_record"
|
|
1651
1613
|
}
|
|
1652
1614
|
export declare enum ReportingFulfillmentIsVirtual {
|
|
1653
1615
|
ALL = "all",
|
|
@@ -1668,6 +1630,24 @@ export declare enum RestrictionAction {
|
|
|
1668
1630
|
PROHIBITED = "prohibited",
|
|
1669
1631
|
RESTRICTED = "restricted"
|
|
1670
1632
|
}
|
|
1633
|
+
export declare enum RestrictionAttributeConditionMultipleOperator {
|
|
1634
|
+
IN = "in",
|
|
1635
|
+
NOT_IN = "not_in"
|
|
1636
|
+
}
|
|
1637
|
+
export declare enum RestrictionAttributeConditionSingleOperator {
|
|
1638
|
+
EQUALS = "equals",
|
|
1639
|
+
NOT_EQUALS = "not_equals"
|
|
1640
|
+
}
|
|
1641
|
+
export declare enum RestrictionAttributeOperator {
|
|
1642
|
+
AND = "and",
|
|
1643
|
+
OR = "or"
|
|
1644
|
+
}
|
|
1645
|
+
export declare enum RestrictionAttributeResult {
|
|
1646
|
+
PENDING_CLASSIFICATION = "pending_classification",
|
|
1647
|
+
PENDING_VERIFICATION = "pending_verification",
|
|
1648
|
+
ACCEPTED = "accepted",
|
|
1649
|
+
RESTRICTED = "restricted"
|
|
1650
|
+
}
|
|
1671
1651
|
export declare enum RestrictionDecision {
|
|
1672
1652
|
ACCEPT = "accept",
|
|
1673
1653
|
ESCALATE = "escalate",
|
|
@@ -1684,6 +1664,15 @@ export declare enum RestrictionOrganizationSource {
|
|
|
1684
1664
|
SHOPIFY = "shopify",
|
|
1685
1665
|
ENTERPRISE = "enterprise"
|
|
1686
1666
|
}
|
|
1667
|
+
export declare enum RestrictionRuleActivationStatus {
|
|
1668
|
+
DRAFT = "draft",
|
|
1669
|
+
ACTIVE = "active",
|
|
1670
|
+
INACTIVE = "inactive"
|
|
1671
|
+
}
|
|
1672
|
+
export declare enum RestrictionRuleCommunityExemption {
|
|
1673
|
+
DOMESTIC_EXEMPTION = "domestic_exemption",
|
|
1674
|
+
INTRA_EU_EXEMPTION = "intra_eu_exemption"
|
|
1675
|
+
}
|
|
1687
1676
|
export declare enum RestrictionRuleExceptionAction {
|
|
1688
1677
|
ALLOW = "allow",
|
|
1689
1678
|
DENY = "deny"
|
|
@@ -1718,12 +1707,20 @@ export declare enum RohanItemType {
|
|
|
1718
1707
|
PHYSICAL = "physical",
|
|
1719
1708
|
DIGITAL = "digital"
|
|
1720
1709
|
}
|
|
1721
|
-
export declare enum
|
|
1722
|
-
|
|
1710
|
+
export declare enum SarveshItemType {
|
|
1711
|
+
PHYSICAL = "physical",
|
|
1712
|
+
DIGITAL = "digital"
|
|
1713
|
+
}
|
|
1714
|
+
export declare enum SellabilityCheckStatus {
|
|
1715
|
+
MORE_RESTRICTIVE = "more_restrictive",
|
|
1716
|
+
LESS_RESTRICTIVE = "less_restrictive",
|
|
1717
|
+
SIMILAR = "similar",
|
|
1718
|
+
REGIONS_DIFFER = "regions_differ",
|
|
1719
|
+
RULES_DIFFER = "rules_differ"
|
|
1723
1720
|
}
|
|
1724
|
-
export declare enum
|
|
1725
|
-
|
|
1726
|
-
|
|
1721
|
+
export declare enum SellabilityStatus {
|
|
1722
|
+
COMPLETE = "complete",
|
|
1723
|
+
INCOMPLETE = "incomplete"
|
|
1727
1724
|
}
|
|
1728
1725
|
export declare enum ShopifyIncotermConfiguration {
|
|
1729
1726
|
DDP = "DDP",
|
|
@@ -1799,23 +1796,6 @@ export declare enum ShopifyPlanType {
|
|
|
1799
1796
|
STANDARD = "standard",
|
|
1800
1797
|
SHOPIFY_PLUS = "shopify_plus"
|
|
1801
1798
|
}
|
|
1802
|
-
export declare enum ShopifyPromotionBehavior {
|
|
1803
|
-
DISABLE_DISCOUNT_CODES = "disable_discount_codes"
|
|
1804
|
-
}
|
|
1805
|
-
export declare enum ShopifyPromotionOfferAllocationMethod {
|
|
1806
|
-
EACH = "each",
|
|
1807
|
-
ACROSS = "across"
|
|
1808
|
-
}
|
|
1809
|
-
export declare enum ShopifyPromotionOrderEntitlementComponent {
|
|
1810
|
-
SUBTOTAL = "subtotal",
|
|
1811
|
-
SHIPPING = "shipping",
|
|
1812
|
-
VAT = "vat",
|
|
1813
|
-
DUTY = "duty"
|
|
1814
|
-
}
|
|
1815
|
-
export declare enum ShopifyPromotionStatus {
|
|
1816
|
-
ACTIVE = "active",
|
|
1817
|
-
INACTIVE = "inactive"
|
|
1818
|
-
}
|
|
1819
1799
|
export declare enum ShopifyService {
|
|
1820
1800
|
PAYMENT = "payment",
|
|
1821
1801
|
DUTY_TAX_CALCULATOR = "duty_tax_calculator",
|
|
@@ -1837,14 +1817,6 @@ export declare enum SourceTypeFilter {
|
|
|
1837
1817
|
ORGANIZATION = "organization",
|
|
1838
1818
|
CHANNEL = "channel"
|
|
1839
1819
|
}
|
|
1840
|
-
export declare enum StatementStatus {
|
|
1841
|
-
CREATED = "created",
|
|
1842
|
-
NO_TRANSACTIONS = "no_transactions",
|
|
1843
|
-
TRANSACTIONS_ASSIGNED = "transactions_assigned",
|
|
1844
|
-
STATEMENT_GENERATED = "statement_generated",
|
|
1845
|
-
STATEMENT_REGENERATED = "statement_regenerated",
|
|
1846
|
-
FAILED = "failed"
|
|
1847
|
-
}
|
|
1848
1820
|
export declare enum StatementTransferTransactionLocation {
|
|
1849
1821
|
TRANSACTIONS_FILE = "transactions_file",
|
|
1850
1822
|
SUMMARY = "summary"
|
|
@@ -1898,6 +1870,13 @@ export declare enum TaxTransactionType {
|
|
|
1898
1870
|
TAX = "tax",
|
|
1899
1871
|
REFUND = "refund"
|
|
1900
1872
|
}
|
|
1873
|
+
export declare enum TaxonomyCategoryClassificationAlignment {
|
|
1874
|
+
ALIGNED = "aligned",
|
|
1875
|
+
NOT_ALIGNED = "not_aligned",
|
|
1876
|
+
PRODUCT_MISSING_CATEGORY = "product_missing_category",
|
|
1877
|
+
CONFIG_MISSING_CATEGORY = "config_missing_category",
|
|
1878
|
+
PRODUCT_NOT_FOUND = "product_not_found"
|
|
1879
|
+
}
|
|
1901
1880
|
export declare enum TrackingIntegrationType {
|
|
1902
1881
|
API = "api",
|
|
1903
1882
|
BULK = "bulk",
|