@teemill/website 0.7.0 → 0.8.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 +2105 -232
- package/base.ts +3 -3
- package/common.ts +3 -3
- package/configuration.ts +10 -4
- package/dist/api.d.ts +1442 -157
- package/dist/api.js +904 -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 +1442 -157
- package/dist/esm/api.js +891 -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.8.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
|
|
@@ -742,291 +928,1154 @@ export interface SubmenuItem {
|
|
|
742
928
|
/**
|
|
743
929
|
*
|
|
744
930
|
* @export
|
|
745
|
-
* @interface
|
|
931
|
+
* @interface TargetSearchPhraseData
|
|
746
932
|
*/
|
|
747
|
-
export interface
|
|
933
|
+
export interface TargetSearchPhraseData {
|
|
748
934
|
/**
|
|
749
|
-
*
|
|
750
|
-
* @type {
|
|
751
|
-
* @memberof
|
|
935
|
+
* The primary target search phrase for a page that you wish to rank for in search engine results.
|
|
936
|
+
* @type {string}
|
|
937
|
+
* @memberof TargetSearchPhraseData
|
|
752
938
|
*/
|
|
753
|
-
'
|
|
939
|
+
'targetSearchPhrase'?: string;
|
|
940
|
+
/**
|
|
941
|
+
* Synonyms for the target search phrase.
|
|
942
|
+
* @type {Array<string>}
|
|
943
|
+
* @memberof TargetSearchPhraseData
|
|
944
|
+
*/
|
|
945
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
754
946
|
}
|
|
755
947
|
/**
|
|
756
948
|
*
|
|
757
949
|
* @export
|
|
758
|
-
* @interface
|
|
950
|
+
* @interface UpdateBlogRequest
|
|
759
951
|
*/
|
|
760
|
-
export interface
|
|
952
|
+
export interface UpdateBlogRequest {
|
|
761
953
|
/**
|
|
762
|
-
*
|
|
954
|
+
* Blog title
|
|
763
955
|
* @type {string}
|
|
764
|
-
* @memberof
|
|
956
|
+
* @memberof UpdateBlogRequest
|
|
765
957
|
*/
|
|
766
|
-
'
|
|
958
|
+
'title'?: string;
|
|
767
959
|
/**
|
|
768
|
-
*
|
|
960
|
+
* Blog description
|
|
769
961
|
* @type {string}
|
|
770
|
-
* @memberof
|
|
962
|
+
* @memberof UpdateBlogRequest
|
|
771
963
|
*/
|
|
772
|
-
'
|
|
964
|
+
'description'?: string;
|
|
773
965
|
/**
|
|
774
|
-
*
|
|
966
|
+
* 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.
|
|
775
967
|
* @type {string}
|
|
776
|
-
* @memberof
|
|
968
|
+
* @memberof UpdateBlogRequest
|
|
777
969
|
*/
|
|
778
|
-
'
|
|
970
|
+
'slug'?: string;
|
|
779
971
|
/**
|
|
780
972
|
*
|
|
781
|
-
* @type {
|
|
782
|
-
* @memberof
|
|
973
|
+
* @type {UpdateBlogsRequestBlogsInnerSeoMetadata}
|
|
974
|
+
* @memberof UpdateBlogRequest
|
|
783
975
|
*/
|
|
784
|
-
'
|
|
976
|
+
'seoMetadata'?: UpdateBlogsRequestBlogsInnerSeoMetadata;
|
|
785
977
|
/**
|
|
786
|
-
*
|
|
787
|
-
* @type {
|
|
788
|
-
* @memberof
|
|
978
|
+
* The primary target search phrase for the blog post that you wish to rank for in search engine results.
|
|
979
|
+
* @type {string}
|
|
980
|
+
* @memberof UpdateBlogRequest
|
|
789
981
|
*/
|
|
790
|
-
'
|
|
982
|
+
'targetSearchPhrase'?: string;
|
|
983
|
+
/**
|
|
984
|
+
* Synonyms for the target search phrase.
|
|
985
|
+
* @type {Array<string>}
|
|
986
|
+
* @memberof UpdateBlogRequest
|
|
987
|
+
*/
|
|
988
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
791
989
|
}
|
|
792
990
|
/**
|
|
793
991
|
*
|
|
794
992
|
* @export
|
|
795
|
-
* @interface
|
|
993
|
+
* @interface UpdateBlogsRequest
|
|
796
994
|
*/
|
|
797
|
-
export interface
|
|
798
|
-
/**
|
|
799
|
-
*
|
|
800
|
-
* @type {string}
|
|
801
|
-
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
802
|
-
*/
|
|
803
|
-
'id': string | null;
|
|
995
|
+
export interface UpdateBlogsRequest {
|
|
804
996
|
/**
|
|
805
997
|
*
|
|
806
|
-
* @type {
|
|
807
|
-
* @memberof
|
|
998
|
+
* @type {Array<UpdateBlogsRequestBlogsInner>}
|
|
999
|
+
* @memberof UpdateBlogsRequest
|
|
808
1000
|
*/
|
|
809
|
-
'
|
|
1001
|
+
'blogs'?: Array<UpdateBlogsRequestBlogsInner>;
|
|
810
1002
|
/**
|
|
811
|
-
*
|
|
1003
|
+
* The primary target search phrase for the blog post that you wish to rank for in search engine results.
|
|
812
1004
|
* @type {string}
|
|
813
|
-
* @memberof
|
|
814
|
-
*/
|
|
815
|
-
'image': string | null;
|
|
816
|
-
/**
|
|
817
|
-
*
|
|
818
|
-
* @type {number}
|
|
819
|
-
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1005
|
+
* @memberof UpdateBlogsRequest
|
|
820
1006
|
*/
|
|
821
|
-
'
|
|
1007
|
+
'targetSearchPhrase'?: string;
|
|
822
1008
|
/**
|
|
823
|
-
*
|
|
824
|
-
* @type {Array<
|
|
825
|
-
* @memberof
|
|
1009
|
+
* Synonyms for the target search phrase.
|
|
1010
|
+
* @type {Array<string>}
|
|
1011
|
+
* @memberof UpdateBlogsRequest
|
|
826
1012
|
*/
|
|
827
|
-
'
|
|
1013
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
828
1014
|
}
|
|
829
1015
|
/**
|
|
830
1016
|
*
|
|
831
1017
|
* @export
|
|
832
|
-
* @interface
|
|
1018
|
+
* @interface UpdateBlogsRequestBlogsInner
|
|
833
1019
|
*/
|
|
834
|
-
export interface
|
|
1020
|
+
export interface UpdateBlogsRequestBlogsInner {
|
|
835
1021
|
/**
|
|
836
|
-
*
|
|
1022
|
+
* Unique object identifier
|
|
837
1023
|
* @type {string}
|
|
838
|
-
* @memberof
|
|
1024
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
839
1025
|
*/
|
|
840
|
-
'id': string
|
|
1026
|
+
'id': string;
|
|
841
1027
|
/**
|
|
842
|
-
*
|
|
1028
|
+
* Blog title
|
|
843
1029
|
* @type {string}
|
|
844
|
-
* @memberof
|
|
1030
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
845
1031
|
*/
|
|
846
|
-
'
|
|
1032
|
+
'title'?: string;
|
|
847
1033
|
/**
|
|
848
|
-
*
|
|
1034
|
+
* Blog description
|
|
849
1035
|
* @type {string}
|
|
850
|
-
* @memberof
|
|
1036
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
851
1037
|
*/
|
|
852
|
-
'
|
|
1038
|
+
'description'?: string;
|
|
1039
|
+
/**
|
|
1040
|
+
* 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.
|
|
1041
|
+
* @type {string}
|
|
1042
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
1043
|
+
*/
|
|
1044
|
+
'slug'?: string;
|
|
853
1045
|
/**
|
|
854
1046
|
*
|
|
855
|
-
* @type {
|
|
856
|
-
* @memberof
|
|
1047
|
+
* @type {UpdateBlogsRequestBlogsInnerSeoMetadata}
|
|
1048
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
857
1049
|
*/
|
|
858
|
-
'
|
|
1050
|
+
'seoMetadata'?: UpdateBlogsRequestBlogsInnerSeoMetadata;
|
|
859
1051
|
}
|
|
860
1052
|
/**
|
|
861
1053
|
*
|
|
862
1054
|
* @export
|
|
863
|
-
* @interface
|
|
1055
|
+
* @interface UpdateBlogsRequestBlogsInnerSeoMetadata
|
|
864
1056
|
*/
|
|
865
|
-
export interface
|
|
1057
|
+
export interface UpdateBlogsRequestBlogsInnerSeoMetadata {
|
|
866
1058
|
/**
|
|
867
|
-
*
|
|
1059
|
+
* 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.
|
|
868
1060
|
* @type {string}
|
|
869
|
-
* @memberof
|
|
1061
|
+
* @memberof UpdateBlogsRequestBlogsInnerSeoMetadata
|
|
870
1062
|
*/
|
|
871
|
-
'
|
|
1063
|
+
'title'?: string | null;
|
|
872
1064
|
/**
|
|
873
|
-
*
|
|
874
|
-
* @type {
|
|
875
|
-
* @memberof
|
|
1065
|
+
* 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.
|
|
1066
|
+
* @type {string}
|
|
1067
|
+
* @memberof UpdateBlogsRequestBlogsInnerSeoMetadata
|
|
876
1068
|
*/
|
|
877
|
-
'
|
|
1069
|
+
'description'?: string | null;
|
|
1070
|
+
}
|
|
1071
|
+
/**
|
|
1072
|
+
*
|
|
1073
|
+
* @export
|
|
1074
|
+
* @interface UpdateCollectionRequest
|
|
1075
|
+
*/
|
|
1076
|
+
export interface UpdateCollectionRequest {
|
|
878
1077
|
/**
|
|
879
|
-
*
|
|
1078
|
+
* Collection title
|
|
880
1079
|
* @type {string}
|
|
881
|
-
* @memberof
|
|
1080
|
+
* @memberof UpdateCollectionRequest
|
|
882
1081
|
*/
|
|
883
|
-
'
|
|
1082
|
+
'title'?: string;
|
|
884
1083
|
/**
|
|
885
|
-
*
|
|
1084
|
+
* Collection description
|
|
886
1085
|
* @type {string}
|
|
887
|
-
* @memberof
|
|
1086
|
+
* @memberof UpdateCollectionRequest
|
|
888
1087
|
*/
|
|
889
|
-
'
|
|
1088
|
+
'description'?: string;
|
|
890
1089
|
/**
|
|
891
|
-
*
|
|
892
|
-
* @type {
|
|
893
|
-
* @memberof
|
|
1090
|
+
* URL slug. This must be unique for each collection on the website. Updating this will also break any existing links to this collection.
|
|
1091
|
+
* @type {string}
|
|
1092
|
+
* @memberof UpdateCollectionRequest
|
|
894
1093
|
*/
|
|
895
|
-
'
|
|
1094
|
+
'slug'?: string;
|
|
896
1095
|
/**
|
|
897
1096
|
*
|
|
898
|
-
* @type {
|
|
899
|
-
* @memberof
|
|
1097
|
+
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
|
1098
|
+
* @memberof UpdateCollectionRequest
|
|
900
1099
|
*/
|
|
901
|
-
'
|
|
1100
|
+
'seoMetadata'?: UpdateCollectionsRequestCollectionsInnerSeoMetadata;
|
|
902
1101
|
/**
|
|
903
|
-
*
|
|
904
|
-
* @type {
|
|
905
|
-
* @memberof
|
|
1102
|
+
* The primary target search phrase for the collection that you wish to rank for in search engine results.
|
|
1103
|
+
* @type {string}
|
|
1104
|
+
* @memberof UpdateCollectionRequest
|
|
906
1105
|
*/
|
|
907
|
-
'
|
|
1106
|
+
'targetSearchPhrase'?: string;
|
|
908
1107
|
/**
|
|
909
|
-
*
|
|
910
|
-
* @type {
|
|
911
|
-
* @memberof
|
|
1108
|
+
* Synonyms for the target search phrase.
|
|
1109
|
+
* @type {Array<string>}
|
|
1110
|
+
* @memberof UpdateCollectionRequest
|
|
912
1111
|
*/
|
|
913
|
-
'
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
1112
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1113
|
+
}
|
|
1114
|
+
/**
|
|
1115
|
+
*
|
|
1116
|
+
* @export
|
|
1117
|
+
* @interface UpdateCollectionsRequest
|
|
1118
|
+
*/
|
|
1119
|
+
export interface UpdateCollectionsRequest {
|
|
1120
|
+
/**
|
|
1121
|
+
*
|
|
1122
|
+
* @type {Array<UpdateCollectionsRequestCollectionsInner>}
|
|
1123
|
+
* @memberof UpdateCollectionsRequest
|
|
1124
|
+
*/
|
|
1125
|
+
'collections'?: Array<UpdateCollectionsRequestCollectionsInner>;
|
|
1126
|
+
}
|
|
1127
|
+
/**
|
|
1128
|
+
*
|
|
1129
|
+
* @export
|
|
1130
|
+
* @interface UpdateCollectionsRequestCollectionsInner
|
|
1131
|
+
*/
|
|
1132
|
+
export interface UpdateCollectionsRequestCollectionsInner {
|
|
1133
|
+
/**
|
|
1134
|
+
* Unique object identifier
|
|
1135
|
+
* @type {string}
|
|
1136
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1137
|
+
*/
|
|
1138
|
+
'id': string;
|
|
1139
|
+
/**
|
|
1140
|
+
* Collection title
|
|
1141
|
+
* @type {string}
|
|
1142
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1143
|
+
*/
|
|
1144
|
+
'title'?: string;
|
|
1145
|
+
/**
|
|
1146
|
+
* Collection description
|
|
1147
|
+
* @type {string}
|
|
1148
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1149
|
+
*/
|
|
1150
|
+
'description'?: string;
|
|
1151
|
+
/**
|
|
1152
|
+
* URL slug. This must be unique for each collection on the website. Updating this will also break any existing links to this collection.
|
|
1153
|
+
* @type {string}
|
|
1154
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1155
|
+
*/
|
|
1156
|
+
'slug'?: string;
|
|
1157
|
+
/**
|
|
1158
|
+
*
|
|
1159
|
+
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
|
1160
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1161
|
+
*/
|
|
1162
|
+
'seoMetadata'?: UpdateCollectionsRequestCollectionsInnerSeoMetadata;
|
|
1163
|
+
/**
|
|
1164
|
+
* The primary target search phrase for the collection that you wish to rank for in search engine results.
|
|
1165
|
+
* @type {string}
|
|
1166
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1167
|
+
*/
|
|
1168
|
+
'targetSearchPhrase'?: string;
|
|
1169
|
+
/**
|
|
1170
|
+
* Synonyms for the target search phrase.
|
|
1171
|
+
* @type {Array<string>}
|
|
1172
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1173
|
+
*/
|
|
1174
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1175
|
+
}
|
|
1176
|
+
/**
|
|
1177
|
+
*
|
|
1178
|
+
* @export
|
|
1179
|
+
* @interface UpdateCollectionsRequestCollectionsInnerSeoMetadata
|
|
1180
|
+
*/
|
|
1181
|
+
export interface UpdateCollectionsRequestCollectionsInnerSeoMetadata {
|
|
1182
|
+
/**
|
|
1183
|
+
* Meta title for the collection. This appears in search engine results and social shares. If not provided, the collection title will be used.
|
|
1184
|
+
* @type {string}
|
|
1185
|
+
* @memberof UpdateCollectionsRequestCollectionsInnerSeoMetadata
|
|
1186
|
+
*/
|
|
1187
|
+
'title'?: string | null;
|
|
1188
|
+
/**
|
|
1189
|
+
* Meta description for the collection. This appears in search engine results and social shares. If not provided, the collection description will be used.
|
|
1190
|
+
* @type {string}
|
|
1191
|
+
* @memberof UpdateCollectionsRequestCollectionsInnerSeoMetadata
|
|
1192
|
+
*/
|
|
1193
|
+
'description'?: string | null;
|
|
1194
|
+
}
|
|
1195
|
+
/**
|
|
1196
|
+
*
|
|
1197
|
+
* @export
|
|
1198
|
+
* @interface UpdateMenuRequest
|
|
1199
|
+
*/
|
|
1200
|
+
export interface UpdateMenuRequest {
|
|
1201
|
+
/**
|
|
1202
|
+
*
|
|
1203
|
+
* @type {Array<UpdateMenuRequestItem>}
|
|
1204
|
+
* @memberof UpdateMenuRequest
|
|
1205
|
+
*/
|
|
1206
|
+
'items'?: Array<UpdateMenuRequestItem>;
|
|
1207
|
+
}
|
|
1208
|
+
/**
|
|
1209
|
+
*
|
|
1210
|
+
* @export
|
|
1211
|
+
* @interface UpdateMenuRequestItem
|
|
1212
|
+
*/
|
|
1213
|
+
export interface UpdateMenuRequestItem {
|
|
1214
|
+
/**
|
|
1215
|
+
*
|
|
1216
|
+
* @type {string}
|
|
1217
|
+
* @memberof UpdateMenuRequestItem
|
|
1218
|
+
*/
|
|
1219
|
+
'id': string | null;
|
|
1220
|
+
/**
|
|
1221
|
+
*
|
|
1222
|
+
* @type {string}
|
|
1223
|
+
* @memberof UpdateMenuRequestItem
|
|
1224
|
+
*/
|
|
1225
|
+
'text': string;
|
|
1226
|
+
/**
|
|
1227
|
+
*
|
|
1228
|
+
* @type {string}
|
|
1229
|
+
* @memberof UpdateMenuRequestItem
|
|
1230
|
+
*/
|
|
1231
|
+
'link': string;
|
|
1232
|
+
/**
|
|
1233
|
+
*
|
|
1234
|
+
* @type {number}
|
|
1235
|
+
* @memberof UpdateMenuRequestItem
|
|
1236
|
+
*/
|
|
1237
|
+
'order': number;
|
|
1238
|
+
/**
|
|
1239
|
+
*
|
|
1240
|
+
* @type {Array<UpdateMenuRequestItemSubmenuInner>}
|
|
1241
|
+
* @memberof UpdateMenuRequestItem
|
|
1242
|
+
*/
|
|
1243
|
+
'submenu': Array<UpdateMenuRequestItemSubmenuInner>;
|
|
1244
|
+
}
|
|
1245
|
+
/**
|
|
1246
|
+
*
|
|
1247
|
+
* @export
|
|
1248
|
+
* @interface UpdateMenuRequestItemSubmenuInner
|
|
1249
|
+
*/
|
|
1250
|
+
export interface UpdateMenuRequestItemSubmenuInner {
|
|
1251
|
+
/**
|
|
1252
|
+
*
|
|
1253
|
+
* @type {string}
|
|
1254
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1255
|
+
*/
|
|
1256
|
+
'id': string | null;
|
|
1257
|
+
/**
|
|
1258
|
+
*
|
|
1259
|
+
* @type {string}
|
|
1260
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1261
|
+
*/
|
|
1262
|
+
'title': string;
|
|
1263
|
+
/**
|
|
1264
|
+
*
|
|
1265
|
+
* @type {string}
|
|
1266
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1267
|
+
*/
|
|
1268
|
+
'image': string | null;
|
|
1269
|
+
/**
|
|
1270
|
+
*
|
|
1271
|
+
* @type {number}
|
|
1272
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1273
|
+
*/
|
|
1274
|
+
'order': number;
|
|
1275
|
+
/**
|
|
1276
|
+
*
|
|
1277
|
+
* @type {Array<UpdateMenuRequestSubmenuItem>}
|
|
1278
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
1279
|
+
*/
|
|
1280
|
+
'items': Array<UpdateMenuRequestSubmenuItem>;
|
|
1281
|
+
}
|
|
1282
|
+
/**
|
|
1283
|
+
*
|
|
1284
|
+
* @export
|
|
1285
|
+
* @interface UpdateMenuRequestSubmenuItem
|
|
1286
|
+
*/
|
|
1287
|
+
export interface UpdateMenuRequestSubmenuItem {
|
|
1288
|
+
/**
|
|
1289
|
+
*
|
|
1290
|
+
* @type {string}
|
|
1291
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
1292
|
+
*/
|
|
1293
|
+
'id': string | null;
|
|
1294
|
+
/**
|
|
1295
|
+
*
|
|
1296
|
+
* @type {string}
|
|
1297
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
1298
|
+
*/
|
|
1299
|
+
'text': string;
|
|
1300
|
+
/**
|
|
1301
|
+
*
|
|
1302
|
+
* @type {string}
|
|
1303
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
1304
|
+
*/
|
|
1305
|
+
'link': string;
|
|
1306
|
+
/**
|
|
1307
|
+
*
|
|
1308
|
+
* @type {number}
|
|
1309
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
1310
|
+
*/
|
|
1311
|
+
'order': number;
|
|
1312
|
+
}
|
|
1313
|
+
/**
|
|
1314
|
+
*
|
|
1315
|
+
* @export
|
|
1316
|
+
* @interface UpdatePageRequest
|
|
1317
|
+
*/
|
|
1318
|
+
export interface UpdatePageRequest {
|
|
1319
|
+
/**
|
|
1320
|
+
* Page title
|
|
1321
|
+
* @type {string}
|
|
1322
|
+
* @memberof UpdatePageRequest
|
|
1323
|
+
*/
|
|
1324
|
+
'title'?: string;
|
|
1325
|
+
/**
|
|
1326
|
+
* Page description
|
|
1327
|
+
* @type {string}
|
|
1328
|
+
* @memberof UpdatePageRequest
|
|
1329
|
+
*/
|
|
1330
|
+
'description'?: string;
|
|
1331
|
+
/**
|
|
1332
|
+
* URL slug. This must be unique for each page on the website. Updating this will also break any existing links to this page.
|
|
1333
|
+
* @type {string}
|
|
1334
|
+
* @memberof UpdatePageRequest
|
|
1335
|
+
*/
|
|
1336
|
+
'slug'?: string;
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @type {UpdatePagesRequestPagesInnerSeoMetadata}
|
|
1340
|
+
* @memberof UpdatePageRequest
|
|
1341
|
+
*/
|
|
1342
|
+
'seoMetadata'?: UpdatePagesRequestPagesInnerSeoMetadata;
|
|
1343
|
+
/**
|
|
1344
|
+
* The primary target search phrase for the page that you wish to rank for in search engine results.
|
|
1345
|
+
* @type {string}
|
|
1346
|
+
* @memberof UpdatePageRequest
|
|
1347
|
+
*/
|
|
1348
|
+
'targetSearchPhrase'?: string;
|
|
1349
|
+
/**
|
|
1350
|
+
* Synonyms for the target search phrase.
|
|
1351
|
+
* @type {Array<string>}
|
|
1352
|
+
* @memberof UpdatePageRequest
|
|
1353
|
+
*/
|
|
1354
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1355
|
+
}
|
|
1356
|
+
/**
|
|
1357
|
+
*
|
|
1358
|
+
* @export
|
|
1359
|
+
* @interface UpdatePagesRequest
|
|
1360
|
+
*/
|
|
1361
|
+
export interface UpdatePagesRequest {
|
|
1362
|
+
/**
|
|
1363
|
+
*
|
|
1364
|
+
* @type {Array<UpdatePagesRequestPagesInner>}
|
|
1365
|
+
* @memberof UpdatePagesRequest
|
|
1366
|
+
*/
|
|
1367
|
+
'pages'?: Array<UpdatePagesRequestPagesInner>;
|
|
1368
|
+
}
|
|
1369
|
+
/**
|
|
1370
|
+
*
|
|
1371
|
+
* @export
|
|
1372
|
+
* @interface UpdatePagesRequestPagesInner
|
|
1373
|
+
*/
|
|
1374
|
+
export interface UpdatePagesRequestPagesInner {
|
|
1375
|
+
/**
|
|
1376
|
+
* Unique object identifier
|
|
1377
|
+
* @type {string}
|
|
1378
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1379
|
+
*/
|
|
1380
|
+
'id': string;
|
|
1381
|
+
/**
|
|
1382
|
+
* Page title
|
|
1383
|
+
* @type {string}
|
|
1384
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1385
|
+
*/
|
|
1386
|
+
'title'?: string;
|
|
1387
|
+
/**
|
|
1388
|
+
* Page description
|
|
1389
|
+
* @type {string}
|
|
1390
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1391
|
+
*/
|
|
1392
|
+
'description'?: string;
|
|
1393
|
+
/**
|
|
1394
|
+
* URL slug. This must be unique for each page on the website. Updating this will also break any existing links to this page.
|
|
1395
|
+
* @type {string}
|
|
1396
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1397
|
+
*/
|
|
1398
|
+
'slug'?: string;
|
|
1399
|
+
/**
|
|
1400
|
+
*
|
|
1401
|
+
* @type {UpdatePagesRequestPagesInnerSeoMetadata}
|
|
1402
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1403
|
+
*/
|
|
1404
|
+
'seoMetadata'?: UpdatePagesRequestPagesInnerSeoMetadata;
|
|
1405
|
+
/**
|
|
1406
|
+
* The primary target search phrase for the page that you wish to rank for in search engine results.
|
|
1407
|
+
* @type {string}
|
|
1408
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1409
|
+
*/
|
|
1410
|
+
'targetSearchPhrase'?: string;
|
|
1411
|
+
/**
|
|
1412
|
+
* Synonyms for the target search phrase.
|
|
1413
|
+
* @type {Array<string>}
|
|
1414
|
+
* @memberof UpdatePagesRequestPagesInner
|
|
1415
|
+
*/
|
|
1416
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1417
|
+
}
|
|
1418
|
+
/**
|
|
1419
|
+
*
|
|
1420
|
+
* @export
|
|
1421
|
+
* @interface UpdatePagesRequestPagesInnerSeoMetadata
|
|
1422
|
+
*/
|
|
1423
|
+
export interface UpdatePagesRequestPagesInnerSeoMetadata {
|
|
1424
|
+
/**
|
|
1425
|
+
* Meta title for the page. This appears in search engine results and social shares. If not provided, the page title will be used.
|
|
1426
|
+
* @type {string}
|
|
1427
|
+
* @memberof UpdatePagesRequestPagesInnerSeoMetadata
|
|
1428
|
+
*/
|
|
1429
|
+
'title'?: string | null;
|
|
1430
|
+
/**
|
|
1431
|
+
* Meta description for the page. This appears in search engine results and social shares. If not provided, the page description will be used.
|
|
1432
|
+
* @type {string}
|
|
1433
|
+
* @memberof UpdatePagesRequestPagesInnerSeoMetadata
|
|
1434
|
+
*/
|
|
1435
|
+
'description'?: string | null;
|
|
1436
|
+
}
|
|
1437
|
+
/**
|
|
1438
|
+
*
|
|
1439
|
+
* @export
|
|
1440
|
+
* @interface Variant
|
|
1441
|
+
*/
|
|
1442
|
+
export interface Variant {
|
|
1443
|
+
/**
|
|
1444
|
+
* Unique object identifier
|
|
1445
|
+
* @type {string}
|
|
1446
|
+
* @memberof Variant
|
|
1447
|
+
*/
|
|
1448
|
+
'id'?: string;
|
|
1449
|
+
/**
|
|
1450
|
+
* 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.
|
|
1451
|
+
* @type {Array<Attribute>}
|
|
1452
|
+
* @memberof Variant
|
|
1453
|
+
*/
|
|
1454
|
+
'attributes': Array<Attribute>;
|
|
1455
|
+
/**
|
|
1456
|
+
*
|
|
1457
|
+
* @type {string}
|
|
1458
|
+
* @memberof Variant
|
|
1459
|
+
*/
|
|
1460
|
+
'sku': string;
|
|
1461
|
+
/**
|
|
1462
|
+
* A reference to the resource location
|
|
1463
|
+
* @type {string}
|
|
1464
|
+
* @memberof Variant
|
|
1465
|
+
*/
|
|
1466
|
+
'ref'?: string;
|
|
1467
|
+
/**
|
|
1468
|
+
*
|
|
1469
|
+
* @type {VariantProduct}
|
|
1470
|
+
* @memberof Variant
|
|
1471
|
+
*/
|
|
1472
|
+
'product'?: VariantProduct;
|
|
1473
|
+
/**
|
|
1474
|
+
*
|
|
1475
|
+
* @type {number}
|
|
1476
|
+
* @memberof Variant
|
|
1477
|
+
*/
|
|
1478
|
+
'sortOrder'?: number;
|
|
1479
|
+
/**
|
|
1480
|
+
*
|
|
1481
|
+
* @type {Price}
|
|
1482
|
+
* @memberof Variant
|
|
1483
|
+
*/
|
|
1484
|
+
'retailPrice'?: Price;
|
|
1485
|
+
/**
|
|
1486
|
+
*
|
|
1487
|
+
* @type {Price}
|
|
1488
|
+
* @memberof Variant
|
|
1489
|
+
*/
|
|
1490
|
+
'salePrice'?: Price;
|
|
1491
|
+
/**
|
|
1492
|
+
*
|
|
1493
|
+
* @type {Price}
|
|
1494
|
+
* @memberof Variant
|
|
1495
|
+
*/
|
|
1496
|
+
'price'?: Price;
|
|
1497
|
+
/**
|
|
1498
|
+
*
|
|
1499
|
+
* @type {Stock}
|
|
1500
|
+
* @memberof Variant
|
|
1501
|
+
*/
|
|
1502
|
+
'stock'?: Stock;
|
|
1503
|
+
/**
|
|
1504
|
+
*
|
|
1505
|
+
* @type {string}
|
|
1506
|
+
* @memberof Variant
|
|
1507
|
+
*/
|
|
1508
|
+
'createdAt'?: string;
|
|
1509
|
+
/**
|
|
1510
|
+
*
|
|
1511
|
+
* @type {string}
|
|
1512
|
+
* @memberof Variant
|
|
1513
|
+
*/
|
|
1514
|
+
'updatedAt'?: string;
|
|
1515
|
+
/**
|
|
1516
|
+
*
|
|
1517
|
+
* @type {string}
|
|
1518
|
+
* @memberof Variant
|
|
1519
|
+
*/
|
|
1520
|
+
'publishedAt'?: string;
|
|
1521
|
+
/**
|
|
1522
|
+
* Images
|
|
1523
|
+
* @type {Array<Image>}
|
|
1524
|
+
* @memberof Variant
|
|
1525
|
+
*/
|
|
1526
|
+
'images'?: Array<Image>;
|
|
1527
|
+
/**
|
|
1528
|
+
* Design applications. If not provided, the product will be blank.
|
|
1529
|
+
* @type {Array<Application>}
|
|
1530
|
+
* @memberof Variant
|
|
1531
|
+
*/
|
|
1532
|
+
'applications'?: Array<Application>;
|
|
1533
|
+
/**
|
|
1534
|
+
* Global Trade Item Number
|
|
1535
|
+
* @type {string}
|
|
1536
|
+
* @memberof Variant
|
|
1537
|
+
*/
|
|
1538
|
+
'gtin'?: string | null;
|
|
1539
|
+
/**
|
|
1540
|
+
*
|
|
1541
|
+
* @type {Array<MetaField>}
|
|
1542
|
+
* @memberof Variant
|
|
1543
|
+
*/
|
|
1544
|
+
'metafields'?: Array<MetaField>;
|
|
1545
|
+
}
|
|
1546
|
+
/**
|
|
1547
|
+
*
|
|
1548
|
+
* @export
|
|
1549
|
+
* @interface VariantProduct
|
|
1550
|
+
*/
|
|
1551
|
+
export interface VariantProduct {
|
|
1552
|
+
/**
|
|
1553
|
+
* Unique object identifier
|
|
1554
|
+
* @type {string}
|
|
1555
|
+
* @memberof VariantProduct
|
|
1556
|
+
*/
|
|
1557
|
+
'id'?: string;
|
|
1558
|
+
/**
|
|
1559
|
+
* A reference to the resource location
|
|
1560
|
+
* @type {string}
|
|
1561
|
+
* @memberof VariantProduct
|
|
1562
|
+
*/
|
|
1563
|
+
'ref'?: string;
|
|
1564
|
+
}
|
|
1565
|
+
/**
|
|
1566
|
+
* Video object
|
|
1567
|
+
* @export
|
|
1568
|
+
* @interface Video
|
|
1569
|
+
*/
|
|
1570
|
+
export interface Video {
|
|
1571
|
+
/**
|
|
1572
|
+
* Unique object identifier
|
|
1573
|
+
* @type {string}
|
|
1574
|
+
* @memberof Video
|
|
1575
|
+
*/
|
|
1576
|
+
'id'?: string;
|
|
1577
|
+
/**
|
|
1578
|
+
*
|
|
1579
|
+
* @type {string}
|
|
1580
|
+
* @memberof Video
|
|
918
1581
|
*/
|
|
919
|
-
'
|
|
1582
|
+
'src'?: string;
|
|
920
1583
|
/**
|
|
921
1584
|
*
|
|
922
|
-
* @type {
|
|
923
|
-
* @memberof
|
|
1585
|
+
* @type {string}
|
|
1586
|
+
* @memberof Video
|
|
924
1587
|
*/
|
|
925
|
-
'
|
|
1588
|
+
'alt'?: string;
|
|
1589
|
+
/**
|
|
1590
|
+
*
|
|
1591
|
+
* @type {number}
|
|
1592
|
+
* @memberof Video
|
|
1593
|
+
*/
|
|
1594
|
+
'sortOrder'?: number;
|
|
926
1595
|
/**
|
|
927
1596
|
*
|
|
928
1597
|
* @type {string}
|
|
929
|
-
* @memberof
|
|
1598
|
+
* @memberof Video
|
|
930
1599
|
*/
|
|
931
1600
|
'createdAt'?: string;
|
|
932
1601
|
/**
|
|
933
1602
|
*
|
|
934
1603
|
* @type {string}
|
|
935
|
-
* @memberof
|
|
1604
|
+
* @memberof Video
|
|
1605
|
+
*/
|
|
1606
|
+
'updatedAt'?: string;
|
|
1607
|
+
}
|
|
1608
|
+
/**
|
|
1609
|
+
* BlogsApi - axios parameter creator
|
|
1610
|
+
* @export
|
|
1611
|
+
*/
|
|
1612
|
+
export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1613
|
+
/**
|
|
1614
|
+
*
|
|
1615
|
+
* @summary List website blog posts
|
|
1616
|
+
* @param {string} project What project it is
|
|
1617
|
+
* @param {number} [pageToken] Page reference token
|
|
1618
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1619
|
+
* @param {string} [search] Search term to filter results
|
|
1620
|
+
* @param {*} [options] Override http request option.
|
|
1621
|
+
* @throws {RequiredError}
|
|
1622
|
+
*/
|
|
1623
|
+
listBlogs: (project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1624
|
+
/**
|
|
1625
|
+
*
|
|
1626
|
+
* @summary Update website blog post
|
|
1627
|
+
* @param {string} project What project it is
|
|
1628
|
+
* @param {string} blogId Blog\'s unique identifier
|
|
1629
|
+
* @param {UpdateBlogRequest} [updateBlogRequest]
|
|
1630
|
+
* @param {*} [options] Override http request option.
|
|
1631
|
+
* @throws {RequiredError}
|
|
1632
|
+
*/
|
|
1633
|
+
updateBlog: (project: string, blogId: string, updateBlogRequest?: UpdateBlogRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1634
|
+
/**
|
|
1635
|
+
*
|
|
1636
|
+
* @summary Update website blog posts
|
|
1637
|
+
* @param {string} project What project it is
|
|
1638
|
+
* @param {number} [pageToken] Page reference token
|
|
1639
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1640
|
+
* @param {string} [search] Search term to filter results
|
|
1641
|
+
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1642
|
+
* @param {*} [options] Override http request option.
|
|
1643
|
+
* @throws {RequiredError}
|
|
1644
|
+
*/
|
|
1645
|
+
updateBlogs: (project: string, pageToken?: number, pageSize?: number, search?: string, updateBlogsRequest?: UpdateBlogsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1646
|
+
};
|
|
1647
|
+
/**
|
|
1648
|
+
* BlogsApi - functional programming interface
|
|
1649
|
+
* @export
|
|
1650
|
+
*/
|
|
1651
|
+
export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
1652
|
+
/**
|
|
1653
|
+
*
|
|
1654
|
+
* @summary List website blog posts
|
|
1655
|
+
* @param {string} project What project it is
|
|
1656
|
+
* @param {number} [pageToken] Page reference token
|
|
1657
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1658
|
+
* @param {string} [search] Search term to filter results
|
|
1659
|
+
* @param {*} [options] Override http request option.
|
|
1660
|
+
* @throws {RequiredError}
|
|
1661
|
+
*/
|
|
1662
|
+
listBlogs(project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BlogsResponse>>;
|
|
1663
|
+
/**
|
|
1664
|
+
*
|
|
1665
|
+
* @summary Update website blog post
|
|
1666
|
+
* @param {string} project What project it is
|
|
1667
|
+
* @param {string} blogId Blog\'s unique identifier
|
|
1668
|
+
* @param {UpdateBlogRequest} [updateBlogRequest]
|
|
1669
|
+
* @param {*} [options] Override http request option.
|
|
1670
|
+
* @throws {RequiredError}
|
|
1671
|
+
*/
|
|
1672
|
+
updateBlog(project: string, blogId: string, updateBlogRequest?: UpdateBlogRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Blog>>;
|
|
1673
|
+
/**
|
|
1674
|
+
*
|
|
1675
|
+
* @summary Update website blog posts
|
|
1676
|
+
* @param {string} project What project it is
|
|
1677
|
+
* @param {number} [pageToken] Page reference token
|
|
1678
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1679
|
+
* @param {string} [search] Search term to filter results
|
|
1680
|
+
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1681
|
+
* @param {*} [options] Override http request option.
|
|
1682
|
+
* @throws {RequiredError}
|
|
1683
|
+
*/
|
|
1684
|
+
updateBlogs(project: string, pageToken?: number, pageSize?: number, search?: string, updateBlogsRequest?: UpdateBlogsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BlogsResponse>>;
|
|
1685
|
+
};
|
|
1686
|
+
/**
|
|
1687
|
+
* BlogsApi - factory interface
|
|
1688
|
+
* @export
|
|
1689
|
+
*/
|
|
1690
|
+
export declare const BlogsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1691
|
+
/**
|
|
1692
|
+
*
|
|
1693
|
+
* @summary List website blog posts
|
|
1694
|
+
* @param {BlogsApiListBlogsRequest} requestParameters Request parameters.
|
|
1695
|
+
* @param {*} [options] Override http request option.
|
|
1696
|
+
* @throws {RequiredError}
|
|
1697
|
+
*/
|
|
1698
|
+
listBlogs(requestParameters: BlogsApiListBlogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BlogsResponse>;
|
|
1699
|
+
/**
|
|
1700
|
+
*
|
|
1701
|
+
* @summary Update website blog post
|
|
1702
|
+
* @param {BlogsApiUpdateBlogRequest} requestParameters Request parameters.
|
|
1703
|
+
* @param {*} [options] Override http request option.
|
|
1704
|
+
* @throws {RequiredError}
|
|
1705
|
+
*/
|
|
1706
|
+
updateBlog(requestParameters: BlogsApiUpdateBlogRequest, options?: RawAxiosRequestConfig): AxiosPromise<Blog>;
|
|
1707
|
+
/**
|
|
1708
|
+
*
|
|
1709
|
+
* @summary Update website blog posts
|
|
1710
|
+
* @param {BlogsApiUpdateBlogsRequest} requestParameters Request parameters.
|
|
1711
|
+
* @param {*} [options] Override http request option.
|
|
1712
|
+
* @throws {RequiredError}
|
|
1713
|
+
*/
|
|
1714
|
+
updateBlogs(requestParameters: BlogsApiUpdateBlogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BlogsResponse>;
|
|
1715
|
+
};
|
|
1716
|
+
/**
|
|
1717
|
+
* Request parameters for listBlogs operation in BlogsApi.
|
|
1718
|
+
* @export
|
|
1719
|
+
* @interface BlogsApiListBlogsRequest
|
|
1720
|
+
*/
|
|
1721
|
+
export interface BlogsApiListBlogsRequest {
|
|
1722
|
+
/**
|
|
1723
|
+
* What project it is
|
|
1724
|
+
* @type {string}
|
|
1725
|
+
* @memberof BlogsApiListBlogs
|
|
1726
|
+
*/
|
|
1727
|
+
readonly project: string;
|
|
1728
|
+
/**
|
|
1729
|
+
* Page reference token
|
|
1730
|
+
* @type {number}
|
|
1731
|
+
* @memberof BlogsApiListBlogs
|
|
1732
|
+
*/
|
|
1733
|
+
readonly pageToken?: number;
|
|
1734
|
+
/**
|
|
1735
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1736
|
+
* @type {number}
|
|
1737
|
+
* @memberof BlogsApiListBlogs
|
|
1738
|
+
*/
|
|
1739
|
+
readonly pageSize?: number;
|
|
1740
|
+
/**
|
|
1741
|
+
* Search term to filter results
|
|
1742
|
+
* @type {string}
|
|
1743
|
+
* @memberof BlogsApiListBlogs
|
|
1744
|
+
*/
|
|
1745
|
+
readonly search?: string;
|
|
1746
|
+
}
|
|
1747
|
+
/**
|
|
1748
|
+
* Request parameters for updateBlog operation in BlogsApi.
|
|
1749
|
+
* @export
|
|
1750
|
+
* @interface BlogsApiUpdateBlogRequest
|
|
1751
|
+
*/
|
|
1752
|
+
export interface BlogsApiUpdateBlogRequest {
|
|
1753
|
+
/**
|
|
1754
|
+
* What project it is
|
|
1755
|
+
* @type {string}
|
|
1756
|
+
* @memberof BlogsApiUpdateBlog
|
|
1757
|
+
*/
|
|
1758
|
+
readonly project: string;
|
|
1759
|
+
/**
|
|
1760
|
+
* Blog\'s unique identifier
|
|
1761
|
+
* @type {string}
|
|
1762
|
+
* @memberof BlogsApiUpdateBlog
|
|
1763
|
+
*/
|
|
1764
|
+
readonly blogId: string;
|
|
1765
|
+
/**
|
|
1766
|
+
*
|
|
1767
|
+
* @type {UpdateBlogRequest}
|
|
1768
|
+
* @memberof BlogsApiUpdateBlog
|
|
1769
|
+
*/
|
|
1770
|
+
readonly updateBlogRequest?: UpdateBlogRequest;
|
|
1771
|
+
}
|
|
1772
|
+
/**
|
|
1773
|
+
* Request parameters for updateBlogs operation in BlogsApi.
|
|
1774
|
+
* @export
|
|
1775
|
+
* @interface BlogsApiUpdateBlogsRequest
|
|
1776
|
+
*/
|
|
1777
|
+
export interface BlogsApiUpdateBlogsRequest {
|
|
1778
|
+
/**
|
|
1779
|
+
* What project it is
|
|
1780
|
+
* @type {string}
|
|
1781
|
+
* @memberof BlogsApiUpdateBlogs
|
|
1782
|
+
*/
|
|
1783
|
+
readonly project: string;
|
|
1784
|
+
/**
|
|
1785
|
+
* Page reference token
|
|
1786
|
+
* @type {number}
|
|
1787
|
+
* @memberof BlogsApiUpdateBlogs
|
|
1788
|
+
*/
|
|
1789
|
+
readonly pageToken?: number;
|
|
1790
|
+
/**
|
|
1791
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1792
|
+
* @type {number}
|
|
1793
|
+
* @memberof BlogsApiUpdateBlogs
|
|
1794
|
+
*/
|
|
1795
|
+
readonly pageSize?: number;
|
|
1796
|
+
/**
|
|
1797
|
+
* Search term to filter results
|
|
1798
|
+
* @type {string}
|
|
1799
|
+
* @memberof BlogsApiUpdateBlogs
|
|
1800
|
+
*/
|
|
1801
|
+
readonly search?: string;
|
|
1802
|
+
/**
|
|
1803
|
+
* Update blogs in bulk.
|
|
1804
|
+
* @type {UpdateBlogsRequest}
|
|
1805
|
+
* @memberof BlogsApiUpdateBlogs
|
|
1806
|
+
*/
|
|
1807
|
+
readonly updateBlogsRequest?: UpdateBlogsRequest;
|
|
1808
|
+
}
|
|
1809
|
+
/**
|
|
1810
|
+
* BlogsApi - object-oriented interface
|
|
1811
|
+
* @export
|
|
1812
|
+
* @class BlogsApi
|
|
1813
|
+
* @extends {BaseAPI}
|
|
1814
|
+
*/
|
|
1815
|
+
export declare class BlogsApi extends BaseAPI {
|
|
1816
|
+
/**
|
|
1817
|
+
*
|
|
1818
|
+
* @summary List website blog posts
|
|
1819
|
+
* @param {BlogsApiListBlogsRequest} requestParameters Request parameters.
|
|
1820
|
+
* @param {*} [options] Override http request option.
|
|
1821
|
+
* @throws {RequiredError}
|
|
1822
|
+
* @memberof BlogsApi
|
|
1823
|
+
*/
|
|
1824
|
+
listBlogs(requestParameters: BlogsApiListBlogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BlogsResponse, any>>;
|
|
1825
|
+
/**
|
|
1826
|
+
*
|
|
1827
|
+
* @summary Update website blog post
|
|
1828
|
+
* @param {BlogsApiUpdateBlogRequest} requestParameters Request parameters.
|
|
1829
|
+
* @param {*} [options] Override http request option.
|
|
1830
|
+
* @throws {RequiredError}
|
|
1831
|
+
* @memberof BlogsApi
|
|
1832
|
+
*/
|
|
1833
|
+
updateBlog(requestParameters: BlogsApiUpdateBlogRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Blog, any>>;
|
|
1834
|
+
/**
|
|
1835
|
+
*
|
|
1836
|
+
* @summary Update website blog posts
|
|
1837
|
+
* @param {BlogsApiUpdateBlogsRequest} requestParameters Request parameters.
|
|
1838
|
+
* @param {*} [options] Override http request option.
|
|
1839
|
+
* @throws {RequiredError}
|
|
1840
|
+
* @memberof BlogsApi
|
|
1841
|
+
*/
|
|
1842
|
+
updateBlogs(requestParameters: BlogsApiUpdateBlogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BlogsResponse, any>>;
|
|
1843
|
+
}
|
|
1844
|
+
/**
|
|
1845
|
+
* CollectionsApi - axios parameter creator
|
|
1846
|
+
* @export
|
|
1847
|
+
*/
|
|
1848
|
+
export declare const CollectionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1849
|
+
/**
|
|
1850
|
+
*
|
|
1851
|
+
* @summary List website collections
|
|
1852
|
+
* @param {string} project What project it is
|
|
1853
|
+
* @param {number} [pageToken] Page reference token
|
|
1854
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1855
|
+
* @param {string} [search] Search term to filter results
|
|
1856
|
+
* @param {*} [options] Override http request option.
|
|
1857
|
+
* @throws {RequiredError}
|
|
1858
|
+
*/
|
|
1859
|
+
listCollections: (project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1860
|
+
/**
|
|
1861
|
+
*
|
|
1862
|
+
* @summary Update website collection
|
|
1863
|
+
* @param {string} project What project it is
|
|
1864
|
+
* @param {string} collectionId Collection\'s unique identifier
|
|
1865
|
+
* @param {UpdateCollectionRequest} [updateCollectionRequest]
|
|
1866
|
+
* @param {*} [options] Override http request option.
|
|
1867
|
+
* @throws {RequiredError}
|
|
1868
|
+
*/
|
|
1869
|
+
updateCollection: (project: string, collectionId: string, updateCollectionRequest?: UpdateCollectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1870
|
+
/**
|
|
1871
|
+
*
|
|
1872
|
+
* @summary Update website collections
|
|
1873
|
+
* @param {string} project What project it is
|
|
1874
|
+
* @param {number} [pageToken] Page reference token
|
|
1875
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1876
|
+
* @param {string} [search] Search term to filter results
|
|
1877
|
+
* @param {UpdateCollectionsRequest} [updateCollectionsRequest] Update collections in bulk.
|
|
1878
|
+
* @param {*} [options] Override http request option.
|
|
1879
|
+
* @throws {RequiredError}
|
|
1880
|
+
*/
|
|
1881
|
+
updateCollections: (project: string, pageToken?: number, pageSize?: number, search?: string, updateCollectionsRequest?: UpdateCollectionsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1882
|
+
};
|
|
1883
|
+
/**
|
|
1884
|
+
* CollectionsApi - functional programming interface
|
|
1885
|
+
* @export
|
|
1886
|
+
*/
|
|
1887
|
+
export declare const CollectionsApiFp: (configuration?: Configuration) => {
|
|
1888
|
+
/**
|
|
1889
|
+
*
|
|
1890
|
+
* @summary List website collections
|
|
1891
|
+
* @param {string} project What project it is
|
|
1892
|
+
* @param {number} [pageToken] Page reference token
|
|
1893
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1894
|
+
* @param {string} [search] Search term to filter results
|
|
1895
|
+
* @param {*} [options] Override http request option.
|
|
1896
|
+
* @throws {RequiredError}
|
|
1897
|
+
*/
|
|
1898
|
+
listCollections(project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionsResponse>>;
|
|
1899
|
+
/**
|
|
1900
|
+
*
|
|
1901
|
+
* @summary Update website collection
|
|
1902
|
+
* @param {string} project What project it is
|
|
1903
|
+
* @param {string} collectionId Collection\'s unique identifier
|
|
1904
|
+
* @param {UpdateCollectionRequest} [updateCollectionRequest]
|
|
1905
|
+
* @param {*} [options] Override http request option.
|
|
1906
|
+
* @throws {RequiredError}
|
|
1907
|
+
*/
|
|
1908
|
+
updateCollection(project: string, collectionId: string, updateCollectionRequest?: UpdateCollectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Collection>>;
|
|
1909
|
+
/**
|
|
1910
|
+
*
|
|
1911
|
+
* @summary Update website collections
|
|
1912
|
+
* @param {string} project What project it is
|
|
1913
|
+
* @param {number} [pageToken] Page reference token
|
|
1914
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1915
|
+
* @param {string} [search] Search term to filter results
|
|
1916
|
+
* @param {UpdateCollectionsRequest} [updateCollectionsRequest] Update collections in bulk.
|
|
1917
|
+
* @param {*} [options] Override http request option.
|
|
1918
|
+
* @throws {RequiredError}
|
|
1919
|
+
*/
|
|
1920
|
+
updateCollections(project: string, pageToken?: number, pageSize?: number, search?: string, updateCollectionsRequest?: UpdateCollectionsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionsResponse>>;
|
|
1921
|
+
};
|
|
1922
|
+
/**
|
|
1923
|
+
* CollectionsApi - factory interface
|
|
1924
|
+
* @export
|
|
1925
|
+
*/
|
|
1926
|
+
export declare const CollectionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1927
|
+
/**
|
|
1928
|
+
*
|
|
1929
|
+
* @summary List website collections
|
|
1930
|
+
* @param {CollectionsApiListCollectionsRequest} requestParameters Request parameters.
|
|
1931
|
+
* @param {*} [options] Override http request option.
|
|
1932
|
+
* @throws {RequiredError}
|
|
1933
|
+
*/
|
|
1934
|
+
listCollections(requestParameters: CollectionsApiListCollectionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<CollectionsResponse>;
|
|
1935
|
+
/**
|
|
1936
|
+
*
|
|
1937
|
+
* @summary Update website collection
|
|
1938
|
+
* @param {CollectionsApiUpdateCollectionRequest} requestParameters Request parameters.
|
|
1939
|
+
* @param {*} [options] Override http request option.
|
|
1940
|
+
* @throws {RequiredError}
|
|
1941
|
+
*/
|
|
1942
|
+
updateCollection(requestParameters: CollectionsApiUpdateCollectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<Collection>;
|
|
1943
|
+
/**
|
|
1944
|
+
*
|
|
1945
|
+
* @summary Update website collections
|
|
1946
|
+
* @param {CollectionsApiUpdateCollectionsRequest} requestParameters Request parameters.
|
|
1947
|
+
* @param {*} [options] Override http request option.
|
|
1948
|
+
* @throws {RequiredError}
|
|
936
1949
|
*/
|
|
937
|
-
|
|
1950
|
+
updateCollections(requestParameters: CollectionsApiUpdateCollectionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<CollectionsResponse>;
|
|
1951
|
+
};
|
|
1952
|
+
/**
|
|
1953
|
+
* Request parameters for listCollections operation in CollectionsApi.
|
|
1954
|
+
* @export
|
|
1955
|
+
* @interface CollectionsApiListCollectionsRequest
|
|
1956
|
+
*/
|
|
1957
|
+
export interface CollectionsApiListCollectionsRequest {
|
|
938
1958
|
/**
|
|
939
|
-
*
|
|
1959
|
+
* What project it is
|
|
940
1960
|
* @type {string}
|
|
941
|
-
* @memberof
|
|
1961
|
+
* @memberof CollectionsApiListCollections
|
|
942
1962
|
*/
|
|
943
|
-
|
|
1963
|
+
readonly project: string;
|
|
944
1964
|
/**
|
|
945
|
-
*
|
|
946
|
-
* @type {
|
|
947
|
-
* @memberof
|
|
1965
|
+
* Page reference token
|
|
1966
|
+
* @type {number}
|
|
1967
|
+
* @memberof CollectionsApiListCollections
|
|
948
1968
|
*/
|
|
949
|
-
|
|
1969
|
+
readonly pageToken?: number;
|
|
950
1970
|
/**
|
|
951
|
-
*
|
|
952
|
-
* @type {
|
|
953
|
-
* @memberof
|
|
1971
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1972
|
+
* @type {number}
|
|
1973
|
+
* @memberof CollectionsApiListCollections
|
|
954
1974
|
*/
|
|
955
|
-
|
|
1975
|
+
readonly pageSize?: number;
|
|
956
1976
|
/**
|
|
957
|
-
*
|
|
1977
|
+
* Search term to filter results
|
|
958
1978
|
* @type {string}
|
|
959
|
-
* @memberof
|
|
960
|
-
*/
|
|
961
|
-
'gtin'?: string | null;
|
|
962
|
-
/**
|
|
963
|
-
*
|
|
964
|
-
* @type {Array<MetaField>}
|
|
965
|
-
* @memberof Variant
|
|
1979
|
+
* @memberof CollectionsApiListCollections
|
|
966
1980
|
*/
|
|
967
|
-
|
|
1981
|
+
readonly search?: string;
|
|
968
1982
|
}
|
|
969
1983
|
/**
|
|
970
|
-
*
|
|
1984
|
+
* Request parameters for updateCollection operation in CollectionsApi.
|
|
971
1985
|
* @export
|
|
972
|
-
* @interface
|
|
1986
|
+
* @interface CollectionsApiUpdateCollectionRequest
|
|
973
1987
|
*/
|
|
974
|
-
export interface
|
|
1988
|
+
export interface CollectionsApiUpdateCollectionRequest {
|
|
975
1989
|
/**
|
|
976
|
-
*
|
|
1990
|
+
* What project it is
|
|
977
1991
|
* @type {string}
|
|
978
|
-
* @memberof
|
|
1992
|
+
* @memberof CollectionsApiUpdateCollection
|
|
979
1993
|
*/
|
|
980
|
-
|
|
1994
|
+
readonly project: string;
|
|
981
1995
|
/**
|
|
982
|
-
*
|
|
1996
|
+
* Collection\'s unique identifier
|
|
983
1997
|
* @type {string}
|
|
984
|
-
* @memberof
|
|
1998
|
+
* @memberof CollectionsApiUpdateCollection
|
|
985
1999
|
*/
|
|
986
|
-
|
|
2000
|
+
readonly collectionId: string;
|
|
2001
|
+
/**
|
|
2002
|
+
*
|
|
2003
|
+
* @type {UpdateCollectionRequest}
|
|
2004
|
+
* @memberof CollectionsApiUpdateCollection
|
|
2005
|
+
*/
|
|
2006
|
+
readonly updateCollectionRequest?: UpdateCollectionRequest;
|
|
987
2007
|
}
|
|
988
2008
|
/**
|
|
989
|
-
*
|
|
2009
|
+
* Request parameters for updateCollections operation in CollectionsApi.
|
|
990
2010
|
* @export
|
|
991
|
-
* @interface
|
|
2011
|
+
* @interface CollectionsApiUpdateCollectionsRequest
|
|
992
2012
|
*/
|
|
993
|
-
export interface
|
|
2013
|
+
export interface CollectionsApiUpdateCollectionsRequest {
|
|
994
2014
|
/**
|
|
995
|
-
*
|
|
2015
|
+
* What project it is
|
|
996
2016
|
* @type {string}
|
|
997
|
-
* @memberof
|
|
2017
|
+
* @memberof CollectionsApiUpdateCollections
|
|
998
2018
|
*/
|
|
999
|
-
|
|
2019
|
+
readonly project: string;
|
|
1000
2020
|
/**
|
|
1001
|
-
*
|
|
1002
|
-
* @type {
|
|
1003
|
-
* @memberof
|
|
2021
|
+
* Page reference token
|
|
2022
|
+
* @type {number}
|
|
2023
|
+
* @memberof CollectionsApiUpdateCollections
|
|
1004
2024
|
*/
|
|
1005
|
-
|
|
2025
|
+
readonly pageToken?: number;
|
|
1006
2026
|
/**
|
|
1007
|
-
*
|
|
2027
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2028
|
+
* @type {number}
|
|
2029
|
+
* @memberof CollectionsApiUpdateCollections
|
|
2030
|
+
*/
|
|
2031
|
+
readonly pageSize?: number;
|
|
2032
|
+
/**
|
|
2033
|
+
* Search term to filter results
|
|
1008
2034
|
* @type {string}
|
|
1009
|
-
* @memberof
|
|
2035
|
+
* @memberof CollectionsApiUpdateCollections
|
|
1010
2036
|
*/
|
|
1011
|
-
|
|
2037
|
+
readonly search?: string;
|
|
2038
|
+
/**
|
|
2039
|
+
* Update collections in bulk.
|
|
2040
|
+
* @type {UpdateCollectionsRequest}
|
|
2041
|
+
* @memberof CollectionsApiUpdateCollections
|
|
2042
|
+
*/
|
|
2043
|
+
readonly updateCollectionsRequest?: UpdateCollectionsRequest;
|
|
2044
|
+
}
|
|
2045
|
+
/**
|
|
2046
|
+
* CollectionsApi - object-oriented interface
|
|
2047
|
+
* @export
|
|
2048
|
+
* @class CollectionsApi
|
|
2049
|
+
* @extends {BaseAPI}
|
|
2050
|
+
*/
|
|
2051
|
+
export declare class CollectionsApi extends BaseAPI {
|
|
1012
2052
|
/**
|
|
1013
2053
|
*
|
|
1014
|
-
* @
|
|
1015
|
-
* @
|
|
2054
|
+
* @summary List website collections
|
|
2055
|
+
* @param {CollectionsApiListCollectionsRequest} requestParameters Request parameters.
|
|
2056
|
+
* @param {*} [options] Override http request option.
|
|
2057
|
+
* @throws {RequiredError}
|
|
2058
|
+
* @memberof CollectionsApi
|
|
1016
2059
|
*/
|
|
1017
|
-
|
|
2060
|
+
listCollections(requestParameters: CollectionsApiListCollectionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionsResponse, any>>;
|
|
1018
2061
|
/**
|
|
1019
2062
|
*
|
|
1020
|
-
* @
|
|
1021
|
-
* @
|
|
2063
|
+
* @summary Update website collection
|
|
2064
|
+
* @param {CollectionsApiUpdateCollectionRequest} requestParameters Request parameters.
|
|
2065
|
+
* @param {*} [options] Override http request option.
|
|
2066
|
+
* @throws {RequiredError}
|
|
2067
|
+
* @memberof CollectionsApi
|
|
1022
2068
|
*/
|
|
1023
|
-
|
|
2069
|
+
updateCollection(requestParameters: CollectionsApiUpdateCollectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Collection, any>>;
|
|
1024
2070
|
/**
|
|
1025
2071
|
*
|
|
1026
|
-
* @
|
|
1027
|
-
* @
|
|
2072
|
+
* @summary Update website collections
|
|
2073
|
+
* @param {CollectionsApiUpdateCollectionsRequest} requestParameters Request parameters.
|
|
2074
|
+
* @param {*} [options] Override http request option.
|
|
2075
|
+
* @throws {RequiredError}
|
|
2076
|
+
* @memberof CollectionsApi
|
|
1028
2077
|
*/
|
|
1029
|
-
|
|
2078
|
+
updateCollections(requestParameters: CollectionsApiUpdateCollectionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionsResponse, any>>;
|
|
1030
2079
|
}
|
|
1031
2080
|
/**
|
|
1032
2081
|
* CrossSellApi - axios parameter creator
|
|
@@ -1296,6 +2345,242 @@ export declare class MenuApi extends BaseAPI {
|
|
|
1296
2345
|
*/
|
|
1297
2346
|
updateMenu(requestParameters: MenuApiUpdateMenuRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Menu, any>>;
|
|
1298
2347
|
}
|
|
2348
|
+
/**
|
|
2349
|
+
* PagesApi - axios parameter creator
|
|
2350
|
+
* @export
|
|
2351
|
+
*/
|
|
2352
|
+
export declare const PagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2353
|
+
/**
|
|
2354
|
+
*
|
|
2355
|
+
* @summary List website pages
|
|
2356
|
+
* @param {string} project What project it is
|
|
2357
|
+
* @param {number} [pageToken] Page reference token
|
|
2358
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2359
|
+
* @param {string} [search] Search term to filter results
|
|
2360
|
+
* @param {*} [options] Override http request option.
|
|
2361
|
+
* @throws {RequiredError}
|
|
2362
|
+
*/
|
|
2363
|
+
listPages: (project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2364
|
+
/**
|
|
2365
|
+
*
|
|
2366
|
+
* @summary Update website page
|
|
2367
|
+
* @param {string} project What project it is
|
|
2368
|
+
* @param {string} pageId Page\'s unique identifier
|
|
2369
|
+
* @param {UpdatePageRequest} [updatePageRequest]
|
|
2370
|
+
* @param {*} [options] Override http request option.
|
|
2371
|
+
* @throws {RequiredError}
|
|
2372
|
+
*/
|
|
2373
|
+
updatePage: (project: string, pageId: string, updatePageRequest?: UpdatePageRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2374
|
+
/**
|
|
2375
|
+
*
|
|
2376
|
+
* @summary Update website pages
|
|
2377
|
+
* @param {string} project What project it is
|
|
2378
|
+
* @param {number} [pageToken] Page reference token
|
|
2379
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2380
|
+
* @param {string} [search] Search term to filter results
|
|
2381
|
+
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2382
|
+
* @param {*} [options] Override http request option.
|
|
2383
|
+
* @throws {RequiredError}
|
|
2384
|
+
*/
|
|
2385
|
+
updatePages: (project: string, pageToken?: number, pageSize?: number, search?: string, updatePagesRequest?: UpdatePagesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2386
|
+
};
|
|
2387
|
+
/**
|
|
2388
|
+
* PagesApi - functional programming interface
|
|
2389
|
+
* @export
|
|
2390
|
+
*/
|
|
2391
|
+
export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
2392
|
+
/**
|
|
2393
|
+
*
|
|
2394
|
+
* @summary List website pages
|
|
2395
|
+
* @param {string} project What project it is
|
|
2396
|
+
* @param {number} [pageToken] Page reference token
|
|
2397
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2398
|
+
* @param {string} [search] Search term to filter results
|
|
2399
|
+
* @param {*} [options] Override http request option.
|
|
2400
|
+
* @throws {RequiredError}
|
|
2401
|
+
*/
|
|
2402
|
+
listPages(project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PagesResponse>>;
|
|
2403
|
+
/**
|
|
2404
|
+
*
|
|
2405
|
+
* @summary Update website page
|
|
2406
|
+
* @param {string} project What project it is
|
|
2407
|
+
* @param {string} pageId Page\'s unique identifier
|
|
2408
|
+
* @param {UpdatePageRequest} [updatePageRequest]
|
|
2409
|
+
* @param {*} [options] Override http request option.
|
|
2410
|
+
* @throws {RequiredError}
|
|
2411
|
+
*/
|
|
2412
|
+
updatePage(project: string, pageId: string, updatePageRequest?: UpdatePageRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Page>>;
|
|
2413
|
+
/**
|
|
2414
|
+
*
|
|
2415
|
+
* @summary Update website pages
|
|
2416
|
+
* @param {string} project What project it is
|
|
2417
|
+
* @param {number} [pageToken] Page reference token
|
|
2418
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2419
|
+
* @param {string} [search] Search term to filter results
|
|
2420
|
+
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2421
|
+
* @param {*} [options] Override http request option.
|
|
2422
|
+
* @throws {RequiredError}
|
|
2423
|
+
*/
|
|
2424
|
+
updatePages(project: string, pageToken?: number, pageSize?: number, search?: string, updatePagesRequest?: UpdatePagesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PagesResponse>>;
|
|
2425
|
+
};
|
|
2426
|
+
/**
|
|
2427
|
+
* PagesApi - factory interface
|
|
2428
|
+
* @export
|
|
2429
|
+
*/
|
|
2430
|
+
export declare const PagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2431
|
+
/**
|
|
2432
|
+
*
|
|
2433
|
+
* @summary List website pages
|
|
2434
|
+
* @param {PagesApiListPagesRequest} requestParameters Request parameters.
|
|
2435
|
+
* @param {*} [options] Override http request option.
|
|
2436
|
+
* @throws {RequiredError}
|
|
2437
|
+
*/
|
|
2438
|
+
listPages(requestParameters: PagesApiListPagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<PagesResponse>;
|
|
2439
|
+
/**
|
|
2440
|
+
*
|
|
2441
|
+
* @summary Update website page
|
|
2442
|
+
* @param {PagesApiUpdatePageRequest} requestParameters Request parameters.
|
|
2443
|
+
* @param {*} [options] Override http request option.
|
|
2444
|
+
* @throws {RequiredError}
|
|
2445
|
+
*/
|
|
2446
|
+
updatePage(requestParameters: PagesApiUpdatePageRequest, options?: RawAxiosRequestConfig): AxiosPromise<Page>;
|
|
2447
|
+
/**
|
|
2448
|
+
*
|
|
2449
|
+
* @summary Update website pages
|
|
2450
|
+
* @param {PagesApiUpdatePagesRequest} requestParameters Request parameters.
|
|
2451
|
+
* @param {*} [options] Override http request option.
|
|
2452
|
+
* @throws {RequiredError}
|
|
2453
|
+
*/
|
|
2454
|
+
updatePages(requestParameters: PagesApiUpdatePagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<PagesResponse>;
|
|
2455
|
+
};
|
|
2456
|
+
/**
|
|
2457
|
+
* Request parameters for listPages operation in PagesApi.
|
|
2458
|
+
* @export
|
|
2459
|
+
* @interface PagesApiListPagesRequest
|
|
2460
|
+
*/
|
|
2461
|
+
export interface PagesApiListPagesRequest {
|
|
2462
|
+
/**
|
|
2463
|
+
* What project it is
|
|
2464
|
+
* @type {string}
|
|
2465
|
+
* @memberof PagesApiListPages
|
|
2466
|
+
*/
|
|
2467
|
+
readonly project: string;
|
|
2468
|
+
/**
|
|
2469
|
+
* Page reference token
|
|
2470
|
+
* @type {number}
|
|
2471
|
+
* @memberof PagesApiListPages
|
|
2472
|
+
*/
|
|
2473
|
+
readonly pageToken?: number;
|
|
2474
|
+
/**
|
|
2475
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2476
|
+
* @type {number}
|
|
2477
|
+
* @memberof PagesApiListPages
|
|
2478
|
+
*/
|
|
2479
|
+
readonly pageSize?: number;
|
|
2480
|
+
/**
|
|
2481
|
+
* Search term to filter results
|
|
2482
|
+
* @type {string}
|
|
2483
|
+
* @memberof PagesApiListPages
|
|
2484
|
+
*/
|
|
2485
|
+
readonly search?: string;
|
|
2486
|
+
}
|
|
2487
|
+
/**
|
|
2488
|
+
* Request parameters for updatePage operation in PagesApi.
|
|
2489
|
+
* @export
|
|
2490
|
+
* @interface PagesApiUpdatePageRequest
|
|
2491
|
+
*/
|
|
2492
|
+
export interface PagesApiUpdatePageRequest {
|
|
2493
|
+
/**
|
|
2494
|
+
* What project it is
|
|
2495
|
+
* @type {string}
|
|
2496
|
+
* @memberof PagesApiUpdatePage
|
|
2497
|
+
*/
|
|
2498
|
+
readonly project: string;
|
|
2499
|
+
/**
|
|
2500
|
+
* Page\'s unique identifier
|
|
2501
|
+
* @type {string}
|
|
2502
|
+
* @memberof PagesApiUpdatePage
|
|
2503
|
+
*/
|
|
2504
|
+
readonly pageId: string;
|
|
2505
|
+
/**
|
|
2506
|
+
*
|
|
2507
|
+
* @type {UpdatePageRequest}
|
|
2508
|
+
* @memberof PagesApiUpdatePage
|
|
2509
|
+
*/
|
|
2510
|
+
readonly updatePageRequest?: UpdatePageRequest;
|
|
2511
|
+
}
|
|
2512
|
+
/**
|
|
2513
|
+
* Request parameters for updatePages operation in PagesApi.
|
|
2514
|
+
* @export
|
|
2515
|
+
* @interface PagesApiUpdatePagesRequest
|
|
2516
|
+
*/
|
|
2517
|
+
export interface PagesApiUpdatePagesRequest {
|
|
2518
|
+
/**
|
|
2519
|
+
* What project it is
|
|
2520
|
+
* @type {string}
|
|
2521
|
+
* @memberof PagesApiUpdatePages
|
|
2522
|
+
*/
|
|
2523
|
+
readonly project: string;
|
|
2524
|
+
/**
|
|
2525
|
+
* Page reference token
|
|
2526
|
+
* @type {number}
|
|
2527
|
+
* @memberof PagesApiUpdatePages
|
|
2528
|
+
*/
|
|
2529
|
+
readonly pageToken?: number;
|
|
2530
|
+
/**
|
|
2531
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2532
|
+
* @type {number}
|
|
2533
|
+
* @memberof PagesApiUpdatePages
|
|
2534
|
+
*/
|
|
2535
|
+
readonly pageSize?: number;
|
|
2536
|
+
/**
|
|
2537
|
+
* Search term to filter results
|
|
2538
|
+
* @type {string}
|
|
2539
|
+
* @memberof PagesApiUpdatePages
|
|
2540
|
+
*/
|
|
2541
|
+
readonly search?: string;
|
|
2542
|
+
/**
|
|
2543
|
+
* Update pages in bulk.
|
|
2544
|
+
* @type {UpdatePagesRequest}
|
|
2545
|
+
* @memberof PagesApiUpdatePages
|
|
2546
|
+
*/
|
|
2547
|
+
readonly updatePagesRequest?: UpdatePagesRequest;
|
|
2548
|
+
}
|
|
2549
|
+
/**
|
|
2550
|
+
* PagesApi - object-oriented interface
|
|
2551
|
+
* @export
|
|
2552
|
+
* @class PagesApi
|
|
2553
|
+
* @extends {BaseAPI}
|
|
2554
|
+
*/
|
|
2555
|
+
export declare class PagesApi extends BaseAPI {
|
|
2556
|
+
/**
|
|
2557
|
+
*
|
|
2558
|
+
* @summary List website pages
|
|
2559
|
+
* @param {PagesApiListPagesRequest} requestParameters Request parameters.
|
|
2560
|
+
* @param {*} [options] Override http request option.
|
|
2561
|
+
* @throws {RequiredError}
|
|
2562
|
+
* @memberof PagesApi
|
|
2563
|
+
*/
|
|
2564
|
+
listPages(requestParameters: PagesApiListPagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PagesResponse, any>>;
|
|
2565
|
+
/**
|
|
2566
|
+
*
|
|
2567
|
+
* @summary Update website page
|
|
2568
|
+
* @param {PagesApiUpdatePageRequest} requestParameters Request parameters.
|
|
2569
|
+
* @param {*} [options] Override http request option.
|
|
2570
|
+
* @throws {RequiredError}
|
|
2571
|
+
* @memberof PagesApi
|
|
2572
|
+
*/
|
|
2573
|
+
updatePage(requestParameters: PagesApiUpdatePageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Page, any>>;
|
|
2574
|
+
/**
|
|
2575
|
+
*
|
|
2576
|
+
* @summary Update website pages
|
|
2577
|
+
* @param {PagesApiUpdatePagesRequest} requestParameters Request parameters.
|
|
2578
|
+
* @param {*} [options] Override http request option.
|
|
2579
|
+
* @throws {RequiredError}
|
|
2580
|
+
* @memberof PagesApi
|
|
2581
|
+
*/
|
|
2582
|
+
updatePages(requestParameters: PagesApiUpdatePagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PagesResponse, any>>;
|
|
2583
|
+
}
|
|
1299
2584
|
/**
|
|
1300
2585
|
* PaymentApi - axios parameter creator
|
|
1301
2586
|
* @export
|