@infisale-client/api-client 1.3.25 → 1.3.26
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 +50 -95
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2056,14 +2056,6 @@ export interface ICompany {
|
|
|
2056
2056
|
'roles': {
|
|
2057
2057
|
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
2058
2058
|
};
|
|
2059
|
-
/**
|
|
2060
|
-
*
|
|
2061
|
-
* @type {{ [key: string]: string; }}
|
|
2062
|
-
* @memberof ICompany
|
|
2063
|
-
*/
|
|
2064
|
-
'socials'?: {
|
|
2065
|
-
[key: string]: string;
|
|
2066
|
-
};
|
|
2067
2059
|
/**
|
|
2068
2060
|
*
|
|
2069
2061
|
* @type {string}
|
|
@@ -2174,12 +2166,6 @@ export interface ICompany {
|
|
|
2174
2166
|
* @memberof ICompany
|
|
2175
2167
|
*/
|
|
2176
2168
|
'firebaseAdminCredentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
2177
|
-
/**
|
|
2178
|
-
*
|
|
2179
|
-
* @type {ICompanyResponseAddress}
|
|
2180
|
-
* @memberof ICompany
|
|
2181
|
-
*/
|
|
2182
|
-
'address'?: ICompanyResponseAddress;
|
|
2183
2169
|
/**
|
|
2184
2170
|
*
|
|
2185
2171
|
* @type {Array<ICompanyResponseCustomHostnamesInner>}
|
|
@@ -2363,14 +2349,6 @@ export interface ICompanyAdminResponse {
|
|
|
2363
2349
|
* @memberof ICompanyAdminResponse
|
|
2364
2350
|
*/
|
|
2365
2351
|
'customPaymentMethods': RecordCustomPaymentMethodEnumExtraFeeNumberInfoPartialRecordLanguageEnumStringActiveBoolean;
|
|
2366
|
-
/**
|
|
2367
|
-
*
|
|
2368
|
-
* @type {{ [key: string]: string; }}
|
|
2369
|
-
* @memberof ICompanyAdminResponse
|
|
2370
|
-
*/
|
|
2371
|
-
'socials'?: {
|
|
2372
|
-
[key: string]: string;
|
|
2373
|
-
};
|
|
2374
2352
|
/**
|
|
2375
2353
|
*
|
|
2376
2354
|
* @type {string}
|
|
@@ -2557,12 +2535,6 @@ export interface ICompanyAdminResponse {
|
|
|
2557
2535
|
* @memberof ICompanyAdminResponse
|
|
2558
2536
|
*/
|
|
2559
2537
|
'firebaseAdminCredentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
2560
|
-
/**
|
|
2561
|
-
*
|
|
2562
|
-
* @type {ICompanyResponseAddress}
|
|
2563
|
-
* @memberof ICompanyAdminResponse
|
|
2564
|
-
*/
|
|
2565
|
-
'address'?: ICompanyResponseAddress;
|
|
2566
2538
|
/**
|
|
2567
2539
|
*
|
|
2568
2540
|
* @type {Array<ICompanyResponseCustomHostnamesInner>}
|
|
@@ -2971,6 +2943,56 @@ export interface ICompanyDashboardResponseOrdersInner {
|
|
|
2971
2943
|
*/
|
|
2972
2944
|
'date': string;
|
|
2973
2945
|
}
|
|
2946
|
+
/**
|
|
2947
|
+
*
|
|
2948
|
+
* @export
|
|
2949
|
+
* @interface ICompanyMonthlyBandwidth
|
|
2950
|
+
*/
|
|
2951
|
+
export interface ICompanyMonthlyBandwidth {
|
|
2952
|
+
/**
|
|
2953
|
+
*
|
|
2954
|
+
* @type {string}
|
|
2955
|
+
* @memberof ICompanyMonthlyBandwidth
|
|
2956
|
+
*/
|
|
2957
|
+
'_id': string;
|
|
2958
|
+
/**
|
|
2959
|
+
*
|
|
2960
|
+
* @type {string}
|
|
2961
|
+
* @memberof ICompanyMonthlyBandwidth
|
|
2962
|
+
*/
|
|
2963
|
+
'company': string;
|
|
2964
|
+
/**
|
|
2965
|
+
*
|
|
2966
|
+
* @type {number}
|
|
2967
|
+
* @memberof ICompanyMonthlyBandwidth
|
|
2968
|
+
*/
|
|
2969
|
+
'year': number;
|
|
2970
|
+
/**
|
|
2971
|
+
*
|
|
2972
|
+
* @type {number}
|
|
2973
|
+
* @memberof ICompanyMonthlyBandwidth
|
|
2974
|
+
*/
|
|
2975
|
+
'month': number;
|
|
2976
|
+
/**
|
|
2977
|
+
*
|
|
2978
|
+
* @type {number}
|
|
2979
|
+
* @memberof ICompanyMonthlyBandwidth
|
|
2980
|
+
*/
|
|
2981
|
+
'bandwidth': number;
|
|
2982
|
+
}
|
|
2983
|
+
/**
|
|
2984
|
+
*
|
|
2985
|
+
* @export
|
|
2986
|
+
* @interface ICompanyMonthlyBandwidthResponse
|
|
2987
|
+
*/
|
|
2988
|
+
export interface ICompanyMonthlyBandwidthResponse {
|
|
2989
|
+
/**
|
|
2990
|
+
*
|
|
2991
|
+
* @type {Array<ICompanyMonthlyBandwidth>}
|
|
2992
|
+
* @memberof ICompanyMonthlyBandwidthResponse
|
|
2993
|
+
*/
|
|
2994
|
+
'data': Array<ICompanyMonthlyBandwidth>;
|
|
2995
|
+
}
|
|
2974
2996
|
/**
|
|
2975
2997
|
*
|
|
2976
2998
|
* @export
|
|
@@ -3045,12 +3067,6 @@ export interface ICompanyPatchRequest {
|
|
|
3045
3067
|
* @memberof ICompanyPatchRequest
|
|
3046
3068
|
*/
|
|
3047
3069
|
'warehouses'?: Array<ICompanyPatchRequestWarehousesInner>;
|
|
3048
|
-
/**
|
|
3049
|
-
*
|
|
3050
|
-
* @type {ICompanyResponseAddress}
|
|
3051
|
-
* @memberof ICompanyPatchRequest
|
|
3052
|
-
*/
|
|
3053
|
-
'address'?: ICompanyResponseAddress;
|
|
3054
3070
|
/**
|
|
3055
3071
|
*
|
|
3056
3072
|
* @type {string}
|
|
@@ -3075,14 +3091,6 @@ export interface ICompanyPatchRequest {
|
|
|
3075
3091
|
* @memberof ICompanyPatchRequest
|
|
3076
3092
|
*/
|
|
3077
3093
|
'customPaymentMethods'?: RecordCustomPaymentMethodEnumExtraFeeNumberInfoPartialRecordLanguageEnumStringActiveBoolean;
|
|
3078
|
-
/**
|
|
3079
|
-
*
|
|
3080
|
-
* @type {{ [key: string]: string; }}
|
|
3081
|
-
* @memberof ICompanyPatchRequest
|
|
3082
|
-
*/
|
|
3083
|
-
'socials'?: {
|
|
3084
|
-
[key: string]: string;
|
|
3085
|
-
};
|
|
3086
3094
|
/**
|
|
3087
3095
|
*
|
|
3088
3096
|
* @type {string}
|
|
@@ -3414,14 +3422,6 @@ export interface ICompanyResponse {
|
|
|
3414
3422
|
* @memberof ICompanyResponse
|
|
3415
3423
|
*/
|
|
3416
3424
|
'customPaymentMethods': RecordCustomPaymentMethodEnumExtraFeeNumberInfoPartialRecordLanguageEnumStringActiveBoolean;
|
|
3417
|
-
/**
|
|
3418
|
-
*
|
|
3419
|
-
* @type {{ [key: string]: string; }}
|
|
3420
|
-
* @memberof ICompanyResponse
|
|
3421
|
-
*/
|
|
3422
|
-
'socials'?: {
|
|
3423
|
-
[key: string]: string;
|
|
3424
|
-
};
|
|
3425
3425
|
/**
|
|
3426
3426
|
*
|
|
3427
3427
|
* @type {string}
|
|
@@ -3588,12 +3588,6 @@ export interface ICompanyResponse {
|
|
|
3588
3588
|
* @memberof ICompanyResponse
|
|
3589
3589
|
*/
|
|
3590
3590
|
'firebaseAdminCredentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
3591
|
-
/**
|
|
3592
|
-
*
|
|
3593
|
-
* @type {ICompanyResponseAddress}
|
|
3594
|
-
* @memberof ICompanyResponse
|
|
3595
|
-
*/
|
|
3596
|
-
'address'?: ICompanyResponseAddress;
|
|
3597
3591
|
/**
|
|
3598
3592
|
*
|
|
3599
3593
|
* @type {Array<ICompanyResponseCustomHostnamesInner>}
|
|
@@ -3607,37 +3601,6 @@ export interface ICompanyResponse {
|
|
|
3607
3601
|
*/
|
|
3608
3602
|
'totalBandwidth': number;
|
|
3609
3603
|
}
|
|
3610
|
-
/**
|
|
3611
|
-
*
|
|
3612
|
-
* @export
|
|
3613
|
-
* @interface ICompanyResponseAddress
|
|
3614
|
-
*/
|
|
3615
|
-
export interface ICompanyResponseAddress {
|
|
3616
|
-
/**
|
|
3617
|
-
*
|
|
3618
|
-
* @type {string}
|
|
3619
|
-
* @memberof ICompanyResponseAddress
|
|
3620
|
-
*/
|
|
3621
|
-
'description': string;
|
|
3622
|
-
/**
|
|
3623
|
-
*
|
|
3624
|
-
* @type {string}
|
|
3625
|
-
* @memberof ICompanyResponseAddress
|
|
3626
|
-
*/
|
|
3627
|
-
'city': string;
|
|
3628
|
-
/**
|
|
3629
|
-
*
|
|
3630
|
-
* @type {string}
|
|
3631
|
-
* @memberof ICompanyResponseAddress
|
|
3632
|
-
*/
|
|
3633
|
-
'state': string;
|
|
3634
|
-
/**
|
|
3635
|
-
*
|
|
3636
|
-
* @type {string}
|
|
3637
|
-
* @memberof ICompanyResponseAddress
|
|
3638
|
-
*/
|
|
3639
|
-
'country': string;
|
|
3640
|
-
}
|
|
3641
3604
|
/**
|
|
3642
3605
|
*
|
|
3643
3606
|
* @export
|
|
@@ -10189,14 +10152,6 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
10189
10152
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10190
10153
|
*/
|
|
10191
10154
|
'customPaymentMethods': RecordCustomPaymentMethodEnumExtraFeeNumberInfoPartialRecordLanguageEnumStringActiveBoolean;
|
|
10192
|
-
/**
|
|
10193
|
-
*
|
|
10194
|
-
* @type {{ [key: string]: string; }}
|
|
10195
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10196
|
-
*/
|
|
10197
|
-
'socials'?: {
|
|
10198
|
-
[key: string]: string;
|
|
10199
|
-
};
|
|
10200
10155
|
/**
|
|
10201
10156
|
*
|
|
10202
10157
|
* @type {string}
|
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.26",
|
|
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": "aad1d3074b1e8962e88b026acdfa2d08dc9c35cd"
|
|
41
41
|
}
|