/** * Match a string like //foo.bar.com/geocortex/workflow/service * The match starts with a double-slash, accepts anything before the next slash and * matches "geocortex/workflow/service" case-insensitive as the full path, after the domain name. * * We use this to detect attempts to communicate with Workflow Server using the * old default path because there is a chance that the server is now located at * "/vertigisstudio/workflow/service" but the serverUrl of the AGOL item * has not yet been updated. * * In such cases, we try the new path if the old one fails. We must wait until after we try, * since the customer might still be using the old url. */ export declare const oldDefaultServerVirtualPath: RegExp; /** * The value to use when replacing "/geocortex/" in the path. Everything else is retained, * but "/geocortex/" becomes "/vertigisstudio/". */ export declare const defaultServerVirtualPath = "$1/vertigisstudio/workflow/service";