@maxim_mazurok/gapi.client.networksecurity-v1 0.2.20260302 → 0.2.20260610

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 (3) hide show
  1. package/index.d.ts +1260 -101
  2. package/package.json +1 -1
  3. package/readme.md +17 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.networksecurity-v1",
3
- "version": "0.2.20260302",
3
+ "version": "0.2.20260610",
4
4
  "description": "TypeScript typings for Network Security API v1",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -10,6 +10,23 @@ Install typings for Network Security API:
10
10
  npm install @types/gapi.client.networksecurity-v1 --save-dev
11
11
  ```
12
12
 
13
+ ## TypeScript 6.0+
14
+
15
+ TypeScript 6.0 changed `types` to default to `[]`. You must now explicitly list type packages in `tsconfig.json`:
16
+
17
+ ```json
18
+ {
19
+ "compilerOptions": {
20
+ "types": [
21
+ "gapi",
22
+ "gapi.auth2",
23
+ "gapi.client",
24
+ "gapi.client.networksecurity-v1"
25
+ ]
26
+ }
27
+ }
28
+ ```
29
+
13
30
  ## Usage
14
31
 
15
32
  You need to initialize Google API client in your code: