@infisale-client/api-client 1.3.61 → 1.3.65

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
@@ -13,6 +13,38 @@ import type { Configuration } from './configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import type { RequestArgs } from './base';
15
15
  import { BaseAPI } from './base';
16
+ /**
17
+ *
18
+ * @export
19
+ * @enum {string}
20
+ */
21
+ export declare const AiChatPurposeEnum: {
22
+ readonly CONTENT_PLAN_PLANNING: "content-plan-planning";
23
+ };
24
+ export type AiChatPurposeEnum = typeof AiChatPurposeEnum[keyof typeof AiChatPurposeEnum];
25
+ /**
26
+ *
27
+ * @export
28
+ * @enum {string}
29
+ */
30
+ export declare const AiChatRoleEnum: {
31
+ readonly SYSTEM: "system";
32
+ readonly USER: "user";
33
+ readonly ASSISTANT: "assistant";
34
+ };
35
+ export type AiChatRoleEnum = typeof AiChatRoleEnum[keyof typeof AiChatRoleEnum];
36
+ /**
37
+ *
38
+ * @export
39
+ * @enum {string}
40
+ */
41
+ export declare const AiChatStatusEnum: {
42
+ readonly OPEN: "open";
43
+ readonly FINALIZED: "finalized";
44
+ readonly ARCHIVED: "archived";
45
+ readonly FAILED: "failed";
46
+ };
47
+ export type AiChatStatusEnum = typeof AiChatStatusEnum[keyof typeof AiChatStatusEnum];
16
48
  /**
17
49
  *
18
50
  * @export
@@ -47,6 +79,22 @@ export declare const CompanyUserStatusEnum: {
47
79
  readonly DELETED: "deleted";
48
80
  };
49
81
  export type CompanyUserStatusEnum = typeof CompanyUserStatusEnum[keyof typeof CompanyUserStatusEnum];
82
+ /**
83
+ *
84
+ * @export
85
+ * @enum {string}
86
+ */
87
+ export declare const ContentPlanStatusEnum: {
88
+ readonly PENDING: "pending";
89
+ readonly GENERATING: "generating";
90
+ readonly SEO_ANALYZING: "seo_analyzing";
91
+ readonly REFINING: "refining";
92
+ readonly PACKAGING: "packaging";
93
+ readonly TRANSLATING: "translating";
94
+ readonly COMPLETED: "completed";
95
+ readonly FAILED: "failed";
96
+ };
97
+ export type ContentPlanStatusEnum = typeof ContentPlanStatusEnum[keyof typeof ContentPlanStatusEnum];
50
98
  /**
51
99
  *
52
100
  * @export
@@ -547,6 +595,300 @@ export interface IAddress {
547
595
  */
548
596
  'phone': string;
549
597
  }
598
+ /**
599
+ *
600
+ * @export
601
+ * @interface IAiChatCollectionQueryParams
602
+ */
603
+ export interface IAiChatCollectionQueryParams {
604
+ /**
605
+ *
606
+ * @type {number}
607
+ * @memberof IAiChatCollectionQueryParams
608
+ */
609
+ 'page'?: number;
610
+ /**
611
+ *
612
+ * @type {number}
613
+ * @memberof IAiChatCollectionQueryParams
614
+ */
615
+ 'itemsPerPage'?: number;
616
+ /**
617
+ *
618
+ * @type {string}
619
+ * @memberof IAiChatCollectionQueryParams
620
+ */
621
+ 'search'?: string;
622
+ /**
623
+ *
624
+ * @type {string}
625
+ * @memberof IAiChatCollectionQueryParams
626
+ */
627
+ 'startDate'?: string;
628
+ /**
629
+ *
630
+ * @type {string}
631
+ * @memberof IAiChatCollectionQueryParams
632
+ */
633
+ 'endDate'?: string;
634
+ /**
635
+ *
636
+ * @type {string}
637
+ * @memberof IAiChatCollectionQueryParams
638
+ */
639
+ 'dateField'?: IAiChatCollectionQueryParamsDateFieldEnum;
640
+ /**
641
+ *
642
+ * @type {OrderEnum}
643
+ * @memberof IAiChatCollectionQueryParams
644
+ */
645
+ 'order'?: OrderEnum;
646
+ /**
647
+ *
648
+ * @type {string}
649
+ * @memberof IAiChatCollectionQueryParams
650
+ */
651
+ 'sort'?: string;
652
+ /**
653
+ *
654
+ * @type {string}
655
+ * @memberof IAiChatCollectionQueryParams
656
+ */
657
+ 'companyId'?: string;
658
+ /**
659
+ *
660
+ * @type {AiChatPurposeEnum}
661
+ * @memberof IAiChatCollectionQueryParams
662
+ */
663
+ 'purpose'?: AiChatPurposeEnum;
664
+ /**
665
+ *
666
+ * @type {AiChatStatusEnum}
667
+ * @memberof IAiChatCollectionQueryParams
668
+ */
669
+ 'status'?: AiChatStatusEnum;
670
+ }
671
+ export declare const IAiChatCollectionQueryParamsDateFieldEnum: {
672
+ readonly CREATED_AT: "createdAt";
673
+ readonly UPDATED_AT: "updatedAt";
674
+ };
675
+ export type IAiChatCollectionQueryParamsDateFieldEnum = typeof IAiChatCollectionQueryParamsDateFieldEnum[keyof typeof IAiChatCollectionQueryParamsDateFieldEnum];
676
+ /**
677
+ *
678
+ * @export
679
+ * @interface IAiChatFinalizeRequest
680
+ */
681
+ export interface IAiChatFinalizeRequest {
682
+ /**
683
+ *
684
+ * @type {boolean}
685
+ * @memberof IAiChatFinalizeRequest
686
+ */
687
+ 'persist'?: boolean;
688
+ /**
689
+ *
690
+ * @type {string}
691
+ * @memberof IAiChatFinalizeRequest
692
+ */
693
+ 'instruction'?: string;
694
+ }
695
+ /**
696
+ *
697
+ * @export
698
+ * @interface IAiChatMessage
699
+ */
700
+ export interface IAiChatMessage {
701
+ /**
702
+ *
703
+ * @type {AiChatRoleEnum}
704
+ * @memberof IAiChatMessage
705
+ */
706
+ 'role': AiChatRoleEnum;
707
+ /**
708
+ *
709
+ * @type {string}
710
+ * @memberof IAiChatMessage
711
+ */
712
+ 'content': string;
713
+ /**
714
+ *
715
+ * @type {string}
716
+ * @memberof IAiChatMessage
717
+ */
718
+ 'createdAt': string;
719
+ }
720
+ /**
721
+ *
722
+ * @export
723
+ * @interface IAiChatMessagePostRequest
724
+ */
725
+ export interface IAiChatMessagePostRequest {
726
+ /**
727
+ *
728
+ * @type {string}
729
+ * @memberof IAiChatMessagePostRequest
730
+ */
731
+ 'message': string;
732
+ }
733
+ /**
734
+ *
735
+ * @export
736
+ * @interface IAiChatPostRequest
737
+ */
738
+ export interface IAiChatPostRequest {
739
+ /**
740
+ *
741
+ * @type {string}
742
+ * @memberof IAiChatPostRequest
743
+ */
744
+ 'company': string;
745
+ /**
746
+ *
747
+ * @type {AiChatPurposeEnum}
748
+ * @memberof IAiChatPostRequest
749
+ */
750
+ 'purpose': AiChatPurposeEnum;
751
+ /**
752
+ *
753
+ * @type {string}
754
+ * @memberof IAiChatPostRequest
755
+ */
756
+ 'title'?: string;
757
+ /**
758
+ * Construct a type with a set of properties K of type T
759
+ * @type {{ [key: string]: any; }}
760
+ * @memberof IAiChatPostRequest
761
+ */
762
+ 'context'?: {
763
+ [key: string]: any;
764
+ };
765
+ /**
766
+ *
767
+ * @type {string}
768
+ * @memberof IAiChatPostRequest
769
+ */
770
+ 'initialMessage'?: string;
771
+ }
772
+ /**
773
+ *
774
+ * @export
775
+ * @interface IAiChatResponse
776
+ */
777
+ export interface IAiChatResponse {
778
+ /**
779
+ *
780
+ * @type {string}
781
+ * @memberof IAiChatResponse
782
+ */
783
+ '_id': string;
784
+ /**
785
+ *
786
+ * @type {number}
787
+ * @memberof IAiChatResponse
788
+ */
789
+ '__v': number;
790
+ /**
791
+ *
792
+ * @type {string}
793
+ * @memberof IAiChatResponse
794
+ */
795
+ 'createdAt': string;
796
+ /**
797
+ *
798
+ * @type {string}
799
+ * @memberof IAiChatResponse
800
+ */
801
+ 'updatedAt': string;
802
+ /**
803
+ *
804
+ * @type {string}
805
+ * @memberof IAiChatResponse
806
+ */
807
+ 'company': string;
808
+ /**
809
+ *
810
+ * @type {string}
811
+ * @memberof IAiChatResponse
812
+ */
813
+ 'user'?: string;
814
+ /**
815
+ *
816
+ * @type {AiChatPurposeEnum}
817
+ * @memberof IAiChatResponse
818
+ */
819
+ 'purpose': AiChatPurposeEnum;
820
+ /**
821
+ *
822
+ * @type {string}
823
+ * @memberof IAiChatResponse
824
+ */
825
+ 'title'?: string;
826
+ /**
827
+ *
828
+ * @type {AiChatStatusEnum}
829
+ * @memberof IAiChatResponse
830
+ */
831
+ 'status': AiChatStatusEnum;
832
+ /**
833
+ *
834
+ * @type {Array<IAiChatMessage>}
835
+ * @memberof IAiChatResponse
836
+ */
837
+ 'messages': Array<IAiChatMessage>;
838
+ /**
839
+ * Construct a type with a set of properties K of type T
840
+ * @type {{ [key: string]: any; }}
841
+ * @memberof IAiChatResponse
842
+ */
843
+ 'context'?: {
844
+ [key: string]: any;
845
+ };
846
+ /**
847
+ * Construct a type with a set of properties K of type T
848
+ * @type {{ [key: string]: any; }}
849
+ * @memberof IAiChatResponse
850
+ */
851
+ 'result'?: {
852
+ [key: string]: any;
853
+ };
854
+ }
855
+ /**
856
+ *
857
+ * @export
858
+ * @interface IAiChatsResponse
859
+ */
860
+ export interface IAiChatsResponse {
861
+ /**
862
+ *
863
+ * @type {number}
864
+ * @memberof IAiChatsResponse
865
+ */
866
+ 'page': number;
867
+ /**
868
+ *
869
+ * @type {number}
870
+ * @memberof IAiChatsResponse
871
+ */
872
+ 'itemsPerPage': number;
873
+ /**
874
+ *
875
+ * @type {number}
876
+ * @memberof IAiChatsResponse
877
+ */
878
+ 'total': number;
879
+ /**
880
+ *
881
+ * @type {number}
882
+ * @memberof IAiChatsResponse
883
+ */
884
+ 'totalPages': number;
885
+ /**
886
+ *
887
+ * @type {Array<IAiChatResponse>}
888
+ * @memberof IAiChatsResponse
889
+ */
890
+ 'data': Array<IAiChatResponse>;
891
+ }
550
892
  /**
551
893
  *
552
894
  * @export
@@ -993,6 +1335,14 @@ export interface IBrandResponse {
993
1335
  * @memberof IBrandResponse
994
1336
  */
995
1337
  'status': ContentStatusEnum;
1338
+ /**
1339
+ * Construct a type with a set of properties K of type T
1340
+ * @type {{ [key: string]: any; }}
1341
+ * @memberof IBrandResponse
1342
+ */
1343
+ 'structuredData'?: {
1344
+ [key: string]: any;
1345
+ };
996
1346
  /**
997
1347
  *
998
1348
  * @type {string}
@@ -1288,6 +1638,12 @@ export interface ICategoryPatchRequest {
1288
1638
  * @memberof ICategoryPatchRequest
1289
1639
  */
1290
1640
  'contents'?: PartialRecordLanguageEnumIContentsValue;
1641
+ /**
1642
+ *
1643
+ * @type {string}
1644
+ * @memberof ICategoryPatchRequest
1645
+ */
1646
+ 'publishedAt'?: string;
1291
1647
  /**
1292
1648
  *
1293
1649
  * @type {IImage}
@@ -1319,6 +1675,12 @@ export interface ICategoryPostRequest {
1319
1675
  * @memberof ICategoryPostRequest
1320
1676
  */
1321
1677
  'contents': PartialRecordLanguageEnumIContentsValue;
1678
+ /**
1679
+ *
1680
+ * @type {string}
1681
+ * @memberof ICategoryPostRequest
1682
+ */
1683
+ 'publishedAt': string;
1322
1684
  /**
1323
1685
  *
1324
1686
  * @type {IImage}
@@ -1386,6 +1748,12 @@ export interface ICategoryResponse {
1386
1748
  * @memberof ICategoryResponse
1387
1749
  */
1388
1750
  'slugs': Array<string>;
1751
+ /**
1752
+ *
1753
+ * @type {string}
1754
+ * @memberof ICategoryResponse
1755
+ */
1756
+ 'publishedAt': string;
1389
1757
  /**
1390
1758
  *
1391
1759
  * @type {IImage}
@@ -1404,6 +1772,14 @@ export interface ICategoryResponse {
1404
1772
  * @memberof ICategoryResponse
1405
1773
  */
1406
1774
  'status': ContentStatusEnum;
1775
+ /**
1776
+ * Construct a type with a set of properties K of type T
1777
+ * @type {{ [key: string]: any; }}
1778
+ * @memberof ICategoryResponse
1779
+ */
1780
+ 'structuredData'?: {
1781
+ [key: string]: any;
1782
+ };
1407
1783
  /**
1408
1784
  *
1409
1785
  * @type {string}
@@ -1617,6 +1993,12 @@ export interface ICollection {
1617
1993
  * @memberof ICollection
1618
1994
  */
1619
1995
  'template': string;
1996
+ /**
1997
+ *
1998
+ * @type {string}
1999
+ * @memberof ICollection
2000
+ */
2001
+ 'publishedAt': string;
1620
2002
  }
1621
2003
  /**
1622
2004
  *
@@ -1708,6 +2090,12 @@ export interface ICollectionPatchRequest {
1708
2090
  * @memberof ICollectionPatchRequest
1709
2091
  */
1710
2092
  'contents'?: PartialRecordLanguageEnumIContentsValue;
2093
+ /**
2094
+ *
2095
+ * @type {string}
2096
+ * @memberof ICollectionPatchRequest
2097
+ */
2098
+ 'publishedAt'?: string;
1711
2099
  /**
1712
2100
  *
1713
2101
  * @type {IImage}
@@ -1739,6 +2127,12 @@ export interface ICollectionPostRequest {
1739
2127
  * @memberof ICollectionPostRequest
1740
2128
  */
1741
2129
  'contents': PartialRecordLanguageEnumIContentsValue;
2130
+ /**
2131
+ *
2132
+ * @type {string}
2133
+ * @memberof ICollectionPostRequest
2134
+ */
2135
+ 'publishedAt': string;
1742
2136
  /**
1743
2137
  *
1744
2138
  * @type {IImage}
@@ -1794,6 +2188,12 @@ export interface ICollectionResponse {
1794
2188
  * @memberof ICollectionResponse
1795
2189
  */
1796
2190
  'slugs': Array<string>;
2191
+ /**
2192
+ *
2193
+ * @type {string}
2194
+ * @memberof ICollectionResponse
2195
+ */
2196
+ 'publishedAt': string;
1797
2197
  /**
1798
2198
  *
1799
2199
  * @type {IImage}
@@ -1806,6 +2206,14 @@ export interface ICollectionResponse {
1806
2206
  * @memberof ICollectionResponse
1807
2207
  */
1808
2208
  'status': ContentStatusEnum;
2209
+ /**
2210
+ * Construct a type with a set of properties K of type T
2211
+ * @type {{ [key: string]: any; }}
2212
+ * @memberof ICollectionResponse
2213
+ */
2214
+ 'structuredData'?: {
2215
+ [key: string]: any;
2216
+ };
1809
2217
  /**
1810
2218
  *
1811
2219
  * @type {string}
@@ -4129,230 +4537,771 @@ export interface ICompanyUsersCollectionQueryParams {
4129
4537
  'sort'?: string;
4130
4538
  /**
4131
4539
  *
4132
- * @type {CompanyUserStatusEnum}
4133
- * @memberof ICompanyUsersCollectionQueryParams
4540
+ * @type {CompanyUserStatusEnum}
4541
+ * @memberof ICompanyUsersCollectionQueryParams
4542
+ */
4543
+ 'status'?: CompanyUserStatusEnum;
4544
+ }
4545
+ export declare const ICompanyUsersCollectionQueryParamsDateFieldEnum: {
4546
+ readonly CREATED_AT: "createdAt";
4547
+ readonly UPDATED_AT: "updatedAt";
4548
+ };
4549
+ export type ICompanyUsersCollectionQueryParamsDateFieldEnum = typeof ICompanyUsersCollectionQueryParamsDateFieldEnum[keyof typeof ICompanyUsersCollectionQueryParamsDateFieldEnum];
4550
+ /**
4551
+ *
4552
+ * @export
4553
+ * @interface ICompanyUsersResponse
4554
+ */
4555
+ export interface ICompanyUsersResponse {
4556
+ /**
4557
+ *
4558
+ * @type {Array<ICompanyAdminResponseUsersInner>}
4559
+ * @memberof ICompanyUsersResponse
4560
+ */
4561
+ 'users': Array<ICompanyAdminResponseUsersInner>;
4562
+ }
4563
+ /**
4564
+ *
4565
+ * @export
4566
+ * @interface IContactFormCollectionQueryParams
4567
+ */
4568
+ export interface IContactFormCollectionQueryParams {
4569
+ /**
4570
+ *
4571
+ * @type {number}
4572
+ * @memberof IContactFormCollectionQueryParams
4573
+ */
4574
+ 'page'?: number;
4575
+ /**
4576
+ *
4577
+ * @type {number}
4578
+ * @memberof IContactFormCollectionQueryParams
4579
+ */
4580
+ 'itemsPerPage'?: number;
4581
+ /**
4582
+ *
4583
+ * @type {string}
4584
+ * @memberof IContactFormCollectionQueryParams
4585
+ */
4586
+ 'search'?: string;
4587
+ /**
4588
+ *
4589
+ * @type {string}
4590
+ * @memberof IContactFormCollectionQueryParams
4591
+ */
4592
+ 'startDate'?: string;
4593
+ /**
4594
+ *
4595
+ * @type {string}
4596
+ * @memberof IContactFormCollectionQueryParams
4597
+ */
4598
+ 'endDate'?: string;
4599
+ /**
4600
+ *
4601
+ * @type {string}
4602
+ * @memberof IContactFormCollectionQueryParams
4603
+ */
4604
+ 'dateField'?: IContactFormCollectionQueryParamsDateFieldEnum;
4605
+ /**
4606
+ *
4607
+ * @type {OrderEnum}
4608
+ * @memberof IContactFormCollectionQueryParams
4609
+ */
4610
+ 'order'?: OrderEnum;
4611
+ /**
4612
+ *
4613
+ * @type {string}
4614
+ * @memberof IContactFormCollectionQueryParams
4615
+ */
4616
+ 'sort'?: string;
4617
+ /**
4618
+ *
4619
+ * @type {string}
4620
+ * @memberof IContactFormCollectionQueryParams
4621
+ */
4622
+ 'companyId': string;
4623
+ }
4624
+ export declare const IContactFormCollectionQueryParamsDateFieldEnum: {
4625
+ readonly CREATED_AT: "createdAt";
4626
+ readonly UPDATED_AT: "updatedAt";
4627
+ };
4628
+ export type IContactFormCollectionQueryParamsDateFieldEnum = typeof IContactFormCollectionQueryParamsDateFieldEnum[keyof typeof IContactFormCollectionQueryParamsDateFieldEnum];
4629
+ /**
4630
+ *
4631
+ * @export
4632
+ * @interface IContactFormPostRequest
4633
+ */
4634
+ export interface IContactFormPostRequest {
4635
+ /**
4636
+ *
4637
+ * @type {Array<IContactFormResponseDataInner>}
4638
+ * @memberof IContactFormPostRequest
4639
+ */
4640
+ 'data': Array<IContactFormResponseDataInner>;
4641
+ /**
4642
+ *
4643
+ * @type {string}
4644
+ * @memberof IContactFormPostRequest
4645
+ */
4646
+ 'title'?: string;
4647
+ /**
4648
+ *
4649
+ * @type {string}
4650
+ * @memberof IContactFormPostRequest
4651
+ */
4652
+ 'domain': string;
4653
+ }
4654
+ /**
4655
+ *
4656
+ * @export
4657
+ * @interface IContactFormResponse
4658
+ */
4659
+ export interface IContactFormResponse {
4660
+ /**
4661
+ *
4662
+ * @type {string}
4663
+ * @memberof IContactFormResponse
4664
+ */
4665
+ '_id': string;
4666
+ /**
4667
+ *
4668
+ * @type {number}
4669
+ * @memberof IContactFormResponse
4670
+ */
4671
+ '__v': number;
4672
+ /**
4673
+ *
4674
+ * @type {string}
4675
+ * @memberof IContactFormResponse
4676
+ */
4677
+ 'createdAt': string;
4678
+ /**
4679
+ *
4680
+ * @type {string}
4681
+ * @memberof IContactFormResponse
4682
+ */
4683
+ 'updatedAt': string;
4684
+ /**
4685
+ *
4686
+ * @type {string}
4687
+ * @memberof IContactFormResponse
4688
+ */
4689
+ 'company': string;
4690
+ /**
4691
+ *
4692
+ * @type {string}
4693
+ * @memberof IContactFormResponse
4694
+ */
4695
+ 'ip': string;
4696
+ /**
4697
+ *
4698
+ * @type {string}
4699
+ * @memberof IContactFormResponse
4700
+ */
4701
+ 'title': string;
4702
+ /**
4703
+ *
4704
+ * @type {Array<IContactFormResponseDataInner>}
4705
+ * @memberof IContactFormResponse
4706
+ */
4707
+ 'data': Array<IContactFormResponseDataInner>;
4708
+ }
4709
+ /**
4710
+ *
4711
+ * @export
4712
+ * @interface IContactFormResponseDataInner
4713
+ */
4714
+ export interface IContactFormResponseDataInner {
4715
+ /**
4716
+ *
4717
+ * @type {string}
4718
+ * @memberof IContactFormResponseDataInner
4719
+ */
4720
+ 'value'?: string;
4721
+ /**
4722
+ *
4723
+ * @type {string}
4724
+ * @memberof IContactFormResponseDataInner
4725
+ */
4726
+ 'key': string;
4727
+ }
4728
+ /**
4729
+ *
4730
+ * @export
4731
+ * @interface IContactFormsResponse
4732
+ */
4733
+ export interface IContactFormsResponse {
4734
+ /**
4735
+ *
4736
+ * @type {number}
4737
+ * @memberof IContactFormsResponse
4738
+ */
4739
+ 'page': number;
4740
+ /**
4741
+ *
4742
+ * @type {number}
4743
+ * @memberof IContactFormsResponse
4744
+ */
4745
+ 'itemsPerPage': number;
4746
+ /**
4747
+ *
4748
+ * @type {number}
4749
+ * @memberof IContactFormsResponse
4750
+ */
4751
+ 'total': number;
4752
+ /**
4753
+ *
4754
+ * @type {number}
4755
+ * @memberof IContactFormsResponse
4756
+ */
4757
+ 'totalPages': number;
4758
+ /**
4759
+ *
4760
+ * @type {Array<IContactFormResponse>}
4761
+ * @memberof IContactFormsResponse
4762
+ */
4763
+ 'data': Array<IContactFormResponse>;
4764
+ }
4765
+ /**
4766
+ *
4767
+ * @export
4768
+ * @interface IContentPlanAttempt
4769
+ */
4770
+ export interface IContentPlanAttempt {
4771
+ /**
4772
+ *
4773
+ * @type {string}
4774
+ * @memberof IContentPlanAttempt
4775
+ */
4776
+ 'step': IContentPlanAttemptStepEnum;
4777
+ /**
4778
+ *
4779
+ * @type {LanguageEnum}
4780
+ * @memberof IContentPlanAttempt
4781
+ */
4782
+ 'language'?: LanguageEnum;
4783
+ /**
4784
+ *
4785
+ * @type {string}
4786
+ * @memberof IContentPlanAttempt
4787
+ */
4788
+ 'at': string;
4789
+ /**
4790
+ *
4791
+ * @type {number}
4792
+ * @memberof IContentPlanAttempt
4793
+ */
4794
+ 'durationMs'?: number;
4795
+ /**
4796
+ *
4797
+ * @type {number}
4798
+ * @memberof IContentPlanAttempt
4799
+ */
4800
+ 'seoScore'?: number;
4801
+ /**
4802
+ * Construct a type with a set of properties K of type T
4803
+ * @type {{ [key: string]: any; }}
4804
+ * @memberof IContentPlanAttempt
4805
+ */
4806
+ 'feedback'?: {
4807
+ [key: string]: any;
4808
+ };
4809
+ /**
4810
+ *
4811
+ * @type {string}
4812
+ * @memberof IContentPlanAttempt
4813
+ */
4814
+ 'error'?: string;
4815
+ }
4816
+ export declare const IContentPlanAttemptStepEnum: {
4817
+ readonly GENERATOR: "generator";
4818
+ readonly CRITIC: "critic";
4819
+ readonly REFINER: "refiner";
4820
+ readonly PACKAGER: "packager";
4821
+ readonly TRANSLATOR: "translator";
4822
+ };
4823
+ export type IContentPlanAttemptStepEnum = typeof IContentPlanAttemptStepEnum[keyof typeof IContentPlanAttemptStepEnum];
4824
+ /**
4825
+ *
4826
+ * @export
4827
+ * @interface IContentPlanBulkPostRequest
4828
+ */
4829
+ export interface IContentPlanBulkPostRequest {
4830
+ /**
4831
+ *
4832
+ * @type {string}
4833
+ * @memberof IContentPlanBulkPostRequest
4834
+ */
4835
+ 'company': string;
4836
+ /**
4837
+ *
4838
+ * @type {Array<IContentPlanPostRequest>}
4839
+ * @memberof IContentPlanBulkPostRequest
4840
+ */
4841
+ 'plans': Array<IContentPlanPostRequest>;
4842
+ }
4843
+ /**
4844
+ *
4845
+ * @export
4846
+ * @interface IContentPlanCollectionQueryParams
4847
+ */
4848
+ export interface IContentPlanCollectionQueryParams {
4849
+ /**
4850
+ *
4851
+ * @type {number}
4852
+ * @memberof IContentPlanCollectionQueryParams
4853
+ */
4854
+ 'page'?: number;
4855
+ /**
4856
+ *
4857
+ * @type {number}
4858
+ * @memberof IContentPlanCollectionQueryParams
4859
+ */
4860
+ 'itemsPerPage'?: number;
4861
+ /**
4862
+ *
4863
+ * @type {string}
4864
+ * @memberof IContentPlanCollectionQueryParams
4865
+ */
4866
+ 'search'?: string;
4867
+ /**
4868
+ *
4869
+ * @type {string}
4870
+ * @memberof IContentPlanCollectionQueryParams
4871
+ */
4872
+ 'startDate'?: string;
4873
+ /**
4874
+ *
4875
+ * @type {string}
4876
+ * @memberof IContentPlanCollectionQueryParams
4877
+ */
4878
+ 'endDate'?: string;
4879
+ /**
4880
+ *
4881
+ * @type {string}
4882
+ * @memberof IContentPlanCollectionQueryParams
4883
+ */
4884
+ 'dateField'?: IContentPlanCollectionQueryParamsDateFieldEnum;
4885
+ /**
4886
+ *
4887
+ * @type {OrderEnum}
4888
+ * @memberof IContentPlanCollectionQueryParams
4889
+ */
4890
+ 'order'?: OrderEnum;
4891
+ /**
4892
+ *
4893
+ * @type {string}
4894
+ * @memberof IContentPlanCollectionQueryParams
4895
+ */
4896
+ 'sort'?: string;
4897
+ /**
4898
+ *
4899
+ * @type {string}
4900
+ * @memberof IContentPlanCollectionQueryParams
4901
+ */
4902
+ 'companyId'?: string;
4903
+ /**
4904
+ *
4905
+ * @type {string}
4906
+ * @memberof IContentPlanCollectionQueryParams
4907
+ */
4908
+ 'domain'?: string;
4909
+ /**
4910
+ *
4911
+ * @type {ContentPlanStatusEnum}
4912
+ * @memberof IContentPlanCollectionQueryParams
4913
+ */
4914
+ 'status'?: ContentPlanStatusEnum;
4915
+ /**
4916
+ *
4917
+ * @type {string}
4918
+ * @memberof IContentPlanCollectionQueryParams
4919
+ */
4920
+ 'seriesId'?: string;
4921
+ /**
4922
+ *
4923
+ * @type {string}
4924
+ * @memberof IContentPlanCollectionQueryParams
4925
+ */
4926
+ 'type'?: string;
4927
+ }
4928
+ export declare const IContentPlanCollectionQueryParamsDateFieldEnum: {
4929
+ readonly CREATED_AT: "createdAt";
4930
+ readonly UPDATED_AT: "updatedAt";
4931
+ };
4932
+ export type IContentPlanCollectionQueryParamsDateFieldEnum = typeof IContentPlanCollectionQueryParamsDateFieldEnum[keyof typeof IContentPlanCollectionQueryParamsDateFieldEnum];
4933
+ /**
4934
+ *
4935
+ * @export
4936
+ * @interface IContentPlanGeneratedContent
4937
+ */
4938
+ export interface IContentPlanGeneratedContent {
4939
+ /**
4940
+ *
4941
+ * @type {LanguageEnum}
4942
+ * @memberof IContentPlanGeneratedContent
4943
+ */
4944
+ 'language': LanguageEnum;
4945
+ /**
4946
+ *
4947
+ * @type {string}
4948
+ * @memberof IContentPlanGeneratedContent
4949
+ */
4950
+ 'title': string;
4951
+ /**
4952
+ *
4953
+ * @type {string}
4954
+ * @memberof IContentPlanGeneratedContent
4955
+ */
4956
+ 'description': string;
4957
+ /**
4958
+ *
4959
+ * @type {string}
4960
+ * @memberof IContentPlanGeneratedContent
4961
+ */
4962
+ 'metaTitle'?: string;
4963
+ /**
4964
+ *
4965
+ * @type {string}
4966
+ * @memberof IContentPlanGeneratedContent
4967
+ */
4968
+ 'metaDescription'?: string;
4969
+ /**
4970
+ *
4971
+ * @type {Array<string>}
4972
+ * @memberof IContentPlanGeneratedContent
4973
+ */
4974
+ 'keywords': Array<string>;
4975
+ /**
4976
+ *
4977
+ * @type {string}
4978
+ * @memberof IContentPlanGeneratedContent
4979
+ */
4980
+ 'slug'?: string;
4981
+ /**
4982
+ *
4983
+ * @type {string}
4984
+ * @memberof IContentPlanGeneratedContent
4985
+ */
4986
+ 'content': string;
4987
+ /**
4988
+ *
4989
+ * @type {string}
4990
+ * @memberof IContentPlanGeneratedContent
4991
+ */
4992
+ 'summary'?: string;
4993
+ /**
4994
+ * Construct a type with a set of properties K of type T
4995
+ * @type {{ [key: string]: any; }}
4996
+ * @memberof IContentPlanGeneratedContent
4997
+ */
4998
+ 'structuredData'?: {
4999
+ [key: string]: any;
5000
+ };
5001
+ }
5002
+ /**
5003
+ *
5004
+ * @export
5005
+ * @interface IContentPlanPatchRequest
5006
+ */
5007
+ export interface IContentPlanPatchRequest {
5008
+ /**
5009
+ *
5010
+ * @type {string}
5011
+ * @memberof IContentPlanPatchRequest
5012
+ */
5013
+ 'promptIntent'?: string;
5014
+ /**
5015
+ *
5016
+ * @type {string}
5017
+ * @memberof IContentPlanPatchRequest
5018
+ */
5019
+ 'customInstructions'?: string;
5020
+ /**
5021
+ *
5022
+ * @type {Array<string>}
5023
+ * @memberof IContentPlanPatchRequest
5024
+ */
5025
+ 'keywords'?: Array<string>;
5026
+ /**
5027
+ *
5028
+ * @type {Array<LanguageEnum>}
5029
+ * @memberof IContentPlanPatchRequest
5030
+ */
5031
+ 'languages'?: Array<LanguageEnum>;
5032
+ /**
5033
+ *
5034
+ * @type {string}
5035
+ * @memberof IContentPlanPatchRequest
5036
+ */
5037
+ 'targetPublishedAt'?: string;
5038
+ }
5039
+ /**
5040
+ *
5041
+ * @export
5042
+ * @interface IContentPlanPostRequest
5043
+ */
5044
+ export interface IContentPlanPostRequest {
5045
+ /**
5046
+ *
5047
+ * @type {string}
5048
+ * @memberof IContentPlanPostRequest
5049
+ */
5050
+ 'company': string;
5051
+ /**
5052
+ *
5053
+ * @type {string}
5054
+ * @memberof IContentPlanPostRequest
5055
+ */
5056
+ 'seriesId'?: string;
5057
+ /**
5058
+ *
5059
+ * @type {number}
5060
+ * @memberof IContentPlanPostRequest
5061
+ */
5062
+ 'seriesIndex'?: number;
5063
+ /**
5064
+ *
5065
+ * @type {number}
5066
+ * @memberof IContentPlanPostRequest
5067
+ */
5068
+ 'seriesTotal'?: number;
5069
+ /**
5070
+ *
5071
+ * @type {string}
5072
+ * @memberof IContentPlanPostRequest
5073
+ */
5074
+ 'template': string;
5075
+ /**
5076
+ *
5077
+ * @type {string}
5078
+ * @memberof IContentPlanPostRequest
5079
+ */
5080
+ 'type': string;
5081
+ /**
5082
+ *
5083
+ * @type {string}
5084
+ * @memberof IContentPlanPostRequest
5085
+ */
5086
+ 'promptIntent': string;
5087
+ /**
5088
+ *
5089
+ * @type {string}
5090
+ * @memberof IContentPlanPostRequest
5091
+ */
5092
+ 'customInstructions'?: string;
5093
+ /**
5094
+ *
5095
+ * @type {Array<string>}
5096
+ * @memberof IContentPlanPostRequest
5097
+ */
5098
+ 'keywords'?: Array<string>;
5099
+ /**
5100
+ *
5101
+ * @type {Array<LanguageEnum>}
5102
+ * @memberof IContentPlanPostRequest
5103
+ */
5104
+ 'languages': Array<LanguageEnum>;
5105
+ /**
5106
+ *
5107
+ * @type {string}
5108
+ * @memberof IContentPlanPostRequest
4134
5109
  */
4135
- 'status'?: CompanyUserStatusEnum;
4136
- }
4137
- export declare const ICompanyUsersCollectionQueryParamsDateFieldEnum: {
4138
- readonly CREATED_AT: "createdAt";
4139
- readonly UPDATED_AT: "updatedAt";
4140
- };
4141
- export type ICompanyUsersCollectionQueryParamsDateFieldEnum = typeof ICompanyUsersCollectionQueryParamsDateFieldEnum[keyof typeof ICompanyUsersCollectionQueryParamsDateFieldEnum];
4142
- /**
4143
- *
4144
- * @export
4145
- * @interface ICompanyUsersResponse
4146
- */
4147
- export interface ICompanyUsersResponse {
5110
+ 'targetPublishedAt': string;
4148
5111
  /**
4149
5112
  *
4150
- * @type {Array<ICompanyAdminResponseUsersInner>}
4151
- * @memberof ICompanyUsersResponse
5113
+ * @type {number}
5114
+ * @memberof IContentPlanPostRequest
4152
5115
  */
4153
- 'users': Array<ICompanyAdminResponseUsersInner>;
5116
+ 'minSeoScore'?: number;
4154
5117
  }
