@google-analytics/data 3.2.2 → 3.3.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.
@@ -6,6 +6,9 @@
6
6
  "idempotent": [
7
7
  "DEADLINE_EXCEEDED",
8
8
  "UNAVAILABLE"
9
+ ],
10
+ "unknown": [
11
+ "UNKNOWN"
9
12
  ]
10
13
  },
11
14
  "retry_params": {
@@ -17,6 +20,15 @@
17
20
  "rpc_timeout_multiplier": 1,
18
21
  "max_rpc_timeout_millis": 60000,
19
22
  "total_timeout_millis": 600000
23
+ },
24
+ "01d6d956b4dadd7e38ee9dec12ed8720e6e6f90c": {
25
+ "initial_retry_delay_millis": 1000,
26
+ "retry_delay_multiplier": 1.3,
27
+ "max_retry_delay_millis": 60000,
28
+ "initial_rpc_timeout_millis": 60000,
29
+ "rpc_timeout_multiplier": 1,
30
+ "max_rpc_timeout_millis": 60000,
31
+ "total_timeout_millis": 600000
20
32
  }
21
33
  },
22
34
  "methods": {
@@ -24,6 +36,26 @@
24
36
  "timeout_millis": 60000,
25
37
  "retry_codes_name": "non_idempotent",
26
38
  "retry_params_name": "default"
39
+ },
40
+ "CreateAudienceList": {
41
+ "timeout_millis": 60000,
42
+ "retry_codes_name": "unknown",
43
+ "retry_params_name": "01d6d956b4dadd7e38ee9dec12ed8720e6e6f90c"
44
+ },
45
+ "QueryAudienceList": {
46
+ "timeout_millis": 60000,
47
+ "retry_codes_name": "unknown",
48
+ "retry_params_name": "01d6d956b4dadd7e38ee9dec12ed8720e6e6f90c"
49
+ },
50
+ "GetAudienceList": {
51
+ "timeout_millis": 60000,
52
+ "retry_codes_name": "unknown",
53
+ "retry_params_name": "01d6d956b4dadd7e38ee9dec12ed8720e6e6f90c"
54
+ },
55
+ "ListAudienceLists": {
56
+ "timeout_millis": 60000,
57
+ "retry_codes_name": "unknown",
58
+ "retry_params_name": "01d6d956b4dadd7e38ee9dec12ed8720e6e6f90c"
27
59
  }
28
60
  }
29
61
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google-analytics/data",
3
- "version": "3.2.2",
3
+ "version": "3.3.0",
4
4
  "description": "Data client for Node.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,17 +30,18 @@
30
30
  ],
31
31
  "scripts": {
32
32
  "clean": "gts clean",
33
- "compile": "tsc -p . && cp -r protos build/ && minifyProtoJson",
33
+ "compile": "tsc -p . && cp -r protos build/",
34
34
  "compile-protos": "compileProtos src",
35
35
  "docs": "jsdoc -c .jsdoc.js",
36
36
  "predocs-test": "npm run docs",
37
37
  "docs-test": "linkinator docs",
38
38
  "fix": "gts fix",
39
39
  "lint": "gts check",
40
- "prelint": "cd samples; npm link ../; npm i",
41
40
  "prepare": "npm run compile-protos && npm run compile",
42
- "samples-test": "npm run compile && cd samples/ && npm link ../ && npm i && npm test",
43
- "system-test": "npm run compile && c8 mocha build/system-test",
41
+ "prelint": "cd samples; npm link ../; npm i",
42
+ "postpack": "minifyProtoJson",
43
+ "samples-test": "cd samples/ && npm link ../ && npm i && npm test",
44
+ "system-test": "c8 mocha build/system-test",
44
45
  "test": "c8 mocha build/test"
45
46
  },
46
47
  "dependencies": {
@@ -55,7 +56,8 @@
55
56
  "jsdoc": "^4.0.0",
56
57
  "jsdoc-fresh": "^2.0.0",
57
58
  "jsdoc-region-tag": "^2.0.0",
58
- "linkinator": "^4.0.0",
59
+ "linkinator": "4.1.2",
60
+ "long": "^5.2.3",
59
61
  "mocha": "^9.2.2",
60
62
  "null-loader": "^4.0.0",
61
63
  "pack-n-play": "^1.0.0-2",