@seekora-ai/admin-api 1.0.67 → 1.0.69

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.d.ts CHANGED
@@ -21154,6 +21154,67 @@ export declare class BillingDashboardApi extends BaseAPI {
21154
21154
  */
21155
21155
  adminBillingPaymentTransactionsGet(orgId?: number, startDate?: string, endDate?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayBillingServicePaymentTransactionSummary, any, {}>>;
21156
21156
  }
21157
+ /**
21158
+ * CommonApi - axios parameter creator
21159
+ * @export
21160
+ */
21161
+ export declare const CommonApiAxiosParamCreator: (configuration?: Configuration) => {
21162
+ /**
21163
+ * Retrieve list of supported languages for query suggestions with language codes, names, and locales
21164
+ * @summary Get Supported Languages
21165
+ * @param {*} [options] Override http request option.
21166
+ * @throws {RequiredError}
21167
+ */
21168
+ commonLanguagesGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21169
+ };
21170
+ /**
21171
+ * CommonApi - functional programming interface
21172
+ * @export
21173
+ */
21174
+ export declare const CommonApiFp: (configuration?: Configuration) => {
21175
+ /**
21176
+ * Retrieve list of supported languages for query suggestions with language codes, names, and locales
21177
+ * @summary Get Supported Languages
21178
+ * @param {*} [options] Override http request option.
21179
+ * @throws {RequiredError}
21180
+ */
21181
+ commonLanguagesGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
21182
+ [key: string]: any;
21183
+ }>>;
21184
+ };
21185
+ /**
21186
+ * CommonApi - factory interface
21187
+ * @export
21188
+ */
21189
+ export declare const CommonApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
21190
+ /**
21191
+ * Retrieve list of supported languages for query suggestions with language codes, names, and locales
21192
+ * @summary Get Supported Languages
21193
+ * @param {*} [options] Override http request option.
21194
+ * @throws {RequiredError}
21195
+ */
21196
+ commonLanguagesGet(options?: RawAxiosRequestConfig): AxiosPromise<{
21197
+ [key: string]: any;
21198
+ }>;
21199
+ };
21200
+ /**
21201
+ * CommonApi - object-oriented interface
21202
+ * @export
21203
+ * @class CommonApi
21204
+ * @extends {BaseAPI}
21205
+ */
21206
+ export declare class CommonApi extends BaseAPI {
21207
+ /**
21208
+ * Retrieve list of supported languages for query suggestions with language codes, names, and locales
21209
+ * @summary Get Supported Languages
21210
+ * @param {*} [options] Override http request option.
21211
+ * @throws {RequiredError}
21212
+ * @memberof CommonApi
21213
+ */
21214
+ commonLanguagesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
21215
+ [key: string]: any;
21216
+ }, any, {}>>;
21217
+ }
21157
21218
  /**
21158
21219
  * ConnectorsApi - axios parameter creator
21159
21220
  * @export
@@ -25054,20 +25115,20 @@ export declare class ParentMenusApi extends BaseAPI {
25054
25115
  */