4155
5118
  /**
4156
5119
  *
4157
5120
  * @export
4158
- * @interface IContactFormCollectionQueryParams
5121
+ * @interface IContentPlanResponse
4159
5122
  */
4160
- export interface IContactFormCollectionQueryParams {
5123
+ export interface IContentPlanResponse {
4161
5124
  /**
4162
5125
  *
4163
- * @type {number}
4164
- * @memberof IContactFormCollectionQueryParams
5126
+ * @type {string}
5127
+ * @memberof IContentPlanResponse
4165
5128
  */
4166
- 'page'?: number;
5129
+ '_id': string;
4167
5130
  /**
4168
5131
  *
4169
5132
  * @type {number}
4170
- * @memberof IContactFormCollectionQueryParams
5133
+ * @memberof IContentPlanResponse
4171
5134
  */
4172
- 'itemsPerPage'?: number;
5135
+ '__v': number;
4173
5136
  /**
4174
5137
  *
4175
5138
  * @type {string}
4176
- * @memberof IContactFormCollectionQueryParams
5139
+ * @memberof IContentPlanResponse
4177
5140
  */
4178
- 'search'?: string;
5141
+ 'createdAt': string;
4179
5142
  /**
4180
5143
  *
4181
5144
  * @type {string}
4182
- * @memberof IContactFormCollectionQueryParams
5145
+ * @memberof IContentPlanResponse
4183
5146
  */
4184
- 'startDate'?: string;
5147
+ 'updatedAt': string;
4185
5148
  /**
4186
5149
  *
4187
5150
  * @type {string}
4188
- * @memberof IContactFormCollectionQueryParams
5151
+ * @memberof IContentPlanResponse
4189
5152
  */
4190
- 'endDate'?: string;
5153
+ 'company': string;
4191
5154
  /**
4192
5155
  *
4193
5156
  * @type {string}
4194
- * @memberof IContactFormCollectionQueryParams
5157
+ * @memberof IContentPlanResponse
4195
5158
  */
4196
- 'dateField'?: IContactFormCollectionQueryParamsDateFieldEnum;
5159
+ 'seriesId'?: string;
4197
5160
  /**
4198
5161
  *
4199
- * @type {OrderEnum}
4200
- * @memberof IContactFormCollectionQueryParams
5162
+ * @type {number}
5163
+ * @memberof IContentPlanResponse
4201
5164
  */
4202
- 'order'?: OrderEnum;
5165
+ 'seriesIndex'?: number;
4203
5166
  /**
4204
5167
  *
4205
- * @type {string}
4206
- * @memberof IContactFormCollectionQueryParams
5168
+ * @type {number}
5169
+ * @memberof IContentPlanResponse
4207
5170
  */
4208
- 'sort'?: string;
5171
+ 'seriesTotal'?: number;
4209
5172
  /**
4210
5173
  *
4211
5174
  * @type {string}
4212
- * @memberof IContactFormCollectionQueryParams
5175
+ * @memberof IContentPlanResponse
4213
5176
  */
4214
- 'companyId': string;
4215
- }
4216
- export declare const IContactFormCollectionQueryParamsDateFieldEnum: {
4217
- readonly CREATED_AT: "createdAt";
4218
- readonly UPDATED_AT: "updatedAt";
4219
- };
4220
- export type IContactFormCollectionQueryParamsDateFieldEnum = typeof IContactFormCollectionQueryParamsDateFieldEnum[keyof typeof IContactFormCollectionQueryParamsDateFieldEnum];
4221
- /**
4222
- *
4223
- * @export
4224
- * @interface IContactFormPostRequest
4225
- */
4226
- export interface IContactFormPostRequest {
5177
+ 'template': string;
4227
5178
  /**
4228
5179
  *
4229
- * @type {Array<IContactFormResponseDataInner>}
4230
- * @memberof IContactFormPostRequest
5180
+ * @type {string}
5181
+ * @memberof IContentPlanResponse
4231
5182
  */
4232
- 'data': Array<IContactFormResponseDataInner>;
5183
+ 'type': string;
4233
5184
  /**
4234
5185
  *
4235
5186
  * @type {string}
4236
- * @memberof IContactFormPostRequest
5187
+ * @memberof IContentPlanResponse
4237
5188
  */
4238
- 'title'?: string;
5189
+ 'promptIntent': string;
4239
5190
  /**
4240
5191
  *
4241
5192
  * @type {string}
4242
- * @memberof IContactFormPostRequest
5193
+ * @memberof IContentPlanResponse
4243
5194
  */
4244
- 'domain': string;
4245
- }
4246
- /**
4247
- *
4248
- * @export
4249
- * @interface IContactFormResponse
4250
- */
4251
- export interface IContactFormResponse {
5195
+ 'customInstructions'?: string;
4252
5196
  /**
4253
5197
  *
4254
- * @type {string}
4255
- * @memberof IContactFormResponse
5198
+ * @type {Array<string>}
5199
+ * @memberof IContentPlanResponse
4256
5200
  */
4257
- '_id': string;
5201
+ 'keywords'?: Array<string>;
4258
5202
  /**
4259
5203
  *
4260
- * @type {number}
4261
- * @memberof IContactFormResponse
5204
+ * @type {Array<LanguageEnum>}
5205
+ * @memberof IContentPlanResponse
4262
5206
  */
4263
- '__v': number;
5207
+ 'languages': Array<LanguageEnum>;
4264
5208
  /**
4265
5209
  *
4266
5210
  * @type {string}
4267
- * @memberof IContactFormResponse
5211
+ * @memberof IContentPlanResponse
4268
5212
  */
4269
- 'createdAt': string;
5213
+ 'targetPublishedAt': string;
4270
5214
  /**
4271
5215
  *
4272
- * @type {string}
4273
- * @memberof IContactFormResponse
5216
+ * @type {ContentPlanStatusEnum}
5217
+ * @memberof IContentPlanResponse
4274
5218
  */
4275
- 'updatedAt': string;
5219
+ 'status': ContentPlanStatusEnum;
4276
5220
  /**
4277
5221
  *
4278
- * @type {string}
4279
- * @memberof IContactFormResponse
5222
+ * @type {number}
5223
+ * @memberof IContentPlanResponse
4280
5224
  */
4281
- 'company': string;
5225
+ 'seoScore'?: number;
4282
5226
  /**
4283
5227
  *
4284
- * @type {string}
4285
- * @memberof IContactFormResponse
5228
+ * @type {number}
5229
+ * @memberof IContentPlanResponse
4286
5230
  */
4287
- 'ip': string;
5231
+ 'minSeoScore'?: number;
5232
+ /**
5233
+ *
5234
+ * @type {Array<IContentPlanAttempt>}
5235
+ * @memberof IContentPlanResponse
5236
+ */
5237
+ 'attempts': Array<IContentPlanAttempt>;
4288
5238
  /**
4289
5239
  *
4290
5240
  * @type {string}
4291
- * @memberof IContactFormResponse
5241
+ * @memberof IContentPlanResponse
4292
5242
  */
4293
- 'title': string;
5243
+ 'lastError'?: string;
4294
5244
  /**
4295
5245
  *
4296
- * @type {Array<IContactFormResponseDataInner>}
4297
- * @memberof IContactFormResponse
5246
+ * @type {IContentPlanGeneratedContent}
5247
+ * @memberof IContentPlanResponse
4298
5248
  */
4299
- 'data': Array<IContactFormResponseDataInner>;
4300
- }
4301
- /**
4302
- *
4303
- * @export
4304
- * @interface IContactFormResponseDataInner
4305
- */
4306
- export interface IContactFormResponseDataInner {
5249
+ 'generated'?: IContentPlanGeneratedContent;
4307
5250
  /**
4308
5251
  *
4309
5252
  * @type {string}
4310
- * @memberof IContactFormResponseDataInner
5253
+ * @memberof IContentPlanResponse
4311
5254
  */
4312
- 'value'?: string;
5255
+ 'page'?: string;
4313
5256
  /**
4314
5257
  *
4315
5258
  * @type {string}
4316
- * @memberof IContactFormResponseDataInner
5259
+ * @memberof IContentPlanResponse
4317
5260
  */
4318
- 'key': string;
5261
+ 'triggeredBy'?: string;
5262
+ /**
5263
+ * Plan\'ın iş kuyruğuna başarıyla yazıldığı an. `undefined` ise dışardan tetiklenen /api/start-jobs cron\'u bu planı yeniden enqueue etmeye çalışır (idempotency_key UNIQUE constraint\'i sayesinde tekrar yazılırsa çakışma sorunsuz geri alınır).
5264
+ * @type {string}
5265
+ * @memberof IContentPlanResponse
5266
+ */
5267
+ 'queuedAt'?: string;
4319
5268
  }
4320
5269
  /**
4321
5270
  *
4322
5271
  * @export
4323
- * @interface IContactFormsResponse
5272
+ * @interface IContentPlansResponse
4324
5273
  */
4325
- export interface IContactFormsResponse {
5274
+ export interface IContentPlansResponse {
4326
5275
  /**
4327
5276
  *
4328
5277
  * @type {number}
4329
- * @memberof IContactFormsResponse
5278
+ * @memberof IContentPlansResponse
4330
5279
  */
4331
5280
  'page': number;
4332
5281
  /**
4333
5282
  *
4334
5283
  * @type {number}
4335
- * @memberof IContactFormsResponse
5284
+ * @memberof IContentPlansResponse
4336
5285
  */
4337
5286
  'itemsPerPage': number;
4338
5287
  /**
4339
5288
  *
4340
5289
  * @type {number}
4341
- * @memberof IContactFormsResponse
5290
+ * @memberof IContentPlansResponse
4342
5291
  */
4343
5292
  'total': number;
4344
5293
  /**
4345
5294
  *
4346
5295
  * @type {number}
4347
- * @memberof IContactFormsResponse
5296
+ * @memberof IContentPlansResponse
4348
5297
  */
4349
5298
  'totalPages': number;
4350
5299
  /**
4351
5300
  *
4352
- * @type {Array<IContactFormResponse>}
4353
- * @memberof IContactFormsResponse
5301
+ * @type {Array<IContentPlanResponse>}
5302
+ * @memberof IContentPlansResponse
4354
5303
  */
4355
- 'data': Array<IContactFormResponse>;
5304
+ 'data': Array<IContentPlanResponse>;
4356
5305
  }
4357
5306
  /**
4358
5307
  *
@@ -4366,6 +5315,14 @@ export interface IContentsValue {
4366
5315
  * @memberof IContentsValue
4367
5316
  */
4368
5317
  'status': ContentStatusEnum;
5318
+ /**
5319
+ * Construct a type with a set of properties K of type T
5320
+ * @type {{ [key: string]: any; }}
5321
+ * @memberof IContentsValue
5322
+ */
5323
+ 'structuredData'?: {
5324
+ [key: string]: any;
5325
+ };
4369
5326
  /**
4370
5327
  *
4371
5328
  * @type {string}
@@ -6632,12 +7589,24 @@ export interface IPagePatchRequest {
6632
7589
  * @memberof IPagePatchRequest
6633
7590
  */
6634
7591
  'contents'?: PartialRecordLanguageEnumIContentsValue;
7592
+ /**
7593
+ *
7594
+ * @type {string}
7595
+ * @memberof IPagePatchRequest
7596
+ */
7597
+ 'publishedAt'?: string;
6635
7598
  /**
6636
7599
  *
6637
7600
  * @type {IImage}
6638
7601
  * @memberof IPagePatchRequest
6639
7602
  */
6640
7603
  'thumbnail'?: IImage;
7604
+ /**
7605
+ *
7606
+ * @type {boolean}
7607
+ * @memberof IPagePatchRequest
7608
+ */
7609
+ 'draft'?: boolean;
6641
7610
  }
6642
7611
  /**
6643
7612
  *
@@ -6663,6 +7632,12 @@ export interface IPagePostRequest {
6663
7632
  * @memberof IPagePostRequest
6664
7633
  */
6665
7634
  'contents': PartialRecordLanguageEnumIContentsValue;
7635
+ /**
7636
+ *
7637
+ * @type {string}
7638
+ * @memberof IPagePostRequest
7639
+ */
7640
+ 'publishedAt': string;
6666
7641
  /**
6667
7642
  *
6668
7643
  * @type {IImage}
@@ -6675,6 +7650,12 @@ export interface IPagePostRequest {
6675
7650
  * @memberof IPagePostRequest
6676
7651
  */
6677
7652
  'type': string;
7653
+ /**
7654
+ *
7655
+ * @type {boolean}
7656
+ * @memberof IPagePostRequest
7657
+ */
7658
+ 'draft': boolean;
6678
7659
  }
