@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
@@ -1,47 +1,47 @@
1
- import type { BaseHttpRequest } from './core/BaseHttpRequest';
2
- import type { OpenAPIConfig } from './core/OpenAPI';
3
- import { Interceptors } from './core/OpenAPI';
4
- import { FetchHttpRequest } from './core/FetchHttpRequest';
5
-
6
- import { AbpApiDefinitionService } from './services.gen';
7
- import { AbpApplicationConfigurationService } from './services.gen';
8
- import { AbpApplicationLocalizationService } from './services.gen';
9
- import { ProjectService } from './services.gen';
10
- import { ProjectPublicService } from './services.gen';
11
-
12
- type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
13
-
14
- export class ProjectServiceClient {
15
-
16
- public readonly abpApiDefinition: AbpApiDefinitionService;
17
- public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
18
- public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
19
- public readonly project: ProjectService;
20
- public readonly projectPublic: ProjectPublicService;
21
-
22
- public readonly request: BaseHttpRequest;
23
-
24
- constructor(config?: Partial<OpenAPIConfig>, HttpRequest: HttpRequestConstructor = FetchHttpRequest) {
25
- this.request = new HttpRequest({
26
- BASE: config?.BASE ?? '',
27
- VERSION: config?.VERSION ?? '1',
28
- WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
29
- CREDENTIALS: config?.CREDENTIALS ?? 'include',
30
- TOKEN: config?.TOKEN,
31
- USERNAME: config?.USERNAME,
32
- PASSWORD: config?.PASSWORD,
33
- HEADERS: config?.HEADERS,
34
- ENCODE_PATH: config?.ENCODE_PATH,
35
- interceptors: {
36
- request: config?.interceptors?.request ?? new Interceptors(),
37
- response: config?.interceptors?.response ?? new Interceptors(),
38
- },
39
- });
40
-
41
- this.abpApiDefinition = new AbpApiDefinitionService(this.request);
42
- this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
43
- this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
44
- this.project = new ProjectService(this.request);
45
- this.projectPublic = new ProjectPublicService(this.request);
46
- }
47
- }
1
+ import type { BaseHttpRequest } from './core/BaseHttpRequest';
2
+ import type { OpenAPIConfig } from './core/OpenAPI';
3
+ import { Interceptors } from './core/OpenAPI';
4
+ import { FetchHttpRequest } from './core/FetchHttpRequest';
5
+
6
+ import { AbpApiDefinitionService } from './services.gen';
7
+ import { AbpApplicationConfigurationService } from './services.gen';
8
+ import { AbpApplicationLocalizationService } from './services.gen';
9
+ import { ProjectService } from './services.gen';
10
+ import { ProjectPublicService } from './services.gen';
11
+
12
+ type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
13
+
14
+ export class ProjectServiceClient {
15
+
16
+ public readonly abpApiDefinition: AbpApiDefinitionService;
17
+ public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
18
+ public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
19
+ public readonly project: ProjectService;
20
+ public readonly projectPublic: ProjectPublicService;
21
+
22
+ public readonly request: BaseHttpRequest;
23
+
24
+ constructor(config?: Partial<OpenAPIConfig>, HttpRequest: HttpRequestConstructor = FetchHttpRequest) {
25
+ this.request = new HttpRequest({
26
+ BASE: config?.BASE ?? '',
27
+ VERSION: config?.VERSION ?? '1',
28
+ WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
29
+ CREDENTIALS: config?.CREDENTIALS ?? 'include',
30
+ TOKEN: config?.TOKEN,
31
+ USERNAME: config?.USERNAME,
32
+ PASSWORD: config?.PASSWORD,
33
+ HEADERS: config?.HEADERS,
34
+ ENCODE_PATH: config?.ENCODE_PATH,
35
+ interceptors: {
36
+ request: config?.interceptors?.request ?? new Interceptors(),
37
+ response: config?.interceptors?.response ?? new Interceptors(),
38
+ },
39
+ });
40
+
41
+ this.abpApiDefinition = new AbpApiDefinitionService(this.request);
42
+ this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
43
+ this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
44
+ this.project = new ProjectService(this.request);
45
+ this.projectPublic = new ProjectPublicService(this.request);
46
+ }
47
+ }
@@ -1,15 +1,163 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
- export const $UpwithCrowd_FundraiserService_Fundraisers_ProfileDto = {
3
+ export const $UpwithCrowd_FundraiserService_AffiliationTypes_AffiliationTypeDto = {
4
4
  type: 'object',
5
5
  properties: {
6
6
  id: {
7
7
  type: 'string',
8
8
  format: 'uuid'
9
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
+ fundraiserId: {
43
+ type: 'string',
44
+ format: 'uuid'
45
+ },
10
46
  name: {
11
47
  type: 'string',
12
48
  nullable: true
49
+ },
50
+ description: {
51
+ type: 'string',
52
+ nullable: true
53
+ },
54
+ affiliationTypeCode: {
55
+ enum: [0, 1, 2],
56
+ type: 'integer',
57
+ format: 'int32'
58
+ },
59
+ partyId: {
60
+ type: 'string',
61
+ format: 'uuid'
62
+ }
63
+ },
64
+ additionalProperties: false
65
+ } as const;
66
+
67
+ export const $UpwithCrowd_FundraiserService_Enums_AffiliationTypeCode = {
68
+ enum: [0, 1, 2],
69
+ type: 'integer',
70
+ format: 'int32'
71
+ } as const;
72
+
73
+ export const $UpwithCrowd_FundraiserService_Enums_FundraiserPartyType = {
74
+ enum: [0, 1],
75
+ type: 'integer',
76
+ format: 'int32'
77
+ } as const;
78
+
79
+ export const $UpwithCrowd_FundraiserService_Fundraisers_FundraiserProfileDto = {
80
+ type: 'object',
81
+ properties: {
82
+ id: {
83
+ type: 'string',
84
+ format: 'uuid'
85
+ },
86
+ name: {
87
+ type: 'string',
88
+ nullable: true
89
+ },
90
+ fundraiserType: {
91
+ enum: [0, 1],
92
+ type: 'integer',
93
+ format: 'int32'
94
+ },
95
+ fundraiserTypeDescription: {
96
+ type: 'string',
97
+ nullable: true
98
+ },
99
+ affiliation: {
100
+ type: 'object',
101
+ properties: {
102
+ id: {
103
+ type: 'string',
104
+ format: 'uuid'
105
+ },
106
+ creationTime: {
107
+ type: 'string',
108
+ format: 'date-time'
109
+ },
110
+ creatorId: {
111
+ type: 'string',
112
+ format: 'uuid',
113
+ nullable: true
114
+ },
115
+ lastModificationTime: {
116
+ type: 'string',
117
+ format: 'date-time',
118
+ nullable: true
119
+ },
120
+ lastModifierId: {
121
+ type: 'string',
122
+ format: 'uuid',
123
+ nullable: true
124
+ },
125
+ isDeleted: {
126
+ type: 'boolean'
127
+ },
128
+ deleterId: {
129
+ type: 'string',
130
+ format: 'uuid',
131
+ nullable: true
132
+ },
133
+ deletionTime: {
134
+ type: 'string',
135
+ format: 'date-time',
136
+ nullable: true
137
+ },
138
+ fundraiserId: {
139
+ type: 'string',
140
+ format: 'uuid'
141
+ },
142
+ name: {
143
+ type: 'string',
144
+ nullable: true
145
+ },
146
+ description: {
147
+ type: 'string',
148
+ nullable: true
149
+ },
150
+ affiliationTypeCode: {
151
+ enum: [0, 1, 2],
152
+ type: 'integer',
153
+ format: 'int32'
154
+ },
155
+ partyId: {
156
+ type: 'string',
157
+ format: 'uuid'
158
+ }
159
+ },
160
+ additionalProperties: false
13
161
  }
14
162
  },
15
163
  additionalProperties: false
@@ -352,6 +500,78 @@ export const $UpwithCrowd_ProjectService_Projects_ProjectDetailDto = {
352
500
  name: {
353
501
  type: 'string',
354
502
  nullable: true
503
+ },
504
+ fundraiserType: {
505
+ enum: [0, 1],
506
+ type: 'integer',
507
+ format: 'int32'
508
+ },
509
+ fundraiserTypeDescription: {
510
+ type: 'string',
511
+ nullable: true
512
+ },
513
+ affiliation: {
514
+ type: 'object',
515
+ properties: {
516
+ id: {
517
+ type: 'string',
518
+ format: 'uuid'
519
+ },
520
+ creationTime: {
521
+ type: 'string',
522
+ format: 'date-time'
523
+ },
524
+ creatorId: {
525
+ type: 'string',
526
+ format: 'uuid',
527
+ nullable: true
528
+ },
529
+ lastModificationTime: {
530
+ type: 'string',
531
+ format: 'date-time',
532
+ nullable: true
533
+ },
534
+ lastModifierId: {
535
+ type: 'string',
536
+ format: 'uuid',
537
+ nullable: true
538
+ },
539
+ isDeleted: {
540
+ type: 'boolean'
541
+ },
542
+ deleterId: {
543
+ type: 'string',
544
+ format: 'uuid',
545
+ nullable: true
546
+ },
547
+ deletionTime: {
548
+ type: 'string',
549
+ format: 'date-time',
550
+ nullable: true
551
+ },
552
+ fundraiserId: {
553
+ type: 'string',
554
+ format: 'uuid'
555
+ },
556
+ name: {
557
+ type: 'string',
558
+ nullable: true
559
+ },
560
+ description: {
561
+ type: 'string',
562
+ nullable: true
563
+ },
564
+ affiliationTypeCode: {
565
+ enum: [0, 1, 2],
566
+ type: 'integer',
567
+ format: 'int32'
568
+ },
569
+ partyId: {
570
+ type: 'string',
571
+ format: 'uuid'
572
+ }
573
+ },
574
+ additionalProperties: false
355
575
  }
356
576
  },
357
577
  additionalProperties: false
@@ -632,6 +852,78 @@ export const $UpwithCrowd_ProjectService_Projects_ProjectWithFundraiserDto = {
632
852
  name: {
633
853
  type: 'string',
634
854
  nullable: true
855
+ },
856
+ fundraiserType: {
857
+ enum: [0, 1],
858
+ type: 'integer',
859
+ format: 'int32'
860
+ },
861
+ fundraiserTypeDescription: {
862
+ type: 'string',
863
+ nullable: true
864
+ },
865
+ affiliation: {
866
+ type: 'object',
867
+ properties: {
868
+ id: {
869
+ type: 'string',
870
+ format: 'uuid'
871
+ },
872
+ creationTime: {
873
+ type: 'string',
874
+ format: 'date-time'
875
+ },
876
+ creatorId: {
877
+ type: 'string',
878
+ format: 'uuid',
879
+ nullable: true
880
+ },
881
+ lastModificationTime: {
882
+ type: 'string',
883
+ format: 'date-time',
884
+ nullable: true
885
+ },
886
+ lastModifierId: {
887
+ type: 'string',
888
+ format: 'uuid',
889
+ nullable: true
890
+ },
891
+ isDeleted: {
892
+ type: 'boolean'
893
+ },
894
+ deleterId: {
895
+ type: 'string',
896
+ format: 'uuid',
897
+ nullable: true
898
+ },
899
+ deletionTime: {
900
+ type: 'string',
901
+ format: 'date-time',
902
+ nullable: true
903
+ },
904
+ fundraiserId: {
905
+ type: 'string',
906
+ format: 'uuid'
907
+ },
908
+ name: {
909
+ type: 'string',
910
+ nullable: true
911
+ },
912
+ description: {
913
+ type: 'string',
914
+ nullable: true
915
+ },
916
+ affiliationTypeCode: {
917
+ enum: [0, 1, 2],
918
+ type: 'integer',
919
+ format: 'int32'
920
+ },
921
+ partyId: {
922
+ type: 'string',
923
+ format: 'uuid'
924
+ }
925
+ },
926
+ additionalProperties: false
635
927
  }
636
928
  },
637
929
  additionalProperties: false
@@ -1019,6 +1311,78 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UpwithCrowd_ProjectSer
1019
1311
  name: {
1020
1312
  type: 'string',
1021
1313
  nullable: true
1314
+ },
1315
+ fundraiserType: {
1316
+ enum: [0, 1],
1317
+ type: 'integer',
1318
+ format: 'int32'
1319
+ },
1320
+ fundraiserTypeDescription: {
1321
+ type: 'string',
1322
+ nullable: true
1323
+ },
1324
+ affiliation: {
1325
+ type: 'object',
1326
+ properties: {
1327
+ id: {
1328
+ type: 'string',
1329
+ format: 'uuid'
1330
+ },
1331
+ creationTime: {
1332
+ type: 'string',
1333
+ format: 'date-time'
1334
+ },
1335
+ creatorId: {
1336
+ type: 'string',
1337
+ format: 'uuid',
1338
+ nullable: true
1339
+ },
1340
+ lastModificationTime: {
1341
+ type: 'string',
1342
+ format: 'date-time',
1343
+ nullable: true
1344
+ },
1345
+ lastModifierId: {
1346
+ type: 'string',
1347
+ format: 'uuid',
1348
+ nullable: true
1349
+ },
1350
+ isDeleted: {
1351
+ type: 'boolean'
1352
+ },
1353
+ deleterId: {
1354
+ type: 'string',
1355
+ format: 'uuid',
1356
+ nullable: true
1357
+ },
1358
+ deletionTime: {
1359
+ type: 'string',
1360
+ format: 'date-time',
1361
+ nullable: true
1362
+ },
1363
+ fundraiserId: {
1364
+ type: 'string',
1365
+ format: 'uuid'
1366
+ },
1367
+ name: {
1368
+ type: 'string',
1369
+ nullable: true
1370
+ },
1371
+ description: {
1372
+ type: 'string',
1373
+ nullable: true
1374
+ },
1375
+ affiliationTypeCode: {
1376
+ enum: [0, 1, 2],
1377
+ type: 'integer',
1378
+ format: 'int32'
1379
+ },
1380
+ partyId: {
1381
+ type: 'string',
1382
+ format: 'uuid'
1383
+ }
1384
+ },
1385
+ additionalProperties: false
1022
1386
  }
1023
1387
  },
1024
1388
  additionalProperties: false