Revert "Renaming Files having BluePrint to have Blueprint"
[ccsdk/cds.git] / cds-ui / designer-client / src / app / modules / feature-modules / packages / blueprint.page.mock.ts
1 import {BluePrintPage} from './model/BluePrint.model';
2 import {PackagesDashboardState} from './model/packages-dashboard.state';
3
4 export function getBluePrintPageMock(): BluePrintPage {
5     return {
6         content: [
7             {
8                 id: 'bc0dabea-3112-4202-a4b9-6a525bcc19a9',
9                 artifactUUId: null,
10                 artifactType: 'SDNC_MODEL',
11                 artifactVersion: '1.0.0',
12                 artifactDescription: 'Controller Blueprint for vLB_CDS123:1.0.0',
13                 internalVersion: null,
14                 createdDate: '2019-10-30T13:55:16.000Z',
15                 artifactName: 'vLB_CDS123',
16                 published: 'N',
17                 updatedBy: 'Abdelmuhaimen Seaudi',
18                 tags: 'test, vDNS-CDS, SCALE-OUT, MARCO'
19             },
20             {
21                 id: 'a741913f-2b1b-4eb8-94b3-8c6b08928f0a',
22                 artifactUUId: null,
23                 artifactType: 'SDNC_MODEL',
24                 artifactVersion: '1.0.0',
25                 artifactDescription: 'Controller Blueprint for vLB_CDS12312312:1.0.0',
26                 internalVersion: null,
27                 createdDate: '2019-10-30T14:58:04.000Z',
28                 artifactName: 'vLB_CDS12312312',
29                 published: 'N',
30                 updatedBy: 'Abdelmuhaimen Seaudi',
31                 tags: 'test, vDNS-CDS, SCALE-OUT, MARCO'
32             }
33         ],
34         pageable: {
35             sort: {
36                 sorted: true,
37                 unsorted: false,
38                 empty: false
39             },
40             offset: 0,
41             pageSize: 2,
42             pageNumber: 0,
43             paged: true,
44             unpaged: false
45         },
46         last: false,
47         totalElements: 4,
48         totalPages: 2,
49         first: true,
50         empty: false
51     };
52
53 }
54