@infisale-client/api-client 1.3.71 → 1.3.73

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 +326 -15
  2. package/package.json +2 -2
package/dist/api/api.d.ts CHANGED
@@ -478,6 +478,43 @@ export interface GetMyProductReviewCount200Response {
478
478
  */
479
479
  'count': number;
480
480
  }
481
+ /**
482
+ *
483
+ * @export
484
+ * @interface GoogleSearchResponseInner
485
+ */
486
+ export interface GoogleSearchResponseInner {
487
+ /**
488
+ *
489
+ * @type {string}
490
+ * @memberof GoogleSearchResponseInner
491
+ */
492
+ 'location'?: string;
493
+ /**
494
+ *
495
+ * @type {string}
496
+ * @memberof GoogleSearchResponseInner
497
+ */
498
+ 'description': string;
499
+ /**
500
+ *
501
+ * @type {number}
502
+ * @memberof GoogleSearchResponseInner
503
+ */
504
+ 'rank': number;
505
+ /**
506
+ *
507
+ * @type {string}
508
+ * @memberof GoogleSearchResponseInner
509
+ */
510
+ 'link': string;
511
+ /**
512
+ *
513
+ * @type {string}
514
+ * @memberof GoogleSearchResponseInner
515
+ */
516
+ 'title': string;
517
+ }
481
518
  /**
482
519
  *
483
520
  * @export
@@ -680,7 +717,7 @@ export type IAiChatCollectionQueryParamsDateFieldEnum = typeof IAiChatCollection
680
717
  */
681
718
  export interface IAiChatFinalizeRequest {
682
719
  /**
683
- *
720
+ * `false` (varsayılan) ÖNİZLEME: model cevabı `chat.result`e yazılır, sohbet OPEN kalır, plan oluşturulmaz. `true` ise saklanan sonuç (yoksa yeni bir çağrı) planlara dönüşür ve sohbet ancak plan yazımı BAŞARIRSA mühürlenir.
684
721
  * @type {boolean}
685
722
  * @memberof IAiChatFinalizeRequest
686
723
  */
@@ -691,6 +728,24 @@ export interface IAiChatFinalizeRequest {
691
728
  * @memberof IAiChatFinalizeRequest
692
729
  */
693
730
  'instruction'?: string;
731
+ /**
732
+ * Sohbet öncesi kilitlenen parametreler; modelin seçtiğini ezer.
733
+ * @type {Array<LanguageEnum>}
734
+ * @memberof IAiChatFinalizeRequest
735
+ */
736
+ 'languages'?: Array<LanguageEnum>;
737
+ /**
738
+ *
739
+ * @type {string}
740
+ * @memberof IAiChatFinalizeRequest
741
+ */
742
+ 'template'?: string;
743
+ /**
744
+ *
745
+ * @type {string}
746
+ * @memberof IAiChatFinalizeRequest
747
+ */
748
+ 'type'?: string;
694
749
  }
695
750
  /**
696
751
  *
@@ -852,6 +907,75 @@ export interface IAiChatResponse {
852
907
  [key: string]: any;
853
908
  };
854
909
  }
910
+ /**
911
+ * Koleksiyon ucunun satırı: `messages` ve `result` TAŞINMAZ. Sohbet listesi yalnızca başlık/durum/tarih gösterir; her satırda tüm konuşmayı taşımak listeyi sohbet sayısıyla değil toplam mesaj sayısıyla büyütüyordu.
912
+ * @export
913
+ * @interface IAiChatSummaryResponse
914
+ */
915
+ export interface IAiChatSummaryResponse {
916
+ /**
917
+ *
918
+ * @type {string}
919
+ * @memberof IAiChatSummaryResponse
920
+ */
921
+ '_id': string;
922
+ /**
923
+ *
924
+ * @type {number}
925
+ * @memberof IAiChatSummaryResponse
926
+ */
927
+ '__v': number;
928
+ /**
929
+ *
930
+ * @type {string}
931
+ * @memberof IAiChatSummaryResponse
932
+ */
933
+ 'createdAt': string;
934
+ /**
935
+ *
936
+ * @type {string}
937
+ * @memberof IAiChatSummaryResponse
938
+ */
939
+ 'updatedAt': string;
940
+ /**
941
+ *
942
+ * @type {string}
943
+ * @memberof IAiChatSummaryResponse
944
+ */
945
+ 'company': string;
946
+ /**
947
+ *
948
+ * @type {string}
949
+ * @memberof IAiChatSummaryResponse
950
+ */
951
+ 'user'?: string;
952
+ /**
953
+ *
954
+ * @type {AiChatPurposeEnum}
955
+ * @memberof IAiChatSummaryResponse
956
+ */
957
+ 'purpose': AiChatPurposeEnum;
958
+ /**
959
+ *
960
+ * @type {string}
961
+ * @memberof IAiChatSummaryResponse
962
+ */
963
+ 'title'?: string;
964
+ /**
965
+ *
966
+ * @type {AiChatStatusEnum}
967
+ * @memberof IAiChatSummaryResponse
968
+ */
969
+ 'status': AiChatStatusEnum;
970
+ /**
971
+ * Construct a type with a set of properties K of type T
972
+ * @type {{ [key: string]: any; }}
973
+ * @memberof IAiChatSummaryResponse
974
+ */
975
+ 'context'?: {
976
+ [key: string]: any;
977
+ };
978
+ }
855
979
  /**
856
980
  *
857
981
  * @export
@@ -884,10 +1008,10 @@ export interface IAiChatsResponse {
884
1008
  'totalPages': number;
885
1009
  /**
886
1010
  *
887
- * @type {Array<IAiChatResponse>}
1011
+ * @type {Array<IAiChatSummaryResponse>}
888
1012
  * @memberof IAiChatsResponse
889
1013
  */
890
- 'data': Array<IAiChatResponse>;
1014
+ 'data': Array<IAiChatSummaryResponse>;
891
1015
  }
