htag-sdk 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +16 -16
- package/dist/index.d.ts +16 -16
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -651,7 +651,7 @@ interface SubmitEventParams extends RequestOptions {
|
|
|
651
651
|
eventType?: string;
|
|
652
652
|
}
|
|
653
653
|
interface ClassifiedEvent {
|
|
654
|
-
|
|
654
|
+
event_id: string;
|
|
655
655
|
raw_event_id?: string;
|
|
656
656
|
status?: string;
|
|
657
657
|
event_type?: string;
|
|
@@ -698,15 +698,15 @@ interface UpdateIntegrationParams extends RequestOptions {
|
|
|
698
698
|
}
|
|
699
699
|
interface Integration {
|
|
700
700
|
id: string;
|
|
701
|
-
|
|
701
|
+
org_id?: string;
|
|
702
702
|
type: string;
|
|
703
703
|
name: string;
|
|
704
704
|
url?: string;
|
|
705
705
|
status?: string;
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
706
|
+
consecutive_failures?: number;
|
|
707
|
+
last_success_at?: string;
|
|
708
|
+
last_failure_at?: string;
|
|
709
|
+
created_at?: string;
|
|
710
710
|
}
|
|
711
711
|
interface TestResult {
|
|
712
712
|
success: boolean;
|
|
@@ -729,28 +729,28 @@ interface UpdateSubscriptionParams extends RequestOptions {
|
|
|
729
729
|
}
|
|
730
730
|
interface Subscription {
|
|
731
731
|
id: string;
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
732
|
+
org_id?: string;
|
|
733
|
+
integration_id?: string;
|
|
734
|
+
event_type_slug?: string;
|
|
735
735
|
tag?: string;
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
736
|
+
intent_pattern?: string;
|
|
737
|
+
is_active?: boolean;
|
|
738
|
+
created_at?: string;
|
|
739
739
|
}
|
|
740
740
|
interface EventCategory {
|
|
741
741
|
id: string;
|
|
742
742
|
slug: string;
|
|
743
743
|
name: string;
|
|
744
744
|
description?: string;
|
|
745
|
-
|
|
745
|
+
sort_order?: number;
|
|
746
746
|
}
|
|
747
747
|
interface EventType {
|
|
748
748
|
id: string;
|
|
749
749
|
slug: string;
|
|
750
750
|
name: string;
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
751
|
+
category_id?: string;
|
|
752
|
+
classification_hint?: string;
|
|
753
|
+
default_urgency?: string;
|
|
754
754
|
visibility?: string;
|
|
755
755
|
}
|
|
756
756
|
interface TagInfo {
|
package/dist/index.d.ts
CHANGED
|
@@ -651,7 +651,7 @@ interface SubmitEventParams extends RequestOptions {
|
|
|
651
651
|
eventType?: string;
|
|
652
652
|
}
|
|
653
653
|
interface ClassifiedEvent {
|
|
654
|
-
|
|
654
|
+
event_id: string;
|
|
655
655
|
raw_event_id?: string;
|
|
656
656
|
status?: string;
|
|
657
657
|
event_type?: string;
|
|
@@ -698,15 +698,15 @@ interface UpdateIntegrationParams extends RequestOptions {
|
|
|
698
698
|
}
|
|
699
699
|
interface Integration {
|
|
700
700
|
id: string;
|
|
701
|
-
|
|
701
|
+
org_id?: string;
|
|
702
702
|
type: string;
|
|
703
703
|
name: string;
|
|
704
704
|
url?: string;
|
|
705
705
|
status?: string;
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
706
|
+
consecutive_failures?: number;
|
|
707
|
+
last_success_at?: string;
|
|
708
|
+
last_failure_at?: string;
|
|
709
|
+
created_at?: string;
|
|
710
710
|
}
|
|
711
711
|
interface TestResult {
|
|
712
712
|
success: boolean;
|
|
@@ -729,28 +729,28 @@ interface UpdateSubscriptionParams extends RequestOptions {
|
|
|
729
729
|
}
|
|
730
730
|
interface Subscription {
|
|
731
731
|
id: string;
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
732
|
+
org_id?: string;
|
|
733
|
+
integration_id?: string;
|
|
734
|
+
event_type_slug?: string;
|
|
735
735
|
tag?: string;
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
736
|
+
intent_pattern?: string;
|
|
737
|
+
is_active?: boolean;
|
|
738
|
+
created_at?: string;
|
|
739
739
|
}
|
|
740
740
|
interface EventCategory {
|
|
741
741
|
id: string;
|
|
742
742
|
slug: string;
|
|
743
743
|
name: string;
|
|
744
744
|
description?: string;
|
|
745
|
-
|
|
745
|
+
sort_order?: number;
|
|
746
746
|
}
|
|
747
747
|
interface EventType {
|
|
748
748
|
id: string;
|
|
749
749
|
slug: string;
|
|
750
750
|
name: string;
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
751
|
+
category_id?: string;
|
|
752
|
+
classification_hint?: string;
|
|
753
|
+
default_urgency?: string;
|
|
754
754
|
visibility?: string;
|
|
755
755
|
}
|
|
756
756
|
interface TagInfo {
|
package/package.json
CHANGED