6679
7660
  /**
6680
7661
  *
@@ -6724,6 +7705,12 @@ export interface IPageResponse {
6724
7705
  * @memberof IPageResponse
6725
7706
  */
6726
7707
  'slugs': Array<string>;
7708
+ /**
7709
+ *
7710
+ * @type {string}
7711
+ * @memberof IPageResponse
7712
+ */
7713
+ 'publishedAt': string;
6727
7714
  /**
6728
7715
  *
6729
7716
  * @type {IImage}
@@ -6736,12 +7723,26 @@ export interface IPageResponse {
6736
7723
  * @memberof IPageResponse
6737
7724
  */
6738
7725
  'type': string;
7726
+ /**
7727
+ *
7728
+ * @type {boolean}
7729
+ * @memberof IPageResponse
7730
+ */
7731
+ 'draft': boolean;
6739
7732
  /**
6740
7733
  *
6741
7734
  * @type {ContentStatusEnum}
6742
7735
  * @memberof IPageResponse
6743
7736
  */
6744
7737
  'status': ContentStatusEnum;
7738
+ /**
7739
+ * Construct a type with a set of properties K of type T
7740
+ * @type {{ [key: string]: any; }}
7741
+ * @memberof IPageResponse
7742
+ */
7743
+ 'structuredData'?: {
7744
+ [key: string]: any;
7745
+ };
6745
7746
  /**
6746
7747
  *
6747
7748
  * @type {string}
@@ -7491,6 +8492,12 @@ export interface IProductPatchRequest {
7491
8492
  'attributes'?: {
7492
8493
  [key: string]: string;
7493
8494
  };
8495
+ /**
8496
+ *
8497
+ * @type {string}
8498
+ * @memberof IProductPatchRequest
8499
+ */
8500
+ 'publishedAt'?: string;
7494
8501
  }
