@gooday_corp/gooday-api-client 1.3.5 → 1.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/VERSION +1 -1
- package/api.ts +1 -0
- package/configuration.ts +1 -2
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.12.0
|
package/api.ts
CHANGED
|
@@ -4937,6 +4937,7 @@ export const NotificationEntityTypeEnum = {
|
|
|
4937
4937
|
FriendInviteReject: 'FRIEND_INVITE_REJECT',
|
|
4938
4938
|
UserOnboard: 'USER_ONBOARD',
|
|
4939
4939
|
BusinessBookingCreate: 'BUSINESS_BOOKING_CREATE',
|
|
4940
|
+
BusinessBookingWithoutServiceCreate: 'BUSINESS_BOOKING_WITHOUT_SERVICE_CREATE',
|
|
4940
4941
|
BookingCreate: 'BOOKING_CREATE',
|
|
4941
4942
|
BookingCreateForUser: 'BOOKING_CREATE_FOR_USER',
|
|
4942
4943
|
BookingCreateMadeByBusiness: 'BOOKING_CREATE_MADE_BY_BUSINESS',
|
package/configuration.ts
CHANGED
|
@@ -90,11 +90,10 @@ export class Configuration {
|
|
|
90
90
|
this.basePath = param.basePath;
|
|
91
91
|
this.serverIndex = param.serverIndex;
|
|
92
92
|
this.baseOptions = {
|
|
93
|
+
...param.baseOptions,
|
|
93
94
|
headers: {
|
|
94
95
|
...param.baseOptions?.headers,
|
|
95
|
-
'User-Agent': "OpenAPI-Generator/typescript-axios"
|
|
96
96
|
},
|
|
97
|
-
...param.baseOptions
|
|
98
97
|
};
|
|
99
98
|
this.formDataCtor = param.formDataCtor;
|
|
100
99
|
}
|