@oxyhq/services 0.0.68 → 0.0.70

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.
@@ -1 +1 @@
1
- {"version":3,"file":"AccountSwitcherModal.d.ts","sourceRoot":"","sources":["../../../src/components/auth/AccountSwitcherModal.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAyB/B,eAAO,MAAM,oBAAoB;aAEpB,MAAM,IAAI;2CAoFrB,CAAC"}
1
+ {"version":3,"file":"AccountSwitcherModal.d.ts","sourceRoot":"","sources":["../../../src/components/auth/AccountSwitcherModal.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAyB/B,eAAO,MAAM,oBAAoB;aAEpB,MAAM,IAAI;2CAsGrB,CAAC"}
@@ -54,7 +54,7 @@ export const AccountSwitcherModal = forwardRef(({ onClose }, ref) => {
54
54
  "Hi, ",
55
55
  session?.user?.name,
56
56
  "!"),
57
- React.createElement("button", { className: "rounded-full border border-black px-7 py-2 text-blue-500 hover:bg-[#d3dfee]" }, "Manage your Oxy Account"),
57
+ React.createElement("a", { href: "https://accounts.oxy.so", target: "_blank", rel: "noopener noreferrer", className: "rounded-full border border-black px-7 py-2 text-blue-500 hover:bg-[#d3dfee]" }, "Manage your Oxy Account"),
58
58
  React.createElement("div", { className: "flex space-x-1" },
59
59
  React.createElement("button", { className: "md:w-44 flex w-36 items-center space-x-2 rounded-l-full bg-white py-3 pl-3 hover:bg-zinc-200" },
60
60
  React.createElement(HiOutlinePlus, { className: "h-7 w-7 rounded-full bg-indigo-50 p-1 text-blue-500" }),
@@ -63,9 +63,8 @@ export const AccountSwitcherModal = forwardRef(({ onClose }, ref) => {
63
63
  React.createElement(PiSignOutBold, { className: "h-6 w-6" }),
64
64
  React.createElement("span", null, "Sign out"))),
65
65
  React.createElement("div", { className: "flex h-10 items-center space-x-2 text-xs" },
66
- React.createElement("span", null, "Privacy policy"),
66
+ React.createElement("a", { href: "https://oxy.so/company/transparency/policies/privacy", target: "_blank", rel: "noopener noreferrer" }, "Privacy policy"),
67
67
  React.createElement("span", { className: "-mt-[3px]" }, " . "),
68
- " ",
69
- React.createElement("span", null, "Terms of service"))));
68
+ React.createElement("a", { href: "https://oxy.so/company/transparency/policies/terms-of-service", target: "_blank", rel: "noopener noreferrer" }, "Terms of service"))));
70
69
  });
71
70
  AccountSwitcherModal.displayName = "AccountSwitcherModal";
@@ -0,0 +1,2 @@
1
+ export type UserRole = "ADMIN" | "USER" | "MODERATOR";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,WAAW,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxyhq/services",
3
- "version": "0.0.68",
3
+ "version": "0.0.70",
4
4
  "description": "",
5
5
  "homepage": "https://oxy.so/",
6
6
  "main": "./dist/index.js",
@@ -17,7 +17,7 @@
17
17
  "lint": "eslint src/**/*.{ts,tsx}"
18
18
  },
19
19
  "keywords": [],
20
- "author": "Albert Isern Alvarez",
20
+ "author": "Nate Isern Alvarez",
21
21
  "company": "Oxy",
22
22
  "license": "MIT",
23
23
  "repository": {