@goweekdays/layer-core 1.0.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.
Files changed (60) hide show
  1. package/.changeset/README.md +8 -0
  2. package/.changeset/config.json +11 -0
  3. package/.github/workflows/main.yml +19 -0
  4. package/.github/workflows/publish.yml +39 -0
  5. package/CHANGELOG.md +7 -0
  6. package/README.md +75 -0
  7. package/app/app.vue +8 -0
  8. package/app/assets/fonts/ProductSans-Black.ttf +0 -0
  9. package/app/assets/fonts/ProductSans-BlackItalic.ttf +0 -0
  10. package/app/assets/fonts/ProductSans-Bold.ttf +0 -0
  11. package/app/assets/fonts/ProductSans-BoldItalic.ttf +0 -0
  12. package/app/assets/fonts/ProductSans-Italic.ttf +0 -0
  13. package/app/assets/fonts/ProductSans-Light.ttf +0 -0
  14. package/app/assets/fonts/ProductSans-LightItalic.ttf +0 -0
  15. package/app/assets/fonts/ProductSans-Medium.ttf +0 -0
  16. package/app/assets/fonts/ProductSans-MediumItalic.ttf +0 -0
  17. package/app/assets/fonts/ProductSans-Regular.ttf +0 -0
  18. package/app/assets/fonts/ProductSans-Thin.ttf +0 -0
  19. package/app/assets/fonts/ProductSans-ThinItalic.ttf +0 -0
  20. package/app/assets/main.css +10 -0
  21. package/app/assets/settings.scss +89 -0
  22. package/app/components/Input/ListGroupSelection.vue +107 -0
  23. package/app/components/Input/Password.vue +35 -0
  24. package/app/composables/useLocalAuth.ts +131 -0
  25. package/app/composables/useLocalSetup.ts +34 -0
  26. package/app/composables/useMember.ts +100 -0
  27. package/app/composables/useRole.ts +87 -0
  28. package/app/composables/useUtils.ts +308 -0
  29. package/app/layouts/plain.vue +7 -0
  30. package/app/middleware/01.auth.ts +14 -0
  31. package/app/middleware/org.ts +13 -0
  32. package/app/pages/forgot-password.vue +76 -0
  33. package/app/pages/index.vue +3 -0
  34. package/app/pages/login.vue +134 -0
  35. package/app/pages/logout.vue +18 -0
  36. package/app/pages/privacy-policy.vue +23 -0
  37. package/app/pages/refund-policy.vue +23 -0
  38. package/app/pages/sign-up.vue +141 -0
  39. package/app/pages/terms-and-conditions.vue +23 -0
  40. package/app/plugins/member.client.ts +66 -0
  41. package/app/plugins/secure.client.ts +34 -0
  42. package/app/plugins/vuetify.ts +54 -0
  43. package/app/public/background.png +0 -0
  44. package/app/public/favicon.svg +1 -0
  45. package/app/public/logo.png +0 -0
  46. package/app/public/pwa-192x192.png +0 -0
  47. package/app/public/pwa-512x512.png +0 -0
  48. package/app/public/robots.txt +1 -0
  49. package/app/types/local.d.ts +113 -0
  50. package/app/types/member.d.ts +13 -0
  51. package/app/types/role.d.ts +12 -0
  52. package/content/privacy-policy.md +151 -0
  53. package/content/refund-policy.md +65 -0
  54. package/content/terms-and-conditions.md +137 -0
  55. package/content.config.ts +10 -0
  56. package/nuxt.config.ts +45 -0
  57. package/package.json +32 -0
  58. package/public/favicon.ico +0 -0
  59. package/public/robots.txt +2 -0
  60. package/tsconfig.json +18 -0
