gitextract_1lfhn0r3/ ├── .dockerignore ├── .env.dist ├── .github/ │ └── workflows/ │ ├── main.yml │ └── tests.yml ├── .gitignore ├── .prettierrc.js ├── CHANGELOG.md ├── README.md ├── access-functions.php ├── bin/ │ ├── install-test-env.sh │ └── run-docker.sh ├── codeception.dist.yml ├── composer.json ├── docker/ │ ├── app.Dockerfile │ ├── app.entrypoint.sh │ ├── testing.Dockerfile │ └── testing.entrypoint.sh ├── docker-compose.yml ├── docs/ │ ├── action-monitor.md │ └── running-tests.md ├── lib/ │ └── wp-settings-api.php ├── license.txt ├── readme.txt ├── src/ │ ├── ActionMonitor/ │ │ ├── ActionMonitor.php │ │ └── Monitors/ │ │ ├── AcfMonitor.php │ │ ├── MediaMonitor.php │ │ ├── Monitor.php │ │ ├── NavMenuMonitor.php │ │ ├── PostMonitor.php │ │ ├── PostTypeMonitor.php │ │ ├── PreviewMonitor.php │ │ ├── SettingsMonitor.php │ │ ├── TaxonomyMonitor.php │ │ ├── TermMonitor.php │ │ └── UserMonitor.php │ ├── Admin/ │ │ ├── Preview.php │ │ ├── Settings.php │ │ └── includes/ │ │ ├── no-preview-url-set.php │ │ ├── post-type-not-shown-in-graphql.php │ │ ├── preview-template.php │ │ └── style.css │ ├── GraphQL/ │ │ ├── Auth.php │ │ └── ParseAuthToken.php │ ├── Schema/ │ │ ├── Schema.php │ │ ├── SiteMeta.php │ │ └── WPGatsbyWPGraphQLSchemaChanges.php │ ├── ThemeSupport/ │ │ └── ThemeSupport.php │ └── Utils/ │ └── Utils.php ├── tests/ │ ├── _data/ │ │ ├── .gitignore │ │ ├── .gitkeep │ │ └── config.php │ ├── _output/ │ │ ├── .gitignore │ │ └── .gitkeep │ ├── _support/ │ │ ├── AcceptanceTester.php │ │ ├── FunctionalTester.php │ │ ├── Helper/ │ │ │ ├── Acceptance.php │ │ │ ├── Functional.php │ │ │ ├── Unit.php │ │ │ └── Wpunit.php │ │ ├── UnitTester.php │ │ ├── WpunitTester.php │ │ └── _generated/ │ │ └── .gitignore │ ├── acceptance.suite.dist.yml │ ├── functional.suite.dist.yml │ ├── wpunit/ │ │ └── ActionMonitorTest.php │ └── wpunit.suite.dist.yml ├── vendor/ │ ├── autoload.php │ ├── composer/ │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── semver/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ └── firebase/ │ └── php-jwt/ │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src/ │ ├── BeforeValidException.php │ ├── ExpiredException.php │ ├── JWK.php │ ├── JWT.php │ └── SignatureInvalidException.php └── wp-gatsby.php