@ayasofyazilim/saas 0.0.14 → 0.0.15
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/AccountService/schemas.gen.ts +4 -24
- package/AccountService/types.gen.ts +0 -17
- package/AdministrationService/schemas.gen.ts +7 -11
- package/AdministrationService/types.gen.ts +0 -5
- package/IdentityService/schemas.gen.ts +10 -54
- package/IdentityService/services.gen.ts +1 -25
- package/IdentityService/types.gen.ts +0 -271
- package/MerchantService/MerchantServiceClient.ts +44 -0
- package/MerchantService/core/ApiError.ts +21 -0
- package/MerchantService/core/ApiRequestOptions.ts +13 -0
- package/MerchantService/core/ApiResult.ts +7 -0
- package/MerchantService/core/BaseHttpRequest.ts +10 -0
- package/MerchantService/core/CancelablePromise.ts +126 -0
- package/MerchantService/core/FetchHttpRequest.ts +22 -0
- package/MerchantService/core/OpenAPI.ts +56 -0
- package/MerchantService/core/request.ts +341 -0
- package/MerchantService/index.ts +9 -0
- package/MerchantService/schemas.gen.ts +6782 -0
- package/MerchantService/services.gen.ts +334 -0
- package/MerchantService/types.gen.ts +5088 -0
- package/ProjectService.json +2937 -2937
- package/SaasService/schemas.gen.ts +5 -5
- package/generator.mjs +8 -1
- package/package.json +3 -2
- package/swagger.json +4794 -4794
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
|
-
export const $
|
|
3
|
+
export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Payment_Plans_GatewayPlanDto__Volo_Payment_Application_Contracts__Version_8_0_2_0__Culture_neutral__PublicKeyToken_null__ = {
|
|
4
4
|
type: 'object',
|
|
5
5
|
properties: {
|
|
6
6
|
items: {
|
|
@@ -39,7 +39,7 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Payment_Plans_Gat
|
|
|
39
39
|
additionalProperties: false
|
|
40
40
|
} as const;
|
|
41
41
|
|
|
42
|
-
export const $
|
|
42
|
+
export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Payment_Plans_PlanDto__Volo_Payment_Application_Contracts__Version_8_0_2_0__Culture_neutral__PublicKeyToken_null__ = {
|
|
43
43
|
type: 'object',
|
|
44
44
|
properties: {
|
|
45
45
|
items: {
|
|
@@ -78,7 +78,7 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Payment_Plans_Pla
|
|
|
78
78
|
additionalProperties: false
|
|
79
79
|
} as const;
|
|
80
80
|
|
|
81
|
-
export const $
|
|
81
|
+
export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Payment_Requests_PaymentRequestWithDetailsDto__Volo_Payment_Application_Contracts__Version_8_0_2_0__Culture_neutral__PublicKeyToken_null__ = {
|
|
82
82
|
type: 'object',
|
|
83
83
|
properties: {
|
|
84
84
|
items: {
|
|
@@ -191,7 +191,7 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Payment_Requests_
|
|
|
191
191
|
additionalProperties: false
|
|
192
192
|
} as const;
|
|
193
193
|
|
|
194
|
-
export const $
|
|
194
|
+
export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Saas_Host_Dtos_EditionDto__Volo_Saas_Host_Application_Contracts__Version_8_0_2_0__Culture_neutral__PublicKeyToken_null__ = {
|
|
195
195
|
type: 'object',
|
|
196
196
|
properties: {
|
|
197
197
|
items: {
|
|
@@ -243,7 +243,7 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Saas_Host_Dtos_Ed
|
|
|
243
243
|
additionalProperties: false
|
|
244
244
|
} as const;
|
|
245
245
|
|
|
246
|
-
export const $
|
|
246
|
+
export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Saas_Host_Dtos_SaasTenantDto__Volo_Saas_Host_Application_Contracts__Version_8_0_2_0__Culture_neutral__PublicKeyToken_null__ = {
|
|
247
247
|
type: 'object',
|
|
248
248
|
properties: {
|
|
249
249
|
items: {
|
package/generator.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import SwaggerParser from "@apidevtools/swagger-parser";
|
|
|
3
3
|
import fs from 'fs';
|
|
4
4
|
|
|
5
5
|
const BASE_URL = "http://192.168.1.105:";
|
|
6
|
-
const WEBGATEWAY_PORT =
|
|
6
|
+
const WEBGATEWAY_PORT = 44336;
|
|
7
7
|
const api_list = [
|
|
8
8
|
{
|
|
9
9
|
input: 'swagger-json/AuthServer',
|
|
@@ -19,6 +19,7 @@ const api_list = [
|
|
|
19
19
|
{
|
|
20
20
|
input: "swagger-json/Backer",
|
|
21
21
|
output: 'Backer',
|
|
22
|
+
port: 44325,
|
|
22
23
|
dereference: true
|
|
23
24
|
},
|
|
24
25
|
{
|
|
@@ -41,6 +42,12 @@ const api_list = [
|
|
|
41
42
|
output: 'Setting',
|
|
42
43
|
port: 44515,
|
|
43
44
|
dereference: false
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
input: "swagger-json/Merchant",
|
|
48
|
+
output: 'Merchant',
|
|
49
|
+
port: 44335,
|
|
50
|
+
dereference: true
|
|
44
51
|
}
|
|
45
52
|
]
|
|
46
53
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ayasofyazilim/saas",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "Ayasofyazılım SAAS",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./AccountService": "./AccountService/index.ts",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"./IdentityService": "./IdentityService/index.ts",
|
|
10
10
|
"./SaasService": "./SaasService/index.ts",
|
|
11
11
|
"./SettingService": "./SettingService/index.ts",
|
|
12
|
-
"./BackerService": "./BackerService/index.ts"
|
|
12
|
+
"./BackerService": "./BackerService/index.ts",
|
|
13
|
+
"./MerchantService": "./MerchantService/index.ts"
|
|
13
14
|
},
|
|
14
15
|
"scripts": {
|
|
15
16
|
"gen:all": "node generator.mjs",
|