@chrryai/chrry 1.7.24 → 1.7.27
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/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +650 -539
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +282 -171
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -604,6 +604,7 @@ type store = {
|
|
|
604
604
|
type appWithStore = app & {
|
|
605
605
|
store?: storeWithApps;
|
|
606
606
|
placeHolder?: placeHolder;
|
|
607
|
+
instructions?: instruction[];
|
|
607
608
|
};
|
|
608
609
|
type storeWithApps = store & {
|
|
609
610
|
apps: appWithStore[];
|
|
@@ -1628,12 +1629,13 @@ declare const getApps: ({ API_URL, token, chrryUrl, appId, }: {
|
|
|
1628
1629
|
error: string;
|
|
1629
1630
|
status: number;
|
|
1630
1631
|
}>;
|
|
1631
|
-
declare const getApp: ({ API_URL, token, appId, chrryUrl, pathname, }: {
|
|
1632
|
+
declare const getApp: ({ API_URL, token, appId, chrryUrl, skipCache, pathname, }: {
|
|
1632
1633
|
API_URL?: string;
|
|
1633
1634
|
token: string;
|
|
1634
1635
|
appId?: string;
|
|
1635
1636
|
chrryUrl?: string;
|
|
1636
1637
|
pathname?: string;
|
|
1638
|
+
skipCache?: boolean;
|
|
1637
1639
|
}) => Promise<appWithStore>;
|
|
1638
1640
|
declare const getTranslations: ({ API_URL, token, locale, }?: {
|
|
1639
1641
|
API_URL?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -604,6 +604,7 @@ type store = {
|
|
|
604
604
|
type appWithStore = app & {
|
|
605
605
|
store?: storeWithApps;
|
|
606
606
|
placeHolder?: placeHolder;
|
|
607
|
+
instructions?: instruction[];
|
|
607
608
|
};
|
|
608
609
|
type storeWithApps = store & {
|
|
609
610
|
apps: appWithStore[];
|
|
@@ -1628,12 +1629,13 @@ declare const getApps: ({ API_URL, token, chrryUrl, appId, }: {
|
|
|
1628
1629
|
error: string;
|
|
1629
1630
|
status: number;
|
|
1630
1631
|
}>;
|
|
1631
|
-
declare const getApp: ({ API_URL, token, appId, chrryUrl, pathname, }: {
|
|
1632
|
+
declare const getApp: ({ API_URL, token, appId, chrryUrl, skipCache, pathname, }: {
|
|
1632
1633
|
API_URL?: string;
|
|
1633
1634
|
token: string;
|
|
1634
1635
|
appId?: string;
|
|
1635
1636
|
chrryUrl?: string;
|
|
1636
1637
|
pathname?: string;
|
|
1638
|
+
skipCache?: boolean;
|
|
1637
1639
|
}) => Promise<appWithStore>;
|
|
1638
1640
|
declare const getTranslations: ({ API_URL, token, locale, }?: {
|
|
1639
1641
|
API_URL?: string;
|