gitextract_asa44tit/ ├── .babelrc ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── contributing.md │ ├── issue_template.md │ └── pull_request_template.md ├── .gitignore ├── .istanbul.yml ├── .npmignore ├── .travis.yml ├── .vscode/ │ └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs/ │ ├── .vuepress/ │ │ └── config.js │ ├── 2.0-major-release.md │ ├── 3.0-major-release.md │ ├── api-overview.md │ ├── auth-plugin.md │ ├── common-patterns.md │ ├── composition-api.md │ ├── data-components.md │ ├── example-applications.md │ ├── feathers-vuex-forms.md │ ├── feathervuex-in-vuejs3-setup.md │ ├── getting-started.md │ ├── index.md │ ├── mixins.md │ ├── model-classes.md │ ├── nuxt.md │ ├── service-plugin.md │ └── vue-plugin.md ├── mocha.opts ├── notes.old.md ├── package.json ├── src/ │ ├── FeathersVuexCount.ts │ ├── FeathersVuexFind.ts │ ├── FeathersVuexFormWrapper.ts │ ├── FeathersVuexGet.ts │ ├── FeathersVuexInputWrapper.ts │ ├── FeathersVuexPagination.ts │ ├── auth-module/ │ │ ├── auth-module.actions.ts │ │ ├── auth-module.getters.ts │ │ ├── auth-module.mutations.ts │ │ ├── auth-module.state.ts │ │ ├── make-auth-plugin.ts │ │ └── types.ts │ ├── index.ts │ ├── make-find-mixin.ts │ ├── make-get-mixin.ts │ ├── service-module/ │ │ ├── global-clients.ts │ │ ├── global-models.ts │ │ ├── make-base-model.ts │ │ ├── make-service-module.ts │ │ ├── make-service-plugin.ts │ │ ├── service-module.actions.ts │ │ ├── service-module.events.ts │ │ ├── service-module.getters.ts │ │ ├── service-module.mutations.ts │ │ ├── service-module.state.ts │ │ └── types.ts │ ├── useFind.ts │ ├── useGet.ts │ ├── utils.ts │ └── vue-plugin/ │ └── vue-plugin.ts ├── stories/ │ ├── .npmignore │ ├── FeathersVuexFormWrapper.stories.js │ └── FeathersVuexInputWrapper.stories.js ├── test/ │ ├── auth-module/ │ │ ├── actions.test.js │ │ └── auth-module.test.ts │ ├── auth.test.js │ ├── fixtures/ │ │ ├── fake-data.js │ │ ├── feathers-client.js │ │ ├── server.js │ │ ├── store.js │ │ └── todos.js │ ├── index.test.ts │ ├── make-find-mixin.test.ts │ ├── service-module/ │ │ ├── make-service-plugin.test.ts │ │ ├── misconfigured-client.test.ts │ │ ├── model-base.test.ts │ │ ├── model-instance-defaults.test.ts │ │ ├── model-methods.test.ts │ │ ├── model-relationships.test.ts │ │ ├── model-serialize.test.ts │ │ ├── model-temp-ids.test.ts │ │ ├── model-tests.test.ts │ │ ├── service-module.actions.test.ts │ │ ├── service-module.getters.test.ts │ │ ├── service-module.mutations.test.ts │ │ ├── service-module.reinitialization.test.ts │ │ ├── service-module.test.ts │ │ └── types.ts │ ├── test-utils.ts │ ├── use/ │ │ ├── InstrumentComponent.js │ │ ├── find.test.ts │ │ └── get.test.ts │ ├── utils.test.ts │ └── vue-plugin.test.ts ├── tsconfig.json └── tsconfig.test.json