@vrplatform/api 1.3.1-stage.3761 → 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.
@@ -47778,9 +47778,12 @@ export interface operations {
47778
47778
  getSyncs: {
47779
47779
  parameters: {
47780
47780
  query?: {
47781
- status?: "queued" | "started" | "completed" | "failed" | "canceled";
47781
+ search?: string;
47782
+ category?: string;
47782
47783
  connectionId?: string;
47783
- automationId?: string;
47784
+ type?: "extract" | "automate" | "webhook";
47785
+ status?: "queued" | "started" | "completed" | "failed" | "canceled";
47786
+ sort?: "created_asc" | "created_desc" | "updated_asc" | "updated_desc";
47784
47787
  limit?: number;
47785
47788
  page?: number;
47786
47789
  };
@@ -47801,14 +47804,37 @@ export interface operations {
47801
47804
  /** @enum {string} */
47802
47805
  type: "extract" | "automate" | "webhook";
47803
47806
  message?: string;
47804
- connectionId?: string;
47805
47807
  triggerRef?: string;
47806
- userId?: string;
47807
- automationId?: string;
47808
+ automationId?: string | null;
47808
47809
  /** Format: uuid */
47809
47810
  id: string;
47810
47811
  /** @enum {string} */
47811
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
+ };
47812
47838
  }[];
47813
47839
  pagination: {
47814
47840
  /** @default 100 */