7495
8502
  /**
7496
8503
  *
@@ -7576,6 +8583,12 @@ export interface IProductPostRequest {
7576
8583
  'attributes'?: {
7577
8584
  [key: string]: string;
7578
8585
  };
8586
+ /**
8587
+ *
8588
+ * @type {string}
8589
+ * @memberof IProductPostRequest
8590
+ */
8591
+ 'publishedAt': string;
7579
8592
  /**
7580
8593
  *
7581
8594
  * @type {string}
@@ -7739,12 +8752,26 @@ export interface IProductResponse {
7739
8752
  * @memberof IProductResponse
7740
8753
  */
7741
8754
  'reviewCounts': PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts;
8755
+ /**
8756
+ *
8757
+ * @type {string}
8758
+ * @memberof IProductResponse
8759
+ */
8760
+ 'publishedAt': string;
7742
8761
  /**
7743
8762
  *
7744
8763
  * @type {ContentStatusEnum}
7745
8764
  * @memberof IProductResponse
7746
8765
  */
7747
8766
  'status': ContentStatusEnum;
8767
+ /**
8768
+ * Construct a type with a set of properties K of type T
8769
+ * @type {{ [key: string]: any; }}
8770
+ * @memberof IProductResponse
8771
+ */
8772
+ 'structuredData'?: {
8773
+ [key: string]: any;
8774
+ };
7748
8775
  /**
7749
8776
  *
7750
8777
  * @type {string}
@@ -9739,10 +10766,10 @@ export type IUniqueCollectionQueryParamsDateFieldEnum = typeof IUniqueCollection
9739
10766
  export interface IUniquePagePatchRequest {
9740
10767
  /**
9741
10768
  *
9742
- * @type {PartialRecordLanguageEnumTitleStringDescription63String}
10769
+ * @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny}
9743
10770
  * @memberof IUniquePagePatchRequest
9744
10771
  */
