arky-sdk 0.7.67 → 0.7.68
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/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -465,20 +465,24 @@ declare function createAdmin(config: HttpClientConfig & {
|
|
|
465
465
|
analytics: {
|
|
466
466
|
track: typeof track;
|
|
467
467
|
getSummary: (params?: {
|
|
468
|
+
market?: string;
|
|
468
469
|
period?: string;
|
|
469
470
|
}, options?: RequestOptions) => Promise<AnalyticsSummary>;
|
|
470
471
|
getSeries: (params: {
|
|
471
472
|
metrics: string[];
|
|
473
|
+
market?: string;
|
|
472
474
|
period?: string;
|
|
473
475
|
interval?: string;
|
|
474
476
|
}, options?: RequestOptions) => Promise<TimeSeriesResponse>;
|
|
475
477
|
getTopEntities: (params: {
|
|
476
478
|
entity: string;
|
|
479
|
+
market?: string;
|
|
477
480
|
period?: string;
|
|
478
481
|
limit?: number;
|
|
479
482
|
}, options?: RequestOptions) => Promise<TopEntity[]>;
|
|
480
483
|
getStatusBreakdown: (params: {
|
|
481
484
|
entity: string;
|
|
485
|
+
market?: string;
|
|
482
486
|
period?: string;
|
|
483
487
|
}, options?: RequestOptions) => Promise<StatusBreakdown[]>;
|
|
484
488
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -465,20 +465,24 @@ declare function createAdmin(config: HttpClientConfig & {
|
|
|
465
465
|
analytics: {
|
|
466
466
|
track: typeof track;
|
|
467
467
|
getSummary: (params?: {
|
|
468
|
+
market?: string;
|
|
468
469
|
period?: string;
|
|
469
470
|
}, options?: RequestOptions) => Promise<AnalyticsSummary>;
|
|
470
471
|
getSeries: (params: {
|
|
471
472
|
metrics: string[];
|
|
473
|
+
market?: string;
|
|
472
474
|
period?: string;
|
|
473
475
|
interval?: string;
|
|
474
476
|
}, options?: RequestOptions) => Promise<TimeSeriesResponse>;
|
|
475
477
|
getTopEntities: (params: {
|
|
476
478
|
entity: string;
|
|
479
|
+
market?: string;
|
|
477
480
|
period?: string;
|
|
478
481
|
limit?: number;
|
|
479
482
|
}, options?: RequestOptions) => Promise<TopEntity[]>;
|
|
480
483
|
getStatusBreakdown: (params: {
|
|
481
484
|
entity: string;
|
|
485
|
+
market?: string;
|
|
482
486
|
period?: string;
|
|
483
487
|
}, options?: RequestOptions) => Promise<StatusBreakdown[]>;
|
|
484
488
|
};
|