892
1016
  /**
893
1017
  *
@@ -9466,6 +9590,37 @@ export interface IResetPasswordRequest {
9466
9590
  */
9467
9591
  'code': string;
9468
9592
  }
9593
+ /**
9594
+ *
9595
+ * @export
9596
+ * @interface IResolvedFont
9597
+ */
9598
+ export interface IResolvedFont {
9599
+ /**
9600
+ * Yedek yığın, aile adı HARİÇ: `system-ui, -apple-system, …`. Kategoriden türer.
9601
+ * @type {string}
9602
+ * @memberof IResolvedFont
9603
+ */
9604
+ 'stack': string;
9605
+ /**
9606
+ * css2 `family=` değeri; font proxy\'sinin cache anahtarı.
9607
+ * @type {string}
9608
+ * @memberof IResolvedFont
9609
+ */
9610
+ 'spec': string;
9611
+ /**
9612
+ * Eski `font_link` yolunun ihtiyaç duyduğu tam Google URL\'i.
9613
+ * @type {string}
9614
+ * @memberof IResolvedFont
9615
+ */
9616
+ 'url': string;
9617
+ /**
9618
+ * Kırpılmış `@font-face` blokları. Google o an cevap vermediyse yok.
9619
+ * @type {string}
9620
+ * @memberof IResolvedFont
9621
+ */
9622
+ 'css'?: string;
9623
+ }
9469
9624
  /**
9470
9625
  *
9471
9626
  * @export
@@ -9739,6 +9894,99 @@ export interface IReviewResponse {
9739
9894
  */
9740
9895
  'product'?: IProductResponse;
9741
9896
  }
