@ayasofyazilim/saas 0.0.113 → 0.0.115
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/update.yaml +1 -1
- package/ContractService/ContractServiceClient.ts +65 -65
- package/ContractService/core/ApiError.ts +20 -20
- package/ContractService/core/ApiRequestOptions.ts +20 -12
- package/ContractService/core/ApiResult.ts +6 -6
- package/ContractService/core/BaseHttpRequest.ts +9 -9
- package/ContractService/core/CancelablePromise.ts +125 -125
- package/ContractService/core/FetchHttpRequest.ts +21 -21
- package/ContractService/core/OpenAPI.ts +55 -55
- package/ContractService/core/request.ts +349 -340
- package/ContractService/index.ts +10 -9
- package/ContractService/schemas.gen.ts +12120 -12076
- package/ContractService/{services.gen.ts → sdk.gen.ts} +1973 -1882
- package/ContractService/types.gen.ts +6770 -4146
- package/TagService/schemas.gen.ts +5 -0
- package/TagService/types.gen.ts +2 -0
- package/package.json +1 -1
|
@@ -1305,6 +1305,11 @@ export const $UniRefund_TagService_Tags_TagDetailDto = {
|
|
|
1305
1305
|
},
|
|
1306
1306
|
additionalProperties: false
|
|
1307
1307
|
},
|
|
1308
|
+
vatStatementHeaderId: {
|
|
1309
|
+
type: 'string',
|
|
1310
|
+
format: 'uuid',
|
|
1311
|
+
nullable: true
|
|
1312
|
+
},
|
|
1308
1313
|
invoices: {
|
|
1309
1314
|
type: 'array',
|
|
1310
1315
|
items: {
|
package/TagService/types.gen.ts
CHANGED
|
@@ -365,6 +365,7 @@ export type UniRefund_TagService_Tags_TagDetailDto = {
|
|
|
365
365
|
status?: (number) | null;
|
|
366
366
|
refundMethod?: 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
367
367
|
};
|
|
368
|
+
vatStatementHeaderId?: (string) | null;
|
|
368
369
|
invoices?: Array<{
|
|
369
370
|
id?: string;
|
|
370
371
|
number?: (string) | null;
|
|
@@ -2315,6 +2316,7 @@ export type GetApiTagServiceTagByIdDetailResponse = ({
|
|
|
2315
2316
|
status?: (number) | null;
|
|
2316
2317
|
refundMethod?: 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
2317
2318
|
};
|
|
2319
|
+
vatStatementHeaderId?: (string) | null;
|
|
2318
2320
|
invoices?: Array<{
|
|
2319
2321
|
id?: string;
|
|
2320
2322
|
number?: (string) | null;
|