This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.springframework.boot.liquibase.autoconfigure; | |
| import liquibase.Scope; | |
| import liquibase.exception.LiquibaseException; | |
| import liquibase.integration.spring.SpringLiquibase; | |
| import org.springframework.core.env.Environment; | |
| import org.springframework.util.Assert; | |
| import java.sql.SQLOutput; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| postman_sync.py | |
| ──────────────── | |
| Sync a Postman collection with an OpenAPI specification **without** overwriting | |
| team‑specific tweaks (auth, test scripts, headers, etc.). | |
| What this minimal script does | |
| ───────────────────────────── | |
| 1. Loads an OpenAPI (JSON or YAML) file. | |
| 2. Sanitises it (replaces enum examples with <enum> to avoid noisy diffs). |