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 CHANGED
@@ -651,7 +651,7 @@ interface SubmitEventParams extends RequestOptions {
651
651
  eventType?: string;
652
652
  }
653
653
  interface ClassifiedEvent {
654
- id: string;
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
- orgId?: string;
701
+ org_id?: string;
702
702
  type: string;
703
703
  name: string;
704
704
  url?: string;
705
705
  status?: string;
706
- consecutiveFailures?: number;
707
- lastSuccessAt?: string;
708
- lastFailureAt?: string;
709
- createdAt?: string;
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
- orgId?: string;
733
- integrationId?: string;
734
- eventTypeSlug?: string;
732
+ org_id?: string;
733
+ integration_id?: string;
734
+ event_type_slug?: string;
735
735
  tag?: string;
736
- intentPattern?: string;
737
- isActive?: boolean;
738
- createdAt?: string;
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
- sortOrder?: number;
745
+ sort_order?: number;
746
746
  }
747
747
  interface EventType {
748
748
  id: string;
749
749
  slug: string;
750
750
  name: string;
751
- categoryId?: string;
752
- classificationHint?: string;
753
- defaultUrgency?: string;
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
- id: string;
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
- orgId?: string;
701
+ org_id?: string;
702
702
  type: string;
703
703
  name: string;
704
704
  url?: string;
705
705
  status?: string;
706
- consecutiveFailures?: number;
707
- lastSuccessAt?: string;
708
- lastFailureAt?: string;
709
- createdAt?: string;
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
- orgId?: string;
733
- integrationId?: string;
734
- eventTypeSlug?: string;
732
+ org_id?: string;
733
+ integration_id?: string;
734
+ event_type_slug?: string;
735
735
  tag?: string;
736
- intentPattern?: string;
737
- isActive?: boolean;
738
- createdAt?: string;
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
- sortOrder?: number;
745
+ sort_order?: number;
746
746
  }
747
747
  interface EventType {
748
748
  id: string;
749
749
  slug: string;
750
750
  name: string;
751
- categoryId?: string;
752
- classificationHint?: string;
753
- defaultUrgency?: string;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "htag-sdk",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Official TypeScript SDK for HtAG Location Intelligence APIs — address search, property data, and market analytics for Australia",
5
5
  "license": "MIT",
6
6
  "author": {