@infisale-client/api 1.2.96 → 1.2.98

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 CHANGED
@@ -527,6 +527,7 @@ export declare const FileKeywordEnum: {
527
527
  readonly PRODUCT: "product";
528
528
  readonly ATTACHMENT: "attachment";
529
529
  readonly COMMENT: "comment";
530
+ readonly LEGAL: "legal";
530
531
  };
531
532
  export type FileKeywordEnum = typeof FileKeywordEnum[keyof typeof FileKeywordEnum];
532
533
  /**
@@ -2223,6 +2224,14 @@ export interface ICompany {
2223
2224
  * @memberof ICompany
2224
2225
  */
2225
2226
  'policyPages': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages;
2227
+ /**
2228
+ * Construct a type with a set of properties K of type T
2229
+ * @type {{ [key: string]: RecordStringUrlStringFileIImageValue; }}
2230
+ * @memberof ICompany
2231
+ */
2232
+ 'legalDocuments': {
2233
+ [key: string]: RecordStringUrlStringFileIImageValue;
2234
+ };
2226
2235
  /**
2227
2236
  *
2228
2237
  * @type {CompanyStatusEnum}
@@ -2442,6 +2451,14 @@ export interface ICompanyAdminResponse {
2442
2451
  * @memberof ICompanyAdminResponse
2443
2452
  */
2444
2453
  'policyPages': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages;
2454
+ /**
2455
+ * Construct a type with a set of properties K of type T
2456
+ * @type {{ [key: string]: RecordStringUrlStringFileIImageValue; }}
2457
+ * @memberof ICompanyAdminResponse
2458
+ */
2459
+ 'legalDocuments': {
2460
+ [key: string]: RecordStringUrlStringFileIImageValue;
2461
+ };
2445
2462
  /**
2446
2463
  *
2447
2464
  * @type {string}
@@ -2892,6 +2909,14 @@ export interface ICompanyPatchRequest {
2892
2909
  * @memberof ICompanyPatchRequest
2893
2910
  */
2894
2911
  'policyPages'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages;
2912
+ /**
2913
+ * Construct a type with a set of properties K of type T
2914
+ * @type {{ [key: string]: RecordStringUrlStringFileIImageValue; }}
2915
+ * @memberof ICompanyPatchRequest
2916
+ */
2917
+ 'legalDocuments'?: {
2918
+ [key: string]: RecordStringUrlStringFileIImageValue;
2919
+ };
2895
2920
  /**
2896
2921
  *
2897
2922
  * @type {string}
@@ -3210,6 +3235,14 @@ export interface ICompanyResponse {
3210
3235
  * @memberof ICompanyResponse
3211
3236
  */
3212
3237
  'policyPages': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages;
3238
+ /**
3239
+ * Construct a type with a set of properties K of type T
3240
+ * @type {{ [key: string]: RecordStringUrlStringFileIImageValue; }}
3241
+ * @memberof ICompanyResponse
3242
+ */
3243
+ 'legalDocuments': {
3244
+ [key: string]: RecordStringUrlStringFileIImageValue;
3245
+ };
3213
3246
  /**
3214
3247
  *
3215
3248
  * @type {string}
@@ -7916,6 +7949,12 @@ export interface ITemplateResponseComponentsInnerBlogs {
7916
7949
  * @interface ITemplateResponseComponentsInnerConfig
7917
7950
  */
7918
7951
  export interface ITemplateResponseComponentsInnerConfig {
7952
+ /**
7953
+ *
7954
+ * @type {boolean}
7955
+ * @memberof ITemplateResponseComponentsInnerConfig
7956
+ */
7957
+ 'legalDocuments'?: boolean;
7919
7958
  /**
7920
7959
  *
7921
7960
  * @type {boolean}
@@ -9710,6 +9749,14 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
9710
9749
  * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
9711
9750
  */
9712
9751
  'policyPages': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages;
9752
+ /**
9753
+ * Construct a type with a set of properties K of type T
9754
+ * @type {{ [key: string]: RecordStringUrlStringFileIImageValue; }}
9755
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
9756
+ */
9757
+ 'legalDocuments': {
9758
+ [key: string]: RecordStringUrlStringFileIImageValue;
9759
+ };
9713
9760
  /**
9714
9761
  *
9715
9762
  * @type {string}
@@ -11635,6 +11682,25 @@ export interface RecordLanguageEnumTitleStringTr {
11635
11682
  */
11636
11683
  'title': string;
11637
11684
  }
11685
+ /**
11686
+ *
11687
+ * @export
11688
+ * @interface RecordStringUrlStringFileIImageValue
11689
+ */
11690
+ export interface RecordStringUrlStringFileIImageValue {
11691
+ /**
11692
+ *
11693
+ * @type {IImage}
11694
+ * @memberof RecordStringUrlStringFileIImageValue
11695
+ */
11696
+ 'file': IImage;
11697
+ /**
11698
+ *
11699
+ * @type {string}
11700
+ * @memberof RecordStringUrlStringFileIImageValue
11701
+ */
11702
+ 'url': string;
11703
+ }
11638
11704
  /**
11639
11705
  *
11640
11706
  * @export
package/dist/api/api.js CHANGED
@@ -479,7 +479,8 @@ exports.FileKeywordEnum = {
479
479
  LOGO: 'logo',
480
480
  PRODUCT: 'product',
481
481
  ATTACHMENT: 'attachment',
482
- COMMENT: 'comment'
482
+ COMMENT: 'comment',
483
+ LEGAL: 'legal'
483
484
  };
484
485
  /**
485
486
  *
package/dist/api/api.mjs CHANGED
@@ -467,7 +467,8 @@ export const FileKeywordEnum = {
467
467
  LOGO: 'logo',
468
468
  PRODUCT: 'product',
469
469
  ATTACHMENT: 'attachment',
470
- COMMENT: 'comment'
470
+ COMMENT: 'comment',
471
+ LEGAL: 'legal'
471
472
  };
472
473
  /**
473
474
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infisale-client/api",
3
- "version": "1.2.96",
3
+ "version": "1.2.98",
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": "3558c050d3c68d3111fa3856bb9d66171750c39b"
40
+ "gitHead": "b19e33a444abe7db8db41d211b6f43cfb416a712"
41
41
  }