@or-sdk/idw 4.1.0-beta.1741.0 → 4.1.0-beta.1742.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.
|
@@ -5,8 +5,11 @@ export type ListDomains = EntityWithStatistic<{
|
|
|
5
5
|
stepCount: number;
|
|
6
6
|
})[];
|
|
7
7
|
}>;
|
|
8
|
-
export type DomainCreateData = Pick<SimpleNode, 'id' | 'name'
|
|
8
|
+
export type DomainCreateData = Pick<SimpleNode, 'id' | 'name'>;
|
|
9
9
|
export type DomainUpdateData = Partial<DomainCreateData>;
|
|
10
|
+
export type DomainGetLinkedData = {
|
|
11
|
+
ids: string[];
|
|
12
|
+
};
|
|
10
13
|
export type Domain = Omit<SimpleNode, 'description' | '__createdAt' | 'icon'>;
|
|
11
14
|
export type DomainWithFlows = {
|
|
12
15
|
domain: Domain;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"domain.d.ts","sourceRoot":"","sources":["../../../src/types/domain.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AACxC,OAAO,EAAE,mBAAmB,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE3D,MAAM,MAAM,WAAW,GAAG,mBAAmB,CAAC;IAAE,OAAO,EAAE,CAAC,MAAM,GAAG;QAAE,SAAS,EAAE,MAAM,CAAC;KAAE,CAAC,EAAE,CAAC;CAAC,CAAC,CAAC;AAChG,MAAM,MAAM,gBAAgB,GAAG,IAAI,CAAC,UAAU,EAAE,IAAI,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"domain.d.ts","sourceRoot":"","sources":["../../../src/types/domain.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AACxC,OAAO,EAAE,mBAAmB,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE3D,MAAM,MAAM,WAAW,GAAG,mBAAmB,CAAC;IAAE,OAAO,EAAE,CAAC,MAAM,GAAG;QAAE,SAAS,EAAE,MAAM,CAAC;KAAE,CAAC,EAAE,CAAC;CAAC,CAAC,CAAC;AAChG,MAAM,MAAM,gBAAgB,GAAG,IAAI,CAAC,UAAU,EAAE,IAAI,GAAG,MAAM,CAAC,CAAC;AAC/D,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;AACzD,MAAM,MAAM,mBAAmB,GAAG;IAAE,GAAG,EAAE,MAAM,EAAE,CAAC;CAAE,CAAC;AACrD,MAAM,MAAM,MAAM,GAAG,IAAI,CAAC,UAAU,EAAE,aAAa,GAAG,aAAa,GAAG,MAAM,CAAC,CAAC;AAC9E,MAAM,MAAM,eAAe,GAAG;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,IAAI,EAAE,CAAC;CAAC,CAAC;AAC/D,MAAM,MAAM,kBAAkB,CAAC,MAAM,IAAI;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAC;CAAE,CAAC;AAC9E,MAAM,MAAM,wBAAwB,CAAC,CAAC,IAAI;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,CAAC,EAAE,CAAC;CAAE,CAAC;AAE5E,MAAM,MAAM,iBAAiB,CAAC,CAAC,IAAI;IACjC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,CAAC,EAAE,CAAC;CACd,CAAC"}
|
package/package.json
CHANGED
package/src/types/domain.ts
CHANGED
|
@@ -2,8 +2,9 @@ import { Flow } from '@or-sdk/deployer';
|
|
|
2
2
|
import { EntityWithStatistic, SimpleNode } from './common';
|
|
3
3
|
|
|
4
4
|
export type ListDomains = EntityWithStatistic<{ domains: (Domain & { stepCount: number; })[];}>;
|
|
5
|
-
export type DomainCreateData = Pick<SimpleNode, 'id' | 'name'
|
|
5
|
+
export type DomainCreateData = Pick<SimpleNode, 'id' | 'name'>;
|
|
6
6
|
export type DomainUpdateData = Partial<DomainCreateData>;
|
|
7
|
+
export type DomainGetLinkedData = { ids: string[]; };
|
|
7
8
|
export type Domain = Omit<SimpleNode, 'description' | '__createdAt' | 'icon'>;
|
|
8
9
|
export type DomainWithFlows = {domain: Domain; flows: Flow[];};
|
|
9
10
|
export type DomainWithEntities<Entity> = {domain: Domain; entities: Entity; };
|