@ayasofyazilim/saas 0.0.93 → 0.0.95
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.
- package/RefundService/schemas.gen.ts +90 -64
- package/RefundService/services.gen.ts +26 -2
- package/RefundService/types.gen.ts +79 -37
- package/TravellerService/schemas.gen.ts +23 -40
- package/TravellerService/services.gen.ts +71 -27
- package/TravellerService/types.gen.ts +82 -36
- package/generator.mjs +2 -2
- package/package.json +1 -1
- package/upwithcrowdService/schemas.gen.ts +1296 -182
- package/upwithcrowdService/services.gen.ts +3064 -1658
- package/upwithcrowdService/types.gen.ts +3286 -700
- package/upwithcrowdService/upwithcrowdServiceClient.ts +24 -0
|
@@ -7,10 +7,14 @@ import { AbpApiDefinitionService } from './services.gen';
|
|
|
7
7
|
import { AbpApplicationConfigurationService } from './services.gen';
|
|
8
8
|
import { AbpApplicationLocalizationService } from './services.gen';
|
|
9
9
|
import { AbpTenantService } from './services.gen';
|
|
10
|
+
import { AccountService } from './services.gen';
|
|
11
|
+
import { AccountExternalProviderService } from './services.gen';
|
|
10
12
|
import { AccountSettingsService } from './services.gen';
|
|
11
13
|
import { ApplicationsService } from './services.gen';
|
|
14
|
+
import { AuditLoggingSettingsWidgetService } from './services.gen';
|
|
12
15
|
import { AuditLogsService } from './services.gen';
|
|
13
16
|
import { ClaimTypeService } from './services.gen';
|
|
17
|
+
import { DynamicClaimsService } from './services.gen';
|
|
14
18
|
import { EdevletService } from './services.gen';
|
|
15
19
|
import { EditionService } from './services.gen';
|
|
16
20
|
import { EmailSettingsService } from './services.gen';
|
|
@@ -22,8 +26,11 @@ import { LanguagesService } from './services.gen';
|
|
|
22
26
|
import { LanguageTextsService } from './services.gen';
|
|
23
27
|
import { MemberService } from './services.gen';
|
|
24
28
|
import { MemberLimitService } from './services.gen';
|
|
29
|
+
import { MyMemberService } from './services.gen';
|
|
25
30
|
import { OrganizationUnitService } from './services.gen';
|
|
31
|
+
import { PermissionIntegrationService } from './services.gen';
|
|
26
32
|
import { PermissionsService } from './services.gen';
|
|
33
|
+
import { ProfileService } from './services.gen';
|
|
27
34
|
import { ProjectService } from './services.gen';
|
|
28
35
|
import { ReportService } from './services.gen';
|
|
29
36
|
import { RightOwnerService } from './services.gen';
|
|
@@ -37,6 +44,7 @@ import { TextTemplateContentsService } from './services.gen';
|
|
|
37
44
|
import { TextTemplateDefinitionsService } from './services.gen';
|
|
38
45
|
import { TimeZoneSettingsService } from './services.gen';
|
|
39
46
|
import { UserService } from './services.gen';
|
|
47
|
+
import { UserIntegrationService } from './services.gen';
|
|
40
48
|
import { UserLookupService } from './services.gen';
|
|
41
49
|
|
|
42
50
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
@@ -47,10 +55,14 @@ export class upwithcrowdServiceClient {
|
|
|
47
55
|
public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
|
|
48
56
|
public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
|
|
49
57
|
public readonly abpTenant: AbpTenantService;
|
|
58
|
+
public readonly account: AccountService;
|
|
59
|
+
public readonly accountExternalProvider: AccountExternalProviderService;
|
|
50
60
|
public readonly accountSettings: AccountSettingsService;
|
|
51
61
|
public readonly applications: ApplicationsService;
|
|
62
|
+
public readonly auditLoggingSettingsWidget: AuditLoggingSettingsWidgetService;
|
|
52
63
|
public readonly auditLogs: AuditLogsService;
|
|
53
64
|
public readonly claimType: ClaimTypeService;
|
|
65
|
+
public readonly dynamicClaims: DynamicClaimsService;
|
|
54
66
|
public readonly edevlet: EdevletService;
|
|
55
67
|
public readonly edition: EditionService;
|
|
56
68
|
public readonly emailSettings: EmailSettingsService;
|
|
@@ -62,8 +74,11 @@ export class upwithcrowdServiceClient {
|
|
|
62
74
|
public readonly languageTexts: LanguageTextsService;
|
|
63
75
|
public readonly member: MemberService;
|
|
64
76
|
public readonly memberLimit: MemberLimitService;
|
|
77
|
+
public readonly myMember: MyMemberService;
|
|
65
78
|
public readonly organizationUnit: OrganizationUnitService;
|
|
79
|
+
public readonly permissionIntegration: PermissionIntegrationService;
|
|
66
80
|
public readonly permissions: PermissionsService;
|
|
81
|
+
public readonly profile: ProfileService;
|
|
67
82
|
public readonly project: ProjectService;
|
|
68
83
|
public readonly report: ReportService;
|
|
69
84
|
public readonly rightOwner: RightOwnerService;
|
|
@@ -77,6 +92,7 @@ export class upwithcrowdServiceClient {
|
|
|
77
92
|
public readonly textTemplateDefinitions: TextTemplateDefinitionsService;
|
|
78
93
|
public readonly timeZoneSettings: TimeZoneSettingsService;
|
|
79
94
|
public readonly user: UserService;
|
|
95
|
+
public readonly userIntegration: UserIntegrationService;
|
|
80
96
|
public readonly userLookup: UserLookupService;
|
|
81
97
|
|
|
82
98
|
public readonly request: BaseHttpRequest;
|
|
@@ -102,10 +118,14 @@ export class upwithcrowdServiceClient {
|
|
|
102
118
|
this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
|
|
103
119
|
this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
|
|
104
120
|
this.abpTenant = new AbpTenantService(this.request);
|
|
121
|
+
this.account = new AccountService(this.request);
|
|
122
|
+
this.accountExternalProvider = new AccountExternalProviderService(this.request);
|
|
105
123
|
this.accountSettings = new AccountSettingsService(this.request);
|
|
106
124
|
this.applications = new ApplicationsService(this.request);
|
|
125
|
+
this.auditLoggingSettingsWidget = new AuditLoggingSettingsWidgetService(this.request);
|
|
107
126
|
this.auditLogs = new AuditLogsService(this.request);
|
|
108
127
|
this.claimType = new ClaimTypeService(this.request);
|
|
128
|
+
this.dynamicClaims = new DynamicClaimsService(this.request);
|
|
109
129
|
this.edevlet = new EdevletService(this.request);
|
|
110
130
|
this.edition = new EditionService(this.request);
|
|
111
131
|
this.emailSettings = new EmailSettingsService(this.request);
|
|
@@ -117,8 +137,11 @@ export class upwithcrowdServiceClient {
|
|
|
117
137
|
this.languageTexts = new LanguageTextsService(this.request);
|
|
118
138
|
this.member = new MemberService(this.request);
|
|
119
139
|
this.memberLimit = new MemberLimitService(this.request);
|
|
140
|
+
this.myMember = new MyMemberService(this.request);
|
|
120
141
|
this.organizationUnit = new OrganizationUnitService(this.request);
|
|
142
|
+
this.permissionIntegration = new PermissionIntegrationService(this.request);
|
|
121
143
|
this.permissions = new PermissionsService(this.request);
|
|
144
|
+
this.profile = new ProfileService(this.request);
|
|
122
145
|
this.project = new ProjectService(this.request);
|
|
123
146
|
this.report = new ReportService(this.request);
|
|
124
147
|
this.rightOwner = new RightOwnerService(this.request);
|
|
@@ -132,6 +155,7 @@ export class upwithcrowdServiceClient {
|
|
|
132
155
|
this.textTemplateDefinitions = new TextTemplateDefinitionsService(this.request);
|
|
133
156
|
this.timeZoneSettings = new TimeZoneSettingsService(this.request);
|
|
134
157
|
this.user = new UserService(this.request);
|
|
158
|
+
this.userIntegration = new UserIntegrationService(this.request);
|
|
135
159
|
this.userLookup = new UserLookupService(this.request);
|
|
136
160
|
}
|
|
137
161
|
}
|