@confighub/rtk-query 0.1.3 → 0.2.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/dist/index.cjs +7 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2985 -2813
- package/dist/index.d.ts +2985 -2813
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -69,6 +69,7 @@ var addTagTypes = [
|
|
|
69
69
|
"Invocation",
|
|
70
70
|
"Link",
|
|
71
71
|
"UserInfo",
|
|
72
|
+
"BrowserSession",
|
|
72
73
|
"OAuthClient",
|
|
73
74
|
"Organization",
|
|
74
75
|
"OrganizationMember",
|
|
@@ -605,6 +606,10 @@ var injectedRtkApi = confighubApi.enhanceEndpoints({
|
|
|
605
606
|
query: () => ({ url: `/me` }),
|
|
606
607
|
providesTags: ["UserInfo"]
|
|
607
608
|
}),
|
|
609
|
+
createBrowserSession: build.mutation({
|
|
610
|
+
query: () => ({ url: `/me/browser-session`, method: "POST" }),
|
|
611
|
+
invalidatesTags: ["BrowserSession"]
|
|
612
|
+
}),
|
|
608
613
|
listOAuthClients: build.query({
|
|
609
614
|
query: () => ({ url: `/oauth_client` }),
|
|
610
615
|
providesTags: ["OAuthClient"]
|
|
@@ -2470,6 +2475,7 @@ var {
|
|
|
2470
2475
|
useBulkCreateLinksMutation,
|
|
2471
2476
|
useGetMeQuery,
|
|
2472
2477
|
useLazyGetMeQuery,
|
|
2478
|
+
useCreateBrowserSessionMutation,
|
|
2473
2479
|
useListOAuthClientsQuery,
|
|
2474
2480
|
useLazyListOAuthClientsQuery,
|
|
2475
2481
|
useCreateOAuthClientMutation,
|
|
@@ -2750,6 +2756,7 @@ exports.useBulkPatchViewsMutation = useBulkPatchViewsMutation;
|
|
|
2750
2756
|
exports.useBulkTagUnitsMutation = useBulkTagUnitsMutation;
|
|
2751
2757
|
exports.useCreateAttributeMutation = useCreateAttributeMutation;
|
|
2752
2758
|
exports.useCreateBridgeWorkerMutation = useCreateBridgeWorkerMutation;
|
|
2759
|
+
exports.useCreateBrowserSessionMutation = useCreateBrowserSessionMutation;
|
|
2753
2760
|
exports.useCreateChangeOrderMutation = useCreateChangeOrderMutation;
|
|
2754
2761
|
exports.useCreateChangeSetMutation = useCreateChangeSetMutation;
|
|
2755
2762
|
exports.useCreateFilterMutation = useCreateFilterMutation;
|