@chrryai/chrry 1.4.95 → 1.4.97

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.
@@ -226,10 +226,6 @@
226
226
  align-items: center;
227
227
  justify-content: center;
228
228
 
229
- &:hover {
230
- background: rgba(0, 0, 0, 0.9);
231
- }
232
-
233
229
  @media (min-width: breakpoints.$breakpoint-mobile) {
234
230
  opacity: 0;
235
231
  }
package/dist/index.d.mts CHANGED
@@ -1509,7 +1509,10 @@ declare const getApps: ({ API_URL, token, appId, }: {
1509
1509
  API_URL?: string;
1510
1510
  token: string;
1511
1511
  appId?: string;
1512
- }) => Promise<appWithStore[]>;
1512
+ }) => Promise<appWithStore[] | {
1513
+ error: string;
1514
+ status: number;
1515
+ }>;
1513
1516
  declare const getTranslations: ({ API_URL, token, locale, }?: {
1514
1517
  API_URL?: string;
1515
1518
  token?: string;
@@ -1626,7 +1629,10 @@ declare const getActions: ({ API_URL, token, }: {
1626
1629
  updateApp: (id: string, data: appFormData) => Promise<any>;
1627
1630
  deleteApp: (id: string) => Promise<any>;
1628
1631
  reorderApps: (apps: app[], autoInstall?: boolean, storeId?: string) => Promise<any>;
1629
- getApps: () => Promise<appWithStore[]>;
1632
+ getApps: () => Promise<appWithStore[] | {
1633
+ error: string;
1634
+ status: number;
1635
+ }>;
1630
1636
  getSession: (params: {
1631
1637
  deviceId: string | undefined;
1632
1638
  fingerprint?: string;
package/dist/index.d.ts CHANGED
@@ -1509,7 +1509,10 @@ declare const getApps: ({ API_URL, token, appId, }: {
1509
1509
  API_URL?: string;
1510
1510
  token: string;
1511
1511
  appId?: string;
1512
- }) => Promise<appWithStore[]>;
1512
+ }) => Promise<appWithStore[] | {
1513
+ error: string;
1514
+ status: number;
1515
+ }>;
1513
1516
  declare const getTranslations: ({ API_URL, token, locale, }?: {
1514
1517
  API_URL?: string;
1515
1518
  token?: string;
@@ -1626,7 +1629,10 @@ declare const getActions: ({ API_URL, token, }: {
1626
1629
  updateApp: (id: string, data: appFormData) => Promise<any>;
1627
1630
  deleteApp: (id: string) => Promise<any>;
1628
1631
  reorderApps: (apps: app[], autoInstall?: boolean, storeId?: string) => Promise<any>;
1629
- getApps: () => Promise<appWithStore[]>;
1632
+ getApps: () => Promise<appWithStore[] | {
1633
+ error: string;
1634
+ status: number;
1635
+ }>;
1630
1636
  getSession: (params: {
1631
1637
  deviceId: string | undefined;
1632
1638
  fingerprint?: string;