@wix/auto_sdk_ecom_payment-settings 1.0.92 → 1.0.94
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/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-Cs8iIaZI.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-C7hIks9Q.d.ts} +18 -6
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/{interfaces-ecommerce-v1-payment-settings-provider.public-Cs8iIaZI.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-C7hIks9Q.d.mts} +18 -6
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-Cs8iIaZI.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-C7hIks9Q.d.ts} +18 -6
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/{interfaces-ecommerce-v1-payment-settings-provider.public-Cs8iIaZI.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-C7hIks9Q.d.mts} +18 -6
- package/package.json +2 -2
|
@@ -2767,7 +2767,7 @@ interface Location {
|
|
|
2767
2767
|
*/
|
|
2768
2768
|
name?: string;
|
|
2769
2769
|
}
|
|
2770
|
-
interface OrderSettings extends OrderSettingsAllowedActionsOneOf {
|
|
2770
|
+
interface OrderSettings extends OrderSettingsAllowedActionsOneOf, OrderSettingsEditableByOneOf {
|
|
2771
2771
|
/** Regular order with full set of allowed actions (ActionType for reference). */
|
|
2772
2772
|
standardActions?: boolean;
|
|
2773
2773
|
/**
|
|
@@ -2800,6 +2800,9 @@ interface OrderSettingsAllowedActionsOneOf {
|
|
|
2800
2800
|
/** Custom list of allowed actions for order. */
|
|
2801
2801
|
customActions?: CustomAllowedActions;
|
|
2802
2802
|
}
|
|
2803
|
+
/** @oneof */
|
|
2804
|
+
interface OrderSettingsEditableByOneOf {
|
|
2805
|
+
}
|
|
2803
2806
|
interface CustomAllowedActions {
|
|
2804
2807
|
/** @maxSize 17 */
|
|
2805
2808
|
orderActions?: OrderActionType[];
|
|
@@ -2836,6 +2839,15 @@ declare enum OrderActionType {
|
|
|
2836
2839
|
/** Allow to update inventory */
|
|
2837
2840
|
MODIFY_INVENTORY = "MODIFY_INVENTORY"
|
|
2838
2841
|
}
|
|
2842
|
+
interface OwnerApps {
|
|
2843
|
+
/**
|
|
2844
|
+
* Identifies the owning apps for this order.
|
|
2845
|
+
* @format GUID
|
|
2846
|
+
* @minSize 1
|
|
2847
|
+
* @maxSize 10
|
|
2848
|
+
*/
|
|
2849
|
+
appIds?: string[];
|
|
2850
|
+
}
|
|
2839
2851
|
interface FormInfo {
|
|
2840
2852
|
/**
|
|
2841
2853
|
* The identifier of the form schema.
|
|
@@ -2907,9 +2919,9 @@ interface PlatformFee {
|
|
|
2907
2919
|
chargeType?: ChargeType;
|
|
2908
2920
|
/**
|
|
2909
2921
|
* Percentage rate charged as platform fee.
|
|
2910
|
-
* The fee rate expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
|
|
2922
|
+
* The fee rate percentage expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
|
|
2911
2923
|
* @format DECIMAL_VALUE
|
|
2912
|
-
* @decimalValue options {
|
|
2924
|
+
* @decimalValue options { gt:0, lte:1, maxScale:4 }
|
|
2913
2925
|
*/
|
|
2914
2926
|
percentageRate?: string;
|
|
2915
2927
|
}
|
|
@@ -3711,9 +3723,9 @@ interface V1PlatformFee {
|
|
|
3711
3723
|
/**
|
|
3712
3724
|
* Percentage rate charged as platform fee.
|
|
3713
3725
|
*
|
|
3714
|
-
* The fee rate expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
|
|
3726
|
+
* The fee rate percentage expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
|
|
3715
3727
|
* @format DECIMAL_VALUE
|
|
3716
|
-
* @decimalValue options {
|
|
3728
|
+
* @decimalValue options { gt:0, lte:1, maxScale:4 }
|
|
3717
3729
|
*/
|
|
3718
3730
|
percentageRate?: string;
|
|
3719
3731
|
}
|
|
@@ -4895,4 +4907,4 @@ declare const provideHandlers: ServicePluginDefinition<{
|
|
|
4895
4907
|
getPaymentSettingsForCheckout(payload: GetPaymentSettingsForCheckoutEnvelope): GetPaymentSettingsForCheckoutResponse | Promise<GetPaymentSettingsForCheckoutResponse>;
|
|
4896
4908
|
}>;
|
|
4897
4909
|
|
|
4898
|
-
export { type AddressLocation as $, AdjustmentType as A, type BillingAdjustment as B, type CatalogReference as C, type DescriptionLine as D, type ExtendedFields as E, type FocalPoint as F, type GetPaymentSettingsRequest as G, type TranslatableString as H, type ItemType as I, JurisdictionType as J, type V1ItemModifier as K, type LineItemTaxInfo as L, type V1BuyerInfo as M, type V1BuyerInfoIdOneOf as N, type Order as O, type ProductName as P, PaymentStatus as Q, FulfillmentStatus as R, type SubscriptionInfo as S, type TaxableAddress as T, type CurrencyConversionDetails as U, type V1ModifierGroup as V, WeightUnit as W, type PriceSummary as X, type ApiAddressWithContact as Y, type Address as Z, type StreetAddress as _, type OrderLineItem as a, type MembershipPaymentRefund as a$, type FullAddressContactDetails as a0, type VatId as a1, VatType as a2, type V1ShippingInformation as a3, type DeliveryLogistics as a4, type DeliveryLogisticsAddressOneOf as a5, type PickupDetails as a6, type PickupAddress as a7, PickupMethod as a8, type DeliveryTimeSlot as a9, type DraftOrderChangesApplied as aA, type OrderChange as aB, type OrderChangeValueOneOf as aC, type LineItemChanges as aD, type LineItemQuantityChange as aE, LineItemQuantityChangeType as aF, type LineItemPriceChange as aG, type LineItemProductNameChange as aH, type LineItemDescriptionLineChange as aI, type LineItemModifiersChange as aJ, type ManagedLineItem as aK, type ManagedDiscount as aL, type TranslatedValue as aM, type LineItemAmount as aN, type ManagedAdditionalFee as aO, type TotalPriceChange as aP, type ShippingInformationChange as aQ, type ShippingInformation as aR, type SavedPaymentMethod as aS, type AuthorizedPaymentCreated as aT, type AuthorizedPaymentCaptured as aU, type AuthorizedPaymentVoided as aV, type RefundInitiated as aW, type RefundedPayment as aX, type RefundedPaymentKindOneOf as aY, type RegularPaymentRefund as aZ, type GiftCardPaymentRefund as a_, type ShippingPrice as aa, type ShippingRegion as ab, OrderStatus as ac, type TaxSummary as ad, type OrderTaxInfo as ae, type OrderTaxBreakdown as af, type AppliedDiscount as ag, type AppliedDiscountDiscountSourceOneOf as ah, DiscountType as ai, type Coupon as aj, type MerchantDiscount as ak, type MerchantDiscountMerchantDiscountReasonOneOf as al, DiscountReason as am, type DiscountRule as an, type DiscountRuleName as ao, type LineItemDiscount as ap, type ItemCombination as aq, type ItemCombinationLineItem as ar, type Activity as as, type ActivityContentOneOf as at, type CustomActivity as au, type MerchantComment as av, type OrderRefunded as aw, type OrderCreatedFromExchange as ax, type NewExchangeOrderCreated as ay, type LineItemExchangeData as az, type Price as b, type
|
|
4910
|
+
export { type AddressLocation as $, AdjustmentType as A, type BillingAdjustment as B, type CatalogReference as C, type DescriptionLine as D, type ExtendedFields as E, type FocalPoint as F, type GetPaymentSettingsRequest as G, type TranslatableString as H, type ItemType as I, JurisdictionType as J, type V1ItemModifier as K, type LineItemTaxInfo as L, type V1BuyerInfo as M, type V1BuyerInfoIdOneOf as N, type Order as O, type ProductName as P, PaymentStatus as Q, FulfillmentStatus as R, type SubscriptionInfo as S, type TaxableAddress as T, type CurrencyConversionDetails as U, type V1ModifierGroup as V, WeightUnit as W, type PriceSummary as X, type ApiAddressWithContact as Y, type Address as Z, type StreetAddress as _, type OrderLineItem as a, type MembershipPaymentRefund as a$, type FullAddressContactDetails as a0, type VatId as a1, VatType as a2, type V1ShippingInformation as a3, type DeliveryLogistics as a4, type DeliveryLogisticsAddressOneOf as a5, type PickupDetails as a6, type PickupAddress as a7, PickupMethod as a8, type DeliveryTimeSlot as a9, type DraftOrderChangesApplied as aA, type OrderChange as aB, type OrderChangeValueOneOf as aC, type LineItemChanges as aD, type LineItemQuantityChange as aE, LineItemQuantityChangeType as aF, type LineItemPriceChange as aG, type LineItemProductNameChange as aH, type LineItemDescriptionLineChange as aI, type LineItemModifiersChange as aJ, type ManagedLineItem as aK, type ManagedDiscount as aL, type TranslatedValue as aM, type LineItemAmount as aN, type ManagedAdditionalFee as aO, type TotalPriceChange as aP, type ShippingInformationChange as aQ, type ShippingInformation as aR, type SavedPaymentMethod as aS, type AuthorizedPaymentCreated as aT, type AuthorizedPaymentCaptured as aU, type AuthorizedPaymentVoided as aV, type RefundInitiated as aW, type RefundedPayment as aX, type RefundedPaymentKindOneOf as aY, type RegularPaymentRefund as aZ, type GiftCardPaymentRefund as a_, type ShippingPrice as aa, type ShippingRegion as ab, OrderStatus as ac, type TaxSummary as ad, type OrderTaxInfo as ae, type OrderTaxBreakdown as af, type AppliedDiscount as ag, type AppliedDiscountDiscountSourceOneOf as ah, DiscountType as ai, type Coupon as aj, type MerchantDiscount as ak, type MerchantDiscountMerchantDiscountReasonOneOf as al, DiscountReason as am, type DiscountRule as an, type DiscountRuleName as ao, type LineItemDiscount as ap, type ItemCombination as aq, type ItemCombinationLineItem as ar, type Activity as as, type ActivityContentOneOf as at, type CustomActivity as au, type MerchantComment as av, type OrderRefunded as aw, type OrderCreatedFromExchange as ax, type NewExchangeOrderCreated as ay, type LineItemExchangeData as az, type Price as b, type V1FreeTrialPeriod as b$, type PaymentRefunded as b0, type PaymentRefundFailed as b1, type RefundedAsStoreCredit as b2, type PaymentPending as b3, type PaymentPendingPaymentDetailsOneOf as b4, type RegularPayment as b5, type RegularPaymentPaymentMethodDetailsOneOf as b6, type CreditCardDetails as b7, type PaymentCanceled as b8, type PaymentCanceledPaymentDetailsOneOf as b9, type OrderSettings as bA, type OrderSettingsAllowedActionsOneOf as bB, type OrderSettingsEditableByOneOf as bC, type CustomAllowedActions as bD, OrderActionType as bE, type OwnerApps as bF, type FormInfo as bG, type FormIdentifier as bH, type PlatformFeeSummary as bI, type PlatformFee as bJ, ChargeType as bK, type GetPaymentSettingsResponse as bL, type PaymentSettings as bM, type GetPaymentSettingsForCheckoutRequest as bN, type Checkout as bO, type LineItem as bP, type MultiCurrencyPrice as bQ, type V1ItemTaxFullDetails as bR, type TaxRateBreakdown as bS, type TaxBreakdown as bT, V1JurisdictionType as bU, type ItemAvailabilityInfo as bV, ItemAvailabilityStatus as bW, type Scope as bX, type Group as bY, type SubscriptionOptionInfo as bZ, type V1SubscriptionSettings as b_, type PaymentDeclined as ba, type PaymentDeclinedPaymentDetailsOneOf as bb, type ReceiptCreated as bc, type ReceiptCreatedReceiptInfoOneOf as bd, type WixReceipt as be, type ExternalReceipt as bf, type ReceiptSent as bg, type ReceiptSentReceiptInfoOneOf as bh, type ChargebackCreated as bi, type ChargebackReversed as bj, ActivityType as bk, OrderActivityTypeEnumActivityType as bl, AttributionSource as bm, type V1CreatedBy as bn, type V1CreatedByStringOneOf as bo, type ChannelInfo as bp, ChannelType as bq, type CustomField as br, type BalanceSummary as bs, type Balance as bt, type AdditionalFee as bu, AdditionalFeeSource as bv, type FulfillmentStatusesAggregate as bw, type Tags as bx, type TagList as by, type Location as bz, type DescriptionLineValueOneOf as c, type AggregatedTaxBreakdown as c$, type Title as c0, type Description as c1, type SecuredMedia as c2, FileType as c3, type ServiceProperties as c4, type CatalogOverrideFields as c5, type PaymentOption as c6, type Policy as c7, type ModifierGroup as c8, type ItemModifier as c9, type Details as cA, type DetailsKindOneOf as cB, type ApplicationError as cC, type ValidationError as cD, RuleType as cE, type FieldViolation as cF, type SystemError as cG, type CarrierErrors as cH, type CarrierError as cI, type GiftCard as cJ, type V1AppliedDiscount as cK, type V1AppliedDiscountDiscountSourceOneOf as cL, AppliedDiscountDiscountType as cM, type V1Coupon as cN, type V1MerchantDiscount as cO, type V1DiscountRule as cP, type V1DiscountRuleName as cQ, type V1LineItemDiscount as cR, type V1ItemCombination as cS, type V1ItemCombinationLineItem as cT, type V1TaxSummary as cU, type TaxCalculationDetails as cV, type TaxCalculationDetailsCalculationDetailsOneOf as cW, RateType as cX, ManualCalculationReason as cY, type AutoTaxFallbackCalculationDetails as cZ, FallbackReason as c_, type V1PlatformFee as ca, PlatformFeeChargeType as cb, type AddressWithContact as cc, type ShippingInfo as cd, type SelectedCarrierServiceOption as ce, type V1DeliveryLogistics as cf, type V1PickupDetails as cg, PickupDetailsPickupMethod as ch, type V1DeliveryTimeSlot as ci, type SelectedCarrierServiceOptionPrices as cj, type SelectedCarrierServiceOptionOtherCharge as ck, V1ChargeType as cl, type DeliveryAllocation as cm, type Carrier as cn, type Region as co, type ApplicableLineItems as cp, type V1ShippingRegion as cq, type CarrierServiceOption as cr, type ShippingOption as cs, type V1ShippingPrice as ct, type OtherCharge as cu, type BuyerInfo as cv, type BuyerInfoIdOneOf as cw, type V1PriceSummary as cx, type CalculationErrors as cy, type CalculationErrorsShippingCalculationErrorOneOf as cz, type DescriptionLineDescriptionLineValueOneOf as d, type CreatedBy as d0, type CreatedByIdOneOf as d1, type MembershipOptions as d2, type Membership as d3, type MembershipName as d4, type MembershipPaymentCredits as d5, BalanceType as d6, type InvalidMembership as d7, type SelectedMemberships as d8, type SelectedMembership as d9, type GetPaymentSettingsForCheckoutEnvelope as dA, type V1AdditionalFee as da, AdditionalFeeAdditionalFeeSource as db, type ConversionInfo as dc, type Violation as dd, Severity as de, type Target as df, type TargetTargetTypeOneOf as dg, NameInOther as dh, NameInLineItem as di, SuggestedFix as dj, type Other as dk, type TargetLineItem as dl, type CustomSettings as dm, type CustomContentReference as dn, type ExternalReference as dp, type SubscriptionCharges as dq, type Charge as dr, type GetPaymentSettingsForCheckoutResponse as ds, V1PaymentOption as dt, type PaymentSettingsSPIConfig as du, type Context as dv, IdentityType as dw, type IdentificationData as dx, type IdentificationDataIdOneOf as dy, type GetPaymentSettingsEnvelope as dz, type DescriptionLineName as e, type PlainTextValue as f, type Color as g, DescriptionLineType as h, type PhysicalProperties as i, type ItemTypeItemTypeDataOneOf as j, ItemTypePreset as k, PaymentOptionType as l, type ItemTaxFullDetails as m, type LineItemTaxBreakdown as n, type DigitalFile as o, provideHandlers as p, type SubscriptionTitle as q, type SubscriptionDescription as r, type SubscriptionSettings as s, SubscriptionFrequency as t, type FreeTrialPeriod as u, type BillingAdjustmentPriceSummary as v, type PriceDescription as w, type LocationAndQuantity as x, type TaxableAddressTaxableAddressDataOneOf as y, TaxableAddressType as z };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_ecom_payment-settings",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.94",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": "wix.interfaces.ecommerce.v1.payment_settings_provider"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "f83f004d87024b4a6e3c8ed49e0cd748eb29b14a5589872ade3fa8de"
|
|
54
54
|
}
|