@ayasofyazilim/saas 0.0.13 → 0.0.15

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 (52) hide show
  1. package/AccountService/schemas.gen.ts +4 -17
  2. package/AccountService/types.gen.ts +0 -9
  3. package/AdministrationService/schemas.gen.ts +7 -7
  4. package/BackerService/BackerServiceClient.ts +44 -0
  5. package/BackerService/core/ApiError.ts +21 -0
  6. package/BackerService/core/ApiRequestOptions.ts +13 -0
  7. package/BackerService/core/ApiResult.ts +7 -0
  8. package/BackerService/core/BaseHttpRequest.ts +10 -0
  9. package/BackerService/core/CancelablePromise.ts +126 -0
  10. package/BackerService/core/FetchHttpRequest.ts +22 -0
  11. package/BackerService/core/OpenAPI.ts +56 -0
  12. package/BackerService/core/request.ts +341 -0
  13. package/BackerService/index.ts +9 -0
  14. package/BackerService/schemas.gen.ts +8991 -0
  15. package/BackerService/services.gen.ts +270 -0
  16. package/BackerService/types.gen.ts +6611 -0
  17. package/IdentityService/schemas.gen.ts +10 -36
  18. package/IdentityService/services.gen.ts +1 -25
  19. package/IdentityService/types.gen.ts +0 -241
  20. package/MerchantService/MerchantServiceClient.ts +44 -0
  21. package/MerchantService/core/ApiError.ts +21 -0
  22. package/MerchantService/core/ApiRequestOptions.ts +13 -0
  23. package/MerchantService/core/ApiResult.ts +7 -0
  24. package/MerchantService/core/BaseHttpRequest.ts +10 -0
  25. package/MerchantService/core/CancelablePromise.ts +126 -0
  26. package/MerchantService/core/FetchHttpRequest.ts +22 -0
  27. package/MerchantService/core/OpenAPI.ts +56 -0
  28. package/MerchantService/core/request.ts +341 -0
  29. package/MerchantService/index.ts +9 -0
  30. package/MerchantService/schemas.gen.ts +6782 -0
  31. package/MerchantService/services.gen.ts +334 -0
  32. package/MerchantService/types.gen.ts +5088 -0
  33. package/ProjectService/ProjectServiceClient.ts +3 -9
  34. package/ProjectService/schemas.gen.ts +26 -723
  35. package/ProjectService/services.gen.ts +8 -348
  36. package/ProjectService/types.gen.ts +36 -2252
  37. package/SaasService/schemas.gen.ts +5 -5
  38. package/SettingService/SettingServiceClient.ts +53 -53
  39. package/SettingService/core/ApiError.ts +20 -20
  40. package/SettingService/core/ApiRequestOptions.ts +12 -12
  41. package/SettingService/core/ApiResult.ts +6 -6
  42. package/SettingService/core/BaseHttpRequest.ts +9 -9
  43. package/SettingService/core/CancelablePromise.ts +125 -125
  44. package/SettingService/core/FetchHttpRequest.ts +21 -21
  45. package/SettingService/core/OpenAPI.ts +55 -55
  46. package/SettingService/core/request.ts +340 -340
  47. package/SettingService/index.ts +8 -8
  48. package/SettingService/schemas.gen.ts +1521 -1524
  49. package/SettingService/services.gen.ts +316 -316
  50. package/SettingService/types.gen.ts +980 -981
  51. package/generator.mjs +34 -3
  52. package/package.json +4 -2
