Path: blob/main/src/publish/confluence/constants.ts
6446 views
export const DELETE_DISABLED = false;12export const EXIT_ON_ERROR = false;34export const DESCENDANT_PAGE_SIZE = 200; // Undocumented limit, any size over 200 will be reduced to 200 on the back-end56export const MAX_PAGES_TO_LOAD = 100; //We will cap you at 200k pages or in case the Confluence APIs have a bug and always return results78export const V2EDITOR_METADATA = {9metadata: {10properties: {11editor: {12value: "v2",13},14},15},16};1718export const DELETE_SLEEP_MILLIS = 1000; //TODO replace with polling1920export const CAN_SET_PERMISSIONS_DISABLED = "CONFLUENCE_LOCAL_STORAGE_CAN_SET_PERMISSIONS_DISABLED";2122export const CAN_SET_PERMISSIONS_ENABLED_CACHED = "CONFLUENCE_LOCAL_STORAGE_CAN_SET_PERMISSIONS_ENABLED_CACHED"232425