@vrplatform/api 1.3.1-stage.3757 → 1.3.1-stage.3762

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.
@@ -12235,6 +12235,8 @@ export interface operations {
12235
12235
  type?: "owner" | "vendor";
12236
12236
  companyType?: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
12237
12237
  isIndividual?: boolean;
12238
+ /** @description Filter contacts by ownership period ID. */
12239
+ ownershipPeriodId?: string;
12238
12240
  /** @description comma separated contact short refs */
12239
12241
  shortRefs?: string;
12240
12242
  /** @description Comma-separated contact IDs. */
@@ -12763,6 +12765,8 @@ export interface operations {
12763
12765
  type?: "owner" | "vendor";
12764
12766
  companyType?: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
12765
12767
  isIndividual?: boolean;
12768
+ /** @description Filter contacts by ownership period ID. */
12769
+ ownershipPeriodId?: string;
12766
12770
  /** @description comma separated contact short refs */
12767
12771
  shortRefs?: string;
12768
12772
  /** @description Comma-separated contact IDs. */
@@ -47774,9 +47778,12 @@ export interface operations {
47774
47778
  getSyncs: {
47775
47779
  parameters: {
47776
47780
  query?: {
47777
- status?: "queued" | "started" | "completed" | "failed" | "canceled";
47781
+ search?: string;
47782
+ category?: string;
47778
47783
  connectionId?: string;
47779
- automationId?: string;
47784
+ type?: "extract" | "automate" | "webhook";
47785
+ status?: "queued" | "started" | "completed" | "failed" | "canceled";
47786
+ sort?: "created_asc" | "created_desc" | "updated_asc" | "updated_desc";
47780
47787
  limit?: number;
47781
47788
  page?: number;
47782
47789
  };
@@ -47797,14 +47804,37 @@ export interface operations {
47797
47804
  /** @enum {string} */
47798
47805
  type: "extract" | "automate" | "webhook";
47799
47806
  message?: string;
47800
- connectionId?: string;
47801
47807
  triggerRef?: string;
47802
- userId?: string;
47803
- automationId?: string;
47808
+ automationId?: string | null;
47804
47809
  /** Format: uuid */
47805
47810
  id: string;
47806
47811
  /** @enum {string} */
47807
47812
  status: "queued" | "started" | "completed" | "failed" | "canceled";
47813
+ /**
47814
+ * Format: date-time
47815
+ * @description Timestamp string with date, time, milliseconds, and timezone.
47816
+ * @example 2024-01-15T12:30:00.000+00:00
47817
+ */
47818
+ createdAt: string;
47819
+ /**
47820
+ * Format: date-time
47821
+ * @description Timestamp string with date, time, milliseconds, and timezone.
47822
+ * @example 2024-01-15T12:30:00.000+00:00
47823
+ */
47824
+ updatedAt: string;
47825
+ triggeredByUser: {
47826
+ id?: string | null;
47827
+ firstName?: string | null;
47828
+ lastName?: string | null;
47829
+ email?: string | null;
47830
+ };
47831
+ connection: {
47832
+ id?: string | null;
47833
+ icon?: string | null;
47834
+ name?: string | null;
47835
+ uniqueRef?: string | null;
47836
+ appName?: string | null;
47837
+ };
47808
47838
  }[];
47809
47839
  pagination: {
47810
47840
  /** @default 100 */