gcf-common-lib 0.25.42 → 0.25.43

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/types.ts +17 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gcf-common-lib",
3
3
  "description": "",
4
- "version": "0.25.42",
4
+ "version": "0.25.43",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "branches": [
package/src/types.ts CHANGED
@@ -5,13 +5,28 @@ export type TMetadataOrAttributes = {
5
5
  exchange?: string; // response amqp exchange
6
6
  queue?: string; // response amqp queue
7
7
  //
8
+ filename?: string;
9
+ referer?: string;
10
+ 'remote-address'?: string;
11
+ 'upload-id'?: string;
12
+ 'user-agent'?: string;
13
+ timestamp?: string;
14
+ //
15
+ action?: string;
16
+ pipeline?: string;
17
+ options?: string;
18
+ 'job-uid'?: string;
19
+ 'user-id'?: string;
20
+ 'tenant-id'?: string;
21
+ //
8
22
  env?: string; // app environment
9
23
  appId?: string; // app id
10
24
  'app-id'?: string; // app id
11
25
  requestId?: string; // for rpc response [GUID]
12
26
  'request-id'?: string; // for rpc response [GUID]
13
- options?: string;
14
- }
27
+
28
+ [prop: string]: any;
29
+ };
15
30
 
16
31
  export type TGSEvent = {
17
32
  bucket: string;