@seekora-ai/admin-api 1.2.2 → 1.2.4
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 +8 -5
- package/api.ts +269 -92
- package/dist/api.d.ts +144 -41
- package/dist/api.js +225 -88
- package/dist/esm/api.d.ts +144 -41
- package/dist/esm/api.js +225 -88
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.2.4.tgz +0 -0
- package/seekora-ai-admin-api-1.2.2.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -40506,6 +40506,37 @@ export interface SubscriptionRouteCancelProcessRequest {
|
|
|
40506
40506
|
*/
|
|
40507
40507
|
'subscription_id'?: string;
|
|
40508
40508
|
}
|
|
40509
|
+
/**
|
|
40510
|
+
*
|
|
40511
|
+
* @export
|
|
40512
|
+
* @interface SubscriptionRoutePlanChangePreviewHTTPRequest
|
|
40513
|
+
*/
|
|
40514
|
+
export interface SubscriptionRoutePlanChangePreviewHTTPRequest {
|
|
40515
|
+
/**
|
|
40516
|
+
*
|
|
40517
|
+
* @type {string}
|
|
40518
|
+
* @memberof SubscriptionRoutePlanChangePreviewHTTPRequest
|
|
40519
|
+
*/
|
|
40520
|
+
'billing_cycle'?: string;
|
|
40521
|
+
/**
|
|
40522
|
+
*
|
|
40523
|
+
* @type {string}
|
|
40524
|
+
* @memberof SubscriptionRoutePlanChangePreviewHTTPRequest
|
|
40525
|
+
*/
|
|
40526
|
+
'currency'?: string;
|
|
40527
|
+
/**
|
|
40528
|
+
*
|
|
40529
|
+
* @type {number}
|
|
40530
|
+
* @memberof SubscriptionRoutePlanChangePreviewHTTPRequest
|
|
40531
|
+
*/
|
|
40532
|
+
'new_plan_id'?: number;
|
|
40533
|
+
/**
|
|
40534
|
+
*
|
|
40535
|
+
* @type {string}
|
|
40536
|
+
* @memberof SubscriptionRoutePlanChangePreviewHTTPRequest
|
|
40537
|
+
*/
|
|
40538
|
+
'new_plan_identifier'?: string;
|
|
40539
|
+
}
|
|
40509
40540
|
/**
|
|
40510
40541
|
*
|
|
40511
40542
|
* @export
|
|
@@ -50235,7 +50266,7 @@ export declare const BillingUserPaymentsApiAxiosParamCreator: (configuration?: C
|
|
|
50235
50266
|
* @param {*} [options] Override http request option.
|
|
50236
50267
|
* @throws {RequiredError}
|
|
50237
50268
|
*/
|
|
50238
|
-
|
|
50269
|
+
adminBillingPaymentsRetryPost: (billingServiceRetryPaymentRequest: BillingServiceRetryPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50239
50270
|
/**
|
|
50240
50271
|
* Gets the current payment status, dunning state, and retry options for a subscription
|
|
50241
50272
|
* @summary Get payment status for a subscription
|
|
@@ -50243,7 +50274,7 @@ export declare const BillingUserPaymentsApiAxiosParamCreator: (configuration?: C
|
|
|
50243
50274
|
* @param {*} [options] Override http request option.
|
|
50244
50275
|
* @throws {RequiredError}
|
|
50245
50276
|
*/
|
|
50246
|
-
|
|
50277
|
+
adminBillingSubscriptionsIdPaymentStatusGet: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50247
50278
|
};
|
|
50248
50279
|
/**
|
|
50249
50280
|
* BillingUserPaymentsApi - functional programming interface
|
|
@@ -50257,7 +50288,7 @@ export declare const BillingUserPaymentsApiFp: (configuration?: Configuration) =
|
|
|
50257
50288
|
* @param {*} [options] Override http request option.
|
|
50258
50289
|
* @throws {RequiredError}
|
|
50259
50290
|
*/
|
|
50260
|
-
|
|
50291
|
+
adminBillingPaymentsRetryPost(billingServiceRetryPaymentRequest: BillingServiceRetryPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BillingServiceRetryPaymentResponse>>;
|
|
50261
50292
|
/**
|
|
50262
50293
|
* Gets the current payment status, dunning state, and retry options for a subscription
|
|
50263
50294
|
* @summary Get payment status for a subscription
|
|
@@ -50265,7 +50296,7 @@ export declare const BillingUserPaymentsApiFp: (configuration?: Configuration) =
|
|
|
50265
50296
|
* @param {*} [options] Override http request option.
|
|
50266
50297
|
* @throws {RequiredError}
|
|
50267
50298
|
*/
|
|
50268
|
-
|
|
50299
|
+
adminBillingSubscriptionsIdPaymentStatusGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BillingServicePaymentStatusResponse>>;
|
|
50269
50300
|
};
|
|
50270
50301
|
/**
|
|
50271
50302
|
* BillingUserPaymentsApi - factory interface
|
|
@@ -50279,7 +50310,7 @@ export declare const BillingUserPaymentsApiFactory: (configuration?: Configurati
|
|
|
50279
50310
|
* @param {*} [options] Override http request option.
|
|
50280
50311
|
* @throws {RequiredError}
|
|
50281
50312
|
*/
|
|
50282
|
-
|
|
50313
|
+
adminBillingPaymentsRetryPost(billingServiceRetryPaymentRequest: BillingServiceRetryPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<BillingServiceRetryPaymentResponse>;
|
|
50283
50314
|
/**
|
|
50284
50315
|
* Gets the current payment status, dunning state, and retry options for a subscription
|
|
50285
50316
|
* @summary Get payment status for a subscription
|
|
@@ -50287,7 +50318,7 @@ export declare const BillingUserPaymentsApiFactory: (configuration?: Configurati
|
|
|
50287
50318
|
* @param {*} [options] Override http request option.
|
|
50288
50319
|
* @throws {RequiredError}
|
|
50289
50320
|
*/
|
|
50290
|
-
|
|
50321
|
+
adminBillingSubscriptionsIdPaymentStatusGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<BillingServicePaymentStatusResponse>;
|
|
50291
50322
|
};
|
|
50292
50323
|
/**
|
|
50293
50324
|
* BillingUserPaymentsApi - object-oriented interface
|
|
@@ -50304,7 +50335,7 @@ export declare class BillingUserPaymentsApi extends BaseAPI {
|
|
|
50304
50335
|
* @throws {RequiredError}
|
|
50305
50336
|
* @memberof BillingUserPaymentsApi
|
|
50306
50337
|
*/
|
|
50307
|
-
|
|
50338
|
+
adminBillingPaymentsRetryPost(billingServiceRetryPaymentRequest: BillingServiceRetryPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BillingServiceRetryPaymentResponse, any, {}>>;
|
|
50308
50339
|
/**
|
|
50309
50340
|
* Gets the current payment status, dunning state, and retry options for a subscription
|
|
50310
50341
|
* @summary Get payment status for a subscription
|
|
@@ -50313,7 +50344,7 @@ export declare class BillingUserPaymentsApi extends BaseAPI {
|
|
|
50313
50344
|
* @throws {RequiredError}
|
|
50314
50345
|
* @memberof BillingUserPaymentsApi
|
|
50315
50346
|
*/
|
|
50316
|
-
|
|
50347
|
+
adminBillingSubscriptionsIdPaymentStatusGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BillingServicePaymentStatusResponse, any, {}>>;
|
|
50317
50348
|
}
|
|
50318
50349
|
/**
|
|
50319
50350
|
* CommonApi - axios parameter creator
|
|
@@ -59461,6 +59492,14 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
59461
59492
|
* @throws {RequiredError}
|
|
59462
59493
|
*/
|
|
59463
59494
|
adminPaymentGatewayOrdersIdGet: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59495
|
+
/**
|
|
59496
|
+
* Returns the existing gateway order details needed to open the payment gateway UI for retry, without creating a new order.
|
|
59497
|
+
* @summary Get order retry payment info
|
|
59498
|
+
* @param {string} id Order UUID
|
|
59499
|
+
* @param {*} [options] Override http request option.
|
|
59500
|
+
* @throws {RequiredError}
|
|
59501
|
+
*/
|
|
59502
|
+
adminPaymentGatewayOrdersIdRetryInfoGet: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59464
59503
|
/**
|
|
59465
59504
|
* Returns payment status in a frontend-friendly format (\"success\", \"pending\", or \"error\") for polling. This endpoint is designed to be polled by the frontend to check payment status. It returns retry intervals and fulfillment information.
|
|
59466
59505
|
* @summary Get payment status for polling (frontend)
|
|
@@ -59582,6 +59621,16 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
59582
59621
|
* @throws {RequiredError}
|
|
59583
59622
|
*/
|
|
59584
59623
|
adminPaymentGatewayOrdersIdGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOrderDetailsResponse>>;
|
|
59624
|
+
/**
|
|
59625
|
+
* Returns the existing gateway order details needed to open the payment gateway UI for retry, without creating a new order.
|
|
59626
|
+
* @summary Get order retry payment info
|
|
59627
|
+
* @param {string} id Order UUID
|
|
59628
|
+
* @param {*} [options] Override http request option.
|
|
59629
|
+
* @throws {RequiredError}
|
|
59630
|
+
*/
|
|
59631
|
+
adminPaymentGatewayOrdersIdRetryInfoGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
59632
|
+
[key: string]: any;
|
|
59633
|
+
}>>;
|
|
59585
59634
|
/**
|
|
59586
59635
|
* Returns payment status in a frontend-friendly format (\"success\", \"pending\", or \"error\") for polling. This endpoint is designed to be polled by the frontend to check payment status. It returns retry intervals and fulfillment information.
|
|
59587
59636
|
* @summary Get payment status for polling (frontend)
|
|
@@ -59707,6 +59756,16 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
59707
59756
|
* @throws {RequiredError}
|
|
59708
59757
|
*/
|
|
59709
59758
|
adminPaymentGatewayOrdersIdGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOrderDetailsResponse>;
|
|
59759
|
+
/**
|
|
59760
|
+
* Returns the existing gateway order details needed to open the payment gateway UI for retry, without creating a new order.
|
|
59761
|
+
* @summary Get order retry payment info
|
|
59762
|
+
* @param {string} id Order UUID
|
|
59763
|
+
* @param {*} [options] Override http request option.
|
|
59764
|
+
* @throws {RequiredError}
|
|
59765
|
+
*/
|
|
59766
|
+
adminPaymentGatewayOrdersIdRetryInfoGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
59767
|
+
[key: string]: any;
|
|
59768
|
+
}>;
|
|
59710
59769
|
/**
|
|
59711
59770
|
* Returns payment status in a frontend-friendly format (\"success\", \"pending\", or \"error\") for polling. This endpoint is designed to be polled by the frontend to check payment status. It returns retry intervals and fulfillment information.
|
|
59712
59771
|
* @summary Get payment status for polling (frontend)
|
|
@@ -59839,6 +59898,17 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
59839
59898
|
* @memberof PaymentGatewayApi
|
|
59840
59899
|
*/
|
|
59841
59900
|
adminPaymentGatewayOrdersIdGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrderDetailsResponse, any, {}>>;
|
|
59901
|
+
/**
|
|
59902
|
+
* Returns the existing gateway order details needed to open the payment gateway UI for retry, without creating a new order.
|
|
59903
|
+
* @summary Get order retry payment info
|
|
59904
|
+
* @param {string} id Order UUID
|
|
59905
|
+
* @param {*} [options] Override http request option.
|
|
59906
|
+
* @throws {RequiredError}
|
|
59907
|
+
* @memberof PaymentGatewayApi
|
|
59908
|
+
*/
|
|
59909
|
+
adminPaymentGatewayOrdersIdRetryInfoGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
59910
|
+
[key: string]: any;
|
|
59911
|
+
}, any, {}>>;
|
|
59842
59912
|
/**
|
|
59843
59913
|
* Returns payment status in a frontend-friendly format (\"success\", \"pending\", or \"error\") for polling. This endpoint is designed to be polled by the frontend to check payment status. It returns retry intervals and fulfillment information.
|
|
59844
59914
|
* @summary Get payment status for polling (frontend)
|
|
@@ -66844,6 +66914,14 @@ export declare const SubscriptionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
66844
66914
|
* @throws {RequiredError}
|
|
66845
66915
|
*/
|
|
66846
66916
|
adminSubscriptionsCancelProcessPost: (subscriptionRouteCancelProcessRequest: SubscriptionRouteCancelProcessRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66917
|
+
/**
|
|
66918
|
+
* Shows a read-only preview of what happens when changing plans: refund for current plan, credits removed/added, new plan cost. Org ID is automatically extracted from JWT session.
|
|
66919
|
+
* @summary Preview plan change details
|
|
66920
|
+
* @param {SubscriptionRoutePlanChangePreviewHTTPRequest} subscriptionRoutePlanChangePreviewHTTPRequest Plan change preview request
|
|
66921
|
+
* @param {*} [options] Override http request option.
|
|
66922
|
+
* @throws {RequiredError}
|
|
66923
|
+
*/
|
|
66924
|
+
adminSubscriptionsPlanChangePreviewPost: (subscriptionRoutePlanChangePreviewHTTPRequest: SubscriptionRoutePlanChangePreviewHTTPRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66847
66925
|
/**
|
|
66848
66926
|
* Updates Subscription information by ID.
|
|
66849
66927
|
* @summary Update an existing Subscription
|
|
@@ -66907,6 +66985,14 @@ export declare const SubscriptionsApiFp: (configuration?: Configuration) => {
|
|
|
66907
66985
|
* @throws {RequiredError}
|
|
66908
66986
|
*/
|
|
66909
66987
|
adminSubscriptionsCancelProcessPost(subscriptionRouteCancelProcessRequest: SubscriptionRouteCancelProcessRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
66988
|
+
/**
|
|
66989
|
+
* Shows a read-only preview of what happens when changing plans: refund for current plan, credits removed/added, new plan cost. Org ID is automatically extracted from JWT session.
|
|
66990
|
+
* @summary Preview plan change details
|
|
66991
|
+
* @param {SubscriptionRoutePlanChangePreviewHTTPRequest} subscriptionRoutePlanChangePreviewHTTPRequest Plan change preview request
|
|
66992
|
+
* @param {*} [options] Override http request option.
|
|
66993
|
+
* @throws {RequiredError}
|
|
66994
|
+
*/
|
|
66995
|
+
adminSubscriptionsPlanChangePreviewPost(subscriptionRoutePlanChangePreviewHTTPRequest: SubscriptionRoutePlanChangePreviewHTTPRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
66910
66996
|
/**
|
|
66911
66997
|
* Updates Subscription information by ID.
|
|
66912
66998
|
* @summary Update an existing Subscription
|
|
@@ -66970,6 +67056,14 @@ export declare const SubscriptionsApiFactory: (configuration?: Configuration, ba
|
|
|
66970
67056
|
* @throws {RequiredError}
|
|
66971
67057
|
*/
|
|
66972
67058
|
adminSubscriptionsCancelProcessPost(subscriptionRouteCancelProcessRequest: SubscriptionRouteCancelProcessRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
67059
|
+
/**
|
|
67060
|
+
* Shows a read-only preview of what happens when changing plans: refund for current plan, credits removed/added, new plan cost. Org ID is automatically extracted from JWT session.
|
|
67061
|
+
* @summary Preview plan change details
|
|
67062
|
+
* @param {SubscriptionRoutePlanChangePreviewHTTPRequest} subscriptionRoutePlanChangePreviewHTTPRequest Plan change preview request
|
|
67063
|
+
* @param {*} [options] Override http request option.
|
|
67064
|
+
* @throws {RequiredError}
|
|
67065
|
+
*/
|
|
67066
|
+
adminSubscriptionsPlanChangePreviewPost(subscriptionRoutePlanChangePreviewHTTPRequest: SubscriptionRoutePlanChangePreviewHTTPRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
66973
67067
|
/**
|
|
66974
67068
|
* Updates Subscription information by ID.
|
|
66975
67069
|
* @summary Update an existing Subscription
|
|
@@ -67037,6 +67131,15 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
67037
67131
|
* @memberof SubscriptionsApi
|
|
67038
67132
|
*/
|
|
67039
67133
|
adminSubscriptionsCancelProcessPost(subscriptionRouteCancelProcessRequest: SubscriptionRouteCancelProcessRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
67134
|
+
/**
|
|
67135
|
+
* Shows a read-only preview of what happens when changing plans: refund for current plan, credits removed/added, new plan cost. Org ID is automatically extracted from JWT session.
|
|
67136
|
+
* @summary Preview plan change details
|
|
67137
|
+
* @param {SubscriptionRoutePlanChangePreviewHTTPRequest} subscriptionRoutePlanChangePreviewHTTPRequest Plan change preview request
|
|
67138
|
+
* @param {*} [options] Override http request option.
|
|
67139
|
+
* @throws {RequiredError}
|
|
67140
|
+
* @memberof SubscriptionsApi
|
|
67141
|
+
*/
|
|
67142
|
+
adminSubscriptionsPlanChangePreviewPost(subscriptionRoutePlanChangePreviewHTTPRequest: SubscriptionRoutePlanChangePreviewHTTPRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
67040
67143
|
/**
|
|
67041
67144
|
* Updates Subscription information by ID.
|
|
67042
67145
|
* @summary Update an existing Subscription
|
|
@@ -67277,14 +67380,6 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
67277
67380
|
* @throws {RequiredError}
|
|
67278
67381
|
*/
|
|
67279
67382
|
v1InvitationsInvitationIdPermissionsRolePut: (invitationId: string, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67280
|
-
/**
|
|
67281
|
-
* Resends the invitation email for an existing pending invitation
|
|
67282
|
-
* @summary Resend invitation email
|
|
67283
|
-
* @param {string} invitationId Invitation UUID
|
|
67284
|
-
* @param {*} [options] Override http request option.
|
|
67285
|
-
* @throws {RequiredError}
|
|
67286
|
-
*/
|
|
67287
|
-
v1InvitationsInvitationIdResendPost: (invitationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67288
67383
|
/**
|
|
67289
67384
|
* Accepts a team invitation using token
|
|
67290
67385
|
* @summary Accept invitation
|
|
@@ -67370,6 +67465,14 @@ export declare const TeamApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
67370
67465
|
* @throws {RequiredError}
|
|
67371
67466
|
*/
|
|
67372
67467
|
v1TeamInvitationsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67468
|
+
/**
|
|
67469
|
+
* Resends the invitation email for an existing pending invitation
|
|
67470
|
+
* @summary Resend invitation email
|
|
67471
|
+
* @param {string} invitationId Invitation UUID
|
|
67472
|
+
* @param {*} [options] Override http request option.
|
|
67473
|
+
* @throws {RequiredError}
|
|
67474
|
+
*/
|
|
67475
|
+
v1TeamInvitationsInvitationIdResendPost: (invitationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67373
67476
|
/**
|
|
67374
67477
|
* Retrieves all members of the user\'s organization with their details
|
|
67375
67478
|
* @summary Get all members of an organization
|
|
@@ -67450,14 +67553,6 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
67450
67553
|
* @throws {RequiredError}
|
|
67451
67554
|
*/
|
|
67452
67555
|
v1InvitationsInvitationIdPermissionsRolePut(invitationId: string, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
67453
|
-
/**
|
|
67454
|
-
* Resends the invitation email for an existing pending invitation
|
|
67455
|
-
* @summary Resend invitation email
|
|
67456
|
-
* @param {string} invitationId Invitation UUID
|
|
67457
|
-
* @param {*} [options] Override http request option.
|
|
67458
|
-
* @throws {RequiredError}
|
|
67459
|
-
*/
|
|
67460
|
-
v1InvitationsInvitationIdResendPost(invitationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
67461
67556
|
/**
|
|
67462
67557
|
* Accepts a team invitation using token
|
|
67463
67558
|
* @summary Accept invitation
|
|
@@ -67543,6 +67638,14 @@ export declare const TeamApiFp: (configuration?: Configuration) => {
|
|
|
67543
67638
|
* @throws {RequiredError}
|
|
67544
67639
|
*/
|
|
67545
67640
|
v1TeamInvitationsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesTeamInvitationsResponse>>;
|
|
67641
|
+
/**
|
|
67642
|
+
* Resends the invitation email for an existing pending invitation
|
|
67643
|
+
* @summary Resend invitation email
|
|
67644
|
+
* @param {string} invitationId Invitation UUID
|
|
67645
|
+
* @param {*} [options] Override http request option.
|
|
67646
|
+
* @throws {RequiredError}
|
|
67647
|
+
*/
|
|
67648
|
+
v1TeamInvitationsInvitationIdResendPost(invitationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
67546
67649
|
/**
|
|
67547
67650
|
* Retrieves all members of the user\'s organization with their details
|
|
67548
67651
|
* @summary Get all members of an organization
|
|
@@ -67623,14 +67726,6 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
67623
67726
|
* @throws {RequiredError}
|
|
67624
67727
|
*/
|
|
67625
67728
|
v1InvitationsInvitationIdPermissionsRolePut(invitationId: string, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
67626
|
-
/**
|
|
67627
|
-
* Resends the invitation email for an existing pending invitation
|
|
67628
|
-
* @summary Resend invitation email
|
|
67629
|
-
* @param {string} invitationId Invitation UUID
|
|
67630
|
-
* @param {*} [options] Override http request option.
|
|
67631
|
-
* @throws {RequiredError}
|
|
67632
|
-
*/
|
|
67633
|
-
v1InvitationsInvitationIdResendPost(invitationId: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
67634
67729
|
/**
|
|
67635
67730
|
* Accepts a team invitation using token
|
|
67636
67731
|
* @summary Accept invitation
|
|
@@ -67716,6 +67811,14 @@ export declare const TeamApiFactory: (configuration?: Configuration, basePath?:
|
|
|
67716
67811
|
* @throws {RequiredError}
|
|
67717
67812
|
*/
|
|
67718
67813
|
v1TeamInvitationsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesTeamInvitationsResponse>;
|
|
67814
|
+
/**
|
|
67815
|
+
* Resends the invitation email for an existing pending invitation
|
|
67816
|
+
* @summary Resend invitation email
|
|
67817
|
+
* @param {string} invitationId Invitation UUID
|
|
67818
|
+
* @param {*} [options] Override http request option.
|
|
67819
|
+
* @throws {RequiredError}
|
|
67820
|
+
*/
|
|
67821
|
+
v1TeamInvitationsInvitationIdResendPost(invitationId: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
67719
67822
|
/**
|
|
67720
67823
|
* Retrieves all members of the user\'s organization with their details
|
|
67721
67824
|
* @summary Get all members of an organization
|
|
@@ -67802,15 +67905,6 @@ export declare class TeamApi extends BaseAPI {
|
|
|
67802
67905
|
* @memberof TeamApi
|
|
67803
67906
|
*/
|
|
67804
67907
|
v1InvitationsInvitationIdPermissionsRolePut(invitationId: string, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
67805
|
-
/**
|
|
67806
|
-
* Resends the invitation email for an existing pending invitation
|
|
67807
|
-
* @summary Resend invitation email
|
|
67808
|
-
* @param {string} invitationId Invitation UUID
|
|
67809
|
-
* @param {*} [options] Override http request option.
|
|
67810
|
-
* @throws {RequiredError}
|
|
67811
|
-
* @memberof TeamApi
|
|
67812
|
-
*/
|
|
67813
|
-
v1InvitationsInvitationIdResendPost(invitationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
67814
67908
|
/**
|
|
67815
67909
|
* Accepts a team invitation using token
|
|
67816
67910
|
* @summary Accept invitation
|
|
@@ -67906,6 +68000,15 @@ export declare class TeamApi extends BaseAPI {
|
|
|
67906
68000
|
* @memberof TeamApi
|
|
67907
68001
|
*/
|
|
67908
68002
|
v1TeamInvitationsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesTeamInvitationsResponse, any, {}>>;
|
|
68003
|
+
/**
|
|
68004
|
+
* Resends the invitation email for an existing pending invitation
|
|
68005
|
+
* @summary Resend invitation email
|
|
68006
|
+
* @param {string} invitationId Invitation UUID
|
|
68007
|
+
* @param {*} [options] Override http request option.
|
|
68008
|
+
* @throws {RequiredError}
|
|
68009
|
+
* @memberof TeamApi
|
|
68010
|
+
*/
|
|
68011
|
+
v1TeamInvitationsInvitationIdResendPost(invitationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
67909
68012
|
/**
|
|
67910
68013
|
* Retrieves all members of the user\'s organization with their details
|
|
67911
68014
|
* @summary Get all members of an organization
|