@infisale-client/api-client 1.2.99 → 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 +62 -0
- 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}
|
|
@@ -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
|
|
@@ -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
|
}
|