Ali Seivani
Ali Seivani
Same problem here. Have you find any solution? Do you have any plans to update? Thank you!
For PAID_SUBSCRIPTION you should register like: ``` store.register({ type: ProductType.PAID_SUBSCRIPTION, id: "subscription_product_id", platform: Platform.GOOGLE_PLAY, }); ``` "CdvPurchase" namespace does not work for PAID_SUBSCRIPTION type. No idea why!
@MarcelSchuermann are you defining the ProductType? you should define it like ``` import "cordova-plugin-purchase/www/store"; const { store, ProductType, Platform } = CdvPurchase; ``` Here is a working composable I use...
> Hey. I am also trying to implement this plugin with Nuxt3 and am unable to do this. > > If I just try to use components, I get "Failed...
Currently I see only 2 models are available. In case of fine-tuning a model, there will be a custom fine-tuned version of text-davinci-003 that will be listed in OpenAI platform....
> Hello! First let me thank you for creating this beautiful theme. > I have tried the original Spartacus project with Arabic language and it supports RTL by default. However...
This is what I have tried with this plugin ``` const smallmargin = [0, 0, 0, 10] as any; const bigmargin = [0, 0, 0, 20] as any; const loadPdf...
I managed to fix it by using `"base64ToArrayBuffer"` working example for someone who will need to save the pdf locally: ``` const smallmargin = [0, 0, 0, 10] as any;...
I would still like to know how to use this plugin in server. When I try this on server I get "createPdf" not defined. `const { $pdfMake } = useNuxtApp();`...
I created a [module](https://nuxt.com/docs/guide/directory-structure/modules) so it will save PDF file locally at build time. This simplified the process thanks to "PdfPrinter". I just load fonts locally. here is the example:...