@ayasofyazilim/saas 0.0.116 → 0.0.117
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.
|
@@ -76,12 +76,12 @@ jobs:
|
|
|
76
76
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
77
77
|
|
|
78
78
|
- name: Update package
|
|
79
|
-
if: startsWith(github.event.inputs.
|
|
79
|
+
if: startsWith(github.event.inputs.service-name, 'All') != true
|
|
80
80
|
run: |
|
|
81
81
|
node index.mjs -u "${{ github.event.inputs.url }}" -p "${{ github.event.inputs.port }}" -f "${{ github.event.inputs.service-name }}"
|
|
82
82
|
|
|
83
83
|
- name: Update package
|
|
84
|
-
if: startsWith(github.event.inputs.
|
|
84
|
+
if: startsWith(github.event.inputs.service-name, 'All') == true
|
|
85
85
|
run: |
|
|
86
86
|
node index.mjs -u "${{ github.event.inputs.url }}" -p "${{ github.event.inputs.port }}"
|
|
87
87
|
|
|
@@ -89,5 +89,5 @@ jobs:
|
|
|
89
89
|
- name: Commit updates
|
|
90
90
|
run: |
|
|
91
91
|
git add .
|
|
92
|
-
git commit -m "chore: update ${{ github.event.inputs.
|
|
92
|
+
git commit -m "chore: update ${{ github.event.inputs.service-name }} by @${{ github.actor }}"
|
|
93
93
|
git push origin
|
|
@@ -7705,8 +7705,7 @@ export const $UniRefund_CRMService_Merchants_MerchantDetailDto = {
|
|
|
7705
7705
|
},
|
|
7706
7706
|
vatId: {
|
|
7707
7707
|
type: 'string',
|
|
7708
|
-
format: 'uuid'
|
|
7709
|
-
nullable: true
|
|
7708
|
+
format: 'uuid'
|
|
7710
7709
|
},
|
|
7711
7710
|
vatPercent: {
|
|
7712
7711
|
type: 'integer',
|
|
@@ -15152,7 +15151,7 @@ export const $UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupM
|
|
|
15152
15151
|
} as const;
|
|
15153
15152
|
|
|
15154
15153
|
export const $UniRefund_SettingService_ProductGroupMerchants_ProductGroupMerchantRelationDto = {
|
|
15155
|
-
required: ['isActive', 'isAssign', 'isDefault', 'productGroupName'],
|
|
15154
|
+
required: ['isActive', 'isAssign', 'isDefault', 'productGroupId', 'productGroupName'],
|
|
15156
15155
|
type: 'object',
|
|
15157
15156
|
properties: {
|
|
15158
15157
|
productGroupName: {
|
|
@@ -15167,6 +15166,10 @@ export const $UniRefund_SettingService_ProductGroupMerchants_ProductGroupMerchan
|
|
|
15167
15166
|
},
|
|
15168
15167
|
isAssign: {
|
|
15169
15168
|
type: 'boolean'
|
|
15169
|
+
},
|
|
15170
|
+
productGroupId: {
|
|
15171
|
+
type: 'string',
|
|
15172
|
+
format: 'uuid'
|
|
15170
15173
|
}
|
|
15171
15174
|
},
|
|
15172
15175
|
additionalProperties: false
|
|
@@ -15203,8 +15206,7 @@ export const $UniRefund_SettingService_ProductGroups_ProductGroupDto = {
|
|
|
15203
15206
|
},
|
|
15204
15207
|
vatId: {
|
|
15205
15208
|
type: 'string',
|
|
15206
|
-
format: 'uuid'
|
|
15207
|
-
nullable: true
|
|
15209
|
+
format: 'uuid'
|
|
15208
15210
|
},
|
|
15209
15211
|
vatPercent: {
|
|
15210
15212
|
type: 'integer',
|
package/CRMService/types.gen.ts
CHANGED
|
@@ -1905,7 +1905,7 @@ export type UniRefund_CRMService_Merchants_MerchantDetailDto = {
|
|
|
1905
1905
|
name: string;
|
|
1906
1906
|
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
1907
1907
|
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
1908
|
-
vatId?:
|
|
1908
|
+
vatId?: string;
|
|
1909
1909
|
vatPercent?: (number) | null;
|
|
1910
1910
|
active: boolean;
|
|
1911
1911
|
food: boolean;
|
|
@@ -3758,6 +3758,7 @@ export type UniRefund_SettingService_ProductGroupMerchants_ProductGroupMerchantR
|
|
|
3758
3758
|
isDefault: boolean;
|
|
3759
3759
|
isActive: boolean;
|
|
3760
3760
|
isAssign: boolean;
|
|
3761
|
+
productGroupId: string;
|
|
3761
3762
|
};
|
|
3762
3763
|
|
|
3763
3764
|
export type UniRefund_SettingService_ProductGroups_CompanyTypeCode = 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
@@ -3768,7 +3769,7 @@ export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
|
|
|
3768
3769
|
name: string;
|
|
3769
3770
|
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
3770
3771
|
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
3771
|
-
vatId?:
|
|
3772
|
+
vatId?: string;
|
|
3772
3773
|
vatPercent?: (number) | null;
|
|
3773
3774
|
active: boolean;
|
|
3774
3775
|
food: boolean;
|
|
@@ -6555,7 +6556,7 @@ export type GetApiCrmServiceMerchantsByIdDetailResponse = ({
|
|
|
6555
6556
|
name: string;
|
|
6556
6557
|
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
6557
6558
|
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
6558
|
-
vatId?:
|
|
6559
|
+
vatId?: string;
|
|
6559
6560
|
vatPercent?: (number) | null;
|
|
6560
6561
|
active: boolean;
|
|
6561
6562
|
food: boolean;
|
|
@@ -7185,6 +7186,7 @@ export type GetApiCrmServiceMerchantsByIdProductGroupResponse = (Array<{
|
|
|
7185
7186
|
isDefault: boolean;
|
|
7186
7187
|
isActive: boolean;
|
|
7187
7188
|
isAssign: boolean;
|
|
7189
|
+
productGroupId: string;
|
|
7188
7190
|
}>);
|
|
7189
7191
|
|
|
7190
7192
|
export type GetIntegrationApiMerchantsByIdBasicInformationData = {
|
|
@@ -7545,7 +7547,7 @@ export type GetIntegrationApiMerchantsByIdDetailResponse = ({
|
|
|
7545
7547
|
name: string;
|
|
7546
7548
|
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
7547
7549
|
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
7548
|
-
vatId?:
|
|
7550
|
+
vatId?: string;
|
|
7549
7551
|
vatPercent?: (number) | null;
|
|
7550
7552
|
active: boolean;
|
|
7551
7553
|
food: boolean;
|
|
@@ -7810,7 +7812,7 @@ export type GetIntegrationApiMerchantsDetailsListResponse = (Array<{
|
|
|
7810
7812
|
name: string;
|
|
7811
7813
|
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
7812
7814
|
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
7813
|
-
vatId?:
|
|
7815
|
+
vatId?: string;
|
|
7814
7816
|
vatPercent?: (number) | null;
|
|
7815
7817
|
active: boolean;
|
|
7816
7818
|
food: boolean;
|