@produce8/analytics-openapi-types 1.0.0-dev.20251128223011 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +6 -2
  2. package/package.json +4 -5
package/README.md CHANGED
@@ -17,10 +17,10 @@ import type {
17
17
  paths,
18
18
  operations,
19
19
  components,
20
- } from "@produce8/analytics-openapi-types";
20
+ } from '@produce8/analytics-openapi-types';
21
21
 
22
22
  // Use the types in your code
23
- const healthCheck: operations["HealthController_healthCheck"] = {
23
+ const healthCheck: operations['HealthController_healthCheck'] = {
24
24
  // ...
25
25
  };
26
26
  ```
@@ -38,3 +38,7 @@ To install a specific environment version:
38
38
  npm install @produce8/analytics-openapi-types@dev
39
39
  npm install @produce8/analytics-openapi-types@latest
40
40
  ```
41
+
42
+ ## Auto-Generated
43
+
44
+ This package is automatically generated and published from the Analytics Service OpenAPI specification. Do not manually edit the types file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@produce8/analytics-openapi-types",
3
- "version": "1.0.0-dev.20251128223011",
3
+ "version": "1.0.0",
4
4
  "description": "TypeScript types generated from Analytics Service OpenAPI specification",
5
5
  "main": "openapi-types.ts",
6
6
  "types": "openapi-types.ts",
@@ -10,8 +10,7 @@
10
10
  "access": "public"
11
11
  },
12
12
  "files": [
13
- "README.md",
14
- "openapi-types.ts"
15
- ],
16
- "readme": "# @produce8/analytics-openapi-types\n\nTypeScript types generated from the Analytics Service OpenAPI specification.\n\n## Installation\n\n```bash\nnpm install @produce8/analytics-openapi-types\n# or\nyarn add @produce8/analytics-openapi-types\n```\n\n## Usage\n\n```typescript\nimport type {\n paths,\n operations,\n components,\n} from \"@produce8/analytics-openapi-types\";\n\n// Use the types in your code\nconst healthCheck: operations[\"HealthController_healthCheck\"] = {\n // ...\n};\n```\n\n## Environment Tags\n\nThis package is published with different dist-tags based on the environment:\n\n- `dev` - Development environment (from `dev` branch)\n- `latest` - Production environment (from `main` branch)\n\nTo install a specific environment version:\n\n```bash\nnpm install @produce8/analytics-openapi-types@dev\nnpm install @produce8/analytics-openapi-types@latest\n```\n"
13
+ "openapi-types.ts",
14
+ "README.md"
15
+ ]
17
16
  }