@infisale-client/api-client 1.2.98 → 1.2.100
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 +67 -5
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2232,6 +2232,12 @@ export interface ICompany {
|
|
|
2232
2232
|
'legalDocuments': {
|
|
2233
2233
|
[key: string]: RecordStringUrlStringFileIImageValue;
|
|
2234
2234
|
};
|
|
2235
|
+
/**
|
|
2236
|
+
*
|
|
2237
|
+
* @type {RecordCompanyOnboardingStepEnumBoolean}
|
|
2238
|
+
* @memberof ICompany
|
|
2239
|
+
*/
|
|
2240
|
+
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
2235
2241
|
/**
|
|
2236
2242
|
*
|
|
2237
2243
|
* @type {CompanyStatusEnum}
|
|
@@ -2817,6 +2823,12 @@ export interface ICompanyPatchRequest {
|
|
|
2817
2823
|
* @memberof ICompanyPatchRequest
|
|
2818
2824
|
*/
|
|
2819
2825
|
'paymentGateways'?: Array<ICompanyPatchRequestPaymentGatewaysInner>;
|
|
2826
|
+
/**
|
|
2827
|
+
*
|
|
2828
|
+
* @type {RecordCompanyOnboardingStepEnumBoolean}
|
|
2829
|
+
* @memberof ICompanyPatchRequest
|
|
2830
|
+
*/
|
|
2831
|
+
'onboarding'?: RecordCompanyOnboardingStepEnumBoolean;
|
|
2820
2832
|
/**
|
|
2821
2833
|
*
|
|
2822
2834
|
* @type {string}
|
|
@@ -6858,13 +6870,13 @@ export interface IProductPostRequest {
|
|
|
6858
6870
|
* @type {string}
|
|
6859
6871
|
* @memberof IProductPostRequest
|
|
6860
6872
|
*/
|
|
6861
|
-
'category'
|
|
6873
|
+
'category'?: string;
|
|
6862
6874
|
/**
|
|
6863
6875
|
*
|
|
6864
6876
|
* @type {string}
|
|
6865
6877
|
* @memberof IProductPostRequest
|
|
6866
6878
|
*/
|
|
6867
|
-
'brand'
|
|
6879
|
+
'brand'?: string;
|
|
6868
6880
|
/**
|
|
6869
6881
|
*
|
|
6870
6882
|
* @type {ITemplateResponse}
|
|
@@ -7023,13 +7035,13 @@ export interface IProductResponse {
|
|
|
7023
7035
|
* @type {IBrandResponse}
|
|
7024
7036
|
* @memberof IProductResponse
|
|
7025
7037
|
*/
|
|
7026
|
-
'brand'
|
|
7038
|
+
'brand'?: IBrandResponse;
|
|
7027
7039
|
/**
|
|
7028
7040
|
*
|
|
7029
7041
|
* @type {ICategoryResponse}
|
|
7030
7042
|
* @memberof IProductResponse
|
|
7031
7043
|
*/
|
|
7032
|
-
'category'
|
|
7044
|
+
'category'?: ICategoryResponse;
|
|
7033
7045
|
/**
|
|
7034
7046
|
*
|
|
7035
7047
|
* @type {ITemplateResponse}
|
|
@@ -10008,6 +10020,19 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUse
|
|
|
10008
10020
|
*/
|
|
10009
10021
|
'user': string;
|
|
10010
10022
|
}
|
|
10023
|
+
/**
|
|
10024
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10025
|
+
* @export
|
|
10026
|
+
* @interface PickICompanyOnboarding
|
|
10027
|
+
*/
|
|
10028
|
+
export interface PickICompanyOnboarding {
|
|
10029
|
+
/**
|
|
10030
|
+
*
|
|
10031
|
+
* @type {RecordCompanyOnboardingStepEnumBoolean}
|
|
10032
|
+
* @memberof PickICompanyOnboarding
|
|
10033
|
+
*/
|
|
10034
|
+
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
10035
|
+
}
|
|
10011
10036
|
/**
|
|
10012
10037
|
* From T, pick a set of properties whose keys are in the union K
|
|
10013
10038
|
* @export
|
|
@@ -10674,7 +10699,7 @@ export interface PickIProductIdOrContentsOrCollectionsOrCategory {
|
|
|
10674
10699
|
* @type {string}
|
|
10675
10700
|
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10676
10701
|
*/
|
|
10677
|
-
'category'
|
|
10702
|
+
'category'?: string;
|
|
10678
10703
|
/**
|
|
10679
10704
|
*
|
|
10680
10705
|
* @type {Array<string>}
|
|
@@ -11570,6 +11595,43 @@ export declare const ProductDetailImageZoomTypeEnum: {
|
|
|
11570
11595
|
readonly NONE: "none";
|
|
11571
11596
|
};
|
|
11572
11597
|
export type ProductDetailImageZoomTypeEnum = typeof ProductDetailImageZoomTypeEnum[keyof typeof ProductDetailImageZoomTypeEnum];
|
|
11598
|
+
/**
|
|
11599
|
+
* Construct a type with a set of properties K of type T
|
|
11600
|
+
* @export
|
|
11601
|
+
* @interface RecordCompanyOnboardingStepEnumBoolean
|
|
11602
|
+
*/
|
|
11603
|
+
export interface RecordCompanyOnboardingStepEnumBoolean {
|
|
11604
|
+
/**
|
|
11605
|
+
*
|
|
11606
|
+
* @type {boolean}
|
|
11607
|
+
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
11608
|
+
*/
|
|
11609
|
+
'addFirstProduct': boolean;
|
|
11610
|
+
/**
|
|
11611
|
+
*
|
|
11612
|
+
* @type {boolean}
|
|
11613
|
+
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
11614
|
+
*/
|
|
11615
|
+
'addDomain': boolean;
|
|
11616
|
+
/**
|
|
11617
|
+
*
|
|
11618
|
+
* @type {boolean}
|
|
11619
|
+
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
11620
|
+
*/
|
|
11621
|
+
'editTheme': boolean;
|
|
11622
|
+
/**
|
|
11623
|
+
*
|
|
11624
|
+
* @type {boolean}
|
|
11625
|
+
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
11626
|
+
*/
|
|
11627
|
+
'editCargoSettings': boolean;
|
|
11628
|
+
/**
|
|
11629
|
+
*
|
|
11630
|
+
* @type {boolean}
|
|
11631
|
+
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
11632
|
+
*/
|
|
11633
|
+
'addPaymentProvider': boolean;
|
|
11634
|
+
}
|
|
11573
11635
|
/**
|
|
11574
11636
|
* Construct a type with a set of properties K of type T
|
|
11575
11637
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.100",
|
|
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": "4988a28170d4b68f08f5e27d6564d01456625c27"
|
|
41
41
|
}
|