@infisale-client/api-client 1.3.61 → 1.3.66
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 +1505 -110
- package/dist/api/api.js +62 -3
- package/dist/api/api.mjs +59 -0
- package/package.json +2 -2
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
|
|
@@ -927,21 +1269,39 @@ export interface IBrandPatchRequest {
|
|
|
927
1269
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
928
1270
|
/**
|
|
929
1271
|
*
|
|
930
|
-
* @type {
|
|
1272
|
+
* @type {Array<string>}
|
|
931
1273
|
* @memberof IBrandPatchRequest
|
|
932
1274
|
*/
|
|
933
|
-
'
|
|
934
|
-
}
|
|
935
|
-
/**
|
|
936
|
-
*
|
|
937
|
-
* @export
|
|
938
|
-
* @interface IBrandPostRequest
|
|
939
|
-
*/
|
|
940
|
-
export interface IBrandPostRequest {
|
|
1275
|
+
'slugs'?: Array<string>;
|
|
941
1276
|
/**
|
|
942
1277
|
*
|
|
943
|
-
* @type {string}
|
|
944
|
-
* @memberof
|
|
1278
|
+
* @type {Array<string>}
|
|
1279
|
+
* @memberof IBrandPatchRequest
|
|
1280
|
+
*/
|
|
1281
|
+
'languages'?: Array<string>;
|
|
1282
|
+
/**
|
|
1283
|
+
*
|
|
1284
|
+
* @type {string}
|
|
1285
|
+
* @memberof IBrandPatchRequest
|
|
1286
|
+
*/
|
|
1287
|
+
'publishedAt'?: string;
|
|
1288
|
+
/**
|
|
1289
|
+
*
|
|
1290
|
+
* @type {IImage}
|
|
1291
|
+
* @memberof IBrandPatchRequest
|
|
1292
|
+
*/
|
|
1293
|
+
'thumbnail'?: IImage;
|
|
1294
|
+
}
|
|
1295
|
+
/**
|
|
1296
|
+
*
|
|
1297
|
+
* @export
|
|
1298
|
+
* @interface IBrandPostRequest
|
|
1299
|
+
*/
|
|
1300
|
+
export interface IBrandPostRequest {
|
|
1301
|
+
/**
|
|
1302
|
+
*
|
|
1303
|
+
* @type {string}
|
|
1304
|
+
* @memberof IBrandPostRequest
|
|
945
1305
|
*/
|
|
946
1306
|
'company': string;
|
|
947
1307
|
/**
|
|
@@ -950,12 +1310,30 @@ export interface IBrandPostRequest {
|
|
|
950
1310
|
* @memberof IBrandPostRequest
|
|
951
1311
|
*/
|
|
952
1312
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1313
|
+
/**
|
|
1314
|
+
*
|
|
1315
|
+
* @type {Array<string>}
|
|
1316
|
+
* @memberof IBrandPostRequest
|
|
1317
|
+
*/
|
|
1318
|
+
'slugs': Array<string>;
|
|
1319
|
+
/**
|
|
1320
|
+
*
|
|
1321
|
+
* @type {Array<string>}
|
|
1322
|
+
* @memberof IBrandPostRequest
|
|
1323
|
+
*/
|
|
1324
|
+
'languages': Array<string>;
|
|
953
1325
|
/**
|
|
954
1326
|
*
|
|
955
1327
|
* @type {IImage}
|
|
956
1328
|
* @memberof IBrandPostRequest
|
|
957
1329
|
*/
|
|
958
1330
|
'thumbnail'?: IImage;
|
|
1331
|
+
/**
|
|
1332
|
+
*
|
|
1333
|
+
* @type {string}
|
|
1334
|
+
* @memberof IBrandPostRequest
|
|
1335
|
+
*/
|
|
1336
|
+
'publishedAt'?: string;
|
|
959
1337
|
}
|
|
960
1338
|
/**
|
|
961
1339
|
*
|
|
@@ -993,6 +1371,14 @@ export interface IBrandResponse {
|
|
|
993
1371
|
* @memberof IBrandResponse
|
|
994
1372
|
*/
|
|
995
1373
|
'status': ContentStatusEnum;
|
|
1374
|
+
/**
|
|
1375
|
+
* Construct a type with a set of properties K of type T
|
|
1376
|
+
* @type {{ [key: string]: any; }}
|
|
1377
|
+
* @memberof IBrandResponse
|
|
1378
|
+
*/
|
|
1379
|
+
'structuredData'?: {
|
|
1380
|
+
[key: string]: any;
|
|
1381
|
+
};
|
|
996
1382
|
/**
|
|
997
1383
|
*
|
|
998
1384
|
* @type {string}
|
|
@@ -1059,6 +1445,18 @@ export interface IBrandResponse {
|
|
|
1059
1445
|
* @memberof IBrandResponse
|
|
1060
1446
|
*/
|
|
1061
1447
|
'slugs': Array<string>;
|
|
1448
|
+
/**
|
|
1449
|
+
*
|
|
1450
|
+
* @type {Array<string>}
|
|
1451
|
+
* @memberof IBrandResponse
|
|
1452
|
+
*/
|
|
1453
|
+
'languages': Array<string>;
|
|
1454
|
+
/**
|
|
1455
|
+
*
|
|
1456
|
+
* @type {string}
|
|
1457
|
+
* @memberof IBrandResponse
|
|
1458
|
+
*/
|
|
1459
|
+
'publishedAt': string;
|
|
1062
1460
|
}
|
|
1063
1461
|
/**
|
|
1064
1462
|
*
|
|
@@ -1276,6 +1674,12 @@ export interface ICategoryPatchRequest {
|
|
|
1276
1674
|
* @memberof ICategoryPatchRequest
|
|
1277
1675
|
*/
|
|
1278
1676
|
'attributes'?: Array<ICategoryAttributesResponseAttributesInner>;
|
|
1677
|
+
/**
|
|
1678
|
+
*
|
|
1679
|
+
* @type {string}
|
|
1680
|
+
* @memberof ICategoryPatchRequest
|
|
1681
|
+
*/
|
|
1682
|
+
'publishedAt'?: string;
|
|
1279
1683
|
/**
|
|
1280
1684
|
*
|
|
1281
1685
|
* @type {string}
|
|
@@ -1288,6 +1692,18 @@ export interface ICategoryPatchRequest {
|
|
|
1288
1692
|
* @memberof ICategoryPatchRequest
|
|
1289
1693
|
*/
|
|
1290
1694
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1695
|
+
/**
|
|
1696
|
+
*
|
|
1697
|
+
* @type {Array<string>}
|
|
1698
|
+
* @memberof ICategoryPatchRequest
|
|
1699
|
+
*/
|
|
1700
|
+
'slugs'?: Array<string>;
|
|
1701
|
+
/**
|
|
1702
|
+
*
|
|
1703
|
+
* @type {Array<string>}
|
|
1704
|
+
* @memberof ICategoryPatchRequest
|
|
1705
|
+
*/
|
|
1706
|
+
'languages'?: Array<string>;
|
|
1291
1707
|
/**
|
|
1292
1708
|
*
|
|
1293
1709
|
* @type {IImage}
|
|
@@ -1319,6 +1735,18 @@ export interface ICategoryPostRequest {
|
|
|
1319
1735
|
* @memberof ICategoryPostRequest
|
|
1320
1736
|
*/
|
|
1321
1737
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1738
|
+
/**
|
|
1739
|
+
*
|
|
1740
|
+
* @type {Array<string>}
|
|
1741
|
+
* @memberof ICategoryPostRequest
|
|
1742
|
+
*/
|
|
1743
|
+
'slugs': Array<string>;
|
|
1744
|
+
/**
|
|
1745
|
+
*
|
|
1746
|
+
* @type {Array<string>}
|
|
1747
|
+
* @memberof ICategoryPostRequest
|
|
1748
|
+
*/
|
|
1749
|
+
'languages': Array<string>;
|
|
1322
1750
|
/**
|
|
1323
1751
|
*
|
|
1324
1752
|
* @type {IImage}
|
|
@@ -1337,6 +1765,12 @@ export interface ICategoryPostRequest {
|
|
|
1337
1765
|
* @memberof ICategoryPostRequest
|
|
1338
1766
|
*/
|
|
1339
1767
|
'attributes': Array<ICategoryAttributesResponseAttributesInner>;
|
|
1768
|
+
/**
|
|
1769
|
+
*
|
|
1770
|
+
* @type {string}
|
|
1771
|
+
* @memberof ICategoryPostRequest
|
|
1772
|
+
*/
|
|
1773
|
+
'publishedAt'?: string;
|
|
1340
1774
|
}
|
|
1341
1775
|
/**
|
|
1342
1776
|
*
|
|
@@ -1386,6 +1820,18 @@ export interface ICategoryResponse {
|
|
|
1386
1820
|
* @memberof ICategoryResponse
|
|
1387
1821
|
*/
|
|
1388
1822
|
'slugs': Array<string>;
|
|
1823
|
+
/**
|
|
1824
|
+
*
|
|
1825
|
+
* @type {Array<string>}
|
|
1826
|
+
* @memberof ICategoryResponse
|
|
1827
|
+
*/
|
|
1828
|
+
'languages': Array<string>;
|
|
1829
|
+
/**
|
|
1830
|
+
*
|
|
1831
|
+
* @type {string}
|
|
1832
|
+
* @memberof ICategoryResponse
|
|
1833
|
+
*/
|
|
1834
|
+
'publishedAt': string;
|
|
1389
1835
|
/**
|
|
1390
1836
|
*
|
|
1391
1837
|
* @type {IImage}
|
|
@@ -1404,6 +1850,14 @@ export interface ICategoryResponse {
|
|
|
1404
1850
|
* @memberof ICategoryResponse
|
|
1405
1851
|
*/
|
|
1406
1852
|
'status': ContentStatusEnum;
|
|
1853
|
+
/**
|
|
1854
|
+
* Construct a type with a set of properties K of type T
|
|
1855
|
+
* @type {{ [key: string]: any; }}
|
|
1856
|
+
* @memberof ICategoryResponse
|
|
1857
|
+
*/
|
|
1858
|
+
'structuredData'?: {
|
|
1859
|
+
[key: string]: any;
|
|
1860
|
+
};
|
|
1407
1861
|
/**
|
|
1408
1862
|
*
|
|
1409
1863
|
* @type {string}
|
|
@@ -1611,12 +2065,24 @@ export interface ICollection {
|
|
|
1611
2065
|
* @memberof ICollection
|
|
1612
2066
|
*/
|
|
1613
2067
|
'slugs': Array<string>;
|
|
2068
|
+
/**
|
|
2069
|
+
*
|
|
2070
|
+
* @type {Array<string>}
|
|
2071
|
+
* @memberof ICollection
|
|
2072
|
+
*/
|
|
2073
|
+
'languages': Array<string>;
|
|
1614
2074
|
/**
|
|
1615
2075
|
*
|
|
1616
2076
|
* @type {string}
|
|
1617
2077
|
* @memberof ICollection
|
|
1618
2078
|
*/
|
|
1619
2079
|
'template': string;
|
|
2080
|
+
/**
|
|
2081
|
+
*
|
|
2082
|
+
* @type {string}
|
|
2083
|
+
* @memberof ICollection
|
|
2084
|
+
*/
|
|
2085
|
+
'publishedAt': string;
|
|
1620
2086
|
}
|
|
1621
2087
|
/**
|
|
1622
2088
|
*
|
|
@@ -1708,6 +2174,24 @@ export interface ICollectionPatchRequest {
|
|
|
1708
2174
|
* @memberof ICollectionPatchRequest
|
|
1709
2175
|
*/
|
|
1710
2176
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
2177
|
+
/**
|
|
2178
|
+
*
|
|
2179
|
+
* @type {Array<string>}
|
|
2180
|
+
* @memberof ICollectionPatchRequest
|
|
2181
|
+
*/
|
|
2182
|
+
'slugs'?: Array<string>;
|
|
2183
|
+
/**
|
|
2184
|
+
*
|
|
2185
|
+
* @type {Array<string>}
|
|
2186
|
+
* @memberof ICollectionPatchRequest
|
|
2187
|
+
*/
|
|
2188
|
+
'languages'?: Array<string>;
|
|
2189
|
+
/**
|
|
2190
|
+
*
|
|
2191
|
+
* @type {string}
|
|
2192
|
+
* @memberof ICollectionPatchRequest
|
|
2193
|
+
*/
|
|
2194
|
+
'publishedAt'?: string;
|
|
1711
2195
|
/**
|
|
1712
2196
|
*
|
|
1713
2197
|
* @type {IImage}
|
|
@@ -1739,12 +2223,30 @@ export interface ICollectionPostRequest {
|
|
|
1739
2223
|
* @memberof ICollectionPostRequest
|
|
1740
2224
|
*/
|
|
1741
2225
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
2226
|
+
/**
|
|
2227
|
+
*
|
|
2228
|
+
* @type {Array<string>}
|
|
2229
|
+
* @memberof ICollectionPostRequest
|
|
2230
|
+
*/
|
|
2231
|
+
'slugs': Array<string>;
|
|
2232
|
+
/**
|
|
2233
|
+
*
|
|
2234
|
+
* @type {Array<string>}
|
|
2235
|
+
* @memberof ICollectionPostRequest
|
|
2236
|
+
*/
|
|
2237
|
+
'languages': Array<string>;
|
|
1742
2238
|
/**
|
|
1743
2239
|
*
|
|
1744
2240
|
* @type {IImage}
|
|
1745
2241
|
* @memberof ICollectionPostRequest
|
|
1746
2242
|
*/
|
|
1747
2243
|
'thumbnail'?: IImage;
|
|
2244
|
+
/**
|
|
2245
|
+
*
|
|
2246
|
+
* @type {string}
|
|
2247
|
+
* @memberof ICollectionPostRequest
|
|
2248
|
+
*/
|
|
2249
|
+
'publishedAt'?: string;
|
|
1748
2250
|
}
|
|
1749
2251
|
/**
|
|
1750
2252
|
*
|
|
@@ -1794,6 +2296,18 @@ export interface ICollectionResponse {
|
|
|
1794
2296
|
* @memberof ICollectionResponse
|
|
1795
2297
|
*/
|
|
1796
2298
|
'slugs': Array<string>;
|
|
2299
|
+
/**
|
|
2300
|
+
*
|
|
2301
|
+
* @type {Array<string>}
|
|
2302
|
+
* @memberof ICollectionResponse
|
|
2303
|
+
*/
|
|
2304
|
+
'languages': Array<string>;
|
|
2305
|
+
/**
|
|
2306
|
+
*
|
|
2307
|
+
* @type {string}
|
|
2308
|
+
* @memberof ICollectionResponse
|
|
2309
|
+
*/
|
|
2310
|
+
'publishedAt': string;
|
|
1797
2311
|
/**
|
|
1798
2312
|
*
|
|
1799
2313
|
* @type {IImage}
|
|
@@ -1806,6 +2320,14 @@ export interface ICollectionResponse {
|
|
|
1806
2320
|
* @memberof ICollectionResponse
|
|
1807
2321
|
*/
|
|
1808
2322
|
'status': ContentStatusEnum;
|
|
2323
|
+
/**
|
|
2324
|
+
* Construct a type with a set of properties K of type T
|
|
2325
|
+
* @type {{ [key: string]: any; }}
|
|
2326
|
+
* @memberof ICollectionResponse
|
|
2327
|
+
*/
|
|
2328
|
+
'structuredData'?: {
|
|
2329
|
+
[key: string]: any;
|
|
2330
|
+
};
|
|
1809
2331
|
/**
|
|
1810
2332
|
*
|
|
1811
2333
|
* @type {string}
|
|
@@ -2051,6 +2573,12 @@ export interface ICompany {
|
|
|
2051
2573
|
* @memberof ICompany
|
|
2052
2574
|
*/
|
|
2053
2575
|
'orderNoSuffix'?: string;
|
|
2576
|
+
/**
|
|
2577
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
2578
|
+
* @type {number}
|
|
2579
|
+
* @memberof ICompany
|
|
2580
|
+
*/
|
|
2581
|
+
'lastOrderNumber'?: number;
|
|
2054
2582
|
/**
|
|
2055
2583
|
*
|
|
2056
2584
|
* @type {string}
|
|
@@ -2217,6 +2745,18 @@ export interface ICompany {
|
|
|
2217
2745
|
* @memberof ICompany
|
|
2218
2746
|
*/
|
|
2219
2747
|
'htmlHead'?: string;
|
|
2748
|
+
/**
|
|
2749
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
2750
|
+
* @type {number}
|
|
2751
|
+
* @memberof ICompany
|
|
2752
|
+
*/
|
|
2753
|
+
'password'?: number;
|
|
2754
|
+
/**
|
|
2755
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
2756
|
+
* @type {boolean}
|
|
2757
|
+
* @memberof ICompany
|
|
2758
|
+
*/
|
|
2759
|
+
'passwordActive'?: boolean;
|
|
2220
2760
|
/**
|
|
2221
2761
|
*
|
|
2222
2762
|
* @type {CompanyStatusEnum}
|
|
@@ -2254,6 +2794,12 @@ export interface ICompany {
|
|
|
2254
2794
|
* @interface ICompanyAdminResponse
|
|
2255
2795
|
*/
|
|
2256
2796
|
export interface ICompanyAdminResponse {
|
|
2797
|
+
/**
|
|
2798
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
2799
|
+
* @type {number}
|
|
2800
|
+
* @memberof ICompanyAdminResponse
|
|
2801
|
+
*/
|
|
2802
|
+
'password'?: number;
|
|
2257
2803
|
/**
|
|
2258
2804
|
*
|
|
2259
2805
|
* @type {string}
|
|
@@ -2308,6 +2854,12 @@ export interface ICompanyAdminResponse {
|
|
|
2308
2854
|
* @memberof ICompanyAdminResponse
|
|
2309
2855
|
*/
|
|
2310
2856
|
'updatedAt': string;
|
|
2857
|
+
/**
|
|
2858
|
+
*
|
|
2859
|
+
* @type {Array<LanguageEnum>}
|
|
2860
|
+
* @memberof ICompanyAdminResponse
|
|
2861
|
+
*/
|
|
2862
|
+
'languages': Array<LanguageEnum>;
|
|
2311
2863
|
/**
|
|
2312
2864
|
*
|
|
2313
2865
|
* @type {CompanyTypeEnum}
|
|
@@ -2362,6 +2914,12 @@ export interface ICompanyAdminResponse {
|
|
|
2362
2914
|
* @memberof ICompanyAdminResponse
|
|
2363
2915
|
*/
|
|
2364
2916
|
'orderNoSuffix'?: string;
|
|
2917
|
+
/**
|
|
2918
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
2919
|
+
* @type {number}
|
|
2920
|
+
* @memberof ICompanyAdminResponse
|
|
2921
|
+
*/
|
|
2922
|
+
'lastOrderNumber'?: number;
|
|
2365
2923
|
/**
|
|
2366
2924
|
*
|
|
2367
2925
|
* @type {IImage}
|
|
@@ -2386,12 +2944,6 @@ export interface ICompanyAdminResponse {
|
|
|
2386
2944
|
* @memberof ICompanyAdminResponse
|
|
2387
2945
|
*/
|
|
2388
2946
|
'timezone': TimezoneEnum;
|
|
2389
|
-
/**
|
|
2390
|
-
*
|
|
2391
|
-
* @type {Array<LanguageEnum>}
|
|
2392
|
-
* @memberof ICompanyAdminResponse
|
|
2393
|
-
*/
|
|
2394
|
-
'languages': Array<LanguageEnum>;
|
|
2395
2947
|
/**
|
|
2396
2948
|
*
|
|
2397
2949
|
* @type {CurrencyEnum}
|
|
@@ -2460,6 +3012,12 @@ export interface ICompanyAdminResponse {
|
|
|
2460
3012
|
* @memberof ICompanyAdminResponse
|
|
2461
3013
|
*/
|
|
2462
3014
|
'htmlHead'?: string;
|
|
3015
|
+
/**
|
|
3016
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
3017
|
+
* @type {boolean}
|
|
3018
|
+
* @memberof ICompanyAdminResponse
|
|
3019
|
+
*/
|
|
3020
|
+
'passwordActive'?: boolean;
|
|
2463
3021
|
/**
|
|
2464
3022
|
*
|
|
2465
3023
|
* @type {string}
|
|
@@ -3012,6 +3570,12 @@ export interface ICompanyDashboardResponseOrdersInner {
|
|
|
3012
3570
|
* @interface ICompanyPatchRequest
|
|
3013
3571
|
*/
|
|
3014
3572
|
export interface ICompanyPatchRequest {
|
|
3573
|
+
/**
|
|
3574
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
3575
|
+
* @type {number}
|
|
3576
|
+
* @memberof ICompanyPatchRequest
|
|
3577
|
+
*/
|
|
3578
|
+
'password'?: number;
|
|
3015
3579
|
/**
|
|
3016
3580
|
*
|
|
3017
3581
|
* @type {string}
|
|
@@ -3050,6 +3614,12 @@ export interface ICompanyPatchRequest {
|
|
|
3050
3614
|
* @memberof ICompanyPatchRequest
|
|
3051
3615
|
*/
|
|
3052
3616
|
'status'?: CompanyStatusEnum;
|
|
3617
|
+
/**
|
|
3618
|
+
*
|
|
3619
|
+
* @type {Array<LanguageEnum>}
|
|
3620
|
+
* @memberof ICompanyPatchRequest
|
|
3621
|
+
*/
|
|
3622
|
+
'languages'?: Array<LanguageEnum>;
|
|
3053
3623
|
/**
|
|
3054
3624
|
*
|
|
3055
3625
|
* @type {string}
|
|
@@ -3122,6 +3692,12 @@ export interface ICompanyPatchRequest {
|
|
|
3122
3692
|
* @memberof ICompanyPatchRequest
|
|
3123
3693
|
*/
|
|
3124
3694
|
'orderNoSuffix'?: string;
|
|
3695
|
+
/**
|
|
3696
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
3697
|
+
* @type {number}
|
|
3698
|
+
* @memberof ICompanyPatchRequest
|
|
3699
|
+
*/
|
|
3700
|
+
'lastOrderNumber'?: number;
|
|
3125
3701
|
/**
|
|
3126
3702
|
*
|
|
3127
3703
|
* @type {IImage}
|
|
@@ -3146,12 +3722,6 @@ export interface ICompanyPatchRequest {
|
|
|
3146
3722
|
* @memberof ICompanyPatchRequest
|
|
3147
3723
|
*/
|
|
3148
3724
|
'timezone'?: TimezoneEnum;
|
|
3149
|
-
/**
|
|
3150
|
-
*
|
|
3151
|
-
* @type {Array<LanguageEnum>}
|
|
3152
|
-
* @memberof ICompanyPatchRequest
|
|
3153
|
-
*/
|
|
3154
|
-
'languages'?: Array<LanguageEnum>;
|
|
3155
3725
|
/**
|
|
3156
3726
|
*
|
|
3157
3727
|
* @type {CurrencyEnum}
|
|
@@ -3190,6 +3760,12 @@ export interface ICompanyPatchRequest {
|
|
|
3190
3760
|
* @memberof ICompanyPatchRequest
|
|
3191
3761
|
*/
|
|
3192
3762
|
'htmlHead'?: string;
|
|
3763
|
+
/**
|
|
3764
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
3765
|
+
* @type {boolean}
|
|
3766
|
+
* @memberof ICompanyPatchRequest
|
|
3767
|
+
*/
|
|
3768
|
+
'passwordActive'?: boolean;
|
|
3193
3769
|
/**
|
|
3194
3770
|
*
|
|
3195
3771
|
* @type {string}
|
|
@@ -3357,6 +3933,12 @@ export interface ICompanyPostRequest {
|
|
|
3357
3933
|
* @interface ICompanyResponse
|
|
3358
3934
|
*/
|
|
3359
3935
|
export interface ICompanyResponse {
|
|
3936
|
+
/**
|
|
3937
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
3938
|
+
* @type {number}
|
|
3939
|
+
* @memberof ICompanyResponse
|
|
3940
|
+
*/
|
|
3941
|
+
'password'?: number;
|
|
3360
3942
|
/**
|
|
3361
3943
|
*
|
|
3362
3944
|
* @type {string}
|
|
@@ -3411,6 +3993,12 @@ export interface ICompanyResponse {
|
|
|
3411
3993
|
* @memberof ICompanyResponse
|
|
3412
3994
|
*/
|
|
3413
3995
|
'updatedAt': string;
|
|
3996
|
+
/**
|
|
3997
|
+
*
|
|
3998
|
+
* @type {Array<LanguageEnum>}
|
|
3999
|
+
* @memberof ICompanyResponse
|
|
4000
|
+
*/
|
|
4001
|
+
'languages': Array<LanguageEnum>;
|
|
3414
4002
|
/**
|
|
3415
4003
|
*
|
|
3416
4004
|
* @type {CompanyTypeEnum}
|
|
@@ -3465,6 +4053,12 @@ export interface ICompanyResponse {
|
|
|
3465
4053
|
* @memberof ICompanyResponse
|
|
3466
4054
|
*/
|
|
3467
4055
|
'orderNoSuffix'?: string;
|
|
4056
|
+
/**
|
|
4057
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
4058
|
+
* @type {number}
|
|
4059
|
+
* @memberof ICompanyResponse
|
|
4060
|
+
*/
|
|
4061
|
+
'lastOrderNumber'?: number;
|
|
3468
4062
|
/**
|
|
3469
4063
|
*
|
|
3470
4064
|
* @type {IImage}
|
|
@@ -3489,12 +4083,6 @@ export interface ICompanyResponse {
|
|
|
3489
4083
|
* @memberof ICompanyResponse
|
|
3490
4084
|
*/
|
|
3491
4085
|
'timezone': TimezoneEnum;
|
|
3492
|
-
/**
|
|
3493
|
-
*
|
|
3494
|
-
* @type {Array<LanguageEnum>}
|
|
3495
|
-
* @memberof ICompanyResponse
|
|
3496
|
-
*/
|
|
3497
|
-
'languages': Array<LanguageEnum>;
|
|
3498
4086
|
/**
|
|
3499
4087
|
*
|
|
3500
4088
|
* @type {CurrencyEnum}
|
|
@@ -3563,6 +4151,12 @@ export interface ICompanyResponse {
|
|
|
3563
4151
|
* @memberof ICompanyResponse
|
|
3564
4152
|
*/
|
|
3565
4153
|
'htmlHead'?: string;
|
|
4154
|
+
/**
|
|
4155
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
4156
|
+
* @type {boolean}
|
|
4157
|
+
* @memberof ICompanyResponse
|
|
4158
|
+
*/
|
|
4159
|
+
'passwordActive'?: boolean;
|
|
3566
4160
|
/**
|
|
3567
4161
|
*
|
|
3568
4162
|
* @type {string}
|
|
@@ -4290,69 +4884,610 @@ export interface IContactFormResponse {
|
|
|
4290
4884
|
* @type {string}
|
|
4291
4885
|
* @memberof IContactFormResponse
|
|
4292
4886
|
*/
|
|
4293
|
-
'title': string;
|
|
4887
|
+
'title': string;
|
|
4888
|
+
/**
|
|
4889
|
+
*
|
|
4890
|
+
* @type {Array<IContactFormResponseDataInner>}
|
|
4891
|
+
* @memberof IContactFormResponse
|
|
4892
|
+
*/
|
|
4893
|
+
'data': Array<IContactFormResponseDataInner>;
|
|
4894
|
+
}
|
|
4895
|
+
/**
|
|
4896
|
+
*
|
|
4897
|
+
* @export
|
|
4898
|
+
* @interface IContactFormResponseDataInner
|
|
4899
|
+
*/
|
|
4900
|
+
export interface IContactFormResponseDataInner {
|
|
4901
|
+
/**
|
|
4902
|
+
*
|
|
4903
|
+
* @type {string}
|
|
4904
|
+
* @memberof IContactFormResponseDataInner
|
|
4905
|
+
*/
|
|
4906
|
+
'value'?: string;
|
|
4907
|
+
/**
|
|
4908
|
+
*
|
|
4909
|
+
* @type {string}
|
|
4910
|
+
* @memberof IContactFormResponseDataInner
|
|
4911
|
+
*/
|
|
4912
|
+
'key': string;
|
|
4913
|
+
}
|
|
4914
|
+
/**
|
|
4915
|
+
*
|
|
4916
|
+
* @export
|
|
4917
|
+
* @interface IContactFormsResponse
|
|
4918
|
+
*/
|
|
4919
|
+
export interface IContactFormsResponse {
|
|
4920
|
+
/**
|
|
4921
|
+
*
|
|
4922
|
+
* @type {number}
|
|
4923
|
+
* @memberof IContactFormsResponse
|
|
4924
|
+
*/
|
|
4925
|
+
'page': number;
|
|
4926
|
+
/**
|
|
4927
|
+
*
|
|
4928
|
+
* @type {number}
|
|
4929
|
+
* @memberof IContactFormsResponse
|
|
4930
|
+
*/
|
|
4931
|
+
'itemsPerPage': number;
|
|
4932
|
+
/**
|
|
4933
|
+
*
|
|
4934
|
+
* @type {number}
|
|
4935
|
+
* @memberof IContactFormsResponse
|
|
4936
|
+
*/
|
|
4937
|
+
'total': number;
|
|
4938
|
+
/**
|
|
4939
|
+
*
|
|
4940
|
+
* @type {number}
|
|
4941
|
+
* @memberof IContactFormsResponse
|
|
4942
|
+
*/
|
|
4943
|
+
'totalPages': number;
|
|
4944
|
+
/**
|
|
4945
|
+
*
|
|
4946
|
+
* @type {Array<IContactFormResponse>}
|
|
4947
|
+
* @memberof IContactFormsResponse
|
|
4948
|
+
*/
|
|
4949
|
+
'data': Array<IContactFormResponse>;
|
|
4950
|
+
}
|
|
4951
|
+
/**
|
|
4952
|
+
*
|
|
4953
|
+
* @export
|
|
4954
|
+
* @interface IContentPlanAttempt
|
|
4955
|
+
*/
|
|
4956
|
+
export interface IContentPlanAttempt {
|
|
4957
|
+
/**
|
|
4958
|
+
*
|
|
4959
|
+
* @type {string}
|
|
4960
|
+
* @memberof IContentPlanAttempt
|
|
4961
|
+
*/
|
|
4962
|
+
'step': IContentPlanAttemptStepEnum;
|
|
4963
|
+
/**
|
|
4964
|
+
*
|
|
4965
|
+
* @type {LanguageEnum}
|
|
4966
|
+
* @memberof IContentPlanAttempt
|
|
4967
|
+
*/
|
|
4968
|
+
'language'?: LanguageEnum;
|
|
4969
|
+
/**
|
|
4970
|
+
*
|
|
4971
|
+
* @type {string}
|
|
4972
|
+
* @memberof IContentPlanAttempt
|
|
4973
|
+
*/
|
|
4974
|
+
'at': string;
|
|
4975
|
+
/**
|
|
4976
|
+
*
|
|
4977
|
+
* @type {number}
|
|
4978
|
+
* @memberof IContentPlanAttempt
|
|
4979
|
+
*/
|
|
4980
|
+
'durationMs'?: number;
|
|
4981
|
+
/**
|
|
4982
|
+
*
|
|
4983
|
+
* @type {number}
|
|
4984
|
+
* @memberof IContentPlanAttempt
|
|
4985
|
+
*/
|
|
4986
|
+
'seoScore'?: number;
|
|
4987
|
+
/**
|
|
4988
|
+
* Construct a type with a set of properties K of type T
|
|
4989
|
+
* @type {{ [key: string]: any; }}
|
|
4990
|
+
* @memberof IContentPlanAttempt
|
|
4991
|
+
*/
|
|
4992
|
+
'feedback'?: {
|
|
4993
|
+
[key: string]: any;
|
|
4994
|
+
};
|
|
4995
|
+
/**
|
|
4996
|
+
*
|
|
4997
|
+
* @type {string}
|
|
4998
|
+
* @memberof IContentPlanAttempt
|
|
4999
|
+
*/
|
|
5000
|
+
'error'?: string;
|
|
5001
|
+
}
|
|
5002
|
+
export declare const IContentPlanAttemptStepEnum: {
|
|
5003
|
+
readonly GENERATOR: "generator";
|
|
5004
|
+
readonly CRITIC: "critic";
|
|
5005
|
+
readonly REFINER: "refiner";
|
|
5006
|
+
readonly PACKAGER: "packager";
|
|
5007
|
+
readonly TRANSLATOR: "translator";
|
|
5008
|
+
};
|
|
5009
|
+
export type IContentPlanAttemptStepEnum = typeof IContentPlanAttemptStepEnum[keyof typeof IContentPlanAttemptStepEnum];
|
|
5010
|
+
/**
|
|
5011
|
+
*
|
|
5012
|
+
* @export
|
|
5013
|
+
* @interface IContentPlanBulkPostRequest
|
|
5014
|
+
*/
|
|
5015
|
+
export interface IContentPlanBulkPostRequest {
|
|
5016
|
+
/**
|
|
5017
|
+
*
|
|
5018
|
+
* @type {string}
|
|
5019
|
+
* @memberof IContentPlanBulkPostRequest
|
|
5020
|
+
*/
|
|
5021
|
+
'company': string;
|
|
5022
|
+
/**
|
|
5023
|
+
*
|
|
5024
|
+
* @type {Array<IContentPlanPostRequest>}
|
|
5025
|
+
* @memberof IContentPlanBulkPostRequest
|
|
5026
|
+
*/
|
|
5027
|
+
'plans': Array<IContentPlanPostRequest>;
|
|
5028
|
+
}
|
|
5029
|
+
/**
|
|
5030
|
+
*
|
|
5031
|
+
* @export
|
|
5032
|
+
* @interface IContentPlanCollectionQueryParams
|
|
5033
|
+
*/
|
|
5034
|
+
export interface IContentPlanCollectionQueryParams {
|
|
5035
|
+
/**
|
|
5036
|
+
*
|
|
5037
|
+
* @type {number}
|
|
5038
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5039
|
+
*/
|
|
5040
|
+
'page'?: number;
|
|
5041
|
+
/**
|
|
5042
|
+
*
|
|
5043
|
+
* @type {number}
|
|
5044
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5045
|
+
*/
|
|
5046
|
+
'itemsPerPage'?: number;
|
|
5047
|
+
/**
|
|
5048
|
+
*
|
|
5049
|
+
* @type {string}
|
|
5050
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5051
|
+
*/
|
|
5052
|
+
'search'?: string;
|
|
5053
|
+
/**
|
|
5054
|
+
*
|
|
5055
|
+
* @type {string}
|
|
5056
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5057
|
+
*/
|
|
5058
|
+
'startDate'?: string;
|
|
5059
|
+
/**
|
|
5060
|
+
*
|
|
5061
|
+
* @type {string}
|
|
5062
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5063
|
+
*/
|
|
5064
|
+
'endDate'?: string;
|
|
5065
|
+
/**
|
|
5066
|
+
*
|
|
5067
|
+
* @type {string}
|
|
5068
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5069
|
+
*/
|
|
5070
|
+
'dateField'?: IContentPlanCollectionQueryParamsDateFieldEnum;
|
|
5071
|
+
/**
|
|
5072
|
+
*
|
|
5073
|
+
* @type {OrderEnum}
|
|
5074
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5075
|
+
*/
|
|
5076
|
+
'order'?: OrderEnum;
|
|
5077
|
+
/**
|
|
5078
|
+
*
|
|
5079
|
+
* @type {string}
|
|
5080
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5081
|
+
*/
|
|
5082
|
+
'sort'?: string;
|
|
5083
|
+
/**
|
|
5084
|
+
*
|
|
5085
|
+
* @type {string}
|
|
5086
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5087
|
+
*/
|
|
5088
|
+
'companyId'?: string;
|
|
5089
|
+
/**
|
|
5090
|
+
*
|
|
5091
|
+
* @type {string}
|
|
5092
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5093
|
+
*/
|
|
5094
|
+
'domain'?: string;
|
|
5095
|
+
/**
|
|
5096
|
+
*
|
|
5097
|
+
* @type {ContentPlanStatusEnum}
|
|
5098
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5099
|
+
*/
|
|
5100
|
+
'status'?: ContentPlanStatusEnum;
|
|
5101
|
+
/**
|
|
5102
|
+
*
|
|
5103
|
+
* @type {string}
|
|
5104
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5105
|
+
*/
|
|
5106
|
+
'seriesId'?: string;
|
|
5107
|
+
/**
|
|
5108
|
+
*
|
|
5109
|
+
* @type {string}
|
|
5110
|
+
* @memberof IContentPlanCollectionQueryParams
|
|
5111
|
+
*/
|
|
5112
|
+
'type'?: string;
|
|
5113
|
+
}
|
|
5114
|
+
export declare const IContentPlanCollectionQueryParamsDateFieldEnum: {
|
|
5115
|
+
readonly CREATED_AT: "createdAt";
|
|
5116
|
+
readonly UPDATED_AT: "updatedAt";
|
|
5117
|
+
};
|
|
5118
|
+
export type IContentPlanCollectionQueryParamsDateFieldEnum = typeof IContentPlanCollectionQueryParamsDateFieldEnum[keyof typeof IContentPlanCollectionQueryParamsDateFieldEnum];
|
|
5119
|
+
/**
|
|
5120
|
+
*
|
|
5121
|
+
* @export
|
|
5122
|
+
* @interface IContentPlanGeneratedContent
|
|
5123
|
+
*/
|
|
5124
|
+
export interface IContentPlanGeneratedContent {
|
|
5125
|
+
/**
|
|
5126
|
+
*
|
|
5127
|
+
* @type {LanguageEnum}
|
|
5128
|
+
* @memberof IContentPlanGeneratedContent
|
|
5129
|
+
*/
|
|
5130
|
+
'language': LanguageEnum;
|
|
5131
|
+
/**
|
|
5132
|
+
*
|
|
5133
|
+
* @type {string}
|
|
5134
|
+
* @memberof IContentPlanGeneratedContent
|
|
5135
|
+
*/
|
|
5136
|
+
'title': string;
|
|
5137
|
+
/**
|
|
5138
|
+
*
|
|
5139
|
+
* @type {string}
|
|
5140
|
+
* @memberof IContentPlanGeneratedContent
|
|
5141
|
+
*/
|
|
5142
|
+
'description': string;
|
|
5143
|
+
/**
|
|
5144
|
+
*
|
|
5145
|
+
* @type {string}
|
|
5146
|
+
* @memberof IContentPlanGeneratedContent
|
|
5147
|
+
*/
|
|
5148
|
+
'metaTitle'?: string;
|
|
5149
|
+
/**
|
|
5150
|
+
*
|
|
5151
|
+
* @type {string}
|
|
5152
|
+
* @memberof IContentPlanGeneratedContent
|
|
5153
|
+
*/
|
|
5154
|
+
'metaDescription'?: string;
|
|
5155
|
+
/**
|
|
5156
|
+
*
|
|
5157
|
+
* @type {Array<string>}
|
|
5158
|
+
* @memberof IContentPlanGeneratedContent
|
|
5159
|
+
*/
|
|
5160
|
+
'keywords': Array<string>;
|
|
5161
|
+
/**
|
|
5162
|
+
*
|
|
5163
|
+
* @type {string}
|
|
5164
|
+
* @memberof IContentPlanGeneratedContent
|
|
5165
|
+
*/
|
|
5166
|
+
'slug'?: string;
|
|
5167
|
+
/**
|
|
5168
|
+
*
|
|
5169
|
+
* @type {string}
|
|
5170
|
+
* @memberof IContentPlanGeneratedContent
|
|
5171
|
+
*/
|
|
5172
|
+
'content': string;
|
|
5173
|
+
/**
|
|
5174
|
+
*
|
|
5175
|
+
* @type {string}
|
|
5176
|
+
* @memberof IContentPlanGeneratedContent
|
|
5177
|
+
*/
|
|
5178
|
+
'summary'?: string;
|
|
5179
|
+
/**
|
|
5180
|
+
* Construct a type with a set of properties K of type T
|
|
5181
|
+
* @type {{ [key: string]: any; }}
|
|
5182
|
+
* @memberof IContentPlanGeneratedContent
|
|
5183
|
+
*/
|
|
5184
|
+
'structuredData'?: {
|
|
5185
|
+
[key: string]: any;
|
|
5186
|
+
};
|
|
5187
|
+
}
|
|
5188
|
+
/**
|
|
5189
|
+
*
|
|
5190
|
+
* @export
|
|
5191
|
+
* @interface IContentPlanPatchRequest
|
|
5192
|
+
*/
|
|
5193
|
+
export interface IContentPlanPatchRequest {
|
|
5194
|
+
/**
|
|
5195
|
+
*
|
|
5196
|
+
* @type {string}
|
|
5197
|
+
* @memberof IContentPlanPatchRequest
|
|
5198
|
+
*/
|
|
5199
|
+
'promptIntent'?: string;
|
|
5200
|
+
/**
|
|
5201
|
+
*
|
|
5202
|
+
* @type {string}
|
|
5203
|
+
* @memberof IContentPlanPatchRequest
|
|
5204
|
+
*/
|
|
5205
|
+
'customInstructions'?: string;
|
|
5206
|
+
/**
|
|
5207
|
+
*
|
|
5208
|
+
* @type {Array<string>}
|
|
5209
|
+
* @memberof IContentPlanPatchRequest
|
|
5210
|
+
*/
|
|
5211
|
+
'keywords'?: Array<string>;
|
|
5212
|
+
/**
|
|
5213
|
+
*
|
|
5214
|
+
* @type {Array<LanguageEnum>}
|
|
5215
|
+
* @memberof IContentPlanPatchRequest
|
|
5216
|
+
*/
|
|
5217
|
+
'languages'?: Array<LanguageEnum>;
|
|
5218
|
+
/**
|
|
5219
|
+
*
|
|
5220
|
+
* @type {string}
|
|
5221
|
+
* @memberof IContentPlanPatchRequest
|
|
5222
|
+
*/
|
|
5223
|
+
'targetPublishedAt'?: string;
|
|
5224
|
+
}
|
|
5225
|
+
/**
|
|
5226
|
+
*
|
|
5227
|
+
* @export
|
|
5228
|
+
* @interface IContentPlanPostRequest
|
|
5229
|
+
*/
|
|
5230
|
+
export interface IContentPlanPostRequest {
|
|
5231
|
+
/**
|
|
5232
|
+
*
|
|
5233
|
+
* @type {string}
|
|
5234
|
+
* @memberof IContentPlanPostRequest
|
|
5235
|
+
*/
|
|
5236
|
+
'company': string;
|
|
5237
|
+
/**
|
|
5238
|
+
*
|
|
5239
|
+
* @type {string}
|
|
5240
|
+
* @memberof IContentPlanPostRequest
|
|
5241
|
+
*/
|
|
5242
|
+
'seriesId'?: string;
|
|
5243
|
+
/**
|
|
5244
|
+
*
|
|
5245
|
+
* @type {number}
|
|
5246
|
+
* @memberof IContentPlanPostRequest
|
|
5247
|
+
*/
|
|
5248
|
+
'seriesIndex'?: number;
|
|
5249
|
+
/**
|
|
5250
|
+
*
|
|
5251
|
+
* @type {number}
|
|
5252
|
+
* @memberof IContentPlanPostRequest
|
|
5253
|
+
*/
|
|
5254
|
+
'seriesTotal'?: number;
|
|
5255
|
+
/**
|
|
5256
|
+
*
|
|
5257
|
+
* @type {string}
|
|
5258
|
+
* @memberof IContentPlanPostRequest
|
|
5259
|
+
*/
|
|
5260
|
+
'template': string;
|
|
5261
|
+
/**
|
|
5262
|
+
*
|
|
5263
|
+
* @type {string}
|
|
5264
|
+
* @memberof IContentPlanPostRequest
|
|
5265
|
+
*/
|
|
5266
|
+
'type': string;
|
|
5267
|
+
/**
|
|
5268
|
+
*
|
|
5269
|
+
* @type {string}
|
|
5270
|
+
* @memberof IContentPlanPostRequest
|
|
5271
|
+
*/
|
|
5272
|
+
'promptIntent': string;
|
|
5273
|
+
/**
|
|
5274
|
+
*
|
|
5275
|
+
* @type {string}
|
|
5276
|
+
* @memberof IContentPlanPostRequest
|
|
5277
|
+
*/
|
|
5278
|
+
'customInstructions'?: string;
|
|
5279
|
+
/**
|
|
5280
|
+
*
|
|
5281
|
+
* @type {Array<string>}
|
|
5282
|
+
* @memberof IContentPlanPostRequest
|
|
5283
|
+
*/
|
|
5284
|
+
'keywords'?: Array<string>;
|
|
5285
|
+
/**
|
|
5286
|
+
*
|
|
5287
|
+
* @type {Array<LanguageEnum>}
|
|
5288
|
+
* @memberof IContentPlanPostRequest
|
|
5289
|
+
*/
|
|
5290
|
+
'languages': Array<LanguageEnum>;
|
|
5291
|
+
/**
|
|
5292
|
+
*
|
|
5293
|
+
* @type {string}
|
|
5294
|
+
* @memberof IContentPlanPostRequest
|
|
5295
|
+
*/
|
|
5296
|
+
'targetPublishedAt': string;
|
|
5297
|
+
/**
|
|
5298
|
+
*
|
|
5299
|
+
* @type {number}
|
|
5300
|
+
* @memberof IContentPlanPostRequest
|
|
5301
|
+
*/
|
|
5302
|
+
'minSeoScore'?: number;
|
|
5303
|
+
}
|
|
5304
|
+
/**
|
|
5305
|
+
*
|
|
5306
|
+
* @export
|
|
5307
|
+
* @interface IContentPlanResponse
|
|
5308
|
+
*/
|
|
5309
|
+
export interface IContentPlanResponse {
|
|
5310
|
+
/**
|
|
5311
|
+
*
|
|
5312
|
+
* @type {string}
|
|
5313
|
+
* @memberof IContentPlanResponse
|
|
5314
|
+
*/
|
|
5315
|
+
'_id': string;
|
|
5316
|
+
/**
|
|
5317
|
+
*
|
|
5318
|
+
* @type {number}
|
|
5319
|
+
* @memberof IContentPlanResponse
|
|
5320
|
+
*/
|
|
5321
|
+
'__v': number;
|
|
5322
|
+
/**
|
|
5323
|
+
*
|
|
5324
|
+
* @type {string}
|
|
5325
|
+
* @memberof IContentPlanResponse
|
|
5326
|
+
*/
|
|
5327
|
+
'createdAt': string;
|
|
5328
|
+
/**
|
|
5329
|
+
*
|
|
5330
|
+
* @type {string}
|
|
5331
|
+
* @memberof IContentPlanResponse
|
|
5332
|
+
*/
|
|
5333
|
+
'updatedAt': string;
|
|
5334
|
+
/**
|
|
5335
|
+
*
|
|
5336
|
+
* @type {string}
|
|
5337
|
+
* @memberof IContentPlanResponse
|
|
5338
|
+
*/
|
|
5339
|
+
'company': string;
|
|
5340
|
+
/**
|
|
5341
|
+
*
|
|
5342
|
+
* @type {string}
|
|
5343
|
+
* @memberof IContentPlanResponse
|
|
5344
|
+
*/
|
|
5345
|
+
'seriesId'?: string;
|
|
5346
|
+
/**
|
|
5347
|
+
*
|
|
5348
|
+
* @type {number}
|
|
5349
|
+
* @memberof IContentPlanResponse
|
|
5350
|
+
*/
|
|
5351
|
+
'seriesIndex'?: number;
|
|
5352
|
+
/**
|
|
5353
|
+
*
|
|
5354
|
+
* @type {number}
|
|
5355
|
+
* @memberof IContentPlanResponse
|
|
5356
|
+
*/
|
|
5357
|
+
'seriesTotal'?: number;
|
|
5358
|
+
/**
|
|
5359
|
+
*
|
|
5360
|
+
* @type {string}
|
|
5361
|
+
* @memberof IContentPlanResponse
|
|
5362
|
+
*/
|
|
5363
|
+
'template': string;
|
|
5364
|
+
/**
|
|
5365
|
+
*
|
|
5366
|
+
* @type {string}
|
|
5367
|
+
* @memberof IContentPlanResponse
|
|
5368
|
+
*/
|
|
5369
|
+
'type': string;
|
|
5370
|
+
/**
|
|
5371
|
+
*
|
|
5372
|
+
* @type {string}
|
|
5373
|
+
* @memberof IContentPlanResponse
|
|
5374
|
+
*/
|
|
5375
|
+
'promptIntent': string;
|
|
5376
|
+
/**
|
|
5377
|
+
*
|
|
5378
|
+
* @type {string}
|
|
5379
|
+
* @memberof IContentPlanResponse
|
|
5380
|
+
*/
|
|
5381
|
+
'customInstructions'?: string;
|
|
5382
|
+
/**
|
|
5383
|
+
*
|
|
5384
|
+
* @type {Array<string>}
|
|
5385
|
+
* @memberof IContentPlanResponse
|
|
5386
|
+
*/
|
|
5387
|
+
'keywords'?: Array<string>;
|
|
5388
|
+
/**
|
|
5389
|
+
*
|
|
5390
|
+
* @type {Array<LanguageEnum>}
|
|
5391
|
+
* @memberof IContentPlanResponse
|
|
5392
|
+
*/
|
|
5393
|
+
'languages': Array<LanguageEnum>;
|
|
5394
|
+
/**
|
|
5395
|
+
*
|
|
5396
|
+
* @type {string}
|
|
5397
|
+
* @memberof IContentPlanResponse
|
|
5398
|
+
*/
|
|
5399
|
+
'targetPublishedAt': string;
|
|
5400
|
+
/**
|
|
5401
|
+
*
|
|
5402
|
+
* @type {ContentPlanStatusEnum}
|
|
5403
|
+
* @memberof IContentPlanResponse
|
|
5404
|
+
*/
|
|
5405
|
+
'status': ContentPlanStatusEnum;
|
|
5406
|
+
/**
|
|
5407
|
+
*
|
|
5408
|
+
* @type {number}
|
|
5409
|
+
* @memberof IContentPlanResponse
|
|
5410
|
+
*/
|
|
5411
|
+
'seoScore'?: number;
|
|
5412
|
+
/**
|
|
5413
|
+
*
|
|
5414
|
+
* @type {number}
|
|
5415
|
+
* @memberof IContentPlanResponse
|
|
5416
|
+
*/
|
|
5417
|
+
'minSeoScore'?: number;
|
|
5418
|
+
/**
|
|
5419
|
+
*
|
|
5420
|
+
* @type {Array<IContentPlanAttempt>}
|
|
5421
|
+
* @memberof IContentPlanResponse
|
|
5422
|
+
*/
|
|
5423
|
+
'attempts': Array<IContentPlanAttempt>;
|
|
5424
|
+
/**
|
|
5425
|
+
*
|
|
5426
|
+
* @type {string}
|
|
5427
|
+
* @memberof IContentPlanResponse
|
|
5428
|
+
*/
|
|
5429
|
+
'lastError'?: string;
|
|
4294
5430
|
/**
|
|
4295
5431
|
*
|
|
4296
|
-
* @type {
|
|
4297
|
-
* @memberof
|
|
5432
|
+
* @type {IContentPlanGeneratedContent}
|
|
5433
|
+
* @memberof IContentPlanResponse
|
|
4298
5434
|
*/
|
|
4299
|
-
'
|
|
4300
|
-
}
|
|
4301
|
-
/**
|
|
4302
|
-
*
|
|
4303
|
-
* @export
|
|
4304
|
-
* @interface IContactFormResponseDataInner
|
|
4305
|
-
*/
|
|
4306
|
-
export interface IContactFormResponseDataInner {
|
|
5435
|
+
'generated'?: IContentPlanGeneratedContent;
|
|
4307
5436
|
/**
|
|
4308
5437
|
*
|
|
4309
5438
|
* @type {string}
|
|
4310
|
-
* @memberof
|
|
5439
|
+
* @memberof IContentPlanResponse
|
|
4311
5440
|
*/
|
|
4312
|
-
'
|
|
5441
|
+
'page'?: string;
|
|
4313
5442
|
/**
|
|
4314
5443
|
*
|
|
4315
5444
|
* @type {string}
|
|
4316
|
-
* @memberof
|
|
5445
|
+
* @memberof IContentPlanResponse
|
|
4317
5446
|
*/
|
|
4318
|
-
'
|
|
5447
|
+
'triggeredBy'?: string;
|
|
5448
|
+
/**
|
|
5449
|
+
* 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).
|
|
5450
|
+
* @type {string}
|
|
5451
|
+
* @memberof IContentPlanResponse
|
|
5452
|
+
*/
|
|
5453
|
+
'queuedAt'?: string;
|
|
4319
5454
|
}
|
|
4320
5455
|
/**
|
|
4321
5456
|
*
|
|
4322
5457
|
* @export
|
|
4323
|
-
* @interface
|
|
5458
|
+
* @interface IContentPlansResponse
|
|
4324
5459
|
*/
|
|
4325
|
-
export interface
|
|
5460
|
+
export interface IContentPlansResponse {
|
|
4326
5461
|
/**
|
|
4327
5462
|
*
|
|
4328
5463
|
* @type {number}
|
|
4329
|
-
* @memberof
|
|
5464
|
+
* @memberof IContentPlansResponse
|
|
4330
5465
|
*/
|
|
4331
5466
|
'page': number;
|
|
4332
5467
|
/**
|
|
4333
5468
|
*
|
|
4334
5469
|
* @type {number}
|
|
4335
|
-
* @memberof
|
|
5470
|
+
* @memberof IContentPlansResponse
|
|
4336
5471
|
*/
|
|
4337
5472
|
'itemsPerPage': number;
|
|
4338
5473
|
/**
|
|
4339
5474
|
*
|
|
4340
5475
|
* @type {number}
|
|
4341
|
-
* @memberof
|
|
5476
|
+
* @memberof IContentPlansResponse
|
|
4342
5477
|
*/
|
|
4343
5478
|
'total': number;
|
|
4344
5479
|
/**
|
|
4345
5480
|
*
|
|
4346
5481
|
* @type {number}
|
|
4347
|
-
* @memberof
|
|
5482
|
+
* @memberof IContentPlansResponse
|
|
4348
5483
|
*/
|
|
4349
5484
|
'totalPages': number;
|
|
4350
5485
|
/**
|
|
4351
5486
|
*
|
|
4352
|
-
* @type {Array<
|
|
4353
|
-
* @memberof
|
|
5487
|
+
* @type {Array<IContentPlanResponse>}
|
|
5488
|
+
* @memberof IContentPlansResponse
|
|
4354
5489
|
*/
|
|
4355
|
-
'data': Array<
|
|
5490
|
+
'data': Array<IContentPlanResponse>;
|
|
4356
5491
|
}
|
|
4357
5492
|
/**
|
|
4358
5493
|
*
|
|
@@ -4366,6 +5501,14 @@ export interface IContentsValue {
|
|
|
4366
5501
|
* @memberof IContentsValue
|
|
4367
5502
|
*/
|
|
4368
5503
|
'status': ContentStatusEnum;
|
|
5504
|
+
/**
|
|
5505
|
+
* Construct a type with a set of properties K of type T
|
|
5506
|
+
* @type {{ [key: string]: any; }}
|
|
5507
|
+
* @memberof IContentsValue
|
|
5508
|
+
*/
|
|
5509
|
+
'structuredData'?: {
|
|
5510
|
+
[key: string]: any;
|
|
5511
|
+
};
|
|
4369
5512
|
/**
|
|
4370
5513
|
*
|
|
4371
5514
|
* @type {string}
|
|
@@ -6023,11 +7166,11 @@ export interface IOrderPostRequest {
|
|
|
6023
7166
|
*/
|
|
6024
7167
|
export interface IOrderResponse {
|
|
6025
7168
|
/**
|
|
6026
|
-
*
|
|
6027
|
-
* @type {
|
|
7169
|
+
* Değişmez sipariş numarası snapshot\'ı (prefix+sıra+suffix). Bkz. OrderService.nextOrderNumber.
|
|
7170
|
+
* @type {string}
|
|
6028
7171
|
* @memberof IOrderResponse
|
|
6029
7172
|
*/
|
|
6030
|
-
'number':
|
|
7173
|
+
'number': string;
|
|
6031
7174
|
/**
|
|
6032
7175
|
*
|
|
6033
7176
|
* @type {string}
|
|
@@ -6632,12 +7775,36 @@ export interface IPagePatchRequest {
|
|
|
6632
7775
|
* @memberof IPagePatchRequest
|
|
6633
7776
|
*/
|
|
6634
7777
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
7778
|
+
/**
|
|
7779
|
+
*
|
|
7780
|
+
* @type {Array<string>}
|
|
7781
|
+
* @memberof IPagePatchRequest
|
|
7782
|
+
*/
|
|
7783
|
+
'slugs'?: Array<string>;
|
|
7784
|
+
/**
|
|
7785
|
+
*
|
|
7786
|
+
* @type {Array<string>}
|
|
7787
|
+
* @memberof IPagePatchRequest
|
|
7788
|
+
*/
|
|
7789
|
+
'languages'?: Array<string>;
|
|
7790
|
+
/**
|
|
7791
|
+
*
|
|
7792
|
+
* @type {string}
|
|
7793
|
+
* @memberof IPagePatchRequest
|
|
7794
|
+
*/
|
|
7795
|
+
'publishedAt'?: string;
|
|
6635
7796
|
/**
|
|
6636
7797
|
*
|
|
6637
7798
|
* @type {IImage}
|
|
6638
7799
|
* @memberof IPagePatchRequest
|
|
6639
7800
|
*/
|
|
6640
7801
|
'thumbnail'?: IImage;
|
|
7802
|
+
/**
|
|
7803
|
+
*
|
|
7804
|
+
* @type {boolean}
|
|
7805
|
+
* @memberof IPagePatchRequest
|
|
7806
|
+
*/
|
|
7807
|
+
'draft'?: boolean;
|
|
6641
7808
|
}
|
|
6642
7809
|
/**
|
|
6643
7810
|
*
|
|
@@ -6663,6 +7830,18 @@ export interface IPagePostRequest {
|
|
|
6663
7830
|
* @memberof IPagePostRequest
|
|
6664
7831
|
*/
|
|
6665
7832
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7833
|
+
/**
|
|
7834
|
+
*
|
|
7835
|
+
* @type {Array<string>}
|
|
7836
|
+
* @memberof IPagePostRequest
|
|
7837
|
+
*/
|
|
7838
|
+
'slugs': Array<string>;
|
|
7839
|
+
/**
|
|
7840
|
+
*
|
|
7841
|
+
* @type {Array<string>}
|
|
7842
|
+
* @memberof IPagePostRequest
|
|
7843
|
+
*/
|
|
7844
|
+
'languages': Array<string>;
|
|
6666
7845
|
/**
|
|
6667
7846
|
*
|
|
6668
7847
|
* @type {IImage}
|
|
@@ -6675,6 +7854,18 @@ export interface IPagePostRequest {
|
|
|
6675
7854
|
* @memberof IPagePostRequest
|
|
6676
7855
|
*/
|
|
6677
7856
|
'type': string;
|
|
7857
|
+
/**
|
|
7858
|
+
*
|
|
7859
|
+
* @type {string}
|
|
7860
|
+
* @memberof IPagePostRequest
|
|
7861
|
+
*/
|
|
7862
|
+
'publishedAt'?: string;
|
|
7863
|
+
/**
|
|
7864
|
+
*
|
|
7865
|
+
* @type {boolean}
|
|
7866
|
+
* @memberof IPagePostRequest
|
|
7867
|
+
*/
|
|
7868
|
+
'draft'?: boolean;
|
|
6678
7869
|
}
|
|
6679
7870
|
/**
|
|
6680
7871
|
*
|
|
@@ -6724,6 +7915,18 @@ export interface IPageResponse {
|
|
|
6724
7915
|
* @memberof IPageResponse
|
|
6725
7916
|
*/
|
|
6726
7917
|
'slugs': Array<string>;
|
|
7918
|
+
/**
|
|
7919
|
+
*
|
|
7920
|
+
* @type {Array<string>}
|
|
7921
|
+
* @memberof IPageResponse
|
|
7922
|
+
*/
|
|
7923
|
+
'languages': Array<string>;
|
|
7924
|
+
/**
|
|
7925
|
+
*
|
|
7926
|
+
* @type {string}
|
|
7927
|
+
* @memberof IPageResponse
|
|
7928
|
+
*/
|
|
7929
|
+
'publishedAt': string;
|
|
6727
7930
|
/**
|
|
6728
7931
|
*
|
|
6729
7932
|
* @type {IImage}
|
|
@@ -6736,12 +7939,26 @@ export interface IPageResponse {
|
|
|
6736
7939
|
* @memberof IPageResponse
|
|
6737
7940
|
*/
|
|
6738
7941
|
'type': string;
|
|
7942
|
+
/**
|
|
7943
|
+
*
|
|
7944
|
+
* @type {boolean}
|
|
7945
|
+
* @memberof IPageResponse
|
|
7946
|
+
*/
|
|
7947
|
+
'draft': boolean;
|
|
6739
7948
|
/**
|
|
6740
7949
|
*
|
|
6741
7950
|
* @type {ContentStatusEnum}
|
|
6742
7951
|
* @memberof IPageResponse
|
|
6743
7952
|
*/
|
|
6744
7953
|
'status': ContentStatusEnum;
|
|
7954
|
+
/**
|
|
7955
|
+
* Construct a type with a set of properties K of type T
|
|
7956
|
+
* @type {{ [key: string]: any; }}
|
|
7957
|
+
* @memberof IPageResponse
|
|
7958
|
+
*/
|
|
7959
|
+
'structuredData'?: {
|
|
7960
|
+
[key: string]: any;
|
|
7961
|
+
};
|
|
6745
7962
|
/**
|
|
6746
7963
|
*
|
|
6747
7964
|
* @type {string}
|
|
@@ -7413,6 +8630,12 @@ export interface IProductPatchRequest {
|
|
|
7413
8630
|
* @memberof IProductPatchRequest
|
|
7414
8631
|
*/
|
|
7415
8632
|
'template'?: string;
|
|
8633
|
+
/**
|
|
8634
|
+
*
|
|
8635
|
+
* @type {string}
|
|
8636
|
+
* @memberof IProductPatchRequest
|
|
8637
|
+
*/
|
|
8638
|
+
'publishedAt'?: string;
|
|
7416
8639
|
/**
|
|
7417
8640
|
*
|
|
7418
8641
|
* @type {string}
|
|
@@ -7469,6 +8692,12 @@ export interface IProductPatchRequest {
|
|
|
7469
8692
|
* @memberof IProductPatchRequest
|
|
7470
8693
|
*/
|
|
7471
8694
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
8695
|
+
/**
|
|
8696
|
+
*
|
|
8697
|
+
* @type {Array<string>}
|
|
8698
|
+
* @memberof IProductPatchRequest
|
|
8699
|
+
*/
|
|
8700
|
+
'languages'?: Array<string>;
|
|
7472
8701
|
/**
|
|
7473
8702
|
*
|
|
7474
8703
|
* @type {Array<VariantType>}
|
|
@@ -7554,6 +8783,12 @@ export interface IProductPostRequest {
|
|
|
7554
8783
|
* @memberof IProductPostRequest
|
|
7555
8784
|
*/
|
|
7556
8785
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
8786
|
+
/**
|
|
8787
|
+
*
|
|
8788
|
+
* @type {Array<string>}
|
|
8789
|
+
* @memberof IProductPostRequest
|
|
8790
|
+
*/
|
|
8791
|
+
'languages': Array<string>;
|
|
7557
8792
|
/**
|
|
7558
8793
|
*
|
|
7559
8794
|
* @type {Array<VariantType>}
|
|
@@ -7594,6 +8829,12 @@ export interface IProductPostRequest {
|
|
|
7594
8829
|
* @memberof IProductPostRequest
|
|
7595
8830
|
*/
|
|
7596
8831
|
'template': string;
|
|
8832
|
+
/**
|
|
8833
|
+
*
|
|
8834
|
+
* @type {string}
|
|
8835
|
+
* @memberof IProductPostRequest
|
|
8836
|
+
*/
|
|
8837
|
+
'publishedAt'?: string;
|
|
7597
8838
|
}
|
|
7598
8839
|
/**
|
|
7599
8840
|
*
|
|
@@ -7705,6 +8946,12 @@ export interface IProductResponse {
|
|
|
7705
8946
|
* @memberof IProductResponse
|
|
7706
8947
|
*/
|
|
7707
8948
|
'slugs': Array<string>;
|
|
8949
|
+
/**
|
|
8950
|
+
*
|
|
8951
|
+
* @type {Array<string>}
|
|
8952
|
+
* @memberof IProductResponse
|
|
8953
|
+
*/
|
|
8954
|
+
'languages': Array<string>;
|
|
7708
8955
|
/**
|
|
7709
8956
|
*
|
|
7710
8957
|
* @type {Array<VariantType>}
|
|
@@ -7739,12 +8986,26 @@ export interface IProductResponse {
|
|
|
7739
8986
|
* @memberof IProductResponse
|
|
7740
8987
|
*/
|
|
7741
8988
|
'reviewCounts': PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts;
|
|
8989
|
+
/**
|
|
8990
|
+
*
|
|
8991
|
+
* @type {string}
|
|
8992
|
+
* @memberof IProductResponse
|
|
8993
|
+
*/
|
|
8994
|
+
'publishedAt': string;
|
|
7742
8995
|
/**
|
|
7743
8996
|
*
|
|
7744
8997
|
* @type {ContentStatusEnum}
|
|
7745
8998
|
* @memberof IProductResponse
|
|
7746
8999
|
*/
|
|
7747
9000
|
'status': ContentStatusEnum;
|
|
9001
|
+
/**
|
|
9002
|
+
* Construct a type with a set of properties K of type T
|
|
9003
|
+
* @type {{ [key: string]: any; }}
|
|
9004
|
+
* @memberof IProductResponse
|
|
9005
|
+
*/
|
|
9006
|
+
'structuredData'?: {
|
|
9007
|
+
[key: string]: any;
|
|
9008
|
+
};
|
|
7748
9009
|
/**
|
|
7749
9010
|
*
|
|
7750
9011
|
* @type {string}
|
|
@@ -9739,10 +11000,10 @@ export type IUniqueCollectionQueryParamsDateFieldEnum = typeof IUniqueCollection
|
|
|
9739
11000
|
export interface IUniquePagePatchRequest {
|
|
9740
11001
|
/**
|
|
9741
11002
|
*
|
|
9742
|
-
* @type {
|
|
11003
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny}
|
|
9743
11004
|
* @memberof IUniquePagePatchRequest
|
|
9744
11005
|
*/
|
|
9745
|
-
'contents':
|
|
11006
|
+
'contents': PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny;
|
|
9746
11007
|
/**
|
|
9747
11008
|
*
|
|
9748
11009
|
* @type {IImage}
|
|
@@ -9788,10 +11049,10 @@ export interface IUniquePageResponse {
|
|
|
9788
11049
|
'updatedAt': string;
|
|
9789
11050
|
/**
|
|
9790
11051
|
*
|
|
9791
|
-
* @type {
|
|
11052
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny}
|
|
9792
11053
|
* @memberof IUniquePageResponse
|
|
9793
11054
|
*/
|
|
9794
|
-
'contents':
|
|
11055
|
+
'contents': PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny;
|
|
9795
11056
|
/**
|
|
9796
11057
|
*
|
|
9797
11058
|
* @type {IImage}
|
|
@@ -10701,44 +11962,52 @@ export interface PartialRecordLanguageEnumTitleString {
|
|
|
10701
11962
|
/**
|
|
10702
11963
|
* Make all properties in T optional
|
|
10703
11964
|
* @export
|
|
10704
|
-
* @interface
|
|
11965
|
+
* @interface PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny
|
|
10705
11966
|
*/
|
|
10706
|
-
export interface
|
|
11967
|
+
export interface PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny {
|
|
10707
11968
|
/**
|
|
10708
11969
|
*
|
|
10709
|
-
* @type {
|
|
10710
|
-
* @memberof
|
|
11970
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr}
|
|
11971
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny
|
|
10711
11972
|
*/
|
|
10712
|
-
'tr'?:
|
|
11973
|
+
'tr'?: PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr;
|
|
10713
11974
|
/**
|
|
10714
11975
|
*
|
|
10715
|
-
* @type {
|
|
10716
|
-
* @memberof
|
|
11976
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr}
|
|
11977
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny
|
|
10717
11978
|
*/
|
|
10718
|
-
'en'?:
|
|
11979
|
+
'en'?: PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr;
|
|
10719
11980
|
/**
|
|
10720
11981
|
*
|
|
10721
|
-
* @type {
|
|
10722
|
-
* @memberof
|
|
11982
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr}
|
|
11983
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny
|
|
10723
11984
|
*/
|
|
10724
|
-
'de'?:
|
|
11985
|
+
'de'?: PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr;
|
|
10725
11986
|
}
|
|
10726
11987
|
/**
|
|
10727
11988
|
*
|
|
10728
11989
|
* @export
|
|
10729
|
-
* @interface
|
|
11990
|
+
* @interface PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr
|
|
10730
11991
|
*/
|
|
10731
|
-
export interface
|
|
11992
|
+
export interface PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr {
|
|
11993
|
+
/**
|
|
11994
|
+
* Construct a type with a set of properties K of type T
|
|
11995
|
+
* @type {{ [key: string]: any; }}
|
|
11996
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr
|
|
11997
|
+
*/
|
|
11998
|
+
'structuredData'?: {
|
|
11999
|
+
[key: string]: any;
|
|
12000
|
+
};
|
|
10732
12001
|
/**
|
|
10733
12002
|
*
|
|
10734
12003
|
* @type {string}
|
|
10735
|
-
* @memberof
|
|
12004
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr
|
|
10736
12005
|
*/
|
|
10737
12006
|
'description'?: string;
|
|
10738
12007
|
/**
|
|
10739
12008
|
*
|
|
10740
12009
|
* @type {string}
|
|
10741
|
-
* @memberof
|
|
12010
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAnyTr
|
|
10742
12011
|
*/
|
|
10743
12012
|
'title': string;
|
|
10744
12013
|
}
|
|
@@ -10850,25 +12119,37 @@ export interface PickIBasketExcludeKeyofIBasketItems {
|
|
|
10850
12119
|
/**
|
|
10851
12120
|
* From T, pick a set of properties whose keys are in the union K
|
|
10852
12121
|
* @export
|
|
10853
|
-
* @interface
|
|
12122
|
+
* @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
10854
12123
|
*/
|
|
10855
|
-
export interface
|
|
12124
|
+
export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue {
|
|
10856
12125
|
/**
|
|
10857
12126
|
*
|
|
10858
12127
|
* @type {string}
|
|
10859
|
-
* @memberof
|
|
12128
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
10860
12129
|
*/
|
|
10861
12130
|
'company': string;
|
|
10862
12131
|
/**
|
|
10863
12132
|
*
|
|
10864
12133
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
10865
|
-
* @memberof
|
|
12134
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
10866
12135
|
*/
|
|
10867
12136
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
12137
|
+
/**
|
|
12138
|
+
*
|
|
12139
|
+
* @type {Array<string>}
|
|
12140
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12141
|
+
*/
|
|
12142
|
+
'slugs': Array<string>;
|
|
12143
|
+
/**
|
|
12144
|
+
*
|
|
12145
|
+
* @type {Array<string>}
|
|
12146
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12147
|
+
*/
|
|
12148
|
+
'languages': Array<string>;
|
|
10868
12149
|
/**
|
|
10869
12150
|
*
|
|
10870
12151
|
* @type {IImage}
|
|
10871
|
-
* @memberof
|
|
12152
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
10872
12153
|
*/
|
|
10873
12154
|
'thumbnail'?: IImage;
|
|
10874
12155
|
}
|
|
@@ -10920,6 +12201,18 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
10920
12201
|
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
10921
12202
|
*/
|
|
10922
12203
|
'slugs': Array<string>;
|
|
12204
|
+
/**
|
|
12205
|
+
*
|
|
12206
|
+
* @type {Array<string>}
|
|
12207
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
12208
|
+
*/
|
|
12209
|
+
'languages': Array<string>;
|
|
12210
|
+
/**
|
|
12211
|
+
*
|
|
12212
|
+
* @type {string}
|
|
12213
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
12214
|
+
*/
|
|
12215
|
+
'publishedAt': string;
|
|
10923
12216
|
/**
|
|
10924
12217
|
*
|
|
10925
12218
|
* @type {IImage}
|
|
@@ -10936,31 +12229,43 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
10936
12229
|
/**
|
|
10937
12230
|
* From T, pick a set of properties whose keys are in the union K
|
|
10938
12231
|
* @export
|
|
10939
|
-
* @interface
|
|
12232
|
+
* @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
10940
12233
|
*/
|
|
10941
|
-
export interface
|
|
12234
|
+
export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue {
|
|
10942
12235
|
/**
|
|
10943
12236
|
*
|
|
10944
12237
|
* @type {string}
|
|
10945
|
-
* @memberof
|
|
12238
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
10946
12239
|
*/
|
|
10947
12240
|
'company': string;
|
|
10948
12241
|
/**
|
|
10949
12242
|
*
|
|
10950
12243
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
10951
|
-
* @memberof
|
|
12244
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
10952
12245
|
*/
|
|
10953
12246
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
12247
|
+
/**
|
|
12248
|
+
*
|
|
12249
|
+
* @type {Array<string>}
|
|
12250
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
12251
|
+
*/
|
|
12252
|
+
'slugs': Array<string>;
|
|
12253
|
+
/**
|
|
12254
|
+
*
|
|
12255
|
+
* @type {Array<string>}
|
|
12256
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
12257
|
+
*/
|
|
12258
|
+
'languages': Array<string>;
|
|
10954
12259
|
/**
|
|
10955
12260
|
*
|
|
10956
12261
|
* @type {IImage}
|
|
10957
|
-
* @memberof
|
|
12262
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
10958
12263
|
*/
|
|
10959
12264
|
'thumbnail'?: IImage;
|
|
10960
12265
|
/**
|
|
10961
12266
|
*
|
|
10962
12267
|
* @type {string}
|
|
10963
|
-
* @memberof
|
|
12268
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
10964
12269
|
*/
|
|
10965
12270
|
'main'?: string;
|
|
10966
12271
|
}
|
|
@@ -11017,31 +12322,43 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
|
11017
12322
|
/**
|
|
11018
12323
|
* From T, pick a set of properties whose keys are in the union K
|
|
11019
12324
|
* @export
|
|
11020
|
-
* @interface
|
|
12325
|
+
* @interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
11021
12326
|
*/
|
|
11022
|
-
export interface
|
|
12327
|
+
export interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue {
|
|
11023
12328
|
/**
|
|
11024
12329
|
*
|
|
11025
12330
|
* @type {string}
|
|
11026
|
-
* @memberof
|
|
12331
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
11027
12332
|
*/
|
|
11028
12333
|
'company': string;
|
|
11029
12334
|
/**
|
|
11030
12335
|
*
|
|
11031
12336
|
* @type {string}
|
|
11032
|
-
* @memberof
|
|
12337
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
11033
12338
|
*/
|
|
11034
12339
|
'template': string;
|
|
11035
12340
|
/**
|
|
11036
12341
|
*
|
|
11037
12342
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
11038
|
-
* @memberof
|
|
12343
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
11039
12344
|
*/
|
|
11040
12345
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
12346
|
+
/**
|
|
12347
|
+
*
|
|
12348
|
+
* @type {Array<string>}
|
|
12349
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12350
|
+
*/
|
|
12351
|
+
'slugs': Array<string>;
|
|
12352
|
+
/**
|
|
12353
|
+
*
|
|
12354
|
+
* @type {Array<string>}
|
|
12355
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12356
|
+
*/
|
|
12357
|
+
'languages': Array<string>;
|
|
11041
12358
|
/**
|
|
11042
12359
|
*
|
|
11043
12360
|
* @type {IImage}
|
|
11044
|
-
* @memberof
|
|
12361
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
11045
12362
|
*/
|
|
11046
12363
|
'thumbnail'?: IImage;
|
|
11047
12364
|
}
|
|
@@ -11093,6 +12410,18 @@ export interface PickICollectionExcludeKeyofICollectionTemplate {
|
|
|
11093
12410
|
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
11094
12411
|
*/
|
|
11095
12412
|
'slugs': Array<string>;
|
|
12413
|
+
/**
|
|
12414
|
+
*
|
|
12415
|
+
* @type {Array<string>}
|
|
12416
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
12417
|
+
*/
|
|
12418
|
+
'languages': Array<string>;
|
|
12419
|
+
/**
|
|
12420
|
+
*
|
|
12421
|
+
* @type {string}
|
|
12422
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
12423
|
+
*/
|
|
12424
|
+
'publishedAt': string;
|
|
11096
12425
|
/**
|
|
11097
12426
|
*
|
|
11098
12427
|
* @type {IImage}
|
|
@@ -11234,6 +12563,12 @@ export interface PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91
|
|
|
11234
12563
|
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
11235
12564
|
*/
|
|
11236
12565
|
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
12566
|
+
/**
|
|
12567
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
12568
|
+
* @type {number}
|
|
12569
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12570
|
+
*/
|
|
12571
|
+
'password'?: number;
|
|
11237
12572
|
/**
|
|
11238
12573
|
*
|
|
11239
12574
|
* @type {string}
|
|
@@ -11288,6 +12623,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
11288
12623
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
11289
12624
|
*/
|
|
11290
12625
|
'updatedAt': string;
|
|
12626
|
+
/**
|
|
12627
|
+
*
|
|
12628
|
+
* @type {Array<LanguageEnum>}
|
|
12629
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12630
|
+
*/
|
|
12631
|
+
'languages': Array<LanguageEnum>;
|
|
11291
12632
|
/**
|
|
11292
12633
|
*
|
|
11293
12634
|
* @type {CompanyTypeEnum}
|
|
@@ -11342,6 +12683,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
11342
12683
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
11343
12684
|
*/
|
|
11344
12685
|
'orderNoSuffix'?: string;
|
|
12686
|
+
/**
|
|
12687
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
12688
|
+
* @type {number}
|
|
12689
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12690
|
+
*/
|
|
12691
|
+
'lastOrderNumber'?: number;
|
|
11345
12692
|
/**
|
|
11346
12693
|
*
|
|
11347
12694
|
* @type {IImage}
|
|
@@ -11366,12 +12713,6 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
11366
12713
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
11367
12714
|
*/
|
|
11368
12715
|
'timezone': TimezoneEnum;
|
|
11369
|
-
/**
|
|
11370
|
-
*
|
|
11371
|
-
* @type {Array<LanguageEnum>}
|
|
11372
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
11373
|
-
*/
|
|
11374
|
-
'languages': Array<LanguageEnum>;
|
|
11375
12716
|
/**
|
|
11376
12717
|
*
|
|
11377
12718
|
* @type {CurrencyEnum}
|
|
@@ -11440,6 +12781,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
11440
12781
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
11441
12782
|
*/
|
|
11442
12783
|
'htmlHead'?: string;
|
|
12784
|
+
/**
|
|
12785
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
12786
|
+
* @type {boolean}
|
|
12787
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12788
|
+
*/
|
|
12789
|
+
'passwordActive'?: boolean;
|
|
11443
12790
|
/**
|
|
11444
12791
|
*
|
|
11445
12792
|
* @type {string}
|
|
@@ -11852,11 +13199,11 @@ export interface PickINavigationLinkExcludeKeyofINavigationLinkLinks {
|
|
|
11852
13199
|
*/
|
|
11853
13200
|
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
11854
13201
|
/**
|
|
11855
|
-
*
|
|
11856
|
-
* @type {
|
|
13202
|
+
* Değişmez sipariş numarası snapshot\'ı (prefix+sıra+suffix). Bkz. OrderService.nextOrderNumber.
|
|
13203
|
+
* @type {string}
|
|
11857
13204
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
11858
13205
|
*/
|
|
11859
|
-
'number':
|
|
13206
|
+
'number': string;
|
|
11860
13207
|
/**
|
|
11861
13208
|
*
|
|
11862
13209
|
* @type {string}
|
|
@@ -12237,37 +13584,49 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner {
|
|
|
12237
13584
|
/**
|
|
12238
13585
|
* From T, pick a set of properties whose keys are in the union K
|
|
12239
13586
|
* @export
|
|
12240
|
-
* @interface
|
|
13587
|
+
* @interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
12241
13588
|
*/
|
|
12242
|
-
export interface
|
|
13589
|
+
export interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue {
|
|
12243
13590
|
/**
|
|
12244
13591
|
*
|
|
12245
13592
|
* @type {string}
|
|
12246
|
-
* @memberof
|
|
13593
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
12247
13594
|
*/
|
|
12248
13595
|
'company': string;
|
|
12249
13596
|
/**
|
|
12250
13597
|
*
|
|
12251
13598
|
* @type {string}
|
|
12252
|
-
* @memberof
|
|
13599
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
12253
13600
|
*/
|
|
12254
13601
|
'template': string;
|
|
12255
13602
|
/**
|
|
12256
13603
|
*
|
|
12257
13604
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
12258
|
-
* @memberof
|
|
13605
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
12259
13606
|
*/
|
|
12260
13607
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
13608
|
+
/**
|
|
13609
|
+
*
|
|
13610
|
+
* @type {Array<string>}
|
|
13611
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
13612
|
+
*/
|
|
13613
|
+
'slugs': Array<string>;
|
|
13614
|
+
/**
|
|
13615
|
+
*
|
|
13616
|
+
* @type {Array<string>}
|
|
13617
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
13618
|
+
*/
|
|
13619
|
+
'languages': Array<string>;
|
|
12261
13620
|
/**
|
|
12262
13621
|
*
|
|
12263
13622
|
* @type {IImage}
|
|
12264
|
-
* @memberof
|
|
13623
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
12265
13624
|
*/
|
|
12266
13625
|
'thumbnail'?: IImage;
|
|
12267
13626
|
/**
|
|
12268
13627
|
*
|
|
12269
13628
|
* @type {string}
|
|
12270
|
-
* @memberof
|
|
13629
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
12271
13630
|
*/
|
|
12272
13631
|
'type': string;
|
|
12273
13632
|
}
|
|
@@ -12319,6 +13678,18 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
12319
13678
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
12320
13679
|
*/
|
|
12321
13680
|
'slugs': Array<string>;
|
|
13681
|
+
/**
|
|
13682
|
+
*
|
|
13683
|
+
* @type {Array<string>}
|
|
13684
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
13685
|
+
*/
|
|
13686
|
+
'languages': Array<string>;
|
|
13687
|
+
/**
|
|
13688
|
+
*
|
|
13689
|
+
* @type {string}
|
|
13690
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
13691
|
+
*/
|
|
13692
|
+
'publishedAt': string;
|
|
12322
13693
|
/**
|
|
12323
13694
|
*
|
|
12324
13695
|
* @type {IImage}
|
|
@@ -12331,6 +13702,12 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
12331
13702
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
12332
13703
|
*/
|
|
12333
13704
|
'type': string;
|
|
13705
|
+
/**
|
|
13706
|
+
*
|
|
13707
|
+
* @type {boolean}
|
|
13708
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
13709
|
+
*/
|
|
13710
|
+
'draft': boolean;
|
|
12334
13711
|
}
|
|
12335
13712
|
/**
|
|
12336
13713
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12503,6 +13880,12 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
12503
13880
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
12504
13881
|
*/
|
|
12505
13882
|
'slugs': Array<string>;
|
|
13883
|
+
/**
|
|
13884
|
+
*
|
|
13885
|
+
* @type {Array<string>}
|
|
13886
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
13887
|
+
*/
|
|
13888
|
+
'languages': Array<string>;
|
|
12506
13889
|
/**
|
|
12507
13890
|
*
|
|
12508
13891
|
* @type {Array<VariantType>}
|
|
@@ -12537,6 +13920,12 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
12537
13920
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
12538
13921
|
*/
|
|
12539
13922
|
'reviewCounts': PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts;
|
|
13923
|
+
/**
|
|
13924
|
+
*
|
|
13925
|
+
* @type {string}
|
|
13926
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
13927
|
+
*/
|
|
13928
|
+
'publishedAt': string;
|
|
12540
13929
|
}
|
|
12541
13930
|
/**
|
|
12542
13931
|
*
|
|
@@ -12693,6 +14082,12 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
12693
14082
|
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
|
|
12694
14083
|
*/
|
|
12695
14084
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
14085
|
+
/**
|
|
14086
|
+
*
|
|
14087
|
+
* @type {Array<string>}
|
|
14088
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
|
|
14089
|
+
*/
|
|
14090
|
+
'languages': Array<string>;
|
|
12696
14091
|
/**
|
|
12697
14092
|
*
|
|
12698
14093
|
* @type {Array<VariantType>}
|
|
@@ -13369,10 +14764,10 @@ export interface PickIUniquePageExcludeKeyofIUniquePageTemplate {
|
|
|
13369
14764
|
'updatedAt': string;
|
|
13370
14765
|
/**
|
|
13371
14766
|
*
|
|
13372
|
-
* @type {
|
|
14767
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny}
|
|
13373
14768
|
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
13374
14769
|
*/
|
|
13375
|
-
'contents':
|
|
14770
|
+
'contents': PartialRecordLanguageEnumTitleStringDescription63StringStructuredData63RecordStringAny;
|
|
13376
14771
|
/**
|
|
13377
14772
|
*
|
|
13378
14773
|
* @type {IImage}
|