@teemill/website 0.6.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 +2411 -311
- package/base.ts +3 -3
- package/common.ts +3 -3
- package/configuration.ts +10 -4
- package/dist/api.d.ts +1585 -148
- package/dist/api.js +1112 -86
- 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 +1585 -148
- package/dist/esm/api.js +1136 -126
- 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.6.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
|
|
@@ -245,6 +369,25 @@ export interface Image {
|
|
|
245
369
|
*/
|
|
246
370
|
'updatedAt'?: string;
|
|
247
371
|
}
|
|
372
|
+
/**
|
|
373
|
+
*
|
|
374
|
+
* @export
|
|
375
|
+
* @interface ListRoutesResponse
|
|
376
|
+
*/
|
|
377
|
+
export interface ListRoutesResponse {
|
|
378
|
+
/**
|
|
379
|
+
*
|
|
380
|
+
* @type {Array<Route>}
|
|
381
|
+
* @memberof ListRoutesResponse
|
|
382
|
+
*/
|
|
383
|
+
'routes': Array<Route>;
|
|
384
|
+
/**
|
|
385
|
+
*
|
|
386
|
+
* @type {number}
|
|
387
|
+
* @memberof ListRoutesResponse
|
|
388
|
+
*/
|
|
389
|
+
'nextPageToken': number;
|
|
390
|
+
}
|
|
248
391
|
/**
|
|
249
392
|
*
|
|
250
393
|
* @export
|
|
@@ -314,6 +457,68 @@ export interface MetaField {
|
|
|
314
457
|
*/
|
|
315
458
|
'value': string;
|
|
316
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
|
+
}
|
|
317
522
|
/**
|
|
318
523
|
*
|
|
319
524
|
* @export
|
|
@@ -583,6 +788,43 @@ export interface ProductWarehouseProduct {
|
|
|
583
788
|
*/
|
|
584
789
|
'gfnProductRef'?: string;
|
|
585
790
|
}
|
|
791
|
+
/**
|
|
792
|
+
*
|
|
793
|
+
* @export
|
|
794
|
+
* @interface Route
|
|
795
|
+
*/
|
|
796
|
+
export interface Route {
|
|
797
|
+
/**
|
|
798
|
+
*
|
|
799
|
+
* @type {string}
|
|
800
|
+
* @memberof Route
|
|
801
|
+
*/
|
|
802
|
+
'url': string;
|
|
803
|
+
/**
|
|
804
|
+
*
|
|
805
|
+
* @type {string}
|
|
806
|
+
* @memberof Route
|
|
807
|
+
*/
|
|
808
|
+
'title': string;
|
|
809
|
+
/**
|
|
810
|
+
*
|
|
811
|
+
* @type {string}
|
|
812
|
+
* @memberof Route
|
|
813
|
+
*/
|
|
814
|
+
'image': string | null;
|
|
815
|
+
/**
|
|
816
|
+
*
|
|
817
|
+
* @type {string}
|
|
818
|
+
* @memberof Route
|
|
819
|
+
*/
|
|
820
|
+
'type': string;
|
|
821
|
+
/**
|
|
822
|
+
*
|
|
823
|
+
* @type {boolean}
|
|
824
|
+
* @memberof Route
|
|
825
|
+
*/
|
|
826
|
+
'published': boolean;
|
|
827
|
+
}
|
|
586
828
|
/**
|
|
587
829
|
* SEO metadata for the product
|
|
588
830
|
* @export
|
|
@@ -686,291 +928,1154 @@ export interface SubmenuItem {
|
|
|
686
928
|
/**
|
|
687
929
|
*
|
|
688
930
|
* @export
|
|
689
|
-
* @interface
|
|
931
|
+
* @interface TargetSearchPhraseData
|
|
690
932
|
*/
|
|
691
|
-
export interface
|
|
933
|
+
export interface TargetSearchPhraseData {
|
|
692
934
|
/**
|
|
693
|
-
*
|
|
694
|
-
* @type {
|
|
695
|
-
* @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
|
|
696
938
|
*/
|
|
697
|
-
'
|
|
939
|
+
'targetSearchPhrase'?: string;
|
|
940
|
+
/**
|
|
941
|
+
* Synonyms for the target search phrase.
|
|
942
|
+
* @type {Array<string>}
|
|
943
|
+
* @memberof TargetSearchPhraseData
|
|
944
|
+
*/
|
|
945
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
698
946
|
}
|
|
699
947
|
/**
|
|
700
948
|
*
|
|
701
949
|
* @export
|
|
702
|
-
* @interface
|
|
950
|
+
* @interface UpdateBlogRequest
|
|
703
951
|
*/
|
|
704
|
-
export interface
|
|
952
|
+
export interface UpdateBlogRequest {
|
|
705
953
|
/**
|
|
706
|
-
*
|
|
954
|
+
* Blog title
|
|
707
955
|
* @type {string}
|
|
708
|
-
* @memberof
|
|
956
|
+
* @memberof UpdateBlogRequest
|
|
709
957
|
*/
|
|
710
|
-
'
|
|
958
|
+
'title'?: string;
|
|
711
959
|
/**
|
|
712
|
-
*
|
|
960
|
+
* Blog description
|
|
713
961
|
* @type {string}
|
|
714
|
-
* @memberof
|
|
962
|
+
* @memberof UpdateBlogRequest
|
|
715
963
|
*/
|
|
716
|
-
'
|
|
964
|
+
'description'?: string;
|
|
717
965
|
/**
|
|
718
|
-
*
|
|
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.
|
|
719
967
|
* @type {string}
|
|
720
|
-
* @memberof
|
|
968
|
+
* @memberof UpdateBlogRequest
|
|
721
969
|
*/
|
|
722
|
-
'
|
|
970
|
+
'slug'?: string;
|
|
723
971
|
/**
|
|
724
972
|
*
|
|
725
|
-
* @type {
|
|
726
|
-
* @memberof
|
|
973
|
+
* @type {UpdateBlogsRequestBlogsInnerSeoMetadata}
|
|
974
|
+
* @memberof UpdateBlogRequest
|
|
727
975
|
*/
|
|
728
|
-
'
|
|
976
|
+
'seoMetadata'?: UpdateBlogsRequestBlogsInnerSeoMetadata;
|
|
729
977
|
/**
|
|
730
|
-
*
|
|
731
|
-
* @type {
|
|
732
|
-
* @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
|
|
733
981
|
*/
|
|
734
|
-
'
|
|
982
|
+
'targetSearchPhrase'?: string;
|
|
983
|
+
/**
|
|
984
|
+
* Synonyms for the target search phrase.
|
|
985
|
+
* @type {Array<string>}
|
|
986
|
+
* @memberof UpdateBlogRequest
|
|
987
|
+
*/
|
|
988
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
735
989
|
}
|
|
736
990
|
/**
|
|
737
991
|
*
|
|
738
992
|
* @export
|
|
739
|
-
* @interface
|
|
993
|
+
* @interface UpdateBlogsRequest
|
|
740
994
|
*/
|
|
741
|
-
export interface
|
|
742
|
-
/**
|
|
743
|
-
*
|
|
744
|
-
* @type {string}
|
|
745
|
-
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
746
|
-
*/
|
|
747
|
-
'id': string | null;
|
|
995
|
+
export interface UpdateBlogsRequest {
|
|
748
996
|
/**
|
|
749
997
|
*
|
|
750
|
-
* @type {
|
|
751
|
-
* @memberof
|
|
998
|
+
* @type {Array<UpdateBlogsRequestBlogsInner>}
|
|
999
|
+
* @memberof UpdateBlogsRequest
|
|
752
1000
|
*/
|
|
753
|
-
'
|
|
1001
|
+
'blogs'?: Array<UpdateBlogsRequestBlogsInner>;
|
|
754
1002
|
/**
|
|
755
|
-
*
|
|
1003
|
+
* The primary target search phrase for the blog post that you wish to rank for in search engine results.
|
|
756
1004
|
* @type {string}
|
|
757
|
-
* @memberof
|
|
1005
|
+
* @memberof UpdateBlogsRequest
|
|
758
1006
|
*/
|
|
759
|
-
'
|
|
760
|
-
/**
|
|
761
|
-
*
|
|
762
|
-
* @type {number}
|
|
763
|
-
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
764
|
-
*/
|
|
765
|
-
'order': number;
|
|
1007
|
+
'targetSearchPhrase'?: string;
|
|
766
1008
|
/**
|
|
767
|
-
*
|
|
768
|
-
* @type {Array<
|
|
769
|
-
* @memberof
|
|
1009
|
+
* Synonyms for the target search phrase.
|
|
1010
|
+
* @type {Array<string>}
|
|
1011
|
+
* @memberof UpdateBlogsRequest
|
|
770
1012
|
*/
|
|
771
|
-
'
|
|
1013
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
772
1014
|
}
|
|
773
1015
|
/**
|
|
774
1016
|
*
|
|
775
1017
|
* @export
|
|
776
|
-
* @interface
|
|
1018
|
+
* @interface UpdateBlogsRequestBlogsInner
|
|
777
1019
|
*/
|
|
778
|
-
export interface
|
|
1020
|
+
export interface UpdateBlogsRequestBlogsInner {
|
|
779
1021
|
/**
|
|
780
|
-
*
|
|
1022
|
+
* Unique object identifier
|
|
781
1023
|
* @type {string}
|
|
782
|
-
* @memberof
|
|
1024
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
783
1025
|
*/
|
|
784
|
-
'id': string
|
|
1026
|
+
'id': string;
|
|
785
1027
|
/**
|
|
786
|
-
*
|
|
1028
|
+
* Blog title
|
|
787
1029
|
* @type {string}
|
|
788
|
-
* @memberof
|
|
1030
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
789
1031
|
*/
|
|
790
|
-
'
|
|
1032
|
+
'title'?: string;
|
|
791
1033
|
/**
|
|
792
|
-
*
|
|
1034
|
+
* Blog description
|
|
793
1035
|
* @type {string}
|
|
794
|
-
* @memberof
|
|
1036
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
795
1037
|
*/
|
|
796
|
-
'
|
|
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;
|
|
797
1045
|
/**
|
|
798
1046
|
*
|
|
799
|
-
* @type {
|
|
800
|
-
* @memberof
|
|
1047
|
+
* @type {UpdateBlogsRequestBlogsInnerSeoMetadata}
|
|
1048
|
+
* @memberof UpdateBlogsRequestBlogsInner
|
|
801
1049
|
*/
|
|
802
|
-
'
|
|
1050
|
+
'seoMetadata'?: UpdateBlogsRequestBlogsInnerSeoMetadata;
|
|
803
1051
|
}
|
|
804
1052
|
/**
|
|
805
1053
|
*
|
|
806
1054
|
* @export
|
|
807
|
-
* @interface
|
|
1055
|
+
* @interface UpdateBlogsRequestBlogsInnerSeoMetadata
|
|
808
1056
|
*/
|
|
809
|
-
export interface
|
|
1057
|
+
export interface UpdateBlogsRequestBlogsInnerSeoMetadata {
|
|
810
1058
|
/**
|
|
811
|
-
*
|
|
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.
|
|
812
1060
|
* @type {string}
|
|
813
|
-
* @memberof
|
|
1061
|
+
* @memberof UpdateBlogsRequestBlogsInnerSeoMetadata
|
|
814
1062
|
*/
|
|
815
|
-
'
|
|
1063
|
+
'title'?: string | null;
|
|
816
1064
|
/**
|
|
817
|
-
*
|
|
818
|
-
* @type {
|
|
819
|
-
* @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
|
|
820
1068
|
*/
|
|
821
|
-
'
|
|
1069
|
+
'description'?: string | null;
|
|
1070
|
+
}
|
|
1071
|
+
/**
|
|
1072
|
+
*
|
|
1073
|
+
* @export
|
|
1074
|
+
* @interface UpdateCollectionRequest
|
|
1075
|
+
*/
|
|
1076
|
+
export interface UpdateCollectionRequest {
|
|
1077
|
+
/**
|
|
1078
|
+
* Collection title
|
|
1079
|
+
* @type {string}
|
|
1080
|
+
* @memberof UpdateCollectionRequest
|
|
1081
|
+
*/
|
|
1082
|
+
'title'?: string;
|
|
1083
|
+
/**
|
|
1084
|
+
* Collection description
|
|
1085
|
+
* @type {string}
|
|
1086
|
+
* @memberof UpdateCollectionRequest
|
|
1087
|
+
*/
|
|
1088
|
+
'description'?: string;
|
|
1089
|
+
/**
|
|
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
|
|
1093
|
+
*/
|
|
1094
|
+
'slug'?: string;
|
|
822
1095
|
/**
|
|
823
1096
|
*
|
|
1097
|
+
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
|
1098
|
+
* @memberof UpdateCollectionRequest
|
|
1099
|
+
*/
|
|
1100
|
+
'seoMetadata'?: UpdateCollectionsRequestCollectionsInnerSeoMetadata;
|
|
1101
|
+
/**
|
|
1102
|
+
* The primary target search phrase for the collection that you wish to rank for in search engine results.
|
|
824
1103
|
* @type {string}
|
|
825
|
-
* @memberof
|
|
1104
|
+
* @memberof UpdateCollectionRequest
|
|
826
1105
|
*/
|
|
827
|
-
'
|
|
1106
|
+
'targetSearchPhrase'?: string;
|
|
828
1107
|
/**
|
|
829
|
-
*
|
|
1108
|
+
* Synonyms for the target search phrase.
|
|
1109
|
+
* @type {Array<string>}
|
|
1110
|
+
* @memberof UpdateCollectionRequest
|
|
1111
|
+
*/
|
|
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
|
|
830
1135
|
* @type {string}
|
|
831
|
-
* @memberof
|
|
1136
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
832
1137
|
*/
|
|
833
|
-
'
|
|
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;
|
|
834
1157
|
/**
|
|
835
1158
|
*
|
|
836
|
-
* @type {
|
|
837
|
-
* @memberof
|
|
1159
|
+
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
|
1160
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
838
1161
|
*/
|
|
839
|
-
'
|
|
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;
|
|
840
1232
|
/**
|
|
841
1233
|
*
|
|
842
1234
|
* @type {number}
|
|
843
|
-
* @memberof
|
|
1235
|
+
* @memberof UpdateMenuRequestItem
|
|
844
1236
|
*/
|
|
845
|
-
'
|
|
1237
|
+
'order': number;
|
|
846
1238
|
/**
|
|
847
1239
|
*
|
|
848
|
-
* @type {
|
|
849
|
-
* @memberof
|
|
1240
|
+
* @type {Array<UpdateMenuRequestItemSubmenuInner>}
|
|
1241
|
+
* @memberof UpdateMenuRequestItem
|
|
850
1242
|
*/
|
|
851
|
-
'
|
|
1243
|
+
'submenu': Array<UpdateMenuRequestItemSubmenuInner>;
|
|
1244
|
+
}
|
|
1245
|
+
/**
|
|
1246
|
+
*
|
|
1247
|
+
* @export
|
|
1248
|
+
* @interface UpdateMenuRequestItemSubmenuInner
|
|
1249
|
+
*/
|
|
1250
|
+
export interface UpdateMenuRequestItemSubmenuInner {
|
|
852
1251
|
/**
|
|
853
1252
|
*
|
|
854
|
-
* @type {
|
|
855
|
-
* @memberof
|
|
1253
|
+
* @type {string}
|
|
1254
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
856
1255
|
*/
|
|
857
|
-
'
|
|
1256
|
+
'id': string | null;
|
|
858
1257
|
/**
|
|
859
1258
|
*
|
|
860
|
-
* @type {
|
|
861
|
-
* @memberof
|
|
1259
|
+
* @type {string}
|
|
1260
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
862
1261
|
*/
|
|
863
|
-
'
|
|
1262
|
+
'title': string;
|
|
864
1263
|
/**
|
|
865
1264
|
*
|
|
866
|
-
* @type {
|
|
867
|
-
* @memberof
|
|
1265
|
+
* @type {string}
|
|
1266
|
+
* @memberof UpdateMenuRequestItemSubmenuInner
|
|
868
1267
|
*/
|
|
869
|
-
'
|
|
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 {
|
|
870
1288
|
/**
|
|
871
1289
|
*
|
|
872
1290
|
* @type {string}
|
|
873
|
-
* @memberof
|
|
1291
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
874
1292
|
*/
|
|
875
|
-
'
|
|
1293
|
+
'id': string | null;
|
|
876
1294
|
/**
|
|
877
1295
|
*
|
|
878
1296
|
* @type {string}
|
|
879
|
-
* @memberof
|
|
1297
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
880
1298
|
*/
|
|
881
|
-
'
|
|
1299
|
+
'text': string;
|
|
882
1300
|
/**
|
|
883
1301
|
*
|
|
884
1302
|
* @type {string}
|
|
885
|
-
* @memberof
|
|
1303
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
886
1304
|
*/
|
|
887
|
-
'
|
|
1305
|
+
'link': string;
|
|
888
1306
|
/**
|
|
889
|
-
*
|
|
890
|
-
* @type {
|
|
891
|
-
* @memberof
|
|
1307
|
+
*
|
|
1308
|
+
* @type {number}
|
|
1309
|
+
* @memberof UpdateMenuRequestSubmenuItem
|
|
892
1310
|
*/
|
|
893
|
-
'
|
|
1311
|
+
'order': number;
|
|
1312
|
+
}
|
|
1313
|
+
/**
|
|
1314
|
+
*
|
|
1315
|
+
* @export
|
|
1316
|
+
* @interface UpdatePageRequest
|
|
1317
|
+
*/
|
|
1318
|
+
export interface UpdatePageRequest {
|
|
894
1319
|
/**
|
|
895
|
-
*
|
|
896
|
-
* @type {
|
|
897
|
-
* @memberof
|
|
1320
|
+
* Page title
|
|
1321
|
+
* @type {string}
|
|
1322
|
+
* @memberof UpdatePageRequest
|
|
898
1323
|
*/
|
|
899
|
-
'
|
|
1324
|
+
'title'?: string;
|
|
900
1325
|
/**
|
|
901
|
-
*
|
|
1326
|
+
* Page description
|
|
902
1327
|
* @type {string}
|
|
903
|
-
* @memberof
|
|
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
|
|
1581
|
+
*/
|
|
1582
|
+
'src'?: string;
|
|
1583
|
+
/**
|
|
1584
|
+
*
|
|
1585
|
+
* @type {string}
|
|
1586
|
+
* @memberof Video
|
|
1587
|
+
*/
|
|
1588
|
+
'alt'?: string;
|
|
1589
|
+
/**
|
|
1590
|
+
*
|
|
1591
|
+
* @type {number}
|
|
1592
|
+
* @memberof Video
|
|
1593
|
+
*/
|
|
1594
|
+
'sortOrder'?: number;
|
|
1595
|
+
/**
|
|
1596
|
+
*
|
|
1597
|
+
* @type {string}
|
|
1598
|
+
* @memberof Video
|
|
1599
|
+
*/
|
|
1600
|
+
'createdAt'?: string;
|
|
1601
|
+
/**
|
|
1602
|
+
*
|
|
1603
|
+
* @type {string}
|
|
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}
|
|
1949
|
+
*/
|
|
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 {
|
|
1958
|
+
/**
|
|
1959
|
+
* What project it is
|
|
1960
|
+
* @type {string}
|
|
1961
|
+
* @memberof CollectionsApiListCollections
|
|
1962
|
+
*/
|
|
1963
|
+
readonly project: string;
|
|
1964
|
+
/**
|
|
1965
|
+
* Page reference token
|
|
1966
|
+
* @type {number}
|
|
1967
|
+
* @memberof CollectionsApiListCollections
|
|
1968
|
+
*/
|
|
1969
|
+
readonly pageToken?: number;
|
|
1970
|
+
/**
|
|
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
|
|
904
1974
|
*/
|
|
905
|
-
|
|
1975
|
+
readonly pageSize?: number;
|
|
906
1976
|
/**
|
|
907
|
-
*
|
|
908
|
-
* @type {
|
|
909
|
-
* @memberof
|
|
1977
|
+
* Search term to filter results
|
|
1978
|
+
* @type {string}
|
|
1979
|
+
* @memberof CollectionsApiListCollections
|
|
910
1980
|
*/
|
|
911
|
-
|
|
1981
|
+
readonly search?: string;
|
|
912
1982
|
}
|
|
913
1983
|
/**
|
|
914
|
-
*
|
|
1984
|
+
* Request parameters for updateCollection operation in CollectionsApi.
|
|
915
1985
|
* @export
|
|
916
|
-
* @interface
|
|
1986
|
+
* @interface CollectionsApiUpdateCollectionRequest
|
|
917
1987
|
*/
|
|
918
|
-
export interface
|
|
1988
|
+
export interface CollectionsApiUpdateCollectionRequest {
|
|
919
1989
|
/**
|
|
920
|
-
*
|
|
1990
|
+
* What project it is
|
|
921
1991
|
* @type {string}
|
|
922
|
-
* @memberof
|
|
1992
|
+
* @memberof CollectionsApiUpdateCollection
|
|
923
1993
|
*/
|
|
924
|
-
|
|
1994
|
+
readonly project: string;
|
|
925
1995
|
/**
|
|
926
|
-
*
|
|
1996
|
+
* Collection\'s unique identifier
|
|
927
1997
|
* @type {string}
|
|
928
|
-
* @memberof
|
|
1998
|
+
* @memberof CollectionsApiUpdateCollection
|
|
929
1999
|
*/
|
|
930
|
-
|
|
2000
|
+
readonly collectionId: string;
|
|
2001
|
+
/**
|
|
2002
|
+
*
|
|
2003
|
+
* @type {UpdateCollectionRequest}
|
|
2004
|
+
* @memberof CollectionsApiUpdateCollection
|
|
2005
|
+
*/
|
|
2006
|
+
readonly updateCollectionRequest?: UpdateCollectionRequest;
|
|
931
2007
|
}
|
|
932
2008
|
/**
|
|
933
|
-
*
|
|
2009
|
+
* Request parameters for updateCollections operation in CollectionsApi.
|
|
934
2010
|
* @export
|
|
935
|
-
* @interface
|
|
2011
|
+
* @interface CollectionsApiUpdateCollectionsRequest
|
|
936
2012
|
*/
|
|
937
|
-
export interface
|
|
2013
|
+
export interface CollectionsApiUpdateCollectionsRequest {
|
|
938
2014
|
/**
|
|
939
|
-
*
|
|
2015
|
+
* What project it is
|
|
940
2016
|
* @type {string}
|
|
941
|
-
* @memberof
|
|
2017
|
+
* @memberof CollectionsApiUpdateCollections
|
|
942
2018
|
*/
|
|
943
|
-
|
|
2019
|
+
readonly project: string;
|
|
944
2020
|
/**
|
|
945
|
-
*
|
|
946
|
-
* @type {
|
|
947
|
-
* @memberof
|
|
2021
|
+
* Page reference token
|
|
2022
|
+
* @type {number}
|
|
2023
|
+
* @memberof CollectionsApiUpdateCollections
|
|
948
2024
|
*/
|
|
949
|
-
|
|
2025
|
+
readonly pageToken?: number;
|
|
950
2026
|
/**
|
|
951
|
-
*
|
|
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
|
|
952
2034
|
* @type {string}
|
|
953
|
-
* @memberof
|
|
2035
|
+
* @memberof CollectionsApiUpdateCollections
|
|
954
2036
|
*/
|
|
955
|
-
|
|
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 {
|
|
956
2052
|
/**
|
|
957
2053
|
*
|
|
958
|
-
* @
|
|
959
|
-
* @
|
|
2054
|
+
* @summary List website collections
|
|
2055
|
+
* @param {CollectionsApiListCollectionsRequest} requestParameters Request parameters.
|
|
2056
|
+
* @param {*} [options] Override http request option.
|
|
2057
|
+
* @throws {RequiredError}
|
|
2058
|
+
* @memberof CollectionsApi
|
|
960
2059
|
*/
|
|
961
|
-
|
|
2060
|
+
listCollections(requestParameters: CollectionsApiListCollectionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionsResponse, any>>;
|
|
962
2061
|
/**
|
|
963
2062
|
*
|
|
964
|
-
* @
|
|
965
|
-
* @
|
|
2063
|
+
* @summary Update website collection
|
|
2064
|
+
* @param {CollectionsApiUpdateCollectionRequest} requestParameters Request parameters.
|
|
2065
|
+
* @param {*} [options] Override http request option.
|
|
2066
|
+
* @throws {RequiredError}
|
|
2067
|
+
* @memberof CollectionsApi
|
|
966
2068
|
*/
|
|
967
|
-
|
|
2069
|
+
updateCollection(requestParameters: CollectionsApiUpdateCollectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Collection, any>>;
|
|
968
2070
|
/**
|
|
969
2071
|
*
|
|
970
|
-
* @
|
|
971
|
-
* @
|
|
2072
|
+
* @summary Update website collections
|
|
2073
|
+
* @param {CollectionsApiUpdateCollectionsRequest} requestParameters Request parameters.
|
|
2074
|
+
* @param {*} [options] Override http request option.
|
|
2075
|
+
* @throws {RequiredError}
|
|
2076
|
+
* @memberof CollectionsApi
|
|
972
2077
|
*/
|
|
973
|
-
|
|
2078
|
+
updateCollections(requestParameters: CollectionsApiUpdateCollectionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionsResponse, any>>;
|
|
974
2079
|
}
|
|
975
2080
|
/**
|
|
976
2081
|
* CrossSellApi - axios parameter creator
|
|
@@ -1240,6 +2345,242 @@ export declare class MenuApi extends BaseAPI {
|
|
|
1240
2345
|
*/
|
|
1241
2346
|
updateMenu(requestParameters: MenuApiUpdateMenuRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Menu, any>>;
|
|
1242
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
|
+
}
|
|
1243
2584
|
/**
|
|
1244
2585
|
* PaymentApi - axios parameter creator
|
|
1245
2586
|
* @export
|
|
@@ -1404,3 +2745,99 @@ export declare class PaymentApi extends BaseAPI {
|
|
|
1404
2745
|
*/
|
|
1405
2746
|
getStripePaymentAccount(requestParameters: PaymentApiGetStripePaymentAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentAccount, any>>;
|
|
1406
2747
|
}
|
|
2748
|
+
/**
|
|
2749
|
+
* RoutesApi - axios parameter creator
|
|
2750
|
+
* @export
|
|
2751
|
+
*/
|
|
2752
|
+
export declare const RoutesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2753
|
+
/**
|
|
2754
|
+
*
|
|
2755
|
+
* @summary List routes
|
|
2756
|
+
* @param {string} project What project it is
|
|
2757
|
+
* @param {number} [pageToken] Page reference token
|
|
2758
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2759
|
+
* @param {string} [search] Search term to filter results
|
|
2760
|
+
* @param {*} [options] Override http request option.
|
|
2761
|
+
* @throws {RequiredError}
|
|
2762
|
+
*/
|
|
2763
|
+
listRoutes: (project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2764
|
+
};
|
|
2765
|
+
/**
|
|
2766
|
+
* RoutesApi - functional programming interface
|
|
2767
|
+
* @export
|
|
2768
|
+
*/
|
|
2769
|
+
export declare const RoutesApiFp: (configuration?: Configuration) => {
|
|
2770
|
+
/**
|
|
2771
|
+
*
|
|
2772
|
+
* @summary List routes
|
|
2773
|
+
* @param {string} project What project it is
|
|
2774
|
+
* @param {number} [pageToken] Page reference token
|
|
2775
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2776
|
+
* @param {string} [search] Search term to filter results
|
|
2777
|
+
* @param {*} [options] Override http request option.
|
|
2778
|
+
* @throws {RequiredError}
|
|
2779
|
+
*/
|
|
2780
|
+
listRoutes(project: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRoutesResponse>>;
|
|
2781
|
+
};
|
|
2782
|
+
/**
|
|
2783
|
+
* RoutesApi - factory interface
|
|
2784
|
+
* @export
|
|
2785
|
+
*/
|
|
2786
|
+
export declare const RoutesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2787
|
+
/**
|
|
2788
|
+
*
|
|
2789
|
+
* @summary List routes
|
|
2790
|
+
* @param {RoutesApiListRoutesRequest} requestParameters Request parameters.
|
|
2791
|
+
* @param {*} [options] Override http request option.
|
|
2792
|
+
* @throws {RequiredError}
|
|
2793
|
+
*/
|
|
2794
|
+
listRoutes(requestParameters: RoutesApiListRoutesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListRoutesResponse>;
|
|
2795
|
+
};
|
|
2796
|
+
/**
|
|
2797
|
+
* Request parameters for listRoutes operation in RoutesApi.
|
|
2798
|
+
* @export
|
|
2799
|
+
* @interface RoutesApiListRoutesRequest
|
|
2800
|
+
*/
|
|
2801
|
+
export interface RoutesApiListRoutesRequest {
|
|
2802
|
+
/**
|
|
2803
|
+
* What project it is
|
|
2804
|
+
* @type {string}
|
|
2805
|
+
* @memberof RoutesApiListRoutes
|
|
2806
|
+
*/
|
|
2807
|
+
readonly project: string;
|
|
2808
|
+
/**
|
|
2809
|
+
* Page reference token
|
|
2810
|
+
* @type {number}
|
|
2811
|
+
* @memberof RoutesApiListRoutes
|
|
2812
|
+
*/
|
|
2813
|
+
readonly pageToken?: number;
|
|
2814
|
+
/**
|
|
2815
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2816
|
+
* @type {number}
|
|
2817
|
+
* @memberof RoutesApiListRoutes
|
|
2818
|
+
*/
|
|
2819
|
+
readonly pageSize?: number;
|
|
2820
|
+
/**
|
|
2821
|
+
* Search term to filter results
|
|
2822
|
+
* @type {string}
|
|
2823
|
+
* @memberof RoutesApiListRoutes
|
|
2824
|
+
*/
|
|
2825
|
+
readonly search?: string;
|
|
2826
|
+
}
|
|
2827
|
+
/**
|
|
2828
|
+
* RoutesApi - object-oriented interface
|
|
2829
|
+
* @export
|
|
2830
|
+
* @class RoutesApi
|
|
2831
|
+
* @extends {BaseAPI}
|
|
2832
|
+
*/
|
|
2833
|
+
export declare class RoutesApi extends BaseAPI {
|
|
2834
|
+
/**
|
|
2835
|
+
*
|
|
2836
|
+
* @summary List routes
|
|
2837
|
+
* @param {RoutesApiListRoutesRequest} requestParameters Request parameters.
|
|
2838
|
+
* @param {*} [options] Override http request option.
|
|
2839
|
+
* @throws {RequiredError}
|
|
2840
|
+
* @memberof RoutesApi
|
|
2841
|
+
*/
|
|
2842
|
+
listRoutes(requestParameters: RoutesApiListRoutesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRoutesResponse, any>>;
|
|
2843
|
+
}
|