@ayasofyazilim/saas 0.0.110 → 0.0.111
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/schemas.gen.ts +14 -4
- package/CRMService/sdk.gen.ts +6 -4
- package/CRMService/types.gen.ts +14 -8
- package/package.json +1 -1
|
@@ -937,7 +937,7 @@ export const $UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
|
|
|
937
937
|
} as const;
|
|
938
938
|
|
|
939
939
|
export const $UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto = {
|
|
940
|
-
required: ['affiliationCodeId', '
|
|
940
|
+
required: ['affiliationCodeId', 'email', 'entityInformationTypeCode'],
|
|
941
941
|
type: 'object',
|
|
942
942
|
properties: {
|
|
943
943
|
extraProperties: {
|
|
@@ -956,9 +956,9 @@ export const $UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto = {
|
|
|
956
956
|
type: 'integer',
|
|
957
957
|
format: 'int32'
|
|
958
958
|
},
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
959
|
+
email: {
|
|
960
|
+
minLength: 1,
|
|
961
|
+
type: 'string'
|
|
962
962
|
},
|
|
963
963
|
entityInformationTypeCode: {
|
|
964
964
|
enum: ['INDIVIDUAL', 'ORGANIZATION'],
|
|
@@ -7711,6 +7711,11 @@ export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
|
|
|
7711
7711
|
format: 'uuid',
|
|
7712
7712
|
nullable: true
|
|
7713
7713
|
},
|
|
7714
|
+
vatPercent: {
|
|
7715
|
+
type: 'integer',
|
|
7716
|
+
format: 'int32',
|
|
7717
|
+
nullable: true
|
|
7718
|
+
},
|
|
7714
7719
|
active: {
|
|
7715
7720
|
type: 'boolean'
|
|
7716
7721
|
},
|
|
@@ -15176,6 +15181,11 @@ export const $UniRefund_SettingService_ProductGroups_ProductGroupDto = {
|
|
|
15176
15181
|
format: 'uuid',
|
|
15177
15182
|
nullable: true
|
|
15178
15183
|
},
|
|
15184
|
+
vatPercent: {
|
|
15185
|
+
type: 'integer',
|
|
15186
|
+
format: 'int32',
|
|
15187
|
+
nullable: true
|
|
15188
|
+
},
|
|
15179
15189
|
active: {
|
|
15180
15190
|
type: 'boolean'
|
|
15181
15191
|
},
|
package/CRMService/sdk.gen.ts
CHANGED
|
@@ -1623,7 +1623,7 @@ export class MerchantIntegrationService {
|
|
|
1623
1623
|
* @param data The data for the request.
|
|
1624
1624
|
* @param data.id
|
|
1625
1625
|
* @param data.parentId
|
|
1626
|
-
* @param data.
|
|
1626
|
+
* @param data.wantedTypeCode
|
|
1627
1627
|
* @returns unknown Success
|
|
1628
1628
|
* @throws ApiError
|
|
1629
1629
|
*/
|
|
@@ -1636,7 +1636,7 @@ export class MerchantIntegrationService {
|
|
|
1636
1636
|
},
|
|
1637
1637
|
query: {
|
|
1638
1638
|
parentId: data.parentId,
|
|
1639
|
-
|
|
1639
|
+
wantedTypeCode: data.wantedTypeCode
|
|
1640
1640
|
},
|
|
1641
1641
|
errors: {
|
|
1642
1642
|
400: 'Bad Request',
|
|
@@ -2408,7 +2408,8 @@ export class RefundPointIntegrationService {
|
|
|
2408
2408
|
/**
|
|
2409
2409
|
* @param data The data for the request.
|
|
2410
2410
|
* @param data.id
|
|
2411
|
-
* @param data.
|
|
2411
|
+
* @param data.parentId
|
|
2412
|
+
* @param data.wantedTypeCode
|
|
2412
2413
|
* @returns unknown Success
|
|
2413
2414
|
* @throws ApiError
|
|
2414
2415
|
*/
|
|
@@ -2420,7 +2421,8 @@ export class RefundPointIntegrationService {
|
|
|
2420
2421
|
id: data.id
|
|
2421
2422
|
},
|
|
2422
2423
|
query: {
|
|
2423
|
-
|
|
2424
|
+
parentId: data.parentId,
|
|
2425
|
+
wantedTypeCode: data.wantedTypeCode
|
|
2424
2426
|
},
|
|
2425
2427
|
errors: {
|
|
2426
2428
|
400: 'Bad Request',
|
package/CRMService/types.gen.ts
CHANGED
|
@@ -252,7 +252,7 @@ export type UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto = {
|
|
|
252
252
|
} | null;
|
|
253
253
|
description?: (string) | null;
|
|
254
254
|
affiliationCodeId: number;
|
|
255
|
-
|
|
255
|
+
email: string;
|
|
256
256
|
entityInformationTypeCode: 'INDIVIDUAL' | 'ORGANIZATION';
|
|
257
257
|
};
|
|
258
258
|
|
|
@@ -1904,6 +1904,7 @@ export type UniRefund_CRMService_Merchants_MerchantDetailDto = {
|
|
|
1904
1904
|
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
1905
1905
|
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
1906
1906
|
vatId?: (string) | null;
|
|
1907
|
+
vatPercent?: (number) | null;
|
|
1907
1908
|
active: boolean;
|
|
1908
1909
|
food: boolean;
|
|
1909
1910
|
}> | null;
|
|
@@ -3753,6 +3754,7 @@ export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
|
|
|
3753
3754
|
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
3754
3755
|
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
3755
3756
|
vatId?: (string) | null;
|
|
3757
|
+
vatPercent?: (number) | null;
|
|
3756
3758
|
active: boolean;
|
|
3757
3759
|
food: boolean;
|
|
3758
3760
|
};
|
|
@@ -5676,7 +5678,7 @@ export type PostApiCrmServiceCustomsByIdAffiliationsData = {
|
|
|
5676
5678
|
} | null;
|
|
5677
5679
|
description?: (string) | null;
|
|
5678
5680
|
affiliationCodeId: number;
|
|
5679
|
-
|
|
5681
|
+
email: string;
|
|
5680
5682
|
entityInformationTypeCode: 'INDIVIDUAL' | 'ORGANIZATION';
|
|
5681
5683
|
};
|
|
5682
5684
|
};
|
|
@@ -6538,6 +6540,7 @@ export type GetApiCrmServiceMerchantsByIdDetailResponse = ({
|
|
|
6538
6540
|
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
6539
6541
|
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
6540
6542
|
vatId?: (string) | null;
|
|
6543
|
+
vatPercent?: (number) | null;
|
|
6541
6544
|
active: boolean;
|
|
6542
6545
|
food: boolean;
|
|
6543
6546
|
}> | null;
|
|
@@ -6736,7 +6739,7 @@ export type PostApiCrmServiceMerchantsByIdAffiliationsData = {
|
|
|
6736
6739
|
} | null;
|
|
6737
6740
|
description?: (string) | null;
|
|
6738
6741
|
affiliationCodeId: number;
|
|
6739
|
-
|
|
6742
|
+
email: string;
|
|
6740
6743
|
entityInformationTypeCode: 'INDIVIDUAL' | 'ORGANIZATION';
|
|
6741
6744
|
};
|
|
6742
6745
|
};
|
|
@@ -7184,7 +7187,7 @@ export type GetIntegrationApiMerchantsNamesResponse = ({
|
|
|
7184
7187
|
export type GetIntegrationApiMerchantsByIdEnsureExistData = {
|
|
7185
7188
|
id: string;
|
|
7186
7189
|
parentId?: string;
|
|
7187
|
-
|
|
7190
|
+
wantedTypeCode?: 'HEADQUARTER' | 'STORE';
|
|
7188
7191
|
};
|
|
7189
7192
|
|
|
7190
7193
|
export type GetIntegrationApiMerchantsByIdEnsureExistResponse = (unknown);
|
|
@@ -7490,6 +7493,7 @@ export type GetIntegrationApiMerchantsByIdDetailResponse = ({
|
|
|
7490
7493
|
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
7491
7494
|
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
7492
7495
|
vatId?: (string) | null;
|
|
7496
|
+
vatPercent?: (number) | null;
|
|
7493
7497
|
active: boolean;
|
|
7494
7498
|
food: boolean;
|
|
7495
7499
|
}> | null;
|
|
@@ -7754,6 +7758,7 @@ export type GetIntegrationApiMerchantsDetailsListResponse = (Array<{
|
|
|
7754
7758
|
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
7755
7759
|
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
7756
7760
|
vatId?: (string) | null;
|
|
7761
|
+
vatPercent?: (number) | null;
|
|
7757
7762
|
active: boolean;
|
|
7758
7763
|
food: boolean;
|
|
7759
7764
|
}> | null;
|
|
@@ -8210,7 +8215,7 @@ export type PostApiCrmServiceRefundPointsByIdAffiliationsData = {
|
|
|
8210
8215
|
} | null;
|
|
8211
8216
|
description?: (string) | null;
|
|
8212
8217
|
affiliationCodeId: number;
|
|
8213
|
-
|
|
8218
|
+
email: string;
|
|
8214
8219
|
entityInformationTypeCode: 'INDIVIDUAL' | 'ORGANIZATION';
|
|
8215
8220
|
};
|
|
8216
8221
|
};
|
|
@@ -8523,7 +8528,8 @@ export type GetIntegrationApiRefundPointsRefundPointNamesResponse = ({
|
|
|
8523
8528
|
|
|
8524
8529
|
export type GetIntegrationApiRefundPointsByIdExistData = {
|
|
8525
8530
|
id: string;
|
|
8526
|
-
|
|
8531
|
+
parentId?: string;
|
|
8532
|
+
wantedTypeCode?: 'HEADQUARTER' | 'REFUNDPOINT';
|
|
8527
8533
|
};
|
|
8528
8534
|
|
|
8529
8535
|
export type GetIntegrationApiRefundPointsByIdExistResponse = (unknown);
|
|
@@ -8880,7 +8886,7 @@ export type PostApiCrmServiceTaxFreesByIdAffiliationsData = {
|
|
|
8880
8886
|
} | null;
|
|
8881
8887
|
description?: (string) | null;
|
|
8882
8888
|
affiliationCodeId: number;
|
|
8883
|
-
|
|
8889
|
+
email: string;
|
|
8884
8890
|
entityInformationTypeCode: 'INDIVIDUAL' | 'ORGANIZATION';
|
|
8885
8891
|
};
|
|
8886
8892
|
};
|
|
@@ -9464,7 +9470,7 @@ export type PostApiCrmServiceTaxOfficesByIdAffiliationsData = {
|
|
|
9464
9470
|
} | null;
|
|
9465
9471
|
description?: (string) | null;
|
|
9466
9472
|
affiliationCodeId: number;
|
|
9467
|
-
|
|
9473
|
+
email: string;
|
|
9468
9474
|
entityInformationTypeCode: 'INDIVIDUAL' | 'ORGANIZATION';
|
|
9469
9475
|
};
|
|
9470
9476
|
};
|