@apaleo/angular-api-proxy-settings
TypeScript icon, indicating that this package has built-in type declarations

19.0.7 • Public • Published

@

Building

To install the required dependencies and to build the typescript sources run:

npm install
npm run build

publishing

First build the package than run npm publish

consuming

Navigate to the folder of your consuming project and run one of next commands.

published:

npm install @ --save

without publishing (not recommended):

npm install PATH_TO_GENERATED_PACKAGE --save

using npm link:

In PATH_TO_GENERATED_PACKAGE:

npm link

In your project:

npm link 

Note for Windows users: The Angular CLI has troubles to use linked npm packages. Please refer to this issue https://github.com/angular/angular-cli/issues/8284 for a solution / workaround. Published packages are not effected by this issue.

General usage

In your Angular project:

// without configuring providers
import { ApiModule } from '';
import { HttpClientModule } from '@angular/common/http';

@NgModule({
    imports: [
        ApiModule,
        // make sure to import the HttpClientModule in the AppModule only,
        // see https://github.com/angular/angular/issues/20575
        HttpClientModule
    ],
    declarations: [ AppComponent ],
    providers: [],
    bootstrap: [ AppComponent ]
})
export class AppModule {}
// configuring providers
import { ApiModule, Configuration, ConfigurationParameters } from '';

export function apiConfigFactory (): Configuration => {
  const params: ConfigurationParameters = {
    // set configuration parameters here.
  }
  return new Configuration(params);
}

@NgModule({
    imports: [ ApiModule.forRoot(apiConfigFactory) ],
    declarations: [ AppComponent ],
    providers: [],
    bootstrap: [ AppComponent ]
})
export class AppModule {}
import { DefaultApi } from '';

export class AppComponent {
	 constructor(private apiGateway: DefaultApi) { }
}

Note: The ApiModule is restricted to being instantiated once app wide. This is to ensure that all services are treated as singletons.

Using multiple swagger files / APIs / ApiModules

In order to use multiple ApiModules generated from different swagger files, you can create an alias name when importing the modules in order to avoid naming conflicts:

import { ApiModule } from 'my-api-path';
import { ApiModule as OtherApiModule } from 'my-other-api-path';
import { HttpClientModule } from '@angular/common/http';

@NgModule({
  imports: [
    ApiModule,
    OtherApiModule,
    // make sure to import the HttpClientModule in the AppModule only,
    // see https://github.com/angular/angular/issues/20575
    HttpClientModule
  ]
})
export class AppModule {

}

Set service base path

If different than the generated base path, during app bootstrap, you can provide the base path to your service.

import { BASE_PATH } from '';

bootstrap(AppComponent, [
    { provide: BASE_PATH, useValue: 'https://your-web-service.com' },
]);

or

import { BASE_PATH } from '';

@NgModule({
    imports: [],
    declarations: [ AppComponent ],
    providers: [ provide: BASE_PATH, useValue: 'https://your-web-service.com' ],
    bootstrap: [ AppComponent ]
})
export class AppModule {}

Using @angular/cli

