@plumile/backoffice-core 0.1.200 → 0.1.205
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/README.md +3 -1
- package/lib/esm/builders.d.ts +11 -5
- package/lib/esm/builders.d.ts.map +1 -1
- package/lib/esm/builders.js +1 -1
- package/lib/esm/config/entity-builders.d.ts +3 -3
- package/lib/esm/config/entity-builders.d.ts.map +1 -1
- package/lib/esm/config/entity-builders.js +3 -5
- package/lib/esm/detailParams.d.ts +8 -2
- package/lib/esm/detailParams.d.ts.map +1 -1
- package/lib/esm/detailParams.js +3 -3
- package/lib/esm/index.d.ts +1 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/esm/resolve.d.ts +2 -1
- package/lib/esm/resolve.d.ts.map +1 -1
- package/lib/esm/resolve.js +1 -1
- package/lib/esm/runtimeErasure.d.ts +2 -0
- package/lib/esm/runtimeErasure.d.ts.map +1 -0
- package/lib/esm/runtimeErasure.js +2 -0
- package/lib/esm/types.d.ts +27 -24
- package/lib/esm/types.d.ts.map +1 -1
- package/lib/esm/types.js +1 -1
- package/lib/tsconfig.esm.tsbuildinfo +1 -1
- package/lib/types/builders.d.ts +11 -5
- package/lib/types/builders.d.ts.map +1 -1
- package/lib/types/config/entity-builders.d.ts +3 -3
- package/lib/types/config/entity-builders.d.ts.map +1 -1
- package/lib/types/detailParams.d.ts +8 -2
- package/lib/types/detailParams.d.ts.map +1 -1
- package/lib/types/index.d.ts +1 -0
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/resolve.d.ts +2 -1
- package/lib/types/resolve.d.ts.map +1 -1
- package/lib/types/runtimeErasure.d.ts +2 -0
- package/lib/types/runtimeErasure.d.ts.map +1 -0
- package/lib/types/types.d.ts +27 -24
- package/lib/types/types.d.ts.map +1 -1
- package/package.json +3 -3
- package/lib/esm/type-tests/operation-bound-config.test-d.d.ts +0 -50
- package/lib/esm/type-tests/operation-bound-config.test-d.d.ts.map +0 -1
- package/lib/esm/type-tests/operation-bound-config.test-d.js +0 -666
- package/lib/types/type-tests/operation-bound-config.test-d.d.ts +0 -50
- package/lib/types/type-tests/operation-bound-config.test-d.d.ts.map +0 -1
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import type { BackofficeDashboardConfig, BackofficeDetailTitleMetaItem, BackofficeEntityManifestItem, BackofficeManifestListStateInput, BackofficeListResponsiveMetaItem, I18nLabel } from '../types.js';
|
|
2
|
-
type TestKind = 'A' | 'B';
|
|
3
|
-
declare const typedListManifest: {
|
|
4
|
-
id: string;
|
|
5
|
-
routeSegment: string;
|
|
6
|
-
label: I18nLabel;
|
|
7
|
-
routes: {
|
|
8
|
-
list: string;
|
|
9
|
-
detail: (id: string) => string;
|
|
10
|
-
detailPage: (id: string, pageId: string) => string;
|
|
11
|
-
};
|
|
12
|
-
hasList: true;
|
|
13
|
-
listNavigation: import("../types.js").BackofficeListNavigation<{
|
|
14
|
-
projectId?: string | null | undefined;
|
|
15
|
-
kind?: TestKind | null | undefined;
|
|
16
|
-
attempt?: number | null | undefined;
|
|
17
|
-
createdFrom?: string | null | undefined;
|
|
18
|
-
}, NonNullable<"CREATED_AT_ASC" | "CREATED_AT_DESC">, {
|
|
19
|
-
projectId: import("@plumile/filter-query/types.js").StringFieldDescriptor;
|
|
20
|
-
kind: import("@plumile/filter-query/types.js").StringFieldDescriptor;
|
|
21
|
-
}>;
|
|
22
|
-
detailPages: [{
|
|
23
|
-
id: string;
|
|
24
|
-
pathSegment: string;
|
|
25
|
-
label: I18nLabel;
|
|
26
|
-
isDefault: true;
|
|
27
|
-
}];
|
|
28
|
-
defaultDetailPageId: string;
|
|
29
|
-
facets: {
|
|
30
|
-
list: () => Promise<never>;
|
|
31
|
-
detailLayout: () => Promise<never>;
|
|
32
|
-
detailPage: () => Promise<never>;
|
|
33
|
-
};
|
|
34
|
-
} & {
|
|
35
|
-
kind: 'list-detail';
|
|
36
|
-
};
|
|
37
|
-
export declare const runtimeListManifestId: string;
|
|
38
|
-
type TypedListState = BackofficeManifestListStateInput<{
|
|
39
|
-
tasks: typeof typedListManifest;
|
|
40
|
-
}, 'tasks'>;
|
|
41
|
-
export declare const typedListState: TypedListState;
|
|
42
|
-
export declare const invalidTypedListState: TypedListState;
|
|
43
|
-
export declare const runtimeListState: BackofficeManifestListStateInput<Record<string, BackofficeEntityManifestItem>, string>;
|
|
44
|
-
export declare const responsiveMeta: BackofficeListResponsiveMetaItem;
|
|
45
|
-
export declare const invalidResponsiveMeta: BackofficeListResponsiveMetaItem;
|
|
46
|
-
export declare const titleMeta: BackofficeDetailTitleMetaItem;
|
|
47
|
-
export declare const invalidTitleMeta: BackofficeDetailTitleMetaItem;
|
|
48
|
-
export declare const invalidDashboardConfig: BackofficeDashboardConfig;
|
|
49
|
-
export {};
|
|
50
|
-
//# sourceMappingURL=operation-bound-config.test-d.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"operation-bound-config.test-d.d.ts","sourceRoot":"","sources":["../../../src/type-tests/operation-bound-config.test-d.ts"],"names":[],"mappings":"AAsBA,OAAO,KAAK,EACV,yBAAyB,EACzB,6BAA6B,EAC7B,4BAA4B,EAC5B,gCAAgC,EAChC,gCAAgC,EAEhC,SAAS,EACV,MAAM,aAAa,CAAC;AAGrB,KAAK,QAAQ,GAAG,GAAG,GAAG,GAAG,CAAC;AA0J1B,QAAA,MAAM,iBAAiB;;;;;;;;;;;oBApJL,MAAM,GAAG,IAAI,GAAG,SAAS;eAC9B,QAAQ,GAAG,IAAI,GAAG,SAAS;kBACxB,MAAM,GAAG,IAAI,GAAG,SAAS;sBACrB,MAAM,GAAG,IAAI,GAAG,SAAS;;;;;;;;;;;;;QA0KzC,IAAI;QAGJ,YAAY;QAGZ,UAAU;;;;CAIZ,CAAC;AAGH,eAAO,MAAM,qBAAqB,QAAyB,CAAC;AAE5D,KAAK,cAAc,GAAG,gCAAgC,CACpD;IAAE,KAAK,EAAE,OAAO,iBAAiB,CAAA;CAAE,EACnC,OAAO,CACR,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,cAG5B,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,cAGnC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,gCAAgC,CAC7D,MAAM,CAAC,MAAM,EAAE,4BAA4B,CAAC,EAC5C,MAAM,CAIP,CAAC;AAoKF,eAAO,MAAM,cAAc,EAAE,gCAI5B,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,gCAKnC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,6BAIvB,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,6BAK9B,CAAC;AAkVF,eAAO,MAAM,sBAAsB,EAAE,yBAKpC,CAAC"}
|