@vrplatform/api 1.3.1-stage.3761 → 1.3.1-stage.3763
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.
|
@@ -13590,6 +13590,9 @@ export interface operations {
|
|
|
13590
13590
|
status: "active" | "inactive" | "unconfirmed";
|
|
13591
13591
|
lastInvitedAt: string | null;
|
|
13592
13592
|
lastSeen: string | null;
|
|
13593
|
+
notifications: {
|
|
13594
|
+
ownerStatementPublished: boolean;
|
|
13595
|
+
};
|
|
13593
13596
|
}[];
|
|
13594
13597
|
};
|
|
13595
13598
|
};
|
|
@@ -13713,6 +13716,9 @@ export interface operations {
|
|
|
13713
13716
|
status: "active" | "inactive" | "unconfirmed";
|
|
13714
13717
|
lastInvitedAt: string | null;
|
|
13715
13718
|
lastSeen: string | null;
|
|
13719
|
+
notifications: {
|
|
13720
|
+
ownerStatementPublished: boolean;
|
|
13721
|
+
};
|
|
13716
13722
|
};
|
|
13717
13723
|
};
|
|
13718
13724
|
};
|
|
@@ -13942,6 +13948,9 @@ export interface operations {
|
|
|
13942
13948
|
status: "active" | "inactive" | "unconfirmed";
|
|
13943
13949
|
lastInvitedAt: string | null;
|
|
13944
13950
|
lastSeen: string | null;
|
|
13951
|
+
notifications: {
|
|
13952
|
+
ownerStatementPublished: boolean;
|
|
13953
|
+
};
|
|
13945
13954
|
};
|
|
13946
13955
|
};
|
|
13947
13956
|
};
|
|
@@ -47778,9 +47787,12 @@ export interface operations {
|
|
|
47778
47787
|
getSyncs: {
|
|
47779
47788
|
parameters: {
|
|
47780
47789
|
query?: {
|
|
47781
|
-
|
|
47790
|
+
search?: string;
|
|
47791
|
+
category?: string;
|
|
47782
47792
|
connectionId?: string;
|
|
47783
|
-
|
|
47793
|
+
type?: "extract" | "automate" | "webhook";
|
|
47794
|
+
status?: "queued" | "started" | "completed" | "failed" | "canceled";
|
|
47795
|
+
sort?: "created_asc" | "created_desc" | "updated_asc" | "updated_desc";
|
|
47784
47796
|
limit?: number;
|
|
47785
47797
|
page?: number;
|
|
47786
47798
|
};
|
|
@@ -47801,14 +47813,37 @@ export interface operations {
|
|
|
47801
47813
|
/** @enum {string} */
|
|
47802
47814
|
type: "extract" | "automate" | "webhook";
|
|
47803
47815
|
message?: string;
|
|
47804
|
-
connectionId?: string;
|
|
47805
47816
|
triggerRef?: string;
|
|
47806
|
-
|
|
47807
|
-
automationId?: string;
|
|
47817
|
+
automationId?: string | null;
|
|
47808
47818
|
/** Format: uuid */
|
|
47809
47819
|
id: string;
|
|
47810
47820
|
/** @enum {string} */
|
|
47811
47821
|
status: "queued" | "started" | "completed" | "failed" | "canceled";
|
|
47822
|
+
/**
|
|
47823
|
+
* Format: date-time
|
|
47824
|
+
* @description Timestamp string with date, time, milliseconds, and timezone.
|
|
47825
|
+
* @example 2024-01-15T12:30:00.000+00:00
|
|
47826
|
+
*/
|
|
47827
|
+
createdAt: string;
|
|
47828
|
+
/**
|
|
47829
|
+
* Format: date-time
|
|
47830
|
+
* @description Timestamp string with date, time, milliseconds, and timezone.
|
|
47831
|
+
* @example 2024-01-15T12:30:00.000+00:00
|
|
47832
|
+
*/
|
|
47833
|
+
updatedAt: string;
|
|
47834
|
+
triggeredByUser: {
|
|
47835
|
+
id?: string | null;
|
|
47836
|
+
firstName?: string | null;
|
|
47837
|
+
lastName?: string | null;
|
|
47838
|
+
email?: string | null;
|
|
47839
|
+
};
|
|
47840
|
+
connection: {
|
|
47841
|
+
id?: string | null;
|
|
47842
|
+
icon?: string | null;
|
|
47843
|
+
name?: string | null;
|
|
47844
|
+
uniqueRef?: string | null;
|
|
47845
|
+
appName?: string | null;
|
|
47846
|
+
};
|
|
47812
47847
|
}[];
|
|
47813
47848
|
pagination: {
|
|
47814
47849
|
/** @default 100 */
|