25055
25116
  export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Configuration) => {
25056
25117
  /**
25057
- * Creates a payment order using specified or default payment gateway
25058
- * @summary Create a new payment order
25059
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
25118
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
25119
+ * @summary Get available credit plans
25060
25120
  * @param {*} [options] Override http request option.
25061
25121
  * @throws {RequiredError}
25062
25122
  */
25063
- paymentGatewayCreateOrderPost: (dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25123
+ adminPaymentGatewayCreditPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25064
25124
  /**
25065
- * Returns list of all active credit plans for purchase
25066
- * @summary Get available credit plans
25125
+ * Creates a payment order using specified or default payment gateway
25126
+ * @summary Create a new payment order
25127
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
25067
25128
  * @param {*} [options] Override http request option.
25068
25129
  * @throws {RequiredError}
25069
25130
  */
25070
- paymentGatewayCreditPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25131
+ paymentGatewayCreateOrderPost: (dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25071
25132
  /**
25072
25133
  * Returns list of all available payment gateways
25073
25134
  * @summary Get available payment gateways
@@ -25091,6 +25152,13 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
25091
25152
  * @throws {RequiredError}
25092
25153
  */
25093
25154
  paymentGatewayVerifyPost: (dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25155
+ /**
25156
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
25157
+ * @summary Get available credit plans
25158
+ * @param {*} [options] Override http request option.
25159
+ * @throws {RequiredError}
25160
+ */
25161
+ v1CreditPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25094
25162
  };
25095
25163
  /**
25096
25164
  * PaymentGatewayApi - functional programming interface
@@ -25098,20 +25166,20 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
25098
25166
  */
25099
25167
  export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
25100
25168
  /**
25101
- * Creates a payment order using specified or default payment gateway
25102
- * @summary Create a new payment order
25103
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
25169
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
25170
+ * @summary Get available credit plans
25104
25171
  * @param {*} [options] Override http request option.
25105
25172
  * @throws {RequiredError}
25106
25173
  */
25107
- paymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCreatePaymentOrderResponse>>;
25174
+ adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DataTypesCreditPlan>>>;
25108
25175
  /**
25109
- * Returns list of all active credit plans for purchase
25110
- * @summary Get available credit plans
25176
+ * Creates a payment order using specified or default payment gateway
25177
+ * @summary Create a new payment order
25178
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
25111
25179
  * @param {*} [options] Override http request option.
25112
25180
  * @throws {RequiredError}
25113
25181
  */
25114
- paymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DataTypesCreditPlan>>>;
25182
+ paymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCreatePaymentOrderResponse>>;
25115
25183
  /**
25116
25184
  * Returns list of all available payment gateways
25117
25185
  * @summary Get available payment gateways
@@ -25135,6 +25203,13 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
25135
25203
  * @throws {RequiredError}
25136
25204
  */
25137
25205
  paymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentStatusResponse>>;
25206
+ /**
25207
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
25208
+ * @summary Get available credit plans
25209
+ * @param {*} [options] Override http request option.
25210
+ * @throws {RequiredError}
25211
+ */
25212
+ v1CreditPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DataTypesCreditPlan>>>;
25138
25213
  };
25139
25214
  /**
25140
25215
  * PaymentGatewayApi - factory interface
@@ -25142,20 +25217,20 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
25142
25217
  */
25143
25218
  export declare const PaymentGatewayApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
25144
25219
  /**
25145
- * Creates a payment order using specified or default payment gateway
25146
- * @summary Create a new payment order
25147
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
25220
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
25221
+ * @summary Get available credit plans
25148
25222
  * @param {*} [options] Override http request option.
25149
25223
  * @throws {RequiredError}
25150
25224
  */
25151
- paymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCreatePaymentOrderResponse>;
25225
+ adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<DataTypesCreditPlan>>;
25152
25226
  /**
25153
- * Returns list of all active credit plans for purchase
25154
- * @summary Get available credit plans
25227
+ * Creates a payment order using specified or default payment gateway
25228
+ * @summary Create a new payment order
25229
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
25155
25230
  * @param {*} [options] Override http request option.
25156
25231
  * @throws {RequiredError}
25157
25232
  */
25158
- paymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<DataTypesCreditPlan>>;
25233
+ paymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCreatePaymentOrderResponse>;
25159
25234
  /**
25160
25235
  * Returns list of all available payment gateways
25161
25236
  * @summary Get available payment gateways
@@ -25179,6 +25254,13 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
25179
25254
  * @throws {RequiredError}
25180
25255
  */
25181
25256
  paymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentStatusResponse>;
25257
+ /**
25258
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
25259
+ * @summary Get available credit plans
25260
+ * @param {*} [options] Override http request option.
25261
+ * @throws {RequiredError}
25262
+ */
25263
+ v1CreditPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<DataTypesCreditPlan>>;
25182
25264
  };
25183
25265
  /**
25184
25266
  * PaymentGatewayApi - object-oriented interface
@@ -25188,22 +25270,22 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
25188
25270
  */
25189
25271
  export declare class PaymentGatewayApi extends BaseAPI {
25190
25272
  /**
25191
- * Creates a payment order using specified or default payment gateway
25192
- * @summary Create a new payment order
25193
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
25273
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
25274
+ * @summary Get available credit plans
25194
25275
  * @param {*} [options] Override http request option.
25195
25276
  * @throws {RequiredError}
25196
25277
  * @memberof PaymentGatewayApi
25197
25278
  */
25198
- paymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreatePaymentOrderResponse, any, {}>>;
25279
+ adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreditPlan[], any, {}>>;
25199
25280
  /**
25200
- * Returns list of all active credit plans for purchase
25201
- * @summary Get available credit plans
25281
+ * Creates a payment order using specified or default payment gateway
25282
+ * @summary Create a new payment order
25283
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
25202
25284
  * @param {*} [options] Override http request option.
25203
25285
  * @throws {RequiredError}
25204
25286
  * @memberof PaymentGatewayApi
25205
25287
  */
25206
- paymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreditPlan[], any, {}>>;
25288
+ paymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreatePaymentOrderResponse, any, {}>>;
25207
25289
  /**
25208
25290
  * Returns list of all available payment gateways
25209
25291
  * @summary Get available payment gateways
@@ -25230,6 +25312,14 @@ export declare class PaymentGatewayApi extends BaseAPI {
25230
25312
  * @memberof PaymentGatewayApi
25231
25313
  */
25232
25314
  paymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusResponse, any, {}>>;
25315
+ /**
25316
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
25317
+ * @summary Get available credit plans
25318
+ * @param {*} [options] Override http request option.
25319
+ * @throws {RequiredError}
25320
+ * @memberof PaymentGatewayApi
25321
+ */
25322
+ v1CreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreditPlan[], any, {}>>;
25233
25323
  }
25234
25324
  /**
25235
25325
  * PaymentsApi - axios parameter creator