@infisale-client/api-client 1.3.9 → 1.3.10
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/api.d.ts +69 -56
- package/dist/api/api.js +4 -3
- package/dist/api/api.mjs +4 -3
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2086,10 +2086,10 @@ export interface ICompany {
|
|
|
2086
2086
|
'dnsZoneDomain'?: string;
|
|
2087
2087
|
/**
|
|
2088
2088
|
*
|
|
2089
|
-
* @type {
|
|
2089
|
+
* @type {RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean}
|
|
2090
2090
|
* @memberof ICompany
|
|
2091
2091
|
*/
|
|
2092
|
-
'customPaymentMethods':
|
|
2092
|
+
'customPaymentMethods': RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean;
|
|
2093
2093
|
/**
|
|
2094
2094
|
*
|
|
2095
2095
|
* @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
|
|
@@ -2413,10 +2413,10 @@ export interface ICompanyAdminResponse {
|
|
|
2413
2413
|
'dnsZoneDomain'?: string;
|
|
2414
2414
|
/**
|
|
2415
2415
|
*
|
|
2416
|
-
* @type {
|
|
2416
|
+
* @type {RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean}
|
|
2417
2417
|
* @memberof ICompanyAdminResponse
|
|
2418
2418
|
*/
|
|
2419
|
-
'customPaymentMethods':
|
|
2419
|
+
'customPaymentMethods': RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean;
|
|
2420
2420
|
/**
|
|
2421
2421
|
*
|
|
2422
2422
|
* @type {{ [key: string]: string; }}
|
|
@@ -2717,6 +2717,12 @@ export interface ICompanyAvailablePaymentGatewaysResponse {
|
|
|
2717
2717
|
* @interface ICompanyAvailablePaymentGatewaysResponseDataInner
|
|
2718
2718
|
*/
|
|
2719
2719
|
export interface ICompanyAvailablePaymentGatewaysResponseDataInner {
|
|
2720
|
+
/**
|
|
2721
|
+
*
|
|
2722
|
+
* @type {string}
|
|
2723
|
+
* @memberof ICompanyAvailablePaymentGatewaysResponseDataInner
|
|
2724
|
+
*/
|
|
2725
|
+
'info'?: string;
|
|
2720
2726
|
/**
|
|
2721
2727
|
*
|
|
2722
2728
|
* @type {number}
|
|
@@ -3119,10 +3125,10 @@ export interface ICompanyPatchRequest {
|
|
|
3119
3125
|
'dnsZoneDomain'?: string;
|
|
3120
3126
|
/**
|
|
3121
3127
|
*
|
|
3122
|
-
* @type {
|
|
3128
|
+
* @type {RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean}
|
|
3123
3129
|
* @memberof ICompanyPatchRequest
|
|
3124
3130
|
*/
|
|
3125
|
-
'customPaymentMethods'?:
|
|
3131
|
+
'customPaymentMethods'?: RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean;
|
|
3126
3132
|
/**
|
|
3127
3133
|
*
|
|
3128
3134
|
* @type {{ [key: string]: string; }}
|
|
@@ -3464,10 +3470,10 @@ export interface ICompanyResponse {
|
|
|
3464
3470
|
'dnsZoneDomain'?: string;
|
|
3465
3471
|
/**
|
|
3466
3472
|
*
|
|
3467
|
-
* @type {
|
|
3473
|
+
* @type {RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean}
|
|
3468
3474
|
* @memberof ICompanyResponse
|
|
3469
3475
|
*/
|
|
3470
|
-
'customPaymentMethods':
|
|
3476
|
+
'customPaymentMethods': RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean;
|
|
3471
3477
|
/**
|
|
3472
3478
|
*
|
|
3473
3479
|
* @type {{ [key: string]: string; }}
|
|
@@ -9226,53 +9232,9 @@ export declare const PageTypeEnum: {
|
|
|
9226
9232
|
readonly CHECKOUT: "checkout";
|
|
9227
9233
|
readonly SEARCH: "search";
|
|
9228
9234
|
readonly NOT_FOUND: "not-found";
|
|
9229
|
-
readonly
|
|
9235
|
+
readonly BLOGS: "blogs";
|
|
9230
9236
|
};
|
|
9231
9237
|
export type PageTypeEnum = typeof PageTypeEnum[keyof typeof PageTypeEnum];
|
|
9232
|
-
/**
|
|
9233
|
-
* Make all properties in T optional
|
|
9234
|
-
* @export
|
|
9235
|
-
* @interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
|
|
9236
|
-
*/
|
|
9237
|
-
export interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString {
|
|
9238
|
-
/**
|
|
9239
|
-
*
|
|
9240
|
-
* @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer}
|
|
9241
|
-
* @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
|
|
9242
|
-
*/
|
|
9243
|
-
'bank_transfer'?: PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer;
|
|
9244
|
-
/**
|
|
9245
|
-
*
|
|
9246
|
-
* @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer}
|
|
9247
|
-
* @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
|
|
9248
|
-
*/
|
|
9249
|
-
'cash_on_delivery'?: PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer;
|
|
9250
|
-
/**
|
|
9251
|
-
*
|
|
9252
|
-
* @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer}
|
|
9253
|
-
* @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
|
|
9254
|
-
*/
|
|
9255
|
-
'card_on_delivery'?: PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer;
|
|
9256
|
-
}
|
|
9257
|
-
/**
|
|
9258
|
-
*
|
|
9259
|
-
* @export
|
|
9260
|
-
* @interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer
|
|
9261
|
-
*/
|
|
9262
|
-
export interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer {
|
|
9263
|
-
/**
|
|
9264
|
-
*
|
|
9265
|
-
* @type {string}
|
|
9266
|
-
* @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer
|
|
9267
|
-
*/
|
|
9268
|
-
'info': string;
|
|
9269
|
-
/**
|
|
9270
|
-
*
|
|
9271
|
-
* @type {number}
|
|
9272
|
-
* @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer
|
|
9273
|
-
*/
|
|
9274
|
-
'extraFee': number;
|
|
9275
|
-
}
|
|
9276
9238
|
/**
|
|
9277
9239
|
* Make all properties in T optional
|
|
9278
9240
|
* @export
|
|
@@ -9395,6 +9357,7 @@ export declare const PaymentGatewayEnum: {
|
|
|
9395
9357
|
readonly IYZICO: "iyzico";
|
|
9396
9358
|
readonly PAYTR: "paytr";
|
|
9397
9359
|
readonly PAPARA: "papara";
|
|
9360
|
+
readonly STRIPE: "stripe";
|
|
9398
9361
|
};
|
|
9399
9362
|
export type PaymentGatewayEnum = typeof PaymentGatewayEnum[keyof typeof PaymentGatewayEnum];
|
|
9400
9363
|
/**
|
|
@@ -9875,10 +9838,10 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
9875
9838
|
'dnsZoneDomain'?: string;
|
|
9876
9839
|
/**
|
|
9877
9840
|
*
|
|
9878
|
-
* @type {
|
|
9841
|
+
* @type {RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean}
|
|
9879
9842
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9880
9843
|
*/
|
|
9881
|
-
'customPaymentMethods':
|
|
9844
|
+
'customPaymentMethods': RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean;
|
|
9882
9845
|
/**
|
|
9883
9846
|
*
|
|
9884
9847
|
* @type {{ [key: string]: string; }}
|
|
@@ -11751,6 +11714,56 @@ export interface RecordCurrencyEnumNumber {
|
|
|
11751
11714
|
*/
|
|
11752
11715
|
'jpy': number;
|
|
11753
11716
|
}
|
|
11717
|
+
/**
|
|
11718
|
+
* Construct a type with a set of properties K of type T
|
|
11719
|
+
* @export
|
|
11720
|
+
* @interface RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean
|
|
11721
|
+
*/
|
|
11722
|
+
export interface RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean {
|
|
11723
|
+
/**
|
|
11724
|
+
*
|
|
11725
|
+
* @type {RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBooleanBankTransfer}
|
|
11726
|
+
* @memberof RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean
|
|
11727
|
+
*/
|
|
11728
|
+
'bank_transfer': RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBooleanBankTransfer;
|
|
11729
|
+
/**
|
|
11730
|
+
*
|
|
11731
|
+
* @type {RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBooleanBankTransfer}
|
|
11732
|
+
* @memberof RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean
|
|
11733
|
+
*/
|
|
11734
|
+
'cash_on_delivery': RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBooleanBankTransfer;
|
|
11735
|
+
/**
|
|
11736
|
+
*
|
|
11737
|
+
* @type {RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBooleanBankTransfer}
|
|
11738
|
+
* @memberof RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBoolean
|
|
11739
|
+
*/
|
|
11740
|
+
'card_on_delivery': RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBooleanBankTransfer;
|
|
11741
|
+
}
|
|
11742
|
+
/**
|
|
11743
|
+
*
|
|
11744
|
+
* @export
|
|
11745
|
+
* @interface RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBooleanBankTransfer
|
|
11746
|
+
*/
|
|
11747
|
+
export interface RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBooleanBankTransfer {
|
|
11748
|
+
/**
|
|
11749
|
+
*
|
|
11750
|
+
* @type {boolean}
|
|
11751
|
+
* @memberof RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBooleanBankTransfer
|
|
11752
|
+
*/
|
|
11753
|
+
'active': boolean;
|
|
11754
|
+
/**
|
|
11755
|
+
*
|
|
11756
|
+
* @type {string}
|
|
11757
|
+
* @memberof RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBooleanBankTransfer
|
|
11758
|
+
*/
|
|
11759
|
+
'info': string;
|
|
11760
|
+
/**
|
|
11761
|
+
*
|
|
11762
|
+
* @type {number}
|
|
11763
|
+
* @memberof RecordCustomPaymentMethodEnumExtraFeeNumberInfoStringActiveBooleanBankTransfer
|
|
11764
|
+
*/
|
|
11765
|
+
'extraFee': number;
|
|
11766
|
+
}
|
|
11754
11767
|
/**
|
|
11755
11768
|
* Construct a type with a set of properties K of type T
|
|
11756
11769
|
* @export
|
|
@@ -11979,7 +11992,7 @@ export declare const TemplateTypeEnum: {
|
|
|
11979
11992
|
readonly NOT_FOUND: "not-found";
|
|
11980
11993
|
readonly BLOG: "blog";
|
|
11981
11994
|
readonly SEARCH: "search";
|
|
11982
|
-
readonly
|
|
11995
|
+
readonly BLOGS: "blogs";
|
|
11983
11996
|
};
|
|
11984
11997
|
export type TemplateTypeEnum = typeof TemplateTypeEnum[keyof typeof TemplateTypeEnum];
|
|
11985
11998
|
/**
|
package/dist/api/api.js
CHANGED
|
@@ -611,7 +611,7 @@ exports.PageTypeEnum = {
|
|
|
611
611
|
CHECKOUT: 'checkout',
|
|
612
612
|
SEARCH: 'search',
|
|
613
613
|
NOT_FOUND: 'not-found',
|
|
614
|
-
|
|
614
|
+
BLOGS: 'blogs'
|
|
615
615
|
};
|
|
616
616
|
/**
|
|
617
617
|
*
|
|
@@ -621,7 +621,8 @@ exports.PageTypeEnum = {
|
|
|
621
621
|
exports.PaymentGatewayEnum = {
|
|
622
622
|
IYZICO: 'iyzico',
|
|
623
623
|
PAYTR: 'paytr',
|
|
624
|
-
PAPARA: 'papara'
|
|
624
|
+
PAPARA: 'papara',
|
|
625
|
+
STRIPE: 'stripe'
|
|
625
626
|
};
|
|
626
627
|
/**
|
|
627
628
|
*
|
|
@@ -722,7 +723,7 @@ exports.TemplateTypeEnum = {
|
|
|
722
723
|
NOT_FOUND: 'not-found',
|
|
723
724
|
BLOG: 'blog',
|
|
724
725
|
SEARCH: 'search',
|
|
725
|
-
|
|
726
|
+
BLOGS: 'blogs'
|
|
726
727
|
};
|
|
727
728
|
/**
|
|
728
729
|
*
|
package/dist/api/api.mjs
CHANGED
|
@@ -600,7 +600,7 @@ export const PageTypeEnum = {
|
|
|
600
600
|
CHECKOUT: 'checkout',
|
|
601
601
|
SEARCH: 'search',
|
|
602
602
|
NOT_FOUND: 'not-found',
|
|
603
|
-
|
|
603
|
+
BLOGS: 'blogs'
|
|
604
604
|
};
|
|
605
605
|
/**
|
|
606
606
|
*
|
|
@@ -610,7 +610,8 @@ export const PageTypeEnum = {
|
|
|
610
610
|
export const PaymentGatewayEnum = {
|
|
611
611
|
IYZICO: 'iyzico',
|
|
612
612
|
PAYTR: 'paytr',
|
|
613
|
-
PAPARA: 'papara'
|
|
613
|
+
PAPARA: 'papara',
|
|
614
|
+
STRIPE: 'stripe'
|
|
614
615
|
};
|
|
615
616
|
/**
|
|
616
617
|
*
|
|
@@ -711,7 +712,7 @@ export const TemplateTypeEnum = {
|
|
|
711
712
|
NOT_FOUND: 'not-found',
|
|
712
713
|
BLOG: 'blog',
|
|
713
714
|
SEARCH: 'search',
|
|
714
|
-
|
|
715
|
+
BLOGS: 'blogs'
|
|
715
716
|
};
|
|
716
717
|
/**
|
|
717
718
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.10",
|
|
4
4
|
"description": "api-client-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "f10dccf070093a45b610acb9269f81eee362f599"
|
|
41
41
|
}
|