importFirebaseUsage top-level constant

String const importFirebaseUsage

Implementation

const String importFirebaseUsage = '''
ulink import firebase — migrate Firebase Dynamic Links to ULink

Usage
  ulink import firebase --input <export> --domain <your.ulink.app> [options]

Required
  --input, -i <path>     Path to your FDL export (JSON DynamicLinkInfo, a batch
                         { "links": [...] }, a newline-delimited list of
                         *.page.link URLs, or a CSV with a header row of your
                         link inventory). Use "-" to read from stdin.
  --domain, -d <domain>  Your ULink domain that the new links live under.

Options
  --out, -o <dir>        Write per-link JSON + a manifest here (default ./ulink-import).
  --dry-run              Preview only; never calls the ULink API (default ON
                         until --live is passed).
  --live                 Create links via the ULink API (needs --api-key/ULINK_API_KEY).
  --api-key <key>        ULink API key for --live (or set ULINK_API_KEY).
  --verify               Run routing+attribution parity checks (default ON).
  --no-verify            Skip parity checks.
  --json                 Print the manifest as JSON to stdout (for piping).
  --help, -h             Show this help.

Examples
  ulink import firebase -i fdl-export.json -d acme.ulink.app
  cat links.txt | ulink import firebase -i - -d acme.ulink.app --json
  ulink import firebase -i fdl-export.json -d acme.ulink.app --live --api-key \$ULINK_API_KEY
''';