Alexander Shitikov
Alexander Shitikov
Hello, @plivesey, thank you for the library! Why does any work with addModelUpdatesListener and removeModelUpdatesListener should be done on main thread? https://github.com/plivesey/ConsistencyManager-iOS/blob/master/ConsistencyManager/ConsistencyManager.swift#L416 I ask because I have an intention to...
Hello! Calling any method from Class give me errors like: java/lang/NoSuchMethodError: getName ()Ljava/lang/String; not found in java/lang/Class Avian was built for ios-x86_64 with option -sim=true Thanks for help!
Hello! I found an undocumented option from hello-ios project - sim=true. Please add this in your README. Thank you!
**Motivation** Say you have a product with EN translation. You use default search plugin, and two languages are available: EN, AZ. Searching product with EN languageCode gives you a product,...
**Is your feature request related to a problem? Please describe.** Looking at vendure's payment plugins I see that current payment workflow is: 1. Client call `createStripePaymentIntent` through shop-ai or some...
**Is your feature request related to a problem? Please describe.** Current implementation of 'cancel' payment state is like a dummy. I can cancel payment from any state, so its gonna...
**Is your feature request related to a problem? Please describe.** Sometimes I need to perform an additional actions along with standard actions in built-in functions. Thanks to event bus, I...
**Describe the bug** Image you have an entity: ``` @Entity() class SomeEntity { ... @JoinTable() @ManyToMany(type => ProductVariant) parentProductVariants!: ProductVariant[] @ManyToOne(type => ProductVariant, { onDelete: 'CASCADE' }) productVariant!: ProductVariant }...