@ayasofyazilim/saas 0.0.24 → 0.0.26

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.
Files changed (37) hide show
  1. package/AccountService/AccountServiceClient.ts +65 -65
  2. package/AccountService/schemas.gen.ts +5103 -5103
  3. package/AccountService/services.gen.ts +1452 -1452
  4. package/AccountService/types.gen.ts +9896 -9896
  5. package/AdministrationService/AdministrationServiceClient.ts +74 -74
  6. package/AdministrationService/schemas.gen.ts +5897 -5897
  7. package/AdministrationService/services.gen.ts +1332 -1332
  8. package/AdministrationService/types.gen.ts +9024 -9024
  9. package/BackerService/BackerServiceClient.ts +50 -50
  10. package/BackerService/schemas.gen.ts +12444 -12401
  11. package/BackerService/services.gen.ts +866 -866
  12. package/BackerService/types.gen.ts +14936 -14936
  13. package/FundraiserService/schemas.gen.ts +795 -661
  14. package/FundraiserService/services.gen.ts +12 -36
  15. package/FundraiserService/types.gen.ts +1229 -2471
  16. package/IdentityService/IdentityServiceClient.ts +77 -77
  17. package/IdentityService/schemas.gen.ts +6573 -6573
  18. package/IdentityService/services.gen.ts +2839 -2839
  19. package/IdentityService/types.gen.ts +17446 -17446
  20. package/MerchantService/MerchantServiceClient.ts +77 -77
  21. package/MerchantService/schemas.gen.ts +14764 -14697
  22. package/MerchantService/services.gen.ts +1602 -1602
  23. package/MerchantService/types.gen.ts +18875 -18819
  24. package/ProjectService/ProjectServiceClient.ts +47 -47
  25. package/ProjectService/schemas.gen.ts +365 -1
  26. package/ProjectService/types.gen.ts +161 -1
  27. package/ProjectService.json +2937 -2937
  28. package/SaasService/schemas.gen.ts +5278 -5278
  29. package/SaasService/services.gen.ts +1325 -1325
  30. package/SaasService/types.gen.ts +9052 -9052
  31. package/SettingService/SettingServiceClient.ts +9 -0
  32. package/SettingService/schemas.gen.ts +516 -4
  33. package/SettingService/services.gen.ts +472 -1
  34. package/SettingService/types.gen.ts +896 -14
  35. package/generator.mjs +2 -2
  36. package/package.json +1 -1
  37. package/swagger.json +4794 -4794
@@ -8,8 +8,11 @@ import { AbpApplicationConfigurationService } from './services.gen';
8
8
  import { AbpApplicationLocalizationService } from './services.gen';
9
9
  import { CountrySettingService } from './services.gen';
10
10
  import { EmailSettingsService } from './services.gen';
11
+ import { ProductGroupService } from './services.gen';
12
+ import { ProductGroupVatService } from './services.gen';
11
13
  import { SampleService } from './services.gen';
12
14
  import { TimeZoneSettingsService } from './services.gen';
15
+ import { VatService } from './services.gen';
13
16
 
14
17
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
15
18
 
@@ -20,8 +23,11 @@ export class SettingServiceClient {
20
23
  public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
21
24
  public readonly countrySetting: CountrySettingService;
22
25
  public readonly emailSettings: EmailSettingsService;
26
+ public readonly productGroup: ProductGroupService;
27
+ public readonly productGroupVat: ProductGroupVatService;
23
28
  public readonly sample: SampleService;
24
29
  public readonly timeZoneSettings: TimeZoneSettingsService;
30
+ public readonly vat: VatService;
25
31
 
26
32
  public readonly request: BaseHttpRequest;
27
33
 
@@ -47,7 +53,10 @@ export class SettingServiceClient {
47
53
  this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
48
54
  this.countrySetting = new CountrySettingService(this.request);
49
55
  this.emailSettings = new EmailSettingsService(this.request);
56
+ this.productGroup = new ProductGroupService(this.request);
57
+ this.productGroupVat = new ProductGroupVatService(this.request);
50
58
  this.sample = new SampleService(this.request);
51
59
  this.timeZoneSettings = new TimeZoneSettingsService(this.request);
60
+ this.vat = new VatService(this.request);
52
61
  }
53
62
  }
