Added
-
Smart incremental Postman Cloud sync (#66)
Added direct integration with the Postman API to sync generated Laravel routes with an existing Postman collection without overwriting manually maintained data.
The new--pushoption generates the collection, merges it with the remote collection, and pushes the result back to Postman Cloud. -
Dry-run support for Postman Cloud sync (#66)
Added the--dry-runoption to preview the merge result without updating the remote Postman collection. -
Preservation of Postman customizations during sync (#66)
Saved example responses, pre-request scripts, test scripts, manually added collection items, descriptions, authentication settings, query parameters, and existing collection variables can now be preserved during synchronization.
Improved
-
Route parameter generation and normalization (#66)
Improved path parameter handling by consistently converting Laravel route parameters such as{user}to Postman-style:userparameters and generating variables for all detected route parameters. -
Postman Cloud payload compatibility (#66)
Added collection sanitization before sending data to the Postman API to ensure generated and preserved collection data is compatible with Postman Cloud updates. -
Postman service architecture (#66)
Introduced dedicated cloud sync, collection merge, and sanitization services to keep Postman API communication and merge behavior separated from collection generation.