diff --git a/Directory.Packages.props b/Directory.Packages.props index 6375b66d9..98bf9ad30 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -2,6 +2,7 @@ 8.2.0 2.14.1 + 3.2.3 8.3.0 8.3.0 8.0.0 @@ -95,6 +96,7 @@ + diff --git a/apps/vue/src/api/webhooks/subscriptions/model/index.ts b/apps/vue/src/api/webhooks/subscriptions/model/index.ts index 15ef8d5fb..1ab14ea69 100644 --- a/apps/vue/src/api/webhooks/subscriptions/model/index.ts +++ b/apps/vue/src/api/webhooks/subscriptions/model/index.ts @@ -5,6 +5,7 @@ export interface WebhookSubscription extends CreationAuditedEntityDto, I secret: string; isActive: boolean; webhooks: string[]; + timeoutDuration?: number; headers: Dictionary; } @@ -14,6 +15,7 @@ export interface WebhookSubscriptionCreateOrUpdate { secret: string; isActive: boolean; webhooks: string[]; + timeoutDuration?: number; headers: Dictionary; } diff --git a/apps/vue/src/views/webhooks/subscriptions/components/SubscriptionModal.vue b/apps/vue/src/views/webhooks/subscriptions/components/SubscriptionModal.vue index 853d47095..c7eadf227 100644 --- a/apps/vue/src/views/webhooks/subscriptions/components/SubscriptionModal.vue +++ b/apps/vue/src/views/webhooks/subscriptions/components/SubscriptionModal.vue @@ -7,31 +7,34 @@ :mask-closable="false" @ok="handleSubmit" > -
- + + {{ L('DisplayName:IsActive') }} - + - - + + - -