@or-sdk/idw 4.1.1 → 4.1.2-beta.1787.0
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.
|
@@ -15,8 +15,9 @@ export interface Flow {
|
|
|
15
15
|
export interface FlowWithRelationshipStatus extends Flow {
|
|
16
16
|
isRelationshipActive: boolean;
|
|
17
17
|
}
|
|
18
|
-
export type FlowUpsertData = ReturnType<typeof flowUpsertDataDto> & {
|
|
18
|
+
export type FlowUpsertData = Omit<ReturnType<typeof flowUpsertDataDto>, 'description'> & {
|
|
19
19
|
id: string;
|
|
20
|
+
description?: string;
|
|
20
21
|
};
|
|
21
22
|
export type FlowActivateData = ReturnType<typeof flowActivateDataDto>;
|
|
22
23
|
//# sourceMappingURL=flow.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"flow.d.ts","sourceRoot":"","sources":["../../../src/types/flow.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,MAAM,QAAQ,CAAC;AAEhE,MAAM,WAAW,IAAI;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,OAAO,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,0BAA2B,SAAQ,IAAI;IACtD,oBAAoB,EAAE,OAAO,CAAC;CAC/B;AAED,MAAM,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"flow.d.ts","sourceRoot":"","sources":["../../../src/types/flow.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,MAAM,QAAQ,CAAC;AAEhE,MAAM,WAAW,IAAI;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,OAAO,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,0BAA2B,SAAQ,IAAI;IACtD,oBAAoB,EAAE,OAAO,CAAC;CAC/B;AAED,MAAM,MAAM,cAAc,GACxB,IAAI,CAAC,UAAU,CAAC,OAAO,iBAAiB,CAAC,EAAE,aAAa,CAAC,GAAG;IAAC,EAAE,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAC;CAAC,CAAC;AAClG,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.1.
|
|
2
|
+
"version": "4.1.2-beta.1787.0",
|
|
3
3
|
"name": "@or-sdk/idw",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
@@ -27,6 +27,5 @@
|
|
|
27
27
|
"@or-sdk/base": "^0.28.3",
|
|
28
28
|
"@or-sdk/deployer": "^1.1.5",
|
|
29
29
|
"@or-sdk/providers": "^0.2.4"
|
|
30
|
-
}
|
|
31
|
-
"gitHead": "91b9a7ead83d0cda9d3234c252f0f850a410305d"
|
|
30
|
+
}
|
|
32
31
|
}
|
package/src/types/flow.ts
CHANGED
|
@@ -18,5 +18,6 @@ export interface FlowWithRelationshipStatus extends Flow {
|
|
|
18
18
|
isRelationshipActive: boolean;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
export type FlowUpsertData =
|
|
21
|
+
export type FlowUpsertData =
|
|
22
|
+
Omit<ReturnType<typeof flowUpsertDataDto>, 'description'> & {id: string; description?: string;};
|
|
22
23
|
export type FlowActivateData = ReturnType<typeof flowActivateDataDto>;
|