@madebylars.com/mbl-order 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +289 -0
- package/dist/module.d.mts +24 -0
- package/dist/module.json +9 -0
- package/dist/module.mjs +46 -0
- package/dist/runtime/composables/useDriverOrders.d.ts +1 -0
- package/dist/runtime/composables/useDriverOrders.js +10 -0
- package/dist/runtime/composables/useFleet.d.ts +1 -0
- package/dist/runtime/composables/useFleet.js +16 -0
- package/dist/runtime/composables/useInvoice.d.ts +1 -0
- package/dist/runtime/composables/useInvoice.js +10 -0
- package/dist/runtime/composables/useInvoiceActions.d.ts +5 -0
- package/dist/runtime/composables/useInvoiceActions.js +39 -0
- package/dist/runtime/composables/useOrder.d.ts +1 -0
- package/dist/runtime/composables/useOrder.js +18 -0
- package/dist/runtime/composables/useOrderActions.d.ts +7 -0
- package/dist/runtime/composables/useOrderActions.js +55 -0
- package/dist/runtime/composables/useOrderConfig.d.ts +2 -0
- package/dist/runtime/composables/useOrderConfig.js +4 -0
- package/dist/runtime/composables/useOrderKpis.d.ts +2 -0
- package/dist/runtime/composables/useOrderKpis.js +30 -0
- package/dist/runtime/composables/useOrderLocale.d.ts +7 -0
- package/dist/runtime/composables/useOrderLocale.js +32 -0
- package/dist/runtime/composables/useOrders.d.ts +2 -0
- package/dist/runtime/composables/useOrders.js +11 -0
- package/dist/runtime/composables/useQuote.d.ts +1 -0
- package/dist/runtime/composables/useQuote.js +10 -0
- package/dist/runtime/composables/useQuoteActions.d.ts +6 -0
- package/dist/runtime/composables/useQuoteActions.js +33 -0
- package/dist/runtime/composables/useStorageActions.d.ts +5 -0
- package/dist/runtime/composables/useStorageActions.js +31 -0
- package/dist/runtime/composables/useStoragePeriod.d.ts +1 -0
- package/dist/runtime/composables/useStoragePeriod.js +10 -0
- package/dist/runtime/locales/en.d.ts +84 -0
- package/dist/runtime/locales/en.js +80 -0
- package/dist/runtime/locales/sv.d.ts +3 -0
- package/dist/runtime/locales/sv.js +80 -0
- package/dist/runtime/server/migrations/001_transport_schema.sql +241 -0
- package/dist/runtime/server/tsconfig.json +3 -0
- package/dist/types.d.mts +9 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@madebylars.com/mbl-order",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Nuxt 4 transport-vertical order management module for the MadeByLars ecosystem",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/madebylars/mbl-order"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/types.d.mts",
|
|
17
|
+
"import": "./dist/module.mjs"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"main": "./dist/module.mjs",
|
|
21
|
+
"typesVersions": {
|
|
22
|
+
"*": {
|
|
23
|
+
".": [
|
|
24
|
+
"./dist/types.d.mts"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist"
|
|
30
|
+
],
|
|
31
|
+
"workspaces": [
|
|
32
|
+
"playground"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"prepack": "nuxt-module-build build --stub && nuxt-module-build build",
|
|
36
|
+
"dev": "npm run dev:prepare && nuxt dev playground",
|
|
37
|
+
"dev:build": "nuxt build playground",
|
|
38
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
|
|
39
|
+
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
40
|
+
"lint": "eslint .",
|
|
41
|
+
"test": "vitest run",
|
|
42
|
+
"test:watch": "vitest watch",
|
|
43
|
+
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@nuxt/kit": "^4.4.7"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"nuxt": ">=4.0.0",
|
|
50
|
+
"@nuxtjs/supabase": ">=1.0.0",
|
|
51
|
+
"@nuxtjs/i18n": ">=9.0.0",
|
|
52
|
+
"@madebylars.com/mbl-auth": ">=0.1.0",
|
|
53
|
+
"@madebylars.com/mbl-whereabout": ">=0.1.0",
|
|
54
|
+
"@madebylars.com/mbl-payment": ">=0.1.0",
|
|
55
|
+
"@madebylars.com/mbl-graph": ">=0.1.0",
|
|
56
|
+
"@madebylars.com/mbl-mapman": ">=0.1.0"
|
|
57
|
+
},
|
|
58
|
+
"peerDependenciesMeta": {
|
|
59
|
+
"@nuxtjs/i18n": { "optional": true },
|
|
60
|
+
"@madebylars.com/mbl-auth": { "optional": true },
|
|
61
|
+
"@madebylars.com/mbl-whereabout": { "optional": true },
|
|
62
|
+
"@madebylars.com/mbl-payment": { "optional": true },
|
|
63
|
+
"@madebylars.com/mbl-graph": { "optional": true },
|
|
64
|
+
"@madebylars.com/mbl-mapman": { "optional": true }
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@nuxt/devtools": "^3.2.4",
|
|
68
|
+
"@nuxt/eslint-config": "^1.15.2",
|
|
69
|
+
"@nuxt/module-builder": "^1.0.2",
|
|
70
|
+
"@nuxt/schema": "^4.4.7",
|
|
71
|
+
"@nuxt/test-utils": "^4.0.3",
|
|
72
|
+
"@nuxtjs/i18n": "^9.0.0",
|
|
73
|
+
"@nuxtjs/supabase": ">=1.0.0",
|
|
74
|
+
"@types/node": "latest",
|
|
75
|
+
"changelogen": "^0.6.2",
|
|
76
|
+
"eslint": "^10.4.1",
|
|
77
|
+
"nuxt": "^4.4.7",
|
|
78
|
+
"typescript": "~6.0.3",
|
|
79
|
+
"vitest": "^4.1.8",
|
|
80
|
+
"vue-tsc": "^3.3.3"
|
|
81
|
+
}
|
|
82
|
+
}
|