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