@flowio/api-internal-constants 4.18.66 → 4.18.68
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 +17 -3
- package/dist/api-internal.js +23 -7
- package/package.json +2 -2
- package/src/api-internal.ts +17 -1
package/dist/api-internal.d.ts
CHANGED
|
@@ -2,6 +2,10 @@ export declare enum AccountSettingLiabilitiesMethod {
|
|
|
2
2
|
WITHHOLDING = "withholding",
|
|
3
3
|
TRANSACTION = "transaction"
|
|
4
4
|
}
|
|
5
|
+
export declare enum AccountStatus {
|
|
6
|
+
ACTIVE = "active",
|
|
7
|
+
INACTIVE = "inactive"
|
|
8
|
+
}
|
|
5
9
|
export declare enum AccountType {
|
|
6
10
|
CHANNEL = "channel",
|
|
7
11
|
ORGANIZATION = "organization"
|
|
@@ -167,7 +171,10 @@ export declare enum BillingMetricKey {
|
|
|
167
171
|
NEGATIVE_BALANCE_TOTAL = "negative_balance_total",
|
|
168
172
|
NEGATIVE_BALANCE_TOTAL_WITH_ORDER_IN_PAST_30_DAYS = "negative_balance_total_with_order_in_past_30_days",
|
|
169
173
|
NEGATIVE_BALANCE_TOTAL_WITHOUT_ORDER_IN_PAST_30_DAYS = "negative_balance_total_without_order_in_past_30_days",
|
|
170
|
-
NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX = "negative_balance_single_account_max"
|
|
174
|
+
NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX = "negative_balance_single_account_max",
|
|
175
|
+
INACTIVE_ACCOUNTS_COUNT = "inactive_accounts_count",
|
|
176
|
+
INACTIVE_ACCOUNT_PENDING_PAYMENT_PROMISE_COUNT = "inactive_account_pending_payment_promise_count",
|
|
177
|
+
INACTIVE_ACCOUNT_PENDING_PAYMENT_PROMISE_TOTAL = "inactive_account_pending_payment_promise_total"
|
|
171
178
|
}
|
|
172
179
|
export declare enum BillingStatementAttachmentKey {
|
|
173
180
|
INVOICE = "invoice",
|
|
@@ -247,7 +254,8 @@ export declare enum CalculatorEngine {
|
|
|
247
254
|
export declare enum CarrierChargeTransactionType {
|
|
248
255
|
ADJUSTMENT = "adjustment",
|
|
249
256
|
REVERSAL = "reversal",
|
|
250
|
-
CHARGE = "charge"
|
|
257
|
+
CHARGE = "charge",
|
|
258
|
+
REVENUE_SHARE = "revenue_share"
|
|
251
259
|
}
|
|
252
260
|
export declare enum CarrierChargeType {
|
|
253
261
|
LABEL = "label",
|
|
@@ -935,7 +943,6 @@ export declare enum EventType {
|
|
|
935
943
|
PROCESSING_TRANSACTION_UPSERTED = "processing_transaction_upserted",
|
|
936
944
|
PROCESSING_TRANSACTION_DELETED = "processing_transaction_deleted",
|
|
937
945
|
BANK_PAYMENT_UPSERTED = "bank_payment_upserted",
|
|
938
|
-
BANK_PAYMENT_DELETED = "bank_payment_deleted",
|
|
939
946
|
BANK_PAYMENT_UPSERTED_V_2 = "bank_payment_upserted_v2",
|
|
940
947
|
BANK_PAYMENT_DELETED_V_2 = "bank_payment_deleted_v2",
|
|
941
948
|
CHANNEL_TRANSACTION_UPSERTED = "channel_transaction_upserted",
|
|
@@ -1232,6 +1239,8 @@ export declare enum EventType {
|
|
|
1232
1239
|
SVITLANA_ITEM_DELETED = "svitlana_item_deleted",
|
|
1233
1240
|
COLM_ITEM_UPSERTED = "colm_item_upserted",
|
|
1234
1241
|
COLM_ITEM_DELETED = "colm_item_deleted",
|
|
1242
|
+
MATIAS_ITEM_UPSERTED = "matias_item_upserted",
|
|
1243
|
+
MATIAS_ITEM_DELETED = "matias_item_deleted",
|
|
1235
1244
|
SHRUTI_DEMO_ITEM_UPSERTED = "shruti_demo_item_upserted",
|
|
1236
1245
|
SHRUTI_DEMO_ITEM_DELETED = "shruti_demo_item_deleted",
|
|
1237
1246
|
TAM_ITEM_UPSERTED = "tam_item_upserted",
|
|
@@ -1498,6 +1507,10 @@ export declare enum MarketingGatewaySchemaCompatibility {
|
|
|
1498
1507
|
FACEBOOK_COUNTRY_OVERRIDE = "facebook_country_override",
|
|
1499
1508
|
SUPPLEMENTAL = "supplemental"
|
|
1500
1509
|
}
|
|
1510
|
+
export declare enum MatiasItemType {
|
|
1511
|
+
PHYSICAL = "physical",
|
|
1512
|
+
DIGITAL = "digital"
|
|
1513
|
+
}
|
|
1501
1514
|
export declare enum MixedBagWeight {
|
|
1502
1515
|
LEAST_MIXED = "0",
|
|
1503
1516
|
PARTIALLY_MIXED = "1",
|
|
@@ -1612,6 +1625,7 @@ export declare enum OrderTransactionType {
|
|
|
1612
1625
|
export declare enum OrderValidationStatus {
|
|
1613
1626
|
SUCCESS = "success",
|
|
1614
1627
|
FAILED = "failed",
|
|
1628
|
+
LABEL_CREATED = "label_created",
|
|
1615
1629
|
UNRESOLVABLE = "unresolvable"
|
|
1616
1630
|
}
|
|
1617
1631
|
export declare enum OrganizationCapability {
|
package/dist/api-internal.js
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.UnclassifiedProductStatus = exports.TrueupTransactionType = exports.TransferMethod = exports.TransactionPostingMethod = exports.TrackingIntegrationType = exports.TimeseriesType = exports.TaxTransactionType = exports.TaxParty = exports.TaxCalculationErrorCode = exports.TaskProcessorKey = exports.TariffEligibilityType = exports.TamItemType = exports.SvitlanaType = exports.SuggestionAction = exports.SubscriptionFrequency = exports.Status = exports.StatisticType = exports.StatementTransferTransactionLocation = exports.StatementStatus = exports.SnoozeSourceType = exports.SnoozeNextActionWith = exports.SimpleRoundingStrategy = exports.SignificanceAction = exports.ShrutiDemoType = exports.ShopifyService = exports.ShopifyPromotionStatus = exports.ShopifyPromotionOrderEntitlementComponent = exports.ShopifyPromotionOfferAllocationMethod = exports.ShopifyPromotionBehavior = exports.ShopifyMonitoringTrackingField = exports.ShopifyMonitoringMonitorReviewStatus = exports.ShopifyMarketsTradeSector = exports.ShopifyMarketsQueuedRecordType = exports.ShopifyMarketsHtsNumberAvailable = exports.ShopifyMarketsDangerousGoods = exports.ShopifyGrantStatus = exports.ShopifyCheckInventoryErrorCode = exports.SessionCountryStatus = exports.ServiceName = void 0;
|
|
3
|
+
exports.CheckoutCreateAuthorizationErrorCode = exports.CheckoutCreateAuthorizationDetailsErrorCode = exports.CheckoutConnectBySessionErrorCode = exports.CheckoutConnectByOrderQuoteErrorCode = exports.CheckoutAssetType = exports.CheckoutAddressType = exports.CheckoutAddressSource = exports.CheckoutAddPaymentDetailsErrorCode = exports.CheckoutAddOrderIdentifierErrorCode = exports.CheckoutAddLineErrorCode = exports.CheckoutAddGiftCardErrorCode = exports.CheckoutAddGiftCardAndPromotionCodeErrorCode = exports.CheckoutAddAuthorizationErrorCode = exports.ChargebackProcessStatus = exports.ChargebackPaymentStatus = exports.ChargeInputType = exports.ChargeEstimateSource = exports.ChannelTransactionType = exports.ChannelOrderFulfillmentStatusCode = exports.ChannelOrderAcceptanceStatus = exports.ChannelOrderAcceptanceRejectionReason = exports.ChannelOrderAcceptanceNextActionFrom = exports.ChannelOrderAcceptanceErrorAction = exports.ChannelBilledTransactionType = exports.CatalogImportType = exports.CarrierValidationStatus = exports.CarrierLabelGenerationMethod = exports.CarrierChargeType = exports.CarrierChargeTransactionType = exports.CalculatorEngine = exports.BrowserBundleErrorCode = exports.BlazeCheckoutStep = exports.BlazeCheckoutEvent = exports.BillingTransactionType = exports.BillingTransactionStatus = exports.BillingStatementBatchFileKey = exports.BillingStatementAttachmentKey = exports.BillingMetricKey = exports.BillingAllocationKey = exports.BankPaymentStatusCode = exports.BankPaymentPromiseCompletedMethod = exports.AutoRestrictRule = exports.ApiCallReferenceId = exports.AnyDangerousGoods = exports.AdyenIntegrationType = exports.AdjustmentTransactionType = exports.AddressConfigurationSettingProvinceCode = exports.AccountType = exports.AccountStatus = exports.AccountSettingLiabilitiesMethod = void 0;
|
|
4
|
+
exports.CheckoutSetLineAttributesErrorCode = exports.CheckoutSetLanguageErrorCode = exports.CheckoutSetDeliveryOptionErrorCode = exports.CheckoutSetCurrencyErrorCode = exports.CheckoutSetContactPhoneErrorCode = exports.CheckoutSetContactEmailErrorCode = exports.CheckoutSetAddressStreetErrorCode = exports.CheckoutSetAddressSourceErrorCode = exports.CheckoutSetAddressProvinceErrorCode = exports.CheckoutSetAddressPostalErrorCode = exports.CheckoutSetAddressNameErrorCode = exports.CheckoutSetAddressLastNameErrorCode = exports.CheckoutSetAddressFirstNameErrorCode = exports.CheckoutSetAddressCountryErrorCode = exports.CheckoutSetAddressCityErrorCode = exports.CheckoutSelectAddressBookContactErrorCode = exports.CheckoutSaveAddressBookErrorCode = exports.CheckoutRedirectMethod = exports.CheckoutPromptBehavior = exports.CheckoutPaymentRedirectMethod = exports.CheckoutPaymentGroupType = exports.CheckoutPaymentAuthorizationParametersErrorCode = exports.CheckoutLineErrorCode = exports.CheckoutInitiatePaymentErrorCode = exports.CheckoutInfoTranslationsKeyField = exports.CheckoutInfoPaymentsFormDataKeyField = exports.CheckoutInfoPaymentDetailsKeyField = exports.CheckoutInfoOrderSummaryKeyField = exports.CheckoutInfoNationalIdNumberConfigurationFormDataKeyField = exports.CheckoutInfoDeliveriesFormDataKeyField = exports.CheckoutInfoContentKeyField = exports.CheckoutInfoAddressPredictionsKeyField = exports.CheckoutInfoAddressConfigurationFormDataKeyField = exports.CheckoutInfoAddressBookContactsKeyField = exports.CheckoutHttpSequencedRequestErrorCode = exports.CheckoutGetErrorCode = exports.CheckoutGetAddressPredictionErrorCode = exports.CheckoutFeaturesErrorCode = exports.CheckoutErrorCode = exports.CheckoutDeletePromotionCodeErrorCode = exports.CheckoutDeletePaymentSourceErrorCode = exports.CheckoutDeletePaymentErrorCode = exports.CheckoutDeleteLineErrorCode = exports.CheckoutDeleteAddressStreetErrorCode = exports.CheckoutDeleteAddressBookContactErrorCode = exports.CheckoutCreateBySessionErrorCode = exports.CheckoutCreateBySessionByOrderErrorCode = exports.CheckoutCreateBySessionByCustomerTokenErrorCode = exports.CheckoutCreateByOrderQuoteErrorCode = exports.CheckoutCreateByCartTokenErrorCode = void 0;
|
|
5
|
+
exports.FeatureType = exports.FeatureStatus = exports.FeatureScope = exports.ExportContentType = exports.ExperimentDiscriminatorKey = exports.ExperienceOrderActionTrigger = exports.ExperienceOrderAction = exports.ExperienceImportType = exports.EventType = exports.ErpFileType = exports.EmptyAttribute = exports.DutyTransactionType = exports.DutySimpleExpressionType = exports.DutySelectionRule = exports.DutyRateUnitOfMeasure = exports.DutyRateSource = exports.DutyExemptItemTypes = exports.DutyCompoundExpressionType = exports.DisputeType = exports.DisputeTransactionType = exports.DisputeStatus = exports.DisputeProcessor = exports.DisputeLiability = exports.DisputeImportType = exports.DisputeImportStatus = exports.DisputeEvidence = exports.DisputeCategory = exports.DisputeBillable = exports.DiscountRequestOrderEntitlementKey = exports.DeminimisAdjustmentType = exports.DeliveredDutyOptionMessageType = exports.DebugAccountingTransactionType = exports.CrossdockTrackingStatus = exports.ContentTypeCast = exports.ContentType = exports.ContentStatus = exports.ContentElementType = exports.ComplianceType = exports.ColmItemType = exports.ClassificationErrorCode = exports.CheckoutUrlType = exports.CheckoutSubmitErrorCode = exports.CheckoutShippingMethodPromptBehavior = exports.CheckoutSetPromotionCodeErrorCode = exports.CheckoutSetPaymentSourceErrorCode = exports.CheckoutSetOptinPromptErrorCode = exports.CheckoutSetNationalIdNumberErrorCode = exports.CheckoutSetLocaleErrorCode = exports.CheckoutSetLinesErrorCode = exports.CheckoutSetLineQuantityErrorCode = void 0;
|
|
6
|
+
exports.OrderAction = exports.OnboardingStateSource = exports.OnboardingAutomationTaskState = exports.OnboardingAutomationProcessState = exports.OnboardingAuditThemeKey = exports.OnboardingAuditResult = exports.OnboardingAuditMessageLevel = exports.NoLiabilityReasonCode = exports.NatureOfSale = exports.MixedBagWeight = exports.MatiasItemType = exports.MarketingGatewaySchemaCompatibility = exports.MarketingGatewayProductStatus = exports.MarketingGatewayPlatform = exports.MarketingGatewayFeedState = exports.MarketingGatewayFeedDownloadFormat = exports.MarketingGatewayFacebookTokenStatus = exports.MarketingGatewayErrorCode = exports.MarketingGatewayChannelStatus = exports.MarketingGatewayChannelIntegrationType = exports.MarketingGatewayAccountConnectionStatus = exports.ManualTransactionCategory = exports.ManualReviewRuleStatus = exports.MainTransactionStatus = exports.LiabilityType = exports.LabelTransactionType = exports.LabelRequestErrorHandlingResponsibility = exports.LabelCreationStatus = exports.LabelCancellationErrorCode = exports.LabelBillingStrategy = exports.KeywordType = exports.ItemType = exports.ItemQuantityAction = exports.ItemHarmonizationStatus = exports.ItemClassificationStatus = exports.ItemClassificationAction = exports.InventoryReservation = exports.InventoryCheckService = exports.InitialInputDataSource = exports.HttpMethod = exports.GoogleAnalyticsPlugin = exports.FtpProtocol = exports.FtpIntent = exports.FraudReviewResponsibleParty = exports.FraudProviderStatus = exports.FraudProvider = exports.Format = exports.FlowApp = exports.FinancialReportingResponsibleParty = exports.FeesSource = void 0;
|
|
7
|
+
exports.RiskEvaluation = exports.RiskCheck = exports.RevenueRecordType = exports.RestrictionStatus = exports.RestrictionDecision = exports.RestrictionAction = exports.ResponsibleParty = exports.ReportingScheme = exports.ReportingFulfillmentIsVirtual = exports.ReportType = exports.ReportStatus = exports.ReportInterval = exports.RejectionReason = exports.RedirectReason = exports.ReboundConfigurationStatus = exports.RateSource = exports.RateLevelKey = exports.QuoteRequestType = exports.PromptTarget = exports.PromptOptions = exports.PromptCheckoutDisplayPosition = exports.PromptAction = exports.ProductStatus = exports.ProcessorEntityStatus = exports.Processor = exports.ProcessingTransactionType = exports.PricingIndicatorStatus = exports.PriceSelector = exports.PregenDataKeyField = exports.PreferredBillingSchedule = exports.PaymentTerm = exports.PaymentSummaryType = exports.PaymentSummaryStatus = exports.Owner = exports.OutputStyle = exports.OrganizationRestrictionScreeningStatus = exports.OrganizationRestrictionRiskLevel = exports.OrganizationRestrictionReviewType = exports.OrganizationRestrictionNoteType = exports.OrganizationRestrictionApprovalStatus = exports.OrganizationPaymentStatus = exports.OrganizationMetricType = exports.OrganizationCapability = exports.OrderValidationStatus = exports.OrderTransactionType = exports.OrderLifecycleEvent = exports.OrderChargeTrigger = exports.OrderCancellationInitiatedBy = exports.OrderAttributeIntent = exports.OrderAddressValidationStatus = void 0;
|
|
8
|
+
exports.UnclassifiedProductStatus = exports.TrueupTransactionType = exports.TransferMethod = exports.TransactionPostingMethod = exports.TrackingIntegrationType = exports.TimeseriesType = exports.TaxTransactionType = exports.TaxParty = exports.TaxCalculationErrorCode = exports.TaskProcessorKey = exports.TariffEligibilityType = exports.TamItemType = exports.SvitlanaType = exports.SuggestionAction = exports.SubscriptionFrequency = exports.Status = exports.StatisticType = exports.StatementTransferTransactionLocation = exports.StatementStatus = exports.SnoozeSourceType = exports.SnoozeNextActionWith = exports.SimpleRoundingStrategy = exports.SignificanceAction = exports.ShrutiDemoType = exports.ShopifyService = exports.ShopifyPromotionStatus = exports.ShopifyPromotionOrderEntitlementComponent = exports.ShopifyPromotionOfferAllocationMethod = exports.ShopifyPromotionBehavior = exports.ShopifyMonitoringTrackingField = exports.ShopifyMonitoringMonitorReviewStatus = exports.ShopifyMarketsTradeSector = exports.ShopifyMarketsQueuedRecordType = exports.ShopifyMarketsHtsNumberAvailable = exports.ShopifyMarketsDangerousGoods = exports.ShopifyGrantStatus = exports.ShopifyCheckInventoryErrorCode = exports.SessionCountryStatus = exports.ServiceName = exports.SerialReservationError = exports.Scope = void 0;
|
|
9
9
|
var AccountSettingLiabilitiesMethod;
|
|
10
10
|
(function (AccountSettingLiabilitiesMethod) {
|
|
11
11
|
AccountSettingLiabilitiesMethod["WITHHOLDING"] = "withholding";
|
|
12
12
|
AccountSettingLiabilitiesMethod["TRANSACTION"] = "transaction";
|
|
13
13
|
})(AccountSettingLiabilitiesMethod = exports.AccountSettingLiabilitiesMethod || (exports.AccountSettingLiabilitiesMethod = {}));
|
|
14
|
+
var AccountStatus;
|
|
15
|
+
(function (AccountStatus) {
|
|
16
|
+
AccountStatus["ACTIVE"] = "active";
|
|
17
|
+
AccountStatus["INACTIVE"] = "inactive";
|
|
18
|
+
})(AccountStatus = exports.AccountStatus || (exports.AccountStatus = {}));
|
|
14
19
|
var AccountType;
|
|
15
20
|
(function (AccountType) {
|
|
16
21
|
AccountType["CHANNEL"] = "channel";
|
|
@@ -188,6 +193,9 @@ var BillingMetricKey;
|
|
|
188
193
|
BillingMetricKey["NEGATIVE_BALANCE_TOTAL_WITH_ORDER_IN_PAST_30_DAYS"] = "negative_balance_total_with_order_in_past_30_days";
|
|
189
194
|
BillingMetricKey["NEGATIVE_BALANCE_TOTAL_WITHOUT_ORDER_IN_PAST_30_DAYS"] = "negative_balance_total_without_order_in_past_30_days";
|
|
190
195
|
BillingMetricKey["NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX"] = "negative_balance_single_account_max";
|
|
196
|
+
BillingMetricKey["INACTIVE_ACCOUNTS_COUNT"] = "inactive_accounts_count";
|
|
197
|
+
BillingMetricKey["INACTIVE_ACCOUNT_PENDING_PAYMENT_PROMISE_COUNT"] = "inactive_account_pending_payment_promise_count";
|
|
198
|
+
BillingMetricKey["INACTIVE_ACCOUNT_PENDING_PAYMENT_PROMISE_TOTAL"] = "inactive_account_pending_payment_promise_total";
|
|
191
199
|
})(BillingMetricKey = exports.BillingMetricKey || (exports.BillingMetricKey = {}));
|
|
192
200
|
var BillingStatementAttachmentKey;
|
|
193
201
|
(function (BillingStatementAttachmentKey) {
|
|
@@ -277,6 +285,7 @@ var CarrierChargeTransactionType;
|
|
|
277
285
|
CarrierChargeTransactionType["ADJUSTMENT"] = "adjustment";
|
|
278
286
|
CarrierChargeTransactionType["REVERSAL"] = "reversal";
|
|
279
287
|
CarrierChargeTransactionType["CHARGE"] = "charge";
|
|
288
|
+
CarrierChargeTransactionType["REVENUE_SHARE"] = "revenue_share";
|
|
280
289
|
})(CarrierChargeTransactionType = exports.CarrierChargeTransactionType || (exports.CarrierChargeTransactionType = {}));
|
|
281
290
|
var CarrierChargeType;
|
|
282
291
|
(function (CarrierChargeType) {
|
|
@@ -1084,7 +1093,6 @@ var EventType;
|
|
|
1084
1093
|
EventType["PROCESSING_TRANSACTION_UPSERTED"] = "processing_transaction_upserted";
|
|
1085
1094
|
EventType["PROCESSING_TRANSACTION_DELETED"] = "processing_transaction_deleted";
|
|
1086
1095
|
EventType["BANK_PAYMENT_UPSERTED"] = "bank_payment_upserted";
|
|
1087
|
-
EventType["BANK_PAYMENT_DELETED"] = "bank_payment_deleted";
|
|
1088
1096
|
EventType["BANK_PAYMENT_UPSERTED_V_2"] = "bank_payment_upserted_v2";
|
|
1089
1097
|
EventType["BANK_PAYMENT_DELETED_V_2"] = "bank_payment_deleted_v2";
|
|
1090
1098
|
EventType["CHANNEL_TRANSACTION_UPSERTED"] = "channel_transaction_upserted";
|
|
@@ -1381,6 +1389,8 @@ var EventType;
|
|
|
1381
1389
|
EventType["SVITLANA_ITEM_DELETED"] = "svitlana_item_deleted";
|
|
1382
1390
|
EventType["COLM_ITEM_UPSERTED"] = "colm_item_upserted";
|
|
1383
1391
|
EventType["COLM_ITEM_DELETED"] = "colm_item_deleted";
|
|
1392
|
+
EventType["MATIAS_ITEM_UPSERTED"] = "matias_item_upserted";
|
|
1393
|
+
EventType["MATIAS_ITEM_DELETED"] = "matias_item_deleted";
|
|
1384
1394
|
EventType["SHRUTI_DEMO_ITEM_UPSERTED"] = "shruti_demo_item_upserted";
|
|
1385
1395
|
EventType["SHRUTI_DEMO_ITEM_DELETED"] = "shruti_demo_item_deleted";
|
|
1386
1396
|
EventType["TAM_ITEM_UPSERTED"] = "tam_item_upserted";
|
|
@@ -1694,6 +1704,11 @@ var MarketingGatewaySchemaCompatibility;
|
|
|
1694
1704
|
MarketingGatewaySchemaCompatibility["FACEBOOK_COUNTRY_OVERRIDE"] = "facebook_country_override";
|
|
1695
1705
|
MarketingGatewaySchemaCompatibility["SUPPLEMENTAL"] = "supplemental";
|
|
1696
1706
|
})(MarketingGatewaySchemaCompatibility = exports.MarketingGatewaySchemaCompatibility || (exports.MarketingGatewaySchemaCompatibility = {}));
|
|
1707
|
+
var MatiasItemType;
|
|
1708
|
+
(function (MatiasItemType) {
|
|
1709
|
+
MatiasItemType["PHYSICAL"] = "physical";
|
|
1710
|
+
MatiasItemType["DIGITAL"] = "digital";
|
|
1711
|
+
})(MatiasItemType = exports.MatiasItemType || (exports.MatiasItemType = {}));
|
|
1697
1712
|
var MixedBagWeight;
|
|
1698
1713
|
(function (MixedBagWeight) {
|
|
1699
1714
|
MixedBagWeight["LEAST_MIXED"] = "0";
|
|
@@ -1825,6 +1840,7 @@ var OrderValidationStatus;
|
|
|
1825
1840
|
(function (OrderValidationStatus) {
|
|
1826
1841
|
OrderValidationStatus["SUCCESS"] = "success";
|
|
1827
1842
|
OrderValidationStatus["FAILED"] = "failed";
|
|
1843
|
+
OrderValidationStatus["LABEL_CREATED"] = "label_created";
|
|
1828
1844
|
OrderValidationStatus["UNRESOLVABLE"] = "unresolvable";
|
|
1829
1845
|
})(OrderValidationStatus = exports.OrderValidationStatus || (exports.OrderValidationStatus = {}));
|
|
1830
1846
|
var OrganizationCapability;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-constants",
|
|
3
|
-
"version": "4.18.
|
|
3
|
+
"version": "4.18.68",
|
|
4
4
|
"description": "Definitions for enumerations found in internal Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"generate": "apibuilder update",
|
|
25
25
|
"postgenerate": "npm run format"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "6717f627ae249a5229cfb9b8321accaf3b7e03d1"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -3,6 +3,11 @@ export enum AccountSettingLiabilitiesMethod {
|
|
|
3
3
|
TRANSACTION = 'transaction',
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
+
export enum AccountStatus {
|
|
7
|
+
ACTIVE = 'active',
|
|
8
|
+
INACTIVE = 'inactive',
|
|
9
|
+
}
|
|
10
|
+
|
|
6
11
|
export enum AccountType {
|
|
7
12
|
CHANNEL = 'channel',
|
|
8
13
|
ORGANIZATION = 'organization',
|
|
@@ -179,6 +184,9 @@ export enum BillingMetricKey {
|
|
|
179
184
|
NEGATIVE_BALANCE_TOTAL_WITH_ORDER_IN_PAST_30_DAYS = 'negative_balance_total_with_order_in_past_30_days',
|
|
180
185
|
NEGATIVE_BALANCE_TOTAL_WITHOUT_ORDER_IN_PAST_30_DAYS = 'negative_balance_total_without_order_in_past_30_days',
|
|
181
186
|
NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX = 'negative_balance_single_account_max',
|
|
187
|
+
INACTIVE_ACCOUNTS_COUNT = 'inactive_accounts_count',
|
|
188
|
+
INACTIVE_ACCOUNT_PENDING_PAYMENT_PROMISE_COUNT = 'inactive_account_pending_payment_promise_count',
|
|
189
|
+
INACTIVE_ACCOUNT_PENDING_PAYMENT_PROMISE_TOTAL = 'inactive_account_pending_payment_promise_total',
|
|
182
190
|
}
|
|
183
191
|
|
|
184
192
|
export enum BillingStatementAttachmentKey {
|
|
@@ -268,6 +276,7 @@ export enum CarrierChargeTransactionType {
|
|
|
268
276
|
ADJUSTMENT = 'adjustment',
|
|
269
277
|
REVERSAL = 'reversal',
|
|
270
278
|
CHARGE = 'charge',
|
|
279
|
+
REVENUE_SHARE = 'revenue_share',
|
|
271
280
|
}
|
|
272
281
|
|
|
273
282
|
export enum CarrierChargeType {
|
|
@@ -1075,7 +1084,6 @@ export enum EventType {
|
|
|
1075
1084
|
PROCESSING_TRANSACTION_UPSERTED = 'processing_transaction_upserted',
|
|
1076
1085
|
PROCESSING_TRANSACTION_DELETED = 'processing_transaction_deleted',
|
|
1077
1086
|
BANK_PAYMENT_UPSERTED = 'bank_payment_upserted',
|
|
1078
|
-
BANK_PAYMENT_DELETED = 'bank_payment_deleted',
|
|
1079
1087
|
BANK_PAYMENT_UPSERTED_V_2 = 'bank_payment_upserted_v2',
|
|
1080
1088
|
BANK_PAYMENT_DELETED_V_2 = 'bank_payment_deleted_v2',
|
|
1081
1089
|
CHANNEL_TRANSACTION_UPSERTED = 'channel_transaction_upserted',
|
|
@@ -1372,6 +1380,8 @@ export enum EventType {
|
|
|
1372
1380
|
SVITLANA_ITEM_DELETED = 'svitlana_item_deleted',
|
|
1373
1381
|
COLM_ITEM_UPSERTED = 'colm_item_upserted',
|
|
1374
1382
|
COLM_ITEM_DELETED = 'colm_item_deleted',
|
|
1383
|
+
MATIAS_ITEM_UPSERTED = 'matias_item_upserted',
|
|
1384
|
+
MATIAS_ITEM_DELETED = 'matias_item_deleted',
|
|
1375
1385
|
SHRUTI_DEMO_ITEM_UPSERTED = 'shruti_demo_item_upserted',
|
|
1376
1386
|
SHRUTI_DEMO_ITEM_DELETED = 'shruti_demo_item_deleted',
|
|
1377
1387
|
TAM_ITEM_UPSERTED = 'tam_item_upserted',
|
|
@@ -1686,6 +1696,11 @@ export enum MarketingGatewaySchemaCompatibility {
|
|
|
1686
1696
|
SUPPLEMENTAL = 'supplemental',
|
|
1687
1697
|
}
|
|
1688
1698
|
|
|
1699
|
+
export enum MatiasItemType {
|
|
1700
|
+
PHYSICAL = 'physical',
|
|
1701
|
+
DIGITAL = 'digital',
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1689
1704
|
export enum MixedBagWeight {
|
|
1690
1705
|
LEAST_MIXED = '0',
|
|
1691
1706
|
PARTIALLY_MIXED = '1',
|
|
@@ -1816,6 +1831,7 @@ export enum OrderTransactionType {
|
|
|
1816
1831
|
export enum OrderValidationStatus {
|
|
1817
1832
|
SUCCESS = 'success',
|
|
1818
1833
|
FAILED = 'failed',
|
|
1834
|
+
LABEL_CREATED = 'label_created',
|
|
1819
1835
|
UNRESOLVABLE = 'unresolvable',
|
|
1820
1836
|
}
|
|
1821
1837
|
|