@revenexx/sdk 0.0.4 → 0.0.5
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/sdk.js +7445 -1584
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +7422 -1585
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +7445 -1584
- package/package.json +1 -1
- package/src/client.ts +1 -1
- package/src/enums/address-type.ts +4 -0
- package/src/enums/cart-export-format.ts +4 -0
- package/src/enums/cart-io-apply-mode.ts +5 -0
- package/src/enums/cart-io-direction.ts +4 -0
- package/src/enums/cart-io-entity.ts +4 -0
- package/src/enums/cart-io-format.ts +4 -0
- package/src/enums/cart-item-type.ts +5 -0
- package/src/enums/channel-status.ts +4 -0
- package/src/enums/channel-type.ts +7 -0
- package/src/enums/contact-role.ts +6 -0
- package/src/enums/contact-status.ts +5 -0
- package/src/enums/location-type.ts +6 -0
- package/src/enums/market-status.ts +4 -0
- package/src/enums/order-comment-visibility.ts +4 -0
- package/src/enums/order-item-type.ts +5 -0
- package/src/enums/order-payment-status.ts +9 -0
- package/src/enums/organization-status.ts +4 -0
- package/src/enums/page-status.ts +5 -0
- package/src/enums/payment-fee-type.ts +5 -0
- package/src/enums/payment-method-kind.ts +4 -0
- package/src/enums/price-entry-type.ts +4 -0
- package/src/enums/price-list-status.ts +4 -0
- package/src/enums/shipping-method-matrix-basis.ts +6 -0
- package/src/enums/shipping-method-pricing-type.ts +5 -0
- package/src/index.ts +24 -0
- package/src/models.ts +4303 -941
- package/src/services/apps.ts +154 -154
- package/src/services/avatars.ts +57 -57
- package/src/services/carts.ts +739 -104
- package/src/services/channels.ts +147 -19
- package/src/services/customers.ts +801 -69
- package/src/services/greetings.ts +18 -18
- package/src/services/inventories.ts +620 -65
- package/src/services/locale.ts +16 -16
- package/src/services/markets.ts +373 -75
- package/src/services/messaging.ts +273 -273
- package/src/services/orders.ts +692 -137
- package/src/services/pages.ts +377 -157
- package/src/services/payments.ts +591 -64
- package/src/services/prices.ts +524 -59
- package/src/services/products.ts +1836 -272
- package/src/services/search.ts +24 -24
- package/src/services/shipping.ts +444 -59
- package/src/services/sites.ts +116 -116
- package/src/services/storage.ts +72 -72
- package/src/services/tokens.ts +14 -14
- package/types/enums/address-type.d.ts +4 -0
- package/types/enums/cart-export-format.d.ts +4 -0
- package/types/enums/cart-io-apply-mode.d.ts +5 -0
- package/types/enums/cart-io-direction.d.ts +4 -0
- package/types/enums/cart-io-entity.d.ts +4 -0
- package/types/enums/cart-io-format.d.ts +4 -0
- package/types/enums/cart-item-type.d.ts +5 -0
- package/types/enums/channel-status.d.ts +4 -0
- package/types/enums/channel-type.d.ts +7 -0
- package/types/enums/contact-role.d.ts +6 -0
- package/types/enums/contact-status.d.ts +5 -0
- package/types/enums/location-type.d.ts +6 -0
- package/types/enums/market-status.d.ts +4 -0
- package/types/enums/order-comment-visibility.d.ts +4 -0
- package/types/enums/order-item-type.d.ts +5 -0
- package/types/enums/order-payment-status.d.ts +9 -0
- package/types/enums/organization-status.d.ts +4 -0
- package/types/enums/page-status.d.ts +5 -0
- package/types/enums/payment-fee-type.d.ts +5 -0
- package/types/enums/payment-method-kind.d.ts +4 -0
- package/types/enums/price-entry-type.d.ts +4 -0
- package/types/enums/price-list-status.d.ts +4 -0
- package/types/enums/shipping-method-matrix-basis.d.ts +6 -0
- package/types/enums/shipping-method-pricing-type.d.ts +5 -0
- package/types/index.d.ts +24 -0
- package/types/models.d.ts +4214 -970
- package/types/services/carts.d.ts +271 -12
- package/types/services/channels.d.ts +54 -2
- package/types/services/customers.d.ts +295 -12
- package/types/services/inventories.d.ts +225 -11
- package/types/services/markets.d.ts +123 -6
- package/types/services/orders.d.ts +238 -16
- package/types/services/pages.d.ts +95 -6
- package/types/services/payments.d.ts +221 -7
- package/types/services/prices.d.ts +198 -6
- package/types/services/products.d.ts +646 -32
- package/types/services/shipping.d.ts +165 -6
package/types/index.d.ts
CHANGED
|
@@ -47,13 +47,37 @@ export { Theme } from './enums/theme';
|
|
|
47
47
|
export { Timezone } from './enums/timezone';
|
|
48
48
|
export { Permissions } from './enums/permissions';
|
|
49
49
|
export { Output } from './enums/output';
|
|
50
|
+
export { CartIoDirection } from './enums/cart-io-direction';
|
|
51
|
+
export { CartIoApplyMode } from './enums/cart-io-apply-mode';
|
|
52
|
+
export { CartIoEntity } from './enums/cart-io-entity';
|
|
53
|
+
export { CartIoFormat } from './enums/cart-io-format';
|
|
54
|
+
export { CartItemType } from './enums/cart-item-type';
|
|
55
|
+
export { CartExportFormat } from './enums/cart-export-format';
|
|
56
|
+
export { ChannelStatus } from './enums/channel-status';
|
|
57
|
+
export { ChannelType } from './enums/channel-type';
|
|
58
|
+
export { AddressType } from './enums/address-type';
|
|
59
|
+
export { ContactRole } from './enums/contact-role';
|
|
60
|
+
export { ContactStatus } from './enums/contact-status';
|
|
61
|
+
export { OrganizationStatus } from './enums/organization-status';
|
|
62
|
+
export { LocationType } from './enums/location-type';
|
|
63
|
+
export { MarketStatus } from './enums/market-status';
|
|
50
64
|
export { Priority } from './enums/priority';
|
|
65
|
+
export { OrderCommentVisibility } from './enums/order-comment-visibility';
|
|
66
|
+
export { OrderPaymentStatus } from './enums/order-payment-status';
|
|
67
|
+
export { PageStatus } from './enums/page-status';
|
|
68
|
+
export { PaymentFeeType } from './enums/payment-fee-type';
|
|
69
|
+
export { PaymentMethodKind } from './enums/payment-method-kind';
|
|
70
|
+
export { PriceListStatus } from './enums/price-list-status';
|
|
71
|
+
export { PriceEntryType } from './enums/price-entry-type';
|
|
51
72
|
export { Collection } from './enums/collection';
|
|
73
|
+
export { ShippingMethodMatrixBasis } from './enums/shipping-method-matrix-basis';
|
|
74
|
+
export { ShippingMethodPricingType } from './enums/shipping-method-pricing-type';
|
|
52
75
|
export { BuildRuntime } from './enums/build-runtime';
|
|
53
76
|
export { Framework } from './enums/framework';
|
|
54
77
|
export { Adapter } from './enums/adapter';
|
|
55
78
|
export { Compression } from './enums/compression';
|
|
56
79
|
export { Gravity } from './enums/gravity';
|
|
80
|
+
export { OrderItemType } from './enums/order-item-type';
|
|
57
81
|
export { AttributeBooleanStatus } from './enums/attribute-boolean-status';
|
|
58
82
|
export { AttributeDatetimeStatus } from './enums/attribute-datetime-status';
|
|
59
83
|
export { AttributeEmailStatus } from './enums/attribute-email-status';
|