Skip to content

Commit c7905d6

Browse files
committed
updated typescript angular sample
1 parent a56e0b7 commit c7905d6

File tree

32 files changed

+32
-32
lines changed

32 files changed

+32
-32
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.15-SNAPSHOT
1+
2.4.19-SNAPSHOT

samples/client/petstore/typescript-angular-v2/default/api/pet.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { Configuration } from '../configurat
3030
@Injectable()
3131
export class PetService {
3232

33-
protected basePath = 'http://petstore.swagger.io/v2';
33+
protected basePath = 'https://petstore.swagger.io/v2';
3434
public defaultHeaders = new Headers();
3535
public configuration = new Configuration();
3636

samples/client/petstore/typescript-angular-v2/default/api/store.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { Configuration } from '../configurat
2929
@Injectable()
3030
export class StoreService {
3131

32-
protected basePath = 'http://petstore.swagger.io/v2';
32+
protected basePath = 'https://petstore.swagger.io/v2';
3333
public defaultHeaders = new Headers();
3434
public configuration = new Configuration();
3535

samples/client/petstore/typescript-angular-v2/default/api/user.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { Configuration } from '../configurat
2929
@Injectable()
3030
export class UserService {
3131

32-
protected basePath = 'http://petstore.swagger.io/v2';
32+
protected basePath = 'https://petstore.swagger.io/v2';
3333
public defaultHeaders = new Headers();
3434
public configuration = new Configuration();
3535

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.15-SNAPSHOT
1+
2.4.19-SNAPSHOT

samples/client/petstore/typescript-angular-v2/npm/api/pet.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { Configuration } from '../configurat
3030
@Injectable()
3131
export class PetService {
3232

33-
protected basePath = 'http://petstore.swagger.io/v2';
33+
protected basePath = 'https://petstore.swagger.io/v2';
3434
public defaultHeaders = new Headers();
3535
public configuration = new Configuration();
3636

samples/client/petstore/typescript-angular-v2/npm/api/store.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { Configuration } from '../configurat
2929
@Injectable()
3030
export class StoreService {
3131

32-
protected basePath = 'http://petstore.swagger.io/v2';
32+
protected basePath = 'https://petstore.swagger.io/v2';
3333
public defaultHeaders = new Headers();
3434
public configuration = new Configuration();
3535

samples/client/petstore/typescript-angular-v2/npm/api/user.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { Configuration } from '../configurat
2929
@Injectable()
3030
export class UserService {
3131

32-
protected basePath = 'http://petstore.swagger.io/v2';
32+
protected basePath = 'https://petstore.swagger.io/v2';
3333
public defaultHeaders = new Headers();
3434
public configuration = new Configuration();
3535

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.15-SNAPSHOT
1+
2.4.19-SNAPSHOT

samples/client/petstore/typescript-angular-v2/with-interfaces/api/pet.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { PetServiceInterface } from './pet.serviceInt
3131
@Injectable()
3232
export class PetService implements PetServiceInterface {
3333

34-
protected basePath = 'http://petstore.swagger.io/v2';
34+
protected basePath = 'https://petstore.swagger.io/v2';
3535
public defaultHeaders = new Headers();
3636
public configuration = new Configuration();
3737

0 commit comments

Comments
 (0)