@produce8/analytics-openapi-types 1.0.0-dev.20251124235928
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/openapi-types.ts +52 -0
- package/package.json +15 -0
package/openapi-types.ts
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by openapi-typescript.
|
|
3
|
+
* Do not make direct changes to the file.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export interface paths {
|
|
7
|
+
"/health": {
|
|
8
|
+
parameters: {
|
|
9
|
+
query?: never;
|
|
10
|
+
header?: never;
|
|
11
|
+
path?: never;
|
|
12
|
+
cookie?: never;
|
|
13
|
+
};
|
|
14
|
+
get: operations["HealthController_healthCheck"];
|
|
15
|
+
put?: never;
|
|
16
|
+
post?: never;
|
|
17
|
+
delete?: never;
|
|
18
|
+
options?: never;
|
|
19
|
+
head?: never;
|
|
20
|
+
patch?: never;
|
|
21
|
+
trace?: never;
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
export type webhooks = Record<string, never>;
|
|
25
|
+
export interface components {
|
|
26
|
+
schemas: never;
|
|
27
|
+
responses: never;
|
|
28
|
+
parameters: never;
|
|
29
|
+
requestBodies: never;
|
|
30
|
+
headers: never;
|
|
31
|
+
pathItems: never;
|
|
32
|
+
}
|
|
33
|
+
export type $defs = Record<string, never>;
|
|
34
|
+
export interface operations {
|
|
35
|
+
HealthController_healthCheck: {
|
|
36
|
+
parameters: {
|
|
37
|
+
query?: never;
|
|
38
|
+
header?: never;
|
|
39
|
+
path?: never;
|
|
40
|
+
cookie?: never;
|
|
41
|
+
};
|
|
42
|
+
requestBody?: never;
|
|
43
|
+
responses: {
|
|
44
|
+
200: {
|
|
45
|
+
headers: {
|
|
46
|
+
[name: string]: unknown;
|
|
47
|
+
};
|
|
48
|
+
content?: never;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@produce8/analytics-openapi-types",
|
|
3
|
+
"version": "1.0.0-dev.20251124235928",
|
|
4
|
+
"description": "TypeScript types generated from Analytics Service OpenAPI specification",
|
|
5
|
+
"main": "openapi-types.ts",
|
|
6
|
+
"types": "openapi-types.ts",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"registry": "https://registry.npmjs.org/",
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"openapi-types.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|