@ayasofyazilim/saas 0.0.33 → 0.0.35

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.
@@ -139,6 +139,7 @@ export type UniRefund_CRMService_Customss_CustomsProfileDto = {
139
139
  id?: string;
140
140
  name?: string | null;
141
141
  parentCompanyId?: string | null;
142
+ organizationId?: string;
142
143
  };
143
144
 
144
145
  export type UniRefund_CRMService_EmailCommonDatas_CreateEmailCommonDataDto = {
@@ -273,6 +274,11 @@ export type UniRefund_CRMService_Merchants_CreateMerchantDto = {
273
274
  entityInformationTypes: Array<UniRefund_CRMService_EntityInformationTypes_CreateEntityInformationTypeDto>;
274
275
  };
275
276
 
277
+ export type UniRefund_CRMService_Merchants_MerchantDetailDto = {
278
+ merchant?: UniRefund_CRMService_Merchants_MerchantDto;
279
+ productGroups?: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto> | null;
280
+ };
281
+
276
282
  export type UniRefund_CRMService_Merchants_MerchantDto = {
277
283
  id?: string;
278
284
  creationTime?: string;
@@ -292,6 +298,8 @@ export type UniRefund_CRMService_Merchants_MerchantProfileDto = {
292
298
  parentCompanyId?: string | null;
293
299
  entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
294
300
  entityInformationTypeCodeName?: string | null;
301
+ organizationId?: string | null;
302
+ individualId?: string | null;
295
303
  };
296
304
 
297
305
  export type UniRefund_CRMService_Merchants_RefundPointProfileDto = {
@@ -299,6 +307,7 @@ export type UniRefund_CRMService_Merchants_RefundPointProfileDto = {
299
307
  name?: string | null;
300
308
  entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
301
309
  entityInformationTypeCodeValue?: string | null;
310
+ organizationId?: string;
302
311
  };
303
312
 
304
313
  export type UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto = {
@@ -367,6 +376,13 @@ export type UniRefund_CRMService_Organizations_OrganizationProfileDto = {
367
376
  affiliationParentTypeCodeValue?: string | null;
368
377
  };
369
378
 
379
+ export type UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
380
+ readonly extraProperties?: {
381
+ [key: string]: unknown;
382
+ } | null;
383
+ name: string;
384
+ };
385
+
370
386
  export type UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto = {
371
387
  readonly extraProperties?: {
372
388
  [key: string]: unknown;
@@ -439,6 +455,7 @@ export type UniRefund_CRMService_TaxFrees_TaxFreeProfileDto = {
439
455
  id?: string;
440
456
  name?: string | null;
441
457
  parentCompanyId?: string | null;
458
+ organizationId?: string;
442
459
  };
443
460
 
444
461
  export type UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
@@ -464,6 +481,7 @@ export type UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto = {
464
481
  id?: string;
465
482
  name?: string | null;
466
483
  parentCompanyId?: string | null;
484
+ organizationId?: string;
467
485
  };
468
486
 
469
487
  export type UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeDto = {
@@ -518,6 +536,33 @@ export type UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto = {
518
536
  typeCode: UniRefund_CRMService_Enums_TelephoneTypeCode;
519
537
  };
520
538
 
539
+ export type UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto = {
540
+ merchantId?: string;
541
+ productGroupId?: string;
542
+ };
543
+
544
+ export type UniRefund_SettingService_ProductGroups_CompanyTypeCode = 0 | 1 | 2 | 3 | 4 | 5 | 6;
545
+
546
+ export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
547
+ id?: string;
548
+ creationTime?: string;
549
+ creatorId?: string | null;
550
+ lastModificationTime?: string | null;
551
+ lastModifierId?: string | null;
552
+ isDeleted?: boolean;
553
+ deleterId?: string | null;
554
+ deletionTime?: string | null;
555
+ articleCode?: string | null;
556
+ name?: string | null;
557
+ unitCode?: UniRefund_SettingService_ProductGroups_UnitTypeCode;
558
+ companyType?: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
559
+ active?: boolean;
560
+ food?: boolean;
561
+ language?: string | null;
562
+ };
563
+
564
+ export type UniRefund_SettingService_ProductGroups_UnitTypeCode = 0 | 1 | 2;
565
+
521
566
  export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
522
567
  items?: Array<UniRefund_CRMService_AddressTypes_AddressTypeDto> | null;
523
568
  totalCount?: number;
@@ -1034,21 +1079,29 @@ export type DeleteApiCrmServiceCustomsWithComponentsByIdData = {
1034
1079
 
1035
1080
  export type DeleteApiCrmServiceCustomsWithComponentsByIdResponse = unknown;
1036
1081
 
1037
- export type PostApiCrmServiceCustomsByCustomsIdAffiliationsData = {
1038
- customsId: string;
1082
+ export type PostApiCrmServiceCustomsByIdAffiliationsData = {
1083
+ id: string;
1039
1084
  requestBody?: UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto;
1040
1085
  };
1041
1086
 
1042
- export type PostApiCrmServiceCustomsByCustomsIdAffiliationsResponse = unknown;
1087
+ export type PostApiCrmServiceCustomsByIdAffiliationsResponse = unknown;
1043
1088
 
1044
- export type GetApiCrmServiceCustomsByCustomsIdAffiliationsData = {
1045
- customsId: string;
1089
+ export type GetApiCrmServiceCustomsByIdAffiliationsData = {
1090
+ id: string;
1046
1091
  maxResultCount?: number;
1047
1092
  skipCount?: number;
1048
1093
  sorting?: string;
1049
1094
  };
1050
1095
 
1051
- export type GetApiCrmServiceCustomsByCustomsIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1096
+ export type GetApiCrmServiceCustomsByIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1097
+
1098
+ export type PutApiCrmServiceCustomsByIdOrganizationByOrganizationIdData = {
1099
+ id: string;
1100
+ organizationId: string;
1101
+ requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
1102
+ };
1103
+
1104
+ export type PutApiCrmServiceCustomsByIdOrganizationByOrganizationIdResponse = unknown;
1052
1105
 
1053
1106
  export type GetApiCrmServiceEmailsData = {
1054
1107
  maxResultCount?: number;
@@ -1111,7 +1164,7 @@ export type GetApiCrmServiceMerchantsDetailByIdData = {
1111
1164
  id: string;
1112
1165
  };
1113
1166
 
1114
- export type GetApiCrmServiceMerchantsDetailByIdResponse = UniRefund_CRMService_Merchants_MerchantDto;
1167
+ export type GetApiCrmServiceMerchantsDetailByIdResponse = UniRefund_CRMService_Merchants_MerchantDetailDto;
1115
1168
 
1116
1169
  export type PostApiCrmServiceMerchantsWithComponentsData = {
1117
1170
  requestBody?: UniRefund_CRMService_Merchants_CreateMerchantDto;
@@ -1141,6 +1194,20 @@ export type GetApiCrmServiceMerchantsByMerchantIdAffiliationsData = {
1141
1194
 
1142
1195
  export type GetApiCrmServiceMerchantsByMerchantIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1143
1196
 
1197
+ export type PutApiCrmServiceMerchantsByIdOrganizationByOrganizationIdData = {
1198
+ id: string;
1199
+ organizationId: string;
1200
+ requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
1201
+ };
1202
+
1203
+ export type PutApiCrmServiceMerchantsByIdOrganizationByOrganizationIdResponse = unknown;
1204
+
1205
+ export type PostApiCrmServiceMerchantsBulkProductGroupMerchantData = {
1206
+ requestBody?: Array<UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto>;
1207
+ };
1208
+
1209
+ export type PostApiCrmServiceMerchantsBulkProductGroupMerchantResponse = unknown;
1210
+
1144
1211
  export type PostApiCrmServiceOrganizationsWithComponentsData = {
1145
1212
  requestBody?: UniRefund_CRMService_Organizations_CreateOrganizationDto;
1146
1213
  };
@@ -1199,6 +1266,14 @@ export type GetApiCrmServiceRefundPointsByRefundPointIdAffiliationsData = {
1199
1266
 
1200
1267
  export type GetApiCrmServiceRefundPointsByRefundPointIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1201
1268
 
1269
+ export type PutApiCrmServiceRefundPointsByIdOrganizationByOrganizationIdData = {
1270
+ id: string;
1271
+ organizationId: string;
1272
+ requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
1273
+ };
1274
+
1275
+ export type PutApiCrmServiceRefundPointsByIdOrganizationByOrganizationIdResponse = unknown;
1276
+
1202
1277
  export type GetApiCrmServiceTaxFreesData = {
1203
1278
  maxResultCount?: number;
1204
1279
  skipCount?: number;
@@ -1241,6 +1316,14 @@ export type GetApiCrmServiceTaxFreesByTaxFreesIdAffiliationsData = {
1241
1316
 
1242
1317
  export type GetApiCrmServiceTaxFreesByTaxFreesIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1243
1318
 
1319
+ export type PutApiCrmServiceTaxFreesByIdOrganizationByOrganizationIdData = {
1320
+ id: string;
1321
+ organizationId: string;
1322
+ requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
1323
+ };
1324
+
1325
+ export type PutApiCrmServiceTaxFreesByIdOrganizationByOrganizationIdResponse = unknown;
1326
+
1244
1327
  export type GetApiCrmServiceTaxOfficesData = {
1245
1328
  maxResultCount?: number;
1246
1329
  skipCount?: number;
@@ -1283,6 +1366,14 @@ export type GetApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsData = {
1283
1366
 
1284
1367
  export type GetApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1285
1368
 
1369
+ export type PutApiCrmServiceTaxOfficesByIdOrganizationByOrganizationIdData = {
1370
+ id: string;
1371
+ organizationId: string;
1372
+ requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
1373
+ };
1374
+
1375
+ export type PutApiCrmServiceTaxOfficesByIdOrganizationByOrganizationIdResponse = unknown;
1376
+
1286
1377
  export type GetApiCrmServiceTelephonesData = {
1287
1378
  maxResultCount?: number;
1288
1379
  skipCount?: number;
@@ -1731,9 +1822,9 @@ export type $OpenApiTs = {
1731
1822
  };
1732
1823
  };
1733
1824
  };
1734
- '/api/crm-service/customs/{customsId}/affiliations': {
1825
+ '/api/crm-service/customs/{id}/affiliations': {
1735
1826
  post: {
1736
- req: PostApiCrmServiceCustomsByCustomsIdAffiliationsData;
1827
+ req: PostApiCrmServiceCustomsByIdAffiliationsData;
1737
1828
  res: {
1738
1829
  /**
1739
1830
  * Success
@@ -1766,7 +1857,7 @@ export type $OpenApiTs = {
1766
1857
  };
1767
1858
  };
1768
1859
  get: {
1769
- req: GetApiCrmServiceCustomsByCustomsIdAffiliationsData;
1860
+ req: GetApiCrmServiceCustomsByIdAffiliationsData;
1770
1861
  res: {
1771
1862
  /**
1772
1863
  * Success
@@ -1799,6 +1890,41 @@ export type $OpenApiTs = {
1799
1890
  };
1800
1891
  };
1801
1892
  };
1893
+ '/api/crm-service/customs/{id}/organization/{organizationId}': {
1894
+ put: {
1895
+ req: PutApiCrmServiceCustomsByIdOrganizationByOrganizationIdData;
1896
+ res: {
1897
+ /**
1898
+ * Success
1899
+ */
1900
+ 200: unknown;
1901
+ /**
1902
+ * Bad Request
1903
+ */
1904
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1905
+ /**
1906
+ * Unauthorized
1907
+ */
1908
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1909
+ /**
1910
+ * Forbidden
1911
+ */
1912
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1913
+ /**
1914
+ * Not Found
1915
+ */
1916
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1917
+ /**
1918
+ * Server Error
1919
+ */
1920
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1921
+ /**
1922
+ * Server Error
1923
+ */
1924
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1925
+ };
1926
+ };
1927
+ };
1802
1928
  '/api/crm-service/emails': {
1803
1929
  get: {
1804
1930
  req: GetApiCrmServiceEmailsData;
@@ -2080,7 +2206,7 @@ export type $OpenApiTs = {
2080
2206
  /**
2081
2207
  * Success
2082
2208
  */
2083
- 200: UniRefund_CRMService_Merchants_MerchantDto;
2209
+ 200: UniRefund_CRMService_Merchants_MerchantDetailDto;
2084
2210
  /**
2085
2211
  * Bad Request
2086
2212
  */
@@ -2246,6 +2372,76 @@ export type $OpenApiTs = {
2246
2372
  };
2247
2373
  };
2248
2374
  };
2375
+ '/api/crm-service/merchants/{id}/organization/{organizationId}': {
2376
+ put: {
2377
+ req: PutApiCrmServiceMerchantsByIdOrganizationByOrganizationIdData;
2378
+ res: {
2379
+ /**
2380
+ * Success
2381
+ */
2382
+ 200: unknown;
2383
+ /**
2384
+ * Bad Request
2385
+ */
2386
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2387
+ /**
2388
+ * Unauthorized
2389
+ */
2390
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2391
+ /**
2392
+ * Forbidden
2393
+ */
2394
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2395
+ /**
2396
+ * Not Found
2397
+ */
2398
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2399
+ /**
2400
+ * Server Error
2401
+ */
2402
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2403
+ /**
2404
+ * Server Error
2405
+ */
2406
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2407
+ };
2408
+ };
2409
+ };
2410
+ '/api/crm-service/merchants/bulk-product-group-merchant': {
2411
+ post: {
2412
+ req: PostApiCrmServiceMerchantsBulkProductGroupMerchantData;
2413
+ res: {
2414
+ /**
2415
+ * Success
2416
+ */
2417
+ 200: unknown;
2418
+ /**
2419
+ * Bad Request
2420
+ */
2421
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2422
+ /**
2423
+ * Unauthorized
2424
+ */
2425
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2426
+ /**
2427
+ * Forbidden
2428
+ */
2429
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2430
+ /**
2431
+ * Not Found
2432
+ */
2433
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2434
+ /**
2435
+ * Server Error
2436
+ */
2437
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2438
+ /**
2439
+ * Server Error
2440
+ */
2441
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2442
+ };
2443
+ };
2444
+ };
2249
2445
  '/api/crm-service/organizations/with-components': {
2250
2446
  post: {
2251
2447
  req: PostApiCrmServiceOrganizationsWithComponentsData;
@@ -2524,6 +2720,41 @@ export type $OpenApiTs = {
2524
2720
  };
2525
2721
  };
2526
2722
  };
2723
+ '/api/crm-service/refund-points/{id}/organization/{organizationId}': {
2724
+ put: {
2725
+ req: PutApiCrmServiceRefundPointsByIdOrganizationByOrganizationIdData;
2726
+ res: {
2727
+ /**
2728
+ * Success
2729
+ */
2730
+ 200: unknown;
2731
+ /**
2732
+ * Bad Request
2733
+ */
2734
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2735
+ /**
2736
+ * Unauthorized
2737
+ */
2738
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2739
+ /**
2740
+ * Forbidden
2741
+ */
2742
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2743
+ /**
2744
+ * Not Found
2745
+ */
2746
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2747
+ /**
2748
+ * Server Error
2749
+ */
2750
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2751
+ /**
2752
+ * Server Error
2753
+ */
2754
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2755
+ };
2756
+ };
2757
+ };
2527
2758
  '/api/crm-service/tax-frees': {
2528
2759
  get: {
2529
2760
  req: GetApiCrmServiceTaxFreesData;
@@ -2732,6 +2963,41 @@ export type $OpenApiTs = {
2732
2963
  };
2733
2964
  };
2734
2965
  };
2966
+ '/api/crm-service/tax-frees/{id}/organization/{organizationId}': {
2967
+ put: {
2968
+ req: PutApiCrmServiceTaxFreesByIdOrganizationByOrganizationIdData;
2969
+ res: {
2970
+ /**
2971
+ * Success
2972
+ */
2973
+ 200: unknown;
2974
+ /**
2975
+ * Bad Request
2976
+ */
2977
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2978
+ /**
2979
+ * Unauthorized
2980
+ */
2981
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2982
+ /**
2983
+ * Forbidden
2984
+ */
2985
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2986
+ /**
2987
+ * Not Found
2988
+ */
2989
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2990
+ /**
2991
+ * Server Error
2992
+ */
2993
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2994
+ /**
2995
+ * Server Error
2996
+ */
2997
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2998
+ };
2999
+ };
3000
+ };
2735
3001
  '/api/crm-service/tax-offices': {
2736
3002
  get: {
2737
3003
  req: GetApiCrmServiceTaxOfficesData;
@@ -2940,6 +3206,41 @@ export type $OpenApiTs = {
2940
3206
  };
2941
3207
  };
2942
3208
  };
3209
+ '/api/crm-service/tax-offices/{id}/organization/{organizationId}': {
3210
+ put: {
3211
+ req: PutApiCrmServiceTaxOfficesByIdOrganizationByOrganizationIdData;
3212
+ res: {
3213
+ /**
3214
+ * Success
3215
+ */
3216
+ 200: unknown;
3217
+ /**
3218
+ * Bad Request
3219
+ */
3220
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3221
+ /**
3222
+ * Unauthorized
3223
+ */
3224
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3225
+ /**
3226
+ * Forbidden
3227
+ */
3228
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3229
+ /**
3230
+ * Not Found
3231
+ */
3232
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3233
+ /**
3234
+ * Server Error
3235
+ */
3236
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3237
+ /**
3238
+ * Server Error
3239
+ */
3240
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3241
+ };
3242
+ };
3243
+ };
2943
3244
  '/api/crm-service/telephones': {
2944
3245
  get: {
2945
3246
  req: GetApiCrmServiceTelephonesData;