@alpaca-headless/alpaca-headless 1.0.4008 → 1.0.4009
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.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -23,5 +23,6 @@ export declare function editorComponentAttributes(component: ComponentData): {
|
|
|
23
23
|
};
|
|
24
24
|
export { resolveRoute, getPage } from "./route-data/resolve-route";
|
|
25
25
|
export { executeGraphQLQuery, getGraphQLSchema } from "./services/graphQL";
|
|
26
|
+
export { apiPostObject, apiGet } from "./services/api";
|
|
26
27
|
export { loadDictionary } from "./route-data/dictionary";
|
|
27
28
|
export type { ApiConfig } from "./services/api";
|
package/dist/index.js
CHANGED
|
@@ -15,4 +15,5 @@ export function editorComponentAttributes(component) {
|
|
|
15
15
|
}
|
|
16
16
|
export { resolveRoute, getPage } from "./route-data/resolve-route";
|
|
17
17
|
export { executeGraphQLQuery, getGraphQLSchema } from "./services/graphQL";
|
|
18
|
+
export { apiPostObject, apiGet } from "./services/api";
|
|
18
19
|
export { loadDictionary } from "./route-data/dictionary";
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -86,6 +86,7 @@ export function editorComponentAttributes(component: ComponentData) {
|
|
|
86
86
|
|
|
87
87
|
export { resolveRoute, getPage } from "./route-data/resolve-route";
|
|
88
88
|
export { executeGraphQLQuery, getGraphQLSchema } from "./services/graphQL";
|
|
89
|
+
export { apiPostObject, apiGet } from "./services/api";
|
|
89
90
|
export { loadDictionary } from "./route-data/dictionary";
|
|
90
91
|
|
|
91
92
|
export type { ApiConfig } from "./services/api";
|