@flagpole/api-types 1.0.24 → 1.0.25-pr.12.5c119a8
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/README.md +1 -1
- package/lib/flagpole-api-types.d.ts +276 -146
- package/lib/flagpole-api-types.js +96 -48
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
# @flagpole/api-types v1.0.
|
|
1
|
+
# @flagpole/api-types v1.0.25
|
|
2
2
|
TypeScript types for FlagPole API generated from OpenAPI specification.
|
|
@@ -7,6 +7,38 @@ export interface ActivateOrganizationDto {
|
|
|
7
7
|
*/
|
|
8
8
|
activateUsers: boolean;
|
|
9
9
|
}
|
|
10
|
+
export type ActivityLogControllerGetEntityActivitiesData = any;
|
|
11
|
+
export interface ActivityLogControllerGetEntityActivitiesParams {
|
|
12
|
+
/** @example 20 */
|
|
13
|
+
limit?: number;
|
|
14
|
+
entityType: "feature_flag" | "project";
|
|
15
|
+
/** Entity ID */
|
|
16
|
+
entityId: string;
|
|
17
|
+
}
|
|
18
|
+
export type ActivityLogControllerGetFeatureFlagActivitiesData = any;
|
|
19
|
+
export interface ActivityLogControllerGetFeatureFlagActivitiesParams {
|
|
20
|
+
/** @example 20 */
|
|
21
|
+
limit?: number;
|
|
22
|
+
/** Feature Flag ID */
|
|
23
|
+
flagId: string;
|
|
24
|
+
}
|
|
25
|
+
export type ActivityLogControllerGetOrganizationActivitiesData = any;
|
|
26
|
+
export interface ActivityLogControllerGetOrganizationActivitiesParams {
|
|
27
|
+
/** @example 50 */
|
|
28
|
+
limit?: number;
|
|
29
|
+
/** @example 0 */
|
|
30
|
+
skip?: number;
|
|
31
|
+
projectId?: string;
|
|
32
|
+
entityType?: "feature_flag" | "project";
|
|
33
|
+
action?: "feature_flag.created" | "feature_flag.updated" | "feature_flag.toggled" | "feature_flag.deleted" | "project.created" | "project.updated" | "project.member_added" | "project.member_removed" | "project.member_role_changed" | "project.deleted";
|
|
34
|
+
}
|
|
35
|
+
export type ActivityLogControllerGetProjectActivitiesData = any;
|
|
36
|
+
export interface ActivityLogControllerGetProjectActivitiesParams {
|
|
37
|
+
/** @example 50 */
|
|
38
|
+
limit?: number;
|
|
39
|
+
/** Project ID */
|
|
40
|
+
projectId: string;
|
|
41
|
+
}
|
|
10
42
|
export interface AddUserToOrganizationDto {
|
|
11
43
|
/**
|
|
12
44
|
* Email of the user to add to the organization
|
|
@@ -24,7 +56,7 @@ export type ApiKeysControllerDeactivateData = any;
|
|
|
24
56
|
export type ApiKeysControllerFindAllData = any;
|
|
25
57
|
export type AuthControllerForgotPasswordData = any;
|
|
26
58
|
export type AuthControllerGetCurrentUserData = any;
|
|
27
|
-
export type
|
|
59
|
+
export type AuthControllerGoogleAuthCallbackApiData = AuthResponseDto;
|
|
28
60
|
export type AuthControllerLoginData = AuthResponseDto;
|
|
29
61
|
export type AuthControllerLogoutData = any;
|
|
30
62
|
export type AuthControllerResetPasswordData = any;
|
|
@@ -76,9 +108,9 @@ export interface ConditionRuleDto {
|
|
|
76
108
|
countries?: string[];
|
|
77
109
|
/** Days of week (0-6, Sunday=0) */
|
|
78
110
|
daysOfWeek?: number[];
|
|
79
|
-
/** Array of email addresses
|
|
111
|
+
/** Array of email addresses */
|
|
80
112
|
email?: string[];
|
|
81
|
-
/** Array of email domains
|
|
113
|
+
/** Array of email domains */
|
|
82
114
|
emailDomain?: string[];
|
|
83
115
|
/**
|
|
84
116
|
* End date for time-based condition
|
|
@@ -102,9 +134,9 @@ export interface ConditionRuleDto {
|
|
|
102
134
|
startDate?: string;
|
|
103
135
|
/** Time zone for the condition */
|
|
104
136
|
timeZone?: string;
|
|
105
|
-
/** Array of user IDs
|
|
137
|
+
/** Array of user IDs */
|
|
106
138
|
userId?: string[];
|
|
107
|
-
/** Array of user types
|
|
139
|
+
/** Array of user types */
|
|
108
140
|
userType?: string[];
|
|
109
141
|
/** Array of values to match against (custom condition) */
|
|
110
142
|
values?: string[];
|
|
@@ -236,12 +268,12 @@ export interface FeatureFlagConditionsDto {
|
|
|
236
268
|
export type FeatureFlagControllerCreateData = FeatureFlag;
|
|
237
269
|
export type FeatureFlagControllerDeleteData = any;
|
|
238
270
|
export type FeatureFlagControllerFindAllData = FeatureFlag[];
|
|
239
|
-
export type FeatureFlagControllerFindAllSdkData = FeatureFlag[];
|
|
240
|
-
export interface FeatureFlagControllerFindAllSdkParams {
|
|
241
|
-
environments: string;
|
|
242
|
-
}
|
|
243
271
|
export type FeatureFlagControllerToggleData = FeatureFlag;
|
|
244
272
|
export type FeatureFlagControllerUpdateData = any;
|
|
273
|
+
export type FeatureFlagSdkControllerFindAllSdkData = FeatureFlag[];
|
|
274
|
+
export interface FeatureFlagSdkControllerFindAllSdkParams {
|
|
275
|
+
environments: string;
|
|
276
|
+
}
|
|
245
277
|
export type FeedbackControllerSubmitData = any;
|
|
246
278
|
export interface ForgotPasswordDto {
|
|
247
279
|
/**
|
|
@@ -411,8 +443,6 @@ export type UsersControllerGetProfileData = any;
|
|
|
411
443
|
export type UsersControllerInviteData = any;
|
|
412
444
|
export type UsersControllerResendInvitationData = any;
|
|
413
445
|
export type UsersControllerUpdateProfileData = any;
|
|
414
|
-
export type UsersControllerUpdateProjectsData = any;
|
|
415
|
-
export type UsersControllerUpdateRoleData = any;
|
|
416
446
|
export type UsersControllerUpdateUserData = any;
|
|
417
447
|
export declare namespace Api {
|
|
418
448
|
/**
|
|
@@ -445,20 +475,35 @@ export declare namespace Api {
|
|
|
445
475
|
type RequestHeaders = {};
|
|
446
476
|
type ResponseBody = any;
|
|
447
477
|
}
|
|
478
|
+
/**
|
|
479
|
+
* No description
|
|
480
|
+
* @tags auth
|
|
481
|
+
* @name AuthControllerGoogleAuthCallbackApi
|
|
482
|
+
* @summary Google auth callback API endpoint
|
|
483
|
+
* @request POST:/api/auth/google/callback-api
|
|
484
|
+
* @response `200` `AuthControllerGoogleAuthCallbackApiData` Returns authentication result as JSON
|
|
485
|
+
*/
|
|
486
|
+
namespace AuthControllerGoogleAuthCallbackApi {
|
|
487
|
+
type RequestParams = {};
|
|
488
|
+
type RequestQuery = {};
|
|
489
|
+
type RequestBody = never;
|
|
490
|
+
type RequestHeaders = {};
|
|
491
|
+
type ResponseBody = AuthControllerGoogleAuthCallbackApiData;
|
|
492
|
+
}
|
|
448
493
|
/**
|
|
449
494
|
* No description
|
|
450
495
|
* @tags auth
|
|
451
496
|
* @name AuthControllerGoogleAuthRedirect
|
|
452
497
|
* @summary Google auth callback
|
|
453
498
|
* @request GET:/api/auth/google/callback
|
|
454
|
-
* @response `
|
|
499
|
+
* @response `302` `void` Redirects to frontend with authentication result
|
|
455
500
|
*/
|
|
456
501
|
namespace AuthControllerGoogleAuthRedirect {
|
|
457
502
|
type RequestParams = {};
|
|
458
503
|
type RequestQuery = {};
|
|
459
504
|
type RequestBody = never;
|
|
460
505
|
type RequestHeaders = {};
|
|
461
|
-
type ResponseBody =
|
|
506
|
+
type ResponseBody = any;
|
|
462
507
|
}
|
|
463
508
|
/**
|
|
464
509
|
* No description
|
|
@@ -556,6 +601,38 @@ export declare namespace Api {
|
|
|
556
601
|
type RequestHeaders = {};
|
|
557
602
|
type ResponseBody = UsersControllerInviteData;
|
|
558
603
|
}
|
|
604
|
+
/**
|
|
605
|
+
* No description
|
|
606
|
+
* @tags users
|
|
607
|
+
* @name UsersControllerGetProfile
|
|
608
|
+
* @summary Get current user profile
|
|
609
|
+
* @request GET:/api/users/profile
|
|
610
|
+
* @secure
|
|
611
|
+
* @response `200` `UsersControllerGetProfileData`
|
|
612
|
+
*/
|
|
613
|
+
namespace UsersControllerGetProfile {
|
|
614
|
+
type RequestParams = {};
|
|
615
|
+
type RequestQuery = {};
|
|
616
|
+
type RequestBody = never;
|
|
617
|
+
type RequestHeaders = {};
|
|
618
|
+
type ResponseBody = UsersControllerGetProfileData;
|
|
619
|
+
}
|
|
620
|
+
/**
|
|
621
|
+
* No description
|
|
622
|
+
* @tags users
|
|
623
|
+
* @name UsersControllerUpdateProfile
|
|
624
|
+
* @summary Update current user profile
|
|
625
|
+
* @request PATCH:/api/users/profile
|
|
626
|
+
* @secure
|
|
627
|
+
* @response `200` `UsersControllerUpdateProfileData`
|
|
628
|
+
*/
|
|
629
|
+
namespace UsersControllerUpdateProfile {
|
|
630
|
+
type RequestParams = {};
|
|
631
|
+
type RequestQuery = {};
|
|
632
|
+
type RequestBody = UpdateUserProfileDto;
|
|
633
|
+
type RequestHeaders = {};
|
|
634
|
+
type ResponseBody = UsersControllerUpdateProfileData;
|
|
635
|
+
}
|
|
559
636
|
/**
|
|
560
637
|
* No description
|
|
561
638
|
* @tags users
|
|
@@ -598,91 +675,114 @@ export declare namespace Api {
|
|
|
598
675
|
/**
|
|
599
676
|
* No description
|
|
600
677
|
* @tags users
|
|
601
|
-
* @name
|
|
602
|
-
* @summary
|
|
603
|
-
* @request
|
|
604
|
-
* @deprecated
|
|
678
|
+
* @name UsersControllerResendInvitation
|
|
679
|
+
* @summary Resend invitation to pending user
|
|
680
|
+
* @request POST:/api/users/{id}/resend-invitation
|
|
605
681
|
* @secure
|
|
606
|
-
* @response `200` `
|
|
682
|
+
* @response `200` `UsersControllerResendInvitationData` Invitation resent successfully
|
|
683
|
+
* @response `403` `void` Insufficient permissions
|
|
607
684
|
*/
|
|
608
|
-
namespace
|
|
685
|
+
namespace UsersControllerResendInvitation {
|
|
609
686
|
type RequestParams = {
|
|
610
687
|
id: string;
|
|
611
688
|
};
|
|
612
689
|
type RequestQuery = {};
|
|
613
690
|
type RequestBody = never;
|
|
614
691
|
type RequestHeaders = {};
|
|
615
|
-
type ResponseBody =
|
|
692
|
+
type ResponseBody = UsersControllerResendInvitationData;
|
|
616
693
|
}
|
|
617
694
|
/**
|
|
618
695
|
* No description
|
|
619
|
-
* @tags
|
|
620
|
-
* @name
|
|
621
|
-
* @summary
|
|
622
|
-
* @request
|
|
623
|
-
* @deprecated
|
|
696
|
+
* @tags activity-logs
|
|
697
|
+
* @name ActivityLogControllerGetOrganizationActivities
|
|
698
|
+
* @summary Get organization activities
|
|
699
|
+
* @request GET:/api/activity-logs
|
|
624
700
|
* @secure
|
|
625
|
-
* @response `200` `
|
|
701
|
+
* @response `200` `ActivityLogControllerGetOrganizationActivitiesData` Returns activity logs with pagination
|
|
626
702
|
*/
|
|
627
|
-
namespace
|
|
628
|
-
type RequestParams = {
|
|
629
|
-
|
|
703
|
+
namespace ActivityLogControllerGetOrganizationActivities {
|
|
704
|
+
type RequestParams = {};
|
|
705
|
+
type RequestQuery = {
|
|
706
|
+
/** @example 50 */
|
|
707
|
+
limit?: number;
|
|
708
|
+
/** @example 0 */
|
|
709
|
+
skip?: number;
|
|
710
|
+
projectId?: string;
|
|
711
|
+
entityType?: "feature_flag" | "project";
|
|
712
|
+
action?: "feature_flag.created" | "feature_flag.updated" | "feature_flag.toggled" | "feature_flag.deleted" | "project.created" | "project.updated" | "project.member_added" | "project.member_removed" | "project.member_role_changed" | "project.deleted";
|
|
630
713
|
};
|
|
631
|
-
type RequestQuery = {};
|
|
632
714
|
type RequestBody = never;
|
|
633
|
-
type RequestHeaders = {
|
|
634
|
-
|
|
715
|
+
type RequestHeaders = {
|
|
716
|
+
"x-organization-id": string;
|
|
717
|
+
};
|
|
718
|
+
type ResponseBody = ActivityLogControllerGetOrganizationActivitiesData;
|
|
635
719
|
}
|
|
636
720
|
/**
|
|
637
721
|
* No description
|
|
638
|
-
* @tags
|
|
639
|
-
* @name
|
|
640
|
-
* @summary
|
|
641
|
-
* @request
|
|
722
|
+
* @tags activity-logs
|
|
723
|
+
* @name ActivityLogControllerGetProjectActivities
|
|
724
|
+
* @summary Get activities for a specific project
|
|
725
|
+
* @request GET:/api/activity-logs/project/{projectId}
|
|
642
726
|
* @secure
|
|
643
|
-
* @response `200` `
|
|
644
|
-
* @response `403` `void` Insufficient permissions
|
|
727
|
+
* @response `200` `ActivityLogControllerGetProjectActivitiesData` Returns project activity logs
|
|
645
728
|
*/
|
|
646
|
-
namespace
|
|
729
|
+
namespace ActivityLogControllerGetProjectActivities {
|
|
647
730
|
type RequestParams = {
|
|
648
|
-
|
|
731
|
+
/** Project ID */
|
|
732
|
+
projectId: string;
|
|
733
|
+
};
|
|
734
|
+
type RequestQuery = {
|
|
735
|
+
/** @example 50 */
|
|
736
|
+
limit?: number;
|
|
649
737
|
};
|
|
650
|
-
type RequestQuery = {};
|
|
651
738
|
type RequestBody = never;
|
|
652
739
|
type RequestHeaders = {};
|
|
653
|
-
type ResponseBody =
|
|
740
|
+
type ResponseBody = ActivityLogControllerGetProjectActivitiesData;
|
|
654
741
|
}
|
|
655
742
|
/**
|
|
656
743
|
* No description
|
|
657
|
-
* @tags
|
|
658
|
-
* @name
|
|
659
|
-
* @summary Get
|
|
660
|
-
* @request GET:/api/
|
|
744
|
+
* @tags activity-logs
|
|
745
|
+
* @name ActivityLogControllerGetFeatureFlagActivities
|
|
746
|
+
* @summary Get activities for a specific feature flag
|
|
747
|
+
* @request GET:/api/activity-logs/feature-flag/{flagId}
|
|
661
748
|
* @secure
|
|
662
|
-
* @response `200` `
|
|
749
|
+
* @response `200` `ActivityLogControllerGetFeatureFlagActivitiesData` Returns feature flag activity history
|
|
663
750
|
*/
|
|
664
|
-
namespace
|
|
665
|
-
type RequestParams = {
|
|
666
|
-
|
|
751
|
+
namespace ActivityLogControllerGetFeatureFlagActivities {
|
|
752
|
+
type RequestParams = {
|
|
753
|
+
/** Feature Flag ID */
|
|
754
|
+
flagId: string;
|
|
755
|
+
};
|
|
756
|
+
type RequestQuery = {
|
|
757
|
+
/** @example 20 */
|
|
758
|
+
limit?: number;
|
|
759
|
+
};
|
|
667
760
|
type RequestBody = never;
|
|
668
761
|
type RequestHeaders = {};
|
|
669
|
-
type ResponseBody =
|
|
762
|
+
type ResponseBody = ActivityLogControllerGetFeatureFlagActivitiesData;
|
|
670
763
|
}
|
|
671
764
|
/**
|
|
672
765
|
* No description
|
|
673
|
-
* @tags
|
|
674
|
-
* @name
|
|
675
|
-
* @summary
|
|
676
|
-
* @request
|
|
766
|
+
* @tags activity-logs
|
|
767
|
+
* @name ActivityLogControllerGetEntityActivities
|
|
768
|
+
* @summary Get activities for a specific entity
|
|
769
|
+
* @request GET:/api/activity-logs/entity/{entityType}/{entityId}
|
|
677
770
|
* @secure
|
|
678
|
-
* @response `200` `
|
|
771
|
+
* @response `200` `ActivityLogControllerGetEntityActivitiesData` Returns entity activity history
|
|
679
772
|
*/
|
|
680
|
-
namespace
|
|
681
|
-
type RequestParams = {
|
|
682
|
-
|
|
683
|
-
|
|
773
|
+
namespace ActivityLogControllerGetEntityActivities {
|
|
774
|
+
type RequestParams = {
|
|
775
|
+
entityType: "feature_flag" | "project";
|
|
776
|
+
/** Entity ID */
|
|
777
|
+
entityId: string;
|
|
778
|
+
};
|
|
779
|
+
type RequestQuery = {
|
|
780
|
+
/** @example 20 */
|
|
781
|
+
limit?: number;
|
|
782
|
+
};
|
|
783
|
+
type RequestBody = never;
|
|
684
784
|
type RequestHeaders = {};
|
|
685
|
-
type ResponseBody =
|
|
785
|
+
type ResponseBody = ActivityLogControllerGetEntityActivitiesData;
|
|
686
786
|
}
|
|
687
787
|
/**
|
|
688
788
|
* No description
|
|
@@ -941,13 +1041,13 @@ export declare namespace Api {
|
|
|
941
1041
|
}
|
|
942
1042
|
/**
|
|
943
1043
|
* No description
|
|
944
|
-
* @tags feature-flags
|
|
945
|
-
* @name
|
|
1044
|
+
* @tags feature-flags-sdk
|
|
1045
|
+
* @name FeatureFlagSdkControllerFindAllSdk
|
|
946
1046
|
* @summary Get all feature flags for SDK
|
|
947
1047
|
* @request GET:/api/feature-flags/sdk
|
|
948
|
-
* @response `200` `
|
|
1048
|
+
* @response `200` `FeatureFlagSdkControllerFindAllSdkData` Returns all feature flags
|
|
949
1049
|
*/
|
|
950
|
-
namespace
|
|
1050
|
+
namespace FeatureFlagSdkControllerFindAllSdk {
|
|
951
1051
|
type RequestParams = {};
|
|
952
1052
|
type RequestQuery = {
|
|
953
1053
|
environments: string;
|
|
@@ -957,7 +1057,7 @@ export declare namespace Api {
|
|
|
957
1057
|
/** API Key for SDK authentication */
|
|
958
1058
|
"x-api-key": string;
|
|
959
1059
|
};
|
|
960
|
-
type ResponseBody =
|
|
1060
|
+
type ResponseBody = FeatureFlagSdkControllerFindAllSdkData;
|
|
961
1061
|
}
|
|
962
1062
|
/**
|
|
963
1063
|
* No description
|
|
@@ -1310,7 +1410,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1310
1410
|
* @request POST:/api/auth/login
|
|
1311
1411
|
* @response `200` `AuthControllerLoginData` Returns JWT token and user information
|
|
1312
1412
|
*/
|
|
1313
|
-
authControllerLogin: (data: LoginDto, params?: RequestParams) => Promise<AxiosResponse<AuthResponseDto, any>>;
|
|
1413
|
+
authControllerLogin: (data: LoginDto, params?: RequestParams) => Promise<AxiosResponse<AuthResponseDto, any, {}>>;
|
|
1314
1414
|
/**
|
|
1315
1415
|
* No description
|
|
1316
1416
|
*
|
|
@@ -1320,7 +1420,17 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1320
1420
|
* @request GET:/api/auth/google
|
|
1321
1421
|
* @response `302` `void` Redirects to Google login page
|
|
1322
1422
|
*/
|
|
1323
|
-
authControllerGoogleAuth: (params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1423
|
+
authControllerGoogleAuth: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1424
|
+
/**
|
|
1425
|
+
* No description
|
|
1426
|
+
*
|
|
1427
|
+
* @tags auth
|
|
1428
|
+
* @name AuthControllerGoogleAuthCallbackApi
|
|
1429
|
+
* @summary Google auth callback API endpoint
|
|
1430
|
+
* @request POST:/api/auth/google/callback-api
|
|
1431
|
+
* @response `200` `AuthControllerGoogleAuthCallbackApiData` Returns authentication result as JSON
|
|
1432
|
+
*/
|
|
1433
|
+
authControllerGoogleAuthCallbackApi: (params?: RequestParams) => Promise<AxiosResponse<AuthResponseDto, any, {}>>;
|
|
1324
1434
|
/**
|
|
1325
1435
|
* No description
|
|
1326
1436
|
*
|
|
@@ -1328,9 +1438,9 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1328
1438
|
* @name AuthControllerGoogleAuthRedirect
|
|
1329
1439
|
* @summary Google auth callback
|
|
1330
1440
|
* @request GET:/api/auth/google/callback
|
|
1331
|
-
* @response `
|
|
1441
|
+
* @response `302` `void` Redirects to frontend with authentication result
|
|
1332
1442
|
*/
|
|
1333
|
-
authControllerGoogleAuthRedirect: (params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1443
|
+
authControllerGoogleAuthRedirect: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1334
1444
|
/**
|
|
1335
1445
|
* No description
|
|
1336
1446
|
*
|
|
@@ -1341,7 +1451,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1341
1451
|
* @secure
|
|
1342
1452
|
* @response `200` `AuthControllerGetCurrentUserData` Returns current user information
|
|
1343
1453
|
*/
|
|
1344
|
-
authControllerGetCurrentUser: (params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1454
|
+
authControllerGetCurrentUser: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1345
1455
|
/**
|
|
1346
1456
|
* No description
|
|
1347
1457
|
*
|
|
@@ -1353,7 +1463,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1353
1463
|
* @response `204` `AuthControllerLogoutData` User logged out successfully
|
|
1354
1464
|
* @response `500` `void` Error logging out
|
|
1355
1465
|
*/
|
|
1356
|
-
authControllerLogout: (params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1466
|
+
authControllerLogout: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1357
1467
|
/**
|
|
1358
1468
|
* No description
|
|
1359
1469
|
*
|
|
@@ -1363,7 +1473,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1363
1473
|
* @request POST:/api/auth/forgot-password
|
|
1364
1474
|
* @response `200` `AuthControllerForgotPasswordData` Password reset email sent if user exists
|
|
1365
1475
|
*/
|
|
1366
|
-
authControllerForgotPassword: (data: ForgotPasswordDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1476
|
+
authControllerForgotPassword: (data: ForgotPasswordDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1367
1477
|
/**
|
|
1368
1478
|
* No description
|
|
1369
1479
|
*
|
|
@@ -1373,7 +1483,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1373
1483
|
* @request POST:/api/auth/reset-password
|
|
1374
1484
|
* @response `200` `AuthControllerResetPasswordData` Password reset successful
|
|
1375
1485
|
*/
|
|
1376
|
-
authControllerResetPassword: (data: ResetPasswordDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1486
|
+
authControllerResetPassword: (data: ResetPasswordDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1377
1487
|
/**
|
|
1378
1488
|
* No description
|
|
1379
1489
|
*
|
|
@@ -1384,7 +1494,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1384
1494
|
* @secure
|
|
1385
1495
|
* @response `200` `UsersControllerFindAllData` Users retrieved successfully
|
|
1386
1496
|
*/
|
|
1387
|
-
usersControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1497
|
+
usersControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1388
1498
|
/**
|
|
1389
1499
|
* No description
|
|
1390
1500
|
*
|
|
@@ -1396,7 +1506,29 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1396
1506
|
* @response `201` `UsersControllerInviteData` User invited successfully
|
|
1397
1507
|
* @response `403` `void` Insufficient permissions
|
|
1398
1508
|
*/
|
|
1399
|
-
usersControllerInvite: (data: InviteUserDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1509
|
+
usersControllerInvite: (data: InviteUserDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1510
|
+
/**
|
|
1511
|
+
* No description
|
|
1512
|
+
*
|
|
1513
|
+
* @tags users
|
|
1514
|
+
* @name UsersControllerGetProfile
|
|
1515
|
+
* @summary Get current user profile
|
|
1516
|
+
* @request GET:/api/users/profile
|
|
1517
|
+
* @secure
|
|
1518
|
+
* @response `200` `UsersControllerGetProfileData`
|
|
1519
|
+
*/
|
|
1520
|
+
usersControllerGetProfile: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1521
|
+
/**
|
|
1522
|
+
* No description
|
|
1523
|
+
*
|
|
1524
|
+
* @tags users
|
|
1525
|
+
* @name UsersControllerUpdateProfile
|
|
1526
|
+
* @summary Update current user profile
|
|
1527
|
+
* @request PATCH:/api/users/profile
|
|
1528
|
+
* @secure
|
|
1529
|
+
* @response `200` `UsersControllerUpdateProfileData`
|
|
1530
|
+
*/
|
|
1531
|
+
usersControllerUpdateProfile: (data: UpdateUserProfileDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1400
1532
|
/**
|
|
1401
1533
|
* No description
|
|
1402
1534
|
*
|
|
@@ -1409,7 +1541,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1409
1541
|
* @response `403` `void` Insufficient permissions
|
|
1410
1542
|
* @response `404` `void` User not found
|
|
1411
1543
|
*/
|
|
1412
|
-
usersControllerUpdateUser: (id: string, data: UpdateUserDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1544
|
+
usersControllerUpdateUser: (id: string, data: UpdateUserDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1413
1545
|
/**
|
|
1414
1546
|
* No description
|
|
1415
1547
|
*
|
|
@@ -1421,65 +1553,63 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1421
1553
|
* @response `200` `UsersControllerDeleteUserData` User removed successfully
|
|
1422
1554
|
* @response `403` `void` Insufficient permissions - only owners can remove users
|
|
1423
1555
|
*/
|
|
1424
|
-
usersControllerDeleteUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1556
|
+
usersControllerDeleteUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1425
1557
|
/**
|
|
1426
1558
|
* No description
|
|
1427
1559
|
*
|
|
1428
1560
|
* @tags users
|
|
1429
|
-
* @name
|
|
1430
|
-
* @summary
|
|
1431
|
-
* @request
|
|
1432
|
-
* @deprecated
|
|
1561
|
+
* @name UsersControllerResendInvitation
|
|
1562
|
+
* @summary Resend invitation to pending user
|
|
1563
|
+
* @request POST:/api/users/{id}/resend-invitation
|
|
1433
1564
|
* @secure
|
|
1434
|
-
* @response `200` `
|
|
1565
|
+
* @response `200` `UsersControllerResendInvitationData` Invitation resent successfully
|
|
1566
|
+
* @response `403` `void` Insufficient permissions
|
|
1435
1567
|
*/
|
|
1436
|
-
|
|
1568
|
+
usersControllerResendInvitation: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1437
1569
|
/**
|
|
1438
1570
|
* No description
|
|
1439
1571
|
*
|
|
1440
|
-
* @tags
|
|
1441
|
-
* @name
|
|
1442
|
-
* @summary
|
|
1443
|
-
* @request
|
|
1444
|
-
* @deprecated
|
|
1572
|
+
* @tags activity-logs
|
|
1573
|
+
* @name ActivityLogControllerGetOrganizationActivities
|
|
1574
|
+
* @summary Get organization activities
|
|
1575
|
+
* @request GET:/api/activity-logs
|
|
1445
1576
|
* @secure
|
|
1446
|
-
* @response `200` `
|
|
1577
|
+
* @response `200` `ActivityLogControllerGetOrganizationActivitiesData` Returns activity logs with pagination
|
|
1447
1578
|
*/
|
|
1448
|
-
|
|
1579
|
+
activityLogControllerGetOrganizationActivities: (query: ActivityLogControllerGetOrganizationActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1449
1580
|
/**
|
|
1450
1581
|
* No description
|
|
1451
1582
|
*
|
|
1452
|
-
* @tags
|
|
1453
|
-
* @name
|
|
1454
|
-
* @summary
|
|
1455
|
-
* @request
|
|
1583
|
+
* @tags activity-logs
|
|
1584
|
+
* @name ActivityLogControllerGetProjectActivities
|
|
1585
|
+
* @summary Get activities for a specific project
|
|
1586
|
+
* @request GET:/api/activity-logs/project/{projectId}
|
|
1456
1587
|
* @secure
|
|
1457
|
-
* @response `200` `
|
|
1458
|
-
* @response `403` `void` Insufficient permissions
|
|
1588
|
+
* @response `200` `ActivityLogControllerGetProjectActivitiesData` Returns project activity logs
|
|
1459
1589
|
*/
|
|
1460
|
-
|
|
1590
|
+
activityLogControllerGetProjectActivities: ({ projectId, ...query }: ActivityLogControllerGetProjectActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1461
1591
|
/**
|
|
1462
1592
|
* No description
|
|
1463
1593
|
*
|
|
1464
|
-
* @tags
|
|
1465
|
-
* @name
|
|
1466
|
-
* @summary Get
|
|
1467
|
-
* @request GET:/api/
|
|
1594
|
+
* @tags activity-logs
|
|
1595
|
+
* @name ActivityLogControllerGetFeatureFlagActivities
|
|
1596
|
+
* @summary Get activities for a specific feature flag
|
|
1597
|
+
* @request GET:/api/activity-logs/feature-flag/{flagId}
|
|
1468
1598
|
* @secure
|
|
1469
|
-
* @response `200` `
|
|
1599
|
+
* @response `200` `ActivityLogControllerGetFeatureFlagActivitiesData` Returns feature flag activity history
|
|
1470
1600
|
*/
|
|
1471
|
-
|
|
1601
|
+
activityLogControllerGetFeatureFlagActivities: ({ flagId, ...query }: ActivityLogControllerGetFeatureFlagActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1472
1602
|
/**
|
|
1473
1603
|
* No description
|
|
1474
1604
|
*
|
|
1475
|
-
* @tags
|
|
1476
|
-
* @name
|
|
1477
|
-
* @summary
|
|
1478
|
-
* @request
|
|
1605
|
+
* @tags activity-logs
|
|
1606
|
+
* @name ActivityLogControllerGetEntityActivities
|
|
1607
|
+
* @summary Get activities for a specific entity
|
|
1608
|
+
* @request GET:/api/activity-logs/entity/{entityType}/{entityId}
|
|
1479
1609
|
* @secure
|
|
1480
|
-
* @response `200` `
|
|
1610
|
+
* @response `200` `ActivityLogControllerGetEntityActivitiesData` Returns entity activity history
|
|
1481
1611
|
*/
|
|
1482
|
-
|
|
1612
|
+
activityLogControllerGetEntityActivities: ({ entityType, entityId, ...query }: ActivityLogControllerGetEntityActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1483
1613
|
/**
|
|
1484
1614
|
* No description
|
|
1485
1615
|
*
|
|
@@ -1490,7 +1620,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1490
1620
|
* @secure
|
|
1491
1621
|
* @response `201` `OrganizationsControllerCreateData`
|
|
1492
1622
|
*/
|
|
1493
|
-
organizationsControllerCreate: (data: CreateOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1623
|
+
organizationsControllerCreate: (data: CreateOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1494
1624
|
/**
|
|
1495
1625
|
* No description
|
|
1496
1626
|
*
|
|
@@ -1500,7 +1630,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1500
1630
|
* @secure
|
|
1501
1631
|
* @response `200` `OrganizationsControllerFindAllData`
|
|
1502
1632
|
*/
|
|
1503
|
-
organizationsControllerFindAll: (query: OrganizationsControllerFindAllParams, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1633
|
+
organizationsControllerFindAll: (query: OrganizationsControllerFindAllParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1504
1634
|
/**
|
|
1505
1635
|
* No description
|
|
1506
1636
|
*
|
|
@@ -1511,7 +1641,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1511
1641
|
* @secure
|
|
1512
1642
|
* @response `201` `OrganizationsControllerAddUserData`
|
|
1513
1643
|
*/
|
|
1514
|
-
organizationsControllerAddUser: (id: string, data: AddUserToOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1644
|
+
organizationsControllerAddUser: (id: string, data: AddUserToOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1515
1645
|
/**
|
|
1516
1646
|
* No description
|
|
1517
1647
|
*
|
|
@@ -1522,7 +1652,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1522
1652
|
* @secure
|
|
1523
1653
|
* @response `201` `OrganizationsControllerSwitchOrganizationData`
|
|
1524
1654
|
*/
|
|
1525
|
-
organizationsControllerSwitchOrganization: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1655
|
+
organizationsControllerSwitchOrganization: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1526
1656
|
/**
|
|
1527
1657
|
* No description
|
|
1528
1658
|
*
|
|
@@ -1533,7 +1663,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1533
1663
|
* @secure
|
|
1534
1664
|
* @response `200` `OrganizationsControllerGetDemoRequestsData`
|
|
1535
1665
|
*/
|
|
1536
|
-
organizationsControllerGetDemoRequests: (params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1666
|
+
organizationsControllerGetDemoRequests: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1537
1667
|
/**
|
|
1538
1668
|
* @description Sets organization status to ACTIVE and optionally activates all users in the organization
|
|
1539
1669
|
*
|
|
@@ -1544,7 +1674,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1544
1674
|
* @secure
|
|
1545
1675
|
* @response `200` `OrganizationsControllerActivateOrganizationData`
|
|
1546
1676
|
*/
|
|
1547
|
-
organizationsControllerActivateOrganization: (id: string, data: ActivateOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1677
|
+
organizationsControllerActivateOrganization: (id: string, data: ActivateOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1548
1678
|
/**
|
|
1549
1679
|
* No description
|
|
1550
1680
|
*
|
|
@@ -1552,7 +1682,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1552
1682
|
* @request POST:/api/api-keys
|
|
1553
1683
|
* @response `201` `ApiKeysControllerCreateData`
|
|
1554
1684
|
*/
|
|
1555
|
-
apiKeysControllerCreate: (data: CreateApiKeyDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1685
|
+
apiKeysControllerCreate: (data: CreateApiKeyDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1556
1686
|
/**
|
|
1557
1687
|
* No description
|
|
1558
1688
|
*
|
|
@@ -1560,7 +1690,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1560
1690
|
* @request GET:/api/api-keys
|
|
1561
1691
|
* @response `200` `ApiKeysControllerFindAllData`
|
|
1562
1692
|
*/
|
|
1563
|
-
apiKeysControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1693
|
+
apiKeysControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1564
1694
|
/**
|
|
1565
1695
|
* No description
|
|
1566
1696
|
*
|
|
@@ -1568,7 +1698,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1568
1698
|
* @request PATCH:/api/api-keys/{id}/deactivate
|
|
1569
1699
|
* @response `200` `ApiKeysControllerDeactivateData`
|
|
1570
1700
|
*/
|
|
1571
|
-
apiKeysControllerDeactivate: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1701
|
+
apiKeysControllerDeactivate: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1572
1702
|
/**
|
|
1573
1703
|
* No description
|
|
1574
1704
|
*
|
|
@@ -1579,7 +1709,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1579
1709
|
* @secure
|
|
1580
1710
|
* @response `201` `FeatureFlagControllerCreateData` Feature flag created successfully
|
|
1581
1711
|
*/
|
|
1582
|
-
featureFlagControllerCreate: (data: CreateFeatureFlagDto, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
1712
|
+
featureFlagControllerCreate: (data: CreateFeatureFlagDto, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
1583
1713
|
/**
|
|
1584
1714
|
* No description
|
|
1585
1715
|
*
|
|
@@ -1590,7 +1720,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1590
1720
|
* @secure
|
|
1591
1721
|
* @response `200` `FeatureFlagControllerFindAllData` Returns all feature flags
|
|
1592
1722
|
*/
|
|
1593
|
-
featureFlagControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<FeatureFlagControllerFindAllData, any>>;
|
|
1723
|
+
featureFlagControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<FeatureFlagControllerFindAllData, any, {}>>;
|
|
1594
1724
|
/**
|
|
1595
1725
|
* No description
|
|
1596
1726
|
*
|
|
@@ -1601,7 +1731,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1601
1731
|
* @secure
|
|
1602
1732
|
* @response `200` `FeatureFlagControllerToggleData` Feature flag toggled successfully
|
|
1603
1733
|
*/
|
|
1604
|
-
featureFlagControllerToggle: (id: string, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
1734
|
+
featureFlagControllerToggle: (id: string, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
1605
1735
|
/**
|
|
1606
1736
|
* No description
|
|
1607
1737
|
*
|
|
@@ -1612,7 +1742,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1612
1742
|
* @secure
|
|
1613
1743
|
* @response `200` `FeatureFlagControllerUpdateData`
|
|
1614
1744
|
*/
|
|
1615
|
-
featureFlagControllerUpdate: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1745
|
+
featureFlagControllerUpdate: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1616
1746
|
/**
|
|
1617
1747
|
* No description
|
|
1618
1748
|
*
|
|
@@ -1623,17 +1753,17 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1623
1753
|
* @secure
|
|
1624
1754
|
* @response `200` `FeatureFlagControllerDeleteData`
|
|
1625
1755
|
*/
|
|
1626
|
-
featureFlagControllerDelete: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1756
|
+
featureFlagControllerDelete: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1627
1757
|
/**
|
|
1628
1758
|
* No description
|
|
1629
1759
|
*
|
|
1630
|
-
* @tags feature-flags
|
|
1631
|
-
* @name
|
|
1760
|
+
* @tags feature-flags-sdk
|
|
1761
|
+
* @name FeatureFlagSdkControllerFindAllSdk
|
|
1632
1762
|
* @summary Get all feature flags for SDK
|
|
1633
1763
|
* @request GET:/api/feature-flags/sdk
|
|
1634
|
-
* @response `200` `
|
|
1764
|
+
* @response `200` `FeatureFlagSdkControllerFindAllSdkData` Returns all feature flags
|
|
1635
1765
|
*/
|
|
1636
|
-
|
|
1766
|
+
featureFlagSdkControllerFindAllSdk: (query: FeatureFlagSdkControllerFindAllSdkParams, params?: RequestParams) => Promise<AxiosResponse<FeatureFlagSdkControllerFindAllSdkData, any, {}>>;
|
|
1637
1767
|
/**
|
|
1638
1768
|
* No description
|
|
1639
1769
|
*
|
|
@@ -1641,7 +1771,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1641
1771
|
* @request GET:/api/projects
|
|
1642
1772
|
* @response `200` `ProjectsControllerFindAllData`
|
|
1643
1773
|
*/
|
|
1644
|
-
projectsControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1774
|
+
projectsControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1645
1775
|
/**
|
|
1646
1776
|
* No description
|
|
1647
1777
|
*
|
|
@@ -1649,7 +1779,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1649
1779
|
* @request POST:/api/projects
|
|
1650
1780
|
* @response `201` `ProjectsControllerCreateData`
|
|
1651
1781
|
*/
|
|
1652
|
-
projectsControllerCreate: (data: CreateProjectDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1782
|
+
projectsControllerCreate: (data: CreateProjectDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1653
1783
|
/**
|
|
1654
1784
|
* No description
|
|
1655
1785
|
*
|
|
@@ -1657,7 +1787,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1657
1787
|
* @request PATCH:/api/projects/{id}
|
|
1658
1788
|
* @response `200` `ProjectsControllerUpdateData`
|
|
1659
1789
|
*/
|
|
1660
|
-
projectsControllerUpdate: (id: string, data: UpdateProjectDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1790
|
+
projectsControllerUpdate: (id: string, data: UpdateProjectDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1661
1791
|
/**
|
|
1662
1792
|
* No description
|
|
1663
1793
|
*
|
|
@@ -1665,7 +1795,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1665
1795
|
* @request DELETE:/api/projects/{id}
|
|
1666
1796
|
* @response `200` `ProjectsControllerDeleteData`
|
|
1667
1797
|
*/
|
|
1668
|
-
projectsControllerDelete: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1798
|
+
projectsControllerDelete: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1669
1799
|
/**
|
|
1670
1800
|
* No description
|
|
1671
1801
|
*
|
|
@@ -1673,7 +1803,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1673
1803
|
* @request POST:/api/feedback
|
|
1674
1804
|
* @response `201` `FeedbackControllerSubmitData`
|
|
1675
1805
|
*/
|
|
1676
|
-
feedbackControllerSubmit: (data: SubmitFeedbackDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1806
|
+
feedbackControllerSubmit: (data: SubmitFeedbackDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1677
1807
|
/**
|
|
1678
1808
|
* No description
|
|
1679
1809
|
*
|
|
@@ -1684,7 +1814,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1684
1814
|
* @response `200` `StripeControllerHandleWebhookData` Webhook processed successfully
|
|
1685
1815
|
* @response `400` `void` Bad request or webhook error
|
|
1686
1816
|
*/
|
|
1687
|
-
stripeControllerHandleWebhook: (params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1817
|
+
stripeControllerHandleWebhook: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1688
1818
|
/**
|
|
1689
1819
|
* No description
|
|
1690
1820
|
*
|
|
@@ -1693,7 +1823,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1693
1823
|
* @request POST:/api/stripe/webhook-debug
|
|
1694
1824
|
* @response `201` `StripeControllerHandleWebhookDebugData`
|
|
1695
1825
|
*/
|
|
1696
|
-
stripeControllerHandleWebhookDebug: (params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1826
|
+
stripeControllerHandleWebhookDebug: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1697
1827
|
/**
|
|
1698
1828
|
* No description
|
|
1699
1829
|
*
|
|
@@ -1704,7 +1834,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1704
1834
|
* @response `200` `StripeControllerCreateCheckoutSessionData` Checkout session created successfully
|
|
1705
1835
|
* @response `400` `void` Error creating checkout session
|
|
1706
1836
|
*/
|
|
1707
|
-
stripeControllerCreateCheckoutSession: (data: CreateCheckoutSessionDto, params?: RequestParams) => Promise<AxiosResponse<CheckoutSessionResponseDto, any>>;
|
|
1837
|
+
stripeControllerCreateCheckoutSession: (data: CreateCheckoutSessionDto, params?: RequestParams) => Promise<AxiosResponse<CheckoutSessionResponseDto, any, {}>>;
|
|
1708
1838
|
/**
|
|
1709
1839
|
* No description
|
|
1710
1840
|
*
|
|
@@ -1715,7 +1845,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1715
1845
|
* @response `200` `StripeControllerCreateCheckoutSessionByPlanData` Checkout session created successfully
|
|
1716
1846
|
* @response `400` `void` Error creating checkout session
|
|
1717
1847
|
*/
|
|
1718
|
-
stripeControllerCreateCheckoutSessionByPlan: (data: CreateCheckoutSessionByPlanDto, params?: RequestParams) => Promise<AxiosResponse<CheckoutSessionResponseDto, any>>;
|
|
1848
|
+
stripeControllerCreateCheckoutSessionByPlan: (data: CreateCheckoutSessionByPlanDto, params?: RequestParams) => Promise<AxiosResponse<CheckoutSessionResponseDto, any, {}>>;
|
|
1719
1849
|
/**
|
|
1720
1850
|
* No description
|
|
1721
1851
|
*
|
|
@@ -1726,7 +1856,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1726
1856
|
* @response `200` `StripeControllerGetProductsData` Products retrieved successfully
|
|
1727
1857
|
* @response `400` `void` Error fetching products
|
|
1728
1858
|
*/
|
|
1729
|
-
stripeControllerGetProducts: (query: StripeControllerGetProductsParams, params?: RequestParams) => Promise<AxiosResponse<StripeProductsResponseDto, any>>;
|
|
1859
|
+
stripeControllerGetProducts: (query: StripeControllerGetProductsParams, params?: RequestParams) => Promise<AxiosResponse<StripeProductsResponseDto, any, {}>>;
|
|
1730
1860
|
/**
|
|
1731
1861
|
* No description
|
|
1732
1862
|
*
|
|
@@ -1736,7 +1866,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1736
1866
|
* @request GET:/api/stripe/environment
|
|
1737
1867
|
* @response `200` `StripeControllerGetEnvironmentData` Environment information
|
|
1738
1868
|
*/
|
|
1739
|
-
stripeControllerGetEnvironment: (params?: RequestParams) => Promise<AxiosResponse<StripeEnvironmentResponseDto, any>>;
|
|
1869
|
+
stripeControllerGetEnvironment: (params?: RequestParams) => Promise<AxiosResponse<StripeEnvironmentResponseDto, any, {}>>;
|
|
1740
1870
|
/**
|
|
1741
1871
|
* No description
|
|
1742
1872
|
*
|
|
@@ -1747,7 +1877,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1747
1877
|
* @response `200` `StripeControllerCreatePaymentIntentData` Payment intent created successfully
|
|
1748
1878
|
* @response `400` `void` Error creating payment intent
|
|
1749
1879
|
*/
|
|
1750
|
-
stripeControllerCreatePaymentIntent: (data: CreatePaymentIntentDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1880
|
+
stripeControllerCreatePaymentIntent: (data: CreatePaymentIntentDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1751
1881
|
/**
|
|
1752
1882
|
* No description
|
|
1753
1883
|
*
|
|
@@ -1758,7 +1888,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1758
1888
|
* @response `200` `StripeControllerGetSubscriptionData` Subscription retrieved successfully
|
|
1759
1889
|
* @response `404` `void` Subscription not found
|
|
1760
1890
|
*/
|
|
1761
|
-
stripeControllerGetSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1891
|
+
stripeControllerGetSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1762
1892
|
/**
|
|
1763
1893
|
* No description
|
|
1764
1894
|
*
|
|
@@ -1769,7 +1899,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1769
1899
|
* @response `200` `StripeControllerUpdateSubscriptionData` Subscription updated successfully
|
|
1770
1900
|
* @response `404` `void` Subscription not found
|
|
1771
1901
|
*/
|
|
1772
|
-
stripeControllerUpdateSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1902
|
+
stripeControllerUpdateSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1773
1903
|
/**
|
|
1774
1904
|
* No description
|
|
1775
1905
|
*
|
|
@@ -1780,7 +1910,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1780
1910
|
* @response `200` `StripeControllerGetCustomerSubscriptionsData` Customer subscriptions retrieved successfully
|
|
1781
1911
|
* @response `404` `void` Customer not found
|
|
1782
1912
|
*/
|
|
1783
|
-
stripeControllerGetCustomerSubscriptions: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1913
|
+
stripeControllerGetCustomerSubscriptions: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1784
1914
|
/**
|
|
1785
1915
|
* No description
|
|
1786
1916
|
*
|
|
@@ -1791,7 +1921,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1791
1921
|
* @response `200` `StripeControllerCancelSubscriptionData` Subscription canceled successfully
|
|
1792
1922
|
* @response `404` `void` Subscription not found
|
|
1793
1923
|
*/
|
|
1794
|
-
stripeControllerCancelSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1924
|
+
stripeControllerCancelSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1795
1925
|
/**
|
|
1796
1926
|
* No description
|
|
1797
1927
|
*
|
|
@@ -1801,7 +1931,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1801
1931
|
* @request POST:/api/onboarding/request-demo
|
|
1802
1932
|
* @response `201` `OnboardingControllerRequestDemoData`
|
|
1803
1933
|
*/
|
|
1804
|
-
onboardingControllerRequestDemo: (data: DemoRequestDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1934
|
+
onboardingControllerRequestDemo: (data: DemoRequestDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1805
1935
|
/**
|
|
1806
1936
|
* No description
|
|
1807
1937
|
*
|
|
@@ -1810,6 +1940,6 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1810
1940
|
* @request POST:/api/onboarding/accept-invitation
|
|
1811
1941
|
* @response `201` `OnboardingControllerAcceptInvitationData`
|
|
1812
1942
|
*/
|
|
1813
|
-
onboardingControllerAcceptInvitation: (data: AcceptInvitationDto, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
1943
|
+
onboardingControllerAcceptInvitation: (data: AcceptInvitationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1814
1944
|
};
|
|
1815
1945
|
}
|
|
@@ -133,6 +133,20 @@ class Api {
|
|
|
133
133
|
method: "GET",
|
|
134
134
|
...params,
|
|
135
135
|
}),
|
|
136
|
+
/**
|
|
137
|
+
* No description
|
|
138
|
+
*
|
|
139
|
+
* @tags auth
|
|
140
|
+
* @name AuthControllerGoogleAuthCallbackApi
|
|
141
|
+
* @summary Google auth callback API endpoint
|
|
142
|
+
* @request POST:/api/auth/google/callback-api
|
|
143
|
+
* @response `200` `AuthControllerGoogleAuthCallbackApiData` Returns authentication result as JSON
|
|
144
|
+
*/
|
|
145
|
+
authControllerGoogleAuthCallbackApi: (params = {}) => this.http.request({
|
|
146
|
+
path: `/api/auth/google/callback-api`,
|
|
147
|
+
method: "POST",
|
|
148
|
+
...params,
|
|
149
|
+
}),
|
|
136
150
|
/**
|
|
137
151
|
* No description
|
|
138
152
|
*
|
|
@@ -140,7 +154,7 @@ class Api {
|
|
|
140
154
|
* @name AuthControllerGoogleAuthRedirect
|
|
141
155
|
* @summary Google auth callback
|
|
142
156
|
* @request GET:/api/auth/google/callback
|
|
143
|
-
* @response `
|
|
157
|
+
* @response `302` `void` Redirects to frontend with authentication result
|
|
144
158
|
*/
|
|
145
159
|
authControllerGoogleAuthRedirect: (params = {}) => this.http.request({
|
|
146
160
|
path: `/api/auth/google/callback`,
|
|
@@ -247,6 +261,40 @@ class Api {
|
|
|
247
261
|
type: ContentType.Json,
|
|
248
262
|
...params,
|
|
249
263
|
}),
|
|
264
|
+
/**
|
|
265
|
+
* No description
|
|
266
|
+
*
|
|
267
|
+
* @tags users
|
|
268
|
+
* @name UsersControllerGetProfile
|
|
269
|
+
* @summary Get current user profile
|
|
270
|
+
* @request GET:/api/users/profile
|
|
271
|
+
* @secure
|
|
272
|
+
* @response `200` `UsersControllerGetProfileData`
|
|
273
|
+
*/
|
|
274
|
+
usersControllerGetProfile: (params = {}) => this.http.request({
|
|
275
|
+
path: `/api/users/profile`,
|
|
276
|
+
method: "GET",
|
|
277
|
+
secure: true,
|
|
278
|
+
...params,
|
|
279
|
+
}),
|
|
280
|
+
/**
|
|
281
|
+
* No description
|
|
282
|
+
*
|
|
283
|
+
* @tags users
|
|
284
|
+
* @name UsersControllerUpdateProfile
|
|
285
|
+
* @summary Update current user profile
|
|
286
|
+
* @request PATCH:/api/users/profile
|
|
287
|
+
* @secure
|
|
288
|
+
* @response `200` `UsersControllerUpdateProfileData`
|
|
289
|
+
*/
|
|
290
|
+
usersControllerUpdateProfile: (data, params = {}) => this.http.request({
|
|
291
|
+
path: `/api/users/profile`,
|
|
292
|
+
method: "PATCH",
|
|
293
|
+
body: data,
|
|
294
|
+
secure: true,
|
|
295
|
+
type: ContentType.Json,
|
|
296
|
+
...params,
|
|
297
|
+
}),
|
|
250
298
|
/**
|
|
251
299
|
* No description
|
|
252
300
|
*
|
|
@@ -288,85 +336,85 @@ class Api {
|
|
|
288
336
|
* No description
|
|
289
337
|
*
|
|
290
338
|
* @tags users
|
|
291
|
-
* @name
|
|
292
|
-
* @summary
|
|
293
|
-
* @request
|
|
294
|
-
* @deprecated
|
|
339
|
+
* @name UsersControllerResendInvitation
|
|
340
|
+
* @summary Resend invitation to pending user
|
|
341
|
+
* @request POST:/api/users/{id}/resend-invitation
|
|
295
342
|
* @secure
|
|
296
|
-
* @response `200` `
|
|
343
|
+
* @response `200` `UsersControllerResendInvitationData` Invitation resent successfully
|
|
344
|
+
* @response `403` `void` Insufficient permissions
|
|
297
345
|
*/
|
|
298
|
-
|
|
299
|
-
path: `/api/users/${id}/
|
|
300
|
-
method: "
|
|
346
|
+
usersControllerResendInvitation: (id, params = {}) => this.http.request({
|
|
347
|
+
path: `/api/users/${id}/resend-invitation`,
|
|
348
|
+
method: "POST",
|
|
301
349
|
secure: true,
|
|
302
350
|
...params,
|
|
303
351
|
}),
|
|
304
352
|
/**
|
|
305
353
|
* No description
|
|
306
354
|
*
|
|
307
|
-
* @tags
|
|
308
|
-
* @name
|
|
309
|
-
* @summary
|
|
310
|
-
* @request
|
|
311
|
-
* @deprecated
|
|
355
|
+
* @tags activity-logs
|
|
356
|
+
* @name ActivityLogControllerGetOrganizationActivities
|
|
357
|
+
* @summary Get organization activities
|
|
358
|
+
* @request GET:/api/activity-logs
|
|
312
359
|
* @secure
|
|
313
|
-
* @response `200` `
|
|
360
|
+
* @response `200` `ActivityLogControllerGetOrganizationActivitiesData` Returns activity logs with pagination
|
|
314
361
|
*/
|
|
315
|
-
|
|
316
|
-
path: `/api/
|
|
317
|
-
method: "
|
|
362
|
+
activityLogControllerGetOrganizationActivities: (query, params = {}) => this.http.request({
|
|
363
|
+
path: `/api/activity-logs`,
|
|
364
|
+
method: "GET",
|
|
365
|
+
query: query,
|
|
318
366
|
secure: true,
|
|
319
367
|
...params,
|
|
320
368
|
}),
|
|
321
369
|
/**
|
|
322
370
|
* No description
|
|
323
371
|
*
|
|
324
|
-
* @tags
|
|
325
|
-
* @name
|
|
326
|
-
* @summary
|
|
327
|
-
* @request
|
|
372
|
+
* @tags activity-logs
|
|
373
|
+
* @name ActivityLogControllerGetProjectActivities
|
|
374
|
+
* @summary Get activities for a specific project
|
|
375
|
+
* @request GET:/api/activity-logs/project/{projectId}
|
|
328
376
|
* @secure
|
|
329
|
-
* @response `200` `
|
|
330
|
-
* @response `403` `void` Insufficient permissions
|
|
377
|
+
* @response `200` `ActivityLogControllerGetProjectActivitiesData` Returns project activity logs
|
|
331
378
|
*/
|
|
332
|
-
|
|
333
|
-
path: `/api/
|
|
334
|
-
method: "
|
|
379
|
+
activityLogControllerGetProjectActivities: ({ projectId, ...query }, params = {}) => this.http.request({
|
|
380
|
+
path: `/api/activity-logs/project/${projectId}`,
|
|
381
|
+
method: "GET",
|
|
382
|
+
query: query,
|
|
335
383
|
secure: true,
|
|
336
384
|
...params,
|
|
337
385
|
}),
|
|
338
386
|
/**
|
|
339
387
|
* No description
|
|
340
388
|
*
|
|
341
|
-
* @tags
|
|
342
|
-
* @name
|
|
343
|
-
* @summary Get
|
|
344
|
-
* @request GET:/api/
|
|
389
|
+
* @tags activity-logs
|
|
390
|
+
* @name ActivityLogControllerGetFeatureFlagActivities
|
|
391
|
+
* @summary Get activities for a specific feature flag
|
|
392
|
+
* @request GET:/api/activity-logs/feature-flag/{flagId}
|
|
345
393
|
* @secure
|
|
346
|
-
* @response `200` `
|
|
394
|
+
* @response `200` `ActivityLogControllerGetFeatureFlagActivitiesData` Returns feature flag activity history
|
|
347
395
|
*/
|
|
348
|
-
|
|
349
|
-
path: `/api/
|
|
396
|
+
activityLogControllerGetFeatureFlagActivities: ({ flagId, ...query }, params = {}) => this.http.request({
|
|
397
|
+
path: `/api/activity-logs/feature-flag/${flagId}`,
|
|
350
398
|
method: "GET",
|
|
399
|
+
query: query,
|
|
351
400
|
secure: true,
|
|
352
401
|
...params,
|
|
353
402
|
}),
|
|
354
403
|
/**
|
|
355
404
|
* No description
|
|
356
405
|
*
|
|
357
|
-
* @tags
|
|
358
|
-
* @name
|
|
359
|
-
* @summary
|
|
360
|
-
* @request
|
|
406
|
+
* @tags activity-logs
|
|
407
|
+
* @name ActivityLogControllerGetEntityActivities
|
|
408
|
+
* @summary Get activities for a specific entity
|
|
409
|
+
* @request GET:/api/activity-logs/entity/{entityType}/{entityId}
|
|
361
410
|
* @secure
|
|
362
|
-
* @response `200` `
|
|
411
|
+
* @response `200` `ActivityLogControllerGetEntityActivitiesData` Returns entity activity history
|
|
363
412
|
*/
|
|
364
|
-
|
|
365
|
-
path: `/api/
|
|
366
|
-
method: "
|
|
367
|
-
|
|
413
|
+
activityLogControllerGetEntityActivities: ({ entityType, entityId, ...query }, params = {}) => this.http.request({
|
|
414
|
+
path: `/api/activity-logs/entity/${entityType}/${entityId}`,
|
|
415
|
+
method: "GET",
|
|
416
|
+
query: query,
|
|
368
417
|
secure: true,
|
|
369
|
-
type: ContentType.Json,
|
|
370
418
|
...params,
|
|
371
419
|
}),
|
|
372
420
|
/**
|
|
@@ -594,13 +642,13 @@ class Api {
|
|
|
594
642
|
/**
|
|
595
643
|
* No description
|
|
596
644
|
*
|
|
597
|
-
* @tags feature-flags
|
|
598
|
-
* @name
|
|
645
|
+
* @tags feature-flags-sdk
|
|
646
|
+
* @name FeatureFlagSdkControllerFindAllSdk
|
|
599
647
|
* @summary Get all feature flags for SDK
|
|
600
648
|
* @request GET:/api/feature-flags/sdk
|
|
601
|
-
* @response `200` `
|
|
649
|
+
* @response `200` `FeatureFlagSdkControllerFindAllSdkData` Returns all feature flags
|
|
602
650
|
*/
|
|
603
|
-
|
|
651
|
+
featureFlagSdkControllerFindAllSdk: (query, params = {}) => this.http.request({
|
|
604
652
|
path: `/api/feature-flags/sdk`,
|
|
605
653
|
method: "GET",
|
|
606
654
|
query: query,
|