o11y_schema 252.14.0 → 252.15.0
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/package.json +1 -1
- package/sf_commerce/cart.js +2 -0
- package/sf_commerce/cart_item.js +2 -0
- package/sf_commerce/checkout.js +2 -0
- package/sf_commerce/index.js +5 -0
- package/sf_commerce/payment.js +2 -0
- package/sf_commerce/sf_commerce.js +5 -0
- package/sf_commerce/shipping.js +2 -0
- package/version/version.js +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const cart={namespace:"sf.commerce",name:"Cart",pbjsSchema:{"nested":{"sf":{"nested":{"commerce":{"nested":{"Cart":{"fields":{"coupon":{"id":104,"type":"string"},"orderId":{"id":109,"type":"string"},"sourceChannel":{"id":4,"type":"string"},"subscriptionCount":{"id":107,"type":"uint32"},"uniqueProductCount":{"id":106,"type":"uint32"},"webstoreId":{"id":2,"type":"string"},"totalProductCount":{"id":105,"type":"uint32"},"name":{"id":101,"type":"string"},"eventName":{"id":1,"type":"string"},"correlationId":{"id":5,
|
|
2
|
+
"type":"string"},"currency":{"id":103,"type":"string"},"id":{"id":102,"type":"string"},"checkoutId":{"id":108,"type":"string"},"visitorId":{"id":3,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const cart_item={namespace:"sf.commerce",name:"CartItem",pbjsSchema:{"nested":{"sf":{"nested":{"commerce":{"nested":{"CartItem":{"fields":{"totalProductAmount":{"id":106,"type":"string"},"quantity":{"id":104,"type":"string"},"productId":{"id":107,"type":"string"},"lineItemId":{"id":102,"type":"string"},"sourceChannel":{"id":4,"type":"string"},"adjustedTotalProductAmount":{"id":110,"type":"string"},"cartId":{"id":101,"type":"string"},"saleType":{"id":112,"type":"string"},"webstoreId":{"id":2,
|
|
2
|
+
"type":"string"},"price":{"id":103,"type":"string"},"imageUrl":{"id":111,"type":"string"},"name":{"id":105,"type":"string"},"eventName":{"id":1,"type":"string"},"correlationId":{"id":5,"type":"string"},"sku":{"id":109,"type":"string"},"productType":{"id":108,"type":"string"},"visitorId":{"id":3,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const checkout={namespace:"sf.commerce",name:"Checkout",pbjsSchema:{"nested":{"sf":{"nested":{"commerce":{"nested":{"Checkout":{"fields":{"uiLayoutType":{"id":103,"type":"string"},"sourceChannel":{"id":4,"type":"string"},"cartId":{"id":101,"type":"string"},"eventName":{"id":1,"type":"string"},"correlationId":{"id":5,"type":"string"},"isExpressCheckout":{"id":105,"type":"bool"},"checkoutId":{"id":102,"type":"string"},"initialOrn":{"id":104,"type":"string"},"webstoreId":{"id":2,"type":"string"},
|
|
2
|
+
"visitorId":{"id":3,"type":"string"},"isManaged":{"id":106,"type":"bool"}}}}}}}}}};
|
package/sf_commerce/index.js
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
export { bulk_suggestion as bulkSuggestionSchema } from './bulk_suggestion.js';
|
|
2
|
+
export { cart as cartSchema } from './cart.js';
|
|
3
|
+
export { cart_item as cartItemSchema } from './cart_item.js';
|
|
4
|
+
export { checkout as checkoutSchema } from './checkout.js';
|
|
2
5
|
export { client_side_payment as clientSidePaymentSchema } from './client_side_payment.js';
|
|
3
6
|
export { composite_add_product as compositeAddProductSchema } from './composite_add_product.js';
|
|
4
7
|
export { gnr_seo_title_tile as gnrSeoTitleTileSchema } from './gnr_seo_title_tile.js';
|
|
8
|
+
export { payment as paymentSchema } from './payment.js';
|
|
5
9
|
export { search_result as searchResultSchema } from './search_result.js';
|
|
6
10
|
export { search_suggestion as searchSuggestionSchema } from './search_suggestion.js';
|
|
11
|
+
export { shipping as shippingSchema } from './shipping.js';
|
|
7
12
|
export { storefront_branding_modal as storefrontBrandingModalSchema } from './storefront_branding_modal.js';
|
|
8
13
|
export { suggestion as suggestionSchema } from './suggestion.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const payment={namespace:"sf.commerce",name:"Payment",pbjsSchema:{"nested":{"sf":{"nested":{"commerce":{"nested":{"Payment":{"fields":{"isManualCapture":{"id":106,"type":"bool"},"sourceChannel":{"id":4,"type":"string"},"cartId":{"id":101,"type":"string"},"paymentMethods":{"rule":"repeated","id":107,"type":"string"},"eventName":{"id":1,"type":"string"},"paymentMethod":{"id":104,"type":"string"},"correlationId":{"id":5,"type":"string"},"isExpressPayment":{"id":103,"type":"bool"},"checkoutId":{"id":102,
|
|
2
|
+
"type":"string"},"initialOrn":{"id":105,"type":"string"},"webstoreId":{"id":2,"type":"string"},"visitorId":{"id":3,"type":"string"}}}}}}}}}};
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
export { bulk_suggestion as bulkSuggestionSchema } from './bulk_suggestion.js';
|
|
2
|
+
export { cart as cartSchema } from './cart.js';
|
|
3
|
+
export { cart_item as cartItemSchema } from './cart_item.js';
|
|
4
|
+
export { checkout as checkoutSchema } from './checkout.js';
|
|
2
5
|
export { client_side_payment as clientSidePaymentSchema } from './client_side_payment.js';
|
|
3
6
|
export { composite_add_product as compositeAddProductSchema } from './composite_add_product.js';
|
|
4
7
|
export { gnr_seo_title_tile as gnrSeoTitleTileSchema } from './gnr_seo_title_tile.js';
|
|
8
|
+
export { payment as paymentSchema } from './payment.js';
|
|
5
9
|
export { search_result as searchResultSchema } from './search_result.js';
|
|
6
10
|
export { search_suggestion as searchSuggestionSchema } from './search_suggestion.js';
|
|
11
|
+
export { shipping as shippingSchema } from './shipping.js';
|
|
7
12
|
export { storefront_branding_modal as storefrontBrandingModalSchema } from './storefront_branding_modal.js';
|
|
8
13
|
export { suggestion as suggestionSchema } from './suggestion.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const shipping={namespace:"sf.commerce",name:"Shipping",pbjsSchema:{"nested":{"sf":{"nested":{"commerce":{"nested":{"Shipping":{"fields":{"country":{"id":104,"type":"string"},"city":{"id":103,"type":"string"},"sourceChannel":{"id":4,"type":"string"},"cartId":{"id":101,"type":"string"},"eventName":{"id":1,"type":"string"},"correlationId":{"id":5,"type":"string"},"checkoutId":{"id":102,"type":"string"},"webstoreId":{"id":2,"type":"string"},"shippingOptions":{"rule":"repeated","id":105,"type":"string"},
|
|
2
|
+
"visitorId":{"id":3,"type":"string"}}}}}}}}}};
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='252.
|
|
1
|
+
export const version='252.15.0'
|