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