@ayasofyazilim/saas 0.0.69 → 0.0.71
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/.github/workflows/release.yaml +11 -0
- package/.github/workflows/update.yaml +47 -0
- package/ContractService/schemas.gen.ts +73 -119
- package/ContractService/services.gen.ts +1 -56
- package/ContractService/types.gen.ts +18 -107
- package/FinanceService/FinanceServiceClient.ts +44 -0
- package/FinanceService/core/ApiError.ts +21 -0
- package/FinanceService/core/ApiRequestOptions.ts +13 -0
- package/FinanceService/core/ApiResult.ts +7 -0
- package/FinanceService/core/BaseHttpRequest.ts +10 -0
- package/FinanceService/core/CancelablePromise.ts +126 -0
- package/FinanceService/core/FetchHttpRequest.ts +22 -0
- package/FinanceService/core/OpenAPI.ts +56 -0
- package/FinanceService/core/request.ts +341 -0
- package/FinanceService/index.ts +9 -0
- package/FinanceService/schemas.gen.ts +3970 -0
- package/FinanceService/services.gen.ts +225 -0
- package/FinanceService/types.gen.ts +760 -0
- package/TagService/schemas.gen.ts +6 -6
- package/TagService/types.gen.ts +1 -1
- package/TravellerService/schemas.gen.ts +1993 -1920
- package/TravellerService/services.gen.ts +148 -16
- package/TravellerService/types.gen.ts +303 -66
- package/generator.mjs +5 -0
- package/package.json +3 -2
|
@@ -407,7 +407,7 @@ export const $UniRefund_TagService_Refunds_RefundDto = {
|
|
|
407
407
|
nullable: true
|
|
408
408
|
},
|
|
409
409
|
refundMethod: {
|
|
410
|
-
enum: ['
|
|
410
|
+
enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
|
|
411
411
|
type: 'string'
|
|
412
412
|
}
|
|
413
413
|
},
|
|
@@ -624,7 +624,7 @@ export const $UniRefund_TagService_Tags_ProductGroupDto = {
|
|
|
624
624
|
} as const;
|
|
625
625
|
|
|
626
626
|
export const $UniRefund_TagService_Tags_RefundType = {
|
|
627
|
-
enum: ['
|
|
627
|
+
enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
|
|
628
628
|
type: 'string'
|
|
629
629
|
} as const;
|
|
630
630
|
|
|
@@ -671,7 +671,7 @@ export const $UniRefund_TagService_Tags_TagDetailDto = {
|
|
|
671
671
|
type: 'string'
|
|
672
672
|
},
|
|
673
673
|
refundType: {
|
|
674
|
-
enum: ['
|
|
674
|
+
enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
|
|
675
675
|
type: 'string'
|
|
676
676
|
},
|
|
677
677
|
issueDate: {
|
|
@@ -819,7 +819,7 @@ export const $UniRefund_TagService_Tags_TagDetailDto = {
|
|
|
819
819
|
nullable: true
|
|
820
820
|
},
|
|
821
821
|
refundMethod: {
|
|
822
|
-
enum: ['
|
|
822
|
+
enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
|
|
823
823
|
type: 'string'
|
|
824
824
|
}
|
|
825
825
|
},
|
|
@@ -971,7 +971,7 @@ export const $UniRefund_TagService_Tags_TagDto = {
|
|
|
971
971
|
type: 'string'
|
|
972
972
|
},
|
|
973
973
|
refundType: {
|
|
974
|
-
enum: ['
|
|
974
|
+
enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
|
|
975
975
|
type: 'string'
|
|
976
976
|
},
|
|
977
977
|
issueDate: {
|
|
@@ -1206,7 +1206,7 @@ export const $UniRefund_TagService_Tags_UpdateTagDto = {
|
|
|
1206
1206
|
type: 'string'
|
|
1207
1207
|
},
|
|
1208
1208
|
refundType: {
|
|
1209
|
-
enum: ['
|
|
1209
|
+
enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
|
|
1210
1210
|
type: 'string'
|
|
1211
1211
|
},
|
|
1212
1212
|
issueDate: {
|
package/TagService/types.gen.ts
CHANGED
|
@@ -103,7 +103,7 @@ export type UniRefund_TagService_Tags_ProductGroupDto = {
|
|
|
103
103
|
description?: string | null;
|
|
104
104
|
};
|
|
105
105
|
|
|
106
|
-
export type UniRefund_TagService_Tags_RefundType = '
|
|
106
|
+
export type UniRefund_TagService_Tags_RefundType = 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
107
107
|
|
|
108
108
|
export type UniRefund_TagService_Tags_SumTagsResponseDto = {
|
|
109
109
|
tagIds?: Array<(string)> | null;
|