@ntbjs/ntb-dam-utils 1.0.2 → 1.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ntbjs/ntb-dam-utils",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Shared components for NTB Mediebank",
5
5
  "main": "index",
6
6
  "scripts": {
@@ -1,44 +1,48 @@
1
1
  const origins = {
2
2
  UPLOAD: {
3
3
  key: "UPLOAD",
4
- name: "Upload direct",
4
+ name: "Upload direct"
5
5
  },
6
6
  GUEST: {
7
7
  key: "GUEST",
8
- name: "Guest upload",
8
+ name: "Guest upload"
9
+ },
10
+ GUESTURL: {
11
+ key: "GUESTURL",
12
+ name: "Guest url upload"
9
13
  },
10
14
  GUESTFTP: {
11
15
  key: "GUESTFTP",
12
- name: "Guest FTP upload",
16
+ name: "Guest FTP upload"
13
17
  },
14
18
  EMAIL: {
15
19
  key: "EMAIL",
16
- name: "Email upload",
20
+ name: "Email upload"
17
21
  },
18
22
  IMPORT: {
19
23
  key: "IMPORT",
20
- name: "Initial import",
24
+ name: "Initial import"
21
25
  },
22
26
  FTP: {
23
27
  key: "FTP",
24
- name: "FTP Upload",
28
+ name: "FTP Upload"
25
29
  },
26
30
  LTR: {
27
31
  key: "LTR",
28
- name: "Adobe Lightroom",
32
+ name: "Adobe Lightroom"
29
33
  },
30
34
  PS: {
31
35
  key: "PS",
32
- name: "Adobe Photoshop",
36
+ name: "Adobe Photoshop"
33
37
  },
34
38
  CMS: {
35
39
  key: "CMS",
36
- name: "Content management system",
40
+ name: "Content management system"
37
41
  },
38
42
  NTBIMAGEPORTAL: {
39
43
  key: "NTBIMAGEPORTAL",
40
- name: "NTB Images",
41
- },
44
+ name: "NTB Images"
45
+ }
42
46
  };
43
47
 
44
48
  module.exports = { origins };
@@ -43,6 +43,11 @@ const ownerConfig = [
43
43
  value: "DNMG",
44
44
  index: "dnmg",
45
45
  locale: "nb"
46
+ },
47
+ {
48
+ value: "VISTECH",
49
+ index: "vistech",
50
+ locale: "nb"
46
51
  }
47
52
  ];
48
53