9745
- 'contents': PartialRecordLanguageEnumTitleStringDescription63String;
10772
+ 'contents': PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny;
9746
10773
  /**
9747
10774
  *
9748
10775
  * @type {IImage}
@@ -9788,10 +10815,10 @@ export interface IUniquePageResponse {
9788
10815
  'updatedAt': string;
9789
10816
  /**
9790
10817
  *
9791
- * @type {PartialRecordLanguageEnumTitleStringDescription63String}
10818
+ * @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny}
9792
10819
  * @memberof IUniquePageResponse
9793
10820
  */
9794
- 'contents': PartialRecordLanguageEnumTitleStringDescription63String;
10821
+ 'contents': PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny;
9795
10822
  /**
9796
10823
  *
9797
10824
  * @type {IImage}
@@ -10701,44 +11728,52 @@ export interface PartialRecordLanguageEnumTitleString {
10701
11728
  /**
10702
11729
  * Make all properties in T optional
10703
11730
  * @export
10704
- * @interface PartialRecordLanguageEnumTitleStringDescription63String
11731
+ * @interface PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny
10705
11732
  */
10706
- export interface PartialRecordLanguageEnumTitleStringDescription63String {
11733
+ export interface PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny {
10707
11734
  /**
10708
11735
  *
10709
- * @type {PartialRecordLanguageEnumTitleStringDescription63StringTr}
10710
- * @memberof PartialRecordLanguageEnumTitleStringDescription63String
11736
+ * @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr}
11737
+ * @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny
10711
11738
  */
10712
- 'tr'?: PartialRecordLanguageEnumTitleStringDescription63StringTr;
11739
+ 'tr'?: PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr;
10713
11740
  /**
10714
11741
  *
10715
- * @type {PartialRecordLanguageEnumTitleStringDescription63StringTr}
10716
- * @memberof PartialRecordLanguageEnumTitleStringDescription63String
11742
+ * @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr}
11743
+ * @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny
10717
11744
  */
10718
- 'en'?: PartialRecordLanguageEnumTitleStringDescription63StringTr;
11745
+ 'en'?: PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr;
10719
11746
  /**
10720
11747
  *
10721
- * @type {PartialRecordLanguageEnumTitleStringDescription63StringTr}
10722
- * @memberof PartialRecordLanguageEnumTitleStringDescription63String
11748
+ * @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr}
11749
+ * @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny
10723
11750
  */
10724
- 'de'?: PartialRecordLanguageEnumTitleStringDescription63StringTr;
11751
+ 'de'?: PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr;
10725
11752
  }
10726
11753
  /**
10727
11754
  *
10728
11755
  * @export
10729
- * @interface PartialRecordLanguageEnumTitleStringDescription63StringTr
11756
+ * @interface PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr
10730
11757
  */
10731
- export interface PartialRecordLanguageEnumTitleStringDescription63StringTr {
11758
+ export interface PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr {
11759
+ /**
11760
+ * Construct a type with a set of properties K of type T
11761
+ * @type {{ [key: string]: any; }}
11762
+ * @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr
11763
+ */
11764
+ 'structuredData'?: {
11765
+ [key: string]: any;
11766
+ };
10732
11767
  /**
10733
11768
  *
10734
11769
  * @type {string}
10735
- * @memberof PartialRecordLanguageEnumTitleStringDescription63StringTr
11770
+ * @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr
10736
11771
  */
10737
11772
  'description'?: string;
10738
11773
  /**
10739
11774
  *
10740
11775
  * @type {string}
10741
- * @memberof PartialRecordLanguageEnumTitleStringDescription63StringTr
11776
+ * @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr
10742
11777
  */
10743
11778
  'title': string;
10744
11779
  }
@@ -10920,6 +11955,12 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
10920
11955
  * @memberof PickICategoryExcludeKeyofICategoryAttributes
10921
11956
  */
10922
11957
  'slugs': Array<string>;
11958
+ /**
11959
+ *
11960
+ * @type {string}
11961
+ * @memberof PickICategoryExcludeKeyofICategoryAttributes
11962
+ */
11963
+ 'publishedAt': string;
10923
11964
  /**
10924
11965
  *
10925
11966
  * @type {IImage}
@@ -10951,6 +11992,12 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
10951
11992
  * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
10952
11993
  */
10953
11994
  'contents': PartialRecordLanguageEnumIContentsValue;
11995
+ /**
11996
+ *
11997
+ * @type {string}
11998
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
11999
+ */
12000
+ 'publishedAt': string;
10954
12001
  /**
10955
12002
  *
10956
12003
  * @type {IImage}
@@ -11038,6 +12085,12 @@ export interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugs
11038
12085
  * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
11039
12086
  */
11040
12087
  'contents': PartialRecordLanguageEnumIContentsValue;
12088
+ /**
12089
+ *
12090
+ * @type {string}
12091
+ * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12092
+ */
12093
+ 'publishedAt': string;
11041
12094
  /**
11042
12095
  *
11043
12096
  * @type {IImage}
@@ -11093,6 +12146,12 @@ export interface PickICollectionExcludeKeyofICollectionTemplate {
11093
12146
  * @memberof PickICollectionExcludeKeyofICollectionTemplate
11094
12147
  */
11095
12148
  'slugs': Array<string>;
12149
+ /**
12150
+ *
12151
+ * @type {string}
12152
+ * @memberof PickICollectionExcludeKeyofICollectionTemplate
12153
+ */
12154
+ 'publishedAt': string;
11096
12155
  /**
11097
12156
  *
11098
12157
  * @type {IImage}
@@ -12258,6 +13317,12 @@ export interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofICont
12258
13317
  * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12259
13318
  */
12260
13319
  'contents': PartialRecordLanguageEnumIContentsValue;
13320
+ /**
13321
+ *
13322
+ * @type {string}
13323
+ * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
13324
+ */
13325
+ 'publishedAt': string;
12261
13326
  /**
12262
13327
  *
12263
13328
  * @type {IImage}
@@ -12270,6 +13335,12 @@ export interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofICont
12270
13335
  * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12271
13336
  */
12272
13337
  'type': string;
13338
+ /**
13339
+ *
13340
+ * @type {boolean}
13341
+ * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
13342
+ */
13343
+ 'draft': boolean;
12273
13344
  }
12274
13345
  /**
12275
13346
  * From T, pick a set of properties whose keys are in the union K
@@ -12319,6 +13390,12 @@ export interface PickIPageExcludeKeyofIPageTemplate {
12319
13390
  * @memberof PickIPageExcludeKeyofIPageTemplate
12320
13391
  */
12321
13392
  'slugs': Array<string>;
13393
+ /**
13394
+ *
13395
+ * @type {string}
13396
+ * @memberof PickIPageExcludeKeyofIPageTemplate
13397
+ */
13398
+ 'publishedAt': string;
12322
13399
  /**
12323
13400
  *
12324
13401
  * @type {IImage}
@@ -12331,6 +13408,12 @@ export interface PickIPageExcludeKeyofIPageTemplate {
12331
13408
  * @memberof PickIPageExcludeKeyofIPageTemplate
12332
13409
  */
12333
13410
  'type': string;
13411
+ /**
13412
+ *
13413
+ * @type {boolean}
13414
+ * @memberof PickIPageExcludeKeyofIPageTemplate
13415
+ */
13416
+ 'draft': boolean;
12334
13417
  }
