@teemill/website 0.7.0 → 0.9.0
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/README.md +2 -2
- package/api.ts +2469 -230
- package/base.ts +3 -3
- package/common.ts +3 -3
- package/configuration.ts +10 -4
- package/dist/api.d.ts +1777 -150
- package/dist/api.js +954 -4
- package/dist/base.d.ts +3 -3
- package/dist/base.js +3 -3
- package/dist/common.d.ts +3 -3
- package/dist/common.js +3 -3
- package/dist/configuration.d.ts +3 -3
- package/dist/configuration.js +5 -4
- package/dist/esm/api.d.ts +1777 -150
- package/dist/esm/api.js +941 -3
- package/dist/esm/base.d.ts +3 -3
- package/dist/esm/base.js +3 -3
- package/dist/esm/common.d.ts +3 -3
- package/dist/esm/common.js +3 -3
- package/dist/esm/configuration.d.ts +3 -3
- package/dist/esm/configuration.js +5 -4
- package/dist/esm/index.d.ts +3 -3
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/index.ts +3 -3
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Website API
|
|
3
|
-
* Manage your
|
|
3
|
+
* Manage your PodOS Website
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.9.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.7.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -190,6 +190,130 @@ export interface AuthorizeStripe200Response {
|
|
|
190
190
|
*/
|
|
191
191
|
'redirect_url': string;
|
|
192
192
|
}
|
|
193
|
+
/**
|
|
194
|
+
*
|
|
195
|
+
* @export
|
|
196
|
+
* @interface Blog
|
|
197
|
+
*/
|
|
198
|
+
export interface Blog {
|
|
199
|
+
/**
|
|
200
|
+
* Unique object identifier
|
|
201
|
+
* @type {string}
|
|
202
|
+
* @memberof Blog
|
|
203
|
+
*/
|
|
204
|
+
'id'?: string;
|
|
205
|
+
/**
|
|
206
|
+
*
|
|
207
|
+
* @type {string}
|
|
208
|
+
* @memberof Blog
|
|
209
|
+
*/
|
|
210
|
+
'title'?: string;
|
|
211
|
+
/**
|
|
212
|
+
*
|
|
213
|
+
* @type {string}
|
|
214
|
+
* @memberof Blog
|
|
215
|
+
*/
|
|
216
|
+
'description'?: string;
|
|
217
|
+
/**
|
|
218
|
+
*
|
|
219
|
+
* @type {string}
|
|
220
|
+
* @memberof Blog
|
|
221
|
+
*/
|
|
222
|
+
'slug'?: string;
|
|
223
|
+
/**
|
|
224
|
+
*
|
|
225
|
+
* @type {SeoMetadata}
|
|
226
|
+
* @memberof Blog
|
|
227
|
+
*/
|
|
228
|
+
'seoMetadata'?: SeoMetadata;
|
|
229
|
+
/**
|
|
230
|
+
*
|
|
231
|
+
* @type {TargetSearchPhraseData}
|
|
232
|
+
* @memberof Blog
|
|
233
|
+
*/
|
|
234
|
+
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
235
|
+
}
|
|
236
|
+
/**
|
|
237
|
+
*
|
|
238
|
+
* @export
|
|
239
|
+
* @interface BlogsResponse
|
|
240
|
+
*/
|
|
241
|
+
export interface BlogsResponse {
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* @type {Array<Blog>}
|
|
245
|
+
* @memberof BlogsResponse
|
|
246
|
+
*/
|
|
247
|
+
'blogs'?: Array<Blog>;
|
|
248
|
+
/**
|
|
249
|
+
* The token referencing the next page number
|
|
250
|
+
* @type {number}
|
|
251
|
+
* @memberof BlogsResponse
|
|
252
|
+
*/
|
|
253
|
+
'nextPageToken'?: number | null;
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
*
|
|
257
|
+
* @export
|
|
258
|
+
* @interface Collection
|
|
259
|
+
*/
|
|
260
|
+
export interface Collection {
|
|
261
|
+
/**
|
|
262
|
+
* Unique object identifier
|
|
263
|
+
* @type {string}
|
|
264
|
+
* @memberof Collection
|
|
265
|
+
*/
|
|
266
|
+
'id'?: string;
|
|
267
|
+
/**
|
|
268
|
+
*
|
|
269
|
+
* @type {string}
|
|
270
|
+
* @memberof Collection
|
|
271
|
+
*/
|
|
272
|
+
'title'?: string;
|
|
273
|
+
/**
|
|
274
|
+
*
|
|
275
|
+
* @type {string}
|
|
276
|
+
* @memberof Collection
|
|
277
|
+
*/
|
|
278
|
+
'description'?: string;
|
|
279
|
+
/**
|
|
280
|
+
*
|
|
281
|
+
* @type {string}
|
|
282
|
+
* @memberof Collection
|
|
283
|
+
*/
|
|
284
|
+
'slug'?: string;
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @type {SeoMetadata}
|
|
288
|
+
* @memberof Collection
|
|
289
|
+
*/
|
|
290
|
+
'seoMetadata'?: SeoMetadata;
|
|
291
|
+
/**
|
|
292
|
+
*
|
|
293
|
+
* @type {TargetSearchPhraseData}
|
|
294
|
+
* @memberof Collection
|
|
295
|
+
*/
|
|
296
|
+
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
*
|
|
300
|
+
* @export
|
|
301
|
+
* @interface CollectionsResponse
|
|
302
|
+
*/
|
|
303
|
+
export interface CollectionsResponse {
|
|
304
|
+
/**
|
|
305
|
+
*
|
|
306
|
+
* @type {Array<Collection>}
|
|
307
|
+
* @memberof CollectionsResponse
|
|
308
|
+
*/
|
|
309
|
+
'collections'?: Array<Collection>;
|
|
310
|
+
/**
|
|
311
|
+
* The token referencing the next page number
|
|
312
|
+
* @type {number}
|
|
313
|
+
* @memberof CollectionsResponse
|
|
314
|
+
*/
|
|
315
|
+
'nextPageToken'?: number | null;
|
|
316
|
+
}
|
|
193
317
|
/**
|
|
194
318
|
* Image description
|
|
195
319
|
* @export
|
|
@@ -333,6 +457,68 @@ export interface MetaField {
|
|
|
333
457
|
*/
|
|
334
458
|
'value': string;
|
|
335
459
|
}
|
|
460
|
+
/**
|
|
461
|
+
*
|
|
462
|
+
* @export
|
|
463
|
+
* @interface Page
|
|
464
|
+
*/
|
|
465
|
+
export interface Page {
|
|
466
|
+
/**
|
|
467
|
+
* Unique object identifier
|
|
468
|
+
* @type {string}
|
|
469
|
+
* @memberof Page
|
|
470
|
+
*/
|
|
471
|
+
'id'?: string;
|
|
472
|
+
/**
|
|
473
|
+
*
|
|
474
|
+
* @type {string}
|
|
475
|
+
* @memberof Page
|
|
476
|
+
*/
|
|
477
|
+
'title'?: string;
|
|
478
|
+
/**
|
|
479
|
+
*
|
|
480
|
+
* @type {string}
|
|
481
|
+
* @memberof Page
|
|
482
|
+
*/
|
|
483
|
+
'description'?: string;
|
|
484
|
+
/**
|
|
485
|
+
*
|
|
486
|
+
* @type {string}
|
|
487
|
+
* @memberof Page
|
|
488
|
+
*/
|
|
489
|
+
'slug'?: string;
|
|
490
|
+
/**
|
|
491
|
+
*
|
|
492
|
+
* @type {SeoMetadata}
|
|
493
|
+
* @memberof Page
|
|
494
|
+
*/
|
|
495
|
+
'seoMetadata'?: SeoMetadata;
|
|
496
|
+
/**
|
|
497
|
+
*
|
|
498
|
+
* @type {TargetSearchPhraseData}
|
|
499
|
+
* @memberof Page
|
|
500
|
+
*/
|
|
501
|
+
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
502
|
+
}
|
|
503
|
+
/**
|
|
504
|
+
*
|
|
505
|
+
* @export
|
|
506
|
+
* @interface PagesResponse
|
|
507
|
+
*/
|
|
508
|
+
export interface PagesResponse {
|
|
509
|
+
/**
|
|
510
|
+
*
|
|
511
|
+
* @type {Array<Page>}
|
|
512
|
+
* @memberof PagesResponse
|
|
513
|
+
*/
|
|
514
|
+
'pages'?: Array<Page>;
|
|
515
|
+
/**
|
|
516
|
+
* The token referencing the next page number
|
|
517
|
+
* @type {number}
|
|
518
|
+
* @memberof PagesResponse
|
|
519
|
+
*/
|
|
520
|
+
'nextPageToken'?: number | null;
|
|
521
|
+
}
|
|
336
522
|
/**
|
|
337
523
|
*
|
|
338
524
|
* @export
|
|
@@ -694,7 +880,13 @@ export interface SubmenuInner {
|
|
|
694
880
|
* @type {string}
|
|
695
881
|
* @memberof SubmenuInner
|
|
696
882
|
*/
|
|
697
|
-
'
|
|
883
|
+
'link'?: string | null;
|
|
884
|
+
/**
|
|
885
|
+
*
|
|
886
|
+
* @type {SubmenuInnerImage}
|
|
887
|
+
* @memberof SubmenuInner
|
|
888
|
+
*/
|
|
889
|
+
'image': SubmenuInnerImage | null;
|
|
698
890
|
/**
|
|
699
891
|
*
|
|
700
892
|
* @type {number}
|
|
@@ -707,326 +899,1525 @@ export interface SubmenuInner {
|
|
|
707
899
|
* @memberof SubmenuInner
|
|
708
900
|
*/
|
|
709
901
|
'items': Array<SubmenuItem>;
|
|
902
|
+
/**
|
|
903
|
+
*
|
|
904
|
+
* @type {string}
|
|
905
|
+
* @memberof SubmenuInner
|
|
906
|
+
*/
|
|
907
|
+
'mode'?: SubmenuInnerModeEnum;
|
|
710
908
|
}
|
|
909
|
+
export declare const SubmenuInnerModeEnum: {
|
|
910
|
+
readonly Image: "image";
|
|
911
|
+
readonly List: "list";
|
|
912
|
+
};
|
|
913
|
+
export type SubmenuInnerModeEnum = typeof SubmenuInnerModeEnum[keyof typeof SubmenuInnerModeEnum];
|
|
711
914
|
/**
|
|
712
915
|
*
|
|
713
916
|
* @export
|
|
714
|
-
* @interface
|
|
917
|
+
* @interface SubmenuInnerImage
|
|
715
918
|
*/
|
|
716
|
-
export interface
|
|
919
|
+
export interface SubmenuInnerImage {
|
|
717
920
|
/**
|
|
718
921
|
*
|
|
719
922
|
* @type {string}
|
|
720
|
-
* @memberof
|
|
923
|
+
* @memberof SubmenuInnerImage
|
|
721
924
|
*/
|
|
722
|
-
'
|
|
925
|
+
'src': string;
|
|
723
926
|
/**
|
|
724
927
|
*
|
|
725
928
|
* @type {string}
|
|
726
|
-
* @memberof
|
|
929
|
+
* @memberof SubmenuInnerImage
|
|
727
930
|
*/
|
|
728
|
-
'
|
|
931
|
+
'title': string | null;
|
|
729
932
|
/**
|
|
730
933
|
*
|
|
731
934
|
* @type {string}
|
|
732
|
-
* @memberof
|
|
935
|
+
* @memberof SubmenuInnerImage
|
|
733
936
|
*/
|
|
734
|
-
'
|
|
937
|
+
'description': string | null;
|
|
735
938
|
/**
|
|
736
939
|
*
|
|
737
|
-
* @type {
|
|
738
|
-
* @memberof
|
|
940
|
+
* @type {string}
|
|
941
|
+
* @memberof SubmenuInnerImage
|
|
739
942
|
*/
|
|
740
|
-
'
|
|
741
|
-
}
|
|
742
|
-
/**
|
|
743
|
-
*
|
|
744
|
-
* @export
|
|
745
|
-
* @interface UpdateMenuRequest
|
|
746
|
-
*/
|
|
747
|
-
export interface UpdateMenuRequest {
|
|
943
|
+
'link': string | null;
|
|
748
944
|
/**
|
|
749
945
|
*
|
|
750
|
-
* @type {
|
|
751
|
-
* @memberof
|
|
946
|
+
* @type {boolean}
|
|
947
|
+
* @memberof SubmenuInnerImage
|
|
752
948
|
*/
|
|
753
|
-
'
|
|
949
|
+
'overlay': boolean;
|
|
950
|
+
/**
|
|
951
|
+
*
|
|
952
|
+
* @type {string}
|
|
953
|
+
* @memberof SubmenuInnerImage
|
|
954
|
+
*/
|
|
955
|
+
'borderRadius': SubmenuInnerImageBorderRadiusEnum | null;
|
|
956
|
+
/**
|
|
957
|
+
*
|
|
958
|
+
* @type {string}
|
|
959
|
+
* @memberof SubmenuInnerImage
|
|
960
|
+
*/
|
|
961
|
+
'ratio': string | null;
|
|
962
|
+
/**
|
|
963
|
+
*
|
|
964
|
+
* @type {SubmenuInnerImageText}
|
|
965
|
+
* @memberof SubmenuInnerImage
|
|
966
|
+
*/
|
|
967
|
+
'text': SubmenuInnerImageText | null;
|
|
968
|
+
/**
|
|
969
|
+
*
|
|
970
|
+
* @type {SubmenuInnerImageButton}
|
|
971
|
+
* @memberof SubmenuInnerImage
|
|
972
|
+
*/
|
|
973
|
+
'button': SubmenuInnerImageButton | null;
|
|
754
974
|
}
|
|
975
|
+
export declare const SubmenuInnerImageBorderRadiusEnum: {
|
|
976
|
+
readonly Sharp: "sharp";
|
|
977
|
+
readonly Smooth: "smooth";
|
|
978
|
+
readonly Rounded: "rounded";
|
|
979
|
+
readonly Circle: "circle";
|
|
980
|
+
};
|
|
981
|
+
export type SubmenuInnerImageBorderRadiusEnum = typeof SubmenuInnerImageBorderRadiusEnum[keyof typeof SubmenuInnerImageBorderRadiusEnum];
|
|
755
982
|
/**
|
|
756
983
|
*
|
|
757
984
|
* @export
|
|
758
|
-
* @interface
|
|
985
|
+
* @interface SubmenuInnerImageButton
|
|
759
986
|
*/
|
|
760
|
-
export interface
|
|
987
|
+
export interface SubmenuInnerImageButton {
|
|
761
988
|
/**
|
|
762
989
|
*
|
|
763
990
|
* @type {string}
|
|
764
|
-
* @memberof
|
|
991
|
+
* @memberof SubmenuInnerImageButton
|
|
765
992
|
*/
|
|
766
|
-
'
|
|
993
|
+
'text': string | null;
|
|
767
994
|
/**
|
|
768
995
|
*
|
|
769
996
|
* @type {string}
|
|
770
|
-
* @memberof
|
|
997
|
+
* @memberof SubmenuInnerImageButton
|
|
771
998
|
*/
|
|
772
|
-
'
|
|
999
|
+
'textColor': string | null;
|
|
773
1000
|
/**
|
|
774
1001
|
*
|
|
775
1002
|
* @type {string}
|
|
776
|
-
* @memberof
|
|
1003
|
+
* @memberof SubmenuInnerImageButton
|
|
777
1004
|
*/
|
|
778
|
-
'
|
|
1005
|
+
'backgroundColor': string | null;
|
|
779
1006
|
/**
|
|
780
1007
|
*
|
|
781
|
-
* @type {
|
|
782
|
-
* @memberof
|
|
1008
|
+
* @type {string}
|
|
1009
|
+
* @memberof SubmenuInnerImageButton
|
|
783
1010
|
*/
|
|
784
|
-
'
|
|
1011
|
+
'borderColor': string | null;
|
|
785
1012
|
/**
|
|
786
1013
|
*
|
|
787
|
-
* @type {
|
|
788
|
-
* @memberof
|
|
1014
|
+
* @type {string}
|
|
1015
|
+
* @memberof SubmenuInnerImageButton
|
|
789
1016
|
*/
|
|
790
|
-
'
|
|
1017
|
+
'borderRadius': string | null;
|
|
1018
|
+
/**
|
|
1019
|
+
*
|
|
1020
|
+
* @type {string}
|
|
1021
|
+
* @memberof SubmenuInnerImageButton
|
|
1022
|
+
*/
|
|
1023
|
+
'width': SubmenuInnerImageButtonWidthEnum | null;
|
|
791
1024
|
}
|
|
1025
|
+
export declare const SubmenuInnerImageButtonWidthEnum: {
|
|
1026
|
+
readonly Auto: "auto";
|
|
1027
|
+
readonly Full: "full";
|
|
1028
|
+
};
|
|
1029
|
+
export type SubmenuInnerImageButtonWidthEnum = typeof SubmenuInnerImageButtonWidthEnum[keyof typeof SubmenuInnerImageButtonWidthEnum];
|
|
792
1030
|
/**
|
|
793
1031
|
*
|
|
794
1032
|
* @export
|
|
795
|
-
* @interface
|
|
1033
|
+
* @interface SubmenuInnerImageText
|
|
796
1034
|
*/
|
|
797
|
-
export interface
|
|
1035
|
+
export interface SubmenuInnerImageText {
|
|
798
1036
|
/**
|
|
799
1037
|
*
|
|
800
1038
|
* @type {string}
|
|
801
|
-
* @memberof
|
|
1039
|
+
* @memberof SubmenuInnerImageText
|
|
802
1040
|
*/
|
|
803
|
-
'
|
|
1041
|
+
'alignment': SubmenuInnerImageTextAlignmentEnum | null;
|
|
804
1042
|
/**
|
|
805
1043
|
*
|
|
806
1044
|
* @type {string}
|
|
807
|
-
* @memberof
|
|
1045
|
+
* @memberof SubmenuInnerImageText
|
|
808
1046
|
*/
|
|
809
|
-
'
|
|
1047
|
+
'color': string | null;
|
|
810
1048
|
/**
|
|
811
1049
|
*
|
|
812
1050
|
* @type {string}
|
|
813
|
-
* @memberof
|
|
814
|
-
*/
|
|
815
|
-
'image': string | null;
|
|
816
|
-
/**
|
|
817
|
-
*
|
|
818
|
-
* @type {number}
|
|
819
|
-
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
820
|
-
*/
|
|
821
|
-
'order': number;
|
|
822
|
-
/**
|
|
823
|
-
*
|
|
824
|
-
* @type {Array<UpdateMenuRequestSubmenuItem>}
|
|
825
|
-
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1051
|
+
* @memberof SubmenuInnerImageText
|
|
826
1052
|
*/
|
|
827
|
-
'
|
|
1053
|
+
'shadow': SubmenuInnerImageTextShadowEnum | null;
|
|
828
1054
|
}
|
|
1055
|
+
export declare const SubmenuInnerImageTextAlignmentEnum: {
|
|
1056
|
+
readonly Left: "left";
|
|
1057
|
+
readonly Center: "center";
|
|
1058
|
+
readonly Right: "right";
|
|
1059
|
+
};
|
|
1060
|
+
export type SubmenuInnerImageTextAlignmentEnum = typeof SubmenuInnerImageTextAlignmentEnum[keyof typeof SubmenuInnerImageTextAlignmentEnum];
|
|
1061
|
+
export declare const SubmenuInnerImageTextShadowEnum: {
|
|
1062
|
+
readonly None: "none";
|
|
1063
|
+
readonly Light: "light";
|
|
1064
|
+
readonly Medium: "medium";
|
|
1065
|
+
readonly Heavy: "heavy";
|
|
1066
|
+
};
|
|
1067
|
+
export type SubmenuInnerImageTextShadowEnum = typeof SubmenuInnerImageTextShadowEnum[keyof typeof SubmenuInnerImageTextShadowEnum];
|
|
829
1068
|
/**
|
|
830
1069
|
*
|
|
831
1070
|
* @export
|
|
832
|
-
* @interface
|
|
1071
|
+
* @interface SubmenuItem
|
|
833
1072
|
*/
|
|
834
|
-
export interface
|
|
1073
|
+
export interface SubmenuItem {
|
|
835
1074
|
/**
|
|
836
1075
|
*
|
|
837
1076
|
* @type {string}
|
|
838
|
-
* @memberof
|
|
1077
|
+
* @memberof SubmenuItem
|
|
839
1078
|
*/
|
|
840
|
-
'id': string
|
|
1079
|
+
'id': string;
|
|
841
1080
|
/**
|
|
842
1081
|
*
|
|
843
1082
|
* @type {string}
|
|
844
|
-
* @memberof
|
|
1083
|
+
* @memberof SubmenuItem
|
|
845
1084
|
*/
|
|
846
1085
|
'text': string;
|
|
847
1086
|
/**
|
|
848
1087
|
*
|
|
849
1088
|
* @type {string}
|
|
850
|
-
* @memberof
|
|
1089
|
+
* @memberof SubmenuItem
|
|
851
1090
|
*/
|
|
852
1091
|
'link': string;
|
|
853
1092
|
/**
|
|
854
1093
|
*
|
|
855
1094
|
* @type {number}
|
|
856
|
-
* @memberof
|
|
1095
|
+
* @memberof SubmenuItem
|
|
857
1096
|
*/
|
|
858
1097
|
'order': number;
|
|
859
1098
|
}
|
|
860
1099
|
/**
|
|
861
1100
|
*
|
|
862
1101
|
* @export
|
|
863
|
-
* @interface
|
|
1102
|
+
* @interface TargetSearchPhraseData
|
|
864
1103
|
*/
|
|
865
|
-
export interface
|
|
1104
|
+
export interface TargetSearchPhraseData {
|
|
866
1105
|
/**
|
|
867
|
-
*
|
|
1106
|
+
* The primary target search phrase for a page that you wish to rank for in search engine results.
|
|
868
1107
|
* @type {string}
|
|
869
|
-
* @memberof
|
|
1108
|
+
* @memberof TargetSearchPhraseData
|
|
870
1109
|
*/
|
|
871
|
-
'
|
|
1110
|
+
'targetSearchPhrase'?: string;
|
|
872
1111
|
/**
|
|
873
|
-
*
|
|
874
|
-
* @type {Array<
|
|
875
|
-
* @memberof
|
|
1112
|
+
* Synonyms for the target search phrase.
|
|
1113
|
+
* @type {Array<string>}
|
|
1114
|
+
* @memberof TargetSearchPhraseData
|
|
876
1115
|
*/
|
|
877
|
-
'
|
|
1116
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1117
|
+
}
|
|
1118
|
+
/**
|
|
1119
|
+
*
|
|
1120
|
+
* @export
|
|
1121
|
+
* @interface UpdateBlogRequest
|
|
1122
|
+
*/
|
|
1123
|
+
export interface UpdateBlogRequest {
|
|
878
1124
|
/**
|
|
879
|
-
*
|
|
1125
|
+
* Blog title
|
|
1126
|
+
* @type {string}
|
|
1127
|
+
* @memberof UpdateBlogRequest
|
|
1128
|
+
*/
|
|
1129
|
+
'title'?: string;
|
|
1130
|
+
/**
|
|
1131
|
+
* Blog description
|
|
1132
|
+
* @type {string}
|
|
1133
|
+
* @memberof UpdateBlogRequest
|
|
1134
|
+
*/
|
|
1135
|
+
'description'?: string;
|
|
1136
|
+
/**
|
|
1137
|
+
* URL slug. This must be unique for each blog post on the website. Updating this will also break any existing links to this blog post.
|
|
1138
|
+
* @type {string}
|
|
1139
|
+
* @memberof UpdateBlogRequest
|
|
1140
|
+
*/
|
|
1141
|
+
'slug'?: string;
|
|
1142
|
+
/**
|
|
1143
|
+
*
|
|
1144
|
+
* @type {UpdateBlogsRequestBlogsInnerSeoMetadata}
|
|
1145
|
+
* @memberof UpdateBlogRequest
|
|
1146
|
+
*/
|
|
1147
|
+
'seoMetadata'?: UpdateBlogsRequestBlogsInnerSeoMetadata;
|
|
1148
|
+
/**
|
|
1149
|
+
* The primary target search phrase for the blog post that you wish to rank for in search engine results.
|
|
1150
|
+
* @type {string}
|
|
1151
|
+
* @memberof UpdateBlogRequest
|
|
1152
|
+
*/
|
|
1153
|
+
'targetSearchPhrase'?: string;
|
|
1154
|
+
/**
|
|
1155
|
+
* Synonyms for the target search phrase.
|
|
1156
|
+
* @type {Array<string>}
|
|
1157
|
+
* @memberof UpdateBlogRequest
|
|
1158
|
+
*/
|
|
1159
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1160
|
+
}
|
|
1161
|
+
/**
|
|
1162
|
+
*
|
|
1163
|
+
* @export
|
|
1164
|
+
* @interface UpdateBlogsRequest
|
|
1165
|
+
*/
|
|
1166
|
+
export interface UpdateBlogsRequest {
|
|
1167
|
+
/**
|
|
1168
|
+
*
|
|
1169
|
+
* @type {Array<UpdateBlogsRequestBlogsInner>}
|
|
1170
|
+
* @memberof UpdateBlogsRequest
|
|
1171
|
+
*/
|
|
1172
|
+
'blogs'?: Array<UpdateBlogsRequestBlogsInner>;
|
|
1173
|
+
/**
|
|
1174
|
+
* The primary target search phrase for the blog post that you wish to rank for in search engine results.
|
|
1175
|
+
* @type {string}
|
|
1176
|
+
* @memberof UpdateBlogsRequest
|
|
1177
|
+
*/
|
|
1178
|
+
'targetSearchPhrase'?: string;
|
|
1179
|
+
/**
|
|
1180
|
+
* Synonyms for the target search phrase.
|
|
1181
|
+
* @type {Array<string>}
|
|
1182
|
+
* @memberof UpdateBlogsRequest
|
|
1183
|
+
*/
|
|
1184
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1185
|
+
}
|
|
1186
|
+
/**
|
|
1187
|
+
*
|
|
1188
|
+
* @export
|
|
1189
|
+
* @interface UpdateBlogsRequestBlogsInner
|
|
1190
|
+
*/
|
|
1191
|
+
export interface UpdateBlogsRequestBlogsInner {
|
|
1192
|
+
/**
|
|
1193
|
+
* Unique object identifier
|
|
1194
|
+
* @type {string}
|
|
1195
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
1196
|
+
*/
|
|
1197
|
+
'id': string;
|
|
1198
|
+
/**
|
|
1199
|
+
* Blog title
|
|
1200
|
+
* @type {string}
|
|
1201
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
1202
|
+
*/
|
|
1203
|
+
'title'?: string;
|
|
1204
|
+
/**
|
|
1205
|
+
* Blog description
|
|
1206
|
+
* @type {string}
|
|
1207
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
1208
|
+
*/
|
|
1209
|
+
'description'?: string;
|
|
1210
|
+
/**
|
|
1211
|
+
* URL slug. This must be unique for each blog post on the website. Updating this will also break any existing links to this blog post.
|
|
1212
|
+
* @type {string}
|
|
1213
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
1214
|
+
*/
|
|
1215
|
+
'slug'?: string;
|
|
1216
|
+
/**
|
|
1217
|
+
*
|
|
1218
|
+
* @type {UpdateBlogsRequestBlogsInnerSeoMetadata}
|
|
1219
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
1220
|
+
*/
|
|
1221
|
+
'seoMetadata'?: UpdateBlogsRequestBlogsInnerSeoMetadata;
|
|
1222
|
+
}
|
|
1223
|
+
/**
|
|
1224
|
+
*
|
|
1225
|
+
* @export
|
|
1226
|
+
* @interface UpdateBlogsRequestBlogsInnerSeoMetadata
|
|
1227
|
+
*/
|
|
1228
|
+
export interface UpdateBlogsRequestBlogsInnerSeoMetadata {
|
|
1229
|
+
/**
|
|
1230
|
+
* Meta title for the blog post. This appears in search engine results and social shares. If not provided, the blog post title will be used.
|
|
1231
|
+
* @type {string}
|
|
1232
|
+
* @memberof UpdateBlogsRequestBlogsInnerSeoMetadata
|
|
1233
|
+
*/
|
|
1234
|
+
'title'?: string | null;
|
|
1235
|
+
/**
|
|
1236
|
+
* Meta description for the blog post. This appears in search engine results and social shares. If not provided, the blog post description will be used.
|
|
1237
|
+
* @type {string}
|
|
1238
|
+
* @memberof UpdateBlogsRequestBlogsInnerSeoMetadata
|
|
1239
|
+
*/
|
|
1240
|
+
'description'?: string | null;
|
|
1241
|
+
}
|
|
1242
|
+
/**
|
|
1243
|
+
*
|
|
1244
|
+
* @export
|
|
1245
|
+
* @interface UpdateCollectionRequest
|
|
1246
|
+
*/
|
|
1247
|
+
export interface UpdateCollectionRequest {
|
|
1248
|
+
/**
|
|
1249
|
+
* Collection title
|
|
1250
|
+
* @type {string}
|
|
1251
|
+
* @memberof UpdateCollectionRequest
|
|
1252
|
+
*/
|
|
1253
|
+
'title'?: string;
|
|
1254
|
+
/**
|
|
1255
|
+
* Collection description
|
|
1256
|
+
* @type {string}
|
|
1257
|
+
* @memberof UpdateCollectionRequest
|
|
1258
|
+
*/
|
|
1259
|
+
'description'?: string;
|
|
1260
|
+
/**
|
|
1261
|
+
* URL slug. This must be unique for each collection on the website. Updating this will also break any existing links to this collection.
|
|
1262
|
+
* @type {string}
|
|
1263
|
+
* @memberof UpdateCollectionRequest
|
|
1264
|
+
*/
|
|
1265
|
+
'slug'?: string;
|
|
1266
|
+
/**
|
|
1267
|
+
*
|
|
1268
|
+
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
|
1269
|
+
* @memberof UpdateCollectionRequest
|
|
1270
|
+
*/
|
|
1271
|
+
'seoMetadata'?: UpdateCollectionsRequestCollectionsInnerSeoMetadata;
|
|
1272
|
+
/**
|
|
1273
|
+
* The primary target search phrase for the collection that you wish to rank for in search engine results.
|
|
1274
|
+
* @type {string}
|
|
1275
|
+
* @memberof UpdateCollectionRequest
|
|
1276
|
+
*/
|
|
1277
|
+
'targetSearchPhrase'?: string;
|
|
1278
|
+
/**
|
|
1279
|
+
* Synonyms for the target search phrase.
|
|
1280
|
+
* @type {Array<string>}
|
|
1281
|
+
* @memberof UpdateCollectionRequest
|
|
1282
|
+
*/
|
|
1283
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1284
|
+
}
|
|
1285
|
+
/**
|
|
1286
|
+
*
|
|
1287
|
+
* @export
|
|
1288
|
+
* @interface UpdateCollectionsRequest
|
|
1289
|
+
*/
|
|
1290
|
+
export interface UpdateCollectionsRequest {
|
|
1291
|
+
/**
|
|
1292
|
+
*
|
|
1293
|
+
* @type {Array<UpdateCollectionsRequestCollectionsInner>}
|
|
1294
|
+
* @memberof UpdateCollectionsRequest
|
|
1295
|
+
*/
|
|
1296
|
+
'collections'?: Array<UpdateCollectionsRequestCollectionsInner>;
|
|
1297
|
+
}
|
|
1298
|
+
/**
|
|
1299
|
+
*
|
|
1300
|
+
* @export
|
|
1301
|
+
* @interface UpdateCollectionsRequestCollectionsInner
|
|
1302
|
+
*/
|
|
1303
|
+
export interface UpdateCollectionsRequestCollectionsInner {
|
|
1304
|
+
/**
|
|
1305
|
+
* Unique object identifier
|
|
1306
|
+
* @type {string}
|
|
1307
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1308
|
+
*/
|
|
1309
|
+
'id': string;
|
|
1310
|
+
/**
|
|
1311
|
+
* Collection title
|
|
1312
|
+
* @type {string}
|
|
1313
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1314
|
+
*/
|
|
1315
|
+
'title'?: string;
|
|
1316
|
+
/**
|
|
1317
|
+
* Collection description
|
|
1318
|
+
* @type {string}
|
|
1319
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1320
|
+
*/
|
|
1321
|
+
'description'?: string;
|
|
1322
|
+
/**
|
|
1323
|
+
* URL slug. This must be unique for each collection on the website. Updating this will also break any existing links to this collection.
|
|
1324
|
+
* @type {string}
|
|
1325
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1326
|
+
*/
|
|
1327
|
+
'slug'?: string;
|
|
1328
|
+
/**
|
|
1329
|
+
*
|
|
1330
|
+
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
|
1331
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1332
|
+
*/
|
|
1333
|
+
'seoMetadata'?: UpdateCollectionsRequestCollectionsInnerSeoMetadata;
|
|
1334
|
+
/**
|
|
1335
|
+
* The primary target search phrase for the collection that you wish to rank for in search engine results.
|
|
1336
|
+
* @type {string}
|
|
1337
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1338
|
+
*/
|
|
1339
|
+
'targetSearchPhrase'?: string;
|
|
1340
|
+
/**
|
|
1341
|
+
* Synonyms for the target search phrase.
|
|
1342
|
+
* @type {Array<string>}
|
|
1343
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1344
|
+
*/
|
|
1345
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1346
|
+
}
|
|
1347
|
+
/**
|
|
1348
|
+
*
|
|
1349
|
+
* @export
|
|
1350
|
+
* @interface UpdateCollectionsRequestCollectionsInnerSeoMetadata
|
|
1351
|
+
*/
|
|
1352
|
+
export interface UpdateCollectionsRequestCollectionsInnerSeoMetadata {
|
|
1353
|
+
/**
|
|
1354
|
+
* Meta title for the collection. This appears in search engine results and social shares. If not provided, the collection title will be used.
|
|
1355
|
+
* @type {string}
|
|
1356
|
+
* @memberof UpdateCollectionsRequestCollectionsInnerSeoMetadata
|
|
1357
|
+
*/
|
|
1358
|
+
'title'?: string | null;
|
|
1359
|
+
/**
|
|
1360
|
+
* Meta description for the collection. This appears in search engine results and social shares. If not provided, the collection description will be used.
|
|
1361
|
+
* @type {string}
|
|
1362
|
+
* @memberof UpdateCollectionsRequestCollectionsInnerSeoMetadata
|
|
1363
|
+
*/
|
|
1364
|
+
'description'?: string | null;
|
|
1365
|
+
}
|
|
1366
|
+
/**
|
|
1367
|
+
*
|
|
1368
|
+
* @export
|
|
1369
|
+
* @interface UpdateMenuRequest
|
|
1370
|
+
*/
|
|
1371
|
+
export interface UpdateMenuRequest {
|
|
1372
|
+
/**
|
|
1373
|
+
*
|
|
1374
|
+
* @type {Array<UpdateMenuRequestItem>}
|
|
1375
|
+
* @memberof UpdateMenuRequest
|
|
1376
|
+
*/
|
|
1377
|
+
'items'?: Array<UpdateMenuRequestItem>;
|
|
1378
|
+
}
|
|
1379
|
+
/**
|
|
1380
|
+
*
|
|
1381
|
+
* @export
|
|
1382
|
+
* @interface UpdateMenuRequestItem
|
|
1383
|
+
*/
|
|
1384
|
+
export interface UpdateMenuRequestItem {
|
|
1385
|
+
/**
|
|
1386
|
+
*
|
|
1387
|
+
* @type {string}
|
|
1388
|
+
* @memberof UpdateMenuRequestItem
|
|
1389
|
+
*/
|
|
1390
|
+
'id': string | null;
|
|
1391
|
+
/**
|
|
1392
|
+
*
|
|
1393
|
+
* @type {string}
|
|
1394
|
+
* @memberof UpdateMenuRequestItem
|
|
1395
|
+
*/
|
|
1396
|
+
'text': string;
|
|
1397
|
+
/**
|
|
1398
|
+
*
|
|
1399
|
+
* @type {string}
|
|
1400
|
+
* @memberof UpdateMenuRequestItem
|
|
1401
|
+
*/
|
|
1402
|
+
'link': string;
|
|
1403
|
+
/**
|
|
1404
|
+
*
|
|
1405
|
+
* @type {number}
|
|
1406
|
+
* @memberof UpdateMenuRequestItem
|
|
1407
|
+
*/
|
|
1408
|
+
'order': number;
|
|
1409
|
+
/**
|
|
1410
|
+
*
|
|
1411
|
+
* @type {Array<UpdateMenuRequestItemSubmenuInner>}
|
|
1412
|
+
* @memberof UpdateMenuRequestItem
|
|
1413
|
+
*/
|
|
1414
|
+
'submenu': Array<UpdateMenuRequestItemSubmenuInner>;
|
|
1415
|
+
}
|
|
1416
|
+
/**
|
|
1417
|
+
*
|
|
1418
|
+
* @export
|
|
1419
|
+
* @interface UpdateMenuRequestItemSubmenuInner
|
|
1420
|
+
*/
|
|
1421
|
+
export interface UpdateMenuRequestItemSubmenuInner {
|
|
1422
|
+
/**
|
|
1423
|
+
*
|
|
1424
|
+
* @type {string}
|
|
1425
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1426
|
+
*/
|
|
1427
|
+
'id': string | null;
|
|
1428
|
+
/**
|
|
1429
|
+
*
|
|
1430
|
+
* @type {string}
|
|
1431
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1432
|
+
*/
|
|
1433
|
+
'title': string;
|
|
1434
|
+
/**
|
|
1435
|
+
*
|
|
1436
|
+
* @type {string}
|
|
1437
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1438
|
+
*/
|
|
1439
|
+
'link'?: string | null;
|
|
1440
|
+
/**
|
|
1441
|
+
*
|
|
1442
|
+
* @type {UpdateMenuRequestItemSubmenuInnerImage}
|
|
1443
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1444
|
+
*/
|
|
1445
|
+
'image'?: UpdateMenuRequestItemSubmenuInnerImage | null;
|
|
1446
|
+
/**
|
|
1447
|
+
*
|
|
1448
|
+
* @type {number}
|
|
1449
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1450
|
+
*/
|
|
1451
|
+
'order': number;
|
|
1452
|
+
/**
|
|
1453
|
+
*
|
|
1454
|
+
* @type {Array<UpdateMenuRequestSubmenuItem>}
|
|
1455
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1456
|
+
*/
|
|
1457
|
+
'items': Array<UpdateMenuRequestSubmenuItem>;
|
|
1458
|
+
/**
|
|
1459
|
+
*
|
|
1460
|
+
* @type {string}
|
|
1461
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1462
|
+
*/
|
|
1463
|
+
'mode'?: UpdateMenuRequestItemSubmenuInnerModeEnum;
|
|
1464
|
+
}
|
|
1465
|
+
export declare const UpdateMenuRequestItemSubmenuInnerModeEnum: {
|
|
1466
|
+
readonly Image: "image";
|
|
1467
|
+
readonly List: "list";
|
|
1468
|
+
};
|
|
1469
|
+
export type UpdateMenuRequestItemSubmenuInnerModeEnum = typeof UpdateMenuRequestItemSubmenuInnerModeEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerModeEnum];
|
|
1470
|
+
/**
|
|
1471
|
+
*
|
|
1472
|
+
* @export
|
|
1473
|
+
* @interface UpdateMenuRequestItemSubmenuInnerImage
|
|
1474
|
+
*/
|
|
1475
|
+
export interface UpdateMenuRequestItemSubmenuInnerImage {
|
|
1476
|
+
/**
|
|
1477
|
+
*
|
|
1478
|
+
* @type {string}
|
|
1479
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImage
|
|
1480
|
+
*/
|
|
1481
|
+
'src'?: string | null;
|
|
1482
|
+
/**
|
|
1483
|
+
*
|
|
1484
|
+
* @type {string}
|
|
1485
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImage
|
|
1486
|
+
*/
|
|
1487
|
+
'title'?: string | null;
|
|
1488
|
+
/**
|
|
1489
|
+
*
|
|
1490
|
+
* @type {string}
|
|
1491
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImage
|
|
1492
|
+
*/
|
|
1493
|
+
'description'?: string | null;
|
|
1494
|
+
/**
|
|
1495
|
+
*
|
|
1496
|
+
* @type {string}
|
|
1497
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImage
|
|
1498
|
+
*/
|
|
1499
|
+
'link'?: string | null;
|
|
1500
|
+
/**
|
|
1501
|
+
*
|
|
1502
|
+
* @type {boolean}
|
|
1503
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImage
|
|
1504
|
+
*/
|
|
1505
|
+
'overlay'?: boolean | null;
|
|
1506
|
+
/**
|
|
1507
|
+
*
|
|
1508
|
+
* @type {string}
|
|
1509
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImage
|
|
1510
|
+
*/
|
|
1511
|
+
'borderRadius'?: string | null;
|
|
1512
|
+
/**
|
|
1513
|
+
*
|
|
1514
|
+
* @type {string}
|
|
1515
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImage
|
|
1516
|
+
*/
|
|
1517
|
+
'ratio'?: string | null;
|
|
1518
|
+
/**
|
|
1519
|
+
*
|
|
1520
|
+
* @type {UpdateMenuRequestItemSubmenuInnerImageText}
|
|
1521
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImage
|
|
1522
|
+
*/
|
|
1523
|
+
'text'?: UpdateMenuRequestItemSubmenuInnerImageText;
|
|
1524
|
+
/**
|
|
1525
|
+
*
|
|
1526
|
+
* @type {UpdateMenuRequestItemSubmenuInnerImageButton}
|
|
1527
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImage
|
|
1528
|
+
*/
|
|
1529
|
+
'button'?: UpdateMenuRequestItemSubmenuInnerImageButton;
|
|
1530
|
+
}
|
|
1531
|
+
/**
|
|
1532
|
+
*
|
|
1533
|
+
* @export
|
|
1534
|
+
* @interface UpdateMenuRequestItemSubmenuInnerImageButton
|
|
1535
|
+
*/
|
|
1536
|
+
export interface UpdateMenuRequestItemSubmenuInnerImageButton {
|
|
1537
|
+
/**
|
|
1538
|
+
*
|
|
1539
|
+
* @type {string}
|
|
1540
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImageButton
|
|
1541
|
+
*/
|
|
1542
|
+
'text'?: string | null;
|
|
1543
|
+
/**
|
|
1544
|
+
*
|
|
1545
|
+
* @type {string}
|
|
1546
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImageButton
|
|
1547
|
+
*/
|
|
1548
|
+
'textColor'?: string | null;
|
|
1549
|
+
/**
|
|
1550
|
+
*
|
|
1551
|
+
* @type {string}
|
|
1552
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImageButton
|
|
1553
|
+
*/
|
|
1554
|
+
'backgroundColor'?: string | null;
|
|
1555
|
+
/**
|
|
1556
|
+
*
|
|
1557
|
+
* @type {string}
|
|
1558
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImageButton
|
|
1559
|
+
*/
|
|
1560
|
+
'borderColor'?: string | null;
|
|
1561
|
+
/**
|
|
1562
|
+
*
|
|
1563
|
+
* @type {string}
|
|
1564
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImageButton
|
|
1565
|
+
*/
|
|
1566
|
+
'borderRadius'?: UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum | null;
|
|
1567
|
+
/**
|
|
1568
|
+
*
|
|
1569
|
+
* @type {string}
|
|
1570
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImageButton
|
|
1571
|
+
*/
|
|
1572
|
+
'width'?: UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum | null;
|
|
1573
|
+
}
|
|
1574
|
+
export declare const UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum: {
|
|
1575
|
+
readonly Sharp: "sharp";
|
|
1576
|
+
readonly Smooth: "smooth";
|
|
1577
|
+
readonly Rounded: "rounded";
|
|
1578
|
+
readonly Circle: "circle";
|
|
1579
|
+
};
|
|
1580
|
+
export type UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum = typeof UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum];
|
|
1581
|
+
export declare const UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum: {
|
|
1582
|
+
readonly Auto: "auto";
|
|
1583
|
+
readonly Full: "full";
|
|
1584
|
+
};
|
|
1585
|
+
export type UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum = typeof UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum];
|
|
1586
|
+
/**
|
|
1587
|
+
*
|
|
1588
|
+
* @export
|
|
1589
|
+
* @interface UpdateMenuRequestItemSubmenuInnerImageText
|
|
1590
|
+
*/
|
|
1591
|
+
export interface UpdateMenuRequestItemSubmenuInnerImageText {
|
|
1592
|
+
/**
|
|
1593
|
+
*
|
|
1594
|
+
* @type {string}
|
|
1595
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImageText
|
|
1596
|
+
*/
|
|
1597
|
+
'alignment'?: UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum | null;
|
|
1598
|
+
/**
|
|
1599
|
+
*
|
|
1600
|
+
* @type {string}
|
|
1601
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImageText
|
|
1602
|
+
*/
|
|
1603
|
+
'color'?: string | null;
|
|
1604
|
+
/**
|
|
1605
|
+
*
|
|
1606
|
+
* @type {string}
|
|
1607
|
+
* @memberof UpdateMenuRequestItemSubmenuInnerImageText
|
|
1608
|
+
*/
|
|
1609
|
+
'shadow'?: UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum | null;
|
|
1610
|
+
}
|
|
1611
|
+
export declare const UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum: {
|
|
1612
|
+
readonly Left: "left";
|
|
1613
|
+
readonly Center: "center";
|
|
1614
|
+
readonly Right: "right";
|
|
1615
|
+
};
|
|
1616
|
+
export type UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum = typeof UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum];
|
|
1617
|
+
export declare const UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum: {
|
|
1618
|
+
readonly None: "none";
|
|
1619
|
+
readonly Light: "light";
|
|
1620
|
+
readonly Medium: "medium";
|
|
1621
|
+
readonly Heavy: "heavy";
|
|
1622
|
+
};
|
|
1623
|
+
export type UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum = typeof UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum];
|
|
1624
|
+
/**
|
|
1625
|
+
*
|
|
1626
|
+
* @export
|
|
1627
|
+
* @interface UpdateMenuRequestSubmenuItem
|
|
1628
|
+
*/
|
|
1629
|
+
export interface UpdateMenuRequestSubmenuItem {
|
|
1630
|
+
/**
|
|
1631
|
+
*
|
|
1632
|
+
* @type {string}
|
|
1633
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
1634
|
+
*/
|
|
1635
|
+
'id': string | null;
|
|
1636
|
+
/**
|
|
1637
|
+
*
|
|
1638
|
+
* @type {string}
|
|
1639
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
1640
|
+
*/
|
|
1641
|
+
'text': string;
|
|
1642
|
+
/**
|
|
1643
|
+
*
|
|
1644
|
+
* @type {string}
|
|
1645
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
1646
|
+
*/
|
|
1647
|
+
'link': string;
|
|
1648
|
+
/**
|
|
1649
|
+
*
|
|
1650
|
+
* @type {number}
|
|
1651
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
1652
|
+
*/
|
|
1653
|
+
'order': number;
|
|
1654
|
+
}
|
|
1655
|
+
/**
|
|
1656
|
+
*
|
|
1657
|
+
* @export
|
|
1658
|
+
* @interface UpdatePageRequest
|
|
1659
|
+
*/
|
|
1660
|
+
export interface UpdatePageRequest {
|
|
1661
|
+
/**
|
|
1662
|
+
* Page title
|
|
1663
|
+
* @type {string}
|
|
1664
|
+
* @memberof UpdatePageRequest
|
|
1665
|
+
*/
|
|
1666
|
+
'title'?: string;
|
|
1667
|
+
/**
|
|
1668
|
+
* Page description
|
|
1669
|
+
* @type {string}
|
|
1670
|
+
* @memberof UpdatePageRequest
|
|
1671
|
+
*/
|
|
1672
|
+
'description'?: string;
|
|
1673
|
+
/**
|
|
1674
|
+
* URL slug. This must be unique for each page on the website. Updating this will also break any existing links to this page.
|
|
1675
|
+
* @type {string}
|
|
1676
|
+
* @memberof UpdatePageRequest
|
|
1677
|
+
*/
|
|
1678
|
+
'slug'?: string;
|
|
1679
|
+
/**
|
|
1680
|
+
*
|
|
1681
|
+
* @type {UpdatePagesRequestPagesInnerSeoMetadata}
|
|
1682
|
+
* @memberof UpdatePageRequest
|
|
1683
|
+
*/
|
|
1684
|
+
'seoMetadata'?: UpdatePagesRequestPagesInnerSeoMetadata;
|
|
1685
|
+
/**
|
|
1686
|
+
* The primary target search phrase for the page that you wish to rank for in search engine results.
|
|
1687
|
+
* @type {string}
|
|
1688
|
+
* @memberof UpdatePageRequest
|
|
1689
|
+
*/
|
|
1690
|
+
'targetSearchPhrase'?: string;
|
|
1691
|
+
/**
|
|
1692
|
+
* Synonyms for the target search phrase.
|
|
1693
|
+
* @type {Array<string>}
|
|
1694
|
+
* @memberof UpdatePageRequest
|
|
1695
|
+
*/
|
|
1696
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1697
|
+
}
|
|
1698
|
+
/**
|
|
1699
|
+
*
|
|
1700
|
+
* @export
|
|
1701
|
+
* @interface UpdatePagesRequest
|
|
1702
|
+
*/
|
|
1703
|
+
export interface UpdatePagesRequest {
|
|
1704
|
+
/**
|
|
1705
|
+
*
|
|
1706
|
+
* @type {Array<UpdatePagesRequestPagesInner>}
|
|
1707
|
+
* @memberof UpdatePagesRequest
|
|
1708
|
+
*/
|
|
1709
|
+
'pages'?: Array<UpdatePagesRequestPagesInner>;
|
|
1710
|
+
}
|
|
1711
|
+
/**
|
|
1712
|
+
*
|
|
1713
|
+
* @export
|
|
1714
|
+
* @interface UpdatePagesRequestPagesInner
|
|
1715
|
+
*/
|
|
1716
|
+
export interface UpdatePagesRequestPagesInner {
|
|
1717
|
+
/**
|
|
1718
|
+
* Unique object identifier
|
|
1719
|
+
* @type {string}
|
|
1720
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1721
|
+
*/
|
|
1722
|
+
'id': string;
|
|
1723
|
+
/**
|
|
1724
|
+
* Page title
|
|
1725
|
+
* @type {string}
|
|
1726
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1727
|
+
*/
|
|
1728
|
+
'title'?: string;
|
|
1729
|
+
/**
|
|
1730
|
+
* Page description
|
|
1731
|
+
* @type {string}
|
|
1732
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1733
|
+
*/
|
|
1734
|
+
'description'?: string;
|
|
1735
|
+
/**
|
|
1736
|
+
* URL slug. This must be unique for each page on the website. Updating this will also break any existing links to this page.
|
|
1737
|
+
* @type {string}
|
|
1738
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1739
|
+
*/
|
|
1740
|
+
'slug'?: string;
|
|
1741
|
+
/**
|
|
1742
|
+
*
|
|
1743
|
+
* @type {UpdatePagesRequestPagesInnerSeoMetadata}
|
|
1744
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1745
|
+
*/
|
|
1746
|
+
'seoMetadata'?: UpdatePagesRequestPagesInnerSeoMetadata;
|
|
1747
|
+
/**
|
|
1748
|
+
* The primary target search phrase for the page that you wish to rank for in search engine results.
|
|
1749
|
+
* @type {string}
|
|
1750
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1751
|
+
*/
|
|
1752
|
+
'targetSearchPhrase'?: string;
|
|
1753
|
+
/**
|
|
1754
|
+
* Synonyms for the target search phrase.
|
|
1755
|
+
* @type {Array<string>}
|
|
1756
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1757
|
+
*/
|
|
1758
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1759
|
+
}
|
|
1760
|
+
/**
|
|
1761
|
+
*
|
|
1762
|
+
* @export
|
|
1763
|
+
* @interface UpdatePagesRequestPagesInnerSeoMetadata
|
|
1764
|
+
*/
|
|
1765
|
+
export interface UpdatePagesRequestPagesInnerSeoMetadata {
|
|
1766
|
+
/**
|
|
1767
|
+
* Meta title for the page. This appears in search engine results and social shares. If not provided, the page title will be used.
|
|
1768
|
+
* @type {string}
|
|
1769
|
+
* @memberof UpdatePagesRequestPagesInnerSeoMetadata
|
|
1770
|
+
*/
|
|
1771
|
+
'title'?: string | null;
|
|
1772
|
+
/**
|
|
1773
|
+
* Meta description for the page. This appears in search engine results and social shares. If not provided, the page description will be used.
|
|
1774
|
+
* @type {string}
|
|
1775
|
+
* @memberof UpdatePagesRequestPagesInnerSeoMetadata
|
|
1776
|
+
*/
|
|
1777
|
+
'description'?: string | null;
|
|
1778
|
+
}
|
|
1779
|
+
/**
|
|
1780
|
+
*
|
|
1781
|
+
* @export
|
|
1782
|
+
* @interface Variant
|
|
1783
|
+
*/
|
|
1784
|
+
export interface Variant {
|
|
1785
|
+
/**
|
|
1786
|
+
* Unique object identifier
|
|
1787
|
+
* @type {string}
|
|
1788
|
+
* @memberof Variant
|
|
1789
|
+
*/
|
|
1790
|
+
'id'?: string;
|
|
1791
|
+
/**
|
|
1792
|
+
* Attributes associated to a variant such as Colour and Size. An attribute can have thumbnail type of `text`, `color`, or `image`. Attribute tags are intended for grouping and filtering, e.g. by a group of colours.
|
|
1793
|
+
* @type {Array<Attribute>}
|
|
1794
|
+
* @memberof Variant
|
|
1795
|
+
*/
|
|
1796
|
+
'attributes': Array<Attribute>;
|
|
1797
|
+
/**
|
|
1798
|
+
*
|
|
880
1799
|
* @type {string}
|
|
881
1800
|
* @memberof Variant
|
|
882
1801
|
*/
|
|
883
1802
|
'sku': string;
|
|
884
1803
|
/**
|
|
885
|
-
* A reference to the resource location
|
|
1804
|
+
* A reference to the resource location
|
|
1805
|
+
* @type {string}
|
|
1806
|
+
* @memberof Variant
|
|
1807
|
+
*/
|
|
1808
|
+
'ref'?: string;
|
|
1809
|
+
/**
|
|
1810
|
+
*
|
|
1811
|
+
* @type {VariantProduct}
|
|
1812
|
+
* @memberof Variant
|
|
1813
|
+
*/
|
|
1814
|
+
'product'?: VariantProduct;
|
|
1815
|
+
/**
|
|
1816
|
+
*
|
|
1817
|
+
* @type {number}
|
|
1818
|
+
* @memberof Variant
|
|
1819
|
+
*/
|
|
1820
|
+
'sortOrder'?: number;
|
|
1821
|
+
/**
|
|
1822
|
+
*
|
|
1823
|
+
* @type {Price}
|
|
1824
|
+
* @memberof Variant
|
|
1825
|
+
*/
|
|
1826
|
+
'retailPrice'?: Price;
|
|
1827
|
+
/**
|
|
1828
|
+
*
|
|
1829
|
+
* @type {Price}
|
|
1830
|
+
* @memberof Variant
|
|
1831
|
+
*/
|
|
1832
|
+
'salePrice'?: Price;
|
|
1833
|
+
/**
|
|
1834
|
+
*
|
|
1835
|
+
* @type {Price}
|
|
1836
|
+
* @memberof Variant
|
|
1837
|
+
*/
|
|
1838
|
+
'price'?: Price;
|
|
1839
|
+
/**
|
|
1840
|
+
*
|
|
1841
|
+
* @type {Stock}
|
|
1842
|
+
* @memberof Variant
|
|
1843
|
+
*/
|
|
1844
|
+
'stock'?: Stock;
|
|
1845
|
+
/**
|
|
1846
|
+
*
|
|
1847
|
+
* @type {string}
|
|
1848
|
+
* @memberof Variant
|
|
1849
|
+
*/
|
|
1850
|
+
'createdAt'?: string;
|
|
1851
|
+
/**
|
|
1852
|
+
*
|
|
1853
|
+
* @type {string}
|
|
1854
|
+
* @memberof Variant
|
|
1855
|
+
*/
|
|
1856
|
+
'updatedAt'?: string;
|
|
1857
|
+
/**
|
|
1858
|
+
*
|
|
1859
|
+
* @type {string}
|
|
1860
|
+
* @memberof Variant
|
|
1861
|
+
*/
|
|
1862
|
+
'publishedAt'?: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* Images
|
|
1865
|
+
* @type {Array<Image>}
|
|
1866
|
+
* @memberof Variant
|
|
1867
|
+
*/
|
|
1868
|
+
'images'?: Array<Image>;
|
|
1869
|
+
/**
|
|
1870
|
+
* Design applications. If not provided, the product will be blank.
|
|
1871
|
+
* @type {Array<Application>}
|
|
1872
|
+
* @memberof Variant
|
|
1873
|
+
*/
|
|
1874
|
+
'applications'?: Array<Application>;
|
|
1875
|
+
/**
|
|
1876
|
+
* Global Trade Item Number
|
|
1877
|
+
* @type {string}
|
|
1878
|
+
* @memberof Variant
|
|
1879
|
+
*/
|
|
1880
|
+
'gtin'?: string | null;
|
|
1881
|
+
/**
|
|
1882
|
+
*
|
|
1883
|
+
* @type {Array<MetaField>}
|
|
1884
|
+
* @memberof Variant
|
|
1885
|
+
*/
|
|
1886
|
+
'metafields'?: Array<MetaField>;
|
|
1887
|
+
}
|
|
1888
|
+
/**
|
|
1889
|
+
*
|
|
1890
|
+
* @export
|
|
1891
|
+
* @interface VariantProduct
|
|
1892
|
+
*/
|
|
1893
|
+
export interface VariantProduct {
|
|
1894
|
+
/**
|
|
1895
|
+
* Unique object identifier
|
|
1896
|
+
* @type {string}
|
|
1897
|
+
* @memberof VariantProduct
|
|
1898
|
+
*/
|
|
1899
|
+
'id'?: string;
|
|
1900
|
+
/**
|
|
1901
|
+
* A reference to the resource location
|
|
1902
|
+
* @type {string}
|
|
1903
|
+
* @memberof VariantProduct
|
|
1904
|
+
*/
|
|
1905
|
+
'ref'?: string;
|
|
1906
|
+
}
|
|
1907
|
+
/**
|
|
1908
|
+
* Video object
|
|
1909
|
+
* @export
|
|
1910
|
+
* @interface Video
|
|
1911
|
+
*/
|
|
1912
|
+
export interface Video {
|
|
1913
|
+
/**
|
|
1914
|
+
* Unique object identifier
|
|
1915
|
+
* @type {string}
|
|
1916
|
+
* @memberof Video
|
|
1917
|
+
*/
|
|
1918
|
+
'id'?: string;
|
|
1919
|
+
/**
|
|
1920
|
+
*
|
|
886
1921
|
* @type {string}
|
|
887
|
-
* @memberof
|
|
1922
|
+
* @memberof Video
|
|
888
1923
|
*/
|
|
889
|
-
'
|
|
1924
|
+
'src'?: string;
|
|
890
1925
|
/**
|
|
891
1926
|
*
|
|
892
|
-
* @type {
|
|
893
|
-
* @memberof
|
|
1927
|
+
* @type {string}
|
|
1928
|
+
* @memberof Video
|
|
894
1929
|
*/
|
|
895
|
-
'
|
|
1930
|
+
'alt'?: string;
|
|
896
1931
|
/**
|
|
897
1932
|
*
|
|
898
1933
|
* @type {number}
|
|
899
|
-
* @memberof
|
|
1934
|
+
* @memberof Video
|
|
900
1935
|
*/
|
|
901
1936
|
'sortOrder'?: number;
|
|
902
1937
|
/**
|
|
903
1938
|
*
|
|
904
|
-
* @type {
|
|
905
|
-
* @memberof
|
|
1939
|
+
* @type {string}
|
|
1940
|
+
* @memberof Video
|
|
906
1941
|
*/
|
|
907
|
-
'
|
|
1942
|
+
'createdAt'?: string;
|
|
908
1943
|
/**
|
|
909
1944
|
*
|
|
910
|
-
* @type {
|
|
911
|
-
* @memberof
|
|
1945
|
+
* @type {string}
|
|
1946
|
+
* @memberof Video
|
|
912
1947
|
*/
|
|
913
|
-
'
|
|
1948
|
+
'updatedAt'?: string;
|
|
1949
|
+
}
|
|
1950
|
+
/**
|
|
1951
|
+
* BlogsApi - axios parameter creator
|
|
1952
|
+
* @export
|
|
1953
|
+
*/
|
|
1954
|
+
export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
914
1955
|
/**
|
|
915
1956
|
*
|
|
916
|
-
* @
|
|
917
|
-
* @
|
|
1957
|
+
* @summary List website blog posts
|
|
1958
|
+
* @param {string} project What project it is
|
|
1959
|
+
* @param {number} [pageToken] Page reference token
|
|
1960
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1961
|
+
* @param {string} [search] Search term to filter results
|
|
1962
|
+
* @param {*} [options] Override http request option.
|
|
1963
|
+
* @throws {RequiredError}
|
|
918
1964
|
*/
|
|
919
|
-
|
|
1965
|
+
listBlogs: (project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
920
1966
|
/**
|
|
921
1967
|
*
|
|
922
|
-
* @
|
|
923
|
-
* @
|
|
1968
|
+
* @summary Update website blog post
|
|
1969
|
+
* @param {string} project What project it is
|
|
1970
|
+
* @param {string} blogId Blog\'s unique identifier
|
|
1971
|
+
* @param {UpdateBlogRequest} [updateBlogRequest]
|
|
1972
|
+
* @param {*} [options] Override http request option.
|
|
1973
|
+
* @throws {RequiredError}
|
|
924
1974
|
*/
|
|
925
|
-
|
|
1975
|
+
updateBlog: (project: string, blogId: string, updateBlogRequest?: UpdateBlogRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1976
|
+
/**
|
|
1977
|
+
*
|
|
1978
|
+
* @summary Update website blog posts
|
|
1979
|
+
* @param {string} project What project it is
|
|
1980
|
+
* @param {number} [pageToken] Page reference token
|
|
1981
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1982
|
+
* @param {string} [search] Search term to filter results
|
|
1983
|
+
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1984
|
+
* @param {*} [options] Override http request option.
|
|
1985
|
+
* @throws {RequiredError}
|
|
1986
|
+
*/
|
|
1987
|
+
updateBlogs: (project: string, pageToken?: number, pageSize?: number, search?: string, updateBlogsRequest?: UpdateBlogsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1988
|
+
};
|
|
1989
|
+
/**
|
|
1990
|
+
* BlogsApi - functional programming interface
|
|
1991
|
+
* @export
|
|
1992
|
+
*/
|
|
1993
|
+
export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
1994
|
+
/**
|
|
1995
|
+
*
|
|
1996
|
+
* @summary List website blog posts
|
|
1997
|
+
* @param {string} project What project it is
|
|
1998
|
+
* @param {number} [pageToken] Page reference token
|
|
1999
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2000
|
+
* @param {string} [search] Search term to filter results
|
|
2001
|
+
* @param {*} [options] Override http request option.
|
|
2002
|
+
* @throws {RequiredError}
|
|
2003
|
+
*/
|
|
2004
|
+
listBlogs(project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BlogsResponse>>;
|
|
2005
|
+
/**
|
|
2006
|
+
*
|
|
2007
|
+
* @summary Update website blog post
|
|
2008
|
+
* @param {string} project What project it is
|
|
2009
|
+
* @param {string} blogId Blog\'s unique identifier
|
|
2010
|
+
* @param {UpdateBlogRequest} [updateBlogRequest]
|
|
2011
|
+
* @param {*} [options] Override http request option.
|
|
2012
|
+
* @throws {RequiredError}
|
|
2013
|
+
*/
|
|
2014
|
+
updateBlog(project: string, blogId: string, updateBlogRequest?: UpdateBlogRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Blog>>;
|
|
2015
|
+
/**
|
|
2016
|
+
*
|
|
2017
|
+
* @summary Update website blog posts
|
|
2018
|
+
* @param {string} project What project it is
|
|
2019
|
+
* @param {number} [pageToken] Page reference token
|
|
2020
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2021
|
+
* @param {string} [search] Search term to filter results
|
|
2022
|
+
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
2023
|
+
* @param {*} [options] Override http request option.
|
|
2024
|
+
* @throws {RequiredError}
|
|
2025
|
+
*/
|
|
2026
|
+
updateBlogs(project: string, pageToken?: number, pageSize?: number, search?: string, updateBlogsRequest?: UpdateBlogsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BlogsResponse>>;
|
|
2027
|
+
};
|
|
2028
|
+
/**
|
|
2029
|
+
* BlogsApi - factory interface
|
|
2030
|
+
* @export
|
|
2031
|
+
*/
|
|
2032
|
+
export declare const BlogsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2033
|
+
/**
|
|
2034
|
+
*
|
|
2035
|
+
* @summary List website blog posts
|
|
2036
|
+
* @param {BlogsApiListBlogsRequest} requestParameters Request parameters.
|
|
2037
|
+
* @param {*} [options] Override http request option.
|
|
2038
|
+
* @throws {RequiredError}
|
|
2039
|
+
*/
|
|
2040
|
+
listBlogs(requestParameters: BlogsApiListBlogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BlogsResponse>;
|
|
2041
|
+
/**
|
|
2042
|
+
*
|
|
2043
|
+
* @summary Update website blog post
|
|
2044
|
+
* @param {BlogsApiUpdateBlogRequest} requestParameters Request parameters.
|
|
2045
|
+
* @param {*} [options] Override http request option.
|
|
2046
|
+
* @throws {RequiredError}
|
|
2047
|
+
*/
|
|
2048
|
+
updateBlog(requestParameters: BlogsApiUpdateBlogRequest, options?: RawAxiosRequestConfig): AxiosPromise<Blog>;
|
|
926
2049
|
/**
|
|
927
2050
|
*
|
|
2051
|
+
* @summary Update website blog posts
|
|
2052
|
+
* @param {BlogsApiUpdateBlogsRequest} requestParameters Request parameters.
|
|
2053
|
+
* @param {*} [options] Override http request option.
|
|
2054
|
+
* @throws {RequiredError}
|
|
2055
|
+
*/
|
|
2056
|
+
updateBlogs(requestParameters: BlogsApiUpdateBlogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BlogsResponse>;
|
|
2057
|
+
};
|
|
2058
|
+
/**
|
|
2059
|
+
* Request parameters for listBlogs operation in BlogsApi.
|
|
2060
|
+
* @export
|
|
2061
|
+
* @interface BlogsApiListBlogsRequest
|
|
2062
|
+
*/
|
|
2063
|
+
export interface BlogsApiListBlogsRequest {
|
|
2064
|
+
/**
|
|
2065
|
+
* What project it is
|
|
928
2066
|
* @type {string}
|
|
929
|
-
* @memberof
|
|
2067
|
+
* @memberof BlogsApiListBlogs
|
|
930
2068
|
*/
|
|
931
|
-
|
|
2069
|
+
readonly project: string;
|
|
2070
|
+
/**
|
|
2071
|
+
* Page reference token
|
|
2072
|
+
* @type {number}
|
|
2073
|
+
* @memberof BlogsApiListBlogs
|
|
2074
|
+
*/
|
|
2075
|
+
readonly pageToken?: number;
|
|
2076
|
+
/**
|
|
2077
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2078
|
+
* @type {number}
|
|
2079
|
+
* @memberof BlogsApiListBlogs
|
|
2080
|
+
*/
|
|
2081
|
+
readonly pageSize?: number;
|
|
2082
|
+
/**
|
|
2083
|
+
* Search term to filter results
|
|
2084
|
+
* @type {string}
|
|
2085
|
+
* @memberof BlogsApiListBlogs
|
|
2086
|
+
*/
|
|
2087
|
+
readonly search?: string;
|
|
2088
|
+
}
|
|
2089
|
+
/**
|
|
2090
|
+
* Request parameters for updateBlog operation in BlogsApi.
|
|
2091
|
+
* @export
|
|
2092
|
+
* @interface BlogsApiUpdateBlogRequest
|
|
2093
|
+
*/
|
|
2094
|
+
export interface BlogsApiUpdateBlogRequest {
|
|
2095
|
+
/**
|
|
2096
|
+
* What project it is
|
|
2097
|
+
* @type {string}
|
|
2098
|
+
* @memberof BlogsApiUpdateBlog
|
|
2099
|
+
*/
|
|
2100
|
+
readonly project: string;
|
|
2101
|
+
/**
|
|
2102
|
+
* Blog\'s unique identifier
|
|
2103
|
+
* @type {string}
|
|
2104
|
+
* @memberof BlogsApiUpdateBlog
|
|
2105
|
+
*/
|
|
2106
|
+
readonly blogId: string;
|
|
932
2107
|
/**
|
|
933
2108
|
*
|
|
2109
|
+
* @type {UpdateBlogRequest}
|
|
2110
|
+
* @memberof BlogsApiUpdateBlog
|
|
2111
|
+
*/
|
|
2112
|
+
readonly updateBlogRequest?: UpdateBlogRequest;
|
|
2113
|
+
}
|
|
2114
|
+
/**
|
|
2115
|
+
* Request parameters for updateBlogs operation in BlogsApi.
|
|
2116
|
+
* @export
|
|
2117
|
+
* @interface BlogsApiUpdateBlogsRequest
|
|
2118
|
+
*/
|
|
2119
|
+
export interface BlogsApiUpdateBlogsRequest {
|
|
2120
|
+
/**
|
|
2121
|
+
* What project it is
|
|
934
2122
|
* @type {string}
|
|
935
|
-
* @memberof
|
|
2123
|
+
* @memberof BlogsApiUpdateBlogs
|
|
2124
|
+
*/
|
|
2125
|
+
readonly project: string;
|
|
2126
|
+
/**
|
|
2127
|
+
* Page reference token
|
|
2128
|
+
* @type {number}
|
|
2129
|
+
* @memberof BlogsApiUpdateBlogs
|
|
2130
|
+
*/
|
|
2131
|
+
readonly pageToken?: number;
|
|
2132
|
+
/**
|
|
2133
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2134
|
+
* @type {number}
|
|
2135
|
+
* @memberof BlogsApiUpdateBlogs
|
|
2136
|
+
*/
|
|
2137
|
+
readonly pageSize?: number;
|
|
2138
|
+
/**
|
|
2139
|
+
* Search term to filter results
|
|
2140
|
+
* @type {string}
|
|
2141
|
+
* @memberof BlogsApiUpdateBlogs
|
|
2142
|
+
*/
|
|
2143
|
+
readonly search?: string;
|
|
2144
|
+
/**
|
|
2145
|
+
* Update blogs in bulk.
|
|
2146
|
+
* @type {UpdateBlogsRequest}
|
|
2147
|
+
* @memberof BlogsApiUpdateBlogs
|
|
2148
|
+
*/
|
|
2149
|
+
readonly updateBlogsRequest?: UpdateBlogsRequest;
|
|
2150
|
+
}
|
|
2151
|
+
/**
|
|
2152
|
+
* BlogsApi - object-oriented interface
|
|
2153
|
+
* @export
|
|
2154
|
+
* @class BlogsApi
|
|
2155
|
+
* @extends {BaseAPI}
|
|
2156
|
+
*/
|
|
2157
|
+
export declare class BlogsApi extends BaseAPI {
|
|
2158
|
+
/**
|
|
2159
|
+
*
|
|
2160
|
+
* @summary List website blog posts
|
|
2161
|
+
* @param {BlogsApiListBlogsRequest} requestParameters Request parameters.
|
|
2162
|
+
* @param {*} [options] Override http request option.
|
|
2163
|
+
* @throws {RequiredError}
|
|
2164
|
+
* @memberof BlogsApi
|
|
2165
|
+
*/
|
|
2166
|
+
listBlogs(requestParameters: BlogsApiListBlogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BlogsResponse, any>>;
|
|
2167
|
+
/**
|
|
2168
|
+
*
|
|
2169
|
+
* @summary Update website blog post
|
|
2170
|
+
* @param {BlogsApiUpdateBlogRequest} requestParameters Request parameters.
|
|
2171
|
+
* @param {*} [options] Override http request option.
|
|
2172
|
+
* @throws {RequiredError}
|
|
2173
|
+
* @memberof BlogsApi
|
|
2174
|
+
*/
|
|
2175
|
+
updateBlog(requestParameters: BlogsApiUpdateBlogRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Blog, any>>;
|
|
2176
|
+
/**
|
|
2177
|
+
*
|
|
2178
|
+
* @summary Update website blog posts
|
|
2179
|
+
* @param {BlogsApiUpdateBlogsRequest} requestParameters Request parameters.
|
|
2180
|
+
* @param {*} [options] Override http request option.
|
|
2181
|
+
* @throws {RequiredError}
|
|
2182
|
+
* @memberof BlogsApi
|
|
2183
|
+
*/
|
|
2184
|
+
updateBlogs(requestParameters: BlogsApiUpdateBlogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BlogsResponse, any>>;
|
|
2185
|
+
}
|
|
2186
|
+
/**
|
|
2187
|
+
* CollectionsApi - axios parameter creator
|
|
2188
|
+
* @export
|
|
2189
|
+
*/
|
|
2190
|
+
export declare const CollectionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2191
|
+
/**
|
|
2192
|
+
*
|
|
2193
|
+
* @summary List website collections
|
|
2194
|
+
* @param {string} project What project it is
|
|
2195
|
+
* @param {number} [pageToken] Page reference token
|
|
2196
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2197
|
+
* @param {string} [search] Search term to filter results
|
|
2198
|
+
* @param {*} [options] Override http request option.
|
|
2199
|
+
* @throws {RequiredError}
|
|
2200
|
+
*/
|
|
2201
|
+
listCollections: (project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2202
|
+
/**
|
|
2203
|
+
*
|
|
2204
|
+
* @summary Update website collection
|
|
2205
|
+
* @param {string} project What project it is
|
|
2206
|
+
* @param {string} collectionId Collection\'s unique identifier
|
|
2207
|
+
* @param {UpdateCollectionRequest} [updateCollectionRequest]
|
|
2208
|
+
* @param {*} [options] Override http request option.
|
|
2209
|
+
* @throws {RequiredError}
|
|
2210
|
+
*/
|
|
2211
|
+
updateCollection: (project: string, collectionId: string, updateCollectionRequest?: UpdateCollectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2212
|
+
/**
|
|
2213
|
+
*
|
|
2214
|
+
* @summary Update website collections
|
|
2215
|
+
* @param {string} project What project it is
|
|
2216
|
+
* @param {number} [pageToken] Page reference token
|
|
2217
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2218
|
+
* @param {string} [search] Search term to filter results
|
|
2219
|
+
* @param {UpdateCollectionsRequest} [updateCollectionsRequest] Update collections in bulk.
|
|
2220
|
+
* @param {*} [options] Override http request option.
|
|
2221
|
+
* @throws {RequiredError}
|
|
2222
|
+
*/
|
|
2223
|
+
updateCollections: (project: string, pageToken?: number, pageSize?: number, search?: string, updateCollectionsRequest?: UpdateCollectionsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2224
|
+
};
|
|
2225
|
+
/**
|
|
2226
|
+
* CollectionsApi - functional programming interface
|
|
2227
|
+
* @export
|
|
2228
|
+
*/
|
|
2229
|
+
export declare const CollectionsApiFp: (configuration?: Configuration) => {
|
|
2230
|
+
/**
|
|
2231
|
+
*
|
|
2232
|
+
* @summary List website collections
|
|
2233
|
+
* @param {string} project What project it is
|
|
2234
|
+
* @param {number} [pageToken] Page reference token
|
|
2235
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2236
|
+
* @param {string} [search] Search term to filter results
|
|
2237
|
+
* @param {*} [options] Override http request option.
|
|
2238
|
+
* @throws {RequiredError}
|
|
2239
|
+
*/
|
|
2240
|
+
listCollections(project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionsResponse>>;
|
|
2241
|
+
/**
|
|
2242
|
+
*
|
|
2243
|
+
* @summary Update website collection
|
|
2244
|
+
* @param {string} project What project it is
|
|
2245
|
+
* @param {string} collectionId Collection\'s unique identifier
|
|
2246
|
+
* @param {UpdateCollectionRequest} [updateCollectionRequest]
|
|
2247
|
+
* @param {*} [options] Override http request option.
|
|
2248
|
+
* @throws {RequiredError}
|
|
2249
|
+
*/
|
|
2250
|
+
updateCollection(project: string, collectionId: string, updateCollectionRequest?: UpdateCollectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Collection>>;
|
|
2251
|
+
/**
|
|
2252
|
+
*
|
|
2253
|
+
* @summary Update website collections
|
|
2254
|
+
* @param {string} project What project it is
|
|
2255
|
+
* @param {number} [pageToken] Page reference token
|
|
2256
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2257
|
+
* @param {string} [search] Search term to filter results
|
|
2258
|
+
* @param {UpdateCollectionsRequest} [updateCollectionsRequest] Update collections in bulk.
|
|
2259
|
+
* @param {*} [options] Override http request option.
|
|
2260
|
+
* @throws {RequiredError}
|
|
2261
|
+
*/
|
|
2262
|
+
updateCollections(project: string, pageToken?: number, pageSize?: number, search?: string, updateCollectionsRequest?: UpdateCollectionsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionsResponse>>;
|
|
2263
|
+
};
|
|
2264
|
+
/**
|
|
2265
|
+
* CollectionsApi - factory interface
|
|
2266
|
+
* @export
|
|
2267
|
+
*/
|
|
2268
|
+
export declare const CollectionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2269
|
+
/**
|
|
2270
|
+
*
|
|
2271
|
+
* @summary List website collections
|
|
2272
|
+
* @param {CollectionsApiListCollectionsRequest} requestParameters Request parameters.
|
|
2273
|
+
* @param {*} [options] Override http request option.
|
|
2274
|
+
* @throws {RequiredError}
|
|
2275
|
+
*/
|
|
2276
|
+
listCollections(requestParameters: CollectionsApiListCollectionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<CollectionsResponse>;
|
|
2277
|
+
/**
|
|
2278
|
+
*
|
|
2279
|
+
* @summary Update website collection
|
|
2280
|
+
* @param {CollectionsApiUpdateCollectionRequest} requestParameters Request parameters.
|
|
2281
|
+
* @param {*} [options] Override http request option.
|
|
2282
|
+
* @throws {RequiredError}
|
|
2283
|
+
*/
|
|
2284
|
+
updateCollection(requestParameters: CollectionsApiUpdateCollectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<Collection>;
|
|
2285
|
+
/**
|
|
2286
|
+
*
|
|
2287
|
+
* @summary Update website collections
|
|
2288
|
+
* @param {CollectionsApiUpdateCollectionsRequest} requestParameters Request parameters.
|
|
2289
|
+
* @param {*} [options] Override http request option.
|
|
2290
|
+
* @throws {RequiredError}
|
|
936
2291
|
*/
|
|
937
|
-
|
|
2292
|
+
updateCollections(requestParameters: CollectionsApiUpdateCollectionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<CollectionsResponse>;
|
|
2293
|
+
};
|
|
2294
|
+
/**
|
|
2295
|
+
* Request parameters for listCollections operation in CollectionsApi.
|
|
2296
|
+
* @export
|
|
2297
|
+
* @interface CollectionsApiListCollectionsRequest
|
|
2298
|
+
*/
|
|
2299
|
+
export interface CollectionsApiListCollectionsRequest {
|
|
938
2300
|
/**
|
|
939
|
-
*
|
|
2301
|
+
* What project it is
|
|
940
2302
|
* @type {string}
|
|
941
|
-
* @memberof
|
|
2303
|
+
* @memberof CollectionsApiListCollections
|
|
942
2304
|
*/
|
|
943
|
-
|
|
2305
|
+
readonly project: string;
|
|
944
2306
|
/**
|
|
945
|
-
*
|
|
946
|
-
* @type {
|
|
947
|
-
* @memberof
|
|
2307
|
+
* Page reference token
|
|
2308
|
+
* @type {number}
|
|
2309
|
+
* @memberof CollectionsApiListCollections
|
|
948
2310
|
*/
|
|
949
|
-
|
|
2311
|
+
readonly pageToken?: number;
|
|
950
2312
|
/**
|
|
951
|
-
*
|
|
952
|
-
* @type {
|
|
953
|
-
* @memberof
|
|
2313
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2314
|
+
* @type {number}
|
|
2315
|
+
* @memberof CollectionsApiListCollections
|
|
954
2316
|
*/
|
|
955
|
-
|
|
2317
|
+
readonly pageSize?: number;
|
|
956
2318
|
/**
|
|
957
|
-
*
|
|
2319
|
+
* Search term to filter results
|
|
958
2320
|
* @type {string}
|
|
959
|
-
* @memberof
|
|
960
|
-
*/
|
|
961
|
-
'gtin'?: string | null;
|
|
962
|
-
/**
|
|
963
|
-
*
|
|
964
|
-
* @type {Array<MetaField>}
|
|
965
|
-
* @memberof Variant
|
|
2321
|
+
* @memberof CollectionsApiListCollections
|
|
966
2322
|
*/
|
|
967
|
-
|
|
2323
|
+
readonly search?: string;
|
|
968
2324
|
}
|
|
969
2325
|
/**
|
|
970
|
-
*
|
|
2326
|
+
* Request parameters for updateCollection operation in CollectionsApi.
|
|
971
2327
|
* @export
|
|
972
|
-
* @interface
|
|
2328
|
+
* @interface CollectionsApiUpdateCollectionRequest
|
|
973
2329
|
*/
|
|
974
|
-
export interface
|
|
2330
|
+
export interface CollectionsApiUpdateCollectionRequest {
|
|
975
2331
|
/**
|
|
976
|
-
*
|
|
2332
|
+
* What project it is
|
|
977
2333
|
* @type {string}
|
|
978
|
-
* @memberof
|
|
2334
|
+
* @memberof CollectionsApiUpdateCollection
|
|
979
2335
|
*/
|
|
980
|
-
|
|
2336
|
+
readonly project: string;
|
|
981
2337
|
/**
|
|
982
|
-
*
|
|
2338
|
+
* Collection\'s unique identifier
|
|
983
2339
|
* @type {string}
|
|
984
|
-
* @memberof
|
|
2340
|
+
* @memberof CollectionsApiUpdateCollection
|
|
985
2341
|
*/
|
|
986
|
-
|
|
2342
|
+
readonly collectionId: string;
|
|
2343
|
+
/**
|
|
2344
|
+
*
|
|
2345
|
+
* @type {UpdateCollectionRequest}
|
|
2346
|
+
* @memberof CollectionsApiUpdateCollection
|
|
2347
|
+
*/
|
|
2348
|
+
readonly updateCollectionRequest?: UpdateCollectionRequest;
|
|
987
2349
|
}
|
|
988
2350
|
/**
|
|
989
|
-
*
|
|
2351
|
+
* Request parameters for updateCollections operation in CollectionsApi.
|
|
990
2352
|
* @export
|
|
991
|
-
* @interface
|
|
2353
|
+
* @interface CollectionsApiUpdateCollectionsRequest
|
|
992
2354
|
*/
|
|
993
|
-
export interface
|
|
2355
|
+
export interface CollectionsApiUpdateCollectionsRequest {
|
|
994
2356
|
/**
|
|
995
|
-
*
|
|
2357
|
+
* What project it is
|
|
996
2358
|
* @type {string}
|
|
997
|
-
* @memberof
|
|
2359
|
+
* @memberof CollectionsApiUpdateCollections
|
|
998
2360
|
*/
|
|
999
|
-
|
|
2361
|
+
readonly project: string;
|
|
1000
2362
|
/**
|
|
1001
|
-
*
|
|
1002
|
-
* @type {
|
|
1003
|
-
* @memberof
|
|
2363
|
+
* Page reference token
|
|
2364
|
+
* @type {number}
|
|
2365
|
+
* @memberof CollectionsApiUpdateCollections
|
|
1004
2366
|
*/
|
|
1005
|
-
|
|
2367
|
+
readonly pageToken?: number;
|
|
1006
2368
|
/**
|
|
1007
|
-
*
|
|
2369
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2370
|
+
* @type {number}
|
|
2371
|
+
* @memberof CollectionsApiUpdateCollections
|
|
2372
|
+
*/
|
|
2373
|
+
readonly pageSize?: number;
|
|
2374
|
+
/**
|
|
2375
|
+
* Search term to filter results
|
|
1008
2376
|
* @type {string}
|
|
1009
|
-
* @memberof
|
|
2377
|
+
* @memberof CollectionsApiUpdateCollections
|
|
1010
2378
|
*/
|
|
1011
|
-
|
|
2379
|
+
readonly search?: string;
|
|
2380
|
+
/**
|
|
2381
|
+
* Update collections in bulk.
|
|
2382
|
+
* @type {UpdateCollectionsRequest}
|
|
2383
|
+
* @memberof CollectionsApiUpdateCollections
|
|
2384
|
+
*/
|
|
2385
|
+
readonly updateCollectionsRequest?: UpdateCollectionsRequest;
|
|
2386
|
+
}
|
|
2387
|
+
/**
|
|
2388
|
+
* CollectionsApi - object-oriented interface
|
|
2389
|
+
* @export
|
|
2390
|
+
* @class CollectionsApi
|
|
2391
|
+
* @extends {BaseAPI}
|
|
2392
|
+
*/
|
|
2393
|
+
export declare class CollectionsApi extends BaseAPI {
|
|
1012
2394
|
/**
|
|
1013
2395
|
*
|
|
1014
|
-
* @
|
|
1015
|
-
* @
|
|
2396
|
+
* @summary List website collections
|
|
2397
|
+
* @param {CollectionsApiListCollectionsRequest} requestParameters Request parameters.
|
|
2398
|
+
* @param {*} [options] Override http request option.
|
|
2399
|
+
* @throws {RequiredError}
|
|
2400
|
+
* @memberof CollectionsApi
|
|
1016
2401
|
*/
|
|
1017
|
-
|
|
2402
|
+
listCollections(requestParameters: CollectionsApiListCollectionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionsResponse, any>>;
|
|
1018
2403
|
/**
|
|
1019
2404
|
*
|
|
1020
|
-
* @
|
|
1021
|
-
* @
|
|
2405
|
+
* @summary Update website collection
|
|
2406
|
+
* @param {CollectionsApiUpdateCollectionRequest} requestParameters Request parameters.
|
|
2407
|
+
* @param {*} [options] Override http request option.
|
|
2408
|
+
* @throws {RequiredError}
|
|
2409
|
+
* @memberof CollectionsApi
|
|
1022
2410
|
*/
|
|
1023
|
-
|
|
2411
|
+
updateCollection(requestParameters: CollectionsApiUpdateCollectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Collection, any>>;
|
|
1024
2412
|
/**
|
|
1025
2413
|
*
|
|
1026
|
-
* @
|
|
1027
|
-
* @
|
|
2414
|
+
* @summary Update website collections
|
|
2415
|
+
* @param {CollectionsApiUpdateCollectionsRequest} requestParameters Request parameters.
|
|
2416
|
+
* @param {*} [options] Override http request option.
|
|
2417
|
+
* @throws {RequiredError}
|
|
2418
|
+
* @memberof CollectionsApi
|
|
1028
2419
|
*/
|
|
1029
|
-
|
|
2420
|
+
updateCollections(requestParameters: CollectionsApiUpdateCollectionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionsResponse, any>>;
|
|
1030
2421
|
}
|
|
1031
2422
|
/**
|
|
1032
2423
|
* CrossSellApi - axios parameter creator
|
|
@@ -1296,6 +2687,242 @@ export declare class MenuApi extends BaseAPI {
|
|
|
1296
2687
|
*/
|
|
1297
2688
|
updateMenu(requestParameters: MenuApiUpdateMenuRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Menu, any>>;
|
|
1298
2689
|
}
|
|
2690
|
+
/**
|
|
2691
|
+
* PagesApi - axios parameter creator
|
|
2692
|
+
* @export
|
|
2693
|
+
*/
|
|
2694
|
+
export declare const PagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2695
|
+
/**
|
|
2696
|
+
*
|
|
2697
|
+
* @summary List website pages
|
|
2698
|
+
* @param {string} project What project it is
|
|
2699
|
+
* @param {number} [pageToken] Page reference token
|
|
2700
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2701
|
+
* @param {string} [search] Search term to filter results
|
|
2702
|
+
* @param {*} [options] Override http request option.
|
|
2703
|
+
* @throws {RequiredError}
|
|
2704
|
+
*/
|
|
2705
|
+
listPages: (project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2706
|
+
/**
|
|
2707
|
+
*
|
|
2708
|
+
* @summary Update website page
|
|
2709
|
+
* @param {string} project What project it is
|
|
2710
|
+
* @param {string} pageId Page\'s unique identifier
|
|
2711
|
+
* @param {UpdatePageRequest} [updatePageRequest]
|
|
2712
|
+
* @param {*} [options] Override http request option.
|
|
2713
|
+
* @throws {RequiredError}
|
|
2714
|
+
*/
|
|
2715
|
+
updatePage: (project: string, pageId: string, updatePageRequest?: UpdatePageRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2716
|
+
/**
|
|
2717
|
+
*
|
|
2718
|
+
* @summary Update website pages
|
|
2719
|
+
* @param {string} project What project it is
|
|
2720
|
+
* @param {number} [pageToken] Page reference token
|
|
2721
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2722
|
+
* @param {string} [search] Search term to filter results
|
|
2723
|
+
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2724
|
+
* @param {*} [options] Override http request option.
|
|
2725
|
+
* @throws {RequiredError}
|
|
2726
|
+
*/
|
|
2727
|
+
updatePages: (project: string, pageToken?: number, pageSize?: number, search?: string, updatePagesRequest?: UpdatePagesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2728
|
+
};
|
|
2729
|
+
/**
|
|
2730
|
+
* PagesApi - functional programming interface
|
|
2731
|
+
* @export
|
|
2732
|
+
*/
|
|
2733
|
+
export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
2734
|
+
/**
|
|
2735
|
+
*
|
|
2736
|
+
* @summary List website pages
|
|
2737
|
+
* @param {string} project What project it is
|
|
2738
|
+
* @param {number} [pageToken] Page reference token
|
|
2739
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2740
|
+
* @param {string} [search] Search term to filter results
|
|
2741
|
+
* @param {*} [options] Override http request option.
|
|
2742
|
+
* @throws {RequiredError}
|
|
2743
|
+
*/
|
|
2744
|
+
listPages(project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PagesResponse>>;
|
|
2745
|
+
/**
|
|
2746
|
+
*
|
|
2747
|
+
* @summary Update website page
|
|
2748
|
+
* @param {string} project What project it is
|
|
2749
|
+
* @param {string} pageId Page\'s unique identifier
|
|
2750
|
+
* @param {UpdatePageRequest} [updatePageRequest]
|
|
2751
|
+
* @param {*} [options] Override http request option.
|
|
2752
|
+
* @throws {RequiredError}
|
|
2753
|
+
*/
|
|
2754
|
+
updatePage(project: string, pageId: string, updatePageRequest?: UpdatePageRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Page>>;
|
|
2755
|
+
/**
|
|
2756
|
+
*
|
|
2757
|
+
* @summary Update website pages
|
|
2758
|
+
* @param {string} project What project it is
|
|
2759
|
+
* @param {number} [pageToken] Page reference token
|
|
2760
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2761
|
+
* @param {string} [search] Search term to filter results
|
|
2762
|
+
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2763
|
+
* @param {*} [options] Override http request option.
|
|
2764
|
+
* @throws {RequiredError}
|
|
2765
|
+
*/
|
|
2766
|
+
updatePages(project: string, pageToken?: number, pageSize?: number, search?: string, updatePagesRequest?: UpdatePagesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PagesResponse>>;
|
|
2767
|
+
};
|
|
2768
|
+
/**
|
|
2769
|
+
* PagesApi - factory interface
|
|
2770
|
+
* @export
|
|
2771
|
+
*/
|
|
2772
|
+
export declare const PagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2773
|
+
/**
|
|
2774
|
+
*
|
|
2775
|
+
* @summary List website pages
|
|
2776
|
+
* @param {PagesApiListPagesRequest} requestParameters Request parameters.
|
|
2777
|
+
* @param {*} [options] Override http request option.
|
|
2778
|
+
* @throws {RequiredError}
|
|
2779
|
+
*/
|
|
2780
|
+
listPages(requestParameters: PagesApiListPagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<PagesResponse>;
|
|
2781
|
+
/**
|
|
2782
|
+
*
|
|
2783
|
+
* @summary Update website page
|
|
2784
|
+
* @param {PagesApiUpdatePageRequest} requestParameters Request parameters.
|
|
2785
|
+
* @param {*} [options] Override http request option.
|
|
2786
|
+
* @throws {RequiredError}
|
|
2787
|
+
*/
|
|
2788
|
+
updatePage(requestParameters: PagesApiUpdatePageRequest, options?: RawAxiosRequestConfig): AxiosPromise<Page>;
|
|
2789
|
+
/**
|
|
2790
|
+
*
|
|
2791
|
+
* @summary Update website pages
|
|
2792
|
+
* @param {PagesApiUpdatePagesRequest} requestParameters Request parameters.
|
|
2793
|
+
* @param {*} [options] Override http request option.
|
|
2794
|
+
* @throws {RequiredError}
|
|
2795
|
+
*/
|
|
2796
|
+
updatePages(requestParameters: PagesApiUpdatePagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<PagesResponse>;
|
|
2797
|
+
};
|
|
2798
|
+
/**
|
|
2799
|
+
* Request parameters for listPages operation in PagesApi.
|
|
2800
|
+
* @export
|
|
2801
|
+
* @interface PagesApiListPagesRequest
|
|
2802
|
+
*/
|
|
2803
|
+
export interface PagesApiListPagesRequest {
|
|
2804
|
+
/**
|
|
2805
|
+
* What project it is
|
|
2806
|
+
* @type {string}
|
|
2807
|
+
* @memberof PagesApiListPages
|
|
2808
|
+
*/
|
|
2809
|
+
readonly project: string;
|
|
2810
|
+
/**
|
|
2811
|
+
* Page reference token
|
|
2812
|
+
* @type {number}
|
|
2813
|
+
* @memberof PagesApiListPages
|
|
2814
|
+
*/
|
|
2815
|
+
readonly pageToken?: number;
|
|
2816
|
+
/**
|
|
2817
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2818
|
+
* @type {number}
|
|
2819
|
+
* @memberof PagesApiListPages
|
|
2820
|
+
*/
|
|
2821
|
+
readonly pageSize?: number;
|
|
2822
|
+
/**
|
|
2823
|
+
* Search term to filter results
|
|
2824
|
+
* @type {string}
|
|
2825
|
+
* @memberof PagesApiListPages
|
|
2826
|
+
*/
|
|
2827
|
+
readonly search?: string;
|
|
2828
|
+
}
|
|
2829
|
+
/**
|
|
2830
|
+
* Request parameters for updatePage operation in PagesApi.
|
|
2831
|
+
* @export
|
|
2832
|
+
* @interface PagesApiUpdatePageRequest
|
|
2833
|
+
*/
|
|
2834
|
+
export interface PagesApiUpdatePageRequest {
|
|
2835
|
+
/**
|
|
2836
|
+
* What project it is
|
|
2837
|
+
* @type {string}
|
|
2838
|
+
* @memberof PagesApiUpdatePage
|
|
2839
|
+
*/
|
|
2840
|
+
readonly project: string;
|
|
2841
|
+
/**
|
|
2842
|
+
* Page\'s unique identifier
|
|
2843
|
+
* @type {string}
|
|
2844
|
+
* @memberof PagesApiUpdatePage
|
|
2845
|
+
*/
|
|
2846
|
+
readonly pageId: string;
|
|
2847
|
+
/**
|
|
2848
|
+
*
|
|
2849
|
+
* @type {UpdatePageRequest}
|
|
2850
|
+
* @memberof PagesApiUpdatePage
|
|
2851
|
+
*/
|
|
2852
|
+
readonly updatePageRequest?: UpdatePageRequest;
|
|
2853
|
+
}
|
|
2854
|
+
/**
|
|
2855
|
+
* Request parameters for updatePages operation in PagesApi.
|
|
2856
|
+
* @export
|
|
2857
|
+
* @interface PagesApiUpdatePagesRequest
|
|
2858
|
+
*/
|
|
2859
|
+
export interface PagesApiUpdatePagesRequest {
|
|
2860
|
+
/**
|
|
2861
|
+
* What project it is
|
|
2862
|
+
* @type {string}
|
|
2863
|
+
* @memberof PagesApiUpdatePages
|
|
2864
|
+
*/
|
|
2865
|
+
readonly project: string;
|
|
2866
|
+
/**
|
|
2867
|
+
* Page reference token
|
|
2868
|
+
* @type {number}
|
|
2869
|
+
* @memberof PagesApiUpdatePages
|
|
2870
|
+
*/
|
|
2871
|
+
readonly pageToken?: number;
|
|
2872
|
+
/**
|
|
2873
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2874
|
+
* @type {number}
|
|
2875
|
+
* @memberof PagesApiUpdatePages
|
|
2876
|
+
*/
|
|
2877
|
+
readonly pageSize?: number;
|
|
2878
|
+
/**
|
|
2879
|
+
* Search term to filter results
|
|
2880
|
+
* @type {string}
|
|
2881
|
+
* @memberof PagesApiUpdatePages
|
|
2882
|
+
*/
|
|
2883
|
+
readonly search?: string;
|
|
2884
|
+
/**
|
|
2885
|
+
* Update pages in bulk.
|
|
2886
|
+
* @type {UpdatePagesRequest}
|
|
2887
|
+
* @memberof PagesApiUpdatePages
|
|
2888
|
+
*/
|
|
2889
|
+
readonly updatePagesRequest?: UpdatePagesRequest;
|
|
2890
|
+
}
|
|
2891
|
+
/**
|
|
2892
|
+
* PagesApi - object-oriented interface
|
|
2893
|
+
* @export
|
|
2894
|
+
* @class PagesApi
|
|
2895
|
+
* @extends {BaseAPI}
|
|
2896
|
+
*/
|
|
2897
|
+
export declare class PagesApi extends BaseAPI {
|
|
2898
|
+
/**
|
|
2899
|
+
*
|
|
2900
|
+
* @summary List website pages
|
|
2901
|
+
* @param {PagesApiListPagesRequest} requestParameters Request parameters.
|
|
2902
|
+
* @param {*} [options] Override http request option.
|
|
2903
|
+
* @throws {RequiredError}
|
|
2904
|
+
* @memberof PagesApi
|
|
2905
|
+
*/
|
|
2906
|
+
listPages(requestParameters: PagesApiListPagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PagesResponse, any>>;
|
|
2907
|
+
/**
|
|
2908
|
+
*
|
|
2909
|
+
* @summary Update website page
|
|
2910
|
+
* @param {PagesApiUpdatePageRequest} requestParameters Request parameters.
|
|
2911
|
+
* @param {*} [options] Override http request option.
|
|
2912
|
+
* @throws {RequiredError}
|
|
2913
|
+
* @memberof PagesApi
|
|
2914
|
+
*/
|
|
2915
|
+
updatePage(requestParameters: PagesApiUpdatePageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Page, any>>;
|
|
2916
|
+
/**
|
|
2917
|
+
*
|
|
2918
|
+
* @summary Update website pages
|
|
2919
|
+
* @param {PagesApiUpdatePagesRequest} requestParameters Request parameters.
|
|
2920
|
+
* @param {*} [options] Override http request option.
|
|
2921
|
+
* @throws {RequiredError}
|
|
2922
|
+
* @memberof PagesApi
|
|
2923
|
+
*/
|
|
2924
|
+
updatePages(requestParameters: PagesApiUpdatePagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PagesResponse, any>>;
|
|
2925
|
+
}
|
|
1299
2926
|
/**
|
|
1300
2927
|
* PaymentApi - axios parameter creator
|
|
1301
2928
|
* @export
|