@electrolux-oss/plugin-infrawallet-backend 0.1.12 → 0.2.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.
package/config.d.ts CHANGED
@@ -19,7 +19,7 @@ export interface Config {
19
19
  {
20
20
  name: string;
21
21
  accountId: string;
22
- assumedRoleName: string;
22
+ assumedRoleName?: string;
23
23
  /**
24
24
  * @visibility secret
25
25
  */
@@ -29,6 +29,13 @@ export interface Config {
29
29
  */
30
30
  accessKeySecret?: string;
31
31
  tags?: string[];
32
+ filters?: [
33
+ {
34
+ type: string;
35
+ attribute: string;
36
+ pattern: string;
37
+ },
38
+ ];
32
39
  },
33
40
  ];
34
41
  gcp?: [
@@ -70,6 +77,27 @@ export interface Config {
70
77
  tags?: string[];
71
78
  },
72
79
  ];
80
+ datadog?: [
81
+ {
82
+ name: string;
83
+ /**
84
+ * @visibility secret
85
+ */
86
+ apiKey: string;
87
+ /**
88
+ * @visibility secret
89
+ */
90
+ applicationKey: string;
91
+ ddSite: string;
92
+ filters?: [
93
+ {
94
+ type: string;
95
+ attribute: string;
96
+ pattern: string;
97
+ },
98
+ ];
99
+ },
100
+ ];
73
101
  mock?: [
74
102
  {
75
103
  name: string;