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