@flagpole/api-types 1.0.25 → 1.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.
- package/README.md +1 -1
- package/lib/flagpole-api-types.d.ts +52 -52
- 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.26
|
|
2
2
|
TypeScript types for FlagPole API generated from OpenAPI specification.
|
|
@@ -1410,7 +1410,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1410
1410
|
* @request POST:/api/auth/login
|
|
1411
1411
|
* @response `200` `AuthControllerLoginData` Returns JWT token and user information
|
|
1412
1412
|
*/
|
|
1413
|
-
authControllerLogin: (data: LoginDto, params?: RequestParams) => Promise<AxiosResponse<AuthResponseDto, any, {}>>;
|
|
1413
|
+
authControllerLogin: (data: LoginDto, params?: RequestParams) => Promise<AxiosResponse<AuthResponseDto, any, {}, any>>;
|
|
1414
1414
|
/**
|
|
1415
1415
|
* No description
|
|
1416
1416
|
*
|
|
@@ -1420,7 +1420,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1420
1420
|
* @request GET:/api/auth/google
|
|
1421
1421
|
* @response `302` `void` Redirects to Google login page
|
|
1422
1422
|
*/
|
|
1423
|
-
authControllerGoogleAuth: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1423
|
+
authControllerGoogleAuth: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1424
1424
|
/**
|
|
1425
1425
|
* No description
|
|
1426
1426
|
*
|
|
@@ -1430,7 +1430,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1430
1430
|
* @request POST:/api/auth/google/callback-api
|
|
1431
1431
|
* @response `200` `AuthControllerGoogleAuthCallbackApiData` Returns authentication result as JSON
|
|
1432
1432
|
*/
|
|
1433
|
-
authControllerGoogleAuthCallbackApi: (params?: RequestParams) => Promise<AxiosResponse<AuthResponseDto, any, {}>>;
|
|
1433
|
+
authControllerGoogleAuthCallbackApi: (params?: RequestParams) => Promise<AxiosResponse<AuthResponseDto, any, {}, any>>;
|
|
1434
1434
|
/**
|
|
1435
1435
|
* No description
|
|
1436
1436
|
*
|
|
@@ -1440,7 +1440,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1440
1440
|
* @request GET:/api/auth/google/callback
|
|
1441
1441
|
* @response `302` `void` Redirects to frontend with authentication result
|
|
1442
1442
|
*/
|
|
1443
|
-
authControllerGoogleAuthRedirect: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1443
|
+
authControllerGoogleAuthRedirect: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1444
1444
|
/**
|
|
1445
1445
|
* No description
|
|
1446
1446
|
*
|
|
@@ -1451,7 +1451,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1451
1451
|
* @secure
|
|
1452
1452
|
* @response `200` `AuthControllerGetCurrentUserData` Returns current user information
|
|
1453
1453
|
*/
|
|
1454
|
-
authControllerGetCurrentUser: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1454
|
+
authControllerGetCurrentUser: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1455
1455
|
/**
|
|
1456
1456
|
* No description
|
|
1457
1457
|
*
|
|
@@ -1463,7 +1463,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1463
1463
|
* @response `204` `AuthControllerLogoutData` User logged out successfully
|
|
1464
1464
|
* @response `500` `void` Error logging out
|
|
1465
1465
|
*/
|
|
1466
|
-
authControllerLogout: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1466
|
+
authControllerLogout: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1467
1467
|
/**
|
|
1468
1468
|
* No description
|
|
1469
1469
|
*
|
|
@@ -1473,7 +1473,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1473
1473
|
* @request POST:/api/auth/forgot-password
|
|
1474
1474
|
* @response `200` `AuthControllerForgotPasswordData` Password reset email sent if user exists
|
|
1475
1475
|
*/
|
|
1476
|
-
authControllerForgotPassword: (data: ForgotPasswordDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1476
|
+
authControllerForgotPassword: (data: ForgotPasswordDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1477
1477
|
/**
|
|
1478
1478
|
* No description
|
|
1479
1479
|
*
|
|
@@ -1483,7 +1483,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1483
1483
|
* @request POST:/api/auth/reset-password
|
|
1484
1484
|
* @response `200` `AuthControllerResetPasswordData` Password reset successful
|
|
1485
1485
|
*/
|
|
1486
|
-
authControllerResetPassword: (data: ResetPasswordDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1486
|
+
authControllerResetPassword: (data: ResetPasswordDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1487
1487
|
/**
|
|
1488
1488
|
* No description
|
|
1489
1489
|
*
|
|
@@ -1494,7 +1494,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1494
1494
|
* @secure
|
|
1495
1495
|
* @response `200` `UsersControllerFindAllData` Users retrieved successfully
|
|
1496
1496
|
*/
|
|
1497
|
-
usersControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1497
|
+
usersControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1498
1498
|
/**
|
|
1499
1499
|
* No description
|
|
1500
1500
|
*
|
|
@@ -1506,7 +1506,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1506
1506
|
* @response `201` `UsersControllerInviteData` User invited successfully
|
|
1507
1507
|
* @response `403` `void` Insufficient permissions
|
|
1508
1508
|
*/
|
|
1509
|
-
usersControllerInvite: (data: InviteUserDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1509
|
+
usersControllerInvite: (data: InviteUserDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1510
1510
|
/**
|
|
1511
1511
|
* No description
|
|
1512
1512
|
*
|
|
@@ -1517,7 +1517,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1517
1517
|
* @secure
|
|
1518
1518
|
* @response `200` `UsersControllerGetProfileData`
|
|
1519
1519
|
*/
|
|
1520
|
-
usersControllerGetProfile: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1520
|
+
usersControllerGetProfile: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1521
1521
|
/**
|
|
1522
1522
|
* No description
|
|
1523
1523
|
*
|
|
@@ -1528,7 +1528,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1528
1528
|
* @secure
|
|
1529
1529
|
* @response `200` `UsersControllerUpdateProfileData`
|
|
1530
1530
|
*/
|
|
1531
|
-
usersControllerUpdateProfile: (data: UpdateUserProfileDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1531
|
+
usersControllerUpdateProfile: (data: UpdateUserProfileDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1532
1532
|
/**
|
|
1533
1533
|
* No description
|
|
1534
1534
|
*
|
|
@@ -1541,7 +1541,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1541
1541
|
* @response `403` `void` Insufficient permissions
|
|
1542
1542
|
* @response `404` `void` User not found
|
|
1543
1543
|
*/
|
|
1544
|
-
usersControllerUpdateUser: (id: string, data: UpdateUserDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1544
|
+
usersControllerUpdateUser: (id: string, data: UpdateUserDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1545
1545
|
/**
|
|
1546
1546
|
* No description
|
|
1547
1547
|
*
|
|
@@ -1553,7 +1553,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1553
1553
|
* @response `200` `UsersControllerDeleteUserData` User removed successfully
|
|
1554
1554
|
* @response `403` `void` Insufficient permissions - only owners can remove users
|
|
1555
1555
|
*/
|
|
1556
|
-
usersControllerDeleteUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1556
|
+
usersControllerDeleteUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1557
1557
|
/**
|
|
1558
1558
|
* No description
|
|
1559
1559
|
*
|
|
@@ -1565,7 +1565,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1565
1565
|
* @response `200` `UsersControllerResendInvitationData` Invitation resent successfully
|
|
1566
1566
|
* @response `403` `void` Insufficient permissions
|
|
1567
1567
|
*/
|
|
1568
|
-
usersControllerResendInvitation: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1568
|
+
usersControllerResendInvitation: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1569
1569
|
/**
|
|
1570
1570
|
* No description
|
|
1571
1571
|
*
|
|
@@ -1576,7 +1576,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1576
1576
|
* @secure
|
|
1577
1577
|
* @response `200` `ActivityLogControllerGetOrganizationActivitiesData` Returns activity logs with pagination
|
|
1578
1578
|
*/
|
|
1579
|
-
activityLogControllerGetOrganizationActivities: (query: ActivityLogControllerGetOrganizationActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1579
|
+
activityLogControllerGetOrganizationActivities: (query: ActivityLogControllerGetOrganizationActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1580
1580
|
/**
|
|
1581
1581
|
* No description
|
|
1582
1582
|
*
|
|
@@ -1587,7 +1587,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1587
1587
|
* @secure
|
|
1588
1588
|
* @response `200` `ActivityLogControllerGetProjectActivitiesData` Returns project activity logs
|
|
1589
1589
|
*/
|
|
1590
|
-
activityLogControllerGetProjectActivities: ({ projectId, ...query }: ActivityLogControllerGetProjectActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1590
|
+
activityLogControllerGetProjectActivities: ({ projectId, ...query }: ActivityLogControllerGetProjectActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1591
1591
|
/**
|
|
1592
1592
|
* No description
|
|
1593
1593
|
*
|
|
@@ -1598,7 +1598,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1598
1598
|
* @secure
|
|
1599
1599
|
* @response `200` `ActivityLogControllerGetFeatureFlagActivitiesData` Returns feature flag activity history
|
|
1600
1600
|
*/
|
|
1601
|
-
activityLogControllerGetFeatureFlagActivities: ({ flagId, ...query }: ActivityLogControllerGetFeatureFlagActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1601
|
+
activityLogControllerGetFeatureFlagActivities: ({ flagId, ...query }: ActivityLogControllerGetFeatureFlagActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1602
1602
|
/**
|
|
1603
1603
|
* No description
|
|
1604
1604
|
*
|
|
@@ -1609,7 +1609,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1609
1609
|
* @secure
|
|
1610
1610
|
* @response `200` `ActivityLogControllerGetEntityActivitiesData` Returns entity activity history
|
|
1611
1611
|
*/
|
|
1612
|
-
activityLogControllerGetEntityActivities: ({ entityType, entityId, ...query }: ActivityLogControllerGetEntityActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1612
|
+
activityLogControllerGetEntityActivities: ({ entityType, entityId, ...query }: ActivityLogControllerGetEntityActivitiesParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1613
1613
|
/**
|
|
1614
1614
|
* No description
|
|
1615
1615
|
*
|
|
@@ -1620,7 +1620,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1620
1620
|
* @secure
|
|
1621
1621
|
* @response `201` `OrganizationsControllerCreateData`
|
|
1622
1622
|
*/
|
|
1623
|
-
organizationsControllerCreate: (data: CreateOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1623
|
+
organizationsControllerCreate: (data: CreateOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1624
1624
|
/**
|
|
1625
1625
|
* No description
|
|
1626
1626
|
*
|
|
@@ -1630,7 +1630,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1630
1630
|
* @secure
|
|
1631
1631
|
* @response `200` `OrganizationsControllerFindAllData`
|
|
1632
1632
|
*/
|
|
1633
|
-
organizationsControllerFindAll: (query: OrganizationsControllerFindAllParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1633
|
+
organizationsControllerFindAll: (query: OrganizationsControllerFindAllParams, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1634
1634
|
/**
|
|
1635
1635
|
* No description
|
|
1636
1636
|
*
|
|
@@ -1641,7 +1641,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1641
1641
|
* @secure
|
|
1642
1642
|
* @response `201` `OrganizationsControllerAddUserData`
|
|
1643
1643
|
*/
|
|
1644
|
-
organizationsControllerAddUser: (id: string, data: AddUserToOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1644
|
+
organizationsControllerAddUser: (id: string, data: AddUserToOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1645
1645
|
/**
|
|
1646
1646
|
* No description
|
|
1647
1647
|
*
|
|
@@ -1652,7 +1652,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1652
1652
|
* @secure
|
|
1653
1653
|
* @response `201` `OrganizationsControllerSwitchOrganizationData`
|
|
1654
1654
|
*/
|
|
1655
|
-
organizationsControllerSwitchOrganization: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1655
|
+
organizationsControllerSwitchOrganization: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1656
1656
|
/**
|
|
1657
1657
|
* No description
|
|
1658
1658
|
*
|
|
@@ -1663,7 +1663,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1663
1663
|
* @secure
|
|
1664
1664
|
* @response `200` `OrganizationsControllerGetDemoRequestsData`
|
|
1665
1665
|
*/
|
|
1666
|
-
organizationsControllerGetDemoRequests: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1666
|
+
organizationsControllerGetDemoRequests: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1667
1667
|
/**
|
|
1668
1668
|
* @description Sets organization status to ACTIVE and optionally activates all users in the organization
|
|
1669
1669
|
*
|
|
@@ -1674,7 +1674,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1674
1674
|
* @secure
|
|
1675
1675
|
* @response `200` `OrganizationsControllerActivateOrganizationData`
|
|
1676
1676
|
*/
|
|
1677
|
-
organizationsControllerActivateOrganization: (id: string, data: ActivateOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1677
|
+
organizationsControllerActivateOrganization: (id: string, data: ActivateOrganizationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1678
1678
|
/**
|
|
1679
1679
|
* No description
|
|
1680
1680
|
*
|
|
@@ -1682,7 +1682,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1682
1682
|
* @request POST:/api/api-keys
|
|
1683
1683
|
* @response `201` `ApiKeysControllerCreateData`
|
|
1684
1684
|
*/
|
|
1685
|
-
apiKeysControllerCreate: (data: CreateApiKeyDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1685
|
+
apiKeysControllerCreate: (data: CreateApiKeyDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1686
1686
|
/**
|
|
1687
1687
|
* No description
|
|
1688
1688
|
*
|
|
@@ -1690,7 +1690,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1690
1690
|
* @request GET:/api/api-keys
|
|
1691
1691
|
* @response `200` `ApiKeysControllerFindAllData`
|
|
1692
1692
|
*/
|
|
1693
|
-
apiKeysControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1693
|
+
apiKeysControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1694
1694
|
/**
|
|
1695
1695
|
* No description
|
|
1696
1696
|
*
|
|
@@ -1698,7 +1698,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1698
1698
|
* @request PATCH:/api/api-keys/{id}/deactivate
|
|
1699
1699
|
* @response `200` `ApiKeysControllerDeactivateData`
|
|
1700
1700
|
*/
|
|
1701
|
-
apiKeysControllerDeactivate: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1701
|
+
apiKeysControllerDeactivate: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1702
1702
|
/**
|
|
1703
1703
|
* No description
|
|
1704
1704
|
*
|
|
@@ -1709,7 +1709,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1709
1709
|
* @secure
|
|
1710
1710
|
* @response `201` `FeatureFlagControllerCreateData` Feature flag created successfully
|
|
1711
1711
|
*/
|
|
1712
|
-
featureFlagControllerCreate: (data: CreateFeatureFlagDto, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
1712
|
+
featureFlagControllerCreate: (data: CreateFeatureFlagDto, params?: RequestParams) => Promise<AxiosResponse<object, any, {}, any>>;
|
|
1713
1713
|
/**
|
|
1714
1714
|
* No description
|
|
1715
1715
|
*
|
|
@@ -1720,7 +1720,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1720
1720
|
* @secure
|
|
1721
1721
|
* @response `200` `FeatureFlagControllerFindAllData` Returns all feature flags
|
|
1722
1722
|
*/
|
|
1723
|
-
featureFlagControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<FeatureFlagControllerFindAllData, any, {}>>;
|
|
1723
|
+
featureFlagControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<FeatureFlagControllerFindAllData, any, {}, any>>;
|
|
1724
1724
|
/**
|
|
1725
1725
|
* No description
|
|
1726
1726
|
*
|
|
@@ -1731,7 +1731,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1731
1731
|
* @secure
|
|
1732
1732
|
* @response `200` `FeatureFlagControllerToggleData` Feature flag toggled successfully
|
|
1733
1733
|
*/
|
|
1734
|
-
featureFlagControllerToggle: (id: string, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
1734
|
+
featureFlagControllerToggle: (id: string, params?: RequestParams) => Promise<AxiosResponse<object, any, {}, any>>;
|
|
1735
1735
|
/**
|
|
1736
1736
|
* No description
|
|
1737
1737
|
*
|
|
@@ -1742,7 +1742,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1742
1742
|
* @secure
|
|
1743
1743
|
* @response `200` `FeatureFlagControllerUpdateData`
|
|
1744
1744
|
*/
|
|
1745
|
-
featureFlagControllerUpdate: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1745
|
+
featureFlagControllerUpdate: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1746
1746
|
/**
|
|
1747
1747
|
* No description
|
|
1748
1748
|
*
|
|
@@ -1753,7 +1753,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1753
1753
|
* @secure
|
|
1754
1754
|
* @response `200` `FeatureFlagControllerDeleteData`
|
|
1755
1755
|
*/
|
|
1756
|
-
featureFlagControllerDelete: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1756
|
+
featureFlagControllerDelete: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1757
1757
|
/**
|
|
1758
1758
|
* No description
|
|
1759
1759
|
*
|
|
@@ -1763,7 +1763,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1763
1763
|
* @request GET:/api/feature-flags/sdk
|
|
1764
1764
|
* @response `200` `FeatureFlagSdkControllerFindAllSdkData` Returns all feature flags
|
|
1765
1765
|
*/
|
|
1766
|
-
featureFlagSdkControllerFindAllSdk: (query: FeatureFlagSdkControllerFindAllSdkParams, params?: RequestParams) => Promise<AxiosResponse<FeatureFlagSdkControllerFindAllSdkData, any, {}>>;
|
|
1766
|
+
featureFlagSdkControllerFindAllSdk: (query: FeatureFlagSdkControllerFindAllSdkParams, params?: RequestParams) => Promise<AxiosResponse<FeatureFlagSdkControllerFindAllSdkData, any, {}, any>>;
|
|
1767
1767
|
/**
|
|
1768
1768
|
* No description
|
|
1769
1769
|
*
|
|
@@ -1771,7 +1771,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1771
1771
|
* @request GET:/api/projects
|
|
1772
1772
|
* @response `200` `ProjectsControllerFindAllData`
|
|
1773
1773
|
*/
|
|
1774
|
-
projectsControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1774
|
+
projectsControllerFindAll: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1775
1775
|
/**
|
|
1776
1776
|
* No description
|
|
1777
1777
|
*
|
|
@@ -1779,7 +1779,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1779
1779
|
* @request POST:/api/projects
|
|
1780
1780
|
* @response `201` `ProjectsControllerCreateData`
|
|
1781
1781
|
*/
|
|
1782
|
-
projectsControllerCreate: (data: CreateProjectDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1782
|
+
projectsControllerCreate: (data: CreateProjectDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1783
1783
|
/**
|
|
1784
1784
|
* No description
|
|
1785
1785
|
*
|
|
@@ -1787,7 +1787,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1787
1787
|
* @request PATCH:/api/projects/{id}
|
|
1788
1788
|
* @response `200` `ProjectsControllerUpdateData`
|
|
1789
1789
|
*/
|
|
1790
|
-
projectsControllerUpdate: (id: string, data: UpdateProjectDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1790
|
+
projectsControllerUpdate: (id: string, data: UpdateProjectDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1791
1791
|
/**
|
|
1792
1792
|
* No description
|
|
1793
1793
|
*
|
|
@@ -1795,7 +1795,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1795
1795
|
* @request DELETE:/api/projects/{id}
|
|
1796
1796
|
* @response `200` `ProjectsControllerDeleteData`
|
|
1797
1797
|
*/
|
|
1798
|
-
projectsControllerDelete: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1798
|
+
projectsControllerDelete: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1799
1799
|
/**
|
|
1800
1800
|
* No description
|
|
1801
1801
|
*
|
|
@@ -1803,7 +1803,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1803
1803
|
* @request POST:/api/feedback
|
|
1804
1804
|
* @response `201` `FeedbackControllerSubmitData`
|
|
1805
1805
|
*/
|
|
1806
|
-
feedbackControllerSubmit: (data: SubmitFeedbackDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1806
|
+
feedbackControllerSubmit: (data: SubmitFeedbackDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1807
1807
|
/**
|
|
1808
1808
|
* No description
|
|
1809
1809
|
*
|
|
@@ -1814,7 +1814,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1814
1814
|
* @response `200` `StripeControllerHandleWebhookData` Webhook processed successfully
|
|
1815
1815
|
* @response `400` `void` Bad request or webhook error
|
|
1816
1816
|
*/
|
|
1817
|
-
stripeControllerHandleWebhook: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1817
|
+
stripeControllerHandleWebhook: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1818
1818
|
/**
|
|
1819
1819
|
* No description
|
|
1820
1820
|
*
|
|
@@ -1823,7 +1823,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1823
1823
|
* @request POST:/api/stripe/webhook-debug
|
|
1824
1824
|
* @response `201` `StripeControllerHandleWebhookDebugData`
|
|
1825
1825
|
*/
|
|
1826
|
-
stripeControllerHandleWebhookDebug: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1826
|
+
stripeControllerHandleWebhookDebug: (params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1827
1827
|
/**
|
|
1828
1828
|
* No description
|
|
1829
1829
|
*
|
|
@@ -1834,7 +1834,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1834
1834
|
* @response `200` `StripeControllerCreateCheckoutSessionData` Checkout session created successfully
|
|
1835
1835
|
* @response `400` `void` Error creating checkout session
|
|
1836
1836
|
*/
|
|
1837
|
-
stripeControllerCreateCheckoutSession: (data: CreateCheckoutSessionDto, params?: RequestParams) => Promise<AxiosResponse<CheckoutSessionResponseDto, any, {}>>;
|
|
1837
|
+
stripeControllerCreateCheckoutSession: (data: CreateCheckoutSessionDto, params?: RequestParams) => Promise<AxiosResponse<CheckoutSessionResponseDto, any, {}, any>>;
|
|
1838
1838
|
/**
|
|
1839
1839
|
* No description
|
|
1840
1840
|
*
|
|
@@ -1845,7 +1845,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1845
1845
|
* @response `200` `StripeControllerCreateCheckoutSessionByPlanData` Checkout session created successfully
|
|
1846
1846
|
* @response `400` `void` Error creating checkout session
|
|
1847
1847
|
*/
|
|
1848
|
-
stripeControllerCreateCheckoutSessionByPlan: (data: CreateCheckoutSessionByPlanDto, params?: RequestParams) => Promise<AxiosResponse<CheckoutSessionResponseDto, any, {}>>;
|
|
1848
|
+
stripeControllerCreateCheckoutSessionByPlan: (data: CreateCheckoutSessionByPlanDto, params?: RequestParams) => Promise<AxiosResponse<CheckoutSessionResponseDto, any, {}, any>>;
|
|
1849
1849
|
/**
|
|
1850
1850
|
* No description
|
|
1851
1851
|
*
|
|
@@ -1856,7 +1856,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1856
1856
|
* @response `200` `StripeControllerGetProductsData` Products retrieved successfully
|
|
1857
1857
|
* @response `400` `void` Error fetching products
|
|
1858
1858
|
*/
|
|
1859
|
-
stripeControllerGetProducts: (query: StripeControllerGetProductsParams, params?: RequestParams) => Promise<AxiosResponse<StripeProductsResponseDto, any, {}>>;
|
|
1859
|
+
stripeControllerGetProducts: (query: StripeControllerGetProductsParams, params?: RequestParams) => Promise<AxiosResponse<StripeProductsResponseDto, any, {}, any>>;
|
|
1860
1860
|
/**
|
|
1861
1861
|
* No description
|
|
1862
1862
|
*
|
|
@@ -1866,7 +1866,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1866
1866
|
* @request GET:/api/stripe/environment
|
|
1867
1867
|
* @response `200` `StripeControllerGetEnvironmentData` Environment information
|
|
1868
1868
|
*/
|
|
1869
|
-
stripeControllerGetEnvironment: (params?: RequestParams) => Promise<AxiosResponse<StripeEnvironmentResponseDto, any, {}>>;
|
|
1869
|
+
stripeControllerGetEnvironment: (params?: RequestParams) => Promise<AxiosResponse<StripeEnvironmentResponseDto, any, {}, any>>;
|
|
1870
1870
|
/**
|
|
1871
1871
|
* No description
|
|
1872
1872
|
*
|
|
@@ -1877,7 +1877,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1877
1877
|
* @response `200` `StripeControllerCreatePaymentIntentData` Payment intent created successfully
|
|
1878
1878
|
* @response `400` `void` Error creating payment intent
|
|
1879
1879
|
*/
|
|
1880
|
-
stripeControllerCreatePaymentIntent: (data: CreatePaymentIntentDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1880
|
+
stripeControllerCreatePaymentIntent: (data: CreatePaymentIntentDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1881
1881
|
/**
|
|
1882
1882
|
* No description
|
|
1883
1883
|
*
|
|
@@ -1888,7 +1888,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1888
1888
|
* @response `200` `StripeControllerGetSubscriptionData` Subscription retrieved successfully
|
|
1889
1889
|
* @response `404` `void` Subscription not found
|
|
1890
1890
|
*/
|
|
1891
|
-
stripeControllerGetSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1891
|
+
stripeControllerGetSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1892
1892
|
/**
|
|
1893
1893
|
* No description
|
|
1894
1894
|
*
|
|
@@ -1899,7 +1899,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1899
1899
|
* @response `200` `StripeControllerUpdateSubscriptionData` Subscription updated successfully
|
|
1900
1900
|
* @response `404` `void` Subscription not found
|
|
1901
1901
|
*/
|
|
1902
|
-
stripeControllerUpdateSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1902
|
+
stripeControllerUpdateSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1903
1903
|
/**
|
|
1904
1904
|
* No description
|
|
1905
1905
|
*
|
|
@@ -1910,7 +1910,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1910
1910
|
* @response `200` `StripeControllerGetCustomerSubscriptionsData` Customer subscriptions retrieved successfully
|
|
1911
1911
|
* @response `404` `void` Customer not found
|
|
1912
1912
|
*/
|
|
1913
|
-
stripeControllerGetCustomerSubscriptions: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1913
|
+
stripeControllerGetCustomerSubscriptions: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1914
1914
|
/**
|
|
1915
1915
|
* No description
|
|
1916
1916
|
*
|
|
@@ -1921,7 +1921,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1921
1921
|
* @response `200` `StripeControllerCancelSubscriptionData` Subscription canceled successfully
|
|
1922
1922
|
* @response `404` `void` Subscription not found
|
|
1923
1923
|
*/
|
|
1924
|
-
stripeControllerCancelSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1924
|
+
stripeControllerCancelSubscription: (id: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1925
1925
|
/**
|
|
1926
1926
|
* No description
|
|
1927
1927
|
*
|
|
@@ -1931,7 +1931,7 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1931
1931
|
* @request POST:/api/onboarding/request-demo
|
|
1932
1932
|
* @response `201` `OnboardingControllerRequestDemoData`
|
|
1933
1933
|
*/
|
|
1934
|
-
onboardingControllerRequestDemo: (data: DemoRequestDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1934
|
+
onboardingControllerRequestDemo: (data: DemoRequestDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1935
1935
|
/**
|
|
1936
1936
|
* No description
|
|
1937
1937
|
*
|
|
@@ -1940,6 +1940,6 @@ export declare class Api<SecurityDataType extends unknown> {
|
|
|
1940
1940
|
* @request POST:/api/onboarding/accept-invitation
|
|
1941
1941
|
* @response `201` `OnboardingControllerAcceptInvitationData`
|
|
1942
1942
|
*/
|
|
1943
|
-
onboardingControllerAcceptInvitation: (data: AcceptInvitationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
1943
|
+
onboardingControllerAcceptInvitation: (data: AcceptInvitationDto, params?: RequestParams) => Promise<AxiosResponse<any, any, {}, any>>;
|
|
1944
1944
|
};
|
|
1945
1945
|
}
|