@ayasofyazilim/saas 0.0.72 → 0.0.74
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/AdministrationService/AdministrationServiceClient.ts +3 -0
- package/AdministrationService/schemas.gen.ts +734 -0
- package/AdministrationService/services.gen.ts +67 -1
- package/AdministrationService/types.gen.ts +183 -0
- package/CRMService/schemas.gen.ts +180 -7
- package/CRMService/services.gen.ts +37 -1
- package/CRMService/types.gen.ts +77 -5
- package/FinanceService/schemas.gen.ts +219 -51
- package/FinanceService/types.gen.ts +31 -12
- package/RefundService/RefundServiceClient.ts +44 -0
- package/RefundService/core/ApiError.ts +21 -0
- package/RefundService/core/ApiRequestOptions.ts +13 -0
- package/RefundService/core/ApiResult.ts +7 -0
- package/RefundService/core/BaseHttpRequest.ts +10 -0
- package/RefundService/core/CancelablePromise.ts +126 -0
- package/RefundService/core/FetchHttpRequest.ts +22 -0
- package/RefundService/core/OpenAPI.ts +56 -0
- package/RefundService/core/request.ts +341 -0
- package/RefundService/index.ts +9 -0
- package/RefundService/schemas.gen.ts +4077 -0
- package/RefundService/services.gen.ts +300 -0
- package/RefundService/types.gen.ts +826 -0
- package/generator.mjs +5 -0
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import type { CancelablePromise } from './core/CancelablePromise';
|
|
4
4
|
import type { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
5
|
-
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiAbpMultiTenancyTenantsByNameByNameData, GetApiAbpMultiTenancyTenantsByNameByNameResponse, GetApiAbpMultiTenancyTenantsByIdByIdData, GetApiAbpMultiTenancyTenantsByIdByIdResponse, GetApiAuditLoggingAuditLogsData, GetApiAuditLoggingAuditLogsResponse, GetApiAuditLoggingAuditLogsByIdData, GetApiAuditLoggingAuditLogsByIdResponse, GetApiAuditLoggingAuditLogsStatisticsErrorRateData, GetApiAuditLoggingAuditLogsStatisticsErrorRateResponse, GetApiAuditLoggingAuditLogsStatisticsAverageExecutionDurationPerDayData, GetApiAuditLoggingAuditLogsStatisticsAverageExecutionDurationPerDayResponse, GetApiAuditLoggingAuditLogsEntityChangesData, GetApiAuditLoggingAuditLogsEntityChangesResponse, GetApiAuditLoggingAuditLogsEntityChangesWithUsernameData, GetApiAuditLoggingAuditLogsEntityChangesWithUsernameResponse, GetApiAuditLoggingAuditLogsEntityChangeWithUsernameByEntityChangeIdData, GetApiAuditLoggingAuditLogsEntityChangeWithUsernameByEntityChangeIdResponse, GetApiAuditLoggingAuditLogsEntityChangesByEntityChangeIdData, GetApiAuditLoggingAuditLogsEntityChangesByEntityChangeIdResponse, GetApiSettingManagementEmailingResponse, PostApiSettingManagementEmailingData, PostApiSettingManagementEmailingResponse, PostApiSettingManagementEmailingSendTestEmailData, PostApiSettingManagementEmailingSendTestEmailResponse, GetApiFeatureManagementFeaturesData, GetApiFeatureManagementFeaturesResponse, PutApiFeatureManagementFeaturesData, PutApiFeatureManagementFeaturesResponse, DeleteApiFeatureManagementFeaturesData, DeleteApiFeatureManagementFeaturesResponse, PostApiGdprRequestsPrepareDataResponse, GetApiGdprRequestsDownloadTokenData, GetApiGdprRequestsDownloadTokenResponse, GetApiGdprRequestsDataByRequestIdData, GetApiGdprRequestsDataByRequestIdResponse, GetApiGdprRequestsIsRequestAllowedResponse, GetApiGdprRequestsListData, GetApiGdprRequestsListResponse, DeleteApiGdprRequestsResponse, GetApiLanguageManagementLanguagesAllResponse, GetApiLanguageManagementLanguagesData, GetApiLanguageManagementLanguagesResponse, PostApiLanguageManagementLanguagesData, PostApiLanguageManagementLanguagesResponse, GetApiLanguageManagementLanguagesByIdData, GetApiLanguageManagementLanguagesByIdResponse, PutApiLanguageManagementLanguagesByIdData, PutApiLanguageManagementLanguagesByIdResponse, DeleteApiLanguageManagementLanguagesByIdData, DeleteApiLanguageManagementLanguagesByIdResponse, PutApiLanguageManagementLanguagesByIdSetAsDefaultData, PutApiLanguageManagementLanguagesByIdSetAsDefaultResponse, GetApiLanguageManagementLanguagesResourcesResponse, GetApiLanguageManagementLanguagesCultureListResponse, GetApiLanguageManagementLanguageTextsData, GetApiLanguageManagementLanguageTextsResponse, GetApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameData, GetApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameResponse, PutApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameData, PutApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameResponse, PutApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameRestoreData, PutApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameRestoreResponse, GetApiPermissionManagementPermissionsData, GetApiPermissionManagementPermissionsResponse, PutApiPermissionManagementPermissionsData, PutApiPermissionManagementPermissionsResponse, GetApiAuditLoggingSettingsResponse, PutApiAuditLoggingSettingsData, PutApiAuditLoggingSettingsResponse, GetApiAuditLoggingSettingsGlobalResponse, PutApiAuditLoggingSettingsGlobalData, PutApiAuditLoggingSettingsGlobalResponse, GetApiTextTemplateManagementTemplateContentsData, GetApiTextTemplateManagementTemplateContentsResponse, PutApiTextTemplateManagementTemplateContentsData, PutApiTextTemplateManagementTemplateContentsResponse, PutApiTextTemplateManagementTemplateContentsRestoreToDefaultData, PutApiTextTemplateManagementTemplateContentsRestoreToDefaultResponse, GetApiTextTemplateManagementTemplateDefinitionsData, GetApiTextTemplateManagementTemplateDefinitionsResponse, GetApiTextTemplateManagementTemplateDefinitionsByNameData, GetApiTextTemplateManagementTemplateDefinitionsByNameResponse, GetApiSettingManagementTimezoneResponse, PostApiSettingManagementTimezoneData, PostApiSettingManagementTimezoneResponse, GetApiSettingManagementTimezoneTimezonesResponse } from './types.gen';
|
|
5
|
+
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiAbpMultiTenancyTenantsByNameByNameData, GetApiAbpMultiTenancyTenantsByNameByNameResponse, GetApiAbpMultiTenancyTenantsByIdByIdData, GetApiAbpMultiTenancyTenantsByIdByIdResponse, GetApiAuditLoggingAuditLogsData, GetApiAuditLoggingAuditLogsResponse, GetApiAuditLoggingAuditLogsByIdData, GetApiAuditLoggingAuditLogsByIdResponse, GetApiAuditLoggingAuditLogsStatisticsErrorRateData, GetApiAuditLoggingAuditLogsStatisticsErrorRateResponse, GetApiAuditLoggingAuditLogsStatisticsAverageExecutionDurationPerDayData, GetApiAuditLoggingAuditLogsStatisticsAverageExecutionDurationPerDayResponse, GetApiAuditLoggingAuditLogsEntityChangesData, GetApiAuditLoggingAuditLogsEntityChangesResponse, GetApiAuditLoggingAuditLogsEntityChangesWithUsernameData, GetApiAuditLoggingAuditLogsEntityChangesWithUsernameResponse, GetApiAuditLoggingAuditLogsEntityChangeWithUsernameByEntityChangeIdData, GetApiAuditLoggingAuditLogsEntityChangeWithUsernameByEntityChangeIdResponse, GetApiAuditLoggingAuditLogsEntityChangesByEntityChangeIdData, GetApiAuditLoggingAuditLogsEntityChangesByEntityChangeIdResponse, PostApiAdministrationServiceCountrySettingsForTenantData, PostApiAdministrationServiceCountrySettingsForTenantResponse, GetApiAdministrationServiceCountrySettingsResponse, PostApiAdministrationServiceCountrySettingsResponse, GetApiSettingManagementEmailingResponse, PostApiSettingManagementEmailingData, PostApiSettingManagementEmailingResponse, PostApiSettingManagementEmailingSendTestEmailData, PostApiSettingManagementEmailingSendTestEmailResponse, GetApiFeatureManagementFeaturesData, GetApiFeatureManagementFeaturesResponse, PutApiFeatureManagementFeaturesData, PutApiFeatureManagementFeaturesResponse, DeleteApiFeatureManagementFeaturesData, DeleteApiFeatureManagementFeaturesResponse, PostApiGdprRequestsPrepareDataResponse, GetApiGdprRequestsDownloadTokenData, GetApiGdprRequestsDownloadTokenResponse, GetApiGdprRequestsDataByRequestIdData, GetApiGdprRequestsDataByRequestIdResponse, GetApiGdprRequestsIsRequestAllowedResponse, GetApiGdprRequestsListData, GetApiGdprRequestsListResponse, DeleteApiGdprRequestsResponse, GetApiLanguageManagementLanguagesAllResponse, GetApiLanguageManagementLanguagesData, GetApiLanguageManagementLanguagesResponse, PostApiLanguageManagementLanguagesData, PostApiLanguageManagementLanguagesResponse, GetApiLanguageManagementLanguagesByIdData, GetApiLanguageManagementLanguagesByIdResponse, PutApiLanguageManagementLanguagesByIdData, PutApiLanguageManagementLanguagesByIdResponse, DeleteApiLanguageManagementLanguagesByIdData, DeleteApiLanguageManagementLanguagesByIdResponse, PutApiLanguageManagementLanguagesByIdSetAsDefaultData, PutApiLanguageManagementLanguagesByIdSetAsDefaultResponse, GetApiLanguageManagementLanguagesResourcesResponse, GetApiLanguageManagementLanguagesCultureListResponse, GetApiLanguageManagementLanguageTextsData, GetApiLanguageManagementLanguageTextsResponse, GetApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameData, GetApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameResponse, PutApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameData, PutApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameResponse, PutApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameRestoreData, PutApiLanguageManagementLanguageTextsByResourceNameByCultureNameByNameRestoreResponse, GetApiPermissionManagementPermissionsData, GetApiPermissionManagementPermissionsResponse, PutApiPermissionManagementPermissionsData, PutApiPermissionManagementPermissionsResponse, GetApiAuditLoggingSettingsResponse, PutApiAuditLoggingSettingsData, PutApiAuditLoggingSettingsResponse, GetApiAuditLoggingSettingsGlobalResponse, PutApiAuditLoggingSettingsGlobalData, PutApiAuditLoggingSettingsGlobalResponse, GetApiTextTemplateManagementTemplateContentsData, GetApiTextTemplateManagementTemplateContentsResponse, PutApiTextTemplateManagementTemplateContentsData, PutApiTextTemplateManagementTemplateContentsResponse, PutApiTextTemplateManagementTemplateContentsRestoreToDefaultData, PutApiTextTemplateManagementTemplateContentsRestoreToDefaultResponse, GetApiTextTemplateManagementTemplateDefinitionsData, GetApiTextTemplateManagementTemplateDefinitionsResponse, GetApiTextTemplateManagementTemplateDefinitionsByNameData, GetApiTextTemplateManagementTemplateDefinitionsByNameResponse, GetApiSettingManagementTimezoneResponse, PostApiSettingManagementTimezoneData, PostApiSettingManagementTimezoneResponse, GetApiSettingManagementTimezoneTimezonesResponse } from './types.gen';
|
|
6
6
|
|
|
7
7
|
export class AbpApiDefinitionService {
|
|
8
8
|
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
@@ -395,6 +395,72 @@ export class AuditLogsService {
|
|
|
395
395
|
|
|
396
396
|
}
|
|
397
397
|
|
|
398
|
+
export class CountrySettingService {
|
|
399
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* @param data The data for the request.
|
|
403
|
+
* @param data.requestBody
|
|
404
|
+
* @returns unknown Success
|
|
405
|
+
* @throws ApiError
|
|
406
|
+
*/
|
|
407
|
+
public postApiAdministrationServiceCountrySettingsForTenant(data: PostApiAdministrationServiceCountrySettingsForTenantData = {}): CancelablePromise<PostApiAdministrationServiceCountrySettingsForTenantResponse> {
|
|
408
|
+
return this.httpRequest.request({
|
|
409
|
+
method: 'POST',
|
|
410
|
+
url: '/api/administration-service/country-settings/for-tenant',
|
|
411
|
+
body: data.requestBody,
|
|
412
|
+
mediaType: 'application/json',
|
|
413
|
+
errors: {
|
|
414
|
+
400: 'Bad Request',
|
|
415
|
+
401: 'Unauthorized',
|
|
416
|
+
403: 'Forbidden',
|
|
417
|
+
404: 'Not Found',
|
|
418
|
+
500: 'Server Error',
|
|
419
|
+
501: 'Server Error'
|
|
420
|
+
}
|
|
421
|
+
});
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
/**
|
|
425
|
+
* @returns UniRefund_AdministrationService_CountrySettings_CountrySettingDto Success
|
|
426
|
+
* @throws ApiError
|
|
427
|
+
*/
|
|
428
|
+
public getApiAdministrationServiceCountrySettings(): CancelablePromise<GetApiAdministrationServiceCountrySettingsResponse> {
|
|
429
|
+
return this.httpRequest.request({
|
|
430
|
+
method: 'GET',
|
|
431
|
+
url: '/api/administration-service/country-settings',
|
|
432
|
+
errors: {
|
|
433
|
+
400: 'Bad Request',
|
|
434
|
+
401: 'Unauthorized',
|
|
435
|
+
403: 'Forbidden',
|
|
436
|
+
404: 'Not Found',
|
|
437
|
+
500: 'Server Error',
|
|
438
|
+
501: 'Server Error'
|
|
439
|
+
}
|
|
440
|
+
});
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
/**
|
|
444
|
+
* @returns unknown Success
|
|
445
|
+
* @throws ApiError
|
|
446
|
+
*/
|
|
447
|
+
public postApiAdministrationServiceCountrySettings(): CancelablePromise<PostApiAdministrationServiceCountrySettingsResponse> {
|
|
448
|
+
return this.httpRequest.request({
|
|
449
|
+
method: 'POST',
|
|
450
|
+
url: '/api/administration-service/country-settings',
|
|
451
|
+
errors: {
|
|
452
|
+
400: 'Bad Request',
|
|
453
|
+
401: 'Unauthorized',
|
|
454
|
+
403: 'Forbidden',
|
|
455
|
+
404: 'Not Found',
|
|
456
|
+
500: 'Server Error',
|
|
457
|
+
501: 'Server Error'
|
|
458
|
+
}
|
|
459
|
+
});
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
}
|
|
463
|
+
|
|
398
464
|
export class EmailSettingsService {
|
|
399
465
|
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
400
466
|
|
|
@@ -36,6 +36,78 @@ export type PagedResultDto_TemplateDefinitionDto = {
|
|
|
36
36
|
|
|
37
37
|
export type System_Net_HttpStatusCode = 100 | 101 | 102 | 103 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 226 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 421 | 422 | 423 | 424 | 426 | 428 | 429 | 431 | 451 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 510 | 511;
|
|
38
38
|
|
|
39
|
+
export type UniRefund_AdministrationService_Bonds_BondDto = {
|
|
40
|
+
key?: string | null;
|
|
41
|
+
pattern?: string | null;
|
|
42
|
+
type?: string | null;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
export type UniRefund_AdministrationService_CountrySettings_CountrySettingDto = {
|
|
46
|
+
isEnabled?: boolean;
|
|
47
|
+
groups: Array<UniRefund_AdministrationService_Groups_GroupDto>;
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export type UniRefund_AdministrationService_CountrySettings_CreateCountrySettingDto = {
|
|
51
|
+
name?: string | null;
|
|
52
|
+
value?: string | null;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export type UniRefund_AdministrationService_Groups_GroupDto = {
|
|
56
|
+
isEnabled?: boolean;
|
|
57
|
+
key: string;
|
|
58
|
+
displayName: string;
|
|
59
|
+
description?: string | null;
|
|
60
|
+
items?: Array<UniRefund_AdministrationService_Items_GroupItemDto> | null;
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
export type UniRefund_AdministrationService_Items_GroupItemDto = {
|
|
64
|
+
isEnabled: boolean;
|
|
65
|
+
isRequired: boolean;
|
|
66
|
+
isActive?: boolean | null;
|
|
67
|
+
pattern?: string | null;
|
|
68
|
+
depth?: number;
|
|
69
|
+
description?: string | null;
|
|
70
|
+
displayName: string;
|
|
71
|
+
key: string;
|
|
72
|
+
parentName?: string | null;
|
|
73
|
+
value?: string | null;
|
|
74
|
+
defaultValue?: string | null;
|
|
75
|
+
bonds?: Array<UniRefund_AdministrationService_Bonds_BondDto> | null;
|
|
76
|
+
subItems?: Array<UniRefund_AdministrationService_Items_GroupItemDto> | null;
|
|
77
|
+
valueType?: UniRefund_AdministrationService_Settings_ValueTypes_ValueTypeModelDto;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export type UniRefund_AdministrationService_Settings_ValueTypes_ItemSources_ItemSourceDto = {
|
|
81
|
+
items?: Array<UniRefund_AdministrationService_Settings_ValueTypes_ItemSources_Items_ItemDto> | null;
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
export type UniRefund_AdministrationService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto = {
|
|
85
|
+
name?: string | null;
|
|
86
|
+
resourceName?: string | null;
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
export type UniRefund_AdministrationService_Settings_ValueTypes_ItemSources_Items_ItemDto = {
|
|
90
|
+
displayText?: UniRefund_AdministrationService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto;
|
|
91
|
+
value?: string | null;
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
export type UniRefund_AdministrationService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto = {
|
|
95
|
+
minValue?: number;
|
|
96
|
+
maxValue?: number;
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
export type UniRefund_AdministrationService_Settings_ValueTypes_Validators_ValidatorDto = {
|
|
100
|
+
name?: string | null;
|
|
101
|
+
properties?: UniRefund_AdministrationService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto;
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
export type UniRefund_AdministrationService_Settings_ValueTypes_ValueTypeModelDto = {
|
|
105
|
+
itemSource?: UniRefund_AdministrationService_Settings_ValueTypes_ItemSources_ItemSourceDto;
|
|
106
|
+
name?: string | null;
|
|
107
|
+
properties?: string | null;
|
|
108
|
+
validator?: UniRefund_AdministrationService_Settings_ValueTypes_Validators_ValidatorDto;
|
|
109
|
+
};
|
|
110
|
+
|
|
39
111
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
|
|
40
112
|
grantedPolicies?: {
|
|
41
113
|
[key: string]: (boolean);
|
|
@@ -835,6 +907,16 @@ export type GetApiAuditLoggingAuditLogsEntityChangesByEntityChangeIdData = {
|
|
|
835
907
|
|
|
836
908
|
export type GetApiAuditLoggingAuditLogsEntityChangesByEntityChangeIdResponse = Volo_Abp_AuditLogging_EntityChangeDto;
|
|
837
909
|
|
|
910
|
+
export type PostApiAdministrationServiceCountrySettingsForTenantData = {
|
|
911
|
+
requestBody?: UniRefund_AdministrationService_CountrySettings_CreateCountrySettingDto;
|
|
912
|
+
};
|
|
913
|
+
|
|
914
|
+
export type PostApiAdministrationServiceCountrySettingsForTenantResponse = unknown;
|
|
915
|
+
|
|
916
|
+
export type GetApiAdministrationServiceCountrySettingsResponse = UniRefund_AdministrationService_CountrySettings_CountrySettingDto;
|
|
917
|
+
|
|
918
|
+
export type PostApiAdministrationServiceCountrySettingsResponse = unknown;
|
|
919
|
+
|
|
838
920
|
export type GetApiSettingManagementEmailingResponse = Volo_Abp_SettingManagement_EmailSettingsDto;
|
|
839
921
|
|
|
840
922
|
export type PostApiSettingManagementEmailingData = {
|
|
@@ -1519,6 +1601,107 @@ export type $OpenApiTs = {
|
|
|
1519
1601
|
};
|
|
1520
1602
|
};
|
|
1521
1603
|
};
|
|
1604
|
+
'/api/administration-service/country-settings/for-tenant': {
|
|
1605
|
+
post: {
|
|
1606
|
+
req: PostApiAdministrationServiceCountrySettingsForTenantData;
|
|
1607
|
+
res: {
|
|
1608
|
+
/**
|
|
1609
|
+
* Success
|
|
1610
|
+
*/
|
|
1611
|
+
200: unknown;
|
|
1612
|
+
/**
|
|
1613
|
+
* Bad Request
|
|
1614
|
+
*/
|
|
1615
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1616
|
+
/**
|
|
1617
|
+
* Unauthorized
|
|
1618
|
+
*/
|
|
1619
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1620
|
+
/**
|
|
1621
|
+
* Forbidden
|
|
1622
|
+
*/
|
|
1623
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1624
|
+
/**
|
|
1625
|
+
* Not Found
|
|
1626
|
+
*/
|
|
1627
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1628
|
+
/**
|
|
1629
|
+
* Server Error
|
|
1630
|
+
*/
|
|
1631
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1632
|
+
/**
|
|
1633
|
+
* Server Error
|
|
1634
|
+
*/
|
|
1635
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1636
|
+
};
|
|
1637
|
+
};
|
|
1638
|
+
};
|
|
1639
|
+
'/api/administration-service/country-settings': {
|
|
1640
|
+
get: {
|
|
1641
|
+
res: {
|
|
1642
|
+
/**
|
|
1643
|
+
* Success
|
|
1644
|
+
*/
|
|
1645
|
+
200: UniRefund_AdministrationService_CountrySettings_CountrySettingDto;
|
|
1646
|
+
/**
|
|
1647
|
+
* Bad Request
|
|
1648
|
+
*/
|
|
1649
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1650
|
+
/**
|
|
1651
|
+
* Unauthorized
|
|
1652
|
+
*/
|
|
1653
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1654
|
+
/**
|
|
1655
|
+
* Forbidden
|
|
1656
|
+
*/
|
|
1657
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1658
|
+
/**
|
|
1659
|
+
* Not Found
|
|
1660
|
+
*/
|
|
1661
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1662
|
+
/**
|
|
1663
|
+
* Server Error
|
|
1664
|
+
*/
|
|
1665
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1666
|
+
/**
|
|
1667
|
+
* Server Error
|
|
1668
|
+
*/
|
|
1669
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1670
|
+
};
|
|
1671
|
+
};
|
|
1672
|
+
post: {
|
|
1673
|
+
res: {
|
|
1674
|
+
/**
|
|
1675
|
+
* Success
|
|
1676
|
+
*/
|
|
1677
|
+
200: unknown;
|
|
1678
|
+
/**
|
|
1679
|
+
* Bad Request
|
|
1680
|
+
*/
|
|
1681
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1682
|
+
/**
|
|
1683
|
+
* Unauthorized
|
|
1684
|
+
*/
|
|
1685
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1686
|
+
/**
|
|
1687
|
+
* Forbidden
|
|
1688
|
+
*/
|
|
1689
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1690
|
+
/**
|
|
1691
|
+
* Not Found
|
|
1692
|
+
*/
|
|
1693
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1694
|
+
/**
|
|
1695
|
+
* Server Error
|
|
1696
|
+
*/
|
|
1697
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1698
|
+
/**
|
|
1699
|
+
* Server Error
|
|
1700
|
+
*/
|
|
1701
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1702
|
+
};
|
|
1703
|
+
};
|
|
1704
|
+
};
|
|
1522
1705
|
'/api/setting-management/emailing': {
|
|
1523
1706
|
get: {
|
|
1524
1707
|
res: {
|
|
@@ -325,6 +325,10 @@ export const $PagedResultDto_MerchantProfileDto = {
|
|
|
325
325
|
format: 'uuid',
|
|
326
326
|
nullable: true
|
|
327
327
|
},
|
|
328
|
+
parentName: {
|
|
329
|
+
type: 'string',
|
|
330
|
+
nullable: true
|
|
331
|
+
},
|
|
328
332
|
entityInformationTypeCode: {
|
|
329
333
|
enum: ['INDIVIDUAL', 'ORGANIZATION'],
|
|
330
334
|
type: 'string'
|
|
@@ -2859,6 +2863,22 @@ export const $UniRefund_CRMService_Customss_CustomsDto = {
|
|
|
2859
2863
|
additionalProperties: false
|
|
2860
2864
|
} as const;
|
|
2861
2865
|
|
|
2866
|
+
export const $UniRefund_CRMService_Customss_CustomsNameDto = {
|
|
2867
|
+
required: ['id', 'name'],
|
|
2868
|
+
type: 'object',
|
|
2869
|
+
properties: {
|
|
2870
|
+
id: {
|
|
2871
|
+
type: 'string',
|
|
2872
|
+
format: 'uuid'
|
|
2873
|
+
},
|
|
2874
|
+
name: {
|
|
2875
|
+
minLength: 1,
|
|
2876
|
+
type: 'string'
|
|
2877
|
+
}
|
|
2878
|
+
},
|
|
2879
|
+
additionalProperties: false
|
|
2880
|
+
} as const;
|
|
2881
|
+
|
|
2862
2882
|
export const $UniRefund_CRMService_Customss_CustomsProfileDto = {
|
|
2863
2883
|
type: 'object',
|
|
2864
2884
|
properties: {
|
|
@@ -4189,6 +4209,111 @@ export const $UniRefund_CRMService_Individuals_CreateIndividualDto = {
|
|
|
4189
4209
|
additionalProperties: false
|
|
4190
4210
|
},
|
|
4191
4211
|
nullable: true
|
|
4212
|
+
},
|
|
4213
|
+
createAbpUserAccount: {
|
|
4214
|
+
type: 'boolean'
|
|
4215
|
+
}
|
|
4216
|
+
},
|
|
4217
|
+
additionalProperties: false
|
|
4218
|
+
} as const;
|
|
4219
|
+
|
|
4220
|
+
export const $UniRefund_CRMService_Individuals_IndividualAffiliationsDto = {
|
|
4221
|
+
type: 'object',
|
|
4222
|
+
properties: {
|
|
4223
|
+
merchants: {
|
|
4224
|
+
type: 'array',
|
|
4225
|
+
items: {
|
|
4226
|
+
required: ['id', 'name'],
|
|
4227
|
+
type: 'object',
|
|
4228
|
+
properties: {
|
|
4229
|
+
id: {
|
|
4230
|
+
type: 'string',
|
|
4231
|
+
format: 'uuid'
|
|
4232
|
+
},
|
|
4233
|
+
name: {
|
|
4234
|
+
minLength: 1,
|
|
4235
|
+
type: 'string'
|
|
4236
|
+
}
|
|
4237
|
+
},
|
|
4238
|
+
additionalProperties: false
|
|
4239
|
+
},
|
|
4240
|
+
nullable: true
|
|
4241
|
+
},
|
|
4242
|
+
customs: {
|
|
4243
|
+
type: 'array',
|
|
4244
|
+
items: {
|
|
4245
|
+
required: ['id', 'name'],
|
|
4246
|
+
type: 'object',
|
|
4247
|
+
properties: {
|
|
4248
|
+
id: {
|
|
4249
|
+
type: 'string',
|
|
4250
|
+
format: 'uuid'
|
|
4251
|
+
},
|
|
4252
|
+
name: {
|
|
4253
|
+
minLength: 1,
|
|
4254
|
+
type: 'string'
|
|
4255
|
+
}
|
|
4256
|
+
},
|
|
4257
|
+
additionalProperties: false
|
|
4258
|
+
},
|
|
4259
|
+
nullable: true
|
|
4260
|
+
},
|
|
4261
|
+
taxFrees: {
|
|
4262
|
+
type: 'array',
|
|
4263
|
+
items: {
|
|
4264
|
+
required: ['id', 'name'],
|
|
4265
|
+
type: 'object',
|
|
4266
|
+
properties: {
|
|
4267
|
+
id: {
|
|
4268
|
+
type: 'string',
|
|
4269
|
+
format: 'uuid'
|
|
4270
|
+
},
|
|
4271
|
+
name: {
|
|
4272
|
+
minLength: 1,
|
|
4273
|
+
type: 'string'
|
|
4274
|
+
}
|
|
4275
|
+
},
|
|
4276
|
+
additionalProperties: false
|
|
4277
|
+
},
|
|
4278
|
+
nullable: true
|
|
4279
|
+
},
|
|
4280
|
+
taxOffices: {
|
|
4281
|
+
type: 'array',
|
|
4282
|
+
items: {
|
|
4283
|
+
required: ['id', 'name'],
|
|
4284
|
+
type: 'object',
|
|
4285
|
+
properties: {
|
|
4286
|
+
id: {
|
|
4287
|
+
type: 'string',
|
|
4288
|
+
format: 'uuid'
|
|
4289
|
+
},
|
|
4290
|
+
name: {
|
|
4291
|
+
minLength: 1,
|
|
4292
|
+
type: 'string'
|
|
4293
|
+
}
|
|
4294
|
+
},
|
|
4295
|
+
additionalProperties: false
|
|
4296
|
+
},
|
|
4297
|
+
nullable: true
|
|
4298
|
+
},
|
|
4299
|
+
refundPoints: {
|
|
4300
|
+
type: 'array',
|
|
4301
|
+
items: {
|
|
4302
|
+
required: ['id', 'name'],
|
|
4303
|
+
type: 'object',
|
|
4304
|
+
properties: {
|
|
4305
|
+
id: {
|
|
4306
|
+
type: 'string',
|
|
4307
|
+
format: 'uuid'
|
|
4308
|
+
},
|
|
4309
|
+
name: {
|
|
4310
|
+
minLength: 1,
|
|
4311
|
+
type: 'string'
|
|
4312
|
+
}
|
|
4313
|
+
},
|
|
4314
|
+
additionalProperties: false
|
|
4315
|
+
},
|
|
4316
|
+
nullable: true
|
|
4192
4317
|
}
|
|
4193
4318
|
},
|
|
4194
4319
|
additionalProperties: false
|
|
@@ -5062,6 +5187,9 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
5062
5187
|
additionalProperties: false
|
|
5063
5188
|
},
|
|
5064
5189
|
nullable: true
|
|
5190
|
+
},
|
|
5191
|
+
createAbpUserAccount: {
|
|
5192
|
+
type: 'boolean'
|
|
5065
5193
|
}
|
|
5066
5194
|
},
|
|
5067
5195
|
additionalProperties: false
|
|
@@ -5503,6 +5631,9 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantEntityInformationType
|
|
|
5503
5631
|
additionalProperties: false
|
|
5504
5632
|
},
|
|
5505
5633
|
nullable: true
|
|
5634
|
+
},
|
|
5635
|
+
createAbpUserAccount: {
|
|
5636
|
+
type: 'boolean'
|
|
5506
5637
|
}
|
|
5507
5638
|
},
|
|
5508
5639
|
additionalProperties: false
|
|
@@ -5931,6 +6062,9 @@ export const $UniRefund_CRMService_Merchants_CreateMerchantIndividualDto = {
|
|
|
5931
6062
|
},
|
|
5932
6063
|
nullable: true
|
|
5933
6064
|
},
|
|
6065
|
+
createAbpUserAccount: {
|
|
6066
|
+
type: 'boolean'
|
|
6067
|
+
},
|
|
5934
6068
|
affiliationCodeId: {
|
|
5935
6069
|
type: 'integer',
|
|
5936
6070
|
format: 'int32'
|
|
@@ -6157,6 +6291,7 @@ export const $UniRefund_CRMService_Merchants_MerchantBasicInformationDto = {
|
|
|
6157
6291
|
nullable: true
|
|
6158
6292
|
},
|
|
6159
6293
|
taxOffice: {
|
|
6294
|
+
required: ['id', 'name'],
|
|
6160
6295
|
type: 'object',
|
|
6161
6296
|
properties: {
|
|
6162
6297
|
id: {
|
|
@@ -6164,8 +6299,8 @@ export const $UniRefund_CRMService_Merchants_MerchantBasicInformationDto = {
|
|
|
6164
6299
|
format: 'uuid'
|
|
6165
6300
|
},
|
|
6166
6301
|
name: {
|
|
6167
|
-
|
|
6168
|
-
|
|
6302
|
+
minLength: 1,
|
|
6303
|
+
type: 'string'
|
|
6169
6304
|
}
|
|
6170
6305
|
},
|
|
6171
6306
|
additionalProperties: false
|
|
@@ -8361,6 +8496,22 @@ export const $UniRefund_CRMService_Merchants_MerchantInfoDto = {
|
|
|
8361
8496
|
additionalProperties: false
|
|
8362
8497
|
} as const;
|
|
8363
8498
|
|
|
8499
|
+
export const $UniRefund_CRMService_Merchants_MerchantNameDto = {
|
|
8500
|
+
required: ['id', 'name'],
|
|
8501
|
+
type: 'object',
|
|
8502
|
+
properties: {
|
|
8503
|
+
id: {
|
|
8504
|
+
type: 'string',
|
|
8505
|
+
format: 'uuid'
|
|
8506
|
+
},
|
|
8507
|
+
name: {
|
|
8508
|
+
minLength: 1,
|
|
8509
|
+
type: 'string'
|
|
8510
|
+
}
|
|
8511
|
+
},
|
|
8512
|
+
additionalProperties: false
|
|
8513
|
+
} as const;
|
|
8514
|
+
|
|
8364
8515
|
export const $UniRefund_CRMService_Merchants_MerchantProfileDto = {
|
|
8365
8516
|
required: ['entityInformationTypeCode', 'id', 'name'],
|
|
8366
8517
|
type: 'object',
|
|
@@ -8382,6 +8533,10 @@ export const $UniRefund_CRMService_Merchants_MerchantProfileDto = {
|
|
|
8382
8533
|
format: 'uuid',
|
|
8383
8534
|
nullable: true
|
|
8384
8535
|
},
|
|
8536
|
+
parentName: {
|
|
8537
|
+
type: 'string',
|
|
8538
|
+
nullable: true
|
|
8539
|
+
},
|
|
8385
8540
|
entityInformationTypeCode: {
|
|
8386
8541
|
enum: ['INDIVIDUAL', 'ORGANIZATION'],
|
|
8387
8542
|
type: 'string'
|
|
@@ -10145,6 +10300,7 @@ export const $UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto =
|
|
|
10145
10300
|
nullable: true
|
|
10146
10301
|
},
|
|
10147
10302
|
taxOffice: {
|
|
10303
|
+
required: ['id', 'name'],
|
|
10148
10304
|
type: 'object',
|
|
10149
10305
|
properties: {
|
|
10150
10306
|
id: {
|
|
@@ -10152,8 +10308,8 @@ export const $UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto =
|
|
|
10152
10308
|
format: 'uuid'
|
|
10153
10309
|
},
|
|
10154
10310
|
name: {
|
|
10155
|
-
|
|
10156
|
-
|
|
10311
|
+
minLength: 1,
|
|
10312
|
+
type: 'string'
|
|
10157
10313
|
}
|
|
10158
10314
|
},
|
|
10159
10315
|
additionalProperties: false
|
|
@@ -12777,6 +12933,22 @@ export const $UniRefund_CRMService_TaxFrees_TaxFreeDto = {
|
|
|
12777
12933
|
additionalProperties: false
|
|
12778
12934
|
} as const;
|
|
12779
12935
|
|
|
12936
|
+
export const $UniRefund_CRMService_TaxFrees_TaxFreeNameDto = {
|
|
12937
|
+
required: ['id', 'name'],
|
|
12938
|
+
type: 'object',
|
|
12939
|
+
properties: {
|
|
12940
|
+
id: {
|
|
12941
|
+
type: 'string',
|
|
12942
|
+
format: 'uuid'
|
|
12943
|
+
},
|
|
12944
|
+
name: {
|
|
12945
|
+
minLength: 1,
|
|
12946
|
+
type: 'string'
|
|
12947
|
+
}
|
|
12948
|
+
},
|
|
12949
|
+
additionalProperties: false
|
|
12950
|
+
} as const;
|
|
12951
|
+
|
|
12780
12952
|
export const $UniRefund_CRMService_TaxFrees_TaxFreeProfileDto = {
|
|
12781
12953
|
type: 'object',
|
|
12782
12954
|
properties: {
|
|
@@ -14351,7 +14523,8 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeDto = {
|
|
|
14351
14523
|
additionalProperties: false
|
|
14352
14524
|
} as const;
|
|
14353
14525
|
|
|
14354
|
-
export const $
|
|
14526
|
+
export const $UniRefund_CRMService_TaxOffices_TaxOfficeNameDto = {
|
|
14527
|
+
required: ['id', 'name'],
|
|
14355
14528
|
type: 'object',
|
|
14356
14529
|
properties: {
|
|
14357
14530
|
id: {
|
|
@@ -14359,8 +14532,8 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeIdNameDto = {
|
|
|
14359
14532
|
format: 'uuid'
|
|
14360
14533
|
},
|
|
14361
14534
|
name: {
|
|
14362
|
-
|
|
14363
|
-
|
|
14535
|
+
minLength: 1,
|
|
14536
|
+
type: 'string'
|
|
14364
14537
|
}
|
|
14365
14538
|
},
|
|
14366
14539
|
additionalProperties: false
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import type { CancelablePromise } from './core/CancelablePromise';
|
|
4
4
|
import type { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
5
|
-
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiCrmServiceAffiliationCodesData, GetApiCrmServiceAffiliationCodesResponse, PostApiCrmServiceAffiliationCodesData, PostApiCrmServiceAffiliationCodesResponse, GetApiCrmServiceAffiliationCodesByIdData, GetApiCrmServiceAffiliationCodesByIdResponse, PutApiCrmServiceAffiliationCodesByIdData, PutApiCrmServiceAffiliationCodesByIdResponse, DeleteApiCrmServiceAffiliationCodesByIdData, DeleteApiCrmServiceAffiliationCodesByIdResponse, PostApiCrmServiceAffiliationCodesByIdTranslationData, PostApiCrmServiceAffiliationCodesByIdTranslationResponse, PutApiCrmServiceAffiliationCodesByIdTranslationData, PutApiCrmServiceAffiliationCodesByIdTranslationResponse, GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncData, GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncResponse, GetApiCrmServiceCustomsData, GetApiCrmServiceCustomsResponse, GetApiCrmServiceCustomsByIdDetailData, GetApiCrmServiceCustomsByIdDetailResponse, GetApiCrmServiceCustomsByIdSubCustomsData, GetApiCrmServiceCustomsByIdSubCustomsResponse, PostApiCrmServiceCustomsWithComponentsData, PostApiCrmServiceCustomsWithComponentsResponse, DeleteApiCrmServiceCustomsByIdWithComponentsData, DeleteApiCrmServiceCustomsByIdWithComponentsResponse, PostApiCrmServiceCustomsByIdAffiliationsData, PostApiCrmServiceCustomsByIdAffiliationsResponse, GetApiCrmServiceCustomsByIdAffiliationsData, GetApiCrmServiceCustomsByIdAffiliationsResponse, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdData, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceCustomsByIdAddressesByAddressIdData, PutApiCrmServiceCustomsByIdAddressesByAddressIdResponse, PutApiCrmServiceCustomsByIdEmailsByEmailIdData, PutApiCrmServiceCustomsByIdEmailsByEmailIdResponse, PostApiCrmServiceIndividualsWithComponentsData, PostApiCrmServiceIndividualsWithComponentsResponse, DeleteApiCrmServiceIndividualsByIdData, DeleteApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsByIdData, GetApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsData, GetApiCrmServiceIndividualsResponse, GetApiCrmServiceIndividualsUserDevicesNamesData, GetApiCrmServiceIndividualsUserDevicesNamesResponse, GetApiCrmServiceIndividualsAllUserDevicesNamesData, GetApiCrmServiceIndividualsAllUserDevicesNamesResponse, GetApiCrmServiceMerchantsData, GetApiCrmServiceMerchantsResponse, GetApiCrmServiceMerchantsByIdBasicInformationData, GetApiCrmServiceMerchantsByIdBasicInformationResponse, GetApiCrmServiceMerchantsInfoData, GetApiCrmServiceMerchantsInfoResponse, GetApiCrmServiceMerchantsByIdData, GetApiCrmServiceMerchantsByIdResponse, PutApiCrmServiceMerchantsByIdData, PutApiCrmServiceMerchantsByIdResponse, GetApiCrmServiceMerchantsByIdEnsureExistData, GetApiCrmServiceMerchantsByIdEnsureExistResponse, GetApiCrmServiceMerchantsByIdDetailData, GetApiCrmServiceMerchantsByIdDetailResponse, GetApiCrmServiceMerchantsByIdSubMerchantsData, GetApiCrmServiceMerchantsByIdSubMerchantsResponse, GetApiCrmServiceMerchantsByIdAffiliatedIndividualsData, GetApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse, PostApiCrmServiceMerchantsByIdAffiliatedIndividualsData, PostApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse, PostApiCrmServiceMerchantsWithComponentsData, PostApiCrmServiceMerchantsWithComponentsResponse, DeleteApiCrmServiceMerchantsByIdWithComponentsData, DeleteApiCrmServiceMerchantsByIdWithComponentsResponse, GetApiCrmServiceMerchantsByIdAffiliationsData, GetApiCrmServiceMerchantsByIdAffiliationsResponse, PostApiCrmServiceMerchantsByIdAffiliationsData, PostApiCrmServiceMerchantsByIdAffiliationsResponse, DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData, DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData, PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdData, PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdResponse, PostApiCrmServiceMerchantsBulkProductGroupMerchantsData, PostApiCrmServiceMerchantsBulkProductGroupMerchantsResponse, GetApiCrmServiceMerchantsByIdTelephonesData, GetApiCrmServiceMerchantsByIdTelephonesResponse, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdResponse, GetApiCrmServiceMerchantsByIdAddressesData, GetApiCrmServiceMerchantsByIdAddressesResponse, PutApiCrmServiceMerchantsByIdAddressesByAddressIdData, PutApiCrmServiceMerchantsByIdAddressesByAddressIdResponse, GetApiCrmServiceMerchantsByIdEmailsData, GetApiCrmServiceMerchantsByIdEmailsResponse, PutApiCrmServiceMerchantsByIdEmailsByEmailIdData, PutApiCrmServiceMerchantsByIdEmailsByEmailIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdResponse, PostApiCrmServiceOrganizationsWithComponentsData, PostApiCrmServiceOrganizationsWithComponentsResponse, GetApiCrmServiceOrganizationsData, GetApiCrmServiceOrganizationsResponse, GetApiCrmServiceRefundPointsData, GetApiCrmServiceRefundPointsResponse, GetApiCrmServiceRefundPointsByIdDetailData, GetApiCrmServiceRefundPointsByIdDetailResponse, GetApiCrmServiceRefundPointsByIdBasicInformationData, GetApiCrmServiceRefundPointsByIdBasicInformationResponse, GetApiCrmServiceRefundPointsByIdSubRefundPointsData, GetApiCrmServiceRefundPointsByIdSubRefundPointsResponse, PostApiCrmServiceRefundPointsWithComponentsData, PostApiCrmServiceRefundPointsWithComponentsResponse, DeleteApiCrmServiceRefundPointsByIdWithComponentsData, DeleteApiCrmServiceRefundPointsByIdWithComponentsResponse, PostApiCrmServiceRefundPointsByIdAffiliationsData, PostApiCrmServiceRefundPointsByIdAffiliationsResponse, GetApiCrmServiceRefundPointsByIdAffiliationsData, GetApiCrmServiceRefundPointsByIdAffiliationsResponse, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdData, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdData, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdResponse, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdData, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse, GetApiCrmServiceRefundPointsByIdExistData, GetApiCrmServiceRefundPointsByIdExistResponse, GetApiCrmServiceRefundPointsRefundPointNamesData, GetApiCrmServiceRefundPointsRefundPointNamesResponse, GetApiCrmServiceTaxFreesData, GetApiCrmServiceTaxFreesResponse, GetApiCrmServiceTaxFreesByIdDetailData, GetApiCrmServiceTaxFreesByIdDetailResponse, GetApiCrmServiceTaxFreesByIdSubTaxFreeData, GetApiCrmServiceTaxFreesByIdSubTaxFreeResponse, PostApiCrmServiceTaxFreesWithComponentsData, PostApiCrmServiceTaxFreesWithComponentsResponse, DeleteApiCrmServiceTaxFreesByIdWithComponentsData, DeleteApiCrmServiceTaxFreesByIdWithComponentsResponse, PostApiCrmServiceTaxFreesByIdAffiliationsData, PostApiCrmServiceTaxFreesByIdAffiliationsResponse, GetApiCrmServiceTaxFreesByIdAffiliationsData, GetApiCrmServiceTaxFreesByIdAffiliationsResponse, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdData, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdData, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxOfficesData, GetApiCrmServiceTaxOfficesResponse, GetApiCrmServiceTaxOfficesByIdData, GetApiCrmServiceTaxOfficesByIdResponse, GetApiCrmServiceTaxOfficesByIdDetailData, GetApiCrmServiceTaxOfficesByIdDetailResponse, GetApiCrmServiceTaxOfficesByIdSubTaxOfficesData, GetApiCrmServiceTaxOfficesByIdSubTaxOfficesResponse, PostApiCrmServiceTaxOfficesWithComponentsData, PostApiCrmServiceTaxOfficesWithComponentsResponse, DeleteApiCrmServiceTaxOfficesByIdWithComponentsData, DeleteApiCrmServiceTaxOfficesByIdWithComponentsResponse, PostApiCrmServiceTaxOfficesByIdAffiliationsData, PostApiCrmServiceTaxOfficesByIdAffiliationsResponse, GetApiCrmServiceTaxOfficesByIdAffiliationsData, GetApiCrmServiceTaxOfficesByIdAffiliationsResponse, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdData, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdData, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxOfficesByIdAnyData, GetApiCrmServiceTaxOfficesByIdAnyResponse } from './types.gen';
|
|
5
|
+
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiCrmServiceAffiliationCodesData, GetApiCrmServiceAffiliationCodesResponse, PostApiCrmServiceAffiliationCodesData, PostApiCrmServiceAffiliationCodesResponse, GetApiCrmServiceAffiliationCodesByIdData, GetApiCrmServiceAffiliationCodesByIdResponse, PutApiCrmServiceAffiliationCodesByIdData, PutApiCrmServiceAffiliationCodesByIdResponse, DeleteApiCrmServiceAffiliationCodesByIdData, DeleteApiCrmServiceAffiliationCodesByIdResponse, PostApiCrmServiceAffiliationCodesByIdTranslationData, PostApiCrmServiceAffiliationCodesByIdTranslationResponse, PutApiCrmServiceAffiliationCodesByIdTranslationData, PutApiCrmServiceAffiliationCodesByIdTranslationResponse, GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncData, GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncResponse, GetApiCrmServiceCustomsData, GetApiCrmServiceCustomsResponse, GetApiCrmServiceCustomsByIdDetailData, GetApiCrmServiceCustomsByIdDetailResponse, GetApiCrmServiceCustomsByIdSubCustomsData, GetApiCrmServiceCustomsByIdSubCustomsResponse, PostApiCrmServiceCustomsWithComponentsData, PostApiCrmServiceCustomsWithComponentsResponse, DeleteApiCrmServiceCustomsByIdWithComponentsData, DeleteApiCrmServiceCustomsByIdWithComponentsResponse, PostApiCrmServiceCustomsByIdAffiliationsData, PostApiCrmServiceCustomsByIdAffiliationsResponse, GetApiCrmServiceCustomsByIdAffiliationsData, GetApiCrmServiceCustomsByIdAffiliationsResponse, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdData, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceCustomsByIdAddressesByAddressIdData, PutApiCrmServiceCustomsByIdAddressesByAddressIdResponse, PutApiCrmServiceCustomsByIdEmailsByEmailIdData, PutApiCrmServiceCustomsByIdEmailsByEmailIdResponse, PostApiCrmServiceIndividualsWithComponentsData, PostApiCrmServiceIndividualsWithComponentsResponse, DeleteApiCrmServiceIndividualsByIdData, DeleteApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsByIdData, GetApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsData, GetApiCrmServiceIndividualsResponse, GetApiCrmServiceIndividualsUserDevicesNamesData, GetApiCrmServiceIndividualsUserDevicesNamesResponse, GetApiCrmServiceIndividualsAllUserDevicesNamesData, GetApiCrmServiceIndividualsAllUserDevicesNamesResponse, GetApiCrmServiceIndividualsByIdAffiliationsData, GetApiCrmServiceIndividualsByIdAffiliationsResponse, GetApiCrmServiceMerchantsData, GetApiCrmServiceMerchantsResponse, GetApiCrmServiceMerchantsByIdBasicInformationData, GetApiCrmServiceMerchantsByIdBasicInformationResponse, GetApiCrmServiceMerchantsInfoData, GetApiCrmServiceMerchantsInfoResponse, GetApiCrmServiceMerchantsByIdData, GetApiCrmServiceMerchantsByIdResponse, PutApiCrmServiceMerchantsByIdData, PutApiCrmServiceMerchantsByIdResponse, GetApiCrmServiceMerchantsByIdEnsureExistData, GetApiCrmServiceMerchantsByIdEnsureExistResponse, GetApiCrmServiceMerchantsByIdDetailData, GetApiCrmServiceMerchantsByIdDetailResponse, GetApiCrmServiceMerchantsByIdSubMerchantsData, GetApiCrmServiceMerchantsByIdSubMerchantsResponse, GetApiCrmServiceMerchantsByIdAffiliatedIndividualsData, GetApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse, PostApiCrmServiceMerchantsByIdAffiliatedIndividualsData, PostApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse, PostApiCrmServiceMerchantsWithComponentsData, PostApiCrmServiceMerchantsWithComponentsResponse, DeleteApiCrmServiceMerchantsByIdWithComponentsData, DeleteApiCrmServiceMerchantsByIdWithComponentsResponse, GetApiCrmServiceMerchantsByIdAffiliationsData, GetApiCrmServiceMerchantsByIdAffiliationsResponse, PostApiCrmServiceMerchantsByIdAffiliationsData, PostApiCrmServiceMerchantsByIdAffiliationsResponse, DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData, DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData, PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdData, PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdResponse, PostApiCrmServiceMerchantsBulkProductGroupMerchantsData, PostApiCrmServiceMerchantsBulkProductGroupMerchantsResponse, GetApiCrmServiceMerchantsByIdTelephonesData, GetApiCrmServiceMerchantsByIdTelephonesResponse, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdResponse, GetApiCrmServiceMerchantsByIdAddressesData, GetApiCrmServiceMerchantsByIdAddressesResponse, PutApiCrmServiceMerchantsByIdAddressesByAddressIdData, PutApiCrmServiceMerchantsByIdAddressesByAddressIdResponse, GetApiCrmServiceMerchantsByIdEmailsData, GetApiCrmServiceMerchantsByIdEmailsResponse, PutApiCrmServiceMerchantsByIdEmailsByEmailIdData, PutApiCrmServiceMerchantsByIdEmailsByEmailIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdResponse, PostApiCrmServiceOrganizationsWithComponentsData, PostApiCrmServiceOrganizationsWithComponentsResponse, GetApiCrmServiceOrganizationsData, GetApiCrmServiceOrganizationsResponse, GetApiCrmServiceRefundPointsData, GetApiCrmServiceRefundPointsResponse, GetApiCrmServiceRefundPointsByIdDetailData, GetApiCrmServiceRefundPointsByIdDetailResponse, GetApiCrmServiceRefundPointsByIdBasicInformationData, GetApiCrmServiceRefundPointsByIdBasicInformationResponse, GetApiCrmServiceRefundPointsByIdSubRefundPointsData, GetApiCrmServiceRefundPointsByIdSubRefundPointsResponse, PostApiCrmServiceRefundPointsWithComponentsData, PostApiCrmServiceRefundPointsWithComponentsResponse, DeleteApiCrmServiceRefundPointsByIdWithComponentsData, DeleteApiCrmServiceRefundPointsByIdWithComponentsResponse, PostApiCrmServiceRefundPointsByIdAffiliationsData, PostApiCrmServiceRefundPointsByIdAffiliationsResponse, GetApiCrmServiceRefundPointsByIdAffiliationsData, GetApiCrmServiceRefundPointsByIdAffiliationsResponse, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdData, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdData, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdResponse, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdData, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse, GetApiCrmServiceRefundPointsByIdExistData, GetApiCrmServiceRefundPointsByIdExistResponse, GetApiCrmServiceRefundPointsRefundPointNamesData, GetApiCrmServiceRefundPointsRefundPointNamesResponse, GetApiCrmServiceTaxFreesData, GetApiCrmServiceTaxFreesResponse, GetApiCrmServiceTaxFreesByIdDetailData, GetApiCrmServiceTaxFreesByIdDetailResponse, GetApiCrmServiceTaxFreesByIdSubTaxFreeData, GetApiCrmServiceTaxFreesByIdSubTaxFreeResponse, PostApiCrmServiceTaxFreesWithComponentsData, PostApiCrmServiceTaxFreesWithComponentsResponse, DeleteApiCrmServiceTaxFreesByIdWithComponentsData, DeleteApiCrmServiceTaxFreesByIdWithComponentsResponse, PostApiCrmServiceTaxFreesByIdAffiliationsData, PostApiCrmServiceTaxFreesByIdAffiliationsResponse, GetApiCrmServiceTaxFreesByIdAffiliationsData, GetApiCrmServiceTaxFreesByIdAffiliationsResponse, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdData, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdData, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxOfficesData, GetApiCrmServiceTaxOfficesResponse, GetApiCrmServiceTaxOfficesByIdData, GetApiCrmServiceTaxOfficesByIdResponse, GetApiCrmServiceTaxOfficesByIdDetailData, GetApiCrmServiceTaxOfficesByIdDetailResponse, GetApiCrmServiceTaxOfficesByIdSubTaxOfficesData, GetApiCrmServiceTaxOfficesByIdSubTaxOfficesResponse, PostApiCrmServiceTaxOfficesWithComponentsData, PostApiCrmServiceTaxOfficesWithComponentsResponse, DeleteApiCrmServiceTaxOfficesByIdWithComponentsData, DeleteApiCrmServiceTaxOfficesByIdWithComponentsResponse, PostApiCrmServiceTaxOfficesByIdAffiliationsData, PostApiCrmServiceTaxOfficesByIdAffiliationsResponse, GetApiCrmServiceTaxOfficesByIdAffiliationsData, GetApiCrmServiceTaxOfficesByIdAffiliationsResponse, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdData, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdData, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxOfficesByIdAnyData, GetApiCrmServiceTaxOfficesByIdAnyResponse } from './types.gen';
|
|
6
6
|
|
|
7
7
|
export class AbpApiDefinitionService {
|
|
8
8
|
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
@@ -779,6 +779,42 @@ export class IndividualService {
|
|
|
779
779
|
});
|
|
780
780
|
}
|
|
781
781
|
|
|
782
|
+
/**
|
|
783
|
+
* @param data The data for the request.
|
|
784
|
+
* @param data.id
|
|
785
|
+
* @param data.showMerchant
|
|
786
|
+
* @param data.showCustoms
|
|
787
|
+
* @param data.showRefundPoint
|
|
788
|
+
* @param data.showTaxOffice
|
|
789
|
+
* @param data.showTaxFree
|
|
790
|
+
* @returns UniRefund_CRMService_Individuals_IndividualAffiliationsDto Success
|
|
791
|
+
* @throws ApiError
|
|
792
|
+
*/
|
|
793
|
+
public getApiCrmServiceIndividualsByIdAffiliations(data: GetApiCrmServiceIndividualsByIdAffiliationsData): CancelablePromise<GetApiCrmServiceIndividualsByIdAffiliationsResponse> {
|
|
794
|
+
return this.httpRequest.request({
|
|
795
|
+
method: 'GET',
|
|
796
|
+
url: '/api/crm-service/individuals/{id}/affiliations',
|
|
797
|
+
path: {
|
|
798
|
+
id: data.id
|
|
799
|
+
},
|
|
800
|
+
query: {
|
|
801
|
+
ShowMerchant: data.showMerchant,
|
|
802
|
+
ShowCustoms: data.showCustoms,
|
|
803
|
+
ShowRefundPoint: data.showRefundPoint,
|
|
804
|
+
ShowTaxOffice: data.showTaxOffice,
|
|
805
|
+
ShowTaxFree: data.showTaxFree
|
|
806
|
+
},
|
|
807
|
+
errors: {
|
|
808
|
+
400: 'Bad Request',
|
|
809
|
+
401: 'Unauthorized',
|
|
810
|
+
403: 'Forbidden',
|
|
811
|
+
404: 'Not Found',
|
|
812
|
+
500: 'Server Error',
|
|
813
|
+
501: 'Server Error'
|
|
814
|
+
}
|
|
815
|
+
});
|
|
816
|
+
}
|
|
817
|
+
|
|
782
818
|
}
|
|
783
819
|
|
|
784
820
|
export class MerchantService {
|