|
1 | | -/* generated using openapi-typescript-codegen -- do not edit */ |
| 1 | +/* generated using openapi-typescript-codegen -- do no edit */ |
2 | 2 | /* istanbul ignore file */ |
3 | 3 | /* tslint:disable */ |
4 | 4 | /* eslint-disable */ |
@@ -42,6 +42,7 @@ import { PluginConfigsService } from './services/PluginConfigsService'; |
42 | 42 | import { PluginsService } from './services/PluginsService'; |
43 | 43 | import { ProjectsService } from './services/ProjectsService'; |
44 | 44 | import { PropertyDefinitionsService } from './services/PropertyDefinitionsService'; |
| 45 | +import { ProxyRecordsService } from './services/ProxyRecordsService'; |
45 | 46 | import { QueryService } from './services/QueryService'; |
46 | 47 | import { RolesService } from './services/RolesService'; |
47 | 48 | import { SessionRecordingPlaylistsService } from './services/SessionRecordingPlaylistsService'; |
@@ -90,6 +91,7 @@ export class PosthogAPIClient { |
90 | 91 | public readonly plugins: PluginsService; |
91 | 92 | public readonly projects: ProjectsService; |
92 | 93 | public readonly propertyDefinitions: PropertyDefinitionsService; |
| 94 | + public readonly proxyRecords: ProxyRecordsService; |
93 | 95 | public readonly query: QueryService; |
94 | 96 | public readonly roles: RolesService; |
95 | 97 | public readonly sessionRecordingPlaylists: SessionRecordingPlaylistsService; |
@@ -149,6 +151,7 @@ export class PosthogAPIClient { |
149 | 151 | this.plugins = new PluginsService(this.request); |
150 | 152 | this.projects = new ProjectsService(this.request); |
151 | 153 | this.propertyDefinitions = new PropertyDefinitionsService(this.request); |
| 154 | + this.proxyRecords = new ProxyRecordsService(this.request); |
152 | 155 | this.query = new QueryService(this.request); |
153 | 156 | this.roles = new RolesService(this.request); |
154 | 157 | this.sessionRecordingPlaylists = new SessionRecordingPlaylistsService(this.request); |
|
0 commit comments