@ayasofyazilim/saas 0.0.83 → 0.0.85
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/CRMService/CRMServiceClient.ts +6 -0
- package/CRMService/schemas.gen.ts +73 -0
- package/CRMService/services.gen.ts +173 -75
- package/CRMService/types.gen.ts +225 -80
- package/ContractService/schemas.gen.ts +52 -75
- package/ContractService/types.gen.ts +12 -11
- package/package.json +1 -1
|
@@ -1830,24 +1830,9 @@ export const $PagedResultDto_ContractStoreDetailedDto = {
|
|
|
1830
1830
|
type: 'string',
|
|
1831
1831
|
nullable: true
|
|
1832
1832
|
},
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
properties: {
|
|
1837
|
-
id: {
|
|
1838
|
-
type: 'string',
|
|
1839
|
-
format: 'uuid'
|
|
1840
|
-
},
|
|
1841
|
-
name: {
|
|
1842
|
-
maxLength: 255,
|
|
1843
|
-
minLength: 0,
|
|
1844
|
-
type: 'string'
|
|
1845
|
-
},
|
|
1846
|
-
isDefault: {
|
|
1847
|
-
type: 'boolean'
|
|
1848
|
-
}
|
|
1849
|
-
},
|
|
1850
|
-
additionalProperties: false
|
|
1833
|
+
contractSettingId: {
|
|
1834
|
+
type: 'string',
|
|
1835
|
+
format: 'uuid'
|
|
1851
1836
|
},
|
|
1852
1837
|
receiptType: {
|
|
1853
1838
|
enum: ['None', 'NoBarcodeNumber', 'NoBarcodeText', 'Barcode', 'QRCodeIntegration', 'UniRefundVoucherIntegration'],
|
|
@@ -4021,26 +4006,6 @@ export const $UniRefund_ContractService_ContractsForMerchant_ContractSettings_Co
|
|
|
4021
4006
|
additionalProperties: false
|
|
4022
4007
|
} as const;
|
|
4023
4008
|
|
|
4024
|
-
export const $UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingRestrictedDto = {
|
|
4025
|
-
required: ['id', 'name'],
|
|
4026
|
-
type: 'object',
|
|
4027
|
-
properties: {
|
|
4028
|
-
id: {
|
|
4029
|
-
type: 'string',
|
|
4030
|
-
format: 'uuid'
|
|
4031
|
-
},
|
|
4032
|
-
name: {
|
|
4033
|
-
maxLength: 255,
|
|
4034
|
-
minLength: 0,
|
|
4035
|
-
type: 'string'
|
|
4036
|
-
},
|
|
4037
|
-
isDefault: {
|
|
4038
|
-
type: 'boolean'
|
|
4039
|
-
}
|
|
4040
|
-
},
|
|
4041
|
-
additionalProperties: false
|
|
4042
|
-
} as const;
|
|
4043
|
-
|
|
4044
4009
|
export const $UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingUpdateDto = {
|
|
4045
4010
|
required: ['invoiceChannel', 'invoicingAddressCommonDataId', 'invoicingFrequency', 'name', 'receiptType', 'referenceNumber', 'termOfPayment'],
|
|
4046
4011
|
type: 'object',
|
|
@@ -4108,6 +4073,48 @@ export const $UniRefund_ContractService_ContractsForMerchant_ContractSettings_Co
|
|
|
4108
4073
|
additionalProperties: false
|
|
4109
4074
|
} as const;
|
|
4110
4075
|
|
|
4076
|
+
export const $UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateAndUpdateByListDto = {
|
|
4077
|
+
type: 'object',
|
|
4078
|
+
properties: {
|
|
4079
|
+
extraProperties: {
|
|
4080
|
+
type: 'object',
|
|
4081
|
+
additionalProperties: {},
|
|
4082
|
+
nullable: true,
|
|
4083
|
+
readOnly: true
|
|
4084
|
+
},
|
|
4085
|
+
contractStores: {
|
|
4086
|
+
type: 'array',
|
|
4087
|
+
items: {
|
|
4088
|
+
required: ['contractSettingId', 'contractTypeIdentifiersSubId', 'receiptType'],
|
|
4089
|
+
type: 'object',
|
|
4090
|
+
properties: {
|
|
4091
|
+
extraProperties: {
|
|
4092
|
+
type: 'object',
|
|
4093
|
+
additionalProperties: {},
|
|
4094
|
+
nullable: true,
|
|
4095
|
+
readOnly: true
|
|
4096
|
+
},
|
|
4097
|
+
contractTypeIdentifiersSubId: {
|
|
4098
|
+
type: 'string',
|
|
4099
|
+
format: 'uuid'
|
|
4100
|
+
},
|
|
4101
|
+
receiptType: {
|
|
4102
|
+
enum: ['None', 'NoBarcodeNumber', 'NoBarcodeText', 'Barcode', 'QRCodeIntegration', 'UniRefundVoucherIntegration'],
|
|
4103
|
+
type: 'string'
|
|
4104
|
+
},
|
|
4105
|
+
contractSettingId: {
|
|
4106
|
+
type: 'string',
|
|
4107
|
+
format: 'uuid'
|
|
4108
|
+
}
|
|
4109
|
+
},
|
|
4110
|
+
additionalProperties: false
|
|
4111
|
+
},
|
|
4112
|
+
nullable: true
|
|
4113
|
+
}
|
|
4114
|
+
},
|
|
4115
|
+
additionalProperties: false
|
|
4116
|
+
} as const;
|
|
4117
|
+
|
|
4111
4118
|
export const $UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateAndUpdateDto = {
|
|
4112
4119
|
required: ['contractSettingId', 'contractTypeIdentifiersSubId', 'receiptType'],
|
|
4113
4120
|
type: 'object',
|
|
@@ -4154,24 +4161,9 @@ export const $UniRefund_ContractService_ContractsForMerchant_ContractStores_Cont
|
|
|
4154
4161
|
type: 'string',
|
|
4155
4162
|
nullable: true
|
|
4156
4163
|
},
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
properties: {
|
|
4161
|
-
id: {
|
|
4162
|
-
type: 'string',
|
|
4163
|
-
format: 'uuid'
|
|
4164
|
-
},
|
|
4165
|
-
name: {
|
|
4166
|
-
maxLength: 255,
|
|
4167
|
-
minLength: 0,
|
|
4168
|
-
type: 'string'
|
|
4169
|
-
},
|
|
4170
|
-
isDefault: {
|
|
4171
|
-
type: 'boolean'
|
|
4172
|
-
}
|
|
4173
|
-
},
|
|
4174
|
-
additionalProperties: false
|
|
4164
|
+
contractSettingId: {
|
|
4165
|
+
type: 'string',
|
|
4166
|
+
format: 'uuid'
|
|
4175
4167
|
},
|
|
4176
4168
|
receiptType: {
|
|
4177
4169
|
enum: ['None', 'NoBarcodeNumber', 'NoBarcodeText', 'Barcode', 'QRCodeIntegration', 'UniRefundVoucherIntegration'],
|
|
@@ -4182,7 +4174,7 @@ export const $UniRefund_ContractService_ContractsForMerchant_ContractStores_Cont
|
|
|
4182
4174
|
} as const;
|
|
4183
4175
|
|
|
4184
4176
|
export const $UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto = {
|
|
4185
|
-
required: ['contractTypeIdentifiersSubId', 'id', 'receiptType'],
|
|
4177
|
+
required: ['contractSettingId', 'contractTypeIdentifiersSubId', 'id', 'receiptType'],
|
|
4186
4178
|
type: 'object',
|
|
4187
4179
|
properties: {
|
|
4188
4180
|
id: {
|
|
@@ -4225,24 +4217,9 @@ export const $UniRefund_ContractService_ContractsForMerchant_ContractStores_Cont
|
|
|
4225
4217
|
type: 'string',
|
|
4226
4218
|
format: 'uuid'
|
|
4227
4219
|
},
|
|
4228
|
-
|
|
4229
|
-
|
|
4230
|
-
|
|
4231
|
-
properties: {
|
|
4232
|
-
id: {
|
|
4233
|
-
type: 'string',
|
|
4234
|
-
format: 'uuid'
|
|
4235
|
-
},
|
|
4236
|
-
name: {
|
|
4237
|
-
maxLength: 255,
|
|
4238
|
-
minLength: 0,
|
|
4239
|
-
type: 'string'
|
|
4240
|
-
},
|
|
4241
|
-
isDefault: {
|
|
4242
|
-
type: 'boolean'
|
|
4243
|
-
}
|
|
4244
|
-
},
|
|
4245
|
-
additionalProperties: false
|
|
4220
|
+
contractSettingId: {
|
|
4221
|
+
type: 'string',
|
|
4222
|
+
format: 'uuid'
|
|
4246
4223
|
},
|
|
4247
4224
|
receiptType: {
|
|
4248
4225
|
enum: ['None', 'NoBarcodeNumber', 'NoBarcodeText', 'Barcode', 'QRCodeIntegration', 'UniRefundVoucherIntegration'],
|
|
@@ -232,12 +232,6 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
232
232
|
contractSettingId?: string;
|
|
233
233
|
};
|
|
234
234
|
|
|
235
|
-
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingRestrictedDto = {
|
|
236
|
-
id: string;
|
|
237
|
-
name: string;
|
|
238
|
-
isDefault?: boolean;
|
|
239
|
-
};
|
|
240
|
-
|
|
241
235
|
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingUpdateDto = {
|
|
242
236
|
readonly extraProperties?: {
|
|
243
237
|
[key: string]: unknown;
|
|
@@ -259,6 +253,13 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
259
253
|
deskoScanner?: boolean;
|
|
260
254
|
};
|
|
261
255
|
|
|
256
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateAndUpdateByListDto = {
|
|
257
|
+
readonly extraProperties?: {
|
|
258
|
+
[key: string]: unknown;
|
|
259
|
+
} | null;
|
|
260
|
+
contractStores?: Array<UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateAndUpdateDto> | null;
|
|
261
|
+
};
|
|
262
|
+
|
|
262
263
|
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateAndUpdateDto = {
|
|
263
264
|
readonly extraProperties?: {
|
|
264
265
|
[key: string]: unknown;
|
|
@@ -273,7 +274,7 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractStores_Contra
|
|
|
273
274
|
name?: string | null;
|
|
274
275
|
fullAddress?: string | null;
|
|
275
276
|
manager?: string | null;
|
|
276
|
-
|
|
277
|
+
contractSettingId?: string;
|
|
277
278
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
278
279
|
};
|
|
279
280
|
|
|
@@ -287,7 +288,7 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractStores_Contra
|
|
|
287
288
|
deleterId?: string | null;
|
|
288
289
|
deletionTime?: string | null;
|
|
289
290
|
contractTypeIdentifiersSubId: string;
|
|
290
|
-
|
|
291
|
+
contractSettingId: string;
|
|
291
292
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
292
293
|
};
|
|
293
294
|
|
|
@@ -1300,10 +1301,10 @@ export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractSt
|
|
|
1300
1301
|
|
|
1301
1302
|
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData = {
|
|
1302
1303
|
id: string;
|
|
1303
|
-
requestBody?:
|
|
1304
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateAndUpdateByListDto;
|
|
1304
1305
|
};
|
|
1305
1306
|
|
|
1306
|
-
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse = UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto
|
|
1307
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse = Array<UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto>;
|
|
1307
1308
|
|
|
1308
1309
|
export type GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData = {
|
|
1309
1310
|
id: string;
|
|
@@ -2047,7 +2048,7 @@ export type $OpenApiTs = {
|
|
|
2047
2048
|
/**
|
|
2048
2049
|
* Success
|
|
2049
2050
|
*/
|
|
2050
|
-
200: UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto
|
|
2051
|
+
200: Array<UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto>;
|
|
2051
2052
|
/**
|
|
2052
2053
|
* Bad Request
|
|
2053
2054
|
*/
|