usimple-saleor-sdk
Version:
This package contains all queries and mutations that are used in our sample storefront. It can be used for semi-custom or fully-custom (with ability to extend existing queries) storefront solutions.
16 lines • 848 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StateItems = void 0;
var StateItems;
(function (StateItems) {
StateItems[StateItems["LOADED"] = 0] = "LOADED";
StateItems[StateItems["USER"] = 1] = "USER";
StateItems[StateItems["SIGN_IN_TOKEN"] = 2] = "SIGN_IN_TOKEN";
StateItems[StateItems["SIGN_IN_TOKEN_REFRESHING"] = 3] = "SIGN_IN_TOKEN_REFRESHING";
StateItems[StateItems["SIGN_IN_TOKEN_VERIFYING"] = 4] = "SIGN_IN_TOKEN_VERIFYING";
StateItems[StateItems["CHECKOUT"] = 5] = "CHECKOUT";
StateItems[StateItems["SUMMARY_PRICES"] = 6] = "SUMMARY_PRICES";
StateItems[StateItems["PROMO_CODE"] = 7] = "PROMO_CODE";
StateItems[StateItems["PAYMENT"] = 8] = "PAYMENT";
})(StateItems = exports.StateItems || (exports.StateItems = {}));
//# sourceMappingURL=types.js.map