@infisale-client/api 1.3.70 → 1.3.71
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 +84 -15
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -359,6 +359,75 @@ export declare const CountryEnum: {
|
|
|
359
359
|
readonly ZW: "ZW";
|
|
360
360
|
};
|
|
361
361
|
export type CountryEnum = typeof CountryEnum[keyof typeof CountryEnum];
|
|
362
|
+
/**
|
|
363
|
+
*
|
|
364
|
+
* @export
|
|
365
|
+
* @interface CreateSeoRankTrack200Response
|
|
366
|
+
*/
|
|
367
|
+
export interface CreateSeoRankTrack200Response {
|
|
368
|
+
/**
|
|
369
|
+
*
|
|
370
|
+
* @type {string}
|
|
371
|
+
* @memberof CreateSeoRankTrack200Response
|
|
372
|
+
*/
|
|
373
|
+
'updated_at': string;
|
|
374
|
+
/**
|
|
375
|
+
*
|
|
376
|
+
* @type {string}
|
|
377
|
+
* @memberof CreateSeoRankTrack200Response
|
|
378
|
+
*/
|
|
379
|
+
'created_at': string;
|
|
380
|
+
/**
|
|
381
|
+
*
|
|
382
|
+
* @type {boolean}
|
|
383
|
+
* @memberof CreateSeoRankTrack200Response
|
|
384
|
+
*/
|
|
385
|
+
'is_active': boolean;
|
|
386
|
+
/**
|
|
387
|
+
*
|
|
388
|
+
* @type {string}
|
|
389
|
+
* @memberof CreateSeoRankTrack200Response
|
|
390
|
+
*/
|
|
391
|
+
'next_run_at': string;
|
|
392
|
+
/**
|
|
393
|
+
*
|
|
394
|
+
* @type {number}
|
|
395
|
+
* @memberof CreateSeoRankTrack200Response
|
|
396
|
+
*/
|
|
397
|
+
'interval_seconds': number;
|
|
398
|
+
/**
|
|
399
|
+
*
|
|
400
|
+
* @type {string}
|
|
401
|
+
* @memberof CreateSeoRankTrack200Response
|
|
402
|
+
*/
|
|
403
|
+
'payload_hash': string;
|
|
404
|
+
/**
|
|
405
|
+
* Construct a type with a set of properties K of type T
|
|
406
|
+
* @type {{ [key: string]: any; }}
|
|
407
|
+
* @memberof CreateSeoRankTrack200Response
|
|
408
|
+
*/
|
|
409
|
+
'payload': {
|
|
410
|
+
[key: string]: any;
|
|
411
|
+
};
|
|
412
|
+
/**
|
|
413
|
+
*
|
|
414
|
+
* @type {string}
|
|
415
|
+
* @memberof CreateSeoRankTrack200Response
|
|
416
|
+
*/
|
|
417
|
+
'id': string;
|
|
418
|
+
/**
|
|
419
|
+
*
|
|
420
|
+
* @type {string}
|
|
421
|
+
* @memberof CreateSeoRankTrack200Response
|
|
422
|
+
*/
|
|
423
|
+
'type': string;
|
|
424
|
+
/**
|
|
425
|
+
*
|
|
426
|
+
* @type {string}
|
|
427
|
+
* @memberof CreateSeoRankTrack200Response
|
|
428
|
+
*/
|
|
429
|
+
'company': string;
|
|
430
|
+
}
|
|
362
431
|
/**
|
|
363
432
|
*
|
|
364
433
|
* @export
|
|
@@ -5539,12 +5608,6 @@ export interface IContentPlanPostRequest {
|
|
|
5539
5608
|
* @memberof IContentPlanPostRequest
|
|
5540
5609
|
*/
|
|
5541
5610
|
'targetPublishedAt': string;
|
|
5542
|
-
/**
|
|
5543
|
-
*
|
|
5544
|
-
* @type {number}
|
|
5545
|
-
* @memberof IContentPlanPostRequest
|
|
5546
|
-
*/
|
|
5547
|
-
'minSeoScore'?: number;
|
|
5548
5611
|
}
|
|
5549
5612
|
/**
|
|
5550
5613
|
*
|
|
@@ -5654,12 +5717,6 @@ export interface IContentPlanResponse {
|
|
|
5654
5717
|
* @memberof IContentPlanResponse
|
|
5655
5718
|
*/
|
|
5656
5719
|
'seoScore'?: number;
|
|
5657
|
-
/**
|
|
5658
|
-
*
|
|
5659
|
-
* @type {number}
|
|
5660
|
-
* @memberof IContentPlanResponse
|
|
5661
|
-
*/
|
|
5662
|
-
'minSeoScore'?: number;
|
|
5663
5720
|
/**
|
|
5664
5721
|
*
|
|
5665
5722
|
* @type {Array<IContentPlanAttempt>}
|
|
@@ -9828,6 +9885,12 @@ export interface ISeoRankTrackPatchRequest {
|
|
|
9828
9885
|
* @memberof ISeoRankTrackPatchRequest
|
|
9829
9886
|
*/
|
|
9830
9887
|
'isActive'?: boolean;
|
|
9888
|
+
/**
|
|
9889
|
+
*
|
|
9890
|
+
* @type {string}
|
|
9891
|
+
* @memberof ISeoRankTrackPatchRequest
|
|
9892
|
+
*/
|
|
9893
|
+
'location'?: string;
|
|
9831
9894
|
}
|
|
9832
9895
|
/**
|
|
9833
9896
|
*
|
|
@@ -9853,6 +9916,12 @@ export interface ISeoRankTrackPostRequest {
|
|
|
9853
9916
|
* @memberof ISeoRankTrackPostRequest
|
|
9854
9917
|
*/
|
|
9855
9918
|
'intervalSeconds': number;
|
|
9919
|
+
/**
|
|
9920
|
+
*
|
|
9921
|
+
* @type {string}
|
|
9922
|
+
* @memberof ISeoRankTrackPostRequest
|
|
9923
|
+
*/
|
|
9924
|
+
'location'?: string;
|
|
9856
9925
|
}
|
|
9857
9926
|
/**
|
|
9858
9927
|
*
|
|
@@ -25677,7 +25746,7 @@ export declare const SEOApiFp: (configuration?: Configuration) => {
|
|
|
25677
25746
|
* @param {*} [options] Override http request option.
|
|
25678
25747
|
* @throws {RequiredError}
|
|
25679
25748
|
*/
|
|
25680
|
-
createSeoRankTrack(iSeoRankTrackPostRequest: ISeoRankTrackPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
25749
|
+
createSeoRankTrack(iSeoRankTrackPostRequest: ISeoRankTrackPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateSeoRankTrack200Response>>;
|
|
25681
25750
|
/**
|
|
25682
25751
|
*
|
|
25683
25752
|
* @param {string} id
|
|
@@ -25719,7 +25788,7 @@ export declare const SEOApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
25719
25788
|
* @param {*} [options] Override http request option.
|
|
25720
25789
|
* @throws {RequiredError}
|
|
25721
25790
|
*/
|
|
25722
|
-
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
25791
|
+
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateSeoRankTrack200Response>;
|
|
25723
25792
|
/**
|
|
25724
25793
|
*
|
|
25725
25794
|
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
|
@@ -25834,7 +25903,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25834
25903
|
* @throws {RequiredError}
|
|
25835
25904
|
* @memberof SEOApi
|
|
25836
25905
|
*/
|
|
25837
|
-
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25906
|
+
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateSeoRankTrack200Response, any>>;
|
|
25838
25907
|
/**
|
|
25839
25908
|
*
|
|
25840
25909
|
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.71",
|
|
4
4
|
"description": "api-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "fce13875010e36bae190d57b9aaa822091e120a1"
|
|
41
41
|
}
|