@readyfor/api-client-pigeon 0.259.0 → 0.260.0-pr1035.ed2fbcc
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/components.d.mts +126 -126
- package/dist/components.d.ts +126 -126
- package/dist/hooks/index.d.mts +1 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/useCampaigns.d.mts +3 -2
- package/dist/hooks/useCampaigns.d.ts +3 -2
- package/dist/hooks/useCampaignsId.d.mts +3 -2
- package/dist/hooks/useCampaignsId.d.ts +3 -2
- package/dist/hooks/useCampaignsIdPreview.d.mts +3 -2
- package/dist/hooks/useCampaignsIdPreview.d.ts +3 -2
- package/dist/hooks/useProjectsProjectIdOrKeyword.d.mts +3 -2
- package/dist/hooks/useProjectsProjectIdOrKeyword.d.ts +3 -2
- package/dist/hooks/useSegmentsBehaviorSegments.d.mts +3 -2
- package/dist/hooks/useSegmentsBehaviorSegments.d.ts +3 -2
- package/dist/hooks/useSegmentsProfileSegments.d.mts +3 -2
- package/dist/hooks/useSegmentsProfileSegments.d.ts +3 -2
- package/dist/hooks/useSegmentsTargetUsersCount.d.mts +3 -2
- package/dist/hooks/useSegmentsTargetUsersCount.d.ts +3 -2
- package/package.json +13 -14
package/dist/hooks/index.d.mts
CHANGED
|
@@ -6,6 +6,7 @@ export { useSegmentsBehaviorSegments, useSegmentsBehaviorSegmentsImmutable, useS
|
|
|
6
6
|
export { useSegmentsProfileSegments, useSegmentsProfileSegmentsImmutable, useSegmentsProfileSegmentsInfinite } from './useSegmentsProfileSegments.mjs';
|
|
7
7
|
export { useSegmentsTargetUsersCount, useSegmentsTargetUsersCountImmutable, useSegmentsTargetUsersCountInfinite } from './useSegmentsTargetUsersCount.mjs';
|
|
8
8
|
import 'swr/infinite';
|
|
9
|
+
import 'swr/_internal';
|
|
9
10
|
import 'swr';
|
|
10
11
|
import '../schemaType.mjs';
|
|
11
12
|
import '@readyfor/api-client-base/react';
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export { useSegmentsBehaviorSegments, useSegmentsBehaviorSegmentsImmutable, useS
|
|
|
6
6
|
export { useSegmentsProfileSegments, useSegmentsProfileSegmentsImmutable, useSegmentsProfileSegmentsInfinite } from './useSegmentsProfileSegments.js';
|
|
7
7
|
export { useSegmentsTargetUsersCount, useSegmentsTargetUsersCountImmutable, useSegmentsTargetUsersCountInfinite } from './useSegmentsTargetUsersCount.js';
|
|
8
8
|
import 'swr/infinite';
|
|
9
|
+
import 'swr/_internal';
|
|
9
10
|
import 'swr';
|
|
10
11
|
import '../schemaType.js';
|
|
11
12
|
import '@readyfor/api-client-base/react';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { components } from '../schemaType.mjs';
|
|
@@ -18,7 +19,7 @@ declare const useCampaigns: (query: CampaignsGetQuery, swrConfig?: Configuration
|
|
|
18
19
|
pagination: components["schemas"]["Pagination"];
|
|
19
20
|
}>;
|
|
20
21
|
isValidating: boolean;
|
|
21
|
-
isLoading:
|
|
22
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
22
23
|
key: string;
|
|
23
24
|
};
|
|
24
25
|
declare const useCampaignsImmutable: (query: CampaignsGetQuery, swrConfig?: Configuration<CampaignsGetResponse>) => {
|
|
@@ -32,7 +33,7 @@ declare const useCampaignsImmutable: (query: CampaignsGetQuery, swrConfig?: Conf
|
|
|
32
33
|
pagination: components["schemas"]["Pagination"];
|
|
33
34
|
}>;
|
|
34
35
|
isValidating: boolean;
|
|
35
|
-
isLoading:
|
|
36
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
36
37
|
key: string;
|
|
37
38
|
};
|
|
38
39
|
declare const useCampaignsInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: CampaignsGetQuery) => string) => SWRInfiniteKeyLoader<CampaignsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<CampaignsGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { components } from '../schemaType.js';
|
|
@@ -18,7 +19,7 @@ declare const useCampaigns: (query: CampaignsGetQuery, swrConfig?: Configuration
|
|
|
18
19
|
pagination: components["schemas"]["Pagination"];
|
|
19
20
|
}>;
|
|
20
21
|
isValidating: boolean;
|
|
21
|
-
isLoading:
|
|
22
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
22
23
|
key: string;
|
|
23
24
|
};
|
|
24
25
|
declare const useCampaignsImmutable: (query: CampaignsGetQuery, swrConfig?: Configuration<CampaignsGetResponse>) => {
|
|
@@ -32,7 +33,7 @@ declare const useCampaignsImmutable: (query: CampaignsGetQuery, swrConfig?: Conf
|
|
|
32
33
|
pagination: components["schemas"]["Pagination"];
|
|
33
34
|
}>;
|
|
34
35
|
isValidating: boolean;
|
|
35
|
-
isLoading:
|
|
36
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
36
37
|
key: string;
|
|
37
38
|
};
|
|
38
39
|
declare const useCampaignsInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: CampaignsGetQuery) => string) => SWRInfiniteKeyLoader<CampaignsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<CampaignsGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { components } from '../schemaType.mjs';
|
|
@@ -16,7 +17,7 @@ declare const useCampaignsId: (path: CampaignsIdGetPath, swrConfig?: Configurati
|
|
|
16
17
|
campaignDetail: components["schemas"]["CampaignDetail"];
|
|
17
18
|
}>;
|
|
18
19
|
isValidating: boolean;
|
|
19
|
-
isLoading:
|
|
20
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
20
21
|
key: string;
|
|
21
22
|
};
|
|
22
23
|
declare const useCampaignsIdImmutable: (path: CampaignsIdGetPath, swrConfig?: Configuration<CampaignsIdGetResponse>) => {
|
|
@@ -28,7 +29,7 @@ declare const useCampaignsIdImmutable: (path: CampaignsIdGetPath, swrConfig?: Co
|
|
|
28
29
|
campaignDetail: components["schemas"]["CampaignDetail"];
|
|
29
30
|
}>;
|
|
30
31
|
isValidating: boolean;
|
|
31
|
-
isLoading:
|
|
32
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
32
33
|
key: string;
|
|
33
34
|
};
|
|
34
35
|
declare const useCampaignsIdInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: CampaignsIdGetPath) => string) => SWRInfiniteKeyLoader<CampaignsIdGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<CampaignsIdGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { components } from '../schemaType.js';
|
|
@@ -16,7 +17,7 @@ declare const useCampaignsId: (path: CampaignsIdGetPath, swrConfig?: Configurati
|
|
|
16
17
|
campaignDetail: components["schemas"]["CampaignDetail"];
|
|
17
18
|
}>;
|
|
18
19
|
isValidating: boolean;
|
|
19
|
-
isLoading:
|
|
20
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
20
21
|
key: string;
|
|
21
22
|
};
|
|
22
23
|
declare const useCampaignsIdImmutable: (path: CampaignsIdGetPath, swrConfig?: Configuration<CampaignsIdGetResponse>) => {
|
|
@@ -28,7 +29,7 @@ declare const useCampaignsIdImmutable: (path: CampaignsIdGetPath, swrConfig?: Co
|
|
|
28
29
|
campaignDetail: components["schemas"]["CampaignDetail"];
|
|
29
30
|
}>;
|
|
30
31
|
isValidating: boolean;
|
|
31
|
-
isLoading:
|
|
32
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
32
33
|
key: string;
|
|
33
34
|
};
|
|
34
35
|
declare const useCampaignsIdInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: CampaignsIdGetPath) => string) => SWRInfiniteKeyLoader<CampaignsIdGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<CampaignsIdGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { Configuration } from '@readyfor/api-client-base/react';
|
|
@@ -16,7 +17,7 @@ declare const useCampaignsIdPreview: (path: CampaignsIdPreviewGetPath, swrConfig
|
|
|
16
17
|
content: string;
|
|
17
18
|
}>;
|
|
18
19
|
isValidating: boolean;
|
|
19
|
-
isLoading:
|
|
20
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
20
21
|
key: string;
|
|
21
22
|
};
|
|
22
23
|
declare const useCampaignsIdPreviewImmutable: (path: CampaignsIdPreviewGetPath, swrConfig?: Configuration<CampaignsIdPreviewGetResponse>) => {
|
|
@@ -28,7 +29,7 @@ declare const useCampaignsIdPreviewImmutable: (path: CampaignsIdPreviewGetPath,
|
|
|
28
29
|
content: string;
|
|
29
30
|
}>;
|
|
30
31
|
isValidating: boolean;
|
|
31
|
-
isLoading:
|
|
32
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
32
33
|
key: string;
|
|
33
34
|
};
|
|
34
35
|
declare const useCampaignsIdPreviewInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: CampaignsIdPreviewGetPath) => string) => SWRInfiniteKeyLoader<CampaignsIdPreviewGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<CampaignsIdPreviewGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { Configuration } from '@readyfor/api-client-base/react';
|
|
@@ -16,7 +17,7 @@ declare const useCampaignsIdPreview: (path: CampaignsIdPreviewGetPath, swrConfig
|
|
|
16
17
|
content: string;
|
|
17
18
|
}>;
|
|
18
19
|
isValidating: boolean;
|
|
19
|
-
isLoading:
|
|
20
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
20
21
|
key: string;
|
|
21
22
|
};
|
|
22
23
|
declare const useCampaignsIdPreviewImmutable: (path: CampaignsIdPreviewGetPath, swrConfig?: Configuration<CampaignsIdPreviewGetResponse>) => {
|
|
@@ -28,7 +29,7 @@ declare const useCampaignsIdPreviewImmutable: (path: CampaignsIdPreviewGetPath,
|
|
|
28
29
|
content: string;
|
|
29
30
|
}>;
|
|
30
31
|
isValidating: boolean;
|
|
31
|
-
isLoading:
|
|
32
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
32
33
|
key: string;
|
|
33
34
|
};
|
|
34
35
|
declare const useCampaignsIdPreviewInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: CampaignsIdPreviewGetPath) => string) => SWRInfiniteKeyLoader<CampaignsIdPreviewGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<CampaignsIdPreviewGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { components } from '../schemaType.mjs';
|
|
@@ -16,7 +17,7 @@ declare const useProjectsProjectIdOrKeyword: (path: ProjectsProjectIdOrKeywordGe
|
|
|
16
17
|
project: components["schemas"]["ReadyforProject"];
|
|
17
18
|
}>;
|
|
18
19
|
isValidating: boolean;
|
|
19
|
-
isLoading:
|
|
20
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
20
21
|
key: string;
|
|
21
22
|
};
|
|
22
23
|
declare const useProjectsProjectIdOrKeywordImmutable: (path: ProjectsProjectIdOrKeywordGetPath, swrConfig?: Configuration<ProjectsProjectIdOrKeywordGetResponse>) => {
|
|
@@ -28,7 +29,7 @@ declare const useProjectsProjectIdOrKeywordImmutable: (path: ProjectsProjectIdOr
|
|
|
28
29
|
project: components["schemas"]["ReadyforProject"];
|
|
29
30
|
}>;
|
|
30
31
|
isValidating: boolean;
|
|
31
|
-
isLoading:
|
|
32
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
32
33
|
key: string;
|
|
33
34
|
};
|
|
34
35
|
declare const useProjectsProjectIdOrKeywordInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: ProjectsProjectIdOrKeywordGetPath) => string) => SWRInfiniteKeyLoader<ProjectsProjectIdOrKeywordGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<ProjectsProjectIdOrKeywordGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { components } from '../schemaType.js';
|
|
@@ -16,7 +17,7 @@ declare const useProjectsProjectIdOrKeyword: (path: ProjectsProjectIdOrKeywordGe
|
|
|
16
17
|
project: components["schemas"]["ReadyforProject"];
|
|
17
18
|
}>;
|
|
18
19
|
isValidating: boolean;
|
|
19
|
-
isLoading:
|
|
20
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
20
21
|
key: string;
|
|
21
22
|
};
|
|
22
23
|
declare const useProjectsProjectIdOrKeywordImmutable: (path: ProjectsProjectIdOrKeywordGetPath, swrConfig?: Configuration<ProjectsProjectIdOrKeywordGetResponse>) => {
|
|
@@ -28,7 +29,7 @@ declare const useProjectsProjectIdOrKeywordImmutable: (path: ProjectsProjectIdOr
|
|
|
28
29
|
project: components["schemas"]["ReadyforProject"];
|
|
29
30
|
}>;
|
|
30
31
|
isValidating: boolean;
|
|
31
|
-
isLoading:
|
|
32
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
32
33
|
key: string;
|
|
33
34
|
};
|
|
34
35
|
declare const useProjectsProjectIdOrKeywordInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: ProjectsProjectIdOrKeywordGetPath) => string) => SWRInfiniteKeyLoader<ProjectsProjectIdOrKeywordGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<ProjectsProjectIdOrKeywordGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { components } from '../schemaType.mjs';
|
|
@@ -15,7 +16,7 @@ declare const useSegmentsBehaviorSegments: (swrConfig?: Configuration<SegmentsBe
|
|
|
15
16
|
behaviorSegments: components["schemas"]["Segment"][];
|
|
16
17
|
}>;
|
|
17
18
|
isValidating: boolean;
|
|
18
|
-
isLoading:
|
|
19
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
19
20
|
key: string;
|
|
20
21
|
};
|
|
21
22
|
declare const useSegmentsBehaviorSegmentsImmutable: (swrConfig?: Configuration<SegmentsBehaviorSegmentsGetResponse>) => {
|
|
@@ -27,7 +28,7 @@ declare const useSegmentsBehaviorSegmentsImmutable: (swrConfig?: Configuration<S
|
|
|
27
28
|
behaviorSegments: components["schemas"]["Segment"][];
|
|
28
29
|
}>;
|
|
29
30
|
isValidating: boolean;
|
|
30
|
-
isLoading:
|
|
31
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
31
32
|
key: string;
|
|
32
33
|
};
|
|
33
34
|
declare const useSegmentsBehaviorSegmentsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<SegmentsBehaviorSegmentsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<SegmentsBehaviorSegmentsGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { components } from '../schemaType.js';
|
|
@@ -15,7 +16,7 @@ declare const useSegmentsBehaviorSegments: (swrConfig?: Configuration<SegmentsBe
|
|
|
15
16
|
behaviorSegments: components["schemas"]["Segment"][];
|
|
16
17
|
}>;
|
|
17
18
|
isValidating: boolean;
|
|
18
|
-
isLoading:
|
|
19
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
19
20
|
key: string;
|
|
20
21
|
};
|
|
21
22
|
declare const useSegmentsBehaviorSegmentsImmutable: (swrConfig?: Configuration<SegmentsBehaviorSegmentsGetResponse>) => {
|
|
@@ -27,7 +28,7 @@ declare const useSegmentsBehaviorSegmentsImmutable: (swrConfig?: Configuration<S
|
|
|
27
28
|
behaviorSegments: components["schemas"]["Segment"][];
|
|
28
29
|
}>;
|
|
29
30
|
isValidating: boolean;
|
|
30
|
-
isLoading:
|
|
31
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
31
32
|
key: string;
|
|
32
33
|
};
|
|
33
34
|
declare const useSegmentsBehaviorSegmentsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<SegmentsBehaviorSegmentsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<SegmentsBehaviorSegmentsGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { components } from '../schemaType.mjs';
|
|
@@ -15,7 +16,7 @@ declare const useSegmentsProfileSegments: (swrConfig?: Configuration<SegmentsPro
|
|
|
15
16
|
profileSegments: components["schemas"]["Segment"][];
|
|
16
17
|
}>;
|
|
17
18
|
isValidating: boolean;
|
|
18
|
-
isLoading:
|
|
19
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
19
20
|
key: string;
|
|
20
21
|
};
|
|
21
22
|
declare const useSegmentsProfileSegmentsImmutable: (swrConfig?: Configuration<SegmentsProfileSegmentsGetResponse>) => {
|
|
@@ -27,7 +28,7 @@ declare const useSegmentsProfileSegmentsImmutable: (swrConfig?: Configuration<Se
|
|
|
27
28
|
profileSegments: components["schemas"]["Segment"][];
|
|
28
29
|
}>;
|
|
29
30
|
isValidating: boolean;
|
|
30
|
-
isLoading:
|
|
31
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
31
32
|
key: string;
|
|
32
33
|
};
|
|
33
34
|
declare const useSegmentsProfileSegmentsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<SegmentsProfileSegmentsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<SegmentsProfileSegmentsGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { components } from '../schemaType.js';
|
|
@@ -15,7 +16,7 @@ declare const useSegmentsProfileSegments: (swrConfig?: Configuration<SegmentsPro
|
|
|
15
16
|
profileSegments: components["schemas"]["Segment"][];
|
|
16
17
|
}>;
|
|
17
18
|
isValidating: boolean;
|
|
18
|
-
isLoading:
|
|
19
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
19
20
|
key: string;
|
|
20
21
|
};
|
|
21
22
|
declare const useSegmentsProfileSegmentsImmutable: (swrConfig?: Configuration<SegmentsProfileSegmentsGetResponse>) => {
|
|
@@ -27,7 +28,7 @@ declare const useSegmentsProfileSegmentsImmutable: (swrConfig?: Configuration<Se
|
|
|
27
28
|
profileSegments: components["schemas"]["Segment"][];
|
|
28
29
|
}>;
|
|
29
30
|
isValidating: boolean;
|
|
30
|
-
isLoading:
|
|
31
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
31
32
|
key: string;
|
|
32
33
|
};
|
|
33
34
|
declare const useSegmentsProfileSegmentsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<SegmentsProfileSegmentsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<SegmentsProfileSegmentsGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { Configuration } from '@readyfor/api-client-base/react';
|
|
@@ -16,7 +17,7 @@ declare const useSegmentsTargetUsersCount: (query: SegmentsTargetUsersCountGetQu
|
|
|
16
17
|
count: number;
|
|
17
18
|
}>;
|
|
18
19
|
isValidating: boolean;
|
|
19
|
-
isLoading:
|
|
20
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
20
21
|
key: string;
|
|
21
22
|
};
|
|
22
23
|
declare const useSegmentsTargetUsersCountImmutable: (query: SegmentsTargetUsersCountGetQuery, swrConfig?: Configuration<SegmentsTargetUsersCountGetResponse>) => {
|
|
@@ -28,7 +29,7 @@ declare const useSegmentsTargetUsersCountImmutable: (query: SegmentsTargetUsersC
|
|
|
28
29
|
count: number;
|
|
29
30
|
}>;
|
|
30
31
|
isValidating: boolean;
|
|
31
|
-
isLoading:
|
|
32
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
32
33
|
key: string;
|
|
33
34
|
};
|
|
34
35
|
declare const useSegmentsTargetUsersCountInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: SegmentsTargetUsersCountGetQuery) => string) => SWRInfiniteKeyLoader<SegmentsTargetUsersCountGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<SegmentsTargetUsersCountGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as swr_infinite from 'swr/infinite';
|
|
2
2
|
import { SWRInfiniteKeyLoader, SWRInfiniteConfiguration } from 'swr/infinite';
|
|
3
|
+
import * as swr__internal from 'swr/_internal';
|
|
3
4
|
import * as swr from 'swr';
|
|
4
5
|
import { Arguments } from 'swr';
|
|
5
6
|
import { Configuration } from '@readyfor/api-client-base/react';
|
|
@@ -16,7 +17,7 @@ declare const useSegmentsTargetUsersCount: (query: SegmentsTargetUsersCountGetQu
|
|
|
16
17
|
count: number;
|
|
17
18
|
}>;
|
|
18
19
|
isValidating: boolean;
|
|
19
|
-
isLoading:
|
|
20
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
20
21
|
key: string;
|
|
21
22
|
};
|
|
22
23
|
declare const useSegmentsTargetUsersCountImmutable: (query: SegmentsTargetUsersCountGetQuery, swrConfig?: Configuration<SegmentsTargetUsersCountGetResponse>) => {
|
|
@@ -28,7 +29,7 @@ declare const useSegmentsTargetUsersCountImmutable: (query: SegmentsTargetUsersC
|
|
|
28
29
|
count: number;
|
|
29
30
|
}>;
|
|
30
31
|
isValidating: boolean;
|
|
31
|
-
isLoading:
|
|
32
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
32
33
|
key: string;
|
|
33
34
|
};
|
|
34
35
|
declare const useSegmentsTargetUsersCountInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: SegmentsTargetUsersCountGetQuery) => string) => SWRInfiniteKeyLoader<SegmentsTargetUsersCountGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<SegmentsTargetUsersCountGetResponse>) => swr_infinite.SWRInfiniteResponse<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@readyfor/api-client-pigeon",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.260.0-pr1035.ed2fbcc",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -27,27 +27,24 @@
|
|
|
27
27
|
]
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
|
-
"scripts": {
|
|
31
|
-
"build": "tsup"
|
|
32
|
-
},
|
|
33
30
|
"devDependencies": {
|
|
34
|
-
"@readyfor/api-client-base": "0.259.0",
|
|
35
31
|
"@types/qs": "6.14.0",
|
|
36
|
-
"@types/react": "19.1.
|
|
32
|
+
"@types/react": "19.1.13",
|
|
37
33
|
"@types/use-sync-external-store": "1.5.0",
|
|
38
34
|
"qs": "^6.13.1",
|
|
39
|
-
"react": "
|
|
40
|
-
"swr": "
|
|
41
|
-
"use-sync-external-store": "
|
|
42
|
-
"zod": "^3.24.1"
|
|
35
|
+
"react": "19.1.1",
|
|
36
|
+
"swr": "2.3.6",
|
|
37
|
+
"use-sync-external-store": "1.5.0",
|
|
38
|
+
"zod": "^3.24.1",
|
|
39
|
+
"@readyfor/api-client-base": "0.260.0-pr1035.ed2fbcc"
|
|
43
40
|
},
|
|
44
41
|
"peerDependencies": {
|
|
45
|
-
"@readyfor/api-client-base": "*",
|
|
46
42
|
"qs": "^6",
|
|
47
43
|
"react": ">=18.x <=19.x",
|
|
48
44
|
"swr": "^2.3.3",
|
|
49
45
|
"use-sync-external-store": "^1.2.2",
|
|
50
|
-
"zod": "^3"
|
|
46
|
+
"zod": "^3",
|
|
47
|
+
"@readyfor/api-client-base": "0.260.0-pr1035.ed2fbcc"
|
|
51
48
|
},
|
|
52
49
|
"peerDependenciesMeta": {
|
|
53
50
|
"react": {
|
|
@@ -75,5 +72,7 @@
|
|
|
75
72
|
"!src/**/*.test.tsx"
|
|
76
73
|
]
|
|
77
74
|
},
|
|
78
|
-
"
|
|
79
|
-
|
|
75
|
+
"scripts": {
|
|
76
|
+
"build": "tsup"
|
|
77
|
+
}
|
|
78
|
+
}
|