@@ -36,6 +36,21 @@ export const $UniRefund_SettingService_CountrySettings_CountrySettingDto = {
36
36
  additionalProperties: false
37
37
  } as const;
38
38
 
39
+ export const $UniRefund_SettingService_CountrySettings_CreateCountrySettingDto = {
40
+ type: 'object',
41
+ properties: {
42
+ name: {
43
+ type: 'string',
44
+ nullable: true
45
+ },
46
+ value: {
47
+ type: 'string',
48
+ nullable: true
49
+ }
50
+ },
51
+ additionalProperties: false
52
+ } as const;
53
+
39
54
  export const $UniRefund_SettingService_Groups_GroupDto = {
40
55
  required: ['displayName', 'key'],
41
56
  type: 'object',
@@ -133,6 +148,323 @@ export const $UniRefund_SettingService_Items_GroupItemDto = {
133
148
  additionalProperties: false
134
149
  } as const;
135
150
 
151
+ export const $UniRefund_SettingService_ProductGroupVats_CreateProductGroupVatDto = {
152
+ required: ['active', 'countryId', 'productGroup', 'productGroupId', 'vat', 'vatId'],
153
+ type: 'object',
154
+ properties: {
155
+ extraProperties: {
156
+ type: 'object',
157
+ additionalProperties: {},
158
+ nullable: true,
159
+ readOnly: true
160
+ },
161
+ productGroupId: {
162
+ type: 'string',
163
+ format: 'uuid'
164
+ },
165
+ productGroup: {
166
+ '$ref': '#/components/schemas/UniRefund.SettingService.ProductGroups.ProductGroupDto'
167
+ },
168
+ countryId: {
169
+ type: 'string',
170
+ format: 'uuid'
171
+ },
172
+ vatId: {
173
+ type: 'string',
174
+ format: 'uuid'
175
+ },
176
+ vat: {
177
+ '$ref': '#/components/schemas/UniRefund.SettingService.Vats.VatDto'
178
+ },
179
+ active: {
180
+ type: 'boolean'
181
+ }
182
+ },
183
+ additionalProperties: false
184
+ } as const;
185
+
186
+ export const $UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto = {
187
+ type: 'object',
188
+ properties: {
189
+ id: {
190
+ type: 'string',
191
+ format: 'uuid'
192
+ },
193
+ creationTime: {
194
+ type: 'string',
195
+ format: 'date-time'
196
+ },
197
+ creatorId: {
198
+ type: 'string',
199
+ format: 'uuid',
200
+ nullable: true
201
+ },
202
+ lastModificationTime: {
203
+ type: 'string',
204
+ format: 'date-time',
205
+ nullable: true
206
+ },
207
+ lastModifierId: {
208
+ type: 'string',
209
+ format: 'uuid',
210
+ nullable: true
211
+ },
212
+ isDeleted: {
213
+ type: 'boolean'
214
+ },
215
+ deleterId: {
216
+ type: 'string',
217
+ format: 'uuid',
218
+ nullable: true
219
+ },
220
+ deletionTime: {
221
+ type: 'string',
222
+ format: 'date-time',
223
+ nullable: true
224
+ },
225
+ productGroupId: {
226
+ type: 'string',
227
+ format: 'uuid'
228
+ },
229
+ productGroup: {
230
+ '$ref': '#/components/schemas/UniRefund.SettingService.ProductGroups.ProductGroupDto'
231
+ },
232
+ countryId: {
233
+ type: 'string',
234
+ format: 'uuid'
235
+ },
236
+ vatId: {
237
+ type: 'string',
238
+ format: 'uuid'
239
+ },
240
+ vat: {
241
+ '$ref': '#/components/schemas/UniRefund.SettingService.Vats.VatDto'
242
+ },
243
+ active: {
244
+ type: 'boolean'
245
+ }
246
+ },
247
+ additionalProperties: false
248
+ } as const;
249
+
250
+ export const $UniRefund_SettingService_ProductGroupVats_UpdateProductGroupVatDto = {
251
+ required: ['id'],
252
+ type: 'object',
253
+ properties: {
254
+ extraProperties: {
255
+ type: 'object',
256
+ additionalProperties: {},
257
+ nullable: true,
258
+ readOnly: true
259
+ },
260
+ id: {
261
+ type: 'string',
262
+ format: 'uuid'
263
+ },
264
+ productGroupId: {
265
+ type: 'string',
266
+ format: 'uuid',
267
+ nullable: true
268
+ },
269
+ productGroup: {
270
+ '$ref': '#/components/schemas/UniRefund.SettingService.ProductGroups.ProductGroupDto'
271
+ },
272
+ countryId: {
273
+ type: 'string',
274
+ format: 'uuid',
275
+ nullable: true
276
+ },
277
+ vatId: {
278
+ type: 'string',
279
+ format: 'uuid',
280
+ nullable: true
281
+ },
282
+ vat: {
283
+ '$ref': '#/components/schemas/UniRefund.SettingService.Vats.VatDto'
284
+ },
285
+ active: {
286
+ type: 'boolean',
287
+ nullable: true
288
+ }
289
+ },
290
+ additionalProperties: false
291
+ } as const;
292
+
293
+ export const $UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto = {
294
+ required: ['language', 'name'],
295
+ type: 'object',
296
+ properties: {
297
+ language: {
298
+ minLength: 1,
299
+ type: 'string'
300
+ },
301
+ name: {
302
+ minLength: 1,
303
+ type: 'string'
304
+ }
305
+ },
306
+ additionalProperties: false
307
+ } as const;
308
+
309
+ export const $UniRefund_SettingService_ProductGroups_CompanyTypeCode = {
310
+ enum: [0, 1, 2, 3, 4, 5, 6],
311
+ type: 'integer',
312
+ format: 'int32'
313
+ } as const;
314
+
315
+ export const $UniRefund_SettingService_ProductGroups_CreateProductGroupDto = {
316
+ required: ['active', 'articleCode', 'companyType', 'food', 'name', 'unitCode'],
317
+ type: 'object',
318
+ properties: {
319
+ extraProperties: {
320
+ type: 'object',
321
+ additionalProperties: {},
322
+ nullable: true,
323
+ readOnly: true
324
+ },
325
+ articleCode: {
326
+ maxLength: 10,
327
+ minLength: 3,
328
+ type: 'string'
329
+ },
330
+ name: {
331
+ maxLength: 64,
332
+ minLength: 0,
333
+ type: 'string'
334
+ },
335
+ unitCode: {
336
+ '$ref': '#/components/schemas/UniRefund.SettingService.ProductGroups.UnitTypeCode'
337
+ },
338
+ companyType: {
339
+ '$ref': '#/components/schemas/UniRefund.SettingService.ProductGroups.CompanyTypeCode'
340
+ },
341
+ active: {
342
+ type: 'boolean'
343
+ },
344
+ food: {
345
+ type: 'boolean'
346
+ }
347
+ },
348
+ additionalProperties: false
349
+ } as const;
350
+
351
+ export const $UniRefund_SettingService_ProductGroups_ProductGroupDto = {
352
+ type: 'object',
353
+ properties: {
354
+ id: {
355
+ type: 'string',
356
+ format: 'uuid'
357
+ },
358
+ creationTime: {
359
+ type: 'string',
360
+ format: 'date-time'
361
+ },
362
+ creatorId: {
363
+ type: 'string',
364
+ format: 'uuid',
365
+ nullable: true
366
+ },
367
+ lastModificationTime: {
368
+ type: 'string',
369
+ format: 'date-time',
370
+ nullable: true
371
+ },
372
+ lastModifierId: {
373
+ type: 'string',
374
+ format: 'uuid',
375
+ nullable: true
376
+ },
377
+ isDeleted: {
378
+ type: 'boolean'
379
+ },
380
+ deleterId: {
381
+ type: 'string',
382
+ format: 'uuid',
383
+ nullable: true
384
+ },
385
+ deletionTime: {
386
+ type: 'string',
387
+ format: 'date-time',
388
+ nullable: true
389
+ },
390
+ articleCode: {
391
+ type: 'string',
392
+ nullable: true
393
+ },
394
+ name: {
395
+ type: 'string',
396
+ nullable: true
397
+ },
398
+ unitCode: {
399
+ '$ref': '#/components/schemas/UniRefund.SettingService.ProductGroups.UnitTypeCode'
400
+ },
401
+ companyType: {
402
+ '$ref': '#/components/schemas/UniRefund.SettingService.ProductGroups.CompanyTypeCode'
403
+ },
404
+ active: {
405
+ type: 'boolean'
406
+ },
407
+ food: {
408
+ type: 'boolean'
409
+ },
410
+ language: {
411
+ type: 'string',
412
+ nullable: true
413
+ }
414
+ },
415
+ additionalProperties: false
416
+ } as const;
417
+
418
+ export const $UniRefund_SettingService_ProductGroups_UnitTypeCode = {
419
+ enum: [0, 1, 2],
420
+ type: 'integer',
421
+ format: 'int32'
422
+ } as const;
423
+
424
+ export const $UniRefund_SettingService_ProductGroups_UpdateProductGroupDto = {
425
+ required: ['id'],
426
+ type: 'object',
427
+ properties: {
428
+ extraProperties: {
429
+ type: 'object',
430
+ additionalProperties: {},
431
+ nullable: true,
432
+ readOnly: true
433
+ },
434
+ id: {
435
+ type: 'string',
436
+ format: 'uuid'
437
+ },
438
+ articleCode: {
439
+ maxLength: 10,
440
+ minLength: 3,
441
+ type: 'string',
442
+ nullable: true
443
+ },
444
+ name: {
445
+ maxLength: 64,
446
+ minLength: 0,
447
+ type: 'string',
448
+ nullable: true
449
+ },
450
+ unitCode: {
451
+ '$ref': '#/components/schemas/UniRefund.SettingService.ProductGroups.UnitTypeCode'
452
+ },
453
+ companyType: {
454
+ '$ref': '#/components/schemas/UniRefund.SettingService.ProductGroups.CompanyTypeCode'
455
+ },
456
+ active: {
457
+ type: 'boolean',
458
+ nullable: true
459
+ },
460
+ food: {
461
+ type: 'boolean',
462
+ nullable: true
463
+ }
464
+ },
465
+ additionalProperties: false
466
+ } as const;
467
+
136
468
  export const $UniRefund_SettingService_Samples_SampleDto = {
137
469
  type: 'object',
138
470
  properties: {
@@ -237,6 +569,183 @@ export const $UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto = {
237
569
  additionalProperties: false
238
570
  } as const;
239
571
 
572
+ export const $UniRefund_SettingService_Vats_CreateVatDto = {
573
+ required: ['active', 'countryId', 'minimumTotalAmount', 'percent'],
574
+ type: 'object',
575
+ properties: {
576
+ extraProperties: {
577
+ type: 'object',
578
+ additionalProperties: {},
579
+ nullable: true,
580
+ readOnly: true
581
+ },
582
+ percent: {
583
+ type: 'number',
584
+ format: 'float'
585
+ },
586
+ minimumTotalAmount: {
587
+ type: 'number',
588
+ format: 'float'
589
+ },
590
+ countryId: {
591
+ type: 'string',
592
+ format: 'uuid'
593
+ },
594
+ active: {
595
+ type: 'boolean'
596
+ }
597
+ },
598
+ additionalProperties: false
599
+ } as const;
600
+
601
+ export const $UniRefund_SettingService_Vats_UpdateVatDto = {
602
+ type: 'object',
603
+ properties: {
604
+ extraProperties: {
605
+ type: 'object',
606
+ additionalProperties: {},
607
+ nullable: true,
608
+ readOnly: true
609
+ },
610
+ id: {
611
+ type: 'string',
612
+ format: 'uuid'
613
+ },
614
+ percent: {
615
+ type: 'number',
616
+ format: 'float',
617
+ nullable: true
618
+ },
619
+ minimumTotalAmount: {
620
+ type: 'number',
621
+ format: 'float',
622
+ nullable: true
623
+ },
624
+ countryId: {
625
+ type: 'string',
626
+ format: 'uuid',
627
+ nullable: true
628
+ },
629
+ active: {
630
+ type: 'boolean',
631
+ nullable: true
632
+ }
633
+ },
634
+ additionalProperties: false
635
+ } as const;
636
+
637
+ export const $UniRefund_SettingService_Vats_VatDto = {
638
+ type: 'object',
639
+ properties: {
640
+ id: {
641
+ type: 'string',
642
+ format: 'uuid'
643
+ },
644
+ creationTime: {
645
+ type: 'string',
646
+ format: 'date-time'
647
+ },
648
+ creatorId: {
649
+ type: 'string',
650
+ format: 'uuid',
651
+ nullable: true
652
+ },
653
+ lastModificationTime: {
654
+ type: 'string',
655
+ format: 'date-time',
656
+ nullable: true
657
+ },
658
+ lastModifierId: {
659
+ type: 'string',
660
+ format: 'uuid',
661
+ nullable: true
662
+ },
663
+ isDeleted: {
664
+ type: 'boolean'
665
+ },
666
+ deleterId: {
667
+ type: 'string',
668
+ format: 'uuid',
669
+ nullable: true
670
+ },
671
+ deletionTime: {
672
+ type: 'string',
673
+ format: 'date-time',
674
+ nullable: true
675
+ },
676
+ percent: {
677
+ type: 'number',
678
+ format: 'float'
679
+ },
680
+ minimumTotalAmount: {
681
+ type: 'number',
682
+ format: 'float'
683
+ },
684
+ countryId: {
685
+ type: 'string',
686
+ format: 'uuid'
687
+ },
688
+ active: {
689
+ type: 'boolean'
690
+ }
691
+ },
692
+ additionalProperties: false
693
+ } as const;
694
+
695
+ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_SettingService_ProductGroupVats_ProductGroupVatDto__UniRefund_SettingService_Application_Contracts__Version_1_0_0_0__Culture_neutral__PublicKeyToken_null__ = {
696
+ type: 'object',
697
+ properties: {
698
+ items: {
699
+ type: 'array',
700
+ items: {
701
+ '$ref': '#/components/schemas/UniRefund.SettingService.ProductGroupVats.ProductGroupVatDto'
702
+ },
703
+ nullable: true
704
+ },
705
+ totalCount: {
706
+ type: 'integer',
707
+ format: 'int64'
708
+ }
709
+ },
710
+ additionalProperties: false
711
+ } as const;
712
+
713
+ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_SettingService_ProductGroups_ProductGroupDto__UniRefund_SettingService_Application_Contracts__Version_1_0_0_0__Culture_neutral__PublicKeyToken_null__ = {
714
+ type: 'object',
715
+ properties: {
716
+ items: {
717
+ type: 'array',
718
+ items: {
719
+ '$ref': '#/components/schemas/UniRefund.SettingService.ProductGroups.ProductGroupDto'
720
+ },
721
+ nullable: true
722
+ },
723
+ totalCount: {
724
+ type: 'integer',
725
+ format: 'int64'
726
+ }
727
+ },
728
+ additionalProperties: false
729
+ } as const;
730
+
731
+ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_SettingService_Vats_VatDto__UniRefund_SettingService_Application_Contracts__Version_1_0_0_0__Culture_neutral__PublicKeyToken_null__ = {
732
+ type: 'object',
733
+ properties: {
734
+ items: {
735
+ type: 'array',
736
+ items: {
737
+ '$ref': '#/components/schemas/UniRefund.SettingService.Vats.VatDto'
738
+ },
739
+ nullable: true
740
+ },
741
+ totalCount: {
742
+ type: 'integer',
743
+ format: 'int64'
744
+ }
745
+ },
746
+ additionalProperties: false
747
+ } as const;
748
+
240
749
  export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
241
750
  type: 'object',
242
751
  properties: {
@@ -393,6 +902,9 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
393
902
  '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto'
394
903
  },
395
904
  nullable: true
905
+ },
906
+ currentCulture: {
907
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto'
396
908
  }
397
909
  },
398
910
  additionalProperties: false
@@ -552,6 +1064,10 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto =
552
1064
  type: 'string'
553
1065
  },
554
1066
  nullable: true
1067
+ },
1068
+ sessionId: {
1069
+ type: 'string',
1070
+ nullable: true
555
1071
  }
556
1072
  },
557
1073
  additionalProperties: false
@@ -1381,10 +1897,6 @@ export const $Volo_Abp_Localization_LanguageInfo = {
1381
1897
  type: 'string',
1382
1898
  nullable: true,
1383
1899
  readOnly: true
1384
- },
1385
- flagIcon: {
1386
- type: 'string',
1387
- nullable: true
1388
1900
  }
1389
1901
  },
1390
1902
  additionalProperties: false