9897
+ /**
9898
+ *
9899
+ * @export
9900
+ * @interface ISeoRankLog
9901
+ */
9902
+ export interface ISeoRankLog {
9903
+ /**
9904
+ *
9905
+ * @type {string}
9906
+ * @memberof ISeoRankLog
9907
+ */
9908
+ '_id': string;
9909
+ /**
9910
+ *
9911
+ * @type {number}
9912
+ * @memberof ISeoRankLog
9913
+ */
9914
+ '__v': number;
9915
+ /**
9916
+ *
9917
+ * @type {string}
9918
+ * @memberof ISeoRankLog
9919
+ */
9920
+ 'createdAt': string;
9921
+ /**
9922
+ *
9923
+ * @type {string}
9924
+ * @memberof ISeoRankLog
9925
+ */
9926
+ 'updatedAt': string;
9927
+ /**
9928
+ *
9929
+ * @type {ISeoRankLogCompany}
9930
+ * @memberof ISeoRankLog
9931
+ */
9932
+ 'company': ISeoRankLogCompany;
9933
+ /**
9934
+ *
9935
+ * @type {string}
9936
+ * @memberof ISeoRankLog
9937
+ */
9938
+ 'keyword': string;
9939
+ /**
9940
+ *
9941
+ * @type {number}
9942
+ * @memberof ISeoRankLog
9943
+ */
9944
+ 'rank': number;
9945
+ /**
9946
+ *
9947
+ * @type {Array<ISeoRankLogCompetitorRanksInner>}
9948
+ * @memberof ISeoRankLog
9949
+ */
9950
+ 'competitorRanks': Array<ISeoRankLogCompetitorRanksInner>;
9951
+ /**
9952
+ *
9953
+ * @type {Array<GoogleSearchResponseInner>}
9954
+ * @memberof ISeoRankLog
9955
+ */
9956
+ 'results': Array<GoogleSearchResponseInner>;
9957
+ /**
9958
+ *
9959
+ * @type {string}
9960
+ * @memberof ISeoRankLog
9961
+ */
9962
+ 'checkedAt': string;
9963
+ }
9964
+ /**
9965
+ *
9966
+ * @export
9967
+ * @interface ISeoRankLogCompany
9968
+ */
9969
+ export interface ISeoRankLogCompany {
9970
+ }
9971
+ /**
9972
+ *
9973
+ * @export
9974
+ * @interface ISeoRankLogCompetitorRanksInner
9975
+ */
9976
+ export interface ISeoRankLogCompetitorRanksInner {
9977
+ /**
9978
+ *
9979
+ * @type {number}
9980
+ * @memberof ISeoRankLogCompetitorRanksInner
9981
+ */
9982
+ 'rank': number;
9983
+ /**
9984
+ *
9985
+ * @type {string}
9986
+ * @memberof ISeoRankLogCompetitorRanksInner
9987
+ */
9988
+ 'domain': string;
9989
+ }
9742
9990
  /**
9743
9991
  *
9744
9992
  * @export
@@ -10191,6 +10439,12 @@ export interface ITemplateComponentContentResponse {
10191
10439
  * @memberof ITemplateComponentContentResponse
10192
10440
  */
10193
10441
  '_id': string;
10442
+ /**
10443
+ *
10444
+ * @type {Array<ITemplateComponentContentResponse>}
10445
+ * @memberof ITemplateComponentContentResponse
10446
+ */
10447
+ 'contents'?: Array<ITemplateComponentContentResponse>;
10194
10448
  }
10195
10449
  /**
10196
10450
  *
@@ -10759,11 +11013,19 @@ export interface IThemeResponse {
10759
11013
  'assetVersion': number;
10760
11014
  /**
10761
11015
  * Construct a type with a set of properties K of type T
10762
- * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
11016
+ * @type {{ [key: string]: IResolvedFont; }}
11017
+ * @memberof IThemeResponse
11018
+ */
11019
+ 'fonts'?: {
11020
+ [key: string]: IResolvedFont;
11021
+ };
11022
+ /**
11023
+ * Construct a type with a set of properties K of type T
11024
+ * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
10763
11025
  * @memberof IThemeResponse
10764
11026
  */
10765
11027
  'componentConfigIndex': {
10766
- [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
11028
+ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
10767
11029
  };
10768
11030
  }
10769
11031
  /**
@@ -10826,13 +11088,19 @@ export interface IThemeVersion {
10826
11088
  * @memberof IThemeVersion
10827
11089
  */
10828
11090
  'isDeprecated': boolean;
