Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mock_data.js « ci_secure_files « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3db0f7dd64b3fd17a5d4f797b0bb06f7c1b66f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
export const secureFiles = [
  {
    id: 1,
    name: 'myfile.jks',
    checksum: '16630b189ab34b2e3504f4758e1054d2e478deda510b2b08cc0ef38d12e80aac',
    checksum_algorithm: 'sha256',
    created_at: '2022-02-22T22:22:22.222Z',
    file_extension: 'jks',
    metadata: null,
  },
  {
    id: 2,
    name: 'myotherfile.jks',
    checksum: '16630b189ab34b2e3504f4758e1054d2e478deda510b2b08cc0ef38d12e80aa2',
    checksum_algorithm: 'sha256',
    created_at: '2022-02-22T22:22:22.222Z',
    file_extension: 'jks',
    metadata: null,
  },
  {
    id: 3,
    name: 'myfile.cer',
    checksum: '16630b189ab34b2e3504f4758e1054d2e478deda510b2b08cc0ef38d12e80aa2',
    checksum_algorithm: 'sha256',
    created_at: '2022-02-22T22:22:22.222Z',
    file_extension: 'cer',
    expires_at: '2023-04-26T19:20:39.000Z',
    metadata: {
      id: '33669367788748363528491290218354043267',
      issuer: {
        C: 'US',
        O: 'Apple Inc.',
        CN: 'Apple Worldwide Developer Relations Certification Authority',
        OU: 'G3',
      },
      subject: {
        C: 'US',
        O: 'Team Name',
        CN: 'Apple Distribution: Team Name (ABC123XYZ)',
        OU: 'ABC123XYZ',
        UID: 'ABC123XYZ',
      },
      expires_at: '2023-04-26T19:20:39.000Z',
    },
  },
  {
    id: 4,
    name: 'sample.mobileprovision',
    checksum: '9e194bbde00d57c64b6640ed2c9e166d76b4c79d9dbd49770f95be56678f2a62',
    checksum_algorithm: 'sha256',
    created_at: '2022-11-15T19:29:57.577Z',
    expires_at: '2023-08-01T23:15:13.000Z',
    metadata: {
      id: '6b9fcce1-b9a9-4b37-b2ce-ec4da2044abf',
      app_id: 'match Development com.gitlab.ios-demo',
      devices: ['00008101-001454860C10001E'],
      team_id: ['ABC123XYZ'],
      app_name: 'iOS Demo',
      platforms: ['iOS'],
      team_name: 'Team Name',
      expires_at: '2023-08-01T18:15:13.000-05:00',
      entitlements: {
        'get-task-allow': true,
        'application-identifier': 'N7SYAN8PX8.com.gitlab.ios-demo',
        'keychain-access-groups': ['ABC123XYZ.*', 'com.apple.token'],
        'com.apple.developer.game-center': true,
        'com.apple.developer.team-identifier': 'ABC123XYZ',
      },
      app_id_prefix: ['ABC123XYZ'],
      xcode_managed: false,
      certificate_ids: ['33669367788748363528491290218354043267'],
    },
    file_extension: 'mobileprovision',
  },
];