@ayasofyazilim/saas 0.0.17 → 0.0.19

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