From 5b6283a008ba6c372016318af4a1698f3a96afce Mon Sep 17 00:00:00 2001 From: Ashwin Gopalsamy <47941624+ashwingopalsamy@users.noreply.github.com> Date: Fri, 10 Jan 2025 21:18:46 +0530 Subject: [PATCH 1/2] docs: update outdated hyperlinks in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 798a40b31..b451ea4f9 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,9 @@ accurately mirror your API. Requests can also store sample responses when saved like name and description too so that all the information that a developer needs to use your API is available easily. To know more about Postman Collections, visit the -[collection documentation section on Postman Website](https://www.getpostman.com/collection). +[collection documentation section on Postman Website](https://www.postman.com/collection/). -> The new [Collection Format v2](http://blog.getpostman.com/2015/06/05/travelogue-of-postman-collection-format-v2/) +> The new [Collection Format v2](https://blog.postman.com/travelogue-of-postman-collection-format-v2/) > builds a stronger foundation for improving your productivity while working with APIs. We want your feedback and iron > out issues before this goes into the Postman Apps. From b3b91426188ca7e623d2994a84af505fc00d181a Mon Sep 17 00:00:00 2001 From: Ashwin Gopalsamy <47941624+ashwingopalsamy@users.noreply.github.com> Date: Fri, 10 Jan 2025 21:26:54 +0530 Subject: [PATCH 2/2] feat: superstring - add new dynamic variable --- lib/superstring/dynamic-variables.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/superstring/dynamic-variables.js b/lib/superstring/dynamic-variables.js index d026487c7..e9b8d1694 100644 --- a/lib/superstring/dynamic-variables.js +++ b/lib/superstring/dynamic-variables.js @@ -572,6 +572,14 @@ var faker = require('@faker-js/faker/locale/en'), description: 'A random 36-character UUID', generator: faker.datatype.uuid }, + + $randomUUIDv7: { + description: 'A v7 style guid', + generator: function () { + return uuid.v7(); + } + }, + $randomBoolean: { description: 'A random boolean value (true/false)', generator: faker.datatype.boolean