@medusajs/types 2.7.2-preview-20250511120139 → 2.7.2-preview-20250511150136
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.
@@ -1,5 +1,9 @@
|
|
1
1
|
import { FindParams } from "../../common";
|
2
2
|
export interface AdminGetWorkflowExecutionsParams extends FindParams {
|
3
|
+
/**
|
4
|
+
* Filter using a search query.
|
5
|
+
*/
|
6
|
+
q?: string;
|
3
7
|
/**
|
4
8
|
* Filter by the ID of the transaction to retrieve workflow executions for a specific transaction.
|
5
9
|
*/
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../../../../src/http/workflow-execution/admin/queries.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAEzC,MAAM,WAAW,gCAAiC,SAAQ,UAAU;IAClE;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAClC;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;CAChC"}
|
1
|
+
{"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../../../../src/http/workflow-execution/admin/queries.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAEzC,MAAM,WAAW,gCAAiC,SAAQ,UAAU;IAClE;;OAEG;IACH,CAAC,CAAC,EAAE,MAAM,CAAA;IACV;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAClC;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;CAChC"}
|
@@ -1,16 +1,18 @@
|
|
1
1
|
import { BaseFilterable, OperatorMap } from "../dal";
|
2
|
+
import { TransactionState } from "../http";
|
2
3
|
export interface WorkflowExecutionDTO {
|
3
4
|
id: string;
|
4
5
|
workflow_id: string;
|
5
6
|
transaction_id: string;
|
6
|
-
execution: string;
|
7
|
-
context: string;
|
8
|
-
state:
|
7
|
+
execution: Record<string, any> | null;
|
8
|
+
context: Record<string, any> | null;
|
9
|
+
state: TransactionState;
|
9
10
|
created_at: Date;
|
10
11
|
updated_at: Date;
|
11
|
-
deleted_at: Date;
|
12
|
+
deleted_at: Date | null;
|
12
13
|
}
|
13
14
|
export interface FilterableWorkflowExecutionProps extends BaseFilterable<FilterableWorkflowExecutionProps> {
|
15
|
+
q?: string;
|
14
16
|
id?: string | string[] | OperatorMap<string>;
|
15
17
|
workflow_id?: string | string[] | OperatorMap<string>;
|
16
18
|
transaction_id?: string | string[] | OperatorMap<string>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/workflows-sdk/common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAA;
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/workflows-sdk/common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAA;AACpD,OAAO,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAC1C,MAAM,WAAW,oBAAoB;IACnC,EAAE,EAAE,MAAM,CAAA;IACV,WAAW,EAAE,MAAM,CAAA;IACnB,cAAc,EAAE,MAAM,CAAA;IACtB,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI,CAAA;IACrC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI,CAAA;IACnC,KAAK,EAAE,gBAAgB,CAAA;IACvB,UAAU,EAAE,IAAI,CAAA;IAChB,UAAU,EAAE,IAAI,CAAA;IAChB,UAAU,EAAE,IAAI,GAAG,IAAI,CAAA;CACxB;AAED,MAAM,WAAW,gCACf,SAAQ,cAAc,CAAC,gCAAgC,CAAC;IACxD,CAAC,CAAC,EAAE,MAAM,CAAA;IACV,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;IAC5C,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;IACrD,cAAc,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;IACxD,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;CAChD"}
|