@seekora-ai/admin-api 1.1.92 → 1.1.94
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 +25 -4
- package/api.ts +1676 -18
- package/dist/api.d.ts +1157 -19
- package/dist/api.js +958 -26
- package/dist/esm/api.d.ts +1157 -19
- package/dist/esm/api.js +940 -16
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.94.tgz +0 -0
- package/seekora-ai-admin-api-1.1.92.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -14125,6 +14125,96 @@ export interface DataTypesCreateAnalyticsRuleRequest {
|
|
|
14125
14125
|
*/
|
|
14126
14126
|
'store_id'?: number;
|
|
14127
14127
|
}
|
|
14128
|
+
/**
|
|
14129
|
+
*
|
|
14130
|
+
* @export
|
|
14131
|
+
* @interface DataTypesCreateCustomPlanRequest
|
|
14132
|
+
*/
|
|
14133
|
+
export interface DataTypesCreateCustomPlanRequest {
|
|
14134
|
+
/**
|
|
14135
|
+
*
|
|
14136
|
+
* @type {string}
|
|
14137
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14138
|
+
*/
|
|
14139
|
+
'billing_type': DataTypesCreateCustomPlanRequestBillingTypeEnum;
|
|
14140
|
+
/**
|
|
14141
|
+
*
|
|
14142
|
+
* @type {number}
|
|
14143
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14144
|
+
*/
|
|
14145
|
+
'bonus_credits'?: number;
|
|
14146
|
+
/**
|
|
14147
|
+
*
|
|
14148
|
+
* @type {string}
|
|
14149
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14150
|
+
*/
|
|
14151
|
+
'currency': DataTypesCreateCustomPlanRequestCurrencyEnum;
|
|
14152
|
+
/**
|
|
14153
|
+
*
|
|
14154
|
+
* @type {string}
|
|
14155
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14156
|
+
*/
|
|
14157
|
+
'description'?: string;
|
|
14158
|
+
/**
|
|
14159
|
+
*
|
|
14160
|
+
* @type {string}
|
|
14161
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14162
|
+
*/
|
|
14163
|
+
'highlights'?: string;
|
|
14164
|
+
/**
|
|
14165
|
+
*
|
|
14166
|
+
* @type {string}
|
|
14167
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14168
|
+
*/
|
|
14169
|
+
'notes'?: string;
|
|
14170
|
+
/**
|
|
14171
|
+
*
|
|
14172
|
+
* @type {number}
|
|
14173
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14174
|
+
*/
|
|
14175
|
+
'org_id': number;
|
|
14176
|
+
/**
|
|
14177
|
+
*
|
|
14178
|
+
* @type {string}
|
|
14179
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14180
|
+
*/
|
|
14181
|
+
'plan_features': string;
|
|
14182
|
+
/**
|
|
14183
|
+
*
|
|
14184
|
+
* @type {string}
|
|
14185
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14186
|
+
*/
|
|
14187
|
+
'plan_name': string;
|
|
14188
|
+
/**
|
|
14189
|
+
*
|
|
14190
|
+
* @type {number}
|
|
14191
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14192
|
+
*/
|
|
14193
|
+
'price': number;
|
|
14194
|
+
/**
|
|
14195
|
+
*
|
|
14196
|
+
* @type {number}
|
|
14197
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14198
|
+
*/
|
|
14199
|
+
'total_credits': number;
|
|
14200
|
+
/**
|
|
14201
|
+
*
|
|
14202
|
+
* @type {number}
|
|
14203
|
+
* @memberof DataTypesCreateCustomPlanRequest
|
|
14204
|
+
*/
|
|
14205
|
+
'trial_days'?: number;
|
|
14206
|
+
}
|
|
14207
|
+
export declare const DataTypesCreateCustomPlanRequestBillingTypeEnum: {
|
|
14208
|
+
readonly Monthly: "monthly";
|
|
14209
|
+
readonly Annual: "annual";
|
|
14210
|
+
readonly OneTime: "one-time";
|
|
14211
|
+
};
|
|
14212
|
+
export type DataTypesCreateCustomPlanRequestBillingTypeEnum = typeof DataTypesCreateCustomPlanRequestBillingTypeEnum[keyof typeof DataTypesCreateCustomPlanRequestBillingTypeEnum];
|
|
14213
|
+
export declare const DataTypesCreateCustomPlanRequestCurrencyEnum: {
|
|
14214
|
+
readonly Usd: "USD";
|
|
14215
|
+
readonly Inr: "INR";
|
|
14216
|
+
};
|
|
14217
|
+
export type DataTypesCreateCustomPlanRequestCurrencyEnum = typeof DataTypesCreateCustomPlanRequestCurrencyEnum[keyof typeof DataTypesCreateCustomPlanRequestCurrencyEnum];
|
|
14128
14218
|
/**
|
|
14129
14219
|
*
|
|
14130
14220
|
* @export
|
|
@@ -15863,6 +15953,176 @@ export interface DataTypesCurrentPlanInfo {
|
|
|
15863
15953
|
*/
|
|
15864
15954
|
'subscription_id'?: string;
|
|
15865
15955
|
}
|
|
15956
|
+
/**
|
|
15957
|
+
*
|
|
15958
|
+
* @export
|
|
15959
|
+
* @interface DataTypesCustomPlanListResponse
|
|
15960
|
+
*/
|
|
15961
|
+
export interface DataTypesCustomPlanListResponse {
|
|
15962
|
+
/**
|
|
15963
|
+
*
|
|
15964
|
+
* @type {Array<DataTypesCustomPlanResponse>}
|
|
15965
|
+
* @memberof DataTypesCustomPlanListResponse
|
|
15966
|
+
*/
|
|
15967
|
+
'data'?: Array<DataTypesCustomPlanResponse>;
|
|
15968
|
+
/**
|
|
15969
|
+
*
|
|
15970
|
+
* @type {string}
|
|
15971
|
+
* @memberof DataTypesCustomPlanListResponse
|
|
15972
|
+
*/
|
|
15973
|
+
'message'?: string;
|
|
15974
|
+
/**
|
|
15975
|
+
*
|
|
15976
|
+
* @type {number}
|
|
15977
|
+
* @memberof DataTypesCustomPlanListResponse
|
|
15978
|
+
*/
|
|
15979
|
+
'page'?: number;
|
|
15980
|
+
/**
|
|
15981
|
+
*
|
|
15982
|
+
* @type {number}
|
|
15983
|
+
* @memberof DataTypesCustomPlanListResponse
|
|
15984
|
+
*/
|
|
15985
|
+
'page_size'?: number;
|
|
15986
|
+
/**
|
|
15987
|
+
*
|
|
15988
|
+
* @type {number}
|
|
15989
|
+
* @memberof DataTypesCustomPlanListResponse
|
|
15990
|
+
*/
|
|
15991
|
+
'status'?: number;
|
|
15992
|
+
/**
|
|
15993
|
+
*
|
|
15994
|
+
* @type {number}
|
|
15995
|
+
* @memberof DataTypesCustomPlanListResponse
|
|
15996
|
+
*/
|
|
15997
|
+
'total'?: number;
|
|
15998
|
+
}
|
|
15999
|
+
/**
|
|
16000
|
+
*
|
|
16001
|
+
* @export
|
|
16002
|
+
* @interface DataTypesCustomPlanResponse
|
|
16003
|
+
*/
|
|
16004
|
+
export interface DataTypesCustomPlanResponse {
|
|
16005
|
+
/**
|
|
16006
|
+
*
|
|
16007
|
+
* @type {string}
|
|
16008
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16009
|
+
*/
|
|
16010
|
+
'billing_type'?: string;
|
|
16011
|
+
/**
|
|
16012
|
+
*
|
|
16013
|
+
* @type {number}
|
|
16014
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16015
|
+
*/
|
|
16016
|
+
'bonus_credits'?: number;
|
|
16017
|
+
/**
|
|
16018
|
+
*
|
|
16019
|
+
* @type {string}
|
|
16020
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16021
|
+
*/
|
|
16022
|
+
'created_at'?: string;
|
|
16023
|
+
/**
|
|
16024
|
+
*
|
|
16025
|
+
* @type {number}
|
|
16026
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16027
|
+
*/
|
|
16028
|
+
'created_by_user_id'?: number;
|
|
16029
|
+
/**
|
|
16030
|
+
*
|
|
16031
|
+
* @type {string}
|
|
16032
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16033
|
+
*/
|
|
16034
|
+
'currency'?: string;
|
|
16035
|
+
/**
|
|
16036
|
+
*
|
|
16037
|
+
* @type {string}
|
|
16038
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16039
|
+
*/
|
|
16040
|
+
'description'?: string;
|
|
16041
|
+
/**
|
|
16042
|
+
*
|
|
16043
|
+
* @type {string}
|
|
16044
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16045
|
+
*/
|
|
16046
|
+
'highlights'?: string;
|
|
16047
|
+
/**
|
|
16048
|
+
*
|
|
16049
|
+
* @type {boolean}
|
|
16050
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16051
|
+
*/
|
|
16052
|
+
'is_active'?: boolean;
|
|
16053
|
+
/**
|
|
16054
|
+
*
|
|
16055
|
+
* @type {boolean}
|
|
16056
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16057
|
+
*/
|
|
16058
|
+
'is_custom'?: boolean;
|
|
16059
|
+
/**
|
|
16060
|
+
*
|
|
16061
|
+
* @type {string}
|
|
16062
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16063
|
+
*/
|
|
16064
|
+
'modified_at'?: string;
|
|
16065
|
+
/**
|
|
16066
|
+
*
|
|
16067
|
+
* @type {string}
|
|
16068
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16069
|
+
*/
|
|
16070
|
+
'notes'?: string;
|
|
16071
|
+
/**
|
|
16072
|
+
*
|
|
16073
|
+
* @type {number}
|
|
16074
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16075
|
+
*/
|
|
16076
|
+
'org_id'?: number;
|
|
16077
|
+
/**
|
|
16078
|
+
*
|
|
16079
|
+
* @type {string}
|
|
16080
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16081
|
+
*/
|
|
16082
|
+
'org_name'?: string;
|
|
16083
|
+
/**
|
|
16084
|
+
*
|
|
16085
|
+
* @type {Array<DataTypesPaymentLinkResponse>}
|
|
16086
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16087
|
+
*/
|
|
16088
|
+
'payment_links'?: Array<DataTypesPaymentLinkResponse>;
|
|
16089
|
+
/**
|
|
16090
|
+
*
|
|
16091
|
+
* @type {string}
|
|
16092
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16093
|
+
*/
|
|
16094
|
+
'plan_features'?: string;
|
|
16095
|
+
/**
|
|
16096
|
+
*
|
|
16097
|
+
* @type {number}
|
|
16098
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16099
|
+
*/
|
|
16100
|
+
'plan_id'?: number;
|
|
16101
|
+
/**
|
|
16102
|
+
*
|
|
16103
|
+
* @type {string}
|
|
16104
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16105
|
+
*/
|
|
16106
|
+
'plan_name'?: string;
|
|
16107
|
+
/**
|
|
16108
|
+
*
|
|
16109
|
+
* @type {number}
|
|
16110
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16111
|
+
*/
|
|
16112
|
+
'price'?: number;
|
|
16113
|
+
/**
|
|
16114
|
+
*
|
|
16115
|
+
* @type {number}
|
|
16116
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16117
|
+
*/
|
|
16118
|
+
'total_credits'?: number;
|
|
16119
|
+
/**
|
|
16120
|
+
*
|
|
16121
|
+
* @type {number}
|
|
16122
|
+
* @memberof DataTypesCustomPlanResponse
|
|
16123
|
+
*/
|
|
16124
|
+
'trial_days'?: number;
|
|
16125
|
+
}
|
|
15866
16126
|
/**
|
|
15867
16127
|
*
|
|
15868
16128
|
* @export
|
|
@@ -19078,6 +19338,37 @@ export interface DataTypesGenerateInvoiceReceiptResponse {
|
|
|
19078
19338
|
*/
|
|
19079
19339
|
'success'?: boolean;
|
|
19080
19340
|
}
|
|
19341
|
+
/**
|
|
19342
|
+
*
|
|
19343
|
+
* @export
|
|
19344
|
+
* @interface DataTypesGeneratePaymentLinkRequest
|
|
19345
|
+
*/
|
|
19346
|
+
export interface DataTypesGeneratePaymentLinkRequest {
|
|
19347
|
+
/**
|
|
19348
|
+
*
|
|
19349
|
+
* @type {string}
|
|
19350
|
+
* @memberof DataTypesGeneratePaymentLinkRequest
|
|
19351
|
+
*/
|
|
19352
|
+
'description'?: string;
|
|
19353
|
+
/**
|
|
19354
|
+
*
|
|
19355
|
+
* @type {number}
|
|
19356
|
+
* @memberof DataTypesGeneratePaymentLinkRequest
|
|
19357
|
+
*/
|
|
19358
|
+
'expires_in_days': number;
|
|
19359
|
+
/**
|
|
19360
|
+
*
|
|
19361
|
+
* @type {string}
|
|
19362
|
+
* @memberof DataTypesGeneratePaymentLinkRequest
|
|
19363
|
+
*/
|
|
19364
|
+
'gateway'?: string;
|
|
19365
|
+
/**
|
|
19366
|
+
*
|
|
19367
|
+
* @type {boolean}
|
|
19368
|
+
* @memberof DataTypesGeneratePaymentLinkRequest
|
|
19369
|
+
*/
|
|
19370
|
+
'notify_org'?: boolean;
|
|
19371
|
+
}
|
|
19081
19372
|
/**
|
|
19082
19373
|
*
|
|
19083
19374
|
* @export
|
|
@@ -22905,6 +23196,61 @@ export interface DataTypesManualCreditAdjustmentRequest {
|
|
|
22905
23196
|
*/
|
|
22906
23197
|
'store_id': number;
|
|
22907
23198
|
}
|
|
23199
|
+
/**
|
|
23200
|
+
*
|
|
23201
|
+
* @export
|
|
23202
|
+
* @interface DataTypesMarkPaidRequest
|
|
23203
|
+
*/
|
|
23204
|
+
export interface DataTypesMarkPaidRequest {
|
|
23205
|
+
/**
|
|
23206
|
+
*
|
|
23207
|
+
* @type {number}
|
|
23208
|
+
* @memberof DataTypesMarkPaidRequest
|
|
23209
|
+
*/
|
|
23210
|
+
'amount': number;
|
|
23211
|
+
/**
|
|
23212
|
+
*
|
|
23213
|
+
* @type {string}
|
|
23214
|
+
* @memberof DataTypesMarkPaidRequest
|
|
23215
|
+
*/
|
|
23216
|
+
'currency': DataTypesMarkPaidRequestCurrencyEnum;
|
|
23217
|
+
/**
|
|
23218
|
+
*
|
|
23219
|
+
* @type {string}
|
|
23220
|
+
* @memberof DataTypesMarkPaidRequest
|
|
23221
|
+
*/
|
|
23222
|
+
'notes'?: string;
|
|
23223
|
+
/**
|
|
23224
|
+
* YYYY-MM-DD format
|
|
23225
|
+
* @type {string}
|
|
23226
|
+
* @memberof DataTypesMarkPaidRequest
|
|
23227
|
+
*/
|
|
23228
|
+
'payment_date': string;
|
|
23229
|
+
/**
|
|
23230
|
+
*
|
|
23231
|
+
* @type {string}
|
|
23232
|
+
* @memberof DataTypesMarkPaidRequest
|
|
23233
|
+
*/
|
|
23234
|
+
'payment_method': DataTypesMarkPaidRequestPaymentMethodEnum;
|
|
23235
|
+
/**
|
|
23236
|
+
*
|
|
23237
|
+
* @type {string}
|
|
23238
|
+
* @memberof DataTypesMarkPaidRequest
|
|
23239
|
+
*/
|
|
23240
|
+
'reference_number'?: string;
|
|
23241
|
+
}
|
|
23242
|
+
export declare const DataTypesMarkPaidRequestCurrencyEnum: {
|
|
23243
|
+
readonly Usd: "USD";
|
|
23244
|
+
readonly Inr: "INR";
|
|
23245
|
+
};
|
|
23246
|
+
export type DataTypesMarkPaidRequestCurrencyEnum = typeof DataTypesMarkPaidRequestCurrencyEnum[keyof typeof DataTypesMarkPaidRequestCurrencyEnum];
|
|
23247
|
+
export declare const DataTypesMarkPaidRequestPaymentMethodEnum: {
|
|
23248
|
+
readonly WireTransfer: "wire_transfer";
|
|
23249
|
+
readonly BankTransfer: "bank_transfer";
|
|
23250
|
+
readonly Check: "check";
|
|
23251
|
+
readonly Other: "other";
|
|
23252
|
+
};
|
|
23253
|
+
export type DataTypesMarkPaidRequestPaymentMethodEnum = typeof DataTypesMarkPaidRequestPaymentMethodEnum[keyof typeof DataTypesMarkPaidRequestPaymentMethodEnum];
|
|
22908
23254
|
/**
|
|
22909
23255
|
*
|
|
22910
23256
|
* @export
|
|
@@ -24830,6 +25176,25 @@ export declare const DataTypesNotificationType: {
|
|
|
24830
25176
|
readonly TypeCustom: "custom";
|
|
24831
25177
|
};
|
|
24832
25178
|
export type DataTypesNotificationType = typeof DataTypesNotificationType[keyof typeof DataTypesNotificationType];
|
|
25179
|
+
/**
|
|
25180
|
+
*
|
|
25181
|
+
* @export
|
|
25182
|
+
* @interface DataTypesNotifyOrgRequest
|
|
25183
|
+
*/
|
|
25184
|
+
export interface DataTypesNotifyOrgRequest {
|
|
25185
|
+
/**
|
|
25186
|
+
*
|
|
25187
|
+
* @type {string}
|
|
25188
|
+
* @memberof DataTypesNotifyOrgRequest
|
|
25189
|
+
*/
|
|
25190
|
+
'message'?: string;
|
|
25191
|
+
/**
|
|
25192
|
+
*
|
|
25193
|
+
* @type {string}
|
|
25194
|
+
* @memberof DataTypesNotifyOrgRequest
|
|
25195
|
+
*/
|
|
25196
|
+
'subject'?: string;
|
|
25197
|
+
}
|
|
24833
25198
|
/**
|
|
24834
25199
|
*
|
|
24835
25200
|
* @export
|
|
@@ -24983,6 +25348,97 @@ export interface DataTypesOfficialSearchResult {
|
|
|
24983
25348
|
*/
|
|
24984
25349
|
'score'?: number;
|
|
24985
25350
|
}
|
|
25351
|
+
/**
|
|
25352
|
+
*
|
|
25353
|
+
* @export
|
|
25354
|
+
* @interface DataTypesOfflinePaymentResponse
|
|
25355
|
+
*/
|
|
25356
|
+
export interface DataTypesOfflinePaymentResponse {
|
|
25357
|
+
/**
|
|
25358
|
+
*
|
|
25359
|
+
* @type {number}
|
|
25360
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25361
|
+
*/
|
|
25362
|
+
'amount'?: number;
|
|
25363
|
+
/**
|
|
25364
|
+
*
|
|
25365
|
+
* @type {string}
|
|
25366
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25367
|
+
*/
|
|
25368
|
+
'created_at'?: string;
|
|
25369
|
+
/**
|
|
25370
|
+
*
|
|
25371
|
+
* @type {string}
|
|
25372
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25373
|
+
*/
|
|
25374
|
+
'currency'?: string;
|
|
25375
|
+
/**
|
|
25376
|
+
*
|
|
25377
|
+
* @type {number}
|
|
25378
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25379
|
+
*/
|
|
25380
|
+
'id'?: number;
|
|
25381
|
+
/**
|
|
25382
|
+
*
|
|
25383
|
+
* @type {string}
|
|
25384
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25385
|
+
*/
|
|
25386
|
+
'notes'?: string;
|
|
25387
|
+
/**
|
|
25388
|
+
*
|
|
25389
|
+
* @type {number}
|
|
25390
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25391
|
+
*/
|
|
25392
|
+
'org_id'?: number;
|
|
25393
|
+
/**
|
|
25394
|
+
* YYYY-MM-DD format
|
|
25395
|
+
* @type {string}
|
|
25396
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25397
|
+
*/
|
|
25398
|
+
'payment_date'?: string;
|
|
25399
|
+
/**
|
|
25400
|
+
*
|
|
25401
|
+
* @type {string}
|
|
25402
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25403
|
+
*/
|
|
25404
|
+
'payment_method'?: string;
|
|
25405
|
+
/**
|
|
25406
|
+
*
|
|
25407
|
+
* @type {number}
|
|
25408
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25409
|
+
*/
|
|
25410
|
+
'plan_id'?: number;
|
|
25411
|
+
/**
|
|
25412
|
+
*
|
|
25413
|
+
* @type {string}
|
|
25414
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25415
|
+
*/
|
|
25416
|
+
'reference_number'?: string;
|
|
25417
|
+
/**
|
|
25418
|
+
*
|
|
25419
|
+
* @type {string}
|
|
25420
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25421
|
+
*/
|
|
25422
|
+
'status'?: string;
|
|
25423
|
+
/**
|
|
25424
|
+
*
|
|
25425
|
+
* @type {number}
|
|
25426
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25427
|
+
*/
|
|
25428
|
+
'subscription_id'?: number;
|
|
25429
|
+
/**
|
|
25430
|
+
*
|
|
25431
|
+
* @type {string}
|
|
25432
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25433
|
+
*/
|
|
25434
|
+
'verified_at'?: string;
|
|
25435
|
+
/**
|
|
25436
|
+
*
|
|
25437
|
+
* @type {number}
|
|
25438
|
+
* @memberof DataTypesOfflinePaymentResponse
|
|
25439
|
+
*/
|
|
25440
|
+
'verified_by_user_id'?: number;
|
|
25441
|
+
}
|
|
24986
25442
|
/**
|
|
24987
25443
|
*
|
|
24988
25444
|
* @export
|
|
@@ -26562,6 +27018,164 @@ export interface DataTypesPayment {
|
|
|
26562
27018
|
*/
|
|
26563
27019
|
'transactionId'?: string;
|
|
26564
27020
|
}
|
|
27021
|
+
/**
|
|
27022
|
+
*
|
|
27023
|
+
* @export
|
|
27024
|
+
* @interface DataTypesPaymentLinkListResponse
|
|
27025
|
+
*/
|
|
27026
|
+
export interface DataTypesPaymentLinkListResponse {
|
|
27027
|
+
/**
|
|
27028
|
+
*
|
|
27029
|
+
* @type {Array<DataTypesPaymentLinkResponse>}
|
|
27030
|
+
* @memberof DataTypesPaymentLinkListResponse
|
|
27031
|
+
*/
|
|
27032
|
+
'data'?: Array<DataTypesPaymentLinkResponse>;
|
|
27033
|
+
/**
|
|
27034
|
+
*
|
|
27035
|
+
* @type {string}
|
|
27036
|
+
* @memberof DataTypesPaymentLinkListResponse
|
|
27037
|
+
*/
|
|
27038
|
+
'message'?: string;
|
|
27039
|
+
/**
|
|
27040
|
+
*
|
|
27041
|
+
* @type {number}
|
|
27042
|
+
* @memberof DataTypesPaymentLinkListResponse
|
|
27043
|
+
*/
|
|
27044
|
+
'page'?: number;
|
|
27045
|
+
/**
|
|
27046
|
+
*
|
|
27047
|
+
* @type {number}
|
|
27048
|
+
* @memberof DataTypesPaymentLinkListResponse
|
|
27049
|
+
*/
|
|
27050
|
+
'page_size'?: number;
|
|
27051
|
+
/**
|
|
27052
|
+
*
|
|
27053
|
+
* @type {number}
|
|
27054
|
+
* @memberof DataTypesPaymentLinkListResponse
|
|
27055
|
+
*/
|
|
27056
|
+
'status'?: number;
|
|
27057
|
+
/**
|
|
27058
|
+
*
|
|
27059
|
+
* @type {number}
|
|
27060
|
+
* @memberof DataTypesPaymentLinkListResponse
|
|
27061
|
+
*/
|
|
27062
|
+
'total'?: number;
|
|
27063
|
+
}
|
|
27064
|
+
/**
|
|
27065
|
+
*
|
|
27066
|
+
* @export
|
|
27067
|
+
* @interface DataTypesPaymentLinkResponse
|
|
27068
|
+
*/
|
|
27069
|
+
export interface DataTypesPaymentLinkResponse {
|
|
27070
|
+
/**
|
|
27071
|
+
*
|
|
27072
|
+
* @type {number}
|
|
27073
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27074
|
+
*/
|
|
27075
|
+
'amount'?: number;
|
|
27076
|
+
/**
|
|
27077
|
+
*
|
|
27078
|
+
* @type {string}
|
|
27079
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27080
|
+
*/
|
|
27081
|
+
'created_at'?: string;
|
|
27082
|
+
/**
|
|
27083
|
+
*
|
|
27084
|
+
* @type {number}
|
|
27085
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27086
|
+
*/
|
|
27087
|
+
'created_by_user_id'?: number;
|
|
27088
|
+
/**
|
|
27089
|
+
*
|
|
27090
|
+
* @type {string}
|
|
27091
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27092
|
+
*/
|
|
27093
|
+
'currency'?: string;
|
|
27094
|
+
/**
|
|
27095
|
+
*
|
|
27096
|
+
* @type {string}
|
|
27097
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27098
|
+
*/
|
|
27099
|
+
'expires_at'?: string;
|
|
27100
|
+
/**
|
|
27101
|
+
*
|
|
27102
|
+
* @type {string}
|
|
27103
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27104
|
+
*/
|
|
27105
|
+
'gateway'?: string;
|
|
27106
|
+
/**
|
|
27107
|
+
*
|
|
27108
|
+
* @type {string}
|
|
27109
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27110
|
+
*/
|
|
27111
|
+
'gateway_data'?: string;
|
|
27112
|
+
/**
|
|
27113
|
+
*
|
|
27114
|
+
* @type {string}
|
|
27115
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27116
|
+
*/
|
|
27117
|
+
'gateway_link_id'?: string;
|
|
27118
|
+
/**
|
|
27119
|
+
*
|
|
27120
|
+
* @type {string}
|
|
27121
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27122
|
+
*/
|
|
27123
|
+
'gateway_link_url'?: string;
|
|
27124
|
+
/**
|
|
27125
|
+
*
|
|
27126
|
+
* @type {number}
|
|
27127
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27128
|
+
*/
|
|
27129
|
+
'id'?: number;
|
|
27130
|
+
/**
|
|
27131
|
+
*
|
|
27132
|
+
* @type {string}
|
|
27133
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27134
|
+
*/
|
|
27135
|
+
'notes'?: string;
|
|
27136
|
+
/**
|
|
27137
|
+
*
|
|
27138
|
+
* @type {number}
|
|
27139
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27140
|
+
*/
|
|
27141
|
+
'order_id'?: number;
|
|
27142
|
+
/**
|
|
27143
|
+
*
|
|
27144
|
+
* @type {number}
|
|
27145
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27146
|
+
*/
|
|
27147
|
+
'org_id'?: number;
|
|
27148
|
+
/**
|
|
27149
|
+
*
|
|
27150
|
+
* @type {string}
|
|
27151
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27152
|
+
*/
|
|
27153
|
+
'paid_at'?: string;
|
|
27154
|
+
/**
|
|
27155
|
+
*
|
|
27156
|
+
* @type {number}
|
|
27157
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27158
|
+
*/
|
|
27159
|
+
'plan_id'?: number;
|
|
27160
|
+
/**
|
|
27161
|
+
*
|
|
27162
|
+
* @type {string}
|
|
27163
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27164
|
+
*/
|
|
27165
|
+
'short_url'?: string;
|
|
27166
|
+
/**
|
|
27167
|
+
*
|
|
27168
|
+
* @type {string}
|
|
27169
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27170
|
+
*/
|
|
27171
|
+
'status'?: string;
|
|
27172
|
+
/**
|
|
27173
|
+
*
|
|
27174
|
+
* @type {string}
|
|
27175
|
+
* @memberof DataTypesPaymentLinkResponse
|
|
27176
|
+
*/
|
|
27177
|
+
'updated_at'?: string;
|
|
27178
|
+
}
|
|
26565
27179
|
/**
|
|
26566
27180
|
*
|
|
26567
27181
|
* @export
|
|
@@ -32823,6 +33437,67 @@ export interface DataTypesUpdateAnalyticsRuleRequest {
|
|
|
32823
33437
|
*/
|
|
32824
33438
|
'rule_config'?: DataTypesRuleConfig;
|
|
32825
33439
|
}
|
|
33440
|
+
/**
|
|
33441
|
+
*
|
|
33442
|
+
* @export
|
|
33443
|
+
* @interface DataTypesUpdateCustomPlanRequest
|
|
33444
|
+
*/
|
|
33445
|
+
export interface DataTypesUpdateCustomPlanRequest {
|
|
33446
|
+
/**
|
|
33447
|
+
*
|
|
33448
|
+
* @type {number}
|
|
33449
|
+
* @memberof DataTypesUpdateCustomPlanRequest
|
|
33450
|
+
*/
|
|
33451
|
+
'bonus_credits'?: number;
|
|
33452
|
+
/**
|
|
33453
|
+
*
|
|
33454
|
+
* @type {string}
|
|
33455
|
+
* @memberof DataTypesUpdateCustomPlanRequest
|
|
33456
|
+
*/
|
|
33457
|
+
'description'?: string;
|
|
33458
|
+
/**
|
|
33459
|
+
*
|
|
33460
|
+
* @type {string}
|
|
33461
|
+
* @memberof DataTypesUpdateCustomPlanRequest
|
|
33462
|
+
*/
|
|
33463
|
+
'highlights'?: string;
|
|
33464
|
+
/**
|
|
33465
|
+
*
|
|
33466
|
+
* @type {boolean}
|
|
33467
|
+
* @memberof DataTypesUpdateCustomPlanRequest
|
|
33468
|
+
*/
|
|
33469
|
+
'is_active'?: boolean;
|
|
33470
|
+
/**
|
|
33471
|
+
*
|
|
33472
|
+
* @type {string}
|
|
33473
|
+
* @memberof DataTypesUpdateCustomPlanRequest
|
|
33474
|
+
*/
|
|
33475
|
+
'notes'?: string;
|
|
33476
|
+
/**
|
|
33477
|
+
*
|
|
33478
|
+
* @type {string}
|
|
33479
|
+
* @memberof DataTypesUpdateCustomPlanRequest
|
|
33480
|
+
*/
|
|
33481
|
+
'plan_features'?: string;
|
|
33482
|
+
/**
|
|
33483
|
+
*
|
|
33484
|
+
* @type {string}
|
|
33485
|
+
* @memberof DataTypesUpdateCustomPlanRequest
|
|
33486
|
+
*/
|
|
33487
|
+
'plan_name'?: string;
|
|
33488
|
+
/**
|
|
33489
|
+
*
|
|
33490
|
+
* @type {number}
|
|
33491
|
+
* @memberof DataTypesUpdateCustomPlanRequest
|
|
33492
|
+
*/
|
|
33493
|
+
'price'?: number;
|
|
33494
|
+
/**
|
|
33495
|
+
*
|
|
33496
|
+
* @type {number}
|
|
33497
|
+
* @memberof DataTypesUpdateCustomPlanRequest
|
|
33498
|
+
*/
|
|
33499
|
+
'total_credits'?: number;
|
|
33500
|
+
}
|
|
32826
33501
|
/**
|
|
32827
33502
|
*
|
|
32828
33503
|
* @export
|
|
@@ -46917,6 +47592,469 @@ export declare class AutomatedRefundManagementApi extends BaseAPI {
|
|
|
46917
47592
|
*/
|
|
46918
47593
|
refundAutomatedProcessPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
46919
47594
|
}
|
|
47595
|
+
/**
|
|
47596
|
+
* BackofficeCustomPlansApi - axios parameter creator
|
|
47597
|
+
* @export
|
|
47598
|
+
*/
|
|
47599
|
+
export declare const BackofficeCustomPlansApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
47600
|
+
/**
|
|
47601
|
+
* Returns a paginated, filterable list of custom enterprise plans
|
|
47602
|
+
* @summary List custom plans
|
|
47603
|
+
* @param {number} [page] Page number
|
|
47604
|
+
* @param {number} [pageSize] Page size (max 100)
|
|
47605
|
+
* @param {number} [orgId] Filter by organization ID
|
|
47606
|
+
* @param {string} [status] Filter by status (active, inactive, all)
|
|
47607
|
+
* @param {string} [search] Search by plan name or org name
|
|
47608
|
+
* @param {*} [options] Override http request option.
|
|
47609
|
+
* @throws {RequiredError}
|
|
47610
|
+
*/
|
|
47611
|
+
backofficePlansCustomGet: (page?: number, pageSize?: number, orgId?: number, status?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47612
|
+
/**
|
|
47613
|
+
* Deactivates a custom enterprise plan by setting is_active to false
|
|
47614
|
+
* @summary Soft-delete a custom plan
|
|
47615
|
+
* @param {number} id Custom plan ID
|
|
47616
|
+
* @param {*} [options] Override http request option.
|
|
47617
|
+
* @throws {RequiredError}
|
|
47618
|
+
*/
|
|
47619
|
+
backofficePlansCustomIdDelete: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47620
|
+
/**
|
|
47621
|
+
* Retrieves a single custom enterprise plan by its ID
|
|
47622
|
+
* @summary Get a custom plan by ID
|
|
47623
|
+
* @param {number} id Custom plan ID
|
|
47624
|
+
* @param {*} [options] Override http request option.
|
|
47625
|
+
* @throws {RequiredError}
|
|
47626
|
+
*/
|
|
47627
|
+
backofficePlansCustomIdGet: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47628
|
+
/**
|
|
47629
|
+
* Records a manual/offline payment for a custom plan, creates subscription and allocates credits
|
|
47630
|
+
* @summary Mark a custom plan as paid (offline payment)
|
|
47631
|
+
* @param {number} id Custom plan ID
|
|
47632
|
+
* @param {DataTypesMarkPaidRequest} dataTypesMarkPaidRequest Offline payment details
|
|
47633
|
+
* @param {*} [options] Override http request option.
|
|
47634
|
+
* @throws {RequiredError}
|
|
47635
|
+
*/
|
|
47636
|
+
backofficePlansCustomIdMarkPaidPost: (id: number, dataTypesMarkPaidRequest: DataTypesMarkPaidRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47637
|
+
/**
|
|
47638
|
+
* Sends a notification to the organization regarding their custom plan
|
|
47639
|
+
* @summary Send notification to org about custom plan
|
|
47640
|
+
* @param {number} id Custom plan ID
|
|
47641
|
+
* @param {DataTypesNotifyOrgRequest} [dataTypesNotifyOrgRequest] Notification options
|
|
47642
|
+
* @param {*} [options] Override http request option.
|
|
47643
|
+
* @throws {RequiredError}
|
|
47644
|
+
*/
|
|
47645
|
+
backofficePlansCustomIdNotifyPost: (id: number, dataTypesNotifyOrgRequest?: DataTypesNotifyOrgRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47646
|
+
/**
|
|
47647
|
+
* Creates a payment link via the specified gateway for a custom plan
|
|
47648
|
+
* @summary Generate a payment link for a custom plan
|
|
47649
|
+
* @param {number} id Custom plan ID
|
|
47650
|
+
* @param {DataTypesGeneratePaymentLinkRequest} dataTypesGeneratePaymentLinkRequest Payment link options
|
|
47651
|
+
* @param {*} [options] Override http request option.
|
|
47652
|
+
* @throws {RequiredError}
|
|
47653
|
+
*/
|
|
47654
|
+
backofficePlansCustomIdPaymentLinkPost: (id: number, dataTypesGeneratePaymentLinkRequest: DataTypesGeneratePaymentLinkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47655
|
+
/**
|
|
47656
|
+
* Updates the specified fields of a custom enterprise plan
|
|
47657
|
+
* @summary Update a custom plan
|
|
47658
|
+
* @param {number} id Custom plan ID
|
|
47659
|
+
* @param {DataTypesUpdateCustomPlanRequest} dataTypesUpdateCustomPlanRequest Fields to update
|
|
47660
|
+
* @param {*} [options] Override http request option.
|
|
47661
|
+
* @throws {RequiredError}
|
|
47662
|
+
*/
|
|
47663
|
+
backofficePlansCustomIdPut: (id: number, dataTypesUpdateCustomPlanRequest: DataTypesUpdateCustomPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47664
|
+
/**
|
|
47665
|
+
* Creates a new custom enterprise plan for a specific organization
|
|
47666
|
+
* @summary Create a custom enterprise plan
|
|
47667
|
+
* @param {DataTypesCreateCustomPlanRequest} dataTypesCreateCustomPlanRequest Custom plan details
|
|
47668
|
+
* @param {*} [options] Override http request option.
|
|
47669
|
+
* @throws {RequiredError}
|
|
47670
|
+
*/
|
|
47671
|
+
backofficePlansCustomPost: (dataTypesCreateCustomPlanRequest: DataTypesCreateCustomPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47672
|
+
};
|
|
47673
|
+
/**
|
|
47674
|
+
* BackofficeCustomPlansApi - functional programming interface
|
|
47675
|
+
* @export
|
|
47676
|
+
*/
|
|
47677
|
+
export declare const BackofficeCustomPlansApiFp: (configuration?: Configuration) => {
|
|
47678
|
+
/**
|
|
47679
|
+
* Returns a paginated, filterable list of custom enterprise plans
|
|
47680
|
+
* @summary List custom plans
|
|
47681
|
+
* @param {number} [page] Page number
|
|
47682
|
+
* @param {number} [pageSize] Page size (max 100)
|
|
47683
|
+
* @param {number} [orgId] Filter by organization ID
|
|
47684
|
+
* @param {string} [status] Filter by status (active, inactive, all)
|
|
47685
|
+
* @param {string} [search] Search by plan name or org name
|
|
47686
|
+
* @param {*} [options] Override http request option.
|
|
47687
|
+
* @throws {RequiredError}
|
|
47688
|
+
*/
|
|
47689
|
+
backofficePlansCustomGet(page?: number, pageSize?: number, orgId?: number, status?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCustomPlanListResponse>>;
|
|
47690
|
+
/**
|
|
47691
|
+
* Deactivates a custom enterprise plan by setting is_active to false
|
|
47692
|
+
* @summary Soft-delete a custom plan
|
|
47693
|
+
* @param {number} id Custom plan ID
|
|
47694
|
+
* @param {*} [options] Override http request option.
|
|
47695
|
+
* @throws {RequiredError}
|
|
47696
|
+
*/
|
|
47697
|
+
backofficePlansCustomIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
47698
|
+
/**
|
|
47699
|
+
* Retrieves a single custom enterprise plan by its ID
|
|
47700
|
+
* @summary Get a custom plan by ID
|
|
47701
|
+
* @param {number} id Custom plan ID
|
|
47702
|
+
* @param {*} [options] Override http request option.
|
|
47703
|
+
* @throws {RequiredError}
|
|
47704
|
+
*/
|
|
47705
|
+
backofficePlansCustomIdGet(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCustomPlanResponse>>;
|
|
47706
|
+
/**
|
|
47707
|
+
* Records a manual/offline payment for a custom plan, creates subscription and allocates credits
|
|
47708
|
+
* @summary Mark a custom plan as paid (offline payment)
|
|
47709
|
+
* @param {number} id Custom plan ID
|
|
47710
|
+
* @param {DataTypesMarkPaidRequest} dataTypesMarkPaidRequest Offline payment details
|
|
47711
|
+
* @param {*} [options] Override http request option.
|
|
47712
|
+
* @throws {RequiredError}
|
|
47713
|
+
*/
|
|
47714
|
+
backofficePlansCustomIdMarkPaidPost(id: number, dataTypesMarkPaidRequest: DataTypesMarkPaidRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOfflinePaymentResponse>>;
|
|
47715
|
+
/**
|
|
47716
|
+
* Sends a notification to the organization regarding their custom plan
|
|
47717
|
+
* @summary Send notification to org about custom plan
|
|
47718
|
+
* @param {number} id Custom plan ID
|
|
47719
|
+
* @param {DataTypesNotifyOrgRequest} [dataTypesNotifyOrgRequest] Notification options
|
|
47720
|
+
* @param {*} [options] Override http request option.
|
|
47721
|
+
* @throws {RequiredError}
|
|
47722
|
+
*/
|
|
47723
|
+
backofficePlansCustomIdNotifyPost(id: number, dataTypesNotifyOrgRequest?: DataTypesNotifyOrgRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
47724
|
+
/**
|
|
47725
|
+
* Creates a payment link via the specified gateway for a custom plan
|
|
47726
|
+
* @summary Generate a payment link for a custom plan
|
|
47727
|
+
* @param {number} id Custom plan ID
|
|
47728
|
+
* @param {DataTypesGeneratePaymentLinkRequest} dataTypesGeneratePaymentLinkRequest Payment link options
|
|
47729
|
+
* @param {*} [options] Override http request option.
|
|
47730
|
+
* @throws {RequiredError}
|
|
47731
|
+
*/
|
|
47732
|
+
backofficePlansCustomIdPaymentLinkPost(id: number, dataTypesGeneratePaymentLinkRequest: DataTypesGeneratePaymentLinkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentLinkResponse>>;
|
|
47733
|
+
/**
|
|
47734
|
+
* Updates the specified fields of a custom enterprise plan
|
|
47735
|
+
* @summary Update a custom plan
|
|
47736
|
+
* @param {number} id Custom plan ID
|
|
47737
|
+
* @param {DataTypesUpdateCustomPlanRequest} dataTypesUpdateCustomPlanRequest Fields to update
|
|
47738
|
+
* @param {*} [options] Override http request option.
|
|
47739
|
+
* @throws {RequiredError}
|
|
47740
|
+
*/
|
|
47741
|
+
backofficePlansCustomIdPut(id: number, dataTypesUpdateCustomPlanRequest: DataTypesUpdateCustomPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCustomPlanResponse>>;
|
|
47742
|
+
/**
|
|
47743
|
+
* Creates a new custom enterprise plan for a specific organization
|
|
47744
|
+
* @summary Create a custom enterprise plan
|
|
47745
|
+
* @param {DataTypesCreateCustomPlanRequest} dataTypesCreateCustomPlanRequest Custom plan details
|
|
47746
|
+
* @param {*} [options] Override http request option.
|
|
47747
|
+
* @throws {RequiredError}
|
|
47748
|
+
*/
|
|
47749
|
+
backofficePlansCustomPost(dataTypesCreateCustomPlanRequest: DataTypesCreateCustomPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCustomPlanResponse>>;
|
|
47750
|
+
};
|
|
47751
|
+
/**
|
|
47752
|
+
* BackofficeCustomPlansApi - factory interface
|
|
47753
|
+
* @export
|
|
47754
|
+
*/
|
|
47755
|
+
export declare const BackofficeCustomPlansApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
47756
|
+
/**
|
|
47757
|
+
* Returns a paginated, filterable list of custom enterprise plans
|
|
47758
|
+
* @summary List custom plans
|
|
47759
|
+
* @param {number} [page] Page number
|
|
47760
|
+
* @param {number} [pageSize] Page size (max 100)
|
|
47761
|
+
* @param {number} [orgId] Filter by organization ID
|
|
47762
|
+
* @param {string} [status] Filter by status (active, inactive, all)
|
|
47763
|
+
* @param {string} [search] Search by plan name or org name
|
|
47764
|
+
* @param {*} [options] Override http request option.
|
|
47765
|
+
* @throws {RequiredError}
|
|
47766
|
+
*/
|
|
47767
|
+
backofficePlansCustomGet(page?: number, pageSize?: number, orgId?: number, status?: string, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCustomPlanListResponse>;
|
|
47768
|
+
/**
|
|
47769
|
+
* Deactivates a custom enterprise plan by setting is_active to false
|
|
47770
|
+
* @summary Soft-delete a custom plan
|
|
47771
|
+
* @param {number} id Custom plan ID
|
|
47772
|
+
* @param {*} [options] Override http request option.
|
|
47773
|
+
* @throws {RequiredError}
|
|
47774
|
+
*/
|
|
47775
|
+
backofficePlansCustomIdDelete(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
47776
|
+
/**
|
|
47777
|
+
* Retrieves a single custom enterprise plan by its ID
|
|
47778
|
+
* @summary Get a custom plan by ID
|
|
47779
|
+
* @param {number} id Custom plan ID
|
|
47780
|
+
* @param {*} [options] Override http request option.
|
|
47781
|
+
* @throws {RequiredError}
|
|
47782
|
+
*/
|
|
47783
|
+
backofficePlansCustomIdGet(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCustomPlanResponse>;
|
|
47784
|
+
/**
|
|
47785
|
+
* Records a manual/offline payment for a custom plan, creates subscription and allocates credits
|
|
47786
|
+
* @summary Mark a custom plan as paid (offline payment)
|
|
47787
|
+
* @param {number} id Custom plan ID
|
|
47788
|
+
* @param {DataTypesMarkPaidRequest} dataTypesMarkPaidRequest Offline payment details
|
|
47789
|
+
* @param {*} [options] Override http request option.
|
|
47790
|
+
* @throws {RequiredError}
|
|
47791
|
+
*/
|
|
47792
|
+
backofficePlansCustomIdMarkPaidPost(id: number, dataTypesMarkPaidRequest: DataTypesMarkPaidRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOfflinePaymentResponse>;
|
|
47793
|
+
/**
|
|
47794
|
+
* Sends a notification to the organization regarding their custom plan
|
|
47795
|
+
* @summary Send notification to org about custom plan
|
|
47796
|
+
* @param {number} id Custom plan ID
|
|
47797
|
+
* @param {DataTypesNotifyOrgRequest} [dataTypesNotifyOrgRequest] Notification options
|
|
47798
|
+
* @param {*} [options] Override http request option.
|
|
47799
|
+
* @throws {RequiredError}
|
|
47800
|
+
*/
|
|
47801
|
+
backofficePlansCustomIdNotifyPost(id: number, dataTypesNotifyOrgRequest?: DataTypesNotifyOrgRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
47802
|
+
/**
|
|
47803
|
+
* Creates a payment link via the specified gateway for a custom plan
|
|
47804
|
+
* @summary Generate a payment link for a custom plan
|
|
47805
|
+
* @param {number} id Custom plan ID
|
|
47806
|
+
* @param {DataTypesGeneratePaymentLinkRequest} dataTypesGeneratePaymentLinkRequest Payment link options
|
|
47807
|
+
* @param {*} [options] Override http request option.
|
|
47808
|
+
* @throws {RequiredError}
|
|
47809
|
+
*/
|
|
47810
|
+
backofficePlansCustomIdPaymentLinkPost(id: number, dataTypesGeneratePaymentLinkRequest: DataTypesGeneratePaymentLinkRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentLinkResponse>;
|
|
47811
|
+
/**
|
|
47812
|
+
* Updates the specified fields of a custom enterprise plan
|
|
47813
|
+
* @summary Update a custom plan
|
|
47814
|
+
* @param {number} id Custom plan ID
|
|
47815
|
+
* @param {DataTypesUpdateCustomPlanRequest} dataTypesUpdateCustomPlanRequest Fields to update
|
|
47816
|
+
* @param {*} [options] Override http request option.
|
|
47817
|
+
* @throws {RequiredError}
|
|
47818
|
+
*/
|
|
47819
|
+
backofficePlansCustomIdPut(id: number, dataTypesUpdateCustomPlanRequest: DataTypesUpdateCustomPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCustomPlanResponse>;
|
|
47820
|
+
/**
|
|
47821
|
+
* Creates a new custom enterprise plan for a specific organization
|
|
47822
|
+
* @summary Create a custom enterprise plan
|
|
47823
|
+
* @param {DataTypesCreateCustomPlanRequest} dataTypesCreateCustomPlanRequest Custom plan details
|
|
47824
|
+
* @param {*} [options] Override http request option.
|
|
47825
|
+
* @throws {RequiredError}
|
|
47826
|
+
*/
|
|
47827
|
+
backofficePlansCustomPost(dataTypesCreateCustomPlanRequest: DataTypesCreateCustomPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCustomPlanResponse>;
|
|
47828
|
+
};
|
|
47829
|
+
/**
|
|
47830
|
+
* BackofficeCustomPlansApi - object-oriented interface
|
|
47831
|
+
* @export
|
|
47832
|
+
* @class BackofficeCustomPlansApi
|
|
47833
|
+
* @extends {BaseAPI}
|
|
47834
|
+
*/
|
|
47835
|
+
export declare class BackofficeCustomPlansApi extends BaseAPI {
|
|
47836
|
+
/**
|
|
47837
|
+
* Returns a paginated, filterable list of custom enterprise plans
|
|
47838
|
+
* @summary List custom plans
|
|
47839
|
+
* @param {number} [page] Page number
|
|
47840
|
+
* @param {number} [pageSize] Page size (max 100)
|
|
47841
|
+
* @param {number} [orgId] Filter by organization ID
|
|
47842
|
+
* @param {string} [status] Filter by status (active, inactive, all)
|
|
47843
|
+
* @param {string} [search] Search by plan name or org name
|
|
47844
|
+
* @param {*} [options] Override http request option.
|
|
47845
|
+
* @throws {RequiredError}
|
|
47846
|
+
* @memberof BackofficeCustomPlansApi
|
|
47847
|
+
*/
|
|
47848
|
+
backofficePlansCustomGet(page?: number, pageSize?: number, orgId?: number, status?: string, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomPlanListResponse, any, {}>>;
|
|
47849
|
+
/**
|
|
47850
|
+
* Deactivates a custom enterprise plan by setting is_active to false
|
|
47851
|
+
* @summary Soft-delete a custom plan
|
|
47852
|
+
* @param {number} id Custom plan ID
|
|
47853
|
+
* @param {*} [options] Override http request option.
|
|
47854
|
+
* @throws {RequiredError}
|
|
47855
|
+
* @memberof BackofficeCustomPlansApi
|
|
47856
|
+
*/
|
|
47857
|
+
backofficePlansCustomIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
47858
|
+
/**
|
|
47859
|
+
* Retrieves a single custom enterprise plan by its ID
|
|
47860
|
+
* @summary Get a custom plan by ID
|
|
47861
|
+
* @param {number} id Custom plan ID
|
|
47862
|
+
* @param {*} [options] Override http request option.
|
|
47863
|
+
* @throws {RequiredError}
|
|
47864
|
+
* @memberof BackofficeCustomPlansApi
|
|
47865
|
+
*/
|
|
47866
|
+
backofficePlansCustomIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomPlanResponse, any, {}>>;
|
|
47867
|
+
/**
|
|
47868
|
+
* Records a manual/offline payment for a custom plan, creates subscription and allocates credits
|
|
47869
|
+
* @summary Mark a custom plan as paid (offline payment)
|
|
47870
|
+
* @param {number} id Custom plan ID
|
|
47871
|
+
* @param {DataTypesMarkPaidRequest} dataTypesMarkPaidRequest Offline payment details
|
|
47872
|
+
* @param {*} [options] Override http request option.
|
|
47873
|
+
* @throws {RequiredError}
|
|
47874
|
+
* @memberof BackofficeCustomPlansApi
|
|
47875
|
+
*/
|
|
47876
|
+
backofficePlansCustomIdMarkPaidPost(id: number, dataTypesMarkPaidRequest: DataTypesMarkPaidRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfflinePaymentResponse, any, {}>>;
|
|
47877
|
+
/**
|
|
47878
|
+
* Sends a notification to the organization regarding their custom plan
|
|
47879
|
+
* @summary Send notification to org about custom plan
|
|
47880
|
+
* @param {number} id Custom plan ID
|
|
47881
|
+
* @param {DataTypesNotifyOrgRequest} [dataTypesNotifyOrgRequest] Notification options
|
|
47882
|
+
* @param {*} [options] Override http request option.
|
|
47883
|
+
* @throws {RequiredError}
|
|
47884
|
+
* @memberof BackofficeCustomPlansApi
|
|
47885
|
+
*/
|
|
47886
|
+
backofficePlansCustomIdNotifyPost(id: number, dataTypesNotifyOrgRequest?: DataTypesNotifyOrgRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
47887
|
+
/**
|
|
47888
|
+
* Creates a payment link via the specified gateway for a custom plan
|
|
47889
|
+
* @summary Generate a payment link for a custom plan
|
|
47890
|
+
* @param {number} id Custom plan ID
|
|
47891
|
+
* @param {DataTypesGeneratePaymentLinkRequest} dataTypesGeneratePaymentLinkRequest Payment link options
|
|
47892
|
+
* @param {*} [options] Override http request option.
|
|
47893
|
+
* @throws {RequiredError}
|
|
47894
|
+
* @memberof BackofficeCustomPlansApi
|
|
47895
|
+
*/
|
|
47896
|
+
backofficePlansCustomIdPaymentLinkPost(id: number, dataTypesGeneratePaymentLinkRequest: DataTypesGeneratePaymentLinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentLinkResponse, any, {}>>;
|
|
47897
|
+
/**
|
|
47898
|
+
* Updates the specified fields of a custom enterprise plan
|
|
47899
|
+
* @summary Update a custom plan
|
|
47900
|
+
* @param {number} id Custom plan ID
|
|
47901
|
+
* @param {DataTypesUpdateCustomPlanRequest} dataTypesUpdateCustomPlanRequest Fields to update
|
|
47902
|
+
* @param {*} [options] Override http request option.
|
|
47903
|
+
* @throws {RequiredError}
|
|
47904
|
+
* @memberof BackofficeCustomPlansApi
|
|
47905
|
+
*/
|
|
47906
|
+
backofficePlansCustomIdPut(id: number, dataTypesUpdateCustomPlanRequest: DataTypesUpdateCustomPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomPlanResponse, any, {}>>;
|
|
47907
|
+
/**
|
|
47908
|
+
* Creates a new custom enterprise plan for a specific organization
|
|
47909
|
+
* @summary Create a custom enterprise plan
|
|
47910
|
+
* @param {DataTypesCreateCustomPlanRequest} dataTypesCreateCustomPlanRequest Custom plan details
|
|
47911
|
+
* @param {*} [options] Override http request option.
|
|
47912
|
+
* @throws {RequiredError}
|
|
47913
|
+
* @memberof BackofficeCustomPlansApi
|
|
47914
|
+
*/
|
|
47915
|
+
backofficePlansCustomPost(dataTypesCreateCustomPlanRequest: DataTypesCreateCustomPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomPlanResponse, any, {}>>;
|
|
47916
|
+
}
|
|
47917
|
+
/**
|
|
47918
|
+
* BackofficePaymentLinksApi - axios parameter creator
|
|
47919
|
+
* @export
|
|
47920
|
+
*/
|
|
47921
|
+
export declare const BackofficePaymentLinksApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
47922
|
+
/**
|
|
47923
|
+
* Returns a paginated, filterable list of payment links
|
|
47924
|
+
* @summary List payment links
|
|
47925
|
+
* @param {number} [page] Page number
|
|
47926
|
+
* @param {number} [pageSize] Page size (max 100)
|
|
47927
|
+
* @param {number} [orgId] Filter by organization ID
|
|
47928
|
+
* @param {string} [status] Filter by status (created, paid, expired, cancelled, all)
|
|
47929
|
+
* @param {number} [planId] Filter by plan ID
|
|
47930
|
+
* @param {*} [options] Override http request option.
|
|
47931
|
+
* @throws {RequiredError}
|
|
47932
|
+
*/
|
|
47933
|
+
backofficePaymentLinksGet: (page?: number, pageSize?: number, orgId?: number, status?: string, planId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47934
|
+
/**
|
|
47935
|
+
* Cancels a payment link that is in \'created\' status
|
|
47936
|
+
* @summary Cancel a payment link
|
|
47937
|
+
* @param {number} id Payment link ID
|
|
47938
|
+
* @param {*} [options] Override http request option.
|
|
47939
|
+
* @throws {RequiredError}
|
|
47940
|
+
*/
|
|
47941
|
+
backofficePaymentLinksIdCancelPost: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47942
|
+
/**
|
|
47943
|
+
* Retrieves a single payment link by its ID
|
|
47944
|
+
* @summary Get a payment link by ID
|
|
47945
|
+
* @param {number} id Payment link ID
|
|
47946
|
+
* @param {*} [options] Override http request option.
|
|
47947
|
+
* @throws {RequiredError}
|
|
47948
|
+
*/
|
|
47949
|
+
backofficePaymentLinksIdGet: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47950
|
+
};
|
|
47951
|
+
/**
|
|
47952
|
+
* BackofficePaymentLinksApi - functional programming interface
|
|
47953
|
+
* @export
|
|
47954
|
+
*/
|
|
47955
|
+
export declare const BackofficePaymentLinksApiFp: (configuration?: Configuration) => {
|
|
47956
|
+
/**
|
|
47957
|
+
* Returns a paginated, filterable list of payment links
|
|
47958
|
+
* @summary List payment links
|
|
47959
|
+
* @param {number} [page] Page number
|
|
47960
|
+
* @param {number} [pageSize] Page size (max 100)
|
|
47961
|
+
* @param {number} [orgId] Filter by organization ID
|
|
47962
|
+
* @param {string} [status] Filter by status (created, paid, expired, cancelled, all)
|
|
47963
|
+
* @param {number} [planId] Filter by plan ID
|
|
47964
|
+
* @param {*} [options] Override http request option.
|
|
47965
|
+
* @throws {RequiredError}
|
|
47966
|
+
*/
|
|
47967
|
+
backofficePaymentLinksGet(page?: number, pageSize?: number, orgId?: number, status?: string, planId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentLinkListResponse>>;
|
|
47968
|
+
/**
|
|
47969
|
+
* Cancels a payment link that is in \'created\' status
|
|
47970
|
+
* @summary Cancel a payment link
|
|
47971
|
+
* @param {number} id Payment link ID
|
|
47972
|
+
* @param {*} [options] Override http request option.
|
|
47973
|
+
* @throws {RequiredError}
|
|
47974
|
+
*/
|
|
47975
|
+
backofficePaymentLinksIdCancelPost(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentLinkResponse>>;
|
|
47976
|
+
/**
|
|
47977
|
+
* Retrieves a single payment link by its ID
|
|
47978
|
+
* @summary Get a payment link by ID
|
|
47979
|
+
* @param {number} id Payment link ID
|
|
47980
|
+
* @param {*} [options] Override http request option.
|
|
47981
|
+
* @throws {RequiredError}
|
|
47982
|
+
*/
|
|
47983
|
+
backofficePaymentLinksIdGet(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentLinkResponse>>;
|
|
47984
|
+
};
|
|
47985
|
+
/**
|
|
47986
|
+
* BackofficePaymentLinksApi - factory interface
|
|
47987
|
+
* @export
|
|
47988
|
+
*/
|
|
47989
|
+
export declare const BackofficePaymentLinksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
47990
|
+
/**
|
|
47991
|
+
* Returns a paginated, filterable list of payment links
|
|
47992
|
+
* @summary List payment links
|
|
47993
|
+
* @param {number} [page] Page number
|
|
47994
|
+
* @param {number} [pageSize] Page size (max 100)
|
|
47995
|
+
* @param {number} [orgId] Filter by organization ID
|
|
47996
|
+
* @param {string} [status] Filter by status (created, paid, expired, cancelled, all)
|
|
47997
|
+
* @param {number} [planId] Filter by plan ID
|
|
47998
|
+
* @param {*} [options] Override http request option.
|
|
47999
|
+
* @throws {RequiredError}
|
|
48000
|
+
*/
|
|
48001
|
+
backofficePaymentLinksGet(page?: number, pageSize?: number, orgId?: number, status?: string, planId?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentLinkListResponse>;
|
|
48002
|
+
/**
|
|
48003
|
+
* Cancels a payment link that is in \'created\' status
|
|
48004
|
+
* @summary Cancel a payment link
|
|
48005
|
+
* @param {number} id Payment link ID
|
|
48006
|
+
* @param {*} [options] Override http request option.
|
|
48007
|
+
* @throws {RequiredError}
|
|
48008
|
+
*/
|
|
48009
|
+
backofficePaymentLinksIdCancelPost(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentLinkResponse>;
|
|
48010
|
+
/**
|
|
48011
|
+
* Retrieves a single payment link by its ID
|
|
48012
|
+
* @summary Get a payment link by ID
|
|
48013
|
+
* @param {number} id Payment link ID
|
|
48014
|
+
* @param {*} [options] Override http request option.
|
|
48015
|
+
* @throws {RequiredError}
|
|
48016
|
+
*/
|
|
48017
|
+
backofficePaymentLinksIdGet(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentLinkResponse>;
|
|
48018
|
+
};
|
|
48019
|
+
/**
|
|
48020
|
+
* BackofficePaymentLinksApi - object-oriented interface
|
|
48021
|
+
* @export
|
|
48022
|
+
* @class BackofficePaymentLinksApi
|
|
48023
|
+
* @extends {BaseAPI}
|
|
48024
|
+
*/
|
|
48025
|
+
export declare class BackofficePaymentLinksApi extends BaseAPI {
|
|
48026
|
+
/**
|
|
48027
|
+
* Returns a paginated, filterable list of payment links
|
|
48028
|
+
* @summary List payment links
|
|
48029
|
+
* @param {number} [page] Page number
|
|
48030
|
+
* @param {number} [pageSize] Page size (max 100)
|
|
48031
|
+
* @param {number} [orgId] Filter by organization ID
|
|
48032
|
+
* @param {string} [status] Filter by status (created, paid, expired, cancelled, all)
|
|
48033
|
+
* @param {number} [planId] Filter by plan ID
|
|
48034
|
+
* @param {*} [options] Override http request option.
|
|
48035
|
+
* @throws {RequiredError}
|
|
48036
|
+
* @memberof BackofficePaymentLinksApi
|
|
48037
|
+
*/
|
|
48038
|
+
backofficePaymentLinksGet(page?: number, pageSize?: number, orgId?: number, status?: string, planId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentLinkListResponse, any, {}>>;
|
|
48039
|
+
/**
|
|
48040
|
+
* Cancels a payment link that is in \'created\' status
|
|
48041
|
+
* @summary Cancel a payment link
|
|
48042
|
+
* @param {number} id Payment link ID
|
|
48043
|
+
* @param {*} [options] Override http request option.
|
|
48044
|
+
* @throws {RequiredError}
|
|
48045
|
+
* @memberof BackofficePaymentLinksApi
|
|
48046
|
+
*/
|
|
48047
|
+
backofficePaymentLinksIdCancelPost(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentLinkResponse, any, {}>>;
|
|
48048
|
+
/**
|
|
48049
|
+
* Retrieves a single payment link by its ID
|
|
48050
|
+
* @summary Get a payment link by ID
|
|
48051
|
+
* @param {number} id Payment link ID
|
|
48052
|
+
* @param {*} [options] Override http request option.
|
|
48053
|
+
* @throws {RequiredError}
|
|
48054
|
+
* @memberof BackofficePaymentLinksApi
|
|
48055
|
+
*/
|
|
48056
|
+
backofficePaymentLinksIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentLinkResponse, any, {}>>;
|
|
48057
|
+
}
|
|
46920
48058
|
/**
|
|
46921
48059
|
* BillingDashboardApi - axios parameter creator
|
|
46922
48060
|
* @export
|
|
@@ -57882,8 +59020,8 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
57882
59020
|
*/
|
|
57883
59021
|
adminPaymentGatewayCreateOrderPost: (dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57884
59022
|
/**
|
|
57885
|
-
* Returns
|
|
57886
|
-
* @summary Get available credit plans
|
|
59023
|
+
* Returns all active global credit plans plus any custom plans assigned to the authenticated user\'s organization. Requires JWT authentication.
|
|
59024
|
+
* @summary Get available credit plans (including org-specific custom plans)
|
|
57887
59025
|
* @param {*} [options] Override http request option.
|
|
57888
59026
|
* @throws {RequiredError}
|
|
57889
59027
|
*/
|
|
@@ -57965,8 +59103,8 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
57965
59103
|
*/
|
|
57966
59104
|
adminPaymentGatewayVerifyPost: (dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57967
59105
|
/**
|
|
57968
|
-
* Returns list of all active credit plans for purchase
|
|
57969
|
-
* @summary Get available credit plans
|
|
59106
|
+
* Returns list of all active global credit plans for purchase. Public endpoint, no authentication required.
|
|
59107
|
+
* @summary Get available credit plans (public)
|
|
57970
59108
|
* @param {*} [options] Override http request option.
|
|
57971
59109
|
* @throws {RequiredError}
|
|
57972
59110
|
*/
|
|
@@ -58003,12 +59141,12 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
58003
59141
|
*/
|
|
58004
59142
|
adminPaymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCreatePaymentOrderResponse>>;
|
|
58005
59143
|
/**
|
|
58006
|
-
* Returns
|
|
58007
|
-
* @summary Get available credit plans
|
|
59144
|
+
* Returns all active global credit plans plus any custom plans assigned to the authenticated user\'s organization. Requires JWT authentication.
|
|
59145
|
+
* @summary Get available credit plans (including org-specific custom plans)
|
|
58008
59146
|
* @param {*} [options] Override http request option.
|
|
58009
59147
|
* @throws {RequiredError}
|
|
58010
59148
|
*/
|
|
58011
|
-
adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
59149
|
+
adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DataTypesCustomPlanResponse>>>;
|
|
58012
59150
|
/**
|
|
58013
59151
|
* Returns list of all available payment gateways
|
|
58014
59152
|
* @summary Get available payment gateways
|
|
@@ -58086,8 +59224,8 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
58086
59224
|
*/
|
|
58087
59225
|
adminPaymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentStatusPollResponse>>;
|
|
58088
59226
|
/**
|
|
58089
|
-
* Returns list of all active credit plans for purchase
|
|
58090
|
-
* @summary Get available credit plans
|
|
59227
|
+
* Returns list of all active global credit plans for purchase. Public endpoint, no authentication required.
|
|
59228
|
+
* @summary Get available credit plans (public)
|
|
58091
59229
|
* @param {*} [options] Override http request option.
|
|
58092
59230
|
* @throws {RequiredError}
|
|
58093
59231
|
*/
|
|
@@ -58128,12 +59266,12 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
58128
59266
|
*/
|
|
58129
59267
|
adminPaymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCreatePaymentOrderResponse>;
|
|
58130
59268
|
/**
|
|
58131
|
-
* Returns
|
|
58132
|
-
* @summary Get available credit plans
|
|
59269
|
+
* Returns all active global credit plans plus any custom plans assigned to the authenticated user\'s organization. Requires JWT authentication.
|
|
59270
|
+
* @summary Get available credit plans (including org-specific custom plans)
|
|
58133
59271
|
* @param {*} [options] Override http request option.
|
|
58134
59272
|
* @throws {RequiredError}
|
|
58135
59273
|
*/
|
|
58136
|
-
adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
59274
|
+
adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<DataTypesCustomPlanResponse>>;
|
|
58137
59275
|
/**
|
|
58138
59276
|
* Returns list of all available payment gateways
|
|
58139
59277
|
* @summary Get available payment gateways
|
|
@@ -58211,8 +59349,8 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
58211
59349
|
*/
|
|
58212
59350
|
adminPaymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentStatusPollResponse>;
|
|
58213
59351
|
/**
|
|
58214
|
-
* Returns list of all active credit plans for purchase
|
|
58215
|
-
* @summary Get available credit plans
|
|
59352
|
+
* Returns list of all active global credit plans for purchase. Public endpoint, no authentication required.
|
|
59353
|
+
* @summary Get available credit plans (public)
|
|
58216
59354
|
* @param {*} [options] Override http request option.
|
|
58217
59355
|
* @throws {RequiredError}
|
|
58218
59356
|
*/
|
|
@@ -58256,13 +59394,13 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
58256
59394
|
*/
|
|
58257
59395
|
adminPaymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreatePaymentOrderResponse, any, {}>>;
|
|
58258
59396
|
/**
|
|
58259
|
-
* Returns
|
|
58260
|
-
* @summary Get available credit plans
|
|
59397
|
+
* Returns all active global credit plans plus any custom plans assigned to the authenticated user\'s organization. Requires JWT authentication.
|
|
59398
|
+
* @summary Get available credit plans (including org-specific custom plans)
|
|
58261
59399
|
* @param {*} [options] Override http request option.
|
|
58262
59400
|
* @throws {RequiredError}
|
|
58263
59401
|
* @memberof PaymentGatewayApi
|
|
58264
59402
|
*/
|
|
58265
|
-
adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
59403
|
+
adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomPlanResponse[], any, {}>>;
|
|
58266
59404
|
/**
|
|
58267
59405
|
* Returns list of all available payment gateways
|
|
58268
59406
|
* @summary Get available payment gateways
|
|
@@ -58348,8 +59486,8 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
58348
59486
|
*/
|
|
58349
59487
|
adminPaymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusPollResponse, any, {}>>;
|
|
58350
59488
|
/**
|
|
58351
|
-
* Returns list of all active credit plans for purchase
|
|
58352
|
-
* @summary Get available credit plans
|
|
59489
|
+
* Returns list of all active global credit plans for purchase. Public endpoint, no authentication required.
|
|
59490
|
+
* @summary Get available credit plans (public)
|
|
58353
59491
|
* @param {*} [options] Override http request option.
|
|
58354
59492
|
* @throws {RequiredError}
|
|
58355
59493
|
* @memberof PaymentGatewayApi
|