@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.
- package/Message.module.scss +0 -4
- package/dist/index.d.mts +8 -2
- package/dist/index.d.ts +8 -2
- package/dist/index.js +199 -224
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +259 -283
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/Message.module.scss
CHANGED
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;
|