12335
13418
  /**
12336
13419
  * From T, pick a set of properties whose keys are in the union K
@@ -12537,6 +13620,12 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
12537
13620
  * @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
12538
13621
  */
12539
13622
  'reviewCounts': PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts;
13623
+ /**
13624
+ *
13625
+ * @type {string}
13626
+ * @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
13627
+ */
13628
+ 'publishedAt': string;
12540
13629
  }
12541
13630
  /**
12542
13631
  *
@@ -12715,6 +13804,12 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
12715
13804
  'attributes'?: {
12716
13805
  [key: string]: string;
12717
13806
  };
13807
+ /**
13808
+ *
13809
+ * @type {string}
13810
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
13811
+ */
13812
+ 'publishedAt': string;
12718
13813
  }
12719
13814
  /**
12720
13815
  * From T, pick a set of properties whose keys are in the union K
@@ -13369,10 +14464,10 @@ export interface PickIUniquePageExcludeKeyofIUniquePageTemplate {
13369
14464
  'updatedAt': string;
13370
14465
  /**
13371
14466
  *
13372
- * @type {PartialRecordLanguageEnumTitleStringDescription63String}
14467
+ * @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny}
13373
14468
  * @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
13374
14469
  */
13375
- 'contents': PartialRecordLanguageEnumTitleStringDescription63String;
14470
+ 'contents': PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny;
13376
14471
  /**
13377
14472
  *
13378
14473
  * @type {IImage}