@@ -1,728 +1,5 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
- export const $AbpForDeploy_ProjectService_ProjectSectionRelations_CreateUpdateProjectSectionRelationDto = {
4
- type: 'object',
5
- properties: {
6
- id: {
7
- type: 'string',
8
- format: 'uuid'
9
- },
10
- creationTime: {
11
- type: 'string',
12
- format: 'date-time'
13
- },
14
- creatorId: {
15
- type: 'string',
16
- format: 'uuid',
17
- nullable: true
18
- },
19
- lastModificationTime: {
20
- type: 'string',
21
- format: 'date-time',
22
- nullable: true
23
- },
24
- lastModifierId: {
25
- type: 'string',
26
- format: 'uuid',
27
- nullable: true
28
- },
29
- isDeleted: {
30
- type: 'boolean'
31
- },
32
- deleterId: {
33
- type: 'string',
34
- format: 'uuid',
35
- nullable: true
36
- },
37
- deletionTime: {
38
- type: 'string',
39
- format: 'date-time',
40
- nullable: true
41
- },
42
- projectId: {
43
- type: 'string',
44
- format: 'uuid'
45
- },
46
- projectSectionId: {
47
- type: 'string',
48
- format: 'uuid'
49
- },
50
- value: {
51
- type: 'string',
52
- nullable: true
53
- }
54
- },
55
- additionalProperties: false
56
- } as const;
57
-
58
- export const $AbpForDeploy_ProjectService_ProjectSectionRelations_ProjectSectionRelationDto = {
59
- type: 'object',
60
- properties: {
61
- id: {
62
- type: 'string',
63
- format: 'uuid'
64
- },
65
- creationTime: {
66
- type: 'string',
67
- format: 'date-time'
68
- },
69
- creatorId: {
70
- type: 'string',
71
- format: 'uuid',
72
- nullable: true
73
- },
74
- lastModificationTime: {
75
- type: 'string',
76
- format: 'date-time',
77
- nullable: true
78
- },
79
- lastModifierId: {
80
- type: 'string',
81
- format: 'uuid',
82
- nullable: true
83
- },
84
- isDeleted: {
85
- type: 'boolean'
86
- },
87
- deleterId: {
88
- type: 'string',
89
- format: 'uuid',
90
- nullable: true
91
- },
92
- deletionTime: {
93
- type: 'string',
94
- format: 'date-time',
95
- nullable: true
96
- },
97
- projectId: {
98
- type: 'string',
99
- format: 'uuid'
100
- },
101
- projectSectionId: {
102
- type: 'string',
103
- format: 'uuid'
104
- },
105
- value: {
106
- type: 'string',
107
- nullable: true
108
- }
109
- },
110
- additionalProperties: false
111
- } as const;
112
-
113
- export const $AbpForDeploy_ProjectService_ProjectSections_CreateUpdateProjectSectionDto = {
114
- type: 'object',
115
- properties: {
116
- id: {
117
- type: 'string',
118
- format: 'uuid'
119
- },
120
- creationTime: {
121
- type: 'string',
122
- format: 'date-time'
123
- },
124
- creatorId: {
125
- type: 'string',
126
- format: 'uuid',
127
- nullable: true
128
- },
129
- lastModificationTime: {
130
- type: 'string',
131
- format: 'date-time',
132
- nullable: true
133
- },
134
- lastModifierId: {
135
- type: 'string',
136
- format: 'uuid',
137
- nullable: true
138
- },
139
- isDeleted: {
140
- type: 'boolean'
141
- },
142
- deleterId: {
143
- type: 'string',
144
- format: 'uuid',
145
- nullable: true
146
- },
147
- deletionTime: {
148
- type: 'string',
149
- format: 'date-time',
150
- nullable: true
151
- },
152
- name: {
153
- type: 'string',
154
- nullable: true
155
- },
156
- isDefault: {
157
- type: 'boolean'
158
- },
159
- isOptional: {
160
- type: 'boolean'
161
- }
162
- },
163
- additionalProperties: false
164
- } as const;
165
-
166
- export const $AbpForDeploy_ProjectService_ProjectSections_ProjectSectionDto = {
167
- type: 'object',
168
- properties: {
169
- id: {
170
- type: 'string',
171
- format: 'uuid'
172
- },
173
- creationTime: {
174
- type: 'string',
175
- format: 'date-time'
176
- },
177
- creatorId: {
178
- type: 'string',
179
- format: 'uuid',
180
- nullable: true
181
- },
182
- lastModificationTime: {
183
- type: 'string',
184
- format: 'date-time',
185
- nullable: true
186
- },
187
- lastModifierId: {
188
- type: 'string',
189
- format: 'uuid',
190
- nullable: true
191
- },
192
- isDeleted: {
193
- type: 'boolean'
194
- },
195
- deleterId: {
196
- type: 'string',
197
- format: 'uuid',
198
- nullable: true
199
- },
200
- deletionTime: {
201
- type: 'string',
202
- format: 'date-time',
203
- nullable: true
204
- },
205
- name: {
206
- type: 'string',
207
- nullable: true
208
- },
209
- isDefault: {
210
- type: 'boolean'
211
- },
212
- isOptional: {
213
- type: 'boolean'
214
- }
215
- },
216
- additionalProperties: false
217
- } as const;
218
-
219
- export const $AbpForDeploy_ProjectService_ProjectSections_ProjectSectionRelationDetailDto = {
220
- type: 'object',
221
- properties: {
222
- id: {
223
- type: 'string',
224
- format: 'uuid'
225
- },
226
- sectionId: {
227
- type: 'string',
228
- format: 'uuid'
229
- },
230
- name: {
231
- type: 'string',
232
- nullable: true
233
- },
234
- value: {
235
- type: 'string',
236
- nullable: true
237
- }
238
- },
239
- additionalProperties: false
240
- } as const;
241
-
242
- export const $AbpForDeploy_ProjectService_Projects_ProjectDto = {
243
- type: 'object',
244
- properties: {
245
- id: {
246
- type: 'string',
247
- format: 'uuid'
248
- },
249
- creationTime: {
250
- type: 'string',
251
- format: 'date-time'
252
- },
253
- creatorId: {
254
- type: 'string',
255
- format: 'uuid',
256
- nullable: true
257
- },
258
- lastModificationTime: {
259
- type: 'string',
260
- format: 'date-time',
261
- nullable: true
262
- },
263
- lastModifierId: {
264
- type: 'string',
265
- format: 'uuid',
266
- nullable: true
267
- },
268
- isDeleted: {
269
- type: 'boolean'
270
- },
271
- deleterId: {
272
- type: 'string',
273
- format: 'uuid',
274
- nullable: true
275
- },
276
- deletionTime: {
277
- type: 'string',
278
- format: 'date-time',
279
- nullable: true
280
- },
281
- projectName: {
282
- type: 'string',
283
- nullable: true
284
- },
285
- projectDefinition: {
286
- type: 'string',
287
- nullable: true
288
- },
289
- cashValue: {
290
- type: 'integer',
291
- format: 'int64'
292
- },
293
- fundCollectionType: {
294
- type: 'string',
295
- nullable: true
296
- },
297
- additionalFundRate: {
298
- type: 'string',
299
- nullable: true
300
- },
301
- qualifiedFundRate: {
302
- type: 'string',
303
- nullable: true
304
- },
305
- fundNominalAmount: {
306
- type: 'integer',
307
- format: 'int64'
308
- },
309
- fundableAmount: {
310
- type: 'integer',
311
- format: 'int64'
312
- },
313
- overFunding: {
314
- type: 'string'
315
- },
316
- privilege: {
317
- type: 'string',
318
- nullable: true
319
- },
320
- projectStartDate: {
321
- type: 'string',
322
- format: 'date-time'
323
- },
324
- projectEndDate: {
325
- type: 'string',
326
- format: 'date-time'
327
- },
328
- organizationId: {
329
- type: 'string',
330
- format: 'uuid'
331
- },
332
- projectSectionRelationDetails: {
333
- type: 'array',
334
- items: {
335
- type: 'object',
336
- properties: {
337
- id: {
338
- type: 'string',
339
- format: 'uuid'
340
- },
341
- sectionId: {
342
- type: 'string',
343
- format: 'uuid'
344
- },
345
- name: {
346
- type: 'string',
347
- nullable: true
348
- },
349
- value: {
350
- type: 'string',
351
- nullable: true
352
- }
353
- },
354
- additionalProperties: false
355
- },
356
- nullable: true
357
- }
358
- },
359
- additionalProperties: false
360
- } as const;
361
-
362
- export const $AbpForDeploy_ProjectService_ProjectsDto_CreateUpdateProjectDto = {
363
- type: 'object',
364
- properties: {
365
- id: {
366
- type: 'string',
367
- format: 'uuid'
368
- },
369
- creationTime: {
370
- type: 'string',
371
- format: 'date-time'
372
- },
373
- creatorId: {
374
- type: 'string',
375
- format: 'uuid',
376
- nullable: true
377
- },
378
- lastModificationTime: {
379
- type: 'string',
380
- format: 'date-time',
381
- nullable: true
382
- },
383
- lastModifierId: {
384
- type: 'string',
385
- format: 'uuid',
386
- nullable: true
387
- },
388
- isDeleted: {
389
- type: 'boolean'
390
- },
391
- deleterId: {
392
- type: 'string',
393
- format: 'uuid',
394
- nullable: true
395
- },
396
- deletionTime: {
397
- type: 'string',
398
- format: 'date-time',
399
- nullable: true
400
- },
401
- projectName: {
402
- type: 'string',
403
- nullable: true
404
- },
405
- projectDefinition: {
406
- type: 'string',
407
- nullable: true
408
- },
409
- cashValue: {
410
- type: 'integer',
411
- format: 'int64'
412
- },
413
- additionalFundRate: {
414
- type: 'string',
415
- nullable: true
416
- },
417
- qualifiedFundRate: {
418
- type: 'string',
419
- nullable: true
420
- },
421
- fundNominalAmount: {
422
- type: 'integer',
423
- format: 'int64'
424
- },
425
- fundableAmount: {
426
- type: 'integer',
427
- format: 'int64'
428
- },
429
- overFunding: {
430
- type: 'string'
431
- },
432
- privilege: {
433
- type: 'string',
434
- nullable: true
435
- },
436
- projectStartDate: {
437
- type: 'string',
438
- format: 'date-time'
439
- },
440
- projectEndDate: {
441
- type: 'string',
442
- format: 'date-time'
443
- },
444
- fundCollectionType: {
445
- type: 'string',
446
- nullable: true
447
- },
448
- organizationId: {
449
- type: 'string',
450
- format: 'uuid'
451
- }
452
- },
453
- additionalProperties: false
454
- } as const;
455
-
456
- export const $Volo_Abp_Application_Dtos_PagedResultDto_1__AbpForDeploy_ProjectService_ProjectSectionRelations_ProjectSectionRelationDto__AbpForDeploy_ProjectService_Application_Contracts__Version_1_0_0_0__Culture_neutral__PublicKeyToken_null__ = {
457
- type: 'object',
458
- properties: {
459
- items: {
460
- type: 'array',
461
- items: {
462
- type: 'object',
463
- properties: {
464
- id: {
465
- type: 'string',
466
- format: 'uuid'
467
- },
468
- creationTime: {
469
- type: 'string',
470
- format: 'date-time'
471
- },
472
- creatorId: {
473
- type: 'string',
474
- format: 'uuid',
475
- nullable: true
476
- },
477
- lastModificationTime: {
478
- type: 'string',
479
- format: 'date-time',
480
- nullable: true
481
- },
482
- lastModifierId: {
483
- type: 'string',
484
- format: 'uuid',
485
- nullable: true
486
- },
487
- isDeleted: {
488
- type: 'boolean'
489
- },
490
- deleterId: {
491
- type: 'string',
492
- format: 'uuid',
493
- nullable: true
494
- },
495
- deletionTime: {
496
- type: 'string',
497
- format: 'date-time',
498
- nullable: true
499
- },
500
- projectId: {
501
- type: 'string',
502
- format: 'uuid'
503
- },
504
- projectSectionId: {
505
- type: 'string',
506
- format: 'uuid'
507
- },
508
- value: {
509
- type: 'string',
510
- nullable: true
511
- }
512
- },
513
- additionalProperties: false
514
- },
515
- nullable: true
516
- },
517
- totalCount: {
518
- type: 'integer',
519
- format: 'int64'
520
- }
521
- },
522
- additionalProperties: false
523
- } as const;
524
-
525
- export const $Volo_Abp_Application_Dtos_PagedResultDto_1__AbpForDeploy_ProjectService_ProjectSections_ProjectSectionDto__AbpForDeploy_ProjectService_Application_Contracts__Version_1_0_0_0__Culture_neutral__PublicKeyToken_null__ = {
526
- type: 'object',
527
- properties: {
528
- items: {
529
- type: 'array',
530
- items: {
531
- type: 'object',
532
- properties: {
533
- id: {
534
- type: 'string',
535
- format: 'uuid'
536
- },
537
- creationTime: {
538
- type: 'string',
539
- format: 'date-time'
540
- },
541
- creatorId: {
542
- type: 'string',
543
- format: 'uuid',
544
- nullable: true
545
- },
546
- lastModificationTime: {
547
- type: 'string',
548
- format: 'date-time',
549
- nullable: true
550
- },
551
- lastModifierId: {
552
- type: 'string',
553
- format: 'uuid',
554
- nullable: true
555
- },
556
- isDeleted: {
557
- type: 'boolean'
558
- },
559
- deleterId: {
560
- type: 'string',
561
- format: 'uuid',
562
- nullable: true
563
- },
564
- deletionTime: {
565
- type: 'string',
566
- format: 'date-time',
567
- nullable: true
568
- },
569
- name: {
570
- type: 'string',
571
- nullable: true
572
- },
573
- isDefault: {
574
- type: 'boolean'
575
- },
576
- isOptional: {
577
- type: 'boolean'
578
- }
579
- },
580
- additionalProperties: false
581
- },
582
- nullable: true
583
- },
584
- totalCount: {
585
- type: 'integer',
586
- format: 'int64'
587
- }
588
- },
589
- additionalProperties: false
590
- } as const;
591
-
592
- export const $Volo_Abp_Application_Dtos_PagedResultDto_1__AbpForDeploy_ProjectService_Projects_ProjectDto__AbpForDeploy_ProjectService_Application_Contracts__Version_1_0_0_0__Culture_neutral__PublicKeyToken_null__ = {
593
- type: 'object',
594
- properties: {
595
- items: {
596
- type: 'array',
597
- items: {
598
- type: 'object',
599
- properties: {
600
- id: {
601
- type: 'string',
602
- format: 'uuid'
603
- },
604
- creationTime: {
605
- type: 'string',
606
- format: 'date-time'
607
- },
608
- creatorId: {
609
- type: 'string',
610
- format: 'uuid',
611
- nullable: true
612
- },
613
- lastModificationTime: {
614
- type: 'string',
615
- format: 'date-time',
616
- nullable: true
617
- },
618
- lastModifierId: {
619
- type: 'string',
620
- format: 'uuid',
621
- nullable: true
622
- },
623
- isDeleted: {
624
- type: 'boolean'
625
- },
626
- deleterId: {
627
- type: 'string',
628
- format: 'uuid',
629
- nullable: true
630
- },
631
- deletionTime: {
632
- type: 'string',
633
- format: 'date-time',
634
- nullable: true
635
- },
636
- projectName: {
637
- type: 'string',
638
- nullable: true
639
- },
640
- projectDefinition: {
641
- type: 'string',
642
- nullable: true
643
- },
644
- cashValue: {
645
- type: 'integer',
646
- format: 'int64'
647
- },
648
- fundCollectionType: {
649
- type: 'string',
650
- nullable: true
651
- },
652
- additionalFundRate: {
653
- type: 'string',
654
- nullable: true
655
- },
656
- qualifiedFundRate: {
657
- type: 'string',
658
- nullable: true
659
- },
660
- fundNominalAmount: {
661
- type: 'integer',
662
- format: 'int64'
663
- },
664
- fundableAmount: {
665
- type: 'integer',
666
- format: 'int64'
667
- },
668
- overFunding: {
669
- type: 'string'
670
- },
671
- privilege: {
672
- type: 'string',
673
- nullable: true
674
- },
675
- projectStartDate: {
676
- type: 'string',
677
- format: 'date-time'
678
- },
679
- projectEndDate: {
680
- type: 'string',
681
- format: 'date-time'
682
- },
683
- organizationId: {
684
- type: 'string',
685
- format: 'uuid'
686
- },
687
- projectSectionRelationDetails: {
688
- type: 'array',
689
- items: {
690
- type: 'object',
691
- properties: {
692
- id: {
693
- type: 'string',
694
- format: 'uuid'
695
- },
696
- sectionId: {
697
- type: 'string',
698
- format: 'uuid'
699
- },
700
- name: {
701
- type: 'string',
702
- nullable: true
703
- },
704
- value: {
705
- type: 'string',
706
- nullable: true
707
- }
708
- },
709
- additionalProperties: false
710
- },
711
- nullable: true
712
- }
713
- },
714
- additionalProperties: false
715
- },
716
- nullable: true
717
- },
718
- totalCount: {
719
- type: 'integer',
720
- format: 'int64'
721
- }
722
- },
723
- additionalProperties: false
724
- } as const;
725
-
726
3
  export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
727
4
  type: 'object',
728
5
  properties: {
@@ -2877,6 +2154,32 @@ export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
2877
2154
  additionalProperties: false
2878
2155
  } as const;
2879
2156
 
2157
+ export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto = {
2158
+ type: 'object',
2159
+ properties: {
2160
+ success: {
2161
+ type: 'boolean'
2162
+ },
2163
+ tenantId: {
2164
+ type: 'string',
2165
+ format: 'uuid',
2166
+ nullable: true
2167
+ },
2168
+ name: {
2169
+ type: 'string',
2170
+ nullable: true
2171
+ },
2172
+ normalizedName: {
2173
+ type: 'string',
2174
+ nullable: true
2175
+ },
2176
+ isActive: {
2177
+ type: 'boolean'
2178
+ }
2179
+ },
2180
+ additionalProperties: false
2181
+ } as const;
2182
+
2880
2183
  export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
2881
2184
  type: 'object',
2882
2185
  properties: {