@infisale-client/api 1.2.100 → 1.2.101

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.
Files changed (2) hide show
  1. package/dist/api/api.d.ts +34 -22
  2. package/package.json +2 -2
package/dist/api/api.d.ts CHANGED
@@ -569,6 +569,19 @@ export declare const FontSizeEnum: {
569
569
  readonly _6XL: "text-6xl";
570
570
  };
571
571
  export type FontSizeEnum = typeof FontSizeEnum[keyof typeof FontSizeEnum];
572
+ /**
573
+ *
574
+ * @export
575
+ * @interface GetCompanyOnboarding200Response
576
+ */
577
+ export interface GetCompanyOnboarding200Response {
578
+ /**
579
+ *
580
+ * @type {RecordCompanyOnboardingStepEnumBoolean}
581
+ * @memberof GetCompanyOnboarding200Response
582
+ */
583
+ 'onboarding': RecordCompanyOnboardingStepEnumBoolean;
584
+ }
572
585
  /**
573
586
  *
574
587
  * @export
@@ -2465,6 +2478,12 @@ export interface ICompanyAdminResponse {
2465
2478
  'legalDocuments': {
2466
2479
  [key: string]: RecordStringUrlStringFileIImageValue;
2467
2480
  };
2481
+ /**
2482
+ *
2483
+ * @type {RecordCompanyOnboardingStepEnumBoolean}
2484
+ * @memberof ICompanyAdminResponse
2485
+ */
2486
+ 'onboarding': RecordCompanyOnboardingStepEnumBoolean;
2468
2487
  /**
2469
2488
  *
2470
2489
  * @type {string}
@@ -2823,12 +2842,6 @@ export interface ICompanyPatchRequest {
2823
2842
  * @memberof ICompanyPatchRequest
2824
2843
  */
2825
2844
  'paymentGateways'?: Array<ICompanyPatchRequestPaymentGatewaysInner>;
2826
- /**
2827
- *
2828
- * @type {RecordCompanyOnboardingStepEnumBoolean}
2829
- * @memberof ICompanyPatchRequest
2830
- */
2831
- 'onboarding'?: RecordCompanyOnboardingStepEnumBoolean;
2832
2845
  /**
2833
2846
  *
2834
2847
  * @type {string}
@@ -3255,6 +3268,12 @@ export interface ICompanyResponse {
3255
3268
  'legalDocuments': {
3256
3269
  [key: string]: RecordStringUrlStringFileIImageValue;
3257
3270
  };
3271
+ /**
3272
+ *
3273
+ * @type {RecordCompanyOnboardingStepEnumBoolean}
3274
+ * @memberof ICompanyResponse
3275
+ */
3276
+ 'onboarding': RecordCompanyOnboardingStepEnumBoolean;
3258
3277
  /**
3259
3278
  *
3260
3279
  * @type {string}
@@ -9769,6 +9788,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
9769
9788
  'legalDocuments': {
9770
9789
  [key: string]: RecordStringUrlStringFileIImageValue;
9771
9790
  };
9791
+ /**
9792
+ *
9793
+ * @type {RecordCompanyOnboardingStepEnumBoolean}
9794
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
9795
+ */
9796
+ 'onboarding': RecordCompanyOnboardingStepEnumBoolean;
9772
9797
  /**
9773
9798
  *
9774
9799
  * @type {string}
@@ -10020,19 +10045,6 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUse
10020
10045
  */
10021
10046
  'user': string;
10022
10047
  }
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
- }
10036
10048
  /**
10037
10049
  * From T, pick a set of properties whose keys are in the union K
10038
10050
  * @export
@@ -14602,7 +14614,7 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
14602
14614
  * @param {*} [options] Override http request option.
14603
14615
  * @throws {RequiredError}
14604
14616
  */
14605
- getCompanyOnboarding(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PickICompanyOnboarding>>;
14617
+ getCompanyOnboarding(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCompanyOnboarding200Response>>;
14606
14618
  /**
14607
14619
  *
14608
14620
  * @param {string} id
@@ -14834,7 +14846,7 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
14834
14846
  * @param {*} [options] Override http request option.
14835
14847
  * @throws {RequiredError}
14836
14848
  */
14837
- getCompanyOnboarding(requestParameters: CompanyApiGetCompanyOnboardingRequest, options?: RawAxiosRequestConfig): AxiosPromise<PickICompanyOnboarding>;
14849
+ getCompanyOnboarding(requestParameters: CompanyApiGetCompanyOnboardingRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetCompanyOnboarding200Response>;
14838
14850
  /**
14839
14851
  *
14840
14852
  * @param {CompanyApiGetCompanyPaymentRequest} requestParameters Request parameters.
@@ -15702,7 +15714,7 @@ export declare class CompanyApi extends BaseAPI {
15702
15714
  * @throws {RequiredError}
15703
15715
  * @memberof CompanyApi
15704
15716
  */
15705
- getCompanyOnboarding(requestParameters: CompanyApiGetCompanyOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PickICompanyOnboarding, any>>;
15717
+ getCompanyOnboarding(requestParameters: CompanyApiGetCompanyOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCompanyOnboarding200Response, any>>;
15706
15718
  /**
15707
15719
  *
15708
15720
  * @param {CompanyApiGetCompanyPaymentRequest} requestParameters Request parameters.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infisale-client/api",
3
- "version": "1.2.100",
3
+ "version": "1.2.101",
4
4
  "description": "api-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": "4988a28170d4b68f08f5e27d6564d01456625c27"
40
+ "gitHead": "de8c1c8f3f44fbf51135506596f97715b49f519d"
41
41
  }