cilantro-sdk 0.0.44 → 0.0.45
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/dist/api/admin/admin.d.ts +7 -5
- package/dist/api/admin/admin.d.ts.map +1 -1
- package/dist/api/auth/auth.d.ts +5 -1
- package/dist/api/auth/auth.d.ts.map +1 -1
- package/dist/api/platforms/platforms.d.ts +5 -5
- package/dist/api/platforms/platforms.d.ts.map +1 -1
- package/dist/auth.cjs +80 -21
- package/dist/auth.cjs.map +4 -4
- package/dist/auth.d.ts +61 -3
- package/dist/auth.d.ts.map +1 -1
- package/dist/auth.mjs +77 -21
- package/dist/auth.mjs.map +4 -4
- package/dist/index.cjs +84 -26
- package/dist/index.cjs.map +3 -3
- package/dist/index.mjs +84 -26
- package/dist/index.mjs.map +3 -3
- package/dist/models/adminControllerFindAllUsersParams.d.ts +18 -0
- package/dist/models/adminControllerFindAllUsersParams.d.ts.map +1 -0
- package/dist/models/adminControllerFindAllWalletsParams.d.ts +18 -0
- package/dist/models/adminControllerFindAllWalletsParams.d.ts.map +1 -0
- package/dist/models/adminControllerFindWalletsByUserIdParams.d.ts +18 -0
- package/dist/models/adminControllerFindWalletsByUserIdParams.d.ts.map +1 -0
- package/dist/models/adminControllerGetAllApiKeysParams.d.ts +18 -0
- package/dist/models/adminControllerGetAllApiKeysParams.d.ts.map +1 -0
- package/dist/models/adminControllerGetWalletAssetsByWalletIdAssetType.d.ts +14 -0
- package/dist/models/adminControllerGetWalletAssetsByWalletIdAssetType.d.ts.map +1 -0
- package/dist/models/adminControllerGetWalletAssetsByWalletIdParams.d.ts +15 -0
- package/dist/models/adminControllerGetWalletAssetsByWalletIdParams.d.ts.map +1 -0
- package/dist/models/authControllerGetDiscordAuthorizeUrl200.d.ts +11 -0
- package/dist/models/authControllerGetDiscordAuthorizeUrl200.d.ts.map +1 -0
- package/dist/models/authControllerGetDiscordAuthorizeUrlParams.d.ts +12 -0
- package/dist/models/authControllerGetDiscordAuthorizeUrlParams.d.ts.map +1 -0
- package/dist/models/discordCallbackDto.d.ts +16 -0
- package/dist/models/discordCallbackDto.d.ts.map +1 -0
- package/dist/models/index.d.ts +18 -0
- package/dist/models/index.d.ts.map +1 -1
- package/dist/models/loginResponseDataDto.d.ts +11 -2
- package/dist/models/loginResponseDataDto.d.ts.map +1 -1
- package/dist/models/loginResponseDataDtoUser.d.ts +3 -0
- package/dist/models/loginResponseDataDtoUser.d.ts.map +1 -1
- package/dist/models/loginResponseDataDtoUserType.d.ts +3 -0
- package/dist/models/loginResponseDataDtoUserType.d.ts.map +1 -1
- package/dist/models/loginResponseDto.d.ts +0 -1
- package/dist/models/loginResponseDto.d.ts.map +1 -1
- package/dist/models/platformApiKeysListResponseDto.d.ts +3 -0
- package/dist/models/platformApiKeysListResponseDto.d.ts.map +1 -1
- package/dist/models/platformApiKeysListResponseDtoMeta.d.ts +14 -0
- package/dist/models/platformApiKeysListResponseDtoMeta.d.ts.map +1 -0
- package/dist/models/platformControllerFindAllParams.d.ts +18 -0
- package/dist/models/platformControllerFindAllParams.d.ts.map +1 -0
- package/dist/models/platformControllerGetSubscriptionsForPlatformParams.d.ts +18 -0
- package/dist/models/platformControllerGetSubscriptionsForPlatformParams.d.ts.map +1 -0
- package/dist/models/platformControllerGetUsersForPlatformParams.d.ts +18 -0
- package/dist/models/platformControllerGetUsersForPlatformParams.d.ts.map +1 -0
- package/dist/models/platformControllerGetWalletsForPlatformParams.d.ts +18 -0
- package/dist/models/platformControllerGetWalletsForPlatformParams.d.ts.map +1 -0
- package/dist/models/socialLoginDto.d.ts +4 -2
- package/dist/models/socialLoginDto.d.ts.map +1 -1
- package/dist/models/socialLoginDtoProvider.d.ts +1 -0
- package/dist/models/socialLoginDtoProvider.d.ts.map +1 -1
- package/dist/models/subscriptionsListResponseDto.d.ts +3 -0
- package/dist/models/subscriptionsListResponseDto.d.ts.map +1 -1
- package/dist/models/subscriptionsListResponseDtoMeta.d.ts +14 -0
- package/dist/models/subscriptionsListResponseDtoMeta.d.ts.map +1 -0
- package/dist/models/tokenResponseDataDto.d.ts +18 -0
- package/dist/models/tokenResponseDataDto.d.ts.map +1 -0
- package/dist/models/tokenResponseDto.d.ts +3 -8
- package/dist/models/tokenResponseDto.d.ts.map +1 -1
- package/dist/models/usersListResponseDto.d.ts +3 -0
- package/dist/models/usersListResponseDto.d.ts.map +1 -1
- package/dist/models/usersListResponseDtoMeta.d.ts +14 -0
- package/dist/models/usersListResponseDtoMeta.d.ts.map +1 -0
- package/dist/models/walletsListResponseDto.d.ts +3 -0
- package/dist/models/walletsListResponseDto.d.ts.map +1 -1
- package/dist/models/walletsListResponseDtoMeta.d.ts +14 -0
- package/dist/models/walletsListResponseDtoMeta.d.ts.map +1 -0
- package/dist/platform.cjs +8 -8
- package/dist/platform.cjs.map +2 -2
- package/dist/platform.d.ts +4 -4
- package/dist/platform.d.ts.map +1 -1
- package/dist/platform.mjs +8 -8
- package/dist/platform.mjs.map +2 -2
- package/package.json +4 -2
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
* API documentation for Cilantro Smart API - A Solana wallet management system
|
|
6
6
|
* OpenAPI spec version: 1.0
|
|
7
7
|
*/
|
|
8
|
-
import type { AdminControllerFindAllParams, AdminControllerFindAllPlatformsParams, AdminControllerGetPlatformActivityTimelineParams, AdminControllerGetPlatformGrowthTrendsParams, AdminControllerGetPlatformsWithUsersParams, AdminControllerGetTopPlatformsParams, AdminControllerGetUsersWithWalletsParams, AdminControllerGetWalletAssetsParams, AdminCurrentResponseDto, AdminResponseDto, AdminsListResponseDto, AnalyticsOverviewResponseDto, CreateAdminDto, PlatformActivityTimelineResponseDto, PlatformAnalyticsResponseDto, PlatformApiKeyResponseDto, PlatformApiKeysListResponseDto, PlatformGrowthTrendsResponseDto, PlatformPaginatedResponseDto, PlatformResponseDto, PlatformUsageMetricsResponseDto, PlatformWithUsersResponseDto, RecentActivityResponseDto, TopPlatformsResponseDto, UpdateAdminDto, UpdatePlatformDto, UserResponseDto, UserWithWalletsResponseDto, UsersListResponseDto, WalletAnalyticsResponseDto, WalletAssetsListResponseDto, WalletSuccessResponseDto, WalletsListResponseDto } from "../../models";
|
|
8
|
+
import type { AdminControllerFindAllParams, AdminControllerFindAllPlatformsParams, AdminControllerFindAllUsersParams, AdminControllerFindAllWalletsParams, AdminControllerFindWalletsByUserIdParams, AdminControllerGetAllApiKeysParams, AdminControllerGetPlatformActivityTimelineParams, AdminControllerGetPlatformGrowthTrendsParams, AdminControllerGetPlatformsWithUsersParams, AdminControllerGetTopPlatformsParams, AdminControllerGetUsersWithWalletsParams, AdminControllerGetWalletAssetsByWalletIdParams, AdminControllerGetWalletAssetsParams, AdminCurrentResponseDto, AdminResponseDto, AdminsListResponseDto, AnalyticsOverviewResponseDto, CreateAdminDto, PlatformActivityTimelineResponseDto, PlatformAnalyticsResponseDto, PlatformApiKeyResponseDto, PlatformApiKeysListResponseDto, PlatformGrowthTrendsResponseDto, PlatformPaginatedResponseDto, PlatformResponseDto, PlatformUsageMetricsResponseDto, PlatformWithUsersResponseDto, RecentActivityResponseDto, TopPlatformsResponseDto, UpdateAdminDto, UpdatePlatformDto, UserResponseDto, UserWithWalletsResponseDto, UsersListResponseDto, WalletAnalyticsResponseDto, WalletAssetsListResponseDto, WalletAssetsResponseDto, WalletSuccessResponseDto, WalletsListResponseDto } from "../../models";
|
|
9
9
|
import { customInstance } from "../../api-client";
|
|
10
10
|
type SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
11
11
|
export declare const getAdmin: () => {
|
|
12
12
|
adminControllerCreate: (createAdminDto: CreateAdminDto, options?: SecondParameter<typeof customInstance<AdminResponseDto>>) => Promise<AdminResponseDto>;
|
|
13
13
|
adminControllerFindAll: (params?: AdminControllerFindAllParams, options?: SecondParameter<typeof customInstance<AdminsListResponseDto>>) => Promise<AdminsListResponseDto>;
|
|
14
14
|
adminControllerGetCurrentAdmin: (options?: SecondParameter<typeof customInstance<AdminCurrentResponseDto>>) => Promise<AdminCurrentResponseDto>;
|
|
15
|
-
adminControllerGetAllApiKeys: (options?: SecondParameter<typeof customInstance<PlatformApiKeysListResponseDto>>) => Promise<PlatformApiKeysListResponseDto>;
|
|
15
|
+
adminControllerGetAllApiKeys: (params?: AdminControllerGetAllApiKeysParams, options?: SecondParameter<typeof customInstance<PlatformApiKeysListResponseDto>>) => Promise<PlatformApiKeysListResponseDto>;
|
|
16
16
|
adminControllerGetplatformApiKey: (platformId: string, options?: SecondParameter<typeof customInstance<PlatformApiKeyResponseDto>>) => Promise<PlatformApiKeyResponseDto>;
|
|
17
17
|
adminControllerFindOne: (id: string, options?: SecondParameter<typeof customInstance<AdminResponseDto>>) => Promise<AdminResponseDto>;
|
|
18
18
|
adminControllerUpdate: (id: string, updateAdminDto: UpdateAdminDto, options?: SecondParameter<typeof customInstance<AdminResponseDto>>) => Promise<AdminResponseDto>;
|
|
@@ -22,10 +22,11 @@ export declare const getAdmin: () => {
|
|
|
22
22
|
adminControllerFindOnePlatform: (id: string, options?: SecondParameter<typeof customInstance<PlatformResponseDto>>) => Promise<PlatformResponseDto>;
|
|
23
23
|
adminControllerUpdatePlatform: (id: string, updatePlatformDto: UpdatePlatformDto, options?: SecondParameter<typeof customInstance<PlatformResponseDto>>) => Promise<PlatformResponseDto>;
|
|
24
24
|
adminControllerRemovePlatform: (id: string, options?: SecondParameter<typeof customInstance<PlatformResponseDto>>) => Promise<PlatformResponseDto>;
|
|
25
|
-
adminControllerFindAllUsers: (options?: SecondParameter<typeof customInstance<UsersListResponseDto>>) => Promise<UsersListResponseDto>;
|
|
25
|
+
adminControllerFindAllUsers: (params?: AdminControllerFindAllUsersParams, options?: SecondParameter<typeof customInstance<UsersListResponseDto>>) => Promise<UsersListResponseDto>;
|
|
26
26
|
adminControllerFindOneUser: (id: string, options?: SecondParameter<typeof customInstance<UserResponseDto>>) => Promise<UserResponseDto>;
|
|
27
|
-
adminControllerFindAllWallets: (options?: SecondParameter<typeof customInstance<WalletsListResponseDto>>) => Promise<WalletsListResponseDto>;
|
|
28
|
-
adminControllerFindWalletsByUserId: (userId: string, options?: SecondParameter<typeof customInstance<WalletsListResponseDto>>) => Promise<WalletsListResponseDto>;
|
|
27
|
+
adminControllerFindAllWallets: (params?: AdminControllerFindAllWalletsParams, options?: SecondParameter<typeof customInstance<WalletsListResponseDto>>) => Promise<WalletsListResponseDto>;
|
|
28
|
+
adminControllerFindWalletsByUserId: (userId: string, params?: AdminControllerFindWalletsByUserIdParams, options?: SecondParameter<typeof customInstance<WalletsListResponseDto>>) => Promise<WalletsListResponseDto>;
|
|
29
|
+
adminControllerGetWalletAssetsByWalletId: (id: string, params?: AdminControllerGetWalletAssetsByWalletIdParams, options?: SecondParameter<typeof customInstance<WalletAssetsResponseDto>>) => Promise<WalletAssetsResponseDto>;
|
|
29
30
|
adminControllerFindOneWallet: (id: string, options?: SecondParameter<typeof customInstance<WalletSuccessResponseDto>>) => Promise<WalletSuccessResponseDto>;
|
|
30
31
|
adminControllerGetOverviewAnalytics: (options?: SecondParameter<typeof customInstance<AnalyticsOverviewResponseDto>>) => Promise<AnalyticsOverviewResponseDto>;
|
|
31
32
|
adminControllerGetWalletAnalytics: (options?: SecondParameter<typeof customInstance<WalletAnalyticsResponseDto>>) => Promise<WalletAnalyticsResponseDto>;
|
|
@@ -57,6 +58,7 @@ export type AdminControllerFindAllUsersResult = NonNullable<Awaited<ReturnType<R
|
|
|
57
58
|
export type AdminControllerFindOneUserResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAdmin>["adminControllerFindOneUser"]>>>;
|
|
58
59
|
export type AdminControllerFindAllWalletsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAdmin>["adminControllerFindAllWallets"]>>>;
|
|
59
60
|
export type AdminControllerFindWalletsByUserIdResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAdmin>["adminControllerFindWalletsByUserId"]>>>;
|
|
61
|
+
export type AdminControllerGetWalletAssetsByWalletIdResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAdmin>["adminControllerGetWalletAssetsByWalletId"]>>>;
|
|
60
62
|
export type AdminControllerFindOneWalletResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAdmin>["adminControllerFindOneWallet"]>>>;
|
|
61
63
|
export type AdminControllerGetOverviewAnalyticsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAdmin>["adminControllerGetOverviewAnalytics"]>>>;
|
|
62
64
|
export type AdminControllerGetWalletAnalyticsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAdmin>["adminControllerGetWalletAnalytics"]>>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"admin.d.ts","sourceRoot":"","sources":["../../../src/api/admin/admin.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EACV,4BAA4B,EAC5B,qCAAqC,EACrC,gDAAgD,EAChD,4CAA4C,EAC5C,0CAA0C,EAC1C,oCAAoC,EACpC,wCAAwC,EACxC,oCAAoC,EACpC,uBAAuB,EACvB,gBAAgB,EAChB,qBAAqB,EACrB,4BAA4B,EAC5B,cAAc,EACd,mCAAmC,EACnC,4BAA4B,EAC5B,yBAAyB,EACzB,8BAA8B,EAC9B,+BAA+B,EAC/B,4BAA4B,EAC5B,mBAAmB,EACnB,+BAA+B,EAC/B,4BAA4B,EAC5B,yBAAyB,EACzB,uBAAuB,EACvB,cAAc,EACd,iBAAiB,EACjB,eAAe,EACf,0BAA0B,EAC1B,oBAAoB,EACpB,0BAA0B,EAC1B,2BAA2B,EAC3B,wBAAwB,EACxB,sBAAsB,EACvB,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAE/E,eAAO,MAAM,QAAQ;4CAMD,cAAc,YACpB,eAAe,CAAC,OAAO,cAAc,CAAC,gBAAgB,CAAC,CAAC;sCAiBzD,4BAA4B,YAC3B,eAAe,CAAC,OAAO,cAAc,CAAC,qBAAqB,CAAC,CAAC;+CAY7D,eAAe,CAAC,OAAO,cAAc,CAAC,uBAAuB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"admin.d.ts","sourceRoot":"","sources":["../../../src/api/admin/admin.ts"],"names":[],"mappings":"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"}
|
package/dist/api/auth/auth.d.ts
CHANGED
|
@@ -5,11 +5,13 @@
|
|
|
5
5
|
* API documentation for Cilantro Smart API - A Solana wallet management system
|
|
6
6
|
* OpenAPI spec version: 1.0
|
|
7
7
|
*/
|
|
8
|
-
import type { AuthSuccessResponseDto, CommonLoginDto, LoginResponseDto, PasswordResetConfirmDto, PasswordResetRequestDto, RefreshTokenDto, SocialLoginDto, TokenResponseDto, VerifyEmailDto } from "../../models";
|
|
8
|
+
import type { AuthControllerGetDiscordAuthorizeUrl200, AuthControllerGetDiscordAuthorizeUrlParams, AuthSuccessResponseDto, CommonLoginDto, DiscordCallbackDto, LoginResponseDto, PasswordResetConfirmDto, PasswordResetRequestDto, RefreshTokenDto, SocialLoginDto, TokenResponseDto, VerifyEmailDto } from "../../models";
|
|
9
9
|
import { customInstance } from "../../api-client";
|
|
10
10
|
type SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
11
11
|
export declare const getAuth: () => {
|
|
12
12
|
authControllerLogin: (commonLoginDto: CommonLoginDto, options?: SecondParameter<typeof customInstance<LoginResponseDto>>) => Promise<LoginResponseDto>;
|
|
13
|
+
authControllerGetDiscordAuthorizeUrl: (params: AuthControllerGetDiscordAuthorizeUrlParams, options?: SecondParameter<typeof customInstance<AuthControllerGetDiscordAuthorizeUrl200>>) => Promise<AuthControllerGetDiscordAuthorizeUrl200>;
|
|
14
|
+
authControllerDiscordCallback: (discordCallbackDto: DiscordCallbackDto, options?: SecondParameter<typeof customInstance<LoginResponseDto>>) => Promise<LoginResponseDto>;
|
|
13
15
|
authControllerSocialLogin: (socialLoginDto: SocialLoginDto, options?: SecondParameter<typeof customInstance<LoginResponseDto>>) => Promise<LoginResponseDto>;
|
|
14
16
|
authControllerRefreshToken: (refreshTokenDto: RefreshTokenDto, options?: SecondParameter<typeof customInstance<TokenResponseDto>>) => Promise<TokenResponseDto>;
|
|
15
17
|
authControllerLogout: (refreshTokenDto: RefreshTokenDto, options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>) => Promise<AuthSuccessResponseDto>;
|
|
@@ -19,6 +21,8 @@ export declare const getAuth: () => {
|
|
|
19
21
|
authControllerResendVerification: (passwordResetRequestDto: PasswordResetRequestDto, options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>) => Promise<AuthSuccessResponseDto>;
|
|
20
22
|
};
|
|
21
23
|
export type AuthControllerLoginResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAuth>["authControllerLogin"]>>>;
|
|
24
|
+
export type AuthControllerGetDiscordAuthorizeUrlResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAuth>["authControllerGetDiscordAuthorizeUrl"]>>>;
|
|
25
|
+
export type AuthControllerDiscordCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAuth>["authControllerDiscordCallback"]>>>;
|
|
22
26
|
export type AuthControllerSocialLoginResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAuth>["authControllerSocialLogin"]>>>;
|
|
23
27
|
export type AuthControllerRefreshTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAuth>["authControllerRefreshToken"]>>>;
|
|
24
28
|
export type AuthControllerLogoutResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getAuth>["authControllerLogout"]>>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../src/api/auth/auth.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EACV,sBAAsB,EACtB,cAAc,EACd,gBAAgB,EAChB,uBAAuB,EACvB,uBAAuB,EACvB,eAAe,EACf,cAAc,EACd,gBAAgB,EAChB,cAAc,EACf,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAE/E,eAAO,MAAM,OAAO;0CAMA,cAAc,YACpB,eAAe,CAAC,OAAO,cAAc,CAAC,gBAAgB,CAAC,CAAC;gDAiBlD,cAAc,YACpB,eAAe,CAAC,OAAO,cAAc,CAAC,gBAAgB,CAAC,CAAC;kDAiBjD,eAAe,YACtB,eAAe,CAAC,OAAO,cAAc,CAAC,gBAAgB,CAAC,CAAC;4CAiBjD,eAAe,YACtB,eAAe,CAAC,OAAO,cAAc,CAAC,sBAAsB,CAAC,CAAC;kEAiB/C,uBAAuB,YACtC,eAAe,CAAC,OAAO,cAAc,CAAC,sBAAsB,CAAC,CAAC;kEAiB/C,uBAAuB,YACtC,eAAe,CAAC,OAAO,cAAc,CAAC,sBAAsB,CAAC,CAAC;gDAiBxD,cAAc,YACpB,eAAe,CAAC,OAAO,cAAc,CAAC,sBAAsB,CAAC,CAAC;gEAiB/C,uBAAuB,YACtC,eAAe,CAAC,OAAO,cAAc,CAAC,sBAAsB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../src/api/auth/auth.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,25 +5,25 @@
|
|
|
5
5
|
* API documentation for Cilantro Smart API - A Solana wallet management system
|
|
6
6
|
* OpenAPI spec version: 1.0
|
|
7
7
|
*/
|
|
8
|
-
import type { AuthSuccessResponseDto, CancelSubscriptionDto, ChangePasswordDto, ConfirmPaymentDto, CreatePlatformDto, CreateUserDto, DowngradeSubscriptionDto, LinkPaymentDto, PaymentHistoryResponseDto, PlatformCreatedResponseDto, PlatformResponseDto, PlatformsListResponseDto, RenewSubscriptionDto, SubscriptionHistoryResponseDto, SubscriptionResponseDto, SubscriptionsListResponseDto, UpdatePlatformDto, UpdateUserDto, UpgradeSubscriptionDto, UserResponseDto, UsersListResponseDto, WalletsListResponseDto } from "../../models";
|
|
8
|
+
import type { AuthSuccessResponseDto, CancelSubscriptionDto, ChangePasswordDto, ConfirmPaymentDto, CreatePlatformDto, CreateUserDto, DowngradeSubscriptionDto, LinkPaymentDto, PaymentHistoryResponseDto, PlatformControllerFindAllParams, PlatformControllerGetSubscriptionsForPlatformParams, PlatformControllerGetUsersForPlatformParams, PlatformControllerGetWalletsForPlatformParams, PlatformCreatedResponseDto, PlatformResponseDto, PlatformsListResponseDto, RenewSubscriptionDto, SubscriptionHistoryResponseDto, SubscriptionResponseDto, SubscriptionsListResponseDto, UpdatePlatformDto, UpdateUserDto, UpgradeSubscriptionDto, UserResponseDto, UsersListResponseDto, WalletsListResponseDto } from "../../models";
|
|
9
9
|
import { customInstance } from "../../api-client";
|
|
10
10
|
type SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
11
11
|
export declare const getPlatforms: () => {
|
|
12
12
|
platformControllerCreate: (createPlatformDto: CreatePlatformDto, options?: SecondParameter<typeof customInstance<PlatformCreatedResponseDto>>) => Promise<PlatformCreatedResponseDto>;
|
|
13
|
-
platformControllerFindAll: (options?: SecondParameter<typeof customInstance<PlatformsListResponseDto>>) => Promise<PlatformsListResponseDto>;
|
|
13
|
+
platformControllerFindAll: (params?: PlatformControllerFindAllParams, options?: SecondParameter<typeof customInstance<PlatformsListResponseDto>>) => Promise<PlatformsListResponseDto>;
|
|
14
14
|
platformControllerGetOwnProfile: (options?: SecondParameter<typeof customInstance<PlatformResponseDto>>) => Promise<PlatformResponseDto>;
|
|
15
15
|
platformControllerUpdateOwnProfile: (updatePlatformDto: UpdatePlatformDto, options?: SecondParameter<typeof customInstance<PlatformResponseDto>>) => Promise<PlatformResponseDto>;
|
|
16
16
|
platformControllerChangePassword: (changePasswordDto: ChangePasswordDto, options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>) => Promise<AuthSuccessResponseDto>;
|
|
17
17
|
platformControllerFindOne: (id: string, options?: SecondParameter<typeof customInstance<PlatformResponseDto>>) => Promise<PlatformResponseDto>;
|
|
18
18
|
platformControllerUpdate: (id: string, updatePlatformDto: UpdatePlatformDto, options?: SecondParameter<typeof customInstance<PlatformResponseDto>>) => Promise<PlatformResponseDto>;
|
|
19
19
|
platformControllerRemove: (id: string, options?: SecondParameter<typeof customInstance<PlatformResponseDto>>) => Promise<PlatformResponseDto>;
|
|
20
|
-
platformControllerGetUsersForPlatform: (options?: SecondParameter<typeof customInstance<UsersListResponseDto>>) => Promise<UsersListResponseDto>;
|
|
20
|
+
platformControllerGetUsersForPlatform: (params?: PlatformControllerGetUsersForPlatformParams, options?: SecondParameter<typeof customInstance<UsersListResponseDto>>) => Promise<UsersListResponseDto>;
|
|
21
21
|
platformControllerCreateUserForPlatform: (createUserDto: CreateUserDto, options?: SecondParameter<typeof customInstance<UserResponseDto>>) => Promise<UserResponseDto>;
|
|
22
22
|
platformControllerUpdateUserForPlatform: (userId: string, updateUserDto: UpdateUserDto, options?: SecondParameter<typeof customInstance<UserResponseDto>>) => Promise<UserResponseDto>;
|
|
23
23
|
platformControllerRemoveUserForPlatform: (userId: string, options?: SecondParameter<typeof customInstance<UserResponseDto>>) => Promise<UserResponseDto>;
|
|
24
24
|
platformControllerToggleUserActiveForPlatform: (userId: string, options?: SecondParameter<typeof customInstance<UserResponseDto>>) => Promise<UserResponseDto>;
|
|
25
|
-
platformControllerGetWalletsForPlatform: (options?: SecondParameter<typeof customInstance<WalletsListResponseDto>>) => Promise<WalletsListResponseDto>;
|
|
26
|
-
platformControllerGetSubscriptionsForPlatform: (options?: SecondParameter<typeof customInstance<SubscriptionsListResponseDto>>) => Promise<SubscriptionsListResponseDto>;
|
|
25
|
+
platformControllerGetWalletsForPlatform: (params?: PlatformControllerGetWalletsForPlatformParams, options?: SecondParameter<typeof customInstance<WalletsListResponseDto>>) => Promise<WalletsListResponseDto>;
|
|
26
|
+
platformControllerGetSubscriptionsForPlatform: (params?: PlatformControllerGetSubscriptionsForPlatformParams, options?: SecondParameter<typeof customInstance<SubscriptionsListResponseDto>>) => Promise<SubscriptionsListResponseDto>;
|
|
27
27
|
platformControllerGetSubscriptionById: (subscriptionId: string, options?: SecondParameter<typeof customInstance<SubscriptionResponseDto>>) => Promise<SubscriptionResponseDto>;
|
|
28
28
|
platformControllerRenewSubscription: (subscriptionId: string, renewSubscriptionDto: RenewSubscriptionDto, options?: SecondParameter<typeof customInstance<SubscriptionResponseDto>>) => Promise<SubscriptionResponseDto>;
|
|
29
29
|
platformControllerUpgradeSubscription: (subscriptionId: string, upgradeSubscriptionDto: UpgradeSubscriptionDto, options?: SecondParameter<typeof customInstance<SubscriptionResponseDto>>) => Promise<SubscriptionResponseDto>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platforms.d.ts","sourceRoot":"","sources":["../../../src/api/platforms/platforms.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EACV,sBAAsB,EACtB,qBAAqB,EACrB,iBAAiB,EACjB,iBAAiB,EACjB,iBAAiB,EACjB,aAAa,EACb,wBAAwB,EACxB,cAAc,EACd,yBAAyB,EACzB,0BAA0B,EAC1B,mBAAmB,EACnB,wBAAwB,EACxB,oBAAoB,EACpB,8BAA8B,EAC9B,uBAAuB,EACvB,4BAA4B,EAC5B,iBAAiB,EACjB,aAAa,EACb,sBAAsB,EACtB,eAAe,EACf,oBAAoB,EACpB,sBAAsB,EACvB,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAE/E,eAAO,MAAM,YAAY;kDAMF,iBAAiB,YAC1B,eAAe,CACvB,OAAO,cAAc,CAAC,0BAA0B,CAAC,CAClD;
|
|
1
|
+
{"version":3,"file":"platforms.d.ts","sourceRoot":"","sources":["../../../src/api/platforms/platforms.ts"],"names":[],"mappings":"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"}
|
package/dist/auth.cjs
CHANGED
|
@@ -31,6 +31,9 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
31
31
|
var auth_exports = {};
|
|
32
32
|
__export(auth_exports, {
|
|
33
33
|
SocialLoginDtoProvider: () => SocialLoginDtoProvider,
|
|
34
|
+
discordCallback: () => discordCallback,
|
|
35
|
+
discordCallbackAndSetAuth: () => discordCallbackAndSetAuth,
|
|
36
|
+
getDiscordAuthorizeUrl: () => getDiscordAuthorizeUrl,
|
|
34
37
|
login: () => login,
|
|
35
38
|
loginAndSetAuth: () => loginAndSetAuth,
|
|
36
39
|
socialLogin: () => socialLogin,
|
|
@@ -38,9 +41,6 @@ __export(auth_exports, {
|
|
|
38
41
|
});
|
|
39
42
|
module.exports = __toCommonJS(auth_exports);
|
|
40
43
|
|
|
41
|
-
// src/api-client.ts
|
|
42
|
-
var import_axios = __toESM(require("axios"));
|
|
43
|
-
|
|
44
44
|
// src/config.ts
|
|
45
45
|
var GLOBAL_CONFIG_KEY = "__CILANTRO_SDK_CONFIG__";
|
|
46
46
|
function getGlobalConfig() {
|
|
@@ -62,12 +62,12 @@ function getGlobalConfig() {
|
|
|
62
62
|
return defaultConfig;
|
|
63
63
|
}
|
|
64
64
|
var currentConfig = getGlobalConfig();
|
|
65
|
-
function setAuth(
|
|
65
|
+
function setAuth(auth2) {
|
|
66
66
|
currentConfig = getGlobalConfig();
|
|
67
|
-
if (
|
|
68
|
-
currentConfig.jwt =
|
|
67
|
+
if (auth2.jwt !== void 0) {
|
|
68
|
+
currentConfig.jwt = auth2.jwt;
|
|
69
69
|
}
|
|
70
|
-
currentConfig.apiKey =
|
|
70
|
+
currentConfig.apiKey = auth2.apiKey ?? auth2.platformApiKey;
|
|
71
71
|
if (typeof globalThis !== "undefined") {
|
|
72
72
|
globalThis.__CILANTRO_SDK_CONFIG__ = currentConfig;
|
|
73
73
|
} else if (typeof globalThis.window !== "undefined") {
|
|
@@ -80,6 +80,7 @@ function getConfig() {
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
// src/api-client.ts
|
|
83
|
+
var import_axios = __toESM(require("axios"));
|
|
83
84
|
var axiosInstance = import_axios.default.create();
|
|
84
85
|
axiosInstance.interceptors.request.use(
|
|
85
86
|
(config) => {
|
|
@@ -112,7 +113,7 @@ var customInstance = (config, options) => {
|
|
|
112
113
|
|
|
113
114
|
// src/api/auth/auth.ts
|
|
114
115
|
var getAuth = () => {
|
|
115
|
-
const
|
|
116
|
+
const authControllerLogin = (commonLoginDto, options) => {
|
|
116
117
|
return customInstance(
|
|
117
118
|
{
|
|
118
119
|
url: `/auth/login`,
|
|
@@ -123,7 +124,24 @@ var getAuth = () => {
|
|
|
123
124
|
options
|
|
124
125
|
);
|
|
125
126
|
};
|
|
126
|
-
const
|
|
127
|
+
const authControllerGetDiscordAuthorizeUrl = (params, options) => {
|
|
128
|
+
return customInstance(
|
|
129
|
+
{ url: `/auth/discord/authorize`, method: "GET", params },
|
|
130
|
+
options
|
|
131
|
+
);
|
|
132
|
+
};
|
|
133
|
+
const authControllerDiscordCallback = (discordCallbackDto, options) => {
|
|
134
|
+
return customInstance(
|
|
135
|
+
{
|
|
136
|
+
url: `/auth/social/discord/callback`,
|
|
137
|
+
method: "POST",
|
|
138
|
+
headers: { "Content-Type": "application/json" },
|
|
139
|
+
data: discordCallbackDto
|
|
140
|
+
},
|
|
141
|
+
options
|
|
142
|
+
);
|
|
143
|
+
};
|
|
144
|
+
const authControllerSocialLogin = (socialLoginDto, options) => {
|
|
127
145
|
return customInstance(
|
|
128
146
|
{
|
|
129
147
|
url: `/auth/social`,
|
|
@@ -201,8 +219,10 @@ var getAuth = () => {
|
|
|
201
219
|
);
|
|
202
220
|
};
|
|
203
221
|
return {
|
|
204
|
-
authControllerLogin
|
|
205
|
-
|
|
222
|
+
authControllerLogin,
|
|
223
|
+
authControllerGetDiscordAuthorizeUrl,
|
|
224
|
+
authControllerDiscordCallback,
|
|
225
|
+
authControllerSocialLogin,
|
|
206
226
|
authControllerRefreshToken,
|
|
207
227
|
authControllerLogout,
|
|
208
228
|
authControllerRequestPasswordReset,
|
|
@@ -215,20 +235,22 @@ var getAuth = () => {
|
|
|
215
235
|
// src/models/socialLoginDtoProvider.ts
|
|
216
236
|
var SocialLoginDtoProvider = {
|
|
217
237
|
google: "google",
|
|
218
|
-
apple: "apple"
|
|
238
|
+
apple: "apple",
|
|
239
|
+
discord: "discord"
|
|
219
240
|
};
|
|
220
241
|
|
|
221
242
|
// src/auth.ts
|
|
222
|
-
var
|
|
223
|
-
var login = authControllerLogin;
|
|
224
|
-
var socialLogin = authControllerSocialLogin;
|
|
243
|
+
var auth = getAuth();
|
|
244
|
+
var login = auth.authControllerLogin;
|
|
245
|
+
var socialLogin = auth.authControllerSocialLogin;
|
|
246
|
+
var discordCallback = auth.authControllerDiscordCallback;
|
|
225
247
|
async function loginAndSetAuth(credentials, options) {
|
|
226
248
|
var _a, _b;
|
|
227
249
|
const result = await login(credentials, options);
|
|
228
|
-
if ((_a = result.data) == null ? void 0 : _a.
|
|
229
|
-
setAuth({ jwt: result.data.
|
|
250
|
+
if ((_a = result.data) == null ? void 0 : _a.accessToken) {
|
|
251
|
+
setAuth({ jwt: result.data.accessToken });
|
|
230
252
|
}
|
|
231
|
-
if ((_b = result.data) == null ? void 0 : _b.apiKey) {
|
|
253
|
+
if (((_b = result.data) == null ? void 0 : _b.apiKey) !== void 0) {
|
|
232
254
|
setAuth({ apiKey: result.data.apiKey });
|
|
233
255
|
}
|
|
234
256
|
return result;
|
|
@@ -236,10 +258,44 @@ async function loginAndSetAuth(credentials, options) {
|
|
|
236
258
|
async function socialLoginAndSetAuth(credentials, options) {
|
|
237
259
|
var _a, _b;
|
|
238
260
|
const result = await socialLogin(credentials, options);
|
|
239
|
-
if ((_a = result.data) == null ? void 0 : _a.
|
|
240
|
-
setAuth({ jwt: result.data.
|
|
261
|
+
if ((_a = result.data) == null ? void 0 : _a.accessToken) {
|
|
262
|
+
setAuth({ jwt: result.data.accessToken });
|
|
263
|
+
}
|
|
264
|
+
if (((_b = result.data) == null ? void 0 : _b.apiKey) !== void 0) {
|
|
265
|
+
setAuth({ apiKey: result.data.apiKey });
|
|
266
|
+
}
|
|
267
|
+
return result;
|
|
268
|
+
}
|
|
269
|
+
async function getDiscordAuthorizeUrl(params) {
|
|
270
|
+
const config = getConfig();
|
|
271
|
+
const platformApiKey = params.platformApiKey ?? config.apiKey;
|
|
272
|
+
if (!platformApiKey) {
|
|
273
|
+
throw new Error(
|
|
274
|
+
"Platform API key required for Discord auth. Pass platformApiKey or set it via setAuth({ apiKey }) or configure({ apiKey })."
|
|
275
|
+
);
|
|
276
|
+
}
|
|
277
|
+
return auth.authControllerGetDiscordAuthorizeUrl(
|
|
278
|
+
{
|
|
279
|
+
redirect_uri: params.redirectUri,
|
|
280
|
+
platformApiKey
|
|
281
|
+
},
|
|
282
|
+
params.state !== void 0 ? { params: { state: params.state } } : void 0
|
|
283
|
+
);
|
|
284
|
+
}
|
|
285
|
+
async function discordCallbackAndSetAuth(params) {
|
|
286
|
+
var _a, _b;
|
|
287
|
+
const result = await auth.authControllerDiscordCallback(
|
|
288
|
+
{
|
|
289
|
+
code: params.code,
|
|
290
|
+
redirect_uri: params.redirectUri,
|
|
291
|
+
...params.platformApiKey !== void 0 && { platformApiKey: params.platformApiKey }
|
|
292
|
+
},
|
|
293
|
+
params.options
|
|
294
|
+
);
|
|
295
|
+
if ((_a = result.data) == null ? void 0 : _a.accessToken) {
|
|
296
|
+
setAuth({ jwt: result.data.accessToken });
|
|
241
297
|
}
|
|
242
|
-
if ((_b = result.data) == null ? void 0 : _b.apiKey) {
|
|
298
|
+
if (((_b = result.data) == null ? void 0 : _b.apiKey) !== void 0) {
|
|
243
299
|
setAuth({ apiKey: result.data.apiKey });
|
|
244
300
|
}
|
|
245
301
|
return result;
|
|
@@ -247,6 +303,9 @@ async function socialLoginAndSetAuth(credentials, options) {
|
|
|
247
303
|
// Annotate the CommonJS export names for ESM import in node:
|
|
248
304
|
0 && (module.exports = {
|
|
249
305
|
SocialLoginDtoProvider,
|
|
306
|
+
discordCallback,
|
|
307
|
+
discordCallbackAndSetAuth,
|
|
308
|
+
getDiscordAuthorizeUrl,
|
|
250
309
|
login,
|
|
251
310
|
loginAndSetAuth,
|
|
252
311
|
socialLogin,
|
package/dist/auth.cjs.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../src/auth.ts", "../src/
|
|
4
|
-
"sourcesContent": ["/**\r\n * Auth module - Simplified exports for authentication-related API functions\r\n */\r\n\r\nimport { getAuth } from './api/auth/auth';\r\nimport { setAuth } from './config';\r\nimport type { CommonLoginDto, SocialLoginDto } from './models';\r\nimport type {\r\n AuthControllerLoginResult,\r\n AuthControllerSocialLoginResult,\r\n} from './api/auth/auth';\r\n\r\nconst { authControllerLogin, authControllerSocialLogin } = getAuth();\r\n\r\n// Export auth functions with simplified names\r\nexport const login = authControllerLogin;\r\nexport const socialLogin = authControllerSocialLogin;\r\n\r\ntype AuthRequestOptions = Parameters<\r\n ReturnType<typeof getAuth>['authControllerLogin']\r\n>[1];\r\n\r\ntype SocialAuthRequestOptions = Parameters<\r\n ReturnType<typeof getAuth>['authControllerSocialLogin']\r\n>[1];\r\n\r\n/**\r\n * Login and automatically set authentication credentials\r\n * This is a convenience function that calls login() and setAuth() automatically\r\n * \r\n * @param credentials - Login credentials\r\n * @returns Login result with user information\r\n * \r\n * @example\r\n * ```typescript\r\n * import { loginAndSetAuth } from 'cilantro-smart-sdk/auth';\r\n * import { sendSOL } from 'cilantro-smart-sdk/wallet';\r\n * \r\n * // Login and set auth in one step\r\n * const result = await loginAndSetAuth({\r\n * usernameOrEmail: 'user@example.com',\r\n * password: 'password123'\r\n * });\r\n * \r\n * // Now you can make authenticated requests\r\n * await sendSOL('wallet-id', { ... });\r\n * ```\r\n */\r\nexport async function loginAndSetAuth(\r\n credentials: CommonLoginDto,\r\n options?: AuthRequestOptions\r\n): Promise<AuthControllerLoginResult> {\r\n const result = await login(credentials, options);\r\n \r\n // Automatically set auth from login response\r\n if (result.data?.jwt) {\r\n setAuth({ jwt: result.data.jwt });\r\n }\r\n if (result.data?.apiKey) {\r\n setAuth({ apiKey: result.data.apiKey });\r\n }\r\n \r\n return result;\r\n}\r\n\r\n/**\r\n * Authenticate with Google or Apple id_token and automatically set authentication credentials.\r\n * Use after the user signs in with Google/Apple OAuth and you receive the id_token.\r\n *\r\n * @param credentials - Social login credentials (provider + id_token)\r\n * @returns Login result with user information\r\n *\r\n * @example\r\n * ```typescript\r\n * import { socialLoginAndSetAuth } from 'cilantro-sdk/auth';\r\n *\r\n * // After user signs in with Google Sign-In\r\n * await socialLoginAndSetAuth({\r\n * provider: 'google',\r\n * id_token: googleUser.credential.id_token,\r\n * });\r\n *\r\n * // After user signs in with Apple\r\n * await socialLoginAndSetAuth({\r\n * provider: 'apple',\r\n * id_token: appleIdToken,\r\n * platformApiKey: 'your-api-key', // optional if sent via X-API-Key header\r\n * });\r\n * ```\r\n */\r\nexport async function socialLoginAndSetAuth(\r\n credentials: SocialLoginDto,\r\n options?: SocialAuthRequestOptions\r\n): Promise<AuthControllerSocialLoginResult> {\r\n const result = await socialLogin(credentials, options);\r\n\r\n if (result.data?.jwt) {\r\n setAuth({ jwt: result.data.jwt });\r\n }\r\n if (result.data?.apiKey) {\r\n setAuth({ apiKey: result.data.apiKey });\r\n }\r\n\r\n return result;\r\n}\r\n\r\n// Export types\r\nexport type {\r\n AuthControllerLoginResult,\r\n AuthControllerSocialLoginResult,\r\n AuthControllerRequestPasswordResetResult,\r\n AuthControllerConfirmPasswordResetResult,\r\n AuthControllerVerifyEmailResult,\r\n AuthControllerResendVerificationResult,\r\n} from './api/auth/auth';\r\n\r\nexport type {\r\n CommonLoginDto,\r\n SocialLoginDto,\r\n AuthControllerLogin200,\r\n AuthControllerLogin200Data,\r\n} from './models';\r\n\r\nexport { SocialLoginDtoProvider } from './models';\r\n\r\n// Input/Output helper types for convenience wrappers\r\nexport type LoginParams = CommonLoginDto;\r\nexport type LoginResult = AuthControllerLoginResult;\r\nexport type LoginOptions = AuthRequestOptions;\r\n\r\nexport type LoginAndSetAuthParams = CommonLoginDto;\r\nexport type LoginAndSetAuthOptions = AuthRequestOptions | undefined;\r\nexport type LoginAndSetAuthResult = AuthControllerLoginResult;\r\n\r\nexport type SocialLoginAndSetAuthParams = SocialLoginDto;\r\nexport type SocialLoginAndSetAuthOptions = SocialAuthRequestOptions | undefined;\r\nexport type SocialLoginAndSetAuthResult = AuthControllerSocialLoginResult;\r\n\r\n", "/**\r\n * Custom API client instance for Cilantro Smart SDK\r\n * Handles authentication (JWT tokens and API keys) automatically\r\n * @internal\r\n */\r\n\r\nimport axios, { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios';\r\nimport { getConfig } from './config';\r\n\r\n// Create axios instance with dynamic baseURL\r\nconst axiosInstance: AxiosInstance = axios.create();\r\n\r\n// Request interceptor to add authentication headers and dynamic baseURL\r\naxiosInstance.interceptors.request.use(\r\n (config) => {\r\n const sdkConfig = getConfig();\r\n \r\n // Set baseURL dynamically from config\r\n config.baseURL = sdkConfig.baseURL || 'https://api.cilantro.gg';\r\n \r\n // Add JWT token if available\r\n if (sdkConfig.jwt) {\r\n config.headers.Authorization = `Bearer ${sdkConfig.jwt}`;\r\n }\r\n \r\n // Add API key if available (for platform/user authentication)\r\n if (sdkConfig.apiKey) {\r\n config.headers['X-API-Key'] = sdkConfig.apiKey;\r\n }\r\n \r\n return config;\r\n },\r\n (error) => {\r\n return Promise.reject(error);\r\n }\r\n);\r\n\r\n/**\r\n * Custom instance wrapper for orval\r\n * @internal\r\n */\r\nexport const customInstance = <T>(\r\n config: AxiosRequestConfig,\r\n options?: AxiosRequestConfig,\r\n): Promise<T> => {\r\n const source = axios.CancelToken.source();\r\n const promise = axiosInstance({\r\n ...config,\r\n ...options,\r\n cancelToken: source.token,\r\n }).then(({ data }: AxiosResponse<T>) => data);\r\n\r\n // @ts-ignore\r\n promise.cancel = () => {\r\n source.cancel('Query was cancelled');\r\n };\r\n\r\n return promise;\r\n};\r\n\r\nexport default customInstance;\r\n", "/**\r\n * SDK Configuration Management\r\n * Centralized configuration for authentication and API settings\r\n */\r\n\r\n/**\r\n * SDK Configuration interface\r\n */\r\nexport interface SDKConfig {\r\n /** JWT token for authentication */\r\n jwt?: string;\r\n /** API key for authentication (alternative to JWT) */\r\n apiKey?: string;\r\n /** Base URL for the API (defaults to https://api.cilantro.gg) */\r\n baseURL?: string;\r\n}\r\n\r\n/**\r\n * Internal configuration state\r\n * Uses global variable to share state across bundled modules\r\n */\r\nconst GLOBAL_CONFIG_KEY = '__CILANTRO_SDK_CONFIG__';\r\n\r\n// Extend global types\r\ndeclare global {\r\n var __CILANTRO_SDK_CONFIG__: SDKConfig | undefined;\r\n}\r\n\r\n// Get or create global config\r\nfunction getGlobalConfig(): SDKConfig {\r\n const defaultConfig: SDKConfig = {\r\n baseURL: process.env.CILANTRO_API_URL || 'https://api.cilantro.gg',\r\n };\r\n \r\n if (typeof global !== 'undefined') {\r\n if (!global.__CILANTRO_SDK_CONFIG__) {\r\n global.__CILANTRO_SDK_CONFIG__ = defaultConfig;\r\n }\r\n return global.__CILANTRO_SDK_CONFIG__;\r\n } else if (typeof (globalThis as any).window !== 'undefined') {\r\n const win = (globalThis as any).window;\r\n if (!win[GLOBAL_CONFIG_KEY]) {\r\n win[GLOBAL_CONFIG_KEY] = defaultConfig;\r\n }\r\n return win[GLOBAL_CONFIG_KEY];\r\n }\r\n \r\n // Fallback for environments without global/window\r\n return defaultConfig;\r\n}\r\n\r\nlet currentConfig: SDKConfig = getGlobalConfig();\r\n\r\n/**\r\n * Configure the SDK with authentication credentials and settings\r\n * \r\n * @param config - Configuration options\r\n * @example\r\n * ```typescript\r\n * import { configure } from 'cilantro-smart-sdk';\r\n * \r\n * // Configure with API key\r\n * configure({ \r\n * apiKey: 'your-api-key',\r\n * baseURL: 'https://api.cilantro.gg' \r\n * });\r\n * \r\n * // Configure with JWT token\r\n * configure({ \r\n * jwt: 'your-jwt-token' \r\n * });\r\n * ```\r\n */\r\nexport function configure(config: SDKConfig): void {\r\n currentConfig = {\r\n ...currentConfig,\r\n ...config,\r\n };\r\n // Also update global config\r\n if (typeof global !== 'undefined') {\r\n global.__CILANTRO_SDK_CONFIG__ = currentConfig;\r\n } else if (typeof (globalThis as any).window !== 'undefined') {\r\n ((globalThis as any).window as any)[GLOBAL_CONFIG_KEY] = currentConfig;\r\n }\r\n}\r\n\r\n/**\r\n * Set or update authentication credentials\r\n * \r\n * @param auth - Authentication credentials (JWT and/or API key)\r\n * @example\r\n * ```typescript\r\n * import { setAuth } from 'cilantro-smart-sdk';\r\n * import { login } from 'cilantro-smart-sdk/auth';\r\n * \r\n * const result = await login({ \r\n * usernameOrEmail: 'user@example.com',\r\n * password: 'password123' \r\n * });\r\n * \r\n * setAuth({ jwt: result.data.jwt });\r\n * ```\r\n */\r\nexport function setAuth(auth: { jwt?: string; apiKey?: string; platformApiKey?: string }): void {\r\n // Refresh from global first\r\n currentConfig = getGlobalConfig();\r\n \r\n if (auth.jwt !== undefined) {\r\n currentConfig.jwt = auth.jwt;\r\n }\r\n currentConfig.apiKey = auth.apiKey ?? auth.platformApiKey;\r\n \r\n // Update global config\r\n if (typeof global !== 'undefined') {\r\n global.__CILANTRO_SDK_CONFIG__ = currentConfig;\r\n } else if (typeof (globalThis as any).window !== 'undefined') {\r\n ((globalThis as any).window as any)[GLOBAL_CONFIG_KEY] = currentConfig;\r\n }\r\n}\r\n\r\n/**\r\n * Clear all authentication credentials\r\n * \r\n * @example\r\n * ```typescript\r\n * import { clearAuth } from 'cilantro-smart-sdk';\r\n * \r\n * clearAuth();\r\n * ```\r\n */\r\nexport function clearAuth(): void {\r\n currentConfig = getGlobalConfig();\r\n currentConfig.jwt = undefined;\r\n currentConfig.apiKey = undefined;\r\n \r\n // Update global config\r\n if (typeof global !== 'undefined') {\r\n global.__CILANTRO_SDK_CONFIG__ = currentConfig;\r\n } else if (typeof (globalThis as any).window !== 'undefined') {\r\n ((globalThis as any).window as any)[GLOBAL_CONFIG_KEY] = currentConfig;\r\n }\r\n}\r\n\r\n/**\r\n * Get current SDK configuration (internal use only)\r\n * @internal\r\n */\r\nexport function getConfig(): Readonly<SDKConfig> {\r\n // Always get fresh from global to ensure we have the latest config\r\n currentConfig = getGlobalConfig();\r\n return currentConfig;\r\n}\r\n", "/**\n * Generated by orval v7.17.0 \uD83C\uDF7A\n * Do not edit manually.\n * Cilantro Smart API\n * API documentation for Cilantro Smart API - A Solana wallet management system\n * OpenAPI spec version: 1.0\n */\nimport type {\n AuthSuccessResponseDto,\n CommonLoginDto,\n LoginResponseDto,\n PasswordResetConfirmDto,\n PasswordResetRequestDto,\n RefreshTokenDto,\n SocialLoginDto,\n TokenResponseDto,\n VerifyEmailDto,\n} from \"../../models\";\n\nimport { customInstance } from \"../../api-client\";\n\ntype SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];\n\nexport const getAuth = () => {\n /**\n * Authenticate as admin, platform, or user. Returns access token (1h expiry) and refresh token (7d expiry).\n * @summary Universal login endpoint\n */\n const authControllerLogin = (\n commonLoginDto: CommonLoginDto,\n options?: SecondParameter<typeof customInstance<LoginResponseDto>>,\n ) => {\n return customInstance<LoginResponseDto>(\n {\n url: `/auth/login`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: commonLoginDto,\n },\n options,\n );\n };\n /**\n * Authenticate with Google or Apple id_token. Send platformApiKey in body or X-API-Key header. Returns same access and refresh tokens as POST /auth/login.\n * @summary Social login (Web3Auth-style)\n */\n const authControllerSocialLogin = (\n socialLoginDto: SocialLoginDto,\n options?: SecondParameter<typeof customInstance<LoginResponseDto>>,\n ) => {\n return customInstance<LoginResponseDto>(\n {\n url: `/auth/social`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: socialLoginDto,\n },\n options,\n );\n };\n /**\n * Use a valid refresh token to obtain a new access token. The old refresh token is revoked and a new one is issued (token rotation).\n * @summary Refresh access token\n */\n const authControllerRefreshToken = (\n refreshTokenDto: RefreshTokenDto,\n options?: SecondParameter<typeof customInstance<TokenResponseDto>>,\n ) => {\n return customInstance<TokenResponseDto>(\n {\n url: `/auth/refresh`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: refreshTokenDto,\n },\n options,\n );\n };\n /**\n * Revoke the provided refresh token to logout the current session.\n * @summary Logout (revoke refresh token)\n */\n const authControllerLogout = (\n refreshTokenDto: RefreshTokenDto,\n options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>,\n ) => {\n return customInstance<AuthSuccessResponseDto>(\n {\n url: `/auth/logout`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: refreshTokenDto,\n },\n options,\n );\n };\n /**\n * Request a password reset link to be sent to the provided email address. Works for both platform and user accounts.\n * @summary Request password reset\n */\n const authControllerRequestPasswordReset = (\n passwordResetRequestDto: PasswordResetRequestDto,\n options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>,\n ) => {\n return customInstance<AuthSuccessResponseDto>(\n {\n url: `/auth/password-reset/request`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: passwordResetRequestDto,\n },\n options,\n );\n };\n /**\n * Reset password using the token received via email.\n * @summary Confirm password reset\n */\n const authControllerConfirmPasswordReset = (\n passwordResetConfirmDto: PasswordResetConfirmDto,\n options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>,\n ) => {\n return customInstance<AuthSuccessResponseDto>(\n {\n url: `/auth/password-reset/confirm`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: passwordResetConfirmDto,\n },\n options,\n );\n };\n /**\n * Verify email address using the token received via email.\n * @summary Verify email address\n */\n const authControllerVerifyEmail = (\n verifyEmailDto: VerifyEmailDto,\n options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>,\n ) => {\n return customInstance<AuthSuccessResponseDto>(\n {\n url: `/auth/verify-email`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: verifyEmailDto,\n },\n options,\n );\n };\n /**\n * Resend email verification link to the provided email address.\n * @summary Resend verification email\n */\n const authControllerResendVerification = (\n passwordResetRequestDto: PasswordResetRequestDto,\n options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>,\n ) => {\n return customInstance<AuthSuccessResponseDto>(\n {\n url: `/auth/resend-verification`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: passwordResetRequestDto,\n },\n options,\n );\n };\n return {\n authControllerLogin,\n authControllerSocialLogin,\n authControllerRefreshToken,\n authControllerLogout,\n authControllerRequestPasswordReset,\n authControllerConfirmPasswordReset,\n authControllerVerifyEmail,\n authControllerResendVerification,\n };\n};\nexport type AuthControllerLoginResult = NonNullable<\n Awaited<ReturnType<ReturnType<typeof getAuth>[\"authControllerLogin\"]>>\n>;\nexport type AuthControllerSocialLoginResult = NonNullable<\n Awaited<ReturnType<ReturnType<typeof getAuth>[\"authControllerSocialLogin\"]>>\n>;\nexport type AuthControllerRefreshTokenResult = NonNullable<\n Awaited<ReturnType<ReturnType<typeof getAuth>[\"authControllerRefreshToken\"]>>\n>;\nexport type AuthControllerLogoutResult = NonNullable<\n Awaited<ReturnType<ReturnType<typeof getAuth>[\"authControllerLogout\"]>>\n>;\nexport type AuthControllerRequestPasswordResetResult = NonNullable<\n Awaited<\n ReturnType<ReturnType<typeof getAuth>[\"authControllerRequestPasswordReset\"]>\n >\n>;\nexport type AuthControllerConfirmPasswordResetResult = NonNullable<\n Awaited<\n ReturnType<ReturnType<typeof getAuth>[\"authControllerConfirmPasswordReset\"]>\n >\n>;\nexport type AuthControllerVerifyEmailResult = NonNullable<\n Awaited<ReturnType<ReturnType<typeof getAuth>[\"authControllerVerifyEmail\"]>>\n>;\nexport type AuthControllerResendVerificationResult = NonNullable<\n Awaited<\n ReturnType<ReturnType<typeof getAuth>[\"authControllerResendVerification\"]>\n >\n>;\n", "/**\n * Generated by orval v7.17.0 \uD83C\uDF7A\n * Do not edit manually.\n * Cilantro Smart API\n * API documentation for Cilantro Smart API - A Solana wallet management system\n * OpenAPI spec version: 1.0\n */\n\n/**\n * OAuth provider used for social login\n */\nexport type SocialLoginDtoProvider =\n (typeof SocialLoginDtoProvider)[keyof typeof SocialLoginDtoProvider];\n\n// eslint-disable-next-line @typescript-eslint/no-redeclare\nexport const SocialLoginDtoProvider = {\n google: \"google\",\n apple: \"apple\",\n} as const;\n"],
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;
|
|
6
|
-
"names": ["
|
|
3
|
+
"sources": ["../src/auth.ts", "../src/config.ts", "../src/api-client.ts", "../src/api/auth/auth.ts", "../src/models/socialLoginDtoProvider.ts"],
|
|
4
|
+
"sourcesContent": ["/**\r\n * Auth module - Simplified exports for authentication-related API functions\r\n */\r\n\r\nimport { getConfig, setAuth } from './config';\r\nimport { getAuth } from './api/auth/auth';\r\nimport type { CommonLoginDto, SocialLoginDto } from './models';\r\nimport type {\r\n AuthControllerLoginResult,\r\n AuthControllerSocialLoginResult,\r\n AuthControllerGetDiscordAuthorizeUrlResult,\r\n AuthControllerDiscordCallbackResult,\r\n} from './api/auth/auth';\r\n\r\nconst auth = getAuth();\r\n\r\n// Export auth functions with simplified names\r\nexport const login = auth.authControllerLogin;\r\nexport const socialLogin = auth.authControllerSocialLogin;\r\n\r\n/** Exchange Discord authorization code for Cilantro tokens (Step 3). Use discordCallbackAndSetAuth() to also set SDK auth. */\r\nexport const discordCallback = auth.authControllerDiscordCallback;\r\n\r\ntype AuthRequestOptions = Parameters<\r\n ReturnType<typeof getAuth>['authControllerLogin']\r\n>[1];\r\n\r\ntype SocialAuthRequestOptions = Parameters<\r\n ReturnType<typeof getAuth>['authControllerSocialLogin']\r\n>[1];\r\n\r\ntype DiscordCallbackOptions = Parameters<\r\n ReturnType<typeof getAuth>['authControllerDiscordCallback']\r\n>[1];\r\n\r\n/**\r\n * Login and automatically set authentication credentials\r\n * This is a convenience function that calls login() and setAuth() automatically\r\n * \r\n * @param credentials - Login credentials\r\n * @returns Login result with user information\r\n * \r\n * @example\r\n * ```typescript\r\n * import { loginAndSetAuth } from 'cilantro-smart-sdk/auth';\r\n * import { sendSOL } from 'cilantro-smart-sdk/wallet';\r\n * \r\n * // Login and set auth in one step\r\n * const result = await loginAndSetAuth({\r\n * usernameOrEmail: 'user@example.com',\r\n * password: 'password123'\r\n * });\r\n * \r\n * // Now you can make authenticated requests\r\n * await sendSOL('wallet-id', { ... });\r\n * ```\r\n */\r\nexport async function loginAndSetAuth(\r\n credentials: CommonLoginDto,\r\n options?: AuthRequestOptions\r\n): Promise<AuthControllerLoginResult> {\r\n const result = await login(credentials, options);\r\n \r\n // Automatically set auth from login response (API uses accessToken, we store as jwt)\r\n if (result.data?.accessToken) {\r\n setAuth({ jwt: result.data.accessToken });\r\n }\r\n if (result.data?.apiKey !== undefined) {\r\n setAuth({ apiKey: result.data.apiKey });\r\n }\r\n\r\n return result;\r\n}\r\n\r\n/**\r\n * Authenticate with Google or Apple id_token and automatically set authentication credentials.\r\n * Use after the user signs in with Google/Apple OAuth and you receive the id_token.\r\n *\r\n * @param credentials - Social login credentials (provider + id_token)\r\n * @returns Login result with user information\r\n *\r\n * @example\r\n * ```typescript\r\n * import { socialLoginAndSetAuth } from 'cilantro-sdk/auth';\r\n *\r\n * // After user signs in with Google Sign-In\r\n * await socialLoginAndSetAuth({\r\n * provider: 'google',\r\n * id_token: googleUser.credential.id_token,\r\n * });\r\n *\r\n * // After user signs in with Apple\r\n * await socialLoginAndSetAuth({\r\n * provider: 'apple',\r\n * id_token: appleIdToken,\r\n * platformApiKey: 'your-api-key', // optional if sent via X-API-Key header\r\n * });\r\n * ```\r\n */\r\nexport async function socialLoginAndSetAuth(\r\n credentials: SocialLoginDto,\r\n options?: SocialAuthRequestOptions\r\n): Promise<AuthControllerSocialLoginResult> {\r\n const result = await socialLogin(credentials, options);\r\n\r\n if (result.data?.accessToken) {\r\n setAuth({ jwt: result.data.accessToken });\r\n }\r\n if (result.data?.apiKey !== undefined) {\r\n setAuth({ apiKey: result.data.apiKey });\r\n }\r\n\r\n return result;\r\n}\r\n\r\n/**\r\n * Discord OAuth2 login \u2013 Step 1: get the authorize URL and redirect the user.\r\n * Uses platform API key from config (setAuth/configure) if platformApiKey is not passed.\r\n *\r\n * @param params.redirectUri - Where Discord will redirect after auth (e.g. https://myapp.com/auth/discord/callback). Must match exactly in Step 3.\r\n * @param params.state - Optional CSRF token; store (e.g. sessionStorage) and verify on callback.\r\n * @param params.platformApiKey - Platform API key (optional if already set via setAuth/configure).\r\n * @returns Promise with { authorizeUrl }. Redirect the user to authorizeUrl.\r\n *\r\n * @example\r\n * ```ts\r\n * const state = crypto.randomUUID();\r\n * sessionStorage.setItem('discord_oauth_state', state);\r\n * const { authorizeUrl } = await getDiscordAuthorizeUrl({\r\n * redirectUri: 'https://myapp.com/auth/discord/callback',\r\n * state,\r\n * });\r\n * window.location.href = authorizeUrl;\r\n * ```\r\n */\r\nexport async function getDiscordAuthorizeUrl(params: {\r\n redirectUri: string;\r\n state?: string;\r\n platformApiKey?: string;\r\n}): Promise<AuthControllerGetDiscordAuthorizeUrlResult> {\r\n const config = getConfig();\r\n const platformApiKey = params.platformApiKey ?? config.apiKey;\r\n if (!platformApiKey) {\r\n throw new Error(\r\n 'Platform API key required for Discord auth. Pass platformApiKey or set it via setAuth({ apiKey }) or configure({ apiKey }).'\r\n );\r\n }\r\n return auth.authControllerGetDiscordAuthorizeUrl(\r\n {\r\n redirect_uri: params.redirectUri,\r\n platformApiKey,\r\n },\r\n params.state !== undefined ? { params: { state: params.state } as Record<string, string> } : undefined\r\n );\r\n}\r\n\r\n/**\r\n * Discord OAuth2 login \u2013 Step 3: exchange code for Cilantro tokens and set auth.\r\n * Call this on your callback page after verifying the `state` and reading `code` from the query.\r\n *\r\n * @param params.code - The `code` query parameter from Discord's redirect.\r\n * @param params.redirectUri - Must match exactly the redirectUri used in Step 1.\r\n * @param params.platformApiKey - Optional if already set via setAuth/configure.\r\n * @returns Login result; also sets JWT and API key in SDK config for subsequent requests.\r\n */\r\nexport async function discordCallbackAndSetAuth(params: {\r\n code: string;\r\n redirectUri: string;\r\n platformApiKey?: string;\r\n options?: DiscordCallbackOptions;\r\n}): Promise<AuthControllerDiscordCallbackResult> {\r\n const result = await auth.authControllerDiscordCallback(\r\n {\r\n code: params.code,\r\n redirect_uri: params.redirectUri,\r\n ...(params.platformApiKey !== undefined && { platformApiKey: params.platformApiKey }),\r\n },\r\n params.options\r\n );\r\n if (result.data?.accessToken) {\r\n setAuth({ jwt: result.data.accessToken });\r\n }\r\n if (result.data?.apiKey !== undefined) {\r\n setAuth({ apiKey: result.data.apiKey });\r\n }\r\n return result;\r\n}\r\n\r\n// Export types\r\nexport type {\r\n AuthControllerLoginResult,\r\n AuthControllerSocialLoginResult,\r\n AuthControllerGetDiscordAuthorizeUrlResult,\r\n AuthControllerDiscordCallbackResult,\r\n AuthControllerRequestPasswordResetResult,\r\n AuthControllerConfirmPasswordResetResult,\r\n AuthControllerVerifyEmailResult,\r\n AuthControllerResendVerificationResult,\r\n} from './api/auth/auth';\r\n\r\nexport type {\r\n CommonLoginDto,\r\n SocialLoginDto,\r\n AuthControllerLogin200,\r\n AuthControllerLogin200Data,\r\n DiscordCallbackDto,\r\n AuthControllerGetDiscordAuthorizeUrlParams,\r\n AuthControllerGetDiscordAuthorizeUrl200,\r\n} from './models';\r\n\r\nexport { SocialLoginDtoProvider } from './models';\r\n\r\nexport type LoginParams = CommonLoginDto;\r\nexport type LoginResult = AuthControllerLoginResult;\r\nexport type LoginOptions = AuthRequestOptions;\r\nexport type LoginAndSetAuthParams = CommonLoginDto;\r\nexport type LoginAndSetAuthOptions = AuthRequestOptions | undefined;\r\nexport type LoginAndSetAuthResult = AuthControllerLoginResult;\r\nexport type SocialLoginAndSetAuthParams = SocialLoginDto;\r\nexport type SocialLoginAndSetAuthOptions = SocialAuthRequestOptions | undefined;\r\nexport type SocialLoginAndSetAuthResult = AuthControllerSocialLoginResult;\r\n/** Response from getDiscordAuthorizeUrl(); redirect the user to authorizeUrl. */\r\nexport type DiscordAuthorizeUrlResponse = { authorizeUrl: string };\r\n\r\nexport type GetDiscordAuthorizeUrlParams = {\r\n redirectUri: string;\r\n state?: string;\r\n platformApiKey?: string;\r\n};\r\nexport type DiscordCallbackAndSetAuthParams = {\r\n code: string;\r\n redirectUri: string;\r\n platformApiKey?: string;\r\n options?: DiscordCallbackOptions;\r\n};\r\n", "/**\r\n * SDK Configuration Management\r\n * Centralized configuration for authentication and API settings\r\n */\r\n\r\n/**\r\n * SDK Configuration interface\r\n */\r\nexport interface SDKConfig {\r\n /** JWT token for authentication */\r\n jwt?: string;\r\n /** API key for authentication (alternative to JWT) */\r\n apiKey?: string;\r\n /** Base URL for the API (defaults to https://api.cilantro.gg) */\r\n baseURL?: string;\r\n}\r\n\r\n/**\r\n * Internal configuration state\r\n * Uses global variable to share state across bundled modules\r\n */\r\nconst GLOBAL_CONFIG_KEY = '__CILANTRO_SDK_CONFIG__';\r\n\r\n// Extend global types\r\ndeclare global {\r\n var __CILANTRO_SDK_CONFIG__: SDKConfig | undefined;\r\n}\r\n\r\n// Get or create global config\r\nfunction getGlobalConfig(): SDKConfig {\r\n const defaultConfig: SDKConfig = {\r\n baseURL: process.env.CILANTRO_API_URL || 'https://api.cilantro.gg',\r\n };\r\n \r\n if (typeof global !== 'undefined') {\r\n if (!global.__CILANTRO_SDK_CONFIG__) {\r\n global.__CILANTRO_SDK_CONFIG__ = defaultConfig;\r\n }\r\n return global.__CILANTRO_SDK_CONFIG__;\r\n } else if (typeof (globalThis as any).window !== 'undefined') {\r\n const win = (globalThis as any).window;\r\n if (!win[GLOBAL_CONFIG_KEY]) {\r\n win[GLOBAL_CONFIG_KEY] = defaultConfig;\r\n }\r\n return win[GLOBAL_CONFIG_KEY];\r\n }\r\n \r\n // Fallback for environments without global/window\r\n return defaultConfig;\r\n}\r\n\r\nlet currentConfig: SDKConfig = getGlobalConfig();\r\n\r\n/**\r\n * Configure the SDK with authentication credentials and settings\r\n * \r\n * @param config - Configuration options\r\n * @example\r\n * ```typescript\r\n * import { configure } from 'cilantro-smart-sdk';\r\n * \r\n * // Configure with API key\r\n * configure({ \r\n * apiKey: 'your-api-key',\r\n * baseURL: 'https://api.cilantro.gg' \r\n * });\r\n * \r\n * // Configure with JWT token\r\n * configure({ \r\n * jwt: 'your-jwt-token' \r\n * });\r\n * ```\r\n */\r\nexport function configure(config: SDKConfig): void {\r\n currentConfig = {\r\n ...currentConfig,\r\n ...config,\r\n };\r\n // Also update global config\r\n if (typeof global !== 'undefined') {\r\n global.__CILANTRO_SDK_CONFIG__ = currentConfig;\r\n } else if (typeof (globalThis as any).window !== 'undefined') {\r\n ((globalThis as any).window as any)[GLOBAL_CONFIG_KEY] = currentConfig;\r\n }\r\n}\r\n\r\n/**\r\n * Set or update authentication credentials\r\n * \r\n * @param auth - Authentication credentials (JWT and/or API key)\r\n * @example\r\n * ```typescript\r\n * import { setAuth } from 'cilantro-smart-sdk';\r\n * import { login } from 'cilantro-smart-sdk/auth';\r\n * \r\n * const result = await login({ \r\n * usernameOrEmail: 'user@example.com',\r\n * password: 'password123' \r\n * });\r\n * \r\n * setAuth({ jwt: result.data.jwt });\r\n * ```\r\n */\r\nexport function setAuth(auth: { jwt?: string; apiKey?: string; platformApiKey?: string }): void {\r\n // Refresh from global first\r\n currentConfig = getGlobalConfig();\r\n \r\n if (auth.jwt !== undefined) {\r\n currentConfig.jwt = auth.jwt;\r\n }\r\n currentConfig.apiKey = auth.apiKey ?? auth.platformApiKey;\r\n \r\n // Update global config\r\n if (typeof global !== 'undefined') {\r\n global.__CILANTRO_SDK_CONFIG__ = currentConfig;\r\n } else if (typeof (globalThis as any).window !== 'undefined') {\r\n ((globalThis as any).window as any)[GLOBAL_CONFIG_KEY] = currentConfig;\r\n }\r\n}\r\n\r\n/**\r\n * Clear all authentication credentials\r\n * \r\n * @example\r\n * ```typescript\r\n * import { clearAuth } from 'cilantro-smart-sdk';\r\n * \r\n * clearAuth();\r\n * ```\r\n */\r\nexport function clearAuth(): void {\r\n currentConfig = getGlobalConfig();\r\n currentConfig.jwt = undefined;\r\n currentConfig.apiKey = undefined;\r\n \r\n // Update global config\r\n if (typeof global !== 'undefined') {\r\n global.__CILANTRO_SDK_CONFIG__ = currentConfig;\r\n } else if (typeof (globalThis as any).window !== 'undefined') {\r\n ((globalThis as any).window as any)[GLOBAL_CONFIG_KEY] = currentConfig;\r\n }\r\n}\r\n\r\n/**\r\n * Get current SDK configuration (internal use only)\r\n * @internal\r\n */\r\nexport function getConfig(): Readonly<SDKConfig> {\r\n // Always get fresh from global to ensure we have the latest config\r\n currentConfig = getGlobalConfig();\r\n return currentConfig;\r\n}\r\n", "/**\r\n * Custom API client instance for Cilantro Smart SDK\r\n * Handles authentication (JWT tokens and API keys) automatically\r\n * @internal\r\n */\r\n\r\nimport axios, { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios';\r\nimport { getConfig } from './config';\r\n\r\n// Create axios instance with dynamic baseURL\r\nconst axiosInstance: AxiosInstance = axios.create();\r\n\r\n// Request interceptor to add authentication headers and dynamic baseURL\r\naxiosInstance.interceptors.request.use(\r\n (config) => {\r\n const sdkConfig = getConfig();\r\n \r\n // Set baseURL dynamically from config\r\n config.baseURL = sdkConfig.baseURL || 'https://api.cilantro.gg';\r\n \r\n // Add JWT token if available\r\n if (sdkConfig.jwt) {\r\n config.headers.Authorization = `Bearer ${sdkConfig.jwt}`;\r\n }\r\n \r\n // Add API key if available (for platform/user authentication)\r\n if (sdkConfig.apiKey) {\r\n config.headers['X-API-Key'] = sdkConfig.apiKey;\r\n }\r\n \r\n return config;\r\n },\r\n (error) => {\r\n return Promise.reject(error);\r\n }\r\n);\r\n\r\n/**\r\n * Custom instance wrapper for orval\r\n * @internal\r\n */\r\nexport const customInstance = <T>(\r\n config: AxiosRequestConfig,\r\n options?: AxiosRequestConfig,\r\n): Promise<T> => {\r\n const source = axios.CancelToken.source();\r\n const promise = axiosInstance({\r\n ...config,\r\n ...options,\r\n cancelToken: source.token,\r\n }).then(({ data }: AxiosResponse<T>) => data);\r\n\r\n // @ts-ignore\r\n promise.cancel = () => {\r\n source.cancel('Query was cancelled');\r\n };\r\n\r\n return promise;\r\n};\r\n\r\nexport default customInstance;\r\n", "/**\n * Generated by orval v7.17.0 \uD83C\uDF7A\n * Do not edit manually.\n * Cilantro Smart API\n * API documentation for Cilantro Smart API - A Solana wallet management system\n * OpenAPI spec version: 1.0\n */\nimport type {\n AuthControllerGetDiscordAuthorizeUrl200,\n AuthControllerGetDiscordAuthorizeUrlParams,\n AuthSuccessResponseDto,\n CommonLoginDto,\n DiscordCallbackDto,\n LoginResponseDto,\n PasswordResetConfirmDto,\n PasswordResetRequestDto,\n RefreshTokenDto,\n SocialLoginDto,\n TokenResponseDto,\n VerifyEmailDto,\n} from \"../../models\";\n\nimport { customInstance } from \"../../api-client\";\n\ntype SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];\n\nexport const getAuth = () => {\n /**\n * Authenticate as admin, platform, or user. Returns access token (1h expiry) and refresh token (7d expiry).\n * @summary Universal login endpoint\n */\n const authControllerLogin = (\n commonLoginDto: CommonLoginDto,\n options?: SecondParameter<typeof customInstance<LoginResponseDto>>,\n ) => {\n return customInstance<LoginResponseDto>(\n {\n url: `/auth/login`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: commonLoginDto,\n },\n options,\n );\n };\n /**\n * Returns the Discord authorization URL. Your app redirects the user there; after Discord redirects back with a code, call POST /auth/social/discord/callback with the code and same redirect_uri. Requires DISCORD_CLIENT_ID and DISCORD_CLIENT_SECRET on the server.\n * @summary Get Discord OAuth2 authorize URL (SDK / backend-handled flow)\n */\n const authControllerGetDiscordAuthorizeUrl = (\n params: AuthControllerGetDiscordAuthorizeUrlParams,\n options?: SecondParameter<\n typeof customInstance<AuthControllerGetDiscordAuthorizeUrl200>\n >,\n ) => {\n return customInstance<AuthControllerGetDiscordAuthorizeUrl200>(\n { url: `/auth/discord/authorize`, method: \"GET\", params },\n options,\n );\n };\n /**\n * Send the authorization code and redirect_uri from your Discord callback page. Backend exchanges the code for a Discord access_token, then finds or creates the user and returns Cilantro access and refresh tokens (same shape as POST /auth/login).\n * @summary Discord OAuth2 callback (SDK / backend-handled flow)\n */\n const authControllerDiscordCallback = (\n discordCallbackDto: DiscordCallbackDto,\n options?: SecondParameter<typeof customInstance<LoginResponseDto>>,\n ) => {\n return customInstance<LoginResponseDto>(\n {\n url: `/auth/social/discord/callback`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: discordCallbackDto,\n },\n options,\n );\n };\n /**\n * Authenticate with Google (id_token), Apple (id_token), or Discord (access_token). Send platformApiKey in body or X-API-Key header. Returns same access and refresh tokens as POST /auth/login. For Discord SDK flow use GET /auth/discord/authorize and POST /auth/social/discord/callback instead.\n * @summary Social login (Web3Auth-style)\n */\n const authControllerSocialLogin = (\n socialLoginDto: SocialLoginDto,\n options?: SecondParameter<typeof customInstance<LoginResponseDto>>,\n ) => {\n return customInstance<LoginResponseDto>(\n {\n url: `/auth/social`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: socialLoginDto,\n },\n options,\n );\n };\n /**\n * Use a valid refresh token to obtain a new access token. The old refresh token is revoked and a new one is issued (token rotation).\n * @summary Refresh access token\n */\n const authControllerRefreshToken = (\n refreshTokenDto: RefreshTokenDto,\n options?: SecondParameter<typeof customInstance<TokenResponseDto>>,\n ) => {\n return customInstance<TokenResponseDto>(\n {\n url: `/auth/refresh`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: refreshTokenDto,\n },\n options,\n );\n };\n /**\n * Revoke the provided refresh token to logout the current session.\n * @summary Logout (revoke refresh token)\n */\n const authControllerLogout = (\n refreshTokenDto: RefreshTokenDto,\n options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>,\n ) => {\n return customInstance<AuthSuccessResponseDto>(\n {\n url: `/auth/logout`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: refreshTokenDto,\n },\n options,\n );\n };\n /**\n * Request a password reset link to be sent to the provided email address. Works for both platform and user accounts.\n * @summary Request password reset\n */\n const authControllerRequestPasswordReset = (\n passwordResetRequestDto: PasswordResetRequestDto,\n options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>,\n ) => {\n return customInstance<AuthSuccessResponseDto>(\n {\n url: `/auth/password-reset/request`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: passwordResetRequestDto,\n },\n options,\n );\n };\n /**\n * Reset password using the token received via email.\n * @summary Confirm password reset\n */\n const authControllerConfirmPasswordReset = (\n passwordResetConfirmDto: PasswordResetConfirmDto,\n options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>,\n ) => {\n return customInstance<AuthSuccessResponseDto>(\n {\n url: `/auth/password-reset/confirm`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: passwordResetConfirmDto,\n },\n options,\n );\n };\n /**\n * Verify email address using the token received via email.\n * @summary Verify email address\n */\n const authControllerVerifyEmail = (\n verifyEmailDto: VerifyEmailDto,\n options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>,\n ) => {\n return customInstance<AuthSuccessResponseDto>(\n {\n url: `/auth/verify-email`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: verifyEmailDto,\n },\n options,\n );\n };\n /**\n * Resend email verification link to the provided email address.\n * @summary Resend verification email\n */\n const authControllerResendVerification = (\n passwordResetRequestDto: PasswordResetRequestDto,\n options?: SecondParameter<typeof customInstance<AuthSuccessResponseDto>>,\n ) => {\n return customInstance<AuthSuccessResponseDto>(\n {\n url: `/auth/resend-verification`,\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n data: passwordResetRequestDto,\n },\n options,\n );\n };\n return {\n authControllerLogin,\n authControllerGetDiscordAuthorizeUrl,\n authControllerDiscordCallback,\n authControllerSocialLogin,\n authControllerRefreshToken,\n authControllerLogout,\n authControllerRequestPasswordReset,\n authControllerConfirmPasswordReset,\n authControllerVerifyEmail,\n authControllerResendVerification,\n };\n};\nexport type AuthControllerLoginResult = NonNullable<\n Awaited<ReturnType<ReturnType<typeof getAuth>[\"authControllerLogin\"]>>\n>;\nexport type AuthControllerGetDiscordAuthorizeUrlResult = NonNullable<\n Awaited<\n ReturnType<\n ReturnType<typeof getAuth>[\"authControllerGetDiscordAuthorizeUrl\"]\n >\n >\n>;\nexport type AuthControllerDiscordCallbackResult = NonNullable<\n Awaited<\n ReturnType<ReturnType<typeof getAuth>[\"authControllerDiscordCallback\"]>\n >\n>;\nexport type AuthControllerSocialLoginResult = NonNullable<\n Awaited<ReturnType<ReturnType<typeof getAuth>[\"authControllerSocialLogin\"]>>\n>;\nexport type AuthControllerRefreshTokenResult = NonNullable<\n Awaited<ReturnType<ReturnType<typeof getAuth>[\"authControllerRefreshToken\"]>>\n>;\nexport type AuthControllerLogoutResult = NonNullable<\n Awaited<ReturnType<ReturnType<typeof getAuth>[\"authControllerLogout\"]>>\n>;\nexport type AuthControllerRequestPasswordResetResult = NonNullable<\n Awaited<\n ReturnType<ReturnType<typeof getAuth>[\"authControllerRequestPasswordReset\"]>\n >\n>;\nexport type AuthControllerConfirmPasswordResetResult = NonNullable<\n Awaited<\n ReturnType<ReturnType<typeof getAuth>[\"authControllerConfirmPasswordReset\"]>\n >\n>;\nexport type AuthControllerVerifyEmailResult = NonNullable<\n Awaited<ReturnType<ReturnType<typeof getAuth>[\"authControllerVerifyEmail\"]>>\n>;\nexport type AuthControllerResendVerificationResult = NonNullable<\n Awaited<\n ReturnType<ReturnType<typeof getAuth>[\"authControllerResendVerification\"]>\n >\n>;\n", "/**\n * Generated by orval v7.17.0 \uD83C\uDF7A\n * Do not edit manually.\n * Cilantro Smart API\n * API documentation for Cilantro Smart API - A Solana wallet management system\n * OpenAPI spec version: 1.0\n */\n\n/**\n * OAuth provider used for social login\n */\nexport type SocialLoginDtoProvider =\n (typeof SocialLoginDtoProvider)[keyof typeof SocialLoginDtoProvider];\n\n// eslint-disable-next-line @typescript-eslint/no-redeclare\nexport const SocialLoginDtoProvider = {\n google: \"google\",\n apple: \"apple\",\n discord: \"discord\",\n} as const;\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": ["auth", "axios"]
|
|
7
7
|
}
|
package/dist/auth.d.ts
CHANGED
|
@@ -3,11 +3,14 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { getAuth } from './api/auth/auth';
|
|
5
5
|
import type { CommonLoginDto, SocialLoginDto } from './models';
|
|
6
|
-
import type { AuthControllerLoginResult, AuthControllerSocialLoginResult } from './api/auth/auth';
|
|
6
|
+
import type { AuthControllerLoginResult, AuthControllerSocialLoginResult, AuthControllerGetDiscordAuthorizeUrlResult, AuthControllerDiscordCallbackResult } from './api/auth/auth';
|
|
7
7
|
export declare const login: (commonLoginDto: CommonLoginDto, options?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("./models").LoginResponseDto>;
|
|
8
8
|
export declare const socialLogin: (socialLoginDto: SocialLoginDto, options?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("./models").LoginResponseDto>;
|
|
9
|
+
/** Exchange Discord authorization code for Cilantro tokens (Step 3). Use discordCallbackAndSetAuth() to also set SDK auth. */
|
|
10
|
+
export declare const discordCallback: (discordCallbackDto: import("./models").DiscordCallbackDto, options?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("./models").LoginResponseDto>;
|
|
9
11
|
type AuthRequestOptions = Parameters<ReturnType<typeof getAuth>['authControllerLogin']>[1];
|
|
10
12
|
type SocialAuthRequestOptions = Parameters<ReturnType<typeof getAuth>['authControllerSocialLogin']>[1];
|
|
13
|
+
type DiscordCallbackOptions = Parameters<ReturnType<typeof getAuth>['authControllerDiscordCallback']>[1];
|
|
11
14
|
/**
|
|
12
15
|
* Login and automatically set authentication credentials
|
|
13
16
|
* This is a convenience function that calls login() and setAuth() automatically
|
|
@@ -57,8 +60,48 @@ export declare function loginAndSetAuth(credentials: CommonLoginDto, options?: A
|
|
|
57
60
|
* ```
|
|
58
61
|
*/
|
|
59
62
|
export declare function socialLoginAndSetAuth(credentials: SocialLoginDto, options?: SocialAuthRequestOptions): Promise<AuthControllerSocialLoginResult>;
|
|
60
|
-
|
|
61
|
-
|
|
63
|
+
/**
|
|
64
|
+
* Discord OAuth2 login – Step 1: get the authorize URL and redirect the user.
|
|
65
|
+
* Uses platform API key from config (setAuth/configure) if platformApiKey is not passed.
|
|
66
|
+
*
|
|
67
|
+
* @param params.redirectUri - Where Discord will redirect after auth (e.g. https://myapp.com/auth/discord/callback). Must match exactly in Step 3.
|
|
68
|
+
* @param params.state - Optional CSRF token; store (e.g. sessionStorage) and verify on callback.
|
|
69
|
+
* @param params.platformApiKey - Platform API key (optional if already set via setAuth/configure).
|
|
70
|
+
* @returns Promise with { authorizeUrl }. Redirect the user to authorizeUrl.
|
|
71
|
+
*
|
|
72
|
+
* @example
|
|
73
|
+
* ```ts
|
|
74
|
+
* const state = crypto.randomUUID();
|
|
75
|
+
* sessionStorage.setItem('discord_oauth_state', state);
|
|
76
|
+
* const { authorizeUrl } = await getDiscordAuthorizeUrl({
|
|
77
|
+
* redirectUri: 'https://myapp.com/auth/discord/callback',
|
|
78
|
+
* state,
|
|
79
|
+
* });
|
|
80
|
+
* window.location.href = authorizeUrl;
|
|
81
|
+
* ```
|
|
82
|
+
*/
|
|
83
|
+
export declare function getDiscordAuthorizeUrl(params: {
|
|
84
|
+
redirectUri: string;
|
|
85
|
+
state?: string;
|
|
86
|
+
platformApiKey?: string;
|
|
87
|
+
}): Promise<AuthControllerGetDiscordAuthorizeUrlResult>;
|
|
88
|
+
/**
|
|
89
|
+
* Discord OAuth2 login – Step 3: exchange code for Cilantro tokens and set auth.
|
|
90
|
+
* Call this on your callback page after verifying the `state` and reading `code` from the query.
|
|
91
|
+
*
|
|
92
|
+
* @param params.code - The `code` query parameter from Discord's redirect.
|
|
93
|
+
* @param params.redirectUri - Must match exactly the redirectUri used in Step 1.
|
|
94
|
+
* @param params.platformApiKey - Optional if already set via setAuth/configure.
|
|
95
|
+
* @returns Login result; also sets JWT and API key in SDK config for subsequent requests.
|
|
96
|
+
*/
|
|
97
|
+
export declare function discordCallbackAndSetAuth(params: {
|
|
98
|
+
code: string;
|
|
99
|
+
redirectUri: string;
|
|
100
|
+
platformApiKey?: string;
|
|
101
|
+
options?: DiscordCallbackOptions;
|
|
102
|
+
}): Promise<AuthControllerDiscordCallbackResult>;
|
|
103
|
+
export type { AuthControllerLoginResult, AuthControllerSocialLoginResult, AuthControllerGetDiscordAuthorizeUrlResult, AuthControllerDiscordCallbackResult, AuthControllerRequestPasswordResetResult, AuthControllerConfirmPasswordResetResult, AuthControllerVerifyEmailResult, AuthControllerResendVerificationResult, } from './api/auth/auth';
|
|
104
|
+
export type { CommonLoginDto, SocialLoginDto, AuthControllerLogin200, AuthControllerLogin200Data, DiscordCallbackDto, AuthControllerGetDiscordAuthorizeUrlParams, AuthControllerGetDiscordAuthorizeUrl200, } from './models';
|
|
62
105
|
export { SocialLoginDtoProvider } from './models';
|
|
63
106
|
export type LoginParams = CommonLoginDto;
|
|
64
107
|
export type LoginResult = AuthControllerLoginResult;
|
|
@@ -69,4 +112,19 @@ export type LoginAndSetAuthResult = AuthControllerLoginResult;
|
|
|
69
112
|
export type SocialLoginAndSetAuthParams = SocialLoginDto;
|
|
70
113
|
export type SocialLoginAndSetAuthOptions = SocialAuthRequestOptions | undefined;
|
|
71
114
|
export type SocialLoginAndSetAuthResult = AuthControllerSocialLoginResult;
|
|
115
|
+
/** Response from getDiscordAuthorizeUrl(); redirect the user to authorizeUrl. */
|
|
116
|
+
export type DiscordAuthorizeUrlResponse = {
|
|
117
|
+
authorizeUrl: string;
|
|
118
|
+
};
|
|
119
|
+
export type GetDiscordAuthorizeUrlParams = {
|
|
120
|
+
redirectUri: string;
|
|
121
|
+
state?: string;
|
|
122
|
+
platformApiKey?: string;
|
|
123
|
+
};
|
|
124
|
+
export type DiscordCallbackAndSetAuthParams = {
|
|
125
|
+
code: string;
|
|
126
|
+
redirectUri: string;
|
|
127
|
+
platformApiKey?: string;
|
|
128
|
+
options?: DiscordCallbackOptions;
|
|
129
|
+
};
|
|
72
130
|
//# sourceMappingURL=auth.d.ts.map
|
package/dist/auth.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../src/auth.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../src/auth.ts"],"names":[],"mappings":"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"}
|