@infisale-client/api 1.3.25 → 1.3.27
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 +837 -170
- package/dist/api/api.js +544 -4
- package/dist/api/api.mjs +536 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2069,14 +2069,6 @@ export interface ICompany {
|
|
|
2069
2069
|
'roles': {
|
|
2070
2070
|
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
2071
2071
|
};
|
|
2072
|
-
/**
|
|
2073
|
-
*
|
|
2074
|
-
* @type {{ [key: string]: string; }}
|
|
2075
|
-
* @memberof ICompany
|
|
2076
|
-
*/
|
|
2077
|
-
'socials'?: {
|
|
2078
|
-
[key: string]: string;
|
|
2079
|
-
};
|
|
2080
2072
|
/**
|
|
2081
2073
|
*
|
|
2082
2074
|
* @type {string}
|
|
@@ -2187,12 +2179,6 @@ export interface ICompany {
|
|
|
2187
2179
|
* @memberof ICompany
|
|
2188
2180
|
*/
|
|
2189
2181
|
'firebaseAdminCredentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
2190
|
-
/**
|
|
2191
|
-
*
|
|
2192
|
-
* @type {ICompanyResponseAddress}
|
|
2193
|
-
* @memberof ICompany
|
|
2194
|
-
*/
|
|
2195
|
-
'address'?: ICompanyResponseAddress;
|
|
2196
2182
|
/**
|
|
2197
2183
|
*
|
|
2198
2184
|
* @type {Array<ICompanyResponseCustomHostnamesInner>}
|
|
@@ -2376,14 +2362,6 @@ export interface ICompanyAdminResponse {
|
|
|
2376
2362
|
* @memberof ICompanyAdminResponse
|
|
2377
2363
|
*/
|
|
2378
2364
|
'customPaymentMethods': RecordCustomPaymentMethodEnumExtraFeeNumberInfoPartialRecordLanguageEnumStringActiveBoolean;
|
|
2379
|
-
/**
|
|
2380
|
-
*
|
|
2381
|
-
* @type {{ [key: string]: string; }}
|
|
2382
|
-
* @memberof ICompanyAdminResponse
|
|
2383
|
-
*/
|
|
2384
|
-
'socials'?: {
|
|
2385
|
-
[key: string]: string;
|
|
2386
|
-
};
|
|
2387
2365
|
/**
|
|
2388
2366
|
*
|
|
2389
2367
|
* @type {string}
|
|
@@ -2570,12 +2548,6 @@ export interface ICompanyAdminResponse {
|
|
|
2570
2548
|
* @memberof ICompanyAdminResponse
|
|
2571
2549
|
*/
|
|
2572
2550
|
'firebaseAdminCredentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
2573
|
-
/**
|
|
2574
|
-
*
|
|
2575
|
-
* @type {ICompanyResponseAddress}
|
|
2576
|
-
* @memberof ICompanyAdminResponse
|
|
2577
|
-
*/
|
|
2578
|
-
'address'?: ICompanyResponseAddress;
|
|
2579
2551
|
/**
|
|
2580
2552
|
*
|
|
2581
2553
|
* @type {Array<ICompanyResponseCustomHostnamesInner>}
|
|
@@ -2984,6 +2956,56 @@ export interface ICompanyDashboardResponseOrdersInner {
|
|
|
2984
2956
|
*/
|
|
2985
2957
|
'date': string;
|
|
2986
2958
|
}
|
|
2959
|
+
/**
|
|
2960
|
+
*
|
|
2961
|
+
* @export
|
|
2962
|
+
* @interface ICompanyMonthlyBandwidth
|
|
2963
|
+
*/
|
|
2964
|
+
export interface ICompanyMonthlyBandwidth {
|
|
2965
|
+
/**
|
|
2966
|
+
*
|
|
2967
|
+
* @type {string}
|
|
2968
|
+
* @memberof ICompanyMonthlyBandwidth
|
|
2969
|
+
*/
|
|
2970
|
+
'_id': string;
|
|
2971
|
+
/**
|
|
2972
|
+
*
|
|
2973
|
+
* @type {string}
|
|
2974
|
+
* @memberof ICompanyMonthlyBandwidth
|
|
2975
|
+
*/
|
|
2976
|
+
'company': string;
|
|
2977
|
+
/**
|
|
2978
|
+
*
|
|
2979
|
+
* @type {number}
|
|
2980
|
+
* @memberof ICompanyMonthlyBandwidth
|
|
2981
|
+
*/
|
|
2982
|
+
'year': number;
|
|
2983
|
+
/**
|
|
2984
|
+
*
|
|
2985
|
+
* @type {number}
|
|
2986
|
+
* @memberof ICompanyMonthlyBandwidth
|
|
2987
|
+
*/
|
|
2988
|
+
'month': number;
|
|
2989
|
+
/**
|
|
2990
|
+
*
|
|
2991
|
+
* @type {number}
|
|
2992
|
+
* @memberof ICompanyMonthlyBandwidth
|
|
2993
|
+
*/
|
|
2994
|
+
'bandwidth': number;
|
|
2995
|
+
}
|
|
2996
|
+
/**
|
|
2997
|
+
*
|
|
2998
|
+
* @export
|
|
2999
|
+
* @interface ICompanyMonthlyBandwidthResponse
|
|
3000
|
+
*/
|
|
3001
|
+
export interface ICompanyMonthlyBandwidthResponse {
|
|
3002
|
+
/**
|
|
3003
|
+
*
|
|
3004
|
+
* @type {Array<ICompanyMonthlyBandwidth>}
|
|
3005
|
+
* @memberof ICompanyMonthlyBandwidthResponse
|
|
3006
|
+
*/
|
|
3007
|
+
'data': Array<ICompanyMonthlyBandwidth>;
|
|
3008
|
+
}
|
|
2987
3009
|
/**
|
|
2988
3010
|
*
|
|
2989
3011
|
* @export
|
|
@@ -3058,12 +3080,6 @@ export interface ICompanyPatchRequest {
|
|
|
3058
3080
|
* @memberof ICompanyPatchRequest
|
|
3059
3081
|
*/
|
|
3060
3082
|
'warehouses'?: Array<ICompanyPatchRequestWarehousesInner>;
|
|
3061
|
-
/**
|
|
3062
|
-
*
|
|
3063
|
-
* @type {ICompanyResponseAddress}
|
|
3064
|
-
* @memberof ICompanyPatchRequest
|
|
3065
|
-
*/
|
|
3066
|
-
'address'?: ICompanyResponseAddress;
|
|
3067
3083
|
/**
|
|
3068
3084
|
*
|
|
3069
3085
|
* @type {string}
|
|
@@ -3088,14 +3104,6 @@ export interface ICompanyPatchRequest {
|
|
|
3088
3104
|
* @memberof ICompanyPatchRequest
|
|
3089
3105
|
*/
|
|
3090
3106
|
'customPaymentMethods'?: RecordCustomPaymentMethodEnumExtraFeeNumberInfoPartialRecordLanguageEnumStringActiveBoolean;
|
|
3091
|
-
/**
|
|
3092
|
-
*
|
|
3093
|
-
* @type {{ [key: string]: string; }}
|
|
3094
|
-
* @memberof ICompanyPatchRequest
|
|
3095
|
-
*/
|
|
3096
|
-
'socials'?: {
|
|
3097
|
-
[key: string]: string;
|
|
3098
|
-
};
|
|
3099
3107
|
/**
|
|
3100
3108
|
*
|
|
3101
3109
|
* @type {string}
|
|
@@ -3427,14 +3435,6 @@ export interface ICompanyResponse {
|
|
|
3427
3435
|
* @memberof ICompanyResponse
|
|
3428
3436
|
*/
|
|
3429
3437
|
'customPaymentMethods': RecordCustomPaymentMethodEnumExtraFeeNumberInfoPartialRecordLanguageEnumStringActiveBoolean;
|
|
3430
|
-
/**
|
|
3431
|
-
*
|
|
3432
|
-
* @type {{ [key: string]: string; }}
|
|
3433
|
-
* @memberof ICompanyResponse
|
|
3434
|
-
*/
|
|
3435
|
-
'socials'?: {
|
|
3436
|
-
[key: string]: string;
|
|
3437
|
-
};
|
|
3438
3438
|
/**
|
|
3439
3439
|
*
|
|
3440
3440
|
* @type {string}
|
|
@@ -3601,12 +3601,6 @@ export interface ICompanyResponse {
|
|
|
3601
3601
|
* @memberof ICompanyResponse
|
|
3602
3602
|
*/
|
|
3603
3603
|
'firebaseAdminCredentials'?: ICompanyResponseFirebaseAdminCredentials;
|
|
3604
|
-
/**
|
|
3605
|
-
*
|
|
3606
|
-
* @type {ICompanyResponseAddress}
|
|
3607
|
-
* @memberof ICompanyResponse
|
|
3608
|
-
*/
|
|
3609
|
-
'address'?: ICompanyResponseAddress;
|
|
3610
3604
|
/**
|
|
3611
3605
|
*
|
|
3612
3606
|
* @type {Array<ICompanyResponseCustomHostnamesInner>}
|
|
@@ -3620,37 +3614,6 @@ export interface ICompanyResponse {
|
|
|
3620
3614
|
*/
|
|
3621
3615
|
'totalBandwidth': number;
|
|
3622
3616
|
}
|
|
3623
|
-
/**
|
|
3624
|
-
*
|
|
3625
|
-
* @export
|
|
3626
|
-
* @interface ICompanyResponseAddress
|
|
3627
|
-
*/
|
|
3628
|
-
export interface ICompanyResponseAddress {
|
|
3629
|
-
/**
|
|
3630
|
-
*
|
|
3631
|
-
* @type {string}
|
|
3632
|
-
* @memberof ICompanyResponseAddress
|
|
3633
|
-
*/
|
|
3634
|
-
'description': string;
|
|
3635
|
-
/**
|
|
3636
|
-
*
|
|
3637
|
-
* @type {string}
|
|
3638
|
-
* @memberof ICompanyResponseAddress
|
|
3639
|
-
*/
|
|
3640
|
-
'city': string;
|
|
3641
|
-
/**
|
|
3642
|
-
*
|
|
3643
|
-
* @type {string}
|
|
3644
|
-
* @memberof ICompanyResponseAddress
|
|
3645
|
-
*/
|
|
3646
|
-
'state': string;
|
|
3647
|
-
/**
|
|
3648
|
-
*
|
|
3649
|
-
* @type {string}
|
|
3650
|
-
* @memberof ICompanyResponseAddress
|
|
3651
|
-
*/
|
|
3652
|
-
'country': string;
|
|
3653
|
-
}
|
|
3654
3617
|
/**
|
|
3655
3618
|
*
|
|
3656
3619
|
* @export
|
|
@@ -8698,6 +8661,14 @@ export interface IThemePatchRequest {
|
|
|
8698
8661
|
* @memberof IThemePatchRequest
|
|
8699
8662
|
*/
|
|
8700
8663
|
'assetVersion'?: number;
|
|
8664
|
+
/**
|
|
8665
|
+
* Construct a type with a set of properties K of type T
|
|
8666
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
|
|
8667
|
+
* @memberof IThemePatchRequest
|
|
8668
|
+
*/
|
|
8669
|
+
'componentConfigIndex'?: {
|
|
8670
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
8671
|
+
};
|
|
8701
8672
|
}
|
|
8702
8673
|
/**
|
|
8703
8674
|
*
|
|
@@ -8751,6 +8722,14 @@ export interface IThemePostRequest {
|
|
|
8751
8722
|
* @memberof IThemePostRequest
|
|
8752
8723
|
*/
|
|
8753
8724
|
'assetVersion': number;
|
|
8725
|
+
/**
|
|
8726
|
+
* Construct a type with a set of properties K of type T
|
|
8727
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
|
|
8728
|
+
* @memberof IThemePostRequest
|
|
8729
|
+
*/
|
|
8730
|
+
'componentConfigIndex': {
|
|
8731
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
8732
|
+
};
|
|
8754
8733
|
}
|
|
8755
8734
|
/**
|
|
8756
8735
|
*
|
|
@@ -8854,6 +8833,14 @@ export interface IThemeResponse {
|
|
|
8854
8833
|
* @memberof IThemeResponse
|
|
8855
8834
|
*/
|
|
8856
8835
|
'assetVersion': number;
|
|
8836
|
+
/**
|
|
8837
|
+
* Construct a type with a set of properties K of type T
|
|
8838
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
|
|
8839
|
+
* @memberof IThemeResponse
|
|
8840
|
+
*/
|
|
8841
|
+
'componentConfigIndex': {
|
|
8842
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
8843
|
+
};
|
|
8857
8844
|
}
|
|
8858
8845
|
/**
|
|
8859
8846
|
*
|
|
@@ -9080,194 +9067,431 @@ export interface IUniquePagesResponse {
|
|
|
9080
9067
|
/**
|
|
9081
9068
|
*
|
|
9082
9069
|
* @export
|
|
9083
|
-
* @interface
|
|
9070
|
+
* @interface IUrlRedirect
|
|
9084
9071
|
*/
|
|
9085
|
-
export interface
|
|
9072
|
+
export interface IUrlRedirect {
|
|
9086
9073
|
/**
|
|
9087
9074
|
*
|
|
9088
|
-
* @type {
|
|
9089
|
-
* @memberof
|
|
9075
|
+
* @type {string}
|
|
9076
|
+
* @memberof IUrlRedirect
|
|
9090
9077
|
*/
|
|
9091
|
-
'
|
|
9078
|
+
'_id': string;
|
|
9079
|
+
/**
|
|
9080
|
+
*
|
|
9081
|
+
* @type {number}
|
|
9082
|
+
* @memberof IUrlRedirect
|
|
9083
|
+
*/
|
|
9084
|
+
'__v': number;
|
|
9085
|
+
/**
|
|
9086
|
+
*
|
|
9087
|
+
* @type {string}
|
|
9088
|
+
* @memberof IUrlRedirect
|
|
9089
|
+
*/
|
|
9090
|
+
'createdAt': string;
|
|
9091
|
+
/**
|
|
9092
|
+
*
|
|
9093
|
+
* @type {string}
|
|
9094
|
+
* @memberof IUrlRedirect
|
|
9095
|
+
*/
|
|
9096
|
+
'updatedAt': string;
|
|
9097
|
+
/**
|
|
9098
|
+
*
|
|
9099
|
+
* @type {string}
|
|
9100
|
+
* @memberof IUrlRedirect
|
|
9101
|
+
*/
|
|
9102
|
+
'company': string;
|
|
9103
|
+
/**
|
|
9104
|
+
*
|
|
9105
|
+
* @type {string}
|
|
9106
|
+
* @memberof IUrlRedirect
|
|
9107
|
+
*/
|
|
9108
|
+
'from': string;
|
|
9109
|
+
/**
|
|
9110
|
+
*
|
|
9111
|
+
* @type {string}
|
|
9112
|
+
* @memberof IUrlRedirect
|
|
9113
|
+
*/
|
|
9114
|
+
'to': string;
|
|
9092
9115
|
}
|
|
9093
9116
|
/**
|
|
9094
9117
|
*
|
|
9095
9118
|
* @export
|
|
9096
|
-
* @interface
|
|
9119
|
+
* @interface IUrlRedirectCollectionQueryParams
|
|
9097
9120
|
*/
|
|
9098
|
-
export interface
|
|
9121
|
+
export interface IUrlRedirectCollectionQueryParams {
|
|
9122
|
+
/**
|
|
9123
|
+
*
|
|
9124
|
+
* @type {OrderEnum}
|
|
9125
|
+
* @memberof IUrlRedirectCollectionQueryParams
|
|
9126
|
+
*/
|
|
9127
|
+
'order'?: OrderEnum;
|
|
9099
9128
|
/**
|
|
9100
9129
|
*
|
|
9101
9130
|
* @type {number}
|
|
9102
|
-
* @memberof
|
|
9131
|
+
* @memberof IUrlRedirectCollectionQueryParams
|
|
9103
9132
|
*/
|
|
9104
9133
|
'page'?: number;
|
|
9105
9134
|
/**
|
|
9106
9135
|
*
|
|
9107
9136
|
* @type {number}
|
|
9108
|
-
* @memberof
|
|
9137
|
+
* @memberof IUrlRedirectCollectionQueryParams
|
|
9109
9138
|
*/
|
|
9110
9139
|
'itemsPerPage'?: number;
|
|
9111
9140
|
/**
|
|
9112
9141
|
*
|
|
9113
9142
|
* @type {string}
|
|
9114
|
-
* @memberof
|
|
9143
|
+
* @memberof IUrlRedirectCollectionQueryParams
|
|
9115
9144
|
*/
|
|
9116
9145
|
'search'?: string;
|
|
9117
9146
|
/**
|
|
9118
9147
|
*
|
|
9119
9148
|
* @type {string}
|
|
9120
|
-
* @memberof
|
|
9149
|
+
* @memberof IUrlRedirectCollectionQueryParams
|
|
9121
9150
|
*/
|
|
9122
9151
|
'startDate'?: string;
|
|
9123
9152
|
/**
|
|
9124
9153
|
*
|
|
9125
9154
|
* @type {string}
|
|
9126
|
-
* @memberof
|
|
9155
|
+
* @memberof IUrlRedirectCollectionQueryParams
|
|
9127
9156
|
*/
|
|
9128
9157
|
'endDate'?: string;
|
|
9129
9158
|
/**
|
|
9130
9159
|
*
|
|
9131
9160
|
* @type {string}
|
|
9132
|
-
* @memberof
|
|
9161
|
+
* @memberof IUrlRedirectCollectionQueryParams
|
|
9133
9162
|
*/
|
|
9134
|
-
'dateField'?:
|
|
9163
|
+
'dateField'?: IUrlRedirectCollectionQueryParamsDateFieldEnum;
|
|
9135
9164
|
/**
|
|
9136
9165
|
*
|
|
9137
|
-
* @type {
|
|
9138
|
-
* @memberof
|
|
9166
|
+
* @type {string}
|
|
9167
|
+
* @memberof IUrlRedirectCollectionQueryParams
|
|
9139
9168
|
*/
|
|
9140
|
-
'
|
|
9169
|
+
'company': string;
|
|
9141
9170
|
/**
|
|
9142
9171
|
*
|
|
9143
9172
|
* @type {string}
|
|
9144
|
-
* @memberof
|
|
9173
|
+
* @memberof IUrlRedirectCollectionQueryParams
|
|
9145
9174
|
*/
|
|
9146
|
-
'
|
|
9175
|
+
'createdAt'?: string;
|
|
9147
9176
|
/**
|
|
9148
9177
|
*
|
|
9149
|
-
* @type {
|
|
9150
|
-
* @memberof
|
|
9178
|
+
* @type {string}
|
|
9179
|
+
* @memberof IUrlRedirectCollectionQueryParams
|
|
9151
9180
|
*/
|
|
9152
|
-
'
|
|
9181
|
+
'sort'?: IUrlRedirectCollectionQueryParamsSortEnum;
|
|
9153
9182
|
}
|
|
9154
|
-
export declare const
|
|
9183
|
+
export declare const IUrlRedirectCollectionQueryParamsDateFieldEnum: {
|
|
9155
9184
|
readonly CREATED_AT: "createdAt";
|
|
9156
9185
|
readonly UPDATED_AT: "updatedAt";
|
|
9157
9186
|
};
|
|
9158
|
-
export type
|
|
9187
|
+
export type IUrlRedirectCollectionQueryParamsDateFieldEnum = typeof IUrlRedirectCollectionQueryParamsDateFieldEnum[keyof typeof IUrlRedirectCollectionQueryParamsDateFieldEnum];
|
|
9188
|
+
export declare const IUrlRedirectCollectionQueryParamsSortEnum: {
|
|
9189
|
+
readonly CREATED_AT: "createdAt";
|
|
9190
|
+
readonly FROM: "from";
|
|
9191
|
+
};
|
|
9192
|
+
export type IUrlRedirectCollectionQueryParamsSortEnum = typeof IUrlRedirectCollectionQueryParamsSortEnum[keyof typeof IUrlRedirectCollectionQueryParamsSortEnum];
|
|
9159
9193
|
/**
|
|
9160
9194
|
*
|
|
9161
9195
|
* @export
|
|
9162
|
-
* @interface
|
|
9196
|
+
* @interface IUrlRedirectPostRequest
|
|
9163
9197
|
*/
|
|
9164
|
-
export interface
|
|
9198
|
+
export interface IUrlRedirectPostRequest {
|
|
9165
9199
|
/**
|
|
9166
9200
|
*
|
|
9167
9201
|
* @type {string}
|
|
9168
|
-
* @memberof
|
|
9202
|
+
* @memberof IUrlRedirectPostRequest
|
|
9169
9203
|
*/
|
|
9170
|
-
'
|
|
9204
|
+
'company': string;
|
|
9171
9205
|
/**
|
|
9172
9206
|
*
|
|
9173
9207
|
* @type {string}
|
|
9174
|
-
* @memberof
|
|
9208
|
+
* @memberof IUrlRedirectPostRequest
|
|
9175
9209
|
*/
|
|
9176
|
-
'
|
|
9210
|
+
'from': string;
|
|
9177
9211
|
/**
|
|
9178
9212
|
*
|
|
9179
9213
|
* @type {string}
|
|
9180
|
-
* @memberof
|
|
9214
|
+
* @memberof IUrlRedirectPostRequest
|
|
9181
9215
|
*/
|
|
9182
|
-
'
|
|
9216
|
+
'to': string;
|
|
9217
|
+
}
|
|
9218
|
+
/**
|
|
9219
|
+
*
|
|
9220
|
+
* @export
|
|
9221
|
+
* @interface IUrlRedirectResponse
|
|
9222
|
+
*/
|
|
9223
|
+
export interface IUrlRedirectResponse {
|
|
9183
9224
|
/**
|
|
9184
9225
|
*
|
|
9185
|
-
* @type {
|
|
9186
|
-
* @memberof
|
|
9226
|
+
* @type {string}
|
|
9227
|
+
* @memberof IUrlRedirectResponse
|
|
9187
9228
|
*/
|
|
9188
|
-
'
|
|
9229
|
+
'_id': string;
|
|
9189
9230
|
/**
|
|
9190
9231
|
*
|
|
9191
|
-
* @type {
|
|
9192
|
-
* @memberof
|
|
9232
|
+
* @type {number}
|
|
9233
|
+
* @memberof IUrlRedirectResponse
|
|
9193
9234
|
*/
|
|
9194
|
-
'
|
|
9195
|
-
}
|
|
9196
|
-
/**
|
|
9197
|
-
*
|
|
9198
|
-
* @export
|
|
9199
|
-
* @interface IUserPostRequest
|
|
9200
|
-
*/
|
|
9201
|
-
export interface IUserPostRequest {
|
|
9235
|
+
'__v': number;
|
|
9202
9236
|
/**
|
|
9203
9237
|
*
|
|
9204
9238
|
* @type {string}
|
|
9205
|
-
* @memberof
|
|
9239
|
+
* @memberof IUrlRedirectResponse
|
|
9206
9240
|
*/
|
|
9207
|
-
'
|
|
9241
|
+
'createdAt': string;
|
|
9208
9242
|
/**
|
|
9209
9243
|
*
|
|
9210
9244
|
* @type {string}
|
|
9211
|
-
* @memberof
|
|
9245
|
+
* @memberof IUrlRedirectResponse
|
|
9212
9246
|
*/
|
|
9213
|
-
'
|
|
9247
|
+
'updatedAt': string;
|
|
9214
9248
|
/**
|
|
9215
9249
|
*
|
|
9216
9250
|
* @type {string}
|
|
9217
|
-
* @memberof
|
|
9251
|
+
* @memberof IUrlRedirectResponse
|
|
9218
9252
|
*/
|
|
9219
|
-
'
|
|
9253
|
+
'company': string;
|
|
9220
9254
|
/**
|
|
9221
9255
|
*
|
|
9222
9256
|
* @type {string}
|
|
9223
|
-
* @memberof
|
|
9257
|
+
* @memberof IUrlRedirectResponse
|
|
9224
9258
|
*/
|
|
9225
|
-
'
|
|
9259
|
+
'from': string;
|
|
9226
9260
|
/**
|
|
9227
9261
|
*
|
|
9228
|
-
* @type {
|
|
9229
|
-
* @memberof
|
|
9262
|
+
* @type {string}
|
|
9263
|
+
* @memberof IUrlRedirectResponse
|
|
9230
9264
|
*/
|
|
9231
|
-
'
|
|
9265
|
+
'to': string;
|
|
9232
9266
|
}
|
|
9233
9267
|
/**
|
|
9234
9268
|
*
|
|
9235
9269
|
* @export
|
|
9236
|
-
* @interface
|
|
9270
|
+
* @interface IUrlRedirectsResponse
|
|
9237
9271
|
*/
|
|
9238
|
-
export interface
|
|
9272
|
+
export interface IUrlRedirectsResponse {
|
|
9239
9273
|
/**
|
|
9240
9274
|
*
|
|
9241
|
-
* @type {
|
|
9242
|
-
* @memberof
|
|
9275
|
+
* @type {number}
|
|
9276
|
+
* @memberof IUrlRedirectsResponse
|
|
9243
9277
|
*/
|
|
9244
|
-
'
|
|
9278
|
+
'page': number;
|
|
9245
9279
|
/**
|
|
9246
9280
|
*
|
|
9247
|
-
* @type {
|
|
9248
|
-
* @memberof
|
|
9281
|
+
* @type {number}
|
|
9282
|
+
* @memberof IUrlRedirectsResponse
|
|
9249
9283
|
*/
|
|
9250
|
-
'
|
|
9284
|
+
'itemsPerPage': number;
|
|
9251
9285
|
/**
|
|
9252
9286
|
*
|
|
9253
|
-
* @type {
|
|
9254
|
-
* @memberof
|
|
9287
|
+
* @type {number}
|
|
9288
|
+
* @memberof IUrlRedirectsResponse
|
|
9255
9289
|
*/
|
|
9256
|
-
'
|
|
9290
|
+
'total': number;
|
|
9257
9291
|
/**
|
|
9258
9292
|
*
|
|
9259
|
-
* @type {
|
|
9260
|
-
* @memberof
|
|
9293
|
+
* @type {number}
|
|
9294
|
+
* @memberof IUrlRedirectsResponse
|
|
9261
9295
|
*/
|
|
9262
|
-
'
|
|
9296
|
+
'totalPages': number;
|
|
9263
9297
|
/**
|
|
9264
9298
|
*
|
|
9265
|
-
* @type {Array<
|
|
9266
|
-
* @memberof
|
|
9299
|
+
* @type {Array<IUrlRedirect>}
|
|
9300
|
+
* @memberof IUrlRedirectsResponse
|
|
9267
9301
|
*/
|
|
9268
|
-
'
|
|
9269
|
-
|
|
9270
|
-
|
|
9302
|
+
'data': Array<IUrlRedirect>;
|
|
9303
|
+
}
|
|
9304
|
+
/**
|
|
9305
|
+
*
|
|
9306
|
+
* @export
|
|
9307
|
+
* @interface IUserAddressResponse
|
|
9308
|
+
*/
|
|
9309
|
+
export interface IUserAddressResponse {
|
|
9310
|
+
/**
|
|
9311
|
+
*
|
|
9312
|
+
* @type {Array<IAddress>}
|
|
9313
|
+
* @memberof IUserAddressResponse
|
|
9314
|
+
*/
|
|
9315
|
+
'addresses': Array<IAddress>;
|
|
9316
|
+
}
|
|
9317
|
+
/**
|
|
9318
|
+
*
|
|
9319
|
+
* @export
|
|
9320
|
+
* @interface IUserCollectionQueryParams
|
|
9321
|
+
*/
|
|
9322
|
+
export interface IUserCollectionQueryParams {
|
|
9323
|
+
/**
|
|
9324
|
+
*
|
|
9325
|
+
* @type {number}
|
|
9326
|
+
* @memberof IUserCollectionQueryParams
|
|
9327
|
+
*/
|
|
9328
|
+
'page'?: number;
|
|
9329
|
+
/**
|
|
9330
|
+
*
|
|
9331
|
+
* @type {number}
|
|
9332
|
+
* @memberof IUserCollectionQueryParams
|
|
9333
|
+
*/
|
|
9334
|
+
'itemsPerPage'?: number;
|
|
9335
|
+
/**
|
|
9336
|
+
*
|
|
9337
|
+
* @type {string}
|
|
9338
|
+
* @memberof IUserCollectionQueryParams
|
|
9339
|
+
*/
|
|
9340
|
+
'search'?: string;
|
|
9341
|
+
/**
|
|
9342
|
+
*
|
|
9343
|
+
* @type {string}
|
|
9344
|
+
* @memberof IUserCollectionQueryParams
|
|
9345
|
+
*/
|
|
9346
|
+
'startDate'?: string;
|
|
9347
|
+
/**
|
|
9348
|
+
*
|
|
9349
|
+
* @type {string}
|
|
9350
|
+
* @memberof IUserCollectionQueryParams
|
|
9351
|
+
*/
|
|
9352
|
+
'endDate'?: string;
|
|
9353
|
+
/**
|
|
9354
|
+
*
|
|
9355
|
+
* @type {string}
|
|
9356
|
+
* @memberof IUserCollectionQueryParams
|
|
9357
|
+
*/
|
|
9358
|
+
'dateField'?: IUserCollectionQueryParamsDateFieldEnum;
|
|
9359
|
+
/**
|
|
9360
|
+
*
|
|
9361
|
+
* @type {OrderEnum}
|
|
9362
|
+
* @memberof IUserCollectionQueryParams
|
|
9363
|
+
*/
|
|
9364
|
+
'order'?: OrderEnum;
|
|
9365
|
+
/**
|
|
9366
|
+
*
|
|
9367
|
+
* @type {string}
|
|
9368
|
+
* @memberof IUserCollectionQueryParams
|
|
9369
|
+
*/
|
|
9370
|
+
'sort'?: string;
|
|
9371
|
+
/**
|
|
9372
|
+
*
|
|
9373
|
+
* @type {UserStatusEnum}
|
|
9374
|
+
* @memberof IUserCollectionQueryParams
|
|
9375
|
+
*/
|
|
9376
|
+
'status'?: UserStatusEnum;
|
|
9377
|
+
}
|
|
9378
|
+
export declare const IUserCollectionQueryParamsDateFieldEnum: {
|
|
9379
|
+
readonly CREATED_AT: "createdAt";
|
|
9380
|
+
readonly UPDATED_AT: "updatedAt";
|
|
9381
|
+
};
|
|
9382
|
+
export type IUserCollectionQueryParamsDateFieldEnum = typeof IUserCollectionQueryParamsDateFieldEnum[keyof typeof IUserCollectionQueryParamsDateFieldEnum];
|
|
9383
|
+
/**
|
|
9384
|
+
*
|
|
9385
|
+
* @export
|
|
9386
|
+
* @interface IUserPatchRequest
|
|
9387
|
+
*/
|
|
9388
|
+
export interface IUserPatchRequest {
|
|
9389
|
+
/**
|
|
9390
|
+
*
|
|
9391
|
+
* @type {string}
|
|
9392
|
+
* @memberof IUserPatchRequest
|
|
9393
|
+
*/
|
|
9394
|
+
'name'?: string;
|
|
9395
|
+
/**
|
|
9396
|
+
*
|
|
9397
|
+
* @type {string}
|
|
9398
|
+
* @memberof IUserPatchRequest
|
|
9399
|
+
*/
|
|
9400
|
+
'password'?: string;
|
|
9401
|
+
/**
|
|
9402
|
+
*
|
|
9403
|
+
* @type {string}
|
|
9404
|
+
* @memberof IUserPatchRequest
|
|
9405
|
+
*/
|
|
9406
|
+
'phone'?: string;
|
|
9407
|
+
/**
|
|
9408
|
+
*
|
|
9409
|
+
* @type {Array<UserRoleEnum>}
|
|
9410
|
+
* @memberof IUserPatchRequest
|
|
9411
|
+
*/
|
|
9412
|
+
'roles'?: Array<UserRoleEnum>;
|
|
9413
|
+
/**
|
|
9414
|
+
*
|
|
9415
|
+
* @type {Array<IAddress>}
|
|
9416
|
+
* @memberof IUserPatchRequest
|
|
9417
|
+
*/
|
|
9418
|
+
'addresses'?: Array<IAddress>;
|
|
9419
|
+
}
|
|
9420
|
+
/**
|
|
9421
|
+
*
|
|
9422
|
+
* @export
|
|
9423
|
+
* @interface IUserPostRequest
|
|
9424
|
+
*/
|
|
9425
|
+
export interface IUserPostRequest {
|
|
9426
|
+
/**
|
|
9427
|
+
*
|
|
9428
|
+
* @type {string}
|
|
9429
|
+
* @memberof IUserPostRequest
|
|
9430
|
+
*/
|
|
9431
|
+
'name': string;
|
|
9432
|
+
/**
|
|
9433
|
+
*
|
|
9434
|
+
* @type {string}
|
|
9435
|
+
* @memberof IUserPostRequest
|
|
9436
|
+
*/
|
|
9437
|
+
'email': string;
|
|
9438
|
+
/**
|
|
9439
|
+
*
|
|
9440
|
+
* @type {string}
|
|
9441
|
+
* @memberof IUserPostRequest
|
|
9442
|
+
*/
|
|
9443
|
+
'password': string;
|
|
9444
|
+
/**
|
|
9445
|
+
*
|
|
9446
|
+
* @type {string}
|
|
9447
|
+
* @memberof IUserPostRequest
|
|
9448
|
+
*/
|
|
9449
|
+
'phone'?: string;
|
|
9450
|
+
/**
|
|
9451
|
+
*
|
|
9452
|
+
* @type {Array<UserRoleEnum>}
|
|
9453
|
+
* @memberof IUserPostRequest
|
|
9454
|
+
*/
|
|
9455
|
+
'roles'?: Array<UserRoleEnum>;
|
|
9456
|
+
}
|
|
9457
|
+
/**
|
|
9458
|
+
*
|
|
9459
|
+
* @export
|
|
9460
|
+
* @interface IUserResponse
|
|
9461
|
+
*/
|
|
9462
|
+
export interface IUserResponse {
|
|
9463
|
+
/**
|
|
9464
|
+
*
|
|
9465
|
+
* @type {string}
|
|
9466
|
+
* @memberof IUserResponse
|
|
9467
|
+
*/
|
|
9468
|
+
'name': string;
|
|
9469
|
+
/**
|
|
9470
|
+
*
|
|
9471
|
+
* @type {string}
|
|
9472
|
+
* @memberof IUserResponse
|
|
9473
|
+
*/
|
|
9474
|
+
'phone'?: string;
|
|
9475
|
+
/**
|
|
9476
|
+
*
|
|
9477
|
+
* @type {string}
|
|
9478
|
+
* @memberof IUserResponse
|
|
9479
|
+
*/
|
|
9480
|
+
'email': string;
|
|
9481
|
+
/**
|
|
9482
|
+
*
|
|
9483
|
+
* @type {Array<UserRoleEnum>}
|
|
9484
|
+
* @memberof IUserResponse
|
|
9485
|
+
*/
|
|
9486
|
+
'roles': Array<UserRoleEnum>;
|
|
9487
|
+
/**
|
|
9488
|
+
*
|
|
9489
|
+
* @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>}
|
|
9490
|
+
* @memberof IUserResponse
|
|
9491
|
+
*/
|
|
9492
|
+
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>;
|
|
9493
|
+
/**
|
|
9494
|
+
*
|
|
9271
9495
|
* @type {string}
|
|
9272
9496
|
* @memberof IUserResponse
|
|
9273
9497
|
*/
|
|
@@ -10202,14 +10426,6 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
10202
10426
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10203
10427
|
*/
|
|
10204
10428
|
'customPaymentMethods': RecordCustomPaymentMethodEnumExtraFeeNumberInfoPartialRecordLanguageEnumStringActiveBoolean;
|
|
10205
|
-
/**
|
|
10206
|
-
*
|
|
10207
|
-
* @type {{ [key: string]: string; }}
|
|
10208
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10209
|
-
*/
|
|
10210
|
-
'socials'?: {
|
|
10211
|
-
[key: string]: string;
|
|
10212
|
-
};
|
|
10213
10429
|
/**
|
|
10214
10430
|
*
|
|
10215
10431
|
* @type {string}
|
|
@@ -11787,6 +12003,14 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseO
|
|
|
11787
12003
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11788
12004
|
*/
|
|
11789
12005
|
'assetVersion': number;
|
|
12006
|
+
/**
|
|
12007
|
+
* Construct a type with a set of properties K of type T
|
|
12008
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
|
|
12009
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12010
|
+
*/
|
|
12011
|
+
'componentConfigIndex': {
|
|
12012
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
12013
|
+
};
|
|
11790
12014
|
}
|
|
11791
12015
|
/**
|
|
11792
12016
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12346,6 +12570,25 @@ export interface RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c {
|
|
|
12346
12570
|
*/
|
|
12347
12571
|
'monthlyBandwidth': number;
|
|
12348
12572
|
}
|
|
12573
|
+
/**
|
|
12574
|
+
*
|
|
12575
|
+
* @export
|
|
12576
|
+
* @interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue
|
|
12577
|
+
*/
|
|
12578
|
+
export interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue {
|
|
12579
|
+
/**
|
|
12580
|
+
* Construct a type with a set of properties K of type T
|
|
12581
|
+
* @type {object}
|
|
12582
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue
|
|
12583
|
+
*/
|
|
12584
|
+
'contents': object;
|
|
12585
|
+
/**
|
|
12586
|
+
* Construct a type with a set of properties K of type T
|
|
12587
|
+
* @type {object}
|
|
12588
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue
|
|
12589
|
+
*/
|
|
12590
|
+
'config': object;
|
|
12591
|
+
}
|
|
12349
12592
|
/**
|
|
12350
12593
|
*
|
|
12351
12594
|
* @export
|
|
@@ -14998,6 +15241,13 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14998
15241
|
* @throws {RequiredError}
|
|
14999
15242
|
*/
|
|
15000
15243
|
getCompanyDashboard: (id: string, start?: string, end?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15244
|
+
/**
|
|
15245
|
+
*
|
|
15246
|
+
* @param {string} id
|
|
15247
|
+
* @param {*} [options] Override http request option.
|
|
15248
|
+
* @throws {RequiredError}
|
|
15249
|
+
*/
|
|
15250
|
+
getCompanyMonthlyBandwidth: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15001
15251
|
/**
|
|
15002
15252
|
*
|
|
15003
15253
|
* @param {string} id
|
|
@@ -15338,6 +15588,13 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
15338
15588
|
* @throws {RequiredError}
|
|
15339
15589
|
*/
|
|
15340
15590
|
getCompanyDashboard(id: string, start?: string, end?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyDashboardResponse>>;
|
|
15591
|
+
/**
|
|
15592
|
+
*
|
|
15593
|
+
* @param {string} id
|
|
15594
|
+
* @param {*} [options] Override http request option.
|
|
15595
|
+
* @throws {RequiredError}
|
|
15596
|
+
*/
|
|
15597
|
+
getCompanyMonthlyBandwidth(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyMonthlyBandwidthResponse>>;
|
|
15341
15598
|
/**
|
|
15342
15599
|
*
|
|
15343
15600
|
* @param {string} id
|
|
@@ -15645,6 +15902,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
15645
15902
|
* @throws {RequiredError}
|
|
15646
15903
|
*/
|
|
15647
15904
|
getCompanyDashboard(requestParameters: CompanyApiGetCompanyDashboardRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyDashboardResponse>;
|
|
15905
|
+
/**
|
|
15906
|
+
*
|
|
15907
|
+
* @param {CompanyApiGetCompanyMonthlyBandwidthRequest} requestParameters Request parameters.
|
|
15908
|
+
* @param {*} [options] Override http request option.
|
|
15909
|
+
* @throws {RequiredError}
|
|
15910
|
+
*/
|
|
15911
|
+
getCompanyMonthlyBandwidth(requestParameters: CompanyApiGetCompanyMonthlyBandwidthRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyMonthlyBandwidthResponse>;
|
|
15648
15912
|
/**
|
|
15649
15913
|
*
|
|
15650
15914
|
* @param {CompanyApiGetCompanyOnboardingRequest} requestParameters Request parameters.
|
|
@@ -16250,6 +16514,19 @@ export interface CompanyApiGetCompanyDashboardRequest {
|
|
|
16250
16514
|
*/
|
|
16251
16515
|
readonly end?: string;
|
|
16252
16516
|
}
|
|
16517
|
+
/**
|
|
16518
|
+
* Request parameters for getCompanyMonthlyBandwidth operation in CompanyApi.
|
|
16519
|
+
* @export
|
|
16520
|
+
* @interface CompanyApiGetCompanyMonthlyBandwidthRequest
|
|
16521
|
+
*/
|
|
16522
|
+
export interface CompanyApiGetCompanyMonthlyBandwidthRequest {
|
|
16523
|
+
/**
|
|
16524
|
+
*
|
|
16525
|
+
* @type {string}
|
|
16526
|
+
* @memberof CompanyApiGetCompanyMonthlyBandwidth
|
|
16527
|
+
*/
|
|
16528
|
+
readonly id: string;
|
|
16529
|
+
}
|
|
16253
16530
|
/**
|
|
16254
16531
|
* Request parameters for getCompanyOnboarding operation in CompanyApi.
|
|
16255
16532
|
* @export
|
|
@@ -16798,6 +17075,14 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
16798
17075
|
* @memberof CompanyApi
|
|
16799
17076
|
*/
|
|
16800
17077
|
getCompanyDashboard(requestParameters: CompanyApiGetCompanyDashboardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyDashboardResponse, any>>;
|
|
17078
|
+
/**
|
|
17079
|
+
*
|
|
17080
|
+
* @param {CompanyApiGetCompanyMonthlyBandwidthRequest} requestParameters Request parameters.
|
|
17081
|
+
* @param {*} [options] Override http request option.
|
|
17082
|
+
* @throws {RequiredError}
|
|
17083
|
+
* @memberof CompanyApi
|
|
17084
|
+
*/
|
|
17085
|
+
getCompanyMonthlyBandwidth(requestParameters: CompanyApiGetCompanyMonthlyBandwidthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyMonthlyBandwidthResponse, any>>;
|
|
16801
17086
|
/**
|
|
16802
17087
|
*
|
|
16803
17088
|
* @param {CompanyApiGetCompanyOnboardingRequest} requestParameters Request parameters.
|
|
@@ -22193,6 +22478,388 @@ export declare const GetUniquePagesDateFieldEnum: {
|
|
|
22193
22478
|
readonly UPDATED_AT: "updatedAt";
|
|
22194
22479
|
};
|
|
22195
22480
|
export type GetUniquePagesDateFieldEnum = typeof GetUniquePagesDateFieldEnum[keyof typeof GetUniquePagesDateFieldEnum];
|
|
22481
|
+
/**
|
|
22482
|
+
* UrlRedirectApi - axios parameter creator
|
|
22483
|
+
* @export
|
|
22484
|
+
*/
|
|
22485
|
+
export declare const UrlRedirectApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22486
|
+
/**
|
|
22487
|
+
*
|
|
22488
|
+
* @param {IUrlRedirectPostRequest} iUrlRedirectPostRequest
|
|
22489
|
+
* @param {*} [options] Override http request option.
|
|
22490
|
+
* @throws {RequiredError}
|
|
22491
|
+
*/
|
|
22492
|
+
createUrlRedirect: (iUrlRedirectPostRequest: IUrlRedirectPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22493
|
+
/**
|
|
22494
|
+
*
|
|
22495
|
+
* @param {string} id
|
|
22496
|
+
* @param {*} [options] Override http request option.
|
|
22497
|
+
* @throws {RequiredError}
|
|
22498
|
+
*/
|
|
22499
|
+
deleteUrlRedirect: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22500
|
+
/**
|
|
22501
|
+
*
|
|
22502
|
+
* @param {string} id
|
|
22503
|
+
* @param {*} [options] Override http request option.
|
|
22504
|
+
* @throws {RequiredError}
|
|
22505
|
+
*/
|
|
22506
|
+
getUrlRedirectById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22507
|
+
/**
|
|
22508
|
+
*
|
|
22509
|
+
* @param {string} from
|
|
22510
|
+
* @param {string} companyId
|
|
22511
|
+
* @param {*} [options] Override http request option.
|
|
22512
|
+
* @throws {RequiredError}
|
|
22513
|
+
*/
|
|
22514
|
+
getUrlRedirectBySource: (from: string, companyId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22515
|
+
/**
|
|
22516
|
+
*
|
|
22517
|
+
* @param {string} company
|
|
22518
|
+
* @param {OrderEnum} [order]
|
|
22519
|
+
* @param {number} [page]
|
|
22520
|
+
* @param {number} [itemsPerPage]
|
|
22521
|
+
* @param {string} [search]
|
|
22522
|
+
* @param {string} [startDate]
|
|
22523
|
+
* @param {string} [endDate]
|
|
22524
|
+
* @param {GetUrlRedirectsDateFieldEnum} [dateField]
|
|
22525
|
+
* @param {string} [createdAt]
|
|
22526
|
+
* @param {GetUrlRedirectsSortEnum} [sort]
|
|
22527
|
+
* @param {*} [options] Override http request option.
|
|
22528
|
+
* @throws {RequiredError}
|
|
22529
|
+
*/
|
|
22530
|
+
getUrlRedirects: (company: string, order?: OrderEnum, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetUrlRedirectsDateFieldEnum, createdAt?: string, sort?: GetUrlRedirectsSortEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22531
|
+
/**
|
|
22532
|
+
*
|
|
22533
|
+
* @param {string} id
|
|
22534
|
+
* @param {IUrlRedirectPostRequest} iUrlRedirectPostRequest
|
|
22535
|
+
* @param {*} [options] Override http request option.
|
|
22536
|
+
* @throws {RequiredError}
|
|
22537
|
+
*/
|
|
22538
|
+
updateUrlRedirect: (id: string, iUrlRedirectPostRequest: IUrlRedirectPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22539
|
+
};
|
|
22540
|
+
/**
|
|
22541
|
+
* UrlRedirectApi - functional programming interface
|
|
22542
|
+
* @export
|
|
22543
|
+
*/
|
|
22544
|
+
export declare const UrlRedirectApiFp: (configuration?: Configuration) => {
|
|
22545
|
+
/**
|
|
22546
|
+
*
|
|
22547
|
+
* @param {IUrlRedirectPostRequest} iUrlRedirectPostRequest
|
|
22548
|
+
* @param {*} [options] Override http request option.
|
|
22549
|
+
* @throws {RequiredError}
|
|
22550
|
+
*/
|
|
22551
|
+
createUrlRedirect(iUrlRedirectPostRequest: IUrlRedirectPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
22552
|
+
/**
|
|
22553
|
+
*
|
|
22554
|
+
* @param {string} id
|
|
22555
|
+
* @param {*} [options] Override http request option.
|
|
22556
|
+
* @throws {RequiredError}
|
|
22557
|
+
*/
|
|
22558
|
+
deleteUrlRedirect(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
22559
|
+
/**
|
|
22560
|
+
*
|
|
22561
|
+
* @param {string} id
|
|
22562
|
+
* @param {*} [options] Override http request option.
|
|
22563
|
+
* @throws {RequiredError}
|
|
22564
|
+
*/
|
|
22565
|
+
getUrlRedirectById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUrlRedirectResponse>>;
|
|
22566
|
+
/**
|
|
22567
|
+
*
|
|
22568
|
+
* @param {string} from
|
|
22569
|
+
* @param {string} companyId
|
|
22570
|
+
* @param {*} [options] Override http request option.
|
|
22571
|
+
* @throws {RequiredError}
|
|
22572
|
+
*/
|
|
22573
|
+
getUrlRedirectBySource(from: string, companyId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUrlRedirectResponse>>;
|
|
22574
|
+
/**
|
|
22575
|
+
*
|
|
22576
|
+
* @param {string} company
|
|
22577
|
+
* @param {OrderEnum} [order]
|
|
22578
|
+
* @param {number} [page]
|
|
22579
|
+
* @param {number} [itemsPerPage]
|
|
22580
|
+
* @param {string} [search]
|
|
22581
|
+
* @param {string} [startDate]
|
|
22582
|
+
* @param {string} [endDate]
|
|
22583
|
+
* @param {GetUrlRedirectsDateFieldEnum} [dateField]
|
|
22584
|
+
* @param {string} [createdAt]
|
|
22585
|
+
* @param {GetUrlRedirectsSortEnum} [sort]
|
|
22586
|
+
* @param {*} [options] Override http request option.
|
|
22587
|
+
* @throws {RequiredError}
|
|
22588
|
+
*/
|
|
22589
|
+
getUrlRedirects(company: string, order?: OrderEnum, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetUrlRedirectsDateFieldEnum, createdAt?: string, sort?: GetUrlRedirectsSortEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUrlRedirectsResponse>>;
|
|
22590
|
+
/**
|
|
22591
|
+
*
|
|
22592
|
+
* @param {string} id
|
|
22593
|
+
* @param {IUrlRedirectPostRequest} iUrlRedirectPostRequest
|
|
22594
|
+
* @param {*} [options] Override http request option.
|
|
22595
|
+
* @throws {RequiredError}
|
|
22596
|
+
*/
|
|
22597
|
+
updateUrlRedirect(id: string, iUrlRedirectPostRequest: IUrlRedirectPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
22598
|
+
};
|
|
22599
|
+
/**
|
|
22600
|
+
* UrlRedirectApi - factory interface
|
|
22601
|
+
* @export
|
|
22602
|
+
*/
|
|
22603
|
+
export declare const UrlRedirectApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
22604
|
+
/**
|
|
22605
|
+
*
|
|
22606
|
+
* @param {UrlRedirectApiCreateUrlRedirectRequest} requestParameters Request parameters.
|
|
22607
|
+
* @param {*} [options] Override http request option.
|
|
22608
|
+
* @throws {RequiredError}
|
|
22609
|
+
*/
|
|
22610
|
+
createUrlRedirect(requestParameters: UrlRedirectApiCreateUrlRedirectRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
22611
|
+
/**
|
|
22612
|
+
*
|
|
22613
|
+
* @param {UrlRedirectApiDeleteUrlRedirectRequest} requestParameters Request parameters.
|
|
22614
|
+
* @param {*} [options] Override http request option.
|
|
22615
|
+
* @throws {RequiredError}
|
|
22616
|
+
*/
|
|
22617
|
+
deleteUrlRedirect(requestParameters: UrlRedirectApiDeleteUrlRedirectRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
22618
|
+
/**
|
|
22619
|
+
*
|
|
22620
|
+
* @param {UrlRedirectApiGetUrlRedirectByIdRequest} requestParameters Request parameters.
|
|
22621
|
+
* @param {*} [options] Override http request option.
|
|
22622
|
+
* @throws {RequiredError}
|
|
22623
|
+
*/
|
|
22624
|
+
getUrlRedirectById(requestParameters: UrlRedirectApiGetUrlRedirectByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUrlRedirectResponse>;
|
|
22625
|
+
/**
|
|
22626
|
+
*
|
|
22627
|
+
* @param {UrlRedirectApiGetUrlRedirectBySourceRequest} requestParameters Request parameters.
|
|
22628
|
+
* @param {*} [options] Override http request option.
|
|
22629
|
+
* @throws {RequiredError}
|
|
22630
|
+
*/
|
|
22631
|
+
getUrlRedirectBySource(requestParameters: UrlRedirectApiGetUrlRedirectBySourceRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUrlRedirectResponse>;
|
|
22632
|
+
/**
|
|
22633
|
+
*
|
|
22634
|
+
* @param {UrlRedirectApiGetUrlRedirectsRequest} requestParameters Request parameters.
|
|
22635
|
+
* @param {*} [options] Override http request option.
|
|
22636
|
+
* @throws {RequiredError}
|
|
22637
|
+
*/
|
|
22638
|
+
getUrlRedirects(requestParameters: UrlRedirectApiGetUrlRedirectsRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUrlRedirectsResponse>;
|
|
22639
|
+
/**
|
|
22640
|
+
*
|
|
22641
|
+
* @param {UrlRedirectApiUpdateUrlRedirectRequest} requestParameters Request parameters.
|
|
22642
|
+
* @param {*} [options] Override http request option.
|
|
22643
|
+
* @throws {RequiredError}
|
|
22644
|
+
*/
|
|
22645
|
+
updateUrlRedirect(requestParameters: UrlRedirectApiUpdateUrlRedirectRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
22646
|
+
};
|
|
22647
|
+
/**
|
|
22648
|
+
* Request parameters for createUrlRedirect operation in UrlRedirectApi.
|
|
22649
|
+
* @export
|
|
22650
|
+
* @interface UrlRedirectApiCreateUrlRedirectRequest
|
|
22651
|
+
*/
|
|
22652
|
+
export interface UrlRedirectApiCreateUrlRedirectRequest {
|
|
22653
|
+
/**
|
|
22654
|
+
*
|
|
22655
|
+
* @type {IUrlRedirectPostRequest}
|
|
22656
|
+
* @memberof UrlRedirectApiCreateUrlRedirect
|
|
22657
|
+
*/
|
|
22658
|
+
readonly iUrlRedirectPostRequest: IUrlRedirectPostRequest;
|
|
22659
|
+
}
|
|
22660
|
+
/**
|
|
22661
|
+
* Request parameters for deleteUrlRedirect operation in UrlRedirectApi.
|
|
22662
|
+
* @export
|
|
22663
|
+
* @interface UrlRedirectApiDeleteUrlRedirectRequest
|
|
22664
|
+
*/
|
|
22665
|
+
export interface UrlRedirectApiDeleteUrlRedirectRequest {
|
|
22666
|
+
/**
|
|
22667
|
+
*
|
|
22668
|
+
* @type {string}
|
|
22669
|
+
* @memberof UrlRedirectApiDeleteUrlRedirect
|
|
22670
|
+
*/
|
|
22671
|
+
readonly id: string;
|
|
22672
|
+
}
|
|
22673
|
+
/**
|
|
22674
|
+
* Request parameters for getUrlRedirectById operation in UrlRedirectApi.
|
|
22675
|
+
* @export
|
|
22676
|
+
* @interface UrlRedirectApiGetUrlRedirectByIdRequest
|
|
22677
|
+
*/
|
|
22678
|
+
export interface UrlRedirectApiGetUrlRedirectByIdRequest {
|
|
22679
|
+
/**
|
|
22680
|
+
*
|
|
22681
|
+
* @type {string}
|
|
22682
|
+
* @memberof UrlRedirectApiGetUrlRedirectById
|
|
22683
|
+
*/
|
|
22684
|
+
readonly id: string;
|
|
22685
|
+
}
|
|
22686
|
+
/**
|
|
22687
|
+
* Request parameters for getUrlRedirectBySource operation in UrlRedirectApi.
|
|
22688
|
+
* @export
|
|
22689
|
+
* @interface UrlRedirectApiGetUrlRedirectBySourceRequest
|
|
22690
|
+
*/
|
|
22691
|
+
export interface UrlRedirectApiGetUrlRedirectBySourceRequest {
|
|
22692
|
+
/**
|
|
22693
|
+
*
|
|
22694
|
+
* @type {string}
|
|
22695
|
+
* @memberof UrlRedirectApiGetUrlRedirectBySource
|
|
22696
|
+
*/
|
|
22697
|
+
readonly from: string;
|
|
22698
|
+
/**
|
|
22699
|
+
*
|
|
22700
|
+
* @type {string}
|
|
22701
|
+
* @memberof UrlRedirectApiGetUrlRedirectBySource
|
|
22702
|
+
*/
|
|
22703
|
+
readonly companyId: string;
|
|
22704
|
+
}
|
|
22705
|
+
/**
|
|
22706
|
+
* Request parameters for getUrlRedirects operation in UrlRedirectApi.
|
|
22707
|
+
* @export
|
|
22708
|
+
* @interface UrlRedirectApiGetUrlRedirectsRequest
|
|
22709
|
+
*/
|
|
22710
|
+
export interface UrlRedirectApiGetUrlRedirectsRequest {
|
|
22711
|
+
/**
|
|
22712
|
+
*
|
|
22713
|
+
* @type {string}
|
|
22714
|
+
* @memberof UrlRedirectApiGetUrlRedirects
|
|
22715
|
+
*/
|
|
22716
|
+
readonly company: string;
|
|
22717
|
+
/**
|
|
22718
|
+
*
|
|
22719
|
+
* @type {OrderEnum}
|
|
22720
|
+
* @memberof UrlRedirectApiGetUrlRedirects
|
|
22721
|
+
*/
|
|
22722
|
+
readonly order?: OrderEnum;
|
|
22723
|
+
/**
|
|
22724
|
+
*
|
|
22725
|
+
* @type {number}
|
|
22726
|
+
* @memberof UrlRedirectApiGetUrlRedirects
|
|
22727
|
+
*/
|
|
22728
|
+
readonly page?: number;
|
|
22729
|
+
/**
|
|
22730
|
+
*
|
|
22731
|
+
* @type {number}
|
|
22732
|
+
* @memberof UrlRedirectApiGetUrlRedirects
|
|
22733
|
+
*/
|
|
22734
|
+
readonly itemsPerPage?: number;
|
|
22735
|
+
/**
|
|
22736
|
+
*
|
|
22737
|
+
* @type {string}
|
|
22738
|
+
* @memberof UrlRedirectApiGetUrlRedirects
|
|
22739
|
+
*/
|
|
22740
|
+
readonly search?: string;
|
|
22741
|
+
/**
|
|
22742
|
+
*
|
|
22743
|
+
* @type {string}
|
|
22744
|
+
* @memberof UrlRedirectApiGetUrlRedirects
|
|
22745
|
+
*/
|
|
22746
|
+
readonly startDate?: string;
|
|
22747
|
+
/**
|
|
22748
|
+
*
|
|
22749
|
+
* @type {string}
|
|
22750
|
+
* @memberof UrlRedirectApiGetUrlRedirects
|
|
22751
|
+
*/
|
|
22752
|
+
readonly endDate?: string;
|
|
22753
|
+
/**
|
|
22754
|
+
*
|
|
22755
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
22756
|
+
* @memberof UrlRedirectApiGetUrlRedirects
|
|
22757
|
+
*/
|
|
22758
|
+
readonly dateField?: GetUrlRedirectsDateFieldEnum;
|
|
22759
|
+
/**
|
|
22760
|
+
*
|
|
22761
|
+
* @type {string}
|
|
22762
|
+
* @memberof UrlRedirectApiGetUrlRedirects
|
|
22763
|
+
*/
|
|
22764
|
+
readonly createdAt?: string;
|
|
22765
|
+
/**
|
|
22766
|
+
*
|
|
22767
|
+
* @type {'createdAt' | 'from'}
|
|
22768
|
+
* @memberof UrlRedirectApiGetUrlRedirects
|
|
22769
|
+
*/
|
|
22770
|
+
readonly sort?: GetUrlRedirectsSortEnum;
|
|
22771
|
+
}
|
|
22772
|
+
/**
|
|
22773
|
+
* Request parameters for updateUrlRedirect operation in UrlRedirectApi.
|
|
22774
|
+
* @export
|
|
22775
|
+
* @interface UrlRedirectApiUpdateUrlRedirectRequest
|
|
22776
|
+
*/
|
|
22777
|
+
export interface UrlRedirectApiUpdateUrlRedirectRequest {
|
|
22778
|
+
/**
|
|
22779
|
+
*
|
|
22780
|
+
* @type {string}
|
|
22781
|
+
* @memberof UrlRedirectApiUpdateUrlRedirect
|
|
22782
|
+
*/
|
|
22783
|
+
readonly id: string;
|
|
22784
|
+
/**
|
|
22785
|
+
*
|
|
22786
|
+
* @type {IUrlRedirectPostRequest}
|
|
22787
|
+
* @memberof UrlRedirectApiUpdateUrlRedirect
|
|
22788
|
+
*/
|
|
22789
|
+
readonly iUrlRedirectPostRequest: IUrlRedirectPostRequest;
|
|
22790
|
+
}
|
|
22791
|
+
/**
|
|
22792
|
+
* UrlRedirectApi - object-oriented interface
|
|
22793
|
+
* @export
|
|
22794
|
+
* @class UrlRedirectApi
|
|
22795
|
+
* @extends {BaseAPI}
|
|
22796
|
+
*/
|
|
22797
|
+
export declare class UrlRedirectApi extends BaseAPI {
|
|
22798
|
+
/**
|
|
22799
|
+
*
|
|
22800
|
+
* @param {UrlRedirectApiCreateUrlRedirectRequest} requestParameters Request parameters.
|
|
22801
|
+
* @param {*} [options] Override http request option.
|
|
22802
|
+
* @throws {RequiredError}
|
|
22803
|
+
* @memberof UrlRedirectApi
|
|
22804
|
+
*/
|
|
22805
|
+
createUrlRedirect(requestParameters: UrlRedirectApiCreateUrlRedirectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
22806
|
+
/**
|
|
22807
|
+
*
|
|
22808
|
+
* @param {UrlRedirectApiDeleteUrlRedirectRequest} requestParameters Request parameters.
|
|
22809
|
+
* @param {*} [options] Override http request option.
|
|
22810
|
+
* @throws {RequiredError}
|
|
22811
|
+
* @memberof UrlRedirectApi
|
|
22812
|
+
*/
|
|
22813
|
+
deleteUrlRedirect(requestParameters: UrlRedirectApiDeleteUrlRedirectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
22814
|
+
/**
|
|
22815
|
+
*
|
|
22816
|
+
* @param {UrlRedirectApiGetUrlRedirectByIdRequest} requestParameters Request parameters.
|
|
22817
|
+
* @param {*} [options] Override http request option.
|
|
22818
|
+
* @throws {RequiredError}
|
|
22819
|
+
* @memberof UrlRedirectApi
|
|
22820
|
+
*/
|
|
22821
|
+
getUrlRedirectById(requestParameters: UrlRedirectApiGetUrlRedirectByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUrlRedirectResponse, any>>;
|
|
22822
|
+
/**
|
|
22823
|
+
*
|
|
22824
|
+
* @param {UrlRedirectApiGetUrlRedirectBySourceRequest} requestParameters Request parameters.
|
|
22825
|
+
* @param {*} [options] Override http request option.
|
|
22826
|
+
* @throws {RequiredError}
|
|
22827
|
+
* @memberof UrlRedirectApi
|
|
22828
|
+
*/
|
|
22829
|
+
getUrlRedirectBySource(requestParameters: UrlRedirectApiGetUrlRedirectBySourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUrlRedirectResponse, any>>;
|
|
22830
|
+
/**
|
|
22831
|
+
*
|
|
22832
|
+
* @param {UrlRedirectApiGetUrlRedirectsRequest} requestParameters Request parameters.
|
|
22833
|
+
* @param {*} [options] Override http request option.
|
|
22834
|
+
* @throws {RequiredError}
|
|
22835
|
+
* @memberof UrlRedirectApi
|
|
22836
|
+
*/
|
|
22837
|
+
getUrlRedirects(requestParameters: UrlRedirectApiGetUrlRedirectsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUrlRedirectsResponse, any>>;
|
|
22838
|
+
/**
|
|
22839
|
+
*
|
|
22840
|
+
* @param {UrlRedirectApiUpdateUrlRedirectRequest} requestParameters Request parameters.
|
|
22841
|
+
* @param {*} [options] Override http request option.
|
|
22842
|
+
* @throws {RequiredError}
|
|
22843
|
+
* @memberof UrlRedirectApi
|
|
22844
|
+
*/
|
|
22845
|
+
updateUrlRedirect(requestParameters: UrlRedirectApiUpdateUrlRedirectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
22846
|
+
}
|
|
22847
|
+
/**
|
|
22848
|
+
* @export
|
|
22849
|
+
*/
|
|
22850
|
+
export declare const GetUrlRedirectsDateFieldEnum: {
|
|
22851
|
+
readonly CREATED_AT: "createdAt";
|
|
22852
|
+
readonly UPDATED_AT: "updatedAt";
|
|
22853
|
+
};
|
|
22854
|
+
export type GetUrlRedirectsDateFieldEnum = typeof GetUrlRedirectsDateFieldEnum[keyof typeof GetUrlRedirectsDateFieldEnum];
|
|
22855
|
+
/**
|
|
22856
|
+
* @export
|
|
22857
|
+
*/
|
|
22858
|
+
export declare const GetUrlRedirectsSortEnum: {
|
|
22859
|
+
readonly CREATED_AT: "createdAt";
|
|
22860
|
+
readonly FROM: "from";
|
|
22861
|
+
};
|
|
22862
|
+
export type GetUrlRedirectsSortEnum = typeof GetUrlRedirectsSortEnum[keyof typeof GetUrlRedirectsSortEnum];
|
|
22196
22863
|
/**
|
|
22197
22864
|
* UserApi - axios parameter creator
|
|
22198
22865
|
* @export
|