1- # @
1+ # sample-angular-19-0-0-deep-object@1.0.0
22
33No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator )
44
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
2424_ published:_
2525
2626``` console
27- npm install @ --save
27+ npm install sample-angular-19-0-0-deep-object@1.0.0 --save
2828```
2929
3030_ without publishing (not recommended):_
@@ -46,7 +46,7 @@ npm link
4646In your project:
4747
4848``` console
49- npm link
49+ npm link sample-angular-19-0-0-deep-object
5050```
5151
5252__ Note for Windows users:__ The Angular CLI has troubles to use linked npm packages.
@@ -59,7 +59,7 @@ In your Angular project:
5959
6060``` typescript
6161// without configuring providers
62- import { ApiModule } from ' ' ;
62+ import { ApiModule } from ' sample-angular-19-0-0-deep-object ' ;
6363import { HttpClientModule } from ' @angular/common/http' ;
6464
6565@NgModule ({
@@ -78,7 +78,7 @@ export class AppModule {}
7878
7979``` typescript
8080// configuring providers
81- import { ApiModule , Configuration , ConfigurationParameters } from ' ' ;
81+ import { ApiModule , Configuration , ConfigurationParameters } from ' sample-angular-19-0-0-deep-object ' ;
8282
8383export function apiConfigFactory (): Configuration {
8484 const params: ConfigurationParameters = {
@@ -98,7 +98,7 @@ export class AppModule {}
9898
9999``` typescript
100100// configuring providers with an authentication service that manages your access tokens
101- import { ApiModule , Configuration } from ' ' ;
101+ import { ApiModule , Configuration } from ' sample-angular-19-0-0-deep-object ' ;
102102
103103@NgModule ({
104104 imports: [ ApiModule ],
@@ -122,7 +122,7 @@ export class AppModule {}
122122```
123123
124124``` typescript
125- import { DefaultApi } from ' ' ;
125+ import { DefaultApi } from ' sample-angular-19-0-0-deep-object ' ;
126126
127127export class AppComponent {
128128 constructor (private apiGateway : DefaultApi ) { }
@@ -162,7 +162,7 @@ export class AppModule {
162162If different than the generated base path, during app bootstrap, you can provide the base path to your service.
163163
164164``` typescript
165- import { BASE_PATH } from ' ' ;
165+ import { BASE_PATH } from ' sample-angular-19-0-0-deep-object ' ;
166166
167167bootstrap (AppComponent , [
168168 { provide: BASE_PATH , useValue: ' https://your-web-service.com' },
@@ -172,7 +172,7 @@ bootstrap(AppComponent, [
172172or
173173
174174``` typescript
175- import { BASE_PATH } from ' ' ;
175+ import { BASE_PATH } from ' sample-angular-19-0-0-deep-object ' ;
176176
177177@NgModule ({
178178 imports: [],
@@ -197,7 +197,7 @@ export const environment = {
197197In the src/app/app.module.ts:
198198
199199``` typescript
200- import { BASE_PATH } from ' ' ;
200+ import { BASE_PATH } from ' sample-angular-19-0-0-deep-object ' ;
201201import { environment } from ' ../environments/environment' ;
202202
203203@NgModule ({
0 commit comments