@infisale-client/api 1.3.11 → 1.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/api.d.ts +642 -48
- package/dist/api/api.js +354 -70
- package/dist/api/api.mjs +346 -66
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -8410,6 +8410,12 @@ export interface ITemplatePatchRequest {
|
|
|
8410
8410
|
* @memberof ITemplatePatchRequest
|
|
8411
8411
|
*/
|
|
8412
8412
|
'type'?: TemplateTypeEnum;
|
|
8413
|
+
/**
|
|
8414
|
+
*
|
|
8415
|
+
* @type {boolean}
|
|
8416
|
+
* @memberof ITemplatePatchRequest
|
|
8417
|
+
*/
|
|
8418
|
+
'unique'?: boolean;
|
|
8413
8419
|
}
|
|
8414
8420
|
/**
|
|
8415
8421
|
*
|
|
@@ -8447,6 +8453,12 @@ export interface ITemplatePostRequest {
|
|
|
8447
8453
|
* @memberof ITemplatePostRequest
|
|
8448
8454
|
*/
|
|
8449
8455
|
'type': TemplateTypeEnum;
|
|
8456
|
+
/**
|
|
8457
|
+
*
|
|
8458
|
+
* @type {boolean}
|
|
8459
|
+
* @memberof ITemplatePostRequest
|
|
8460
|
+
*/
|
|
8461
|
+
'unique': boolean;
|
|
8450
8462
|
}
|
|
8451
8463
|
/**
|
|
8452
8464
|
*
|
|
@@ -8502,6 +8514,12 @@ export interface ITemplateResponse {
|
|
|
8502
8514
|
* @memberof ITemplateResponse
|
|
8503
8515
|
*/
|
|
8504
8516
|
'type': TemplateTypeEnum;
|
|
8517
|
+
/**
|
|
8518
|
+
*
|
|
8519
|
+
* @type {boolean}
|
|
8520
|
+
* @memberof ITemplateResponse
|
|
8521
|
+
*/
|
|
8522
|
+
'unique': boolean;
|
|
8505
8523
|
/**
|
|
8506
8524
|
*
|
|
8507
8525
|
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
@@ -8769,6 +8787,215 @@ export interface IThemesResponse {
|
|
|
8769
8787
|
*/
|
|
8770
8788
|
'data': Array<IThemeResponse>;
|
|
8771
8789
|
}
|
|
8790
|
+
/**
|
|
8791
|
+
*
|
|
8792
|
+
* @export
|
|
8793
|
+
* @interface IUniqueCollectionQueryParams
|
|
8794
|
+
*/
|
|
8795
|
+
export interface IUniqueCollectionQueryParams {
|
|
8796
|
+
/**
|
|
8797
|
+
*
|
|
8798
|
+
* @type {number}
|
|
8799
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8800
|
+
*/
|
|
8801
|
+
'page'?: number;
|
|
8802
|
+
/**
|
|
8803
|
+
*
|
|
8804
|
+
* @type {number}
|
|
8805
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8806
|
+
*/
|
|
8807
|
+
'itemsPerPage'?: number;
|
|
8808
|
+
/**
|
|
8809
|
+
*
|
|
8810
|
+
* @type {string}
|
|
8811
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8812
|
+
*/
|
|
8813
|
+
'search'?: string;
|
|
8814
|
+
/**
|
|
8815
|
+
*
|
|
8816
|
+
* @type {string}
|
|
8817
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8818
|
+
*/
|
|
8819
|
+
'startDate'?: string;
|
|
8820
|
+
/**
|
|
8821
|
+
*
|
|
8822
|
+
* @type {string}
|
|
8823
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8824
|
+
*/
|
|
8825
|
+
'endDate'?: string;
|
|
8826
|
+
/**
|
|
8827
|
+
*
|
|
8828
|
+
* @type {string}
|
|
8829
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8830
|
+
*/
|
|
8831
|
+
'dateField'?: IUniqueCollectionQueryParamsDateFieldEnum;
|
|
8832
|
+
/**
|
|
8833
|
+
*
|
|
8834
|
+
* @type {OrderEnum}
|
|
8835
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8836
|
+
*/
|
|
8837
|
+
'order'?: OrderEnum;
|
|
8838
|
+
/**
|
|
8839
|
+
*
|
|
8840
|
+
* @type {string}
|
|
8841
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8842
|
+
*/
|
|
8843
|
+
'sort'?: string;
|
|
8844
|
+
/**
|
|
8845
|
+
*
|
|
8846
|
+
* @type {string}
|
|
8847
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8848
|
+
*/
|
|
8849
|
+
'companyId'?: string;
|
|
8850
|
+
/**
|
|
8851
|
+
*
|
|
8852
|
+
* @type {string}
|
|
8853
|
+
* @memberof IUniqueCollectionQueryParams
|
|
8854
|
+
*/
|
|
8855
|
+
'domain'?: string;
|
|
8856
|
+
}
|
|
8857
|
+
export declare const IUniqueCollectionQueryParamsDateFieldEnum: {
|
|
8858
|
+
readonly CREATED_AT: "createdAt";
|
|
8859
|
+
readonly UPDATED_AT: "updatedAt";
|
|
8860
|
+
};
|
|
8861
|
+
export type IUniqueCollectionQueryParamsDateFieldEnum = typeof IUniqueCollectionQueryParamsDateFieldEnum[keyof typeof IUniqueCollectionQueryParamsDateFieldEnum];
|
|
8862
|
+
/**
|
|
8863
|
+
*
|
|
8864
|
+
* @export
|
|
8865
|
+
* @interface IUniquePagePatchRequest
|
|
8866
|
+
*/
|
|
8867
|
+
export interface IUniquePagePatchRequest {
|
|
8868
|
+
/**
|
|
8869
|
+
*
|
|
8870
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63String}
|
|
8871
|
+
* @memberof IUniquePagePatchRequest
|
|
8872
|
+
*/
|
|
8873
|
+
'contents': PartialRecordLanguageEnumTitleStringDescription63String;
|
|
8874
|
+
/**
|
|
8875
|
+
*
|
|
8876
|
+
* @type {IImage}
|
|
8877
|
+
* @memberof IUniquePagePatchRequest
|
|
8878
|
+
*/
|
|
8879
|
+
'thumbnail'?: IImage;
|
|
8880
|
+
}
|
|
8881
|
+
/**
|
|
8882
|
+
*
|
|
8883
|
+
* @export
|
|
8884
|
+
* @interface IUniquePageResponse
|
|
8885
|
+
*/
|
|
8886
|
+
export interface IUniquePageResponse {
|
|
8887
|
+
/**
|
|
8888
|
+
*
|
|
8889
|
+
* @type {string}
|
|
8890
|
+
* @memberof IUniquePageResponse
|
|
8891
|
+
*/
|
|
8892
|
+
'company': string;
|
|
8893
|
+
/**
|
|
8894
|
+
*
|
|
8895
|
+
* @type {string}
|
|
8896
|
+
* @memberof IUniquePageResponse
|
|
8897
|
+
*/
|
|
8898
|
+
'_id': string;
|
|
8899
|
+
/**
|
|
8900
|
+
*
|
|
8901
|
+
* @type {number}
|
|
8902
|
+
* @memberof IUniquePageResponse
|
|
8903
|
+
*/
|
|
8904
|
+
'__v': number;
|
|
8905
|
+
/**
|
|
8906
|
+
*
|
|
8907
|
+
* @type {string}
|
|
8908
|
+
* @memberof IUniquePageResponse
|
|
8909
|
+
*/
|
|
8910
|
+
'createdAt': string;
|
|
8911
|
+
/**
|
|
8912
|
+
*
|
|
8913
|
+
* @type {string}
|
|
8914
|
+
* @memberof IUniquePageResponse
|
|
8915
|
+
*/
|
|
8916
|
+
'updatedAt': string;
|
|
8917
|
+
/**
|
|
8918
|
+
* Construct a type with a set of properties K of type T
|
|
8919
|
+
* @type {{ [key: string]: string; }}
|
|
8920
|
+
* @memberof IUniquePageResponse
|
|
8921
|
+
*/
|
|
8922
|
+
'templates': {
|
|
8923
|
+
[key: string]: string;
|
|
8924
|
+
};
|
|
8925
|
+
/**
|
|
8926
|
+
*
|
|
8927
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63String}
|
|
8928
|
+
* @memberof IUniquePageResponse
|
|
8929
|
+
*/
|
|
8930
|
+
'contents': PartialRecordLanguageEnumTitleStringDescription63String;
|
|
8931
|
+
/**
|
|
8932
|
+
*
|
|
8933
|
+
* @type {IImage}
|
|
8934
|
+
* @memberof IUniquePageResponse
|
|
8935
|
+
*/
|
|
8936
|
+
'thumbnail'?: IImage;
|
|
8937
|
+
/**
|
|
8938
|
+
*
|
|
8939
|
+
* @type {string}
|
|
8940
|
+
* @memberof IUniquePageResponse
|
|
8941
|
+
*/
|
|
8942
|
+
'type': string;
|
|
8943
|
+
/**
|
|
8944
|
+
*
|
|
8945
|
+
* @type {ITemplateResponse}
|
|
8946
|
+
* @memberof IUniquePageResponse
|
|
8947
|
+
*/
|
|
8948
|
+
'template': ITemplateResponse;
|
|
8949
|
+
/**
|
|
8950
|
+
*
|
|
8951
|
+
* @type {string}
|
|
8952
|
+
* @memberof IUniquePageResponse
|
|
8953
|
+
*/
|
|
8954
|
+
'title': string;
|
|
8955
|
+
/**
|
|
8956
|
+
*
|
|
8957
|
+
* @type {string}
|
|
8958
|
+
* @memberof IUniquePageResponse
|
|
8959
|
+
*/
|
|
8960
|
+
'description'?: string;
|
|
8961
|
+
}
|
|
8962
|
+
/**
|
|
8963
|
+
*
|
|
8964
|
+
* @export
|
|
8965
|
+
* @interface IUniquePagesResponse
|
|
8966
|
+
*/
|
|
8967
|
+
export interface IUniquePagesResponse {
|
|
8968
|
+
/**
|
|
8969
|
+
*
|
|
8970
|
+
* @type {number}
|
|
8971
|
+
* @memberof IUniquePagesResponse
|
|
8972
|
+
*/
|
|
8973
|
+
'page': number;
|
|
8974
|
+
/**
|
|
8975
|
+
*
|
|
8976
|
+
* @type {number}
|
|
8977
|
+
* @memberof IUniquePagesResponse
|
|
8978
|
+
*/
|
|
8979
|
+
'itemsPerPage': number;
|
|
8980
|
+
/**
|
|
8981
|
+
*
|
|
8982
|
+
* @type {number}
|
|
8983
|
+
* @memberof IUniquePagesResponse
|
|
8984
|
+
*/
|
|
8985
|
+
'total': number;
|
|
8986
|
+
/**
|
|
8987
|
+
*
|
|
8988
|
+
* @type {number}
|
|
8989
|
+
* @memberof IUniquePagesResponse
|
|
8990
|
+
*/
|
|
8991
|
+
'totalPages': number;
|
|
8992
|
+
/**
|
|
8993
|
+
*
|
|
8994
|
+
* @type {Array<IUniquePageResponse>}
|
|
8995
|
+
* @memberof IUniquePagesResponse
|
|
8996
|
+
*/
|
|
8997
|
+
'data': Array<IUniquePageResponse>;
|
|
8998
|
+
}
|
|
8772
8999
|
/**
|
|
8773
9000
|
*
|
|
8774
9001
|
* @export
|
|
@@ -9348,6 +9575,50 @@ export interface PartialRecordLanguageEnumTitleString {
|
|
|
9348
9575
|
*/
|
|
9349
9576
|
'de'?: RecordLanguageEnumTitleStringTr;
|
|
9350
9577
|
}
|
|
9578
|
+
/**
|
|
9579
|
+
* Make all properties in T optional
|
|
9580
|
+
* @export
|
|
9581
|
+
* @interface PartialRecordLanguageEnumTitleStringDescription63String
|
|
9582
|
+
*/
|
|
9583
|
+
export interface PartialRecordLanguageEnumTitleStringDescription63String {
|
|
9584
|
+
/**
|
|
9585
|
+
*
|
|
9586
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringTr}
|
|
9587
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63String
|
|
9588
|
+
*/
|
|
9589
|
+
'tr'?: PartialRecordLanguageEnumTitleStringDescription63StringTr;
|
|
9590
|
+
/**
|
|
9591
|
+
*
|
|
9592
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringTr}
|
|
9593
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63String
|
|
9594
|
+
*/
|
|
9595
|
+
'en'?: PartialRecordLanguageEnumTitleStringDescription63StringTr;
|
|
9596
|
+
/**
|
|
9597
|
+
*
|
|
9598
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63StringTr}
|
|
9599
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63String
|
|
9600
|
+
*/
|
|
9601
|
+
'de'?: PartialRecordLanguageEnumTitleStringDescription63StringTr;
|
|
9602
|
+
}
|
|
9603
|
+
/**
|
|
9604
|
+
*
|
|
9605
|
+
* @export
|
|
9606
|
+
* @interface PartialRecordLanguageEnumTitleStringDescription63StringTr
|
|
9607
|
+
*/
|
|
9608
|
+
export interface PartialRecordLanguageEnumTitleStringDescription63StringTr {
|
|
9609
|
+
/**
|
|
9610
|
+
*
|
|
9611
|
+
* @type {string}
|
|
9612
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63StringTr
|
|
9613
|
+
*/
|
|
9614
|
+
'description'?: string;
|
|
9615
|
+
/**
|
|
9616
|
+
*
|
|
9617
|
+
* @type {string}
|
|
9618
|
+
* @memberof PartialRecordLanguageEnumTitleStringDescription63StringTr
|
|
9619
|
+
*/
|
|
9620
|
+
'title': string;
|
|
9621
|
+
}
|
|
9351
9622
|
/**
|
|
9352
9623
|
*
|
|
9353
9624
|
* @export
|
|
@@ -11201,6 +11472,12 @@ export interface PickITemplateExcludeKeyofITemplateComponents {
|
|
|
11201
11472
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
11202
11473
|
*/
|
|
11203
11474
|
'type': TemplateTypeEnum;
|
|
11475
|
+
/**
|
|
11476
|
+
*
|
|
11477
|
+
* @type {boolean}
|
|
11478
|
+
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
11479
|
+
*/
|
|
11480
|
+
'unique': boolean;
|
|
11204
11481
|
}
|
|
11205
11482
|
/**
|
|
11206
11483
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -11238,6 +11515,12 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
11238
11515
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
11239
11516
|
*/
|
|
11240
11517
|
'type': TemplateTypeEnum;
|
|
11518
|
+
/**
|
|
11519
|
+
*
|
|
11520
|
+
* @type {boolean}
|
|
11521
|
+
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
11522
|
+
*/
|
|
11523
|
+
'unique': boolean;
|
|
11241
11524
|
}
|
|
11242
11525
|
/**
|
|
11243
11526
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -11359,13 +11642,76 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseO
|
|
|
11359
11642
|
* @type {string}
|
|
11360
11643
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11361
11644
|
*/
|
|
11362
|
-
'assetUrl': string;
|
|
11645
|
+
'assetUrl': string;
|
|
11646
|
+
/**
|
|
11647
|
+
*
|
|
11648
|
+
* @type {number}
|
|
11649
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11650
|
+
*/
|
|
11651
|
+
'assetVersion': number;
|
|
11652
|
+
}
|
|
11653
|
+
/**
|
|
11654
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11655
|
+
* @export
|
|
11656
|
+
* @interface PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11657
|
+
*/
|
|
11658
|
+
export interface PickIUniquePageExcludeKeyofIUniquePageTemplate {
|
|
11659
|
+
/**
|
|
11660
|
+
*
|
|
11661
|
+
* @type {string}
|
|
11662
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11663
|
+
*/
|
|
11664
|
+
'company': string;
|
|
11665
|
+
/**
|
|
11666
|
+
*
|
|
11667
|
+
* @type {string}
|
|
11668
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11669
|
+
*/
|
|
11670
|
+
'_id': string;
|
|
11671
|
+
/**
|
|
11672
|
+
*
|
|
11673
|
+
* @type {number}
|
|
11674
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11675
|
+
*/
|
|
11676
|
+
'__v': number;
|
|
11677
|
+
/**
|
|
11678
|
+
*
|
|
11679
|
+
* @type {string}
|
|
11680
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11681
|
+
*/
|
|
11682
|
+
'createdAt': string;
|
|
11683
|
+
/**
|
|
11684
|
+
*
|
|
11685
|
+
* @type {string}
|
|
11686
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11687
|
+
*/
|
|
11688
|
+
'updatedAt': string;
|
|
11689
|
+
/**
|
|
11690
|
+
* Construct a type with a set of properties K of type T
|
|
11691
|
+
* @type {{ [key: string]: string; }}
|
|
11692
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11693
|
+
*/
|
|
11694
|
+
'templates': {
|
|
11695
|
+
[key: string]: string;
|
|
11696
|
+
};
|
|
11697
|
+
/**
|
|
11698
|
+
*
|
|
11699
|
+
* @type {PartialRecordLanguageEnumTitleStringDescription63String}
|
|
11700
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11701
|
+
*/
|
|
11702
|
+
'contents': PartialRecordLanguageEnumTitleStringDescription63String;
|
|
11703
|
+
/**
|
|
11704
|
+
*
|
|
11705
|
+
* @type {IImage}
|
|
11706
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11707
|
+
*/
|
|
11708
|
+
'thumbnail'?: IImage;
|
|
11363
11709
|
/**
|
|
11364
11710
|
*
|
|
11365
|
-
* @type {
|
|
11366
|
-
* @memberof
|
|
11711
|
+
* @type {string}
|
|
11712
|
+
* @memberof PickIUniquePageExcludeKeyofIUniquePageTemplate
|
|
11367
11713
|
*/
|
|
11368
|
-
'
|
|
11714
|
+
'type': string;
|
|
11369
11715
|
}
|
|
11370
11716
|
/**
|
|
11371
11717
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -18816,13 +19162,6 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
18816
19162
|
* @throws {RequiredError}
|
|
18817
19163
|
*/
|
|
18818
19164
|
getPages: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPagesDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18819
|
-
/**
|
|
18820
|
-
*
|
|
18821
|
-
* @param {string} companyId
|
|
18822
|
-
* @param {*} [options] Override http request option.
|
|
18823
|
-
* @throws {RequiredError}
|
|
18824
|
-
*/
|
|
18825
|
-
getUniquePages: (companyId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18826
19165
|
/**
|
|
18827
19166
|
*
|
|
18828
19167
|
* @param {string} id
|
|
@@ -18906,13 +19245,6 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
18906
19245
|
* @throws {RequiredError}
|
|
18907
19246
|
*/
|
|
18908
19247
|
getPages(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPagesDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPagesResponse>>;
|
|
18909
|
-
/**
|
|
18910
|
-
*
|
|
18911
|
-
* @param {string} companyId
|
|
18912
|
-
* @param {*} [options] Override http request option.
|
|
18913
|
-
* @throws {RequiredError}
|
|
18914
|
-
*/
|
|
18915
|
-
getUniquePages(companyId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPagesResponse>>;
|
|
18916
19248
|
/**
|
|
18917
19249
|
*
|
|
18918
19250
|
* @param {string} id
|
|
@@ -18976,13 +19308,6 @@ export declare const PageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
18976
19308
|
* @throws {RequiredError}
|
|
18977
19309
|
*/
|
|
18978
19310
|
getPages(requestParameters?: PageApiGetPagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPagesResponse>;
|
|
18979
|
-
/**
|
|
18980
|
-
*
|
|
18981
|
-
* @param {PageApiGetUniquePagesRequest} requestParameters Request parameters.
|
|
18982
|
-
* @param {*} [options] Override http request option.
|
|
18983
|
-
* @throws {RequiredError}
|
|
18984
|
-
*/
|
|
18985
|
-
getUniquePages(requestParameters: PageApiGetUniquePagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPagesResponse>;
|
|
18986
19311
|
/**
|
|
18987
19312
|
*
|
|
18988
19313
|
* @param {PageApiUpdatePageRequest} requestParameters Request parameters.
|
|
@@ -19202,19 +19527,6 @@ export interface PageApiGetPagesRequest {
|
|
|
19202
19527
|
*/
|
|
19203
19528
|
readonly status?: ContentStatusEnum;
|
|
19204
19529
|
}
|
|
19205
|
-
/**
|
|
19206
|
-
* Request parameters for getUniquePages operation in PageApi.
|
|
19207
|
-
* @export
|
|
19208
|
-
* @interface PageApiGetUniquePagesRequest
|
|
19209
|
-
*/
|
|
19210
|
-
export interface PageApiGetUniquePagesRequest {
|
|
19211
|
-
/**
|
|
19212
|
-
*
|
|
19213
|
-
* @type {string}
|
|
19214
|
-
* @memberof PageApiGetUniquePages
|
|
19215
|
-
*/
|
|
19216
|
-
readonly companyId: string;
|
|
19217
|
-
}
|
|
19218
19530
|
/**
|
|
19219
19531
|
* Request parameters for updatePage operation in PageApi.
|
|
19220
19532
|
* @export
|
|
@@ -19297,14 +19609,6 @@ export declare class PageApi extends BaseAPI {
|
|
|
19297
19609
|
* @memberof PageApi
|
|
19298
19610
|
*/
|
|
19299
19611
|
getPages(requestParameters?: PageApiGetPagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPagesResponse, any>>;
|
|
19300
|
-
/**
|
|
19301
|
-
*
|
|
19302
|
-
* @param {PageApiGetUniquePagesRequest} requestParameters Request parameters.
|
|
19303
|
-
* @param {*} [options] Override http request option.
|
|
19304
|
-
* @throws {RequiredError}
|
|
19305
|
-
* @memberof PageApi
|
|
19306
|
-
*/
|
|
19307
|
-
getUniquePages(requestParameters: PageApiGetUniquePagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPagesResponse, any>>;
|
|
19308
19612
|
/**
|
|
19309
19613
|
*
|
|
19310
19614
|
* @param {PageApiUpdatePageRequest} requestParameters Request parameters.
|
|
@@ -20436,10 +20740,11 @@ export declare const TemplateApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
20436
20740
|
* @param {TemplateTypeEnum} [type]
|
|
20437
20741
|
* @param {string} [search]
|
|
20438
20742
|
* @param {string} [theme]
|
|
20743
|
+
* @param {boolean} [unique]
|
|
20439
20744
|
* @param {*} [options] Override http request option.
|
|
20440
20745
|
* @throws {RequiredError}
|
|
20441
20746
|
*/
|
|
20442
|
-
getTemplates: (companyId: string, type?: TemplateTypeEnum, search?: string, theme?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20747
|
+
getTemplates: (companyId: string, type?: TemplateTypeEnum, search?: string, theme?: string, unique?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20443
20748
|
/**
|
|
20444
20749
|
*
|
|
20445
20750
|
* @param {string} id
|
|
@@ -20474,10 +20779,11 @@ export declare const TemplateApiFp: (configuration?: Configuration) => {
|
|
|
20474
20779
|
* @param {TemplateTypeEnum} [type]
|
|
20475
20780
|
* @param {string} [search]
|
|
20476
20781
|
* @param {string} [theme]
|
|
20782
|
+
* @param {boolean} [unique]
|
|
20477
20783
|
* @param {*} [options] Override http request option.
|
|
20478
20784
|
* @throws {RequiredError}
|
|
20479
20785
|
*/
|
|
20480
|
-
getTemplates(companyId: string, type?: TemplateTypeEnum, search?: string, theme?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ITemplatesResponse>>;
|
|
20786
|
+
getTemplates(companyId: string, type?: TemplateTypeEnum, search?: string, theme?: string, unique?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ITemplatesResponse>>;
|
|
20481
20787
|
/**
|
|
20482
20788
|
*
|
|
20483
20789
|
* @param {string} id
|
|
@@ -20577,6 +20883,12 @@ export interface TemplateApiGetTemplatesRequest {
|
|
|
20577
20883
|
* @memberof TemplateApiGetTemplates
|
|
20578
20884
|
*/
|
|
20579
20885
|
readonly theme?: string;
|
|
20886
|
+
/**
|
|
20887
|
+
*
|
|
20888
|
+
* @type {boolean}
|
|
20889
|
+
* @memberof TemplateApiGetTemplates
|
|
20890
|
+
*/
|
|
20891
|
+
readonly unique?: boolean;
|
|
20580
20892
|
}
|
|
20581
20893
|
/**
|
|
20582
20894
|
* Request parameters for updateTemplate operation in TemplateApi.
|
|
@@ -20998,6 +21310,288 @@ export declare class ThemeApi extends BaseAPI {
|
|
|
20998
21310
|
*/
|
|
20999
21311
|
updateThemeFiles(requestParameters: ThemeApiUpdateThemeFilesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
21000
21312
|
}
|
|
21313
|
+
/**
|
|
21314
|
+
* UniquePageApi - axios parameter creator
|
|
21315
|
+
* @export
|
|
21316
|
+
*/
|
|
21317
|
+
export declare const UniquePageApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21318
|
+
/**
|
|
21319
|
+
*
|
|
21320
|
+
* @param {string} id
|
|
21321
|
+
* @param {*} [options] Override http request option.
|
|
21322
|
+
* @throws {RequiredError}
|
|
21323
|
+
*/
|
|
21324
|
+
getUniquePageById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21325
|
+
/**
|
|
21326
|
+
*
|
|
21327
|
+
* @param {string} type
|
|
21328
|
+
* @param {*} [options] Override http request option.
|
|
21329
|
+
* @throws {RequiredError}
|
|
21330
|
+
*/
|
|
21331
|
+
getUniquePageByType: (type: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21332
|
+
/**
|
|
21333
|
+
*
|
|
21334
|
+
* @param {number} [page]
|
|
21335
|
+
* @param {number} [itemsPerPage]
|
|
21336
|
+
* @param {string} [search]
|
|
21337
|
+
* @param {string} [startDate]
|
|
21338
|
+
* @param {string} [endDate]
|
|
21339
|
+
* @param {GetUniquePagesDateFieldEnum} [dateField]
|
|
21340
|
+
* @param {OrderEnum} [order]
|
|
21341
|
+
* @param {string} [sort]
|
|
21342
|
+
* @param {string} [companyId]
|
|
21343
|
+
* @param {string} [domain]
|
|
21344
|
+
* @param {*} [options] Override http request option.
|
|
21345
|
+
* @throws {RequiredError}
|
|
21346
|
+
*/
|
|
21347
|
+
getUniquePages: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetUniquePagesDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21348
|
+
/**
|
|
21349
|
+
*
|
|
21350
|
+
* @param {string} id
|
|
21351
|
+
* @param {IUniquePagePatchRequest} iUniquePagePatchRequest
|
|
21352
|
+
* @param {*} [options] Override http request option.
|
|
21353
|
+
* @throws {RequiredError}
|
|
21354
|
+
*/
|
|
21355
|
+
updateUniquePage: (id: string, iUniquePagePatchRequest: IUniquePagePatchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21356
|
+
};
|
|
21357
|
+
/**
|
|
21358
|
+
* UniquePageApi - functional programming interface
|
|
21359
|
+
* @export
|
|
21360
|
+
*/
|
|
21361
|
+
export declare const UniquePageApiFp: (configuration?: Configuration) => {
|
|
21362
|
+
/**
|
|
21363
|
+
*
|
|
21364
|
+
* @param {string} id
|
|
21365
|
+
* @param {*} [options] Override http request option.
|
|
21366
|
+
* @throws {RequiredError}
|
|
21367
|
+
*/
|
|
21368
|
+
getUniquePageById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUniquePageResponse>>;
|
|
21369
|
+
/**
|
|
21370
|
+
*
|
|
21371
|
+
* @param {string} type
|
|
21372
|
+
* @param {*} [options] Override http request option.
|
|
21373
|
+
* @throws {RequiredError}
|
|
21374
|
+
*/
|
|
21375
|
+
getUniquePageByType(type: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUniquePageResponse>>;
|
|
21376
|
+
/**
|
|
21377
|
+
*
|
|
21378
|
+
* @param {number} [page]
|
|
21379
|
+
* @param {number} [itemsPerPage]
|
|
21380
|
+
* @param {string} [search]
|
|
21381
|
+
* @param {string} [startDate]
|
|
21382
|
+
* @param {string} [endDate]
|
|
21383
|
+
* @param {GetUniquePagesDateFieldEnum} [dateField]
|
|
21384
|
+
* @param {OrderEnum} [order]
|
|
21385
|
+
* @param {string} [sort]
|
|
21386
|
+
* @param {string} [companyId]
|
|
21387
|
+
* @param {string} [domain]
|
|
21388
|
+
* @param {*} [options] Override http request option.
|
|
21389
|
+
* @throws {RequiredError}
|
|
21390
|
+
*/
|
|
21391
|
+
getUniquePages(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetUniquePagesDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUniquePagesResponse>>;
|
|
21392
|
+
/**
|
|
21393
|
+
*
|
|
21394
|
+
* @param {string} id
|
|
21395
|
+
* @param {IUniquePagePatchRequest} iUniquePagePatchRequest
|
|
21396
|
+
* @param {*} [options] Override http request option.
|
|
21397
|
+
* @throws {RequiredError}
|
|
21398
|
+
*/
|
|
21399
|
+
updateUniquePage(id: string, iUniquePagePatchRequest: IUniquePagePatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUniquePageResponse>>;
|
|
21400
|
+
};
|
|
21401
|
+
/**
|
|
21402
|
+
* UniquePageApi - factory interface
|
|
21403
|
+
* @export
|
|
21404
|
+
*/
|
|
21405
|
+
export declare const UniquePageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
21406
|
+
/**
|
|
21407
|
+
*
|
|
21408
|
+
* @param {UniquePageApiGetUniquePageByIdRequest} requestParameters Request parameters.
|
|
21409
|
+
* @param {*} [options] Override http request option.
|
|
21410
|
+
* @throws {RequiredError}
|
|
21411
|
+
*/
|
|
21412
|
+
getUniquePageById(requestParameters: UniquePageApiGetUniquePageByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUniquePageResponse>;
|
|
21413
|
+
/**
|
|
21414
|
+
*
|
|
21415
|
+
* @param {UniquePageApiGetUniquePageByTypeRequest} requestParameters Request parameters.
|
|
21416
|
+
* @param {*} [options] Override http request option.
|
|
21417
|
+
* @throws {RequiredError}
|
|
21418
|
+
*/
|
|
21419
|
+
getUniquePageByType(requestParameters: UniquePageApiGetUniquePageByTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUniquePageResponse>;
|
|
21420
|
+
/**
|
|
21421
|
+
*
|
|
21422
|
+
* @param {UniquePageApiGetUniquePagesRequest} requestParameters Request parameters.
|
|
21423
|
+
* @param {*} [options] Override http request option.
|
|
21424
|
+
* @throws {RequiredError}
|
|
21425
|
+
*/
|
|
21426
|
+
getUniquePages(requestParameters?: UniquePageApiGetUniquePagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUniquePagesResponse>;
|
|
21427
|
+
/**
|
|
21428
|
+
*
|
|
21429
|
+
* @param {UniquePageApiUpdateUniquePageRequest} requestParameters Request parameters.
|
|
21430
|
+
* @param {*} [options] Override http request option.
|
|
21431
|
+
* @throws {RequiredError}
|
|
21432
|
+
*/
|
|
21433
|
+
updateUniquePage(requestParameters: UniquePageApiUpdateUniquePageRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUniquePageResponse>;
|
|
21434
|
+
};
|
|
21435
|
+
/**
|
|
21436
|
+
* Request parameters for getUniquePageById operation in UniquePageApi.
|
|
21437
|
+
* @export
|
|
21438
|
+
* @interface UniquePageApiGetUniquePageByIdRequest
|
|
21439
|
+
*/
|
|
21440
|
+
export interface UniquePageApiGetUniquePageByIdRequest {
|
|
21441
|
+
/**
|
|
21442
|
+
*
|
|
21443
|
+
* @type {string}
|
|
21444
|
+
* @memberof UniquePageApiGetUniquePageById
|
|
21445
|
+
*/
|
|
21446
|
+
readonly id: string;
|
|
21447
|
+
}
|
|
21448
|
+
/**
|
|
21449
|
+
* Request parameters for getUniquePageByType operation in UniquePageApi.
|
|
21450
|
+
* @export
|
|
21451
|
+
* @interface UniquePageApiGetUniquePageByTypeRequest
|
|
21452
|
+
*/
|
|
21453
|
+
export interface UniquePageApiGetUniquePageByTypeRequest {
|
|
21454
|
+
/**
|
|
21455
|
+
*
|
|
21456
|
+
* @type {string}
|
|
21457
|
+
* @memberof UniquePageApiGetUniquePageByType
|
|
21458
|
+
*/
|
|
21459
|
+
readonly type: string;
|
|
21460
|
+
}
|
|
21461
|
+
/**
|
|
21462
|
+
* Request parameters for getUniquePages operation in UniquePageApi.
|
|
21463
|
+
* @export
|
|
21464
|
+
* @interface UniquePageApiGetUniquePagesRequest
|
|
21465
|
+
*/
|
|
21466
|
+
export interface UniquePageApiGetUniquePagesRequest {
|
|
21467
|
+
/**
|
|
21468
|
+
*
|
|
21469
|
+
* @type {number}
|
|
21470
|
+
* @memberof UniquePageApiGetUniquePages
|
|
21471
|
+
*/
|
|
21472
|
+
readonly page?: number;
|
|
21473
|
+
/**
|
|
21474
|
+
*
|
|
21475
|
+
* @type {number}
|
|
21476
|
+
* @memberof UniquePageApiGetUniquePages
|
|
21477
|
+
*/
|
|
21478
|
+
readonly itemsPerPage?: number;
|
|
21479
|
+
/**
|
|
21480
|
+
*
|
|
21481
|
+
* @type {string}
|
|
21482
|
+
* @memberof UniquePageApiGetUniquePages
|
|
21483
|
+
*/
|
|
21484
|
+
readonly search?: string;
|
|
21485
|
+
/**
|
|
21486
|
+
*
|
|
21487
|
+
* @type {string}
|
|
21488
|
+
* @memberof UniquePageApiGetUniquePages
|
|
21489
|
+
*/
|
|
21490
|
+
readonly startDate?: string;
|
|
21491
|
+
/**
|
|
21492
|
+
*
|
|
21493
|
+
* @type {string}
|
|
21494
|
+
* @memberof UniquePageApiGetUniquePages
|
|
21495
|
+
*/
|
|
21496
|
+
readonly endDate?: string;
|
|
21497
|
+
/**
|
|
21498
|
+
*
|
|
21499
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
21500
|
+
* @memberof UniquePageApiGetUniquePages
|
|
21501
|
+
*/
|
|
21502
|
+
readonly dateField?: GetUniquePagesDateFieldEnum;
|
|
21503
|
+
/**
|
|
21504
|
+
*
|
|
21505
|
+
* @type {OrderEnum}
|
|
21506
|
+
* @memberof UniquePageApiGetUniquePages
|
|
21507
|
+
*/
|
|
21508
|
+
readonly order?: OrderEnum;
|
|
21509
|
+
/**
|
|
21510
|
+
*
|
|
21511
|
+
* @type {string}
|
|
21512
|
+
* @memberof UniquePageApiGetUniquePages
|
|
21513
|
+
*/
|
|
21514
|
+
readonly sort?: string;
|
|
21515
|
+
/**
|
|
21516
|
+
*
|
|
21517
|
+
* @type {string}
|
|
21518
|
+
* @memberof UniquePageApiGetUniquePages
|
|
21519
|
+
*/
|
|
21520
|
+
readonly companyId?: string;
|
|
21521
|
+
/**
|
|
21522
|
+
*
|
|
21523
|
+
* @type {string}
|
|
21524
|
+
* @memberof UniquePageApiGetUniquePages
|
|
21525
|
+
*/
|
|
21526
|
+
readonly domain?: string;
|
|
21527
|
+
}
|
|
21528
|
+
/**
|
|
21529
|
+
* Request parameters for updateUniquePage operation in UniquePageApi.
|
|
21530
|
+
* @export
|
|
21531
|
+
* @interface UniquePageApiUpdateUniquePageRequest
|
|
21532
|
+
*/
|
|
21533
|
+
export interface UniquePageApiUpdateUniquePageRequest {
|
|
21534
|
+
/**
|
|
21535
|
+
*
|
|
21536
|
+
* @type {string}
|
|
21537
|
+
* @memberof UniquePageApiUpdateUniquePage
|
|
21538
|
+
*/
|
|
21539
|
+
readonly id: string;
|
|
21540
|
+
/**
|
|
21541
|
+
*
|
|
21542
|
+
* @type {IUniquePagePatchRequest}
|
|
21543
|
+
* @memberof UniquePageApiUpdateUniquePage
|
|
21544
|
+
*/
|
|
21545
|
+
readonly iUniquePagePatchRequest: IUniquePagePatchRequest;
|
|
21546
|
+
}
|
|
21547
|
+
/**
|
|
21548
|
+
* UniquePageApi - object-oriented interface
|
|
21549
|
+
* @export
|
|
21550
|
+
* @class UniquePageApi
|
|
21551
|
+
* @extends {BaseAPI}
|
|
21552
|
+
*/
|
|
21553
|
+
export declare class UniquePageApi extends BaseAPI {
|
|
21554
|
+
/**
|
|
21555
|
+
*
|
|
21556
|
+
* @param {UniquePageApiGetUniquePageByIdRequest} requestParameters Request parameters.
|
|
21557
|
+
* @param {*} [options] Override http request option.
|
|
21558
|
+
* @throws {RequiredError}
|
|
21559
|
+
* @memberof UniquePageApi
|
|
21560
|
+
*/
|
|
21561
|
+
getUniquePageById(requestParameters: UniquePageApiGetUniquePageByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUniquePageResponse, any>>;
|
|
21562
|
+
/**
|
|
21563
|
+
*
|
|
21564
|
+
* @param {UniquePageApiGetUniquePageByTypeRequest} requestParameters Request parameters.
|
|
21565
|
+
* @param {*} [options] Override http request option.
|
|
21566
|
+
* @throws {RequiredError}
|
|
21567
|
+
* @memberof UniquePageApi
|
|
21568
|
+
*/
|
|
21569
|
+
getUniquePageByType(requestParameters: UniquePageApiGetUniquePageByTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUniquePageResponse, any>>;
|
|
21570
|
+
/**
|
|
21571
|
+
*
|
|
21572
|
+
* @param {UniquePageApiGetUniquePagesRequest} requestParameters Request parameters.
|
|
21573
|
+
* @param {*} [options] Override http request option.
|
|
21574
|
+
* @throws {RequiredError}
|
|
21575
|
+
* @memberof UniquePageApi
|
|
21576
|
+
*/
|
|
21577
|
+
getUniquePages(requestParameters?: UniquePageApiGetUniquePagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUniquePagesResponse, any>>;
|
|
21578
|
+
/**
|
|
21579
|
+
*
|
|
21580
|
+
* @param {UniquePageApiUpdateUniquePageRequest} requestParameters Request parameters.
|
|
21581
|
+
* @param {*} [options] Override http request option.
|
|
21582
|
+
* @throws {RequiredError}
|
|
21583
|
+
* @memberof UniquePageApi
|
|
21584
|
+
*/
|
|
21585
|
+
updateUniquePage(requestParameters: UniquePageApiUpdateUniquePageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUniquePageResponse, any>>;
|
|
21586
|
+
}
|
|
21587
|
+
/**
|
|
21588
|
+
* @export
|
|
21589
|
+
*/
|
|
21590
|
+
export declare const GetUniquePagesDateFieldEnum: {
|
|
21591
|
+
readonly CREATED_AT: "createdAt";
|
|
21592
|
+
readonly UPDATED_AT: "updatedAt";
|
|
21593
|
+
};
|
|
21594
|
+
export type GetUniquePagesDateFieldEnum = typeof GetUniquePagesDateFieldEnum[keyof typeof GetUniquePagesDateFieldEnum];
|
|
21001
21595
|
/**
|
|
21002
21596
|
* UserApi - axios parameter creator
|
|
21003
21597
|
* @export
|