Can you update a Local Notification without playing any sound/vibration?

I want to make an app which shows some kind of progress in the Statusbar (For when the device is locked and the app is running in the background).

My code for creating the Local Notification and updating it is this:

private createPushNotification(title: string, text: string, isImportant: boolean) {
    if(!this.localNotifications.hasPermission) this.localNotifications.requestPermission()

    if(this.localNotifications.isPresent(1)){
      this.localNotifications.update({
        id: 1,
        title: title,
        text: text,
        vibrate: false,
        sound: null,
        wakeup: false,
        launch: true
      });
    }
    else{
      this.localNotifications.schedule({
        id: 1,
        title: title,
        text: text,
        vibrate: false,
        sound: null,
        wakeup: true,
        launch: true,
        sticky: true
      });
    }
  }

I tried it in any way possible, but not matter what it always plays the system notification sound or vibrates if the phone is on vibration mode. Can I somehow disable this?

I am stucking on the same issue.

Did you find any solution?