1
+ // The file contents for the current environment will overwrite these during build.
2
+ // The build system defaults to the dev environment which uses `environment.ts`, but if you do
3
+ // `ng build --env=prod` then `environment.prod.ts` will be used instead.
4
+ // The list of which env maps to which file can be found in `.angular-cli.json`.
5
+
6
+ export const environment = {
7
+ production : true ,
8
+
9
+ /*Get All Services*/
10
+ getAllZonePath : "/admin-service/api/rest/v1/manage/get-all-zones" ,
11
+ getAllLocalityPath : "/admin-service/api/rest/v1/manage/get-all-localities" ,
12
+ getAllVenueCategoryPath : "/admin-service/api/rest/v1/manage-venues/get-all-venue-categories" ,
13
+ getAllMoviePath : "/admin-service/api/rest/v1/manage-movies/get-all-movies" ,
14
+ getAllGenrePath : "/admin-service/api/rest/v1/manage-movies/get-all-genres" ,
15
+ viewCompanyPath : "/admin-service/api/rest/v1/manage-companies/get-all-companies" ,
16
+ getAllActiveCompanyPath : "/admin-service/api/rest/v1/manage-companies/get-all-active-companies" ,
17
+ viewAllVenuePath : "/admin-service/api/rest/v1/manage-venues/get-all-venues" ,
18
+ getAllVenueByCompanyPath : "/admin-service/api/rest/v1/manage-venues/get-venues-of-company" ,
19
+ viewAllScreenPath : "/admin-service/api/rest/v1/manage-screens/get-screens-of-venue" ,
20
+ getAllClassesByScreen : "/admin-service/api/rest/v1/manage-seat-layout/get-all-classs-of-screen" ,
21
+ getAllChargePath : "/fare-service/api/rest/v1/charge/get/all" ,
22
+ getAllTaxPath : "/fare-service/api/rest/v1/tax/get/all" ,
23
+ getAllFarePath : "/fare-service/api/rest/v1/fare/get/all" ,
24
+ getFarePath : "/fare-service/api/rest/v1/fare/get" ,
25
+ getAllExperience : "/admin-service/api/rest/v1/manage-screens/all/experience" ,
26
+
27
+ //Publish Module
28
+ deletePublishShowsPath : "/publish-service/api/rest/v1/reservation-publish/delete-published-shows" ,
29
+ fetchLastPublishScreenDate : "/publish-service/api/rest/v1/reservation-publish/fetch-last-published-date-for-screen" ,
30
+ newzonePath : "/publish-service/api/rest/v1/reservation-publish/setup-new-zone" ,
31
+ savePublishData : "/publish-service/api/rest/v1/reservation-publish/publish-shows" ,
32
+ editPublishData : "/publish-service/api/rest/v1/reservation-publish/modify-published-shows" ,
33
+ getPublishedShows : "/publish-service/api/rest/v1/reservation-publish/get-published-shows" ,
34
+ approvePublishedShows : "/publish-service/api/rest/v1/reservation-publish/approve-shows" ,
35
+ /*CRUD Services*/
36
+ // Screen Module
37
+ addScreenPath : "/admin-service/api/rest/v1/manage-screens/add-screen" ,
38
+ addClassPath : "/admin-service/api/rest/v1/manage-seat-layout/add-class" ,
39
+ addClassesAndSeatsPath : "/admin-service/api/rest/v1/manage-seat-layout/add-classes-seat-layout" ,
40
+ addScreenLayoutToClassPath : "/admin-service/api/rest/v1/manage-seat-layout/add-seat-layout-to-class" ,
41
+ deleteScreenPath : "/admin-service/api/rest/v1/manage-screens/delete-screen" ,
42
+
43
+ updateScreenPath : "/admin-service/api/rest/v1/manage-screens/update-screen" ,
44
+ updateClassPath : "/admin-service/api/rest/v1/manage-seat-layout/update-class" ,
45
+ updateScreenLayoutToClassPath : "/admin-service/api/rest/v1/manage-seat-layout/update-seat-layout-of-class" ,
46
+
47
+ viewAllClassesForScreenPath : "/admin-service/api/rest/v1/manage-seat-layout/get-all-classs-of-screen" ,
48
+ viewAllSeatLayoutForClassPath : "/admin-service/api/rest/v1/manage-seat-layout/get-seat-layout-of-class" ,
49
+ deleteScreenLayoutToClassPath : "/admin-service/api/rest/v1/manage-seat-layout/delete-seat-layout-of-class" ,
50
+
51
+ /*CRUD Services*/
52
+ //Zone
53
+ addZonePath : "/admin-service/api/rest/v1/manage/add-zone" ,
54
+ updateZonePath : "/admin-service/api/rest/v1/manage/update-zone" ,
55
+ deleteZonePath : "/admin-service/api/rest/v1/manage/delete-zone" ,
56
+
57
+ //Locality
58
+ addLocalityPath : "/admin-service/api/rest/v1/manage/add-locality" ,
59
+ updateLocalityPath : "/admin-service/api/rest/v1/manage/update-locality" ,
60
+ deleteLocalityPath : "/admin-service/api/rest/v1/manage/delete-locality" ,
61
+
62
+ //Venue Category
63
+ addVenueCategoryPath : "/admin-service/api/rest/v1/manage-venues/add-venue-category" ,
64
+ updateVenueCategoryPath : "/admin-service/api/rest/v1/manage-venues/update-venue-category" ,
65
+ deleteVenueCategoryPath : "/admin-service/api/rest/v1/manage-venues/delete-venue-category" ,
66
+
67
+ //Movie
68
+ addMoviePath : "/admin-service/api/rest/v1/manage-movies/add-movie" ,
69
+ updateMoviePath : "/admin-service/api/rest/v1/manage-movies/update-movie" ,
70
+ deleteMoviePath : "/admin-service/api/rest/v1/manage-movies/delete-movie" ,
71
+
72
+ //Genre
73
+ addGenrePath : "/admin-service/api/rest/v1/manage-movies/add-genre" ,
74
+ updateGenrePath : "/admin-service/api/rest/v1/manage-movies/update-genre" ,
75
+ deleteGenrePath : "/admin-service/api/rest/v1/manage-movies/delete-genre" ,
76
+
77
+ // Module-operation
78
+ viewAllModuleOperationsPath : "/rbac-service/api/rest/v1/module/fetch-all-module-operations" ,
79
+ deleteModuleOperationsPath : "/rbac-service/api/rest/v1/module-operation/delete" ,
80
+ updateModuleAndOperationPath : "/rbac-service/api/rest/v1/module-operation/modify" ,
81
+ addModuleAndOperationPath : "/rbac-service/api/rest/v1/module/create-module-operation" ,
82
+
83
+ fetchAllModulesPath : "/rbac-service/api/rest/v1/role/get/user/operation/access" ,
84
+ // User Management
85
+ authenticate : "/user-service/api/rest/v1/user/authenticate" ,
86
+ getAllRolePath : "/rbac-service/api/rest/v1/role/get-all" ,
87
+ addUserPath : "/user-service/api/rest/v1/user/profile/create" ,
88
+ updateUserProfilePath : "/user-service/api/rest/v1/user/profile/update" ,
89
+ retrieveUserProfilePath : "/user-service/api/rest/v1/user/profile/retrieve" ,
90
+ updatePassword : "/user-service/api/rest/v1/user/password/update" ,
91
+
92
+ //Company
93
+ addCompanyPath : "/admin-service/api/rest/v1/manage-companies/add-company" ,
94
+ updateCompanyPath : "/admin-service/api/rest/v1/manage-companies/update-company" ,
95
+ deleteCompanyPath : "/admin-service/api/rest/v1/manage-companies/delete-company" ,
96
+ getParticularCompany : "/admin-service/api/rest/v1/manage-companies/get-company-details" ,
97
+ //Venue
98
+ addVenuePath : "/admin-service/api/rest/v1/manage-venues/add-venue" ,
99
+ updateVenuePath : "/admin-service/api/rest/v1/manage-venues/update-venue" ,
100
+ deleteVenuePath : "/admin-service/api/rest/v1/manage-venues/delete-venue" ,
101
+ getParticularVenuePath : "/admin-service/api/rest/v1/manage-venues/get-venue-details" ,
102
+ //Charge
103
+ addChargePath : "/admin-service/api/rest/v1/charge/create" ,
104
+ updateChargePath : "/admin-service/api/rest/v1/charge/update" ,
105
+ deleteChargePath : "/admin-service/api/rest/v1/charge/delete" ,
106
+
107
+ //Fare
108
+ addFarePath : "/fare-service/api/rest/v1/fare/create" ,
109
+ updateFarePath : "/fare-service/api/rest/v1/fare/update" ,
110
+ deleteFarePath : "/fare-service/api/rest/v1/fare/delete" ,
111
+
112
+ //Tax
113
+ addTaxPath : "/fare-service/api/rest/v1/tax/create" ,
114
+ updateTaxPath : "/fare-service/api/rest/v1/tax/update" ,
115
+ deleteTaxPath : "/fare-service/api/rest/v1/tax/delete" ,
116
+
117
+ getAllCountries : "/location-service/api/rest/v1/location/country/all" ,
118
+ getAllStates : "/location-service/api/rest/v1/location/region/all" ,
119
+
120
+ } ;
0 commit comments