@@ -0,0 +1,13 @@
1
+ declare type TMember = {
2
+ _id?: string;
3
+ org?: string;
4
+ orgName?: string;
5
+ name: string;
6
+ user: string;
7
+ role: string;
8
+ roleName?: string;
9
+ status?: string;
10
+ createdAt?: string;
11
+ updatedAt?: string;
12
+ deletedAt?: string;
13
+ };
@@ -0,0 +1,12 @@
1
+ declare type TRole = {
2
+ _id?: string;
3
+ name?: string;
4
+ permissions?: Array<string>;
5
+ org?: string;
6
+ status?: string;
7
+ default?: boolean;
8
+ createdBy?: string;
9
+ createdAt?: string;
10
+ updatedAt?: string;
11
+ deletedAt?: string;
12
+ };
@@ -0,0 +1,151 @@
1
+ # Privacy Policy
2
+
3
+ **GoWeekdays**
4
+
5
+ **Effective Date:** January 3, 2026
6
+
7
+ GoWeekdays (“we,” “us,” or “our”) is operated by **GoWeekdays Solutions OPC**, a company registered in the Republic of the Philippines. We are committed to protecting your privacy and ensuring that your personal data is handled in accordance with applicable laws, including the **Data Privacy Act of 2012 (Republic Act No. 10173)**.
8
+
9
+ This Privacy Policy explains how we collect, use, store, disclose, and protect your personal information when you use GoWeekdays websites, applications, platforms, and related services (collectively, the “Services”).
10
+
11
+ <br></br>
12
+
13
+ ## 1. Information We Collect
14
+
15
+ We may collect the following types of information:
16
+
17
+ ### 1.1 Personal Information
18
+
19
+ - Full name
20
+ - Email address
21
+ - Mobile number
22
+ - Account credentials
23
+ - Organization or business details
24
+ - Billing and invoicing information
25
+
26
+ ### 1.2 Usage and Technical Data
27
+
28
+ - IP address
29
+ - Device type, browser, and operating system
30
+ - Login timestamps and activity logs
31
+ - App usage patterns and feature access
32
+
33
+ ### 1.3 User-Generated Content
34
+
35
+ - Data entered into GoWeekdays apps (e.g., records, documents, uploads, configurations)
36
+ - Messages, comments, or submissions made within the platform
37
+
38
+ <br></br>
39
+
40
+ ## 2. How We Use Your Information
41
+
42
+ We use your information to:
43
+
44
+ - Create and manage user accounts and organizations
45
+ - Provide, operate, and improve GoWeekdays services
46
+ - Process subscriptions, invoices, and payments
47
+ - Communicate system notices, updates, and support responses
48
+ - Ensure platform security, integrity, and fraud prevention
49
+ - Comply with legal and regulatory obligations
50
+
51
+ We do **not** sell personal data to third parties.
52
+
53
+ <br></br>
54
+
55
+ ## 3. Legal Basis for Processing
56
+
57
+ We process personal data based on one or more of the following:
58
+
59
+ - Your consent
60
+ - Performance of a contract (use of our services)
61
+ - Compliance with legal obligations
62
+ - Legitimate business interests (platform security, service improvement)
63
+
64
+ <br></br>
65
+
66
+ ## 4. Data Sharing and Disclosure
67
+
68
+ We may share information only under the following circumstances:
69
+
70
+ - With trusted service providers (e.g., hosting, email, payment processors) strictly for service delivery
71
+ - When required by law, regulation, court order, or government authority
72
+ - To protect the rights, property, or safety of GoWeekdays, our users, or the public
73
+
74
+ All third parties are contractually required to protect your data.
75
+
76
+ <br></br>
77
+
78
+ ## 5. Data Retention
79
+
80
+ - Account and organization data are retained while your account is active
81
+ - Billing and financial records are retained as required by law
82
+ - User data may be retained after unsubscribing for record-keeping, audit, or legal purposes
83
+
84
+ You may request deletion of your personal data, subject to legal and contractual limitations.
85
+
86
+ <br></br>
87
+
88
+ ## 6. Data Security
89
+
90
+ We implement reasonable administrative, technical, and organizational safeguards, including:
91
+
92
+ - Access controls and role-based permissions
93
+ - Encrypted communication channels
94
+ - Secure hosting environments
95
+ - Regular system monitoring and audits
96
+
97
+ While we take strong measures to protect your data, no system is 100% secure.
98
+
99
+ <br></br>
100
+
101
+ ## 7. Your Rights as a Data Subject
102
+
103
+ Under Philippine law, you have the right to:
104
+
105
+ - Be informed about data processing
106
+ - Access your personal data
107
+ - Correct inaccurate or outdated data
108
+ - Object to certain processing activities
109
+ - Request data erasure or blocking (when applicable)
110
+ - File a complaint with the National Privacy Commission
111
+
112
+ Requests may be subject to verification.
113
+
114
+ <br></br>
115
+
116
+ ## 8. Cookies and Tracking
117
+
118
+ GoWeekdays may use cookies or similar technologies to:
119
+
120
+ - Maintain sessions
121
+ - Improve user experience
122
+ - Analyze platform usage
123
+
124
+ You may control cookies through your browser settings.
125
+
126
+ <br></br>
127
+
128
+ ## 9. Children’s Privacy
129
+
130
+ GoWeekdays services are not intended for children under 13 unless explicitly authorized by a school, parent, or legal guardian under applicable programs.
131
+
132
+ <br></br>
133
+
134
+ ## 10. Third-Party Links and Integrations
135
+
136
+ Our platform may integrate with or link to third-party services. We are not responsible for the privacy practices of external platforms.
137
+
138
+ <br></br>
139
+
140
+ ## 11. Changes to This Privacy Policy
141
+
142
+ We may update this Privacy Policy from time to time. Material changes will be posted within the platform or on our website. Continued use of the Services constitutes acceptance of the updated policy.
143
+
144
+ <br></br>
145
+
146
+ ## 12. Contact Information
147
+
148
+ For privacy concerns, data requests, or inquiries, contact:
149
+
150
+ **GoWeekdays Solutions OPC**
151
+ Email: support@goweekdays.com
@@ -0,0 +1,65 @@
1
+ # GoWeekdays Refund Policy
2
+
3
+ **Last Updated:** January 3, 2026
4
+
5
+ ## 1. No Refund Policy (Absolute)
6
+
7
+ All payments made to GoWeekdays are **final, non-refundable, and non-reversible**.
8
+
9
+ GoWeekdays **does not provide refunds**, credits, partial refunds, or prorated refunds under **any circumstances**, including but not limited to:
10
+
11
+ - Change of mind
12
+ - Accidental purchase or subscription
13
+ - Failure to use the service
14
+ - Dissatisfaction with features or performance
15
+ - Organization suspension or termination
16
+ - Account cancellation by the user
17
+ - Service downtime or maintenance
18
+ - Incompatibility with user systems, workflows, or expectations
19
+
20
+ Once a payment is completed, it is considered **earned and irrevocable**.
21
+
22
+ ## 2. Subscription and Billing Acknowledgment
23
+
24
+ By subscribing to or paying for any GoWeekdays service, you explicitly acknowledge and agree that:
25
+
26
+ - You are purchasing access to a **digital service**, not a tangible product
27
+ - You have reviewed and understood the platform’s features **prior to payment**
28
+ - You accept that **no refunds will be issued** after billing or invoice settlement
29
+
30
+ Failure to cancel a subscription before the next billing or invoicing cycle **does not entitle you to a refund**.
31
+
32
+ ## 3. Free Access, Trials, and Evaluation Periods
33
+
34
+ If GoWeekdays offers any of the following:
35
+
36
+ - Free access
37
+ - Trial periods
38
+ - Deferred billing or post-usage invoicing
39
+
40
+ These are provided solely to allow evaluation **before payment is required**. Once payment becomes due or is settled, this Refund Policy applies **in full and without exception**.
41
+
42
+ ## 4. Chargebacks and Payment Disputes
43
+
44
+ Initiating a chargeback or payment dispute:
45
+
46
+ - Does **not** override or invalidate this Refund Policy
47
+ - May result in immediate account or organization suspension
48
+ - May lead to permanent termination and restriction from future access to GoWeekdays services
49
+
50
+ GoWeekdays reserves the right to submit this policy and related usage records as evidence to payment processors, financial institutions, or dispute resolution bodies.
51
+
52
+ ## 5. Service Changes and Termination
53
+
54
+ GoWeekdays reserves the right to:
55
+
56
+ - Modify, suspend, or discontinue any part of the service
57
+ - Add, remove, or alter features, plans, or pricing
58
+
59
+ Such actions **do not entitle users to refunds**, whether partial or full, regardless of timing or impact.
60
+
61
+ ## 6. Governing Law
62
+
63
+ This Refund Policy shall be governed by and construed in accordance with the laws of the **Republic of the Philippines**.
64
+
65
+ By using GoWeekdays and completing any payment, you confirm that you have read, understood, and agreed to this Refund Policy in its entirety.
@@ -0,0 +1,137 @@
1
+ # Terms and Conditions
2
+
3
+ **GoWeekdays Platform**
4
+
5
+ _Last updated: January 3, 2026_
6
+
7
+ These Terms and Conditions (“Terms”) govern access to and use of the GoWeekdays platform, applications, and services (“Services”) operated by GoWeekdays Solutions OPC (“GoWeekdays,” “we,” “us,” or “our”).
8
+
9
+ By creating an account, creating an organization, or using any GoWeekdays application, you (“User,” “Partner,” or “Subscriber”) agree to be bound by these Terms.
10
+
11
+ <br><br>
12
+
13
+ ## 1. Definitions
14
+
15
+ - **Platform** – The GoWeekdays ecosystem, including all partner apps, admin tools, and related services.
16
+ - **Partner App** – Any business-facing application provided under GoWeekdays (e.g., Eat, Stay, Services, Projects).
17
+ - **Organization** – A business entity created by a User to access Partner Apps.
18
+ - **Subscription** – A recurring monthly service fee for use of a Partner App.
19
+ - **Invoice** – A billing statement issued by GoWeekdays, typically via PayPal.
20
+
21
+ <br><br>
22
+
23
+ ## 2. Eligibility and Account Responsibility
24
+
25
+ - Users must be legally capable of entering into contracts under Philippine law.
26
+ - Users are responsible for all activity under their account and organization.
27
+ - Accurate and current business information must be maintained at all times.
28
+
29
+ <br><br>
30
+
31
+ ## 3. Subscription Model and Billing
32
+
33
+ ### 3.1 Subscription Start
34
+
35
+ - Subscription fees begin the month following first use of a Partner App, unless otherwise stated in writing.
36
+ - Promotional access (e.g., free month, pilot access) may be granted at GoWeekdays’ discretion.
37
+
38
+ ### 3.2 Billing Method
39
+
40
+ - GoWeekdays does not automatically deduct subscription fees.
41
+ - Invoices are issued manually, typically via PayPal invoice or other designated billing channels.
42
+ - Payment terms are specified on each invoice.
43
+
44
+ ### 3.3 Continuous Billing
45
+
46
+ - Subscription charges continue until the Partner unsubscribes from the Partner App.
47
+ - Non-payment does not automatically suspend access while the subscription remains active.
48
+
49
+ <br><br>
50
+
51
+ ## 4. Non-Payment and Receivables
52
+
53
+ - Unpaid invoices are recorded as accounts receivable.
54
+ - Continued use of the Service constitutes acknowledgment of the outstanding obligation.
55
+ - After six (6) consecutive months of non-payment, GoWeekdays may:
56
+ - Contact the Partner via email, phone, or physical visit; and/or
57
+ - Initiate formal collection or legal remedies allowed under Philippine law.
58
+
59
+ Non-payment does not waive the obligation to pay for services already rendered.
60
+
61
+ <br><br>
62
+
63
+ ## 5. Unsubscription and Service Access
64
+
65
+ - Partners may unsubscribe at any time via the platform or written notice.
66
+ - Upon unsubscription:
67
+ - Access to the Partner App is disabled;
68
+ - No new charges accrue after the effective unsubscription date;
69
+ - Outstanding balances remain payable.
70
+
71
+ <br><br>
72
+
73
+ ## 6. No Suspension for Debt Alone
74
+
75
+ - GoWeekdays will not suspend an active subscription solely due to unpaid invoices.
76
+ - Access restriction occurs only when:
77
+ - The Partner voluntarily unsubscribes; or
78
+ - Required by law, court order, or regulatory authority.
79
+
80
+ <br><br>
81
+
82
+ ## 7. Data Ownership and Use
83
+
84
+ - Partners retain ownership of their business data.
85
+ - GoWeekdays acts as a data processor for platform operation, analytics, and service improvement.
86
+ - Data may be retained after unsubscription for legal, audit, and record-keeping purposes.
87
+
88
+ <br><br>
89
+
90
+ ## 8. Acceptable Use
91
+
92
+ Users must not:
93
+
94
+ - Use the platform for illegal or fraudulent activities;
95
+ - Attempt to reverse-engineer, disrupt, or abuse the system;
96
+ - Misrepresent business identity or authority.
97
+
98
+ GoWeekdays may restrict access for violations unrelated to billing.
99
+
100
+ <br><br>
101
+
102
+ ## 9. Intellectual Property
103
+
104
+ - All platform software, branding, and system design remain the exclusive property of GoWeekdays.
105
+ - No rights are granted except the limited right to use the Services during an active subscription.
106
+
107
+ <br><br>
108
+
109
+ ## 10. Limitation of Liability
110
+
111
+ To the fullest extent permitted by law:
112
+
113
+ - GoWeekdays is not liable for indirect, incidental, or consequential damages.
114
+ - Total liability shall not exceed the total subscription fees billed to the Partner in the preceding twelve (12) months.
115
+
116
+ <br><br>
117
+
118
+ ## 11. Modifications to Terms
119
+
120
+ - GoWeekdays may update these Terms from time to time.
121
+ - Continued use of the Services after changes constitutes acceptance of the revised Terms.
122
+
123
+ <br><br>
124
+
125
+ ## 12. Governing Law and Jurisdiction
126
+
127
+ These Terms are governed by the laws of the Republic of the Philippines.
128
+
129
+ Any dispute shall fall under the exclusive jurisdiction of the proper courts of Quezon City, Philippines.
130
+
131
+ <br><br>
132
+
133
+ ## 13. Contact Information
134
+
135
+ **GoWeekdays Solutions OPC**
136
+ Quezon City, Philippines
137
+ Email: support@goweekdays.com
@@ -0,0 +1,10 @@
1
+ import { defineContentConfig, defineCollection } from "@nuxt/content";
2
+
3
+ export default defineContentConfig({
4
+ collections: {
5
+ content: defineCollection({
6
+ type: "page",
7
+ source: "**/*.md",
8
+ }),
9
+ },
10
+ });
package/nuxt.config.ts ADDED
@@ -0,0 +1,45 @@
1
+ // https://nuxt.com/docs/api/configuration/nuxt-config
2
+ import vuetify, { transformAssetUrls } from "vite-plugin-vuetify";
3
+ export default defineNuxtConfig({
4
+ compatibilityDate: "2025-07-15",
5
+ devtools: { enabled: true },
6
+ modules: ["@nuxt/content"],
7
+ css: ["~/assets/main.css"],
8
+
9
+ runtimeConfig: {
10
+ public: {
11
+ DOMAIN: "localhost",
12
+ APP: "App",
13
+ APP_NAME: "GoWeekdays",
14
+ APP_MAIN: "https://www.goweekdays.com",
15
+ APP_ADMIN: "https://admin.goweekdays.com",
16
+ APP_ORG: "https://org.goweekdays.com",
17
+ APP_FINANCE: "https://finance.goweekdays.com",
18
+ APP_ASSET: "https://asset.goweekdays.com",
19
+ APP_STAY: "https://stay.goweekdays.com",
20
+ APP_EAT: "https://eat.goweekdays.com",
21
+ APP_RIDE: "https://ride.goweekdays.com",
22
+ APP_MARKETPLACE: "https://marketplace.goweekdays.com",
23
+ APP_EXPERIENCE: "https://experience.goweekdays.com",
24
+ ORS_API_KEY: "",
25
+ },
26
+ },
27
+
28
+ build: {
29
+ transpile: ["vuetify"],
30
+ },
31
+
32
+ vite: {
33
+ plugins: [
34
+ vuetify({
35
+ autoImport: true,
36
+ styles: { configFile: "/assets/settings.scss" },
37
+ }),
38
+ ],
39
+ vue: {
40
+ template: {
41
+ transformAssetUrls,
42
+ },
43
+ },
44
+ },
45
+ });
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@goweekdays/layer-core",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "main": "./nuxt.config.ts",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "scripts": {
10
+ "build": "nuxt build",
11
+ "dev": "nuxt dev",
12
+ "generate": "nuxt generate",
13
+ "preview": "nuxt preview",
14
+ "postinstall": "nuxt prepare",
15
+ "release": "yarn run generate && changeset publish"
16
+ },
17
+ "dependencies": {
18
+ "@changesets/cli": "^2.29.8",
19
+ "@mdi/font": "^7.4.47",
20
+ "@nuxt/content": "3.10.0",
21
+ "better-sqlite3": "^12.5.0",
22
+ "nuxt": "^4.2.2",
23
+ "vue": "^3.5.26",
24
+ "vue-router": "^4.6.4"
25
+ },
26
+ "devDependencies": {
27
+ "@iconify/vue": "^5.0.0",
28
+ "sass": "^1.97.1",
29
+ "vite-plugin-vuetify": "^2.1.2",
30
+ "vuetify": "^3.11.6"
31
+ }
32
+ }
Binary file
@@ -0,0 +1,2 @@
1
+ User-Agent: *
2
+ Disallow:
package/tsconfig.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ // https://nuxt.com/docs/guide/concepts/typescript
3
+ "files": [],
4
+ "references": [
5
+ {
6
+ "path": "./.nuxt/tsconfig.app.json"
7
+ },
8
+ {
9
+ "path": "./.nuxt/tsconfig.server.json"
10
+ },
11
+ {
12
+ "path": "./.nuxt/tsconfig.shared.json"
13
+ },
14
+ {
15
+ "path": "./.nuxt/tsconfig.node.json"
16
+ }
17
+ ]
18
+ }