@crowi/api-contract 2.0.0-alpha.5 → 2.0.0-alpha.6
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/generated/openapi.d.mts +16 -0
- package/dist/generated/openapi.d.ts +16 -0
- package/dist/generated/openapi.js.map +1 -1
- package/dist/index.d.mts +148 -20
- package/dist/index.d.ts +148 -20
- package/dist/index.js +27 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3854,6 +3854,22 @@ interface paths {
|
|
|
3854
3854
|
};
|
|
3855
3855
|
};
|
|
3856
3856
|
};
|
|
3857
|
+
/** @description Page / revision not found, or the caller cannot access it (existence hidden) */
|
|
3858
|
+
404: {
|
|
3859
|
+
headers: {
|
|
3860
|
+
[name: string]: unknown;
|
|
3861
|
+
};
|
|
3862
|
+
content: {
|
|
3863
|
+
"application/json": {
|
|
3864
|
+
error: {
|
|
3865
|
+
/** @enum {string} */
|
|
3866
|
+
code: "PAGE_NOT_FOUND";
|
|
3867
|
+
/** @enum {string} */
|
|
3868
|
+
message: "Page not found";
|
|
3869
|
+
};
|
|
3870
|
+
};
|
|
3871
|
+
};
|
|
3872
|
+
};
|
|
3857
3873
|
};
|
|
3858
3874
|
};
|
|
3859
3875
|
put?: never;
|
|
@@ -3854,6 +3854,22 @@ interface paths {
|
|
|
3854
3854
|
};
|
|
3855
3855
|
};
|
|
3856
3856
|
};
|
|
3857
|
+
/** @description Page / revision not found, or the caller cannot access it (existence hidden) */
|
|
3858
|
+
404: {
|
|
3859
|
+
headers: {
|
|
3860
|
+
[name: string]: unknown;
|
|
3861
|
+
};
|
|
3862
|
+
content: {
|
|
3863
|
+
"application/json": {
|
|
3864
|
+
error: {
|
|
3865
|
+
/** @enum {string} */
|
|
3866
|
+
code: "PAGE_NOT_FOUND";
|
|
3867
|
+
/** @enum {string} */
|
|
3868
|
+
message: "Page not found";
|
|
3869
|
+
};
|
|
3870
|
+
};
|
|
3871
|
+
};
|
|
3872
|
+
};
|
|
3857
3873
|
};
|
|
3858
3874
|
};
|
|
3859
3875
|
put?: never;
|