First extend your src/environments/*.ts files by adding the corresponding base path:

export const environment = {
  production: false,
  API_BASE_PATH: 'http://127.0.0.1:8080'
};

In the src/app/app.module.ts:

import { BASE_PATH } from '';
import { environment } from '../environments/environment';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [ ],
  providers: [{ provide: BASE_PATH, useValue: environment.API_BASE_PATH }],
  bootstrap: [ AppComponent ]
})
export class AppModule { }

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
19.0.766latest

Version History

VersionDownloads (Last 7 Days)Published
19.0.766
19.0.658
19.0.564
19.0.411
19.0.32
0.0.22
0.0.11
19.0.01
0.12.2570
0.12.2560
0.12.2550
0.12.2540
0.12.2531
0.12.2520
0.12.2510
0.12.2501
0.12.2490
0.12.2480
0.12.2470
0.12.2460
0.12.2450
0.12.2440
0.12.2430
0.12.2420
0.12.2410
0.12.2400
0.12.2390
0.12.2381
0.12.2370
0.12.2360
0.12.2350
0.12.2340
0.12.2331
0.12.2320
0.12.2310
0.12.2300
0.12.2290
0.12.2280
0.12.2270
0.12.2260
0.12.2250
0.12.2240
0.12.2230
0.12.2220
0.12.2211
0.12.2200
0.12.2190
0.12.2181
0.12.2170
0.12.2160
0.12.2150
0.12.2140
0.12.2131
0.12.2121
0.12.2110
0.12.2100
0.12.2091
0.12.2081
0.12.2070
0.12.2061
0.12.2050
0.12.2040
0.12.2030
0.12.2020
0.12.2011
0.12.2000
0.12.1990
0.12.1981
0.12.1971
0.12.1960
0.12.1951
0.12.1940
0.12.1930
0.12.1920
0.12.1910
0.12.1900
0.12.1890
0.12.1880
0.12.1870
0.12.1860
0.12.1850
0.12.1840
0.12.1830
0.12.1820
0.12.1810
0.12.1800
0.12.1790
0.12.1780
0.12.1771
0.12.1760
0.12.1750
0.12.1740
0.12.1730
0.12.1720
0.12.1710
0.12.1700
0.12.1690
0.12.1680
0.12.1670
0.12.1660
0.12.1650
0.12.1641
0.12.1630
0.12.1621
0.12.1610
0.12.1600
0.12.1590
0.12.1580
0.12.1570
0.12.1560
0.12.1550
0.12.1540
0.12.1530
0.12.1520
0.12.1510
0.12.1500
0.12.1490
0.12.1480
0.12.1470
0.12.1460
0.12.1450
0.12.1440
0.12.1430
0.12.1420
0.12.1410
0.12.1400
0.12.1390
0.12.1380
0.12.1370
0.12.1360
0.12.1350
0.12.1340
0.12.1330
0.12.1320
0.12.1310
0.12.1300
0.12.1290
0.12.1280
0.12.1270
0.12.1261
0.12.1250
0.12.1241
0.12.1231
0.12.1220
0.12.1210
0.12.1200
0.12.1190
0.12.1180
0.12.1170
0.12.1161
0.12.1150
0.12.1140
0.12.1131
0.12.1120
0.12.1110
0.12.1100
0.12.1090
0.12.1080
0.12.1070
0.12.1061
0.12.1050
0.12.1040
0.12.1030
0.12.1020
0.12.1010
0.12.1000
0.12.990
0.12.980
0.12.971
0.12.960
0.12.950
0.12.940
0.12.930
0.12.921
0.12.911
0.12.900
0.12.890
0.12.880
0.12.870
0.12.861
0.12.850
0.12.840
0.12.830
0.12.820
0.12.811
0.12.800
0.12.790
0.12.780
0.12.770
0.12.760
0.12.750
0.12.740
0.12.730
0.12.710
0.12.700
0.12.690
0.12.680
0.12.670
0.12.661
0.12.650
0.12.640
0.12.630
0.12.620
0.12.610
0.12.600
0.12.590
0.12.580
0.12.570
0.12.560
0.12.550
0.12.540
0.12.532
0.12.521
0.12.510
0.12.500
0.12.490
0.12.480
0.12.470
0.12.460
0.12.450
0.12.440
0.12.430
0.12.421
0.12.410
0.12.401
0.12.390
0.12.380
0.12.370
0.12.360
0.12.350
0.12.340
0.12.331
0.12.321
0.12.310
0.12.300
0.12.290
0.12.280
0.12.270
0.12.260
0.12.250
0.12.240
0.12.230
0.12.220
0.12.210
0.12.200
0.12.190
0.12.181
0.12.171
0.12.160
0.12.151
0.12.140
0.12.130
0.12.120
0.12.110
0.12.100
0.12.90
0.12.80
0.12.70
0.12.60
0.12.50
0.12.40
0.12.30
0.12.21
0.12.10
0.11.160
0.12.00
0.11.150
0.11.140
0.11.130
0.11.120
0.11.110
0.11.100
0.11.90
0.11.80
0.11.71
0.11.60
0.11.50
0.11.40
0.11.30
0.11.21
0.11.10
0.11.00
0.10.560
0.10.550
0.10.540
0.10.530
0.10.520
0.10.510
0.10.500
0.10.490
0.10.481
0.10.470
0.10.460
0.10.450
0.10.440
0.10.430
0.10.420
0.10.410
0.10.400
0.10.391
0.10.380
0.10.370
0.10.360
0.10.350
0.10.340
0.10.330
0.10.320
0.10.310
0.10.300
0.10.290
0.10.280
0.10.270
0.10.260
0.10.250
0.10.240
0.10.230
0.10.220
0.10.210
0.10.200
0.10.190
0.10.180
0.10.170
0.10.160
0.10.150
0.10.140
0.10.130
0.10.120
0.10.110
0.10.100
0.10.90
0.10.80
0.10.70
0.10.60
0.10.50
0.10.40
0.10.31
0.10.20
0.10.10
0.10.00
0.9.550
0.9.540
0.9.531
0.9.520
0.9.510
0.9.500
0.9.490
0.9.481
0.9.471
0.9.460
0.9.450
0.9.440
0.9.430
0.9.420
0.9.410
0.9.400
0.9.390
0.9.381
0.9.371
0.9.360
0.9.350
0.9.340
0.9.330
0.9.320
0.9.310
0.9.301
0.9.290
0.9.280
0.9.270
0.9.260
0.9.250
0.9.241
0.9.230
0.9.220
0.9.210
0.9.200
0.9.191
0.9.181
0.9.170
0.9.160
0.9.150
0.9.140
0.9.130
0.9.120
0.9.110
0.9.100
0.9.90
0.9.80
0.9.71
0.9.60
0.9.51
0.9.40
0.6.2450
1.6.2450
1.6.2440
0.6.2440
0.9.30
1.6.2430
0.6.2430
0.9.21
1.6.2420
0.6.2420
0.6.2410
1.6.2410
0.9.10
0.9.00
0.6.2401
1.6.2400
0.6.2390
1.6.2391
1.6.2380
0.6.2380
0.6.2370
1.6.2370
0.6.2360
1.6.2360
1.6.2350
0.6.2350
1.6.2340
0.6.2341
0.6.2330
1.6.2330
1.6.2320
0.6.2320
1.6.2310
0.6.2311
0.6.2300
1.6.2300
0.6.2290
1.6.2290
1.6.2280
0.6.2280
0.6.2271
1.6.2270
0.6.2261
1.6.2260
0.6.2250
1.6.2250
1.6.2240
0.6.2240
1.6.2230
0.6.2230
0.6.2221
1.6.2220
1.6.2210
0.6.2210
0.6.2200
1.6.2200
0.6.2190
1.6.2190
1.6.2180
0.6.2180
0.6.2170
1.6.2170
0.6.2160
1.6.2160
0.6.2150
1.6.2150
1.6.2140
0.6.2140
1.6.2130
0.6.2130
0.6.2120
1.6.2120
1.6.2110
0.6.2110
0.6.2100
1.6.2101
1.6.2090
0.6.2090
1.6.2080
0.6.2081
1.6.2071
0.6.2070
1.6.2060
0.6.2060
0.6.2050
1.6.2051
0.6.2041
1.6.2040
0.6.2030
1.6.2031
0.6.2020
1.6.2021
1.6.2010
0.6.2010
1.6.2000
0.6.2001
1.6.1990
0.6.1990
1.6.1980
0.6.1980
1.6.1970
0.6.1971
1.6.1960
0.6.1960
0.6.1950
1.6.1950
1.6.1940
0.6.1940
0.6.1930
1.6.1930
0.6.1920
1.6.1920
1.6.1910
0.6.1910
0.6.1900
1.6.1901
2.0.31
0.6.1891
1.6.1890
1.6.1881
0.6.1880
0.6.1870
1.6.1870
1.6.1860
0.6.1860
1.6.1851
0.6.1850
1.6.1840
0.6.1840
0.6.1831
1.6.1830
1.6.1820
0.6.1820
0.6.1810
1.6.1810
1.6.1800
0.6.1800
1.6.1790
0.6.1790
1.6.1780
0.6.1780
0.6.1770
1.6.1770
1.6.1760
0.6.1760
1.6.1750
0.6.1750
0.6.1741
1.6.1740
0.6.1730
1.6.1730
1.6.1720
0.6.1720
0.6.1711
1.6.1710
1.6.1700
0.6.1701
1.6.1690
0.6.1691
1.6.1680
0.6.1681
2.0.20
0.6.1671
1.6.1670
1.6.1660
0.6.1660
1.6.1650
0.6.1650
1.6.1640
0.6.1640
0.6.1630
1.6.1630
1.6.1621
0.6.1620
0.6.1610
1.6.1610
1.6.1601
0.6.1600
1.6.1590
0.6.1591
0.6.1580
1.6.1580
1.6.1574
0.6.1570
0.6.1561
1.6.1560
1.6.1550
0.6.1550
0.6.1540
1.6.1540
2.0.11
0.6.1530
1.6.1530
0.6.1520
1.6.1520
2.0.00
1.6.1511
0.6.1510
0.6.1501
1.6.1501
0.6.1490
1.6.1490
0.6.1480
1.6.1480
0.6.1470
1.6.1470
1.6.1460
0.6.1460
0.6.1450
1.6.1450
1.6.1441
0.6.1440
0.6.1430
1.6.1430
1.6.1420
0.6.1421
0.6.1410
1.6.1410
0.6.1400
1.6.1401
1.6.1390
0.6.1390
0.6.1381
1.6.1380
1.6.1370
0.6.1370
1.6.1360
0.6.1360
0.6.1350
1.6.1350
0.6.1340
1.6.1340
0.6.1331
1.6.1330
0.6.1320
1.6.1320
1.6.1311
0.6.1310
1.6.1300
0.6.1300
1.6.1290
0.6.1290
0.6.1280
1.6.1280
0.6.1270
1.6.1270
0.6.1260
1.6.1260
0.6.1250
1.6.1250
0.6.1240
1.6.1240
0.6.1230
1.6.1230
0.6.1220
1.6.1220
1.6.1210
0.6.1210
0.6.1200
1.6.1201
1.6.1190
0.6.1190
1.6.1180
0.6.1181
0.6.1170
1.6.1170
1.6.1160
0.6.1160
0.6.1150
1.6.1150
0.6.1140
1.6.1141
1.6.1131
0.6.1130
1.6.1120
0.6.1120
0.6.1110
1.6.1110
0.6.1100
1.6.1100
0.6.1090
1.6.1091
0.6.1080
1.6.1080
0.6.1070
1.6.1070
1.6.1060
0.6.1060
0.6.1050
1.6.1050
1.6.1040
0.6.1040
1.6.1030
0.6.1030
1.6.1021
0.6.1020
1.6.1010
0.6.1010
0.6.1000
1.6.1001
0.6.990
1.6.991
0.6.980
1.6.980
0.6.970
1.6.970
1.6.960
0.6.961
0.6.950
1.6.950
1.6.940
0.6.940
1.6.930
0.6.931
1.6.920
0.6.920
0.6.910
1.6.910
1.6.900
0.6.900
0.6.890
1.6.890
1.6.880
0.6.880
1.6.871
0.6.871
1.6.860
0.6.860
1.6.850
0.6.850
0.6.840
1.6.840
0.6.831
1.6.831
1.6.820
0.6.820
0.6.810
1.6.810
0.6.800
1.6.800
0.6.790
1.6.790
0.6.780
1.6.780
0.6.770
1.6.771
1.6.760
0.6.761
0.6.750
1.6.751
0.6.740
1.6.740
1.6.731
0.6.730
1.6.720
0.6.721
0.6.710
1.6.710
0.6.700
1.6.701
0.6.690
1.6.691
1.6.681
0.6.680
1.6.670
0.6.670
1.6.660
0.6.660
1.6.650
0.6.651
1.6.640
0.6.641
1.6.631
0.6.630
1.6.620
0.6.621
1.6.610
0.6.610
1.6.600
0.6.600
1.6.590
0.6.590
1.6.580
0.6.580
1.6.570
0.6.571
1.6.561
0.6.561
1.6.550
0.6.550
1.6.540
0.6.540
0.6.530
1.6.530
0.6.520
1.6.520
0.6.510
1.6.510
1.6.500
0.6.500
1.6.490
0.6.491
0.6.481
1.6.481
0.6.471
1.6.470
0.6.461
1.6.460
1.6.440
0.6.440
1.6.430
0.6.430
1.6.421
0.6.421
0.6.410
1.6.410
0.6.400
1.6.401
0.6.390
1.6.390
0.6.381
1.6.380
1.6.370
0.6.370
1.6.360
0.6.361
1.6.350
0.6.351
0.6.340
1.6.340
1.6.331
0.6.330
1.6.320
0.6.320
1.6.310
0.6.311
0.6.300
1.6.300
0.6.281
0.6.290
1.6.291
1.6.280
1.6.270
0.6.271
1.6.260
0.6.260
1.6.250
0.6.250
1.6.240
0.6.240
1.6.230
0.6.230
1.6.220
0.6.220
1.6.210
0.6.210
1.6.200
0.6.200
1.6.190
0.6.190
1.6.180
0.6.180
0.6.170
1.6.170
1.6.160
0.6.160
1.6.151
0.6.150
1.6.140
0.6.140
0.6.130
1.6.130
1.6.120
0.6.120
1.6.110
0.6.111
1.6.100
0.6.101
0.6.90
1.6.90
0.6.80
1.6.80
0.6.70
1.6.70
1.6.61
0.6.60
0.6.50
1.6.50
1.6.40
0.6.40
0.6.30
1.6.30
0.6.20
1.6.20
1.6.10
0.6.11
0.6.00
1.6.00
0.5.2820
1.5.2820
1.5.2810
0.5.2810
1.5.2801
0.5.2800
1.5.2790
0.5.2790
0.5.2780
1.5.2780
1.5.2770
0.5.2771
1.5.2760
0.5.2760
1.5.2751
0.5.2750
1.5.2740
0.5.2740
0.5.2730
1.5.2730
0.5.2721
1.5.2720
0.5.2710
1.5.2710
1.5.2700
0.5.2700
1.5.2690
0.5.2690
1.5.2680
0.5.2680
0.5.2670
1.5.2670
1.5.2660
0.5.2660
1.5.2641
0.5.2640
1.5.2631
0.5.2630
1.5.2620
0.5.2621
1.5.2610
0.5.2610
1.5.2600
0.5.2601
0.5.2590
1.5.2590
1.5.2581
0.5.2580
1.5.2570
0.5.2570
1.5.2560
0.5.2561
0.5.2550
1.5.2550
1.5.2541
0.5.2540
0.5.2531
1.5.2530
0.5.2520
0.5.2510
1.5.2510
1.5.2500
0.5.2501
1.5.2490
0.5.2490
1.5.2480
0.5.2480
1.5.2471
0.5.2470
1.5.2460
0.5.2460
0.5.2450
1.5.2450
1.5.2440
0.5.2440
1.5.2430
0.5.2431
0.5.2420
1.5.2420
0.5.2410
1.5.2410
0.5.2401
1.5.2400
1.5.2390
0.5.2390
0.5.2380
1.5.2380
1.5.2370
0.5.2370
0.5.2360
1.5.2360
0.5.2350
1.5.2350
1.5.2340
0.5.2340
1.5.2330
0.5.2330
1.5.2320
0.5.2321
0.5.2310
1.5.2311
0.5.2301
1.5.2301
0.5.2290
1.5.2290
1.5.2281
0.5.2280
1.5.2270
0.5.2270
0.5.2260
1.5.2260
1.5.2250
0.5.2250
1.5.2240
0.5.2240
0.5.2230
1.5.2231
1.5.2220
0.5.2220
0.5.2210
1.5.2210
0.5.2201
1.5.2200
1.5.2190
0.5.2191
1.5.2181
0.5.2180
1.5.2170
0.5.2170
1.5.2161
0.5.2160
0.5.2140
1.5.2140
0.5.2131
1.5.2130
1.5.2121
0.5.2120
1.5.2110
0.5.2110
1.5.2100
0.5.2100
1.5.2090
0.5.2090
0.5.2080
1.5.2080
0.5.2070
1.5.2070
1.5.2060
0.5.2060
1.5.2050
0.5.2050
0.5.2040
1.5.2040
0.5.2030
1.5.2030
1.5.2020
0.5.2020
0.5.2010
1.5.2010
0.5.2000
1.5.2000
1.5.1990
0.5.1990
0.5.1980
1.5.1980
0.5.1970
1.5.1970
1.5.1960
0.5.1960
1.5.1950
0.5.1950
0.5.1940
1.5.1941
1.5.1931
0.5.1930
1.5.1920
0.5.1920
0.5.1910
1.5.1910
1.5.1891
0.5.1890
0.5.1880
1.5.1880
1.5.1870
0.5.1870
0.5.1860
1.5.1860
0.5.1850
1.5.1851
0.5.1841
1.5.1840
1.5.1830
0.5.1830
1.5.1820
0.5.1820
0.5.1810
1.5.1810
0.5.1800
1.5.1800
0.5.1790
1.5.1790
0.5.1780
1.5.1780
1.5.1770
0.5.1770
1.5.1760
0.5.1760
1.5.1751
0.5.1750
1.5.1740
0.5.1741
0.5.1730
1.5.1730
1.5.1720
0.5.1720
0.5.1711
1.5.1711
0.5.1700
1.5.1701
0.5.1690
1.5.1690
0.5.1680
1.5.1680
0.5.1670
1.5.1670
1.5.1660
0.5.1660
1.5.1650
0.5.1650
0.5.1641
1.5.1641
1.5.1630
0.5.1630
1.5.1620
0.5.1620
1.5.1611
0.5.1610
1.5.1601
0.5.1600
0.5.1590
1.5.1590
1.5.1580
0.5.1580
1.5.1570
0.5.1570
0.5.1560
1.5.1560
1.5.1551
0.5.1550
1.5.1541
0.5.1540
1.5.1530
0.5.1531
1.5.1520
0.5.1520
0.5.1510
1.5.1510
1.5.1500
0.5.1500
0.5.1490
1.5.1491
1.5.1480
0.5.1480
0.5.1471
1.5.1471
0.5.1460
1.5.1461
0.5.1450
1.5.1451
1.5.1440
0.5.1440
1.5.1430
0.5.1431
1.5.1420
0.5.1420
1.5.1410
0.5.1410
1.5.1400
0.5.1400
0.5.1391
1.5.1390
1.5.1380
0.5.1380
0.5.1370
1.5.1370
1.5.1360
0.5.1360
0.5.1350
1.5.1351
0.5.1340
1.5.1340
1.5.1330
0.5.1331
1.5.1320
0.5.1320
1.5.1310
0.5.1311
0.5.1300
1.5.1300
0.5.1290
1.5.1290
1.5.1280
0.5.1280
1.5.1270
0.5.1270
1.5.1261
0.5.1261
1.5.1251
0.5.1250
0.5.1240
1.5.1240
1.5.1230
0.5.1230
0.5.1220
1.5.1220
1.5.1210
0.5.1210
1.5.1200
0.5.1201
1.5.1190
0.5.1190
0.5.1180
1.5.1180
1.5.1170
0.5.1170
0.5.1161
1.5.1160
0.5.1150
1.5.1150
1.5.1141
0.5.1141
1.5.1130
0.5.1130
0.5.1120
1.5.1121
0.5.1110
1.5.1110
0.5.1100
1.5.1101
0.5.1090
1.5.1090
1.5.1081
0.5.1080
0.5.1070
1.5.1070
1.5.1060
0.5.1060
1.5.1051
0.5.1050
1.5.1040
0.5.1040
1.5.1030
0.5.1030
0.5.1020
1.5.1020
1.5.1010
0.5.1010
1.5.1001
0.5.1000
0.5.991
1.5.990
0.5.980
1.5.980
1.5.970
0.5.970
1.5.960
0.5.960
0.5.950
1.5.950
0.5.940
1.5.940
1.5.930
0.5.930
0.5.920
1.5.920
1.5.910
0.5.910
1.5.900
0.5.900
0.5.890
1.5.890
0.5.880
1.5.880
0.5.870
1.5.870
0.5.860
1.5.860
0.5.850
1.5.850
1.5.840
0.5.840
0.5.830
1.5.831
0.5.820
1.5.821
1.5.810
0.5.810
1.5.800
0.5.801
0.5.790
1.5.790
0.5.780
1.5.780
1.5.770
0.5.770
0.5.760
1.5.760
0.5.750
1.5.750
0.5.740
1.5.740
1.5.730
0.5.730
1.5.720
0.5.721
1.5.710
0.5.710
0.5.700
1.5.700
0.5.690
1.5.690
0.5.680
1.5.680
0.5.670
1.5.670
0.5.660
1.5.661
1.5.650
0.5.650
0.5.640
1.5.641
1.5.630
0.5.630
0.5.620
1.5.620
0.5.610
1.5.610
1.5.601
0.5.601
1.5.591
0.5.590
0.5.580
1.5.580
0.5.570
1.5.570
0.5.561
1.5.560
0.5.550
1.5.551
1.5.540
0.5.540
1.5.530
0.5.530
0.5.520
1.5.520
0.5.510
1.5.510
1.5.500
0.5.500
0.5.490
1.5.490
0.5.481
1.5.480
0.5.470
1.5.471
1.5.460
0.5.460
0.5.450
1.5.450
1.5.440
0.5.440
0.5.430
1.5.430
1.5.420
0.5.420
0.5.410
1.5.410
1.5.400
0.5.400
0.5.391
1.5.390
0.5.381
1.5.381
0.5.370
1.5.370
1.5.360
0.5.360
0.5.350
1.5.350
0.5.340
1.5.340
0.5.331
1.5.331
1.5.320
0.5.320
1.5.310
0.5.310
1.5.300
0.5.300
0.5.290
1.5.290
1.5.280
0.5.280
1.5.270
0.5.271
1.5.260
0.5.261
1.5.250
0.5.250
1.5.241
0.5.240
1.5.230
0.5.231
1.5.221
0.5.221
0.5.211
1.5.210
0.5.200
1.5.200
1.5.191
0.5.190
0.5.180
1.5.180
0.5.170
1.5.170
0.5.160
1.5.161
0.5.150
1.5.151
0.5.140
1.5.140
1.5.130
0.5.130
0.5.120
1.5.120
1.5.110
0.5.110
1.5.100
0.5.100
0.5.90
1.5.90
1.5.81
0.5.80
0.5.70
1.5.70
0.5.60
1.5.61
1.5.50
0.5.51
0.5.40
1.5.40
0.5.30
1.5.30
1.5.20
0.5.20
0.5.11
1.5.11
0.4.1030
1.4.1030
1.4.1020
0.4.1020
0.4.1010
1.4.1010
0.4.1000
1.4.1001
1.4.990
0.4.990
1.4.980
0.4.980
0.4.970
1.4.970
0.4.960
1.4.961
1.4.951
0.4.950
1.4.940
0.4.941
0.4.930
0.4.920
1.4.920
0.4.910
1.4.910
0.4.900
1.4.900
0.4.890
1.4.891
1.4.880
0.4.880
1.4.870
0.4.870
0.4.861
1.4.860
0.4.850
1.4.850
1.4.841
0.4.840
1.4.831
0.4.830
0.4.821
1.4.820
1.4.810
0.4.810
1.4.800
0.4.800
0.4.790
1.4.790
1.4.780
0.4.780
0.4.770
1.4.770
0.4.761
1.4.760
0.4.740
1.4.741
1.4.730
0.4.730
0.4.720
1.4.721
1.4.710
0.4.710
0.4.700
1.4.700
1.4.690
0.4.690
0.4.680
1.4.680
1.4.670
0.4.670
1.4.660
0.4.660
1.4.650
0.4.650
0.4.641
1.4.640
1.4.630
0.4.630
1.4.620
0.4.620
1.4.610
0.4.610
0.4.600
1.4.601
1.4.590
0.4.590
1.4.580
0.4.580
1.4.570
0.4.571
1.4.561
0.4.561
0.4.550
1.4.550
0.4.540
1.4.541
1.4.530
0.4.530
0.4.520
1.4.520
1.4.510
0.4.510
1.4.500
0.4.500
0.4.491
1.4.490
0.4.480
1.4.480
0.4.470
1.4.470
0.4.460
1.4.460
0.4.450
1.4.450
0.4.440
1.4.440
1.4.430
0.4.430
0.4.420
1.4.420
0.4.411
1.4.410
1.4.400
0.4.400
0.4.390
1.4.390
1.4.380
0.4.380
0.4.370
1.4.370
0.4.360
1.4.360
1.4.350
0.4.350
1.4.340
0.4.340
0.4.330
1.4.331
1.4.320
0.4.320
1.4.310
0.4.310
1.4.300
0.4.300
0.4.290
1.4.290
1.4.280
0.4.280
0.4.270
1.4.270
1.4.260
0.4.260
0.4.250
1.4.250
0.4.240
1.4.240
1.4.230
0.4.230
1.4.220
0.4.221
0.4.210
1.4.210
0.4.200
1.4.200
1.4.190
0.4.190
1.4.180
0.4.180
0.4.170
1.4.170
0.4.160
1.4.160
1.4.150
0.4.150
0.4.140
1.4.140
1.4.131
0.4.130
1.4.110
0.4.110
1.4.100
0.4.100
0.4.90
1.4.91
0.4.80
1.4.80
0.4.70
1.4.71
0.4.60
1.4.60
1.4.50
0.4.50
1.4.40
0.4.40
0.4.30
1.4.30
1.4.20
0.4.20
0.3.2411
1.3.2411
0.3.2400
1.3.2401
0.3.2390
1.3.2390
0.3.2380
1.3.2380
0.3.2370
1.3.2370
1.3.2360
0.3.2360
1.3.2350
0.3.2351
0.3.2340
1.3.2340
1.3.2330
0.3.2330
1.3.2320
0.3.2321
1.3.2310
0.3.2311
0.3.2300
1.3.2300
1.3.2291
0.3.2290
0.3.2280
1.3.2280
0.3.2260
1.3.2260
1.3.2250
0.3.2250
1.3.2241
0.3.2240
0.3.2230
1.3.2230
0.3.2220
1.3.2220
1.3.2210
0.3.2210
0.3.2200
1.3.2200
1.3.2190
0.3.2190
1.3.2180
0.3.2180
0.3.2170
1.3.2170
0.3.2160
1.3.2160
1.3.2150
0.3.2150
0.3.2141
1.3.2140
0.3.2130
1.3.2130
0.3.2120
1.3.2120
0.3.2110
1.3.2110
1.3.2101
0.3.2101
0.3.2090
1.3.2091
0.3.2081
1.3.2080
0.3.2070
1.3.2070
1.3.2060
0.3.2061
1.3.2050
0.3.2050
0.3.2040
1.3.2040
0.3.2030
1.3.2030
0.3.2020
1.3.2020
0.3.2010
1.3.2010
1.3.2000
0.3.2000
1.3.1990
0.3.1990
0.3.1980
1.3.1980
0.3.1970
1.3.1970
1.3.1960
0.3.1960
0.3.1950
1.3.1950
0.3.1940
1.3.1940
0.3.1930
1.3.1930
1.3.1920
0.3.1920
1.3.1911
0.3.1910
0.3.1900
1.3.1900
0.3.1890
1.3.1891
0.3.1880
1.3.1880
1.3.1870
0.3.1870
0.3.1860
1.3.1860
0.3.1850
1.3.1850
1.3.1840
0.3.1840
1.3.1830
0.3.1830
0.3.1820
1.3.1820
0.3.1810
1.3.1810
0.3.1800
1.3.1800
0.3.1791
1.3.1790
0.3.1781
1.3.1780
0.3.1770
1.3.1770
0.3.1760
1.3.1761
0.3.1750
1.3.1751
0.3.1740
1.3.1740
0.3.1730
1.3.1730
0.3.1711
1.3.1710
0.3.1700
1.3.1700
1.3.1691
0.3.1690
0.3.1681
1.3.1680
0.3.1670
1.3.1670
1.3.1661
0.3.1661
1.3.1640
0.3.1640
1.3.1631
0.3.1631
0.3.1620
1.3.1620
1.3.1610
0.3.1610
0.3.1600
1.3.1600
1.3.1590
0.3.1590
0.3.1580
1.3.1580
0.3.1560
1.3.1560
1.3.1550
0.3.1550
1.3.1541
0.3.1540
1.3.1530
0.3.1530
0.3.1520
1.3.1520
1.3.1510
0.3.1510
0.3.1501
1.3.1500
1.3.1490
0.3.1490
0.3.1480
1.3.1480
0.3.1470
1.3.1470
1.3.1460
0.3.1460
0.3.1450
1.3.1450
1.3.1440
0.3.1440
0.3.1430
1.3.1430
1.3.1420
0.3.1420
1.3.1410
0.3.1410
1.3.1400
0.3.1400
0.3.1391
1.3.1390
1.3.1380
0.3.1380
0.3.1370
1.3.1370
1.3.1360
0.3.1360
0.3.1350
1.3.1350
1.3.1340
0.3.1340
0.3.1330
1.3.1330
0.3.1320
1.3.1320
0.3.1310
1.3.1310
1.3.1301
0.3.1300
1.3.1290
0.3.1290
0.3.1280
1.3.1281
0.3.1270
1.3.1270
0.3.1260
1.3.1260
0.3.1251
1.3.1250
0.3.1240
1.3.1241
1.3.1220
0.3.1220
1.3.1210
0.3.1210
1.3.1200
0.3.1200
1.3.1190
0.3.1190
1.3.1180
0.3.1180
1.3.1170
0.3.1171
1.3.1160
0.3.1160
1.3.1150
0.3.1150
1.3.1140
0.3.1141
1.3.1130
0.3.1130
1.3.1120
0.3.1120
0.3.1110
1.3.1110
1.3.1100
0.3.1100
0.3.1090
1.3.1090
1.3.1081
0.3.1080
1.3.1070
0.3.1071
1.3.1060
0.3.1060
0.3.1050
1.3.1050
0.3.1040
1.3.1040
1.3.1030
0.3.1030
0.3.1020
1.3.1020
0.3.1010
1.3.1010
0.3.1000
1.3.1001
1.3.990
0.3.990
0.3.980
1.3.980
0.3.960
1.3.960
0.3.950
1.3.950
0.3.941
1.3.940
1.3.930
0.3.930
1.3.921
0.3.920
0.3.910
1.3.910
1.3.901
0.3.900
1.3.891
0.3.890
1.3.880
0.3.880
0.3.870
1.3.870
1.3.860
0.3.861
1.3.851
0.3.850
1.3.840
0.3.840
0.3.830
1.3.830
0.3.820
1.3.820
1.3.810
0.3.810
1.3.790
0.3.790
0.3.781
1.3.780
1.3.771
0.3.770
1.3.761
0.3.760
1.3.750
0.3.750
0.3.730
1.3.731
0.3.720
1.3.720
1.3.710
0.3.710
1.3.700
0.3.700
1.3.690
0.3.691
0.3.680
1.3.681
1.3.670
0.3.670
0.3.660
1.3.660
0.3.650
1.3.650
1.3.640
0.3.640
0.3.610
1.3.610
1.3.601
0.3.600
0.3.590
1.3.590
1.3.580
0.3.580
1.3.570
0.3.570
0.3.550
1.3.550
1.3.540
0.3.540
0.3.530
1.3.530
0.3.520
1.3.520
0.3.510
1.3.510
0.3.500
1.3.500
0.3.490
1.3.490
0.3.481
1.3.480
0.3.470
1.3.471
0.3.460
1.3.460
0.3.440
1.3.441
1.3.431
0.3.430
0.3.420
1.3.420
0.3.410
1.3.410
1.3.400
0.3.400
1.3.390
0.3.390
0.3.380
1.3.380
1.3.370
0.3.371
1.3.350
0.3.350
0.3.340
1.3.341
1.3.330
0.3.330
0.3.320
1.3.320
1.3.310
0.3.310
1.3.300
0.3.300
1.3.290
0.3.291
0.3.281
1.3.280
1.3.271
0.3.270
0.3.260
1.3.260
0.3.250
1.3.250
0.3.240
1.3.240
0.3.230
1.3.230
0.3.220
1.3.220
1.3.210
0.3.210
0.3.200
1.3.201
0.3.190
1.3.191
1.3.181
0.3.180
0.3.171
1.3.171
0.3.160
1.3.160
1.3.150
0.3.150
0.3.140
1.3.141
1.3.130
0.3.131
1.3.120
0.3.120
0.3.110
1.3.110
0.3.101
1.3.100
1.3.91
0.3.91
1.3.80
0.3.80
1.3.70
0.3.71
0.3.40
0.3.30
0.3.20
0.3.10
0.3.00
0.2.550
0.2.530
0.2.520
0.2.510
0.2.500
0.2.490
0.2.470
0.2.460
0.2.440
0.2.430
0.2.420
0.2.410
0.2.400
0.2.390
0.2.380
0.2.370
0.2.360
0.2.350
0.2.340
0.2.330
0.2.320
0.2.310
0.2.301
0.2.290
0.2.281
0.2.270
0.2.260
0.2.250
0.2.240
0.2.231
0.2.220
0.2.210
0.2.201
0.2.191
0.2.180
0.2.171
0.2.160
0.2.150
0.2.141
0.2.130
0.2.120
0.2.110
0.2.100
0.2.90
0.2.81
0.2.70
0.2.60
0.2.50
0.2.40
0.2.30
0.2.20
0.2.11
0.2.00
0.2.0-beta.110
0.2.0-beta.100

Package Sidebar

Install

npm i @apaleo/angular-api-proxy-settings

Weekly Downloads

566

Version

19.0.7

License

Apache-2.0

Unpacked Size

879 kB

Total Files

75

Last publish

Collaborators

  • pgrm
  • apaleo-operations