From cb4c54b71991425bef0b4ce50685ef5d6ab59aad Mon Sep 17 00:00:00 2001 From: jdawg093 <49189518+jdawg093@users.noreply.github.com> Date: Thu, 24 Oct 2024 15:07:54 +1100 Subject: [PATCH 1/3] ON-44406 # Added `startingAutoIncrement` to `FormExternalIdGenerationConfiguration` --- CHANGELOG.md | 4 ++++ OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29452cf..a799200 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ### Added +- `startingAutoIncrement` to `FormExternalIdGenerationConfiguration` + +### Added + - `isCloningScheduledTasks` to `FormsAppEnvironmentCloneOptions` ## [8.1.0] - 2024-10-09 diff --git a/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs b/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs index d6a31bb..afa3b0b 100644 --- a/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs +++ b/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs @@ -8,6 +8,10 @@ public List receiptComponents { get; set; } + public long? startingAutoIncrement + { + get; set; + } } } \ No newline at end of file From 360ad384f1c2fb1f8defabd1f16e303a1f74d1a9 Mon Sep 17 00:00:00 2001 From: jdawg093 <49189518+jdawg093@users.noreply.github.com> Date: Fri, 25 Oct 2024 15:33:12 +1100 Subject: [PATCH 2/3] ON-44406 # Updated to reflect types changes --- CHANGELOG.md | 2 +- OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a799200..6b52ea5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ ### Added -- `startingAutoIncrement` to `FormExternalIdGenerationConfiguration` +- `startingSequentialNumber` to `FormExternalIdGenerationConfiguration` ### Added diff --git a/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs b/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs index afa3b0b..ca8a88d 100644 --- a/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs +++ b/OneBlink.SDK/models/FormExternalIdGenerationConfiguration.cs @@ -8,7 +8,7 @@ public List receiptComponents { get; set; } - public long? startingAutoIncrement + public long? startingSequentialNumber { get; set; } From 61838a8518f99a856b24754caefb750b2258bce4 Mon Sep 17 00:00:00 2001 From: jdawg093 <49189518+jdawg093@users.noreply.github.com> Date: Fri, 25 Oct 2024 15:38:19 +1100 Subject: [PATCH 3/3] ON-44406 # Updated changelog --- CHANGELOG.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b52ea5..184fc7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,6 @@ ### Added - `startingSequentialNumber` to `FormExternalIdGenerationConfiguration` - -### Added - - `isCloningScheduledTasks` to `FormsAppEnvironmentCloneOptions` ## [8.1.0] - 2024-10-09