11091
+ /**
11092
+ *
11093
+ * @type {string}
11094
+ * @memberof IThemeVersion
11095
+ */
11096
+ 'hash'?: string;
10829
11097
  /**
10830
11098
  * Construct a type with a set of properties K of type T
10831
- * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
11099
+ * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
10832
11100
  * @memberof IThemeVersion
10833
11101
  */
10834
11102
  'componentConfigIndex': {
10835
- [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
11103
+ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
10836
11104
  };
10837
11105
  }
10838
11106
  /**
@@ -11013,11 +11281,19 @@ export interface IThemesResponseData {
11013
11281
  'assetVersion': number;
11014
11282
  /**
11015
11283
  * Construct a type with a set of properties K of type T
11016
- * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
11284
+ * @type {{ [key: string]: IResolvedFont; }}
11285
+ * @memberof IThemesResponseData
11286
+ */
11287
+ 'fonts'?: {
11288
+ [key: string]: IResolvedFont;
11289
+ };
11290
+ /**
11291
+ * Construct a type with a set of properties K of type T
11292
+ * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
11017
11293
  * @memberof IThemesResponseData
11018
11294
  */
11019
11295
  'componentConfigIndex': {
11020
- [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
11296
+ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
11021
11297
  };
11022
11298
  /**
11023
11299
  *
@@ -14519,6 +14795,27 @@ export interface PickIReviewExcludeKeyofIReviewProduct {
14519
14795
  */
14520
14796
  'comment': string;
14521
14797
  }
14798
+ /**
14799
+ * From T, pick a set of properties whose keys are in the union K
14800
+ * @export
14801
+ * @interface PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
14802
+ */
14803
+ export interface PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents {
14804
+ /**
14805
+ *
14806
+ * @type {string}
14807
+ * @memberof PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
14808
+ */
14809
+ 'type': string;
14810
+ /**
14811
+ * Construct a type with a set of properties K of type T
14812
+ * @type {{ [key: string]: any; }}
14813
+ * @memberof PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
14814
+ */
14815
+ 'config': {
14816
+ [key: string]: any;
14817
+ };
14818
+ }
14522
14819
  /**
14523
14820
  * From T, pick a set of properties whose keys are in the union K
14524
14821
  * @export
@@ -15012,11 +15309,19 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
15012
15309
  'assetVersion': number;
15013
15310
  /**
15014
15311
  * Construct a type with a set of properties K of type T
15015
- * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
15312
+ * @type {{ [key: string]: IResolvedFont; }}
15313
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
15314
+ */
15315
+ 'fonts'?: {
15316
+ [key: string]: IResolvedFont;
15317
+ };
15318
+ /**
15319
+ * Construct a type with a set of properties K of type T
15320
+ * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
15016
15321
  * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
15017
15322
  */
15018
15323
  'componentConfigIndex': {
15019
- [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
15324
+ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
15020
15325
  };
15021
15326
  }
15022
15327
  /**
@@ -15613,19 +15918,25 @@ export interface RecordPlanCurrencyEnumNumber {
15613
15918
  /**
15614
15919
  *
15615
15920
  * @export
15616
- * @interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue
15921
+ * @interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
15617
15922
  */
15618
- export interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue {
15923
+ export interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue {
15924
+ /**
15925
+ * Construct a type with a set of properties K of type T
15926
+ * @type {object}
15927
+ * @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
15928
+ */
15929
+ 'contentLimits'?: object;
15619
15930
  /**
15620
15931
  * Construct a type with a set of properties K of type T
15621
15932
  * @type {object}
15622
- * @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue
15933
+ * @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
15623
15934
  */
15624
15935
  'contents': object;
15625
15936
  /**
15626
15937
  * Construct a type with a set of properties K of type T
15627
15938
  * @type {object}
15628
- * @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue
15939
+ * @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
15629
15940
  */
15630
15941
  'config': object;
15631
15942
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infisale-client/api-client",
3
- "version": "1.3.71",
3
+ "version": "1.3.73",
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": "fce13875010e36bae190d57b9aaa822091e120a1"
40
+ "gitHead": "cb3efd73f273e38671b447cca01d88242469e56e"
41
41
  }