@faiber/faiber-modules 0.2.1 → 0.3.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/README.md +50 -12
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +5 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +19 -21
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +281 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +556 -0
- package/dist/operations.js.map +1 -0
- package/dist/operations.types.d.ts +1984 -0
- package/dist/operations.types.d.ts.map +1 -0
- package/dist/operations.types.js +2 -0
- package/dist/operations.types.js.map +1 -0
- package/dist/types.d.ts +0 -9
- package/dist/types.d.ts.map +1 -1
- package/package.json +20 -1
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
|
+
import type * as T from "./operations.types.js";
|
|
3
|
+
export declare class ModulesOperations extends ServiceApi {
|
|
4
|
+
/** GET /; permission: public/session-derived. */
|
|
5
|
+
routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
|
|
6
|
+
/** GET /api-doc/openapi.json; permission: public/session-derived. */
|
|
7
|
+
routerBeautifiedOpenapiGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterBeautifiedOpenapiGetResponse, unknown, {}>>;
|
|
8
|
+
/** GET /api/openapi.json; permission: public/session-derived. */
|
|
9
|
+
routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
|
|
10
|
+
/** GET /api/v1/access/{host}/{target_id}; permission: public/session-derived. */
|
|
11
|
+
accessListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AccessListOnTargetGetResponse, unknown, {}>>;
|
|
12
|
+
/** POST /api/v1/access/{host}/{target_id}; permission: public/session-derived. */
|
|
13
|
+
accessGrantOnTargetPost(host: Identifier, targetId: Identifier, data: T.AccessGrantOnTargetPostInput, options?: RequestOptions<T.AccessGrantOnTargetPostInput>): Promise<import("axios").AxiosResponse<T.AccessGrantOnTargetPostResponse, T.AccessGrantOnTargetPostInput, {}>>;
|
|
14
|
+
/** DELETE /api/v1/access/{host}/{target_id}/{access_id}; permission: public/session-derived. */
|
|
15
|
+
accessRevokeOnTargetDelete(host: Identifier, targetId: Identifier, accessId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AccessRevokeOnTargetDeleteResponse, unknown, {}>>;
|
|
16
|
+
/** PUT /api/v1/access/{host}/{target_id}/{access_id}; permission: public/session-derived. */
|
|
17
|
+
accessUpdateOnTargetPut(host: Identifier, targetId: Identifier, accessId: Identifier, data: T.AccessUpdateOnTargetPutInput, options?: RequestOptions<T.AccessUpdateOnTargetPutInput>): Promise<import("axios").AxiosResponse<T.AccessUpdateOnTargetPutResponse, T.AccessUpdateOnTargetPutInput, {}>>;
|
|
18
|
+
/** GET /api/v1/audit-logs/{host}/{target_id}; permission: public/session-derived. */
|
|
19
|
+
auditLogListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuditLogListOnTargetGetResponse, unknown, {}>>;
|
|
20
|
+
/** GET /api/v1/auth/self; permission: public/session-derived. */
|
|
21
|
+
sessionGetSelfGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SessionGetSelfGetResponse, unknown, {}>>;
|
|
22
|
+
/** GET /api/v1/authors; permission: public/session-derived. */
|
|
23
|
+
authorListAuthorsGet(params?: T.AuthorListAuthorsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthorListAuthorsGetResponse, unknown, {}>>;
|
|
24
|
+
/** POST /api/v1/authors; permission: public/session-derived. */
|
|
25
|
+
authorCreateAuthorPost(data: T.AuthorCreateAuthorPostInput, options?: RequestOptions<T.AuthorCreateAuthorPostInput>): Promise<import("axios").AxiosResponse<T.AuthorCreateAuthorPostResponse, T.AuthorCreateAuthorPostInput, {}>>;
|
|
26
|
+
/** DELETE /api/v1/authors/{id}; permission: public/session-derived. */
|
|
27
|
+
authorDeleteAuthorDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthorDeleteAuthorDeleteResponse, unknown, {}>>;
|
|
28
|
+
/** GET /api/v1/authors/{id}; permission: public/session-derived. */
|
|
29
|
+
authorShowAuthorGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.AuthorShowAuthorGetResponse, unknown, {}>>;
|
|
30
|
+
/** PATCH /api/v1/authors/{id}; permission: public/session-derived. */
|
|
31
|
+
authorUpdateAuthorPatch(id: Identifier, data: T.AuthorUpdateAuthorPatchInput, options?: RequestOptions<T.AuthorUpdateAuthorPatchInput>): Promise<import("axios").AxiosResponse<T.AuthorUpdateAuthorPatchResponse, T.AuthorUpdateAuthorPatchInput, {}>>;
|
|
32
|
+
/** PUT /api/v1/authors/{id}; permission: public/session-derived. */
|
|
33
|
+
authorUpdateAuthorPut(id: Identifier, data: T.AuthorUpdateAuthorPutInput, options?: RequestOptions<T.AuthorUpdateAuthorPutInput>): Promise<import("axios").AxiosResponse<T.AuthorUpdateAuthorPutResponse, T.AuthorUpdateAuthorPutInput, {}>>;
|
|
34
|
+
/** GET /api/v1/blog/posts; permission: public/session-derived. */
|
|
35
|
+
blogListPostsGet(params?: T.BlogListPostsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BlogListPostsGetResponse, unknown, {}>>;
|
|
36
|
+
/** POST /api/v1/blog/posts; permission: public/session-derived. */
|
|
37
|
+
blogCreatePostPost(data: T.BlogCreatePostPostInput, options?: RequestOptions<T.BlogCreatePostPostInput>): Promise<import("axios").AxiosResponse<T.BlogCreatePostPostResponse, T.BlogCreatePostPostInput, {}>>;
|
|
38
|
+
/** DELETE /api/v1/blog/posts/{id}; permission: public/session-derived. */
|
|
39
|
+
blogDeletePostDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BlogDeletePostDeleteResponse, unknown, {}>>;
|
|
40
|
+
/** GET /api/v1/blog/posts/{id}; permission: public/session-derived. */
|
|
41
|
+
blogShowPostGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BlogShowPostGetResponse, unknown, {}>>;
|
|
42
|
+
/** PATCH /api/v1/blog/posts/{id}; permission: public/session-derived. */
|
|
43
|
+
blogUpdatePostPatch(id: Identifier, data: T.BlogUpdatePostPatchInput, options?: RequestOptions<T.BlogUpdatePostPatchInput>): Promise<import("axios").AxiosResponse<T.BlogUpdatePostPatchResponse, T.BlogUpdatePostPatchInput, {}>>;
|
|
44
|
+
/** PUT /api/v1/blog/posts/{id}; permission: public/session-derived. */
|
|
45
|
+
blogUpdatePostPut(id: Identifier, data: T.BlogUpdatePostPutInput, options?: RequestOptions<T.BlogUpdatePostPutInput>): Promise<import("axios").AxiosResponse<T.BlogUpdatePostPutResponse, T.BlogUpdatePostPutInput, {}>>;
|
|
46
|
+
/** GET /api/v1/categories; permission: public/session-derived. */
|
|
47
|
+
categoryListCategoriesGet(params?: T.CategoryListCategoriesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryListCategoriesGetResponse, unknown, {}>>;
|
|
48
|
+
/** POST /api/v1/categories; permission: public/session-derived. */
|
|
49
|
+
categoryCreateCategoryPost(data: T.CategoryCreateCategoryPostInput, options?: RequestOptions<T.CategoryCreateCategoryPostInput>): Promise<import("axios").AxiosResponse<T.CategoryCreateCategoryPostResponse, T.CategoryCreateCategoryPostInput, {}>>;
|
|
50
|
+
/** DELETE /api/v1/categories/{host}/{target_id}; permission: public/session-derived. */
|
|
51
|
+
categoryDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.CategoryDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryDetachFromTargetDeleteResponse, unknown, {}>>;
|
|
52
|
+
/** GET /api/v1/categories/{host}/{target_id}; permission: public/session-derived. */
|
|
53
|
+
categoryListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryListOnTargetGetResponse, unknown, {}>>;
|
|
54
|
+
/** POST /api/v1/categories/{host}/{target_id}; permission: public/session-derived. */
|
|
55
|
+
categoryAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.CategoryAttachToTargetPostInput, options?: RequestOptions<T.CategoryAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.CategoryAttachToTargetPostResponse, T.CategoryAttachToTargetPostInput, {}>>;
|
|
56
|
+
/** DELETE /api/v1/categories/{id}; permission: public/session-derived. */
|
|
57
|
+
categoryDeleteCategoryDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryDeleteCategoryDeleteResponse, unknown, {}>>;
|
|
58
|
+
/** GET /api/v1/categories/{id}; permission: public/session-derived. */
|
|
59
|
+
categoryShowCategoryGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CategoryShowCategoryGetResponse, unknown, {}>>;
|
|
60
|
+
/** PATCH /api/v1/categories/{id}; permission: public/session-derived. */
|
|
61
|
+
categoryUpdateCategoryPatch(id: Identifier, data: T.CategoryUpdateCategoryPatchInput, options?: RequestOptions<T.CategoryUpdateCategoryPatchInput>): Promise<import("axios").AxiosResponse<T.CategoryUpdateCategoryPatchResponse, T.CategoryUpdateCategoryPatchInput, {}>>;
|
|
62
|
+
/** PUT /api/v1/categories/{id}; permission: public/session-derived. */
|
|
63
|
+
categoryUpdateCategoryPut(id: Identifier, data: T.CategoryUpdateCategoryPutInput, options?: RequestOptions<T.CategoryUpdateCategoryPutInput>): Promise<import("axios").AxiosResponse<T.CategoryUpdateCategoryPutResponse, T.CategoryUpdateCategoryPutInput, {}>>;
|
|
64
|
+
/** GET /api/v1/comments; permission: public/session-derived. */
|
|
65
|
+
commentListCommentsGet(params?: T.CommentListCommentsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CommentListCommentsGetResponse, unknown, {}>>;
|
|
66
|
+
/** POST /api/v1/comments; permission: public/session-derived. */
|
|
67
|
+
commentCreateCommentPost(data: T.CommentCreateCommentPostInput, options?: RequestOptions<T.CommentCreateCommentPostInput>): Promise<import("axios").AxiosResponse<T.CommentCreateCommentPostResponse, T.CommentCreateCommentPostInput, {}>>;
|
|
68
|
+
/** GET /api/v1/comments/{host}/{target_id}; permission: public/session-derived. */
|
|
69
|
+
commentListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CommentListOnTargetGetResponse, unknown, {}>>;
|
|
70
|
+
/** POST /api/v1/comments/{host}/{target_id}; permission: public/session-derived. */
|
|
71
|
+
commentCreateOnTargetPost(host: Identifier, targetId: Identifier, data: T.CommentCreateOnTargetPostInput, options?: RequestOptions<T.CommentCreateOnTargetPostInput>): Promise<import("axios").AxiosResponse<T.CommentCreateOnTargetPostResponse, T.CommentCreateOnTargetPostInput, {}>>;
|
|
72
|
+
/** DELETE /api/v1/comments/{id}; permission: public/session-derived. */
|
|
73
|
+
commentDeleteCommentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CommentDeleteCommentDeleteResponse, unknown, {}>>;
|
|
74
|
+
/** GET /api/v1/comments/{id}; permission: public/session-derived. */
|
|
75
|
+
commentShowCommentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CommentShowCommentGetResponse, unknown, {}>>;
|
|
76
|
+
/** PATCH /api/v1/comments/{id}; permission: public/session-derived. */
|
|
77
|
+
commentUpdateCommentPatch(id: Identifier, data: T.CommentUpdateCommentPatchInput, options?: RequestOptions<T.CommentUpdateCommentPatchInput>): Promise<import("axios").AxiosResponse<T.CommentUpdateCommentPatchResponse, T.CommentUpdateCommentPatchInput, {}>>;
|
|
78
|
+
/** PUT /api/v1/comments/{id}; permission: public/session-derived. */
|
|
79
|
+
commentUpdateCommentPut(id: Identifier, data: T.CommentUpdateCommentPutInput, options?: RequestOptions<T.CommentUpdateCommentPutInput>): Promise<import("axios").AxiosResponse<T.CommentUpdateCommentPutResponse, T.CommentUpdateCommentPutInput, {}>>;
|
|
80
|
+
/** GET /api/v1/contents; permission: public/session-derived. */
|
|
81
|
+
contentListContentsGet(params?: T.ContentListContentsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentListContentsGetResponse, unknown, {}>>;
|
|
82
|
+
/** POST /api/v1/contents; permission: public/session-derived. */
|
|
83
|
+
contentCreateContentPost(data: T.ContentCreateContentPostInput, options?: RequestOptions<T.ContentCreateContentPostInput>): Promise<import("axios").AxiosResponse<T.ContentCreateContentPostResponse, T.ContentCreateContentPostInput, {}>>;
|
|
84
|
+
/** DELETE /api/v1/contents/{host}/{target_id}; permission: public/session-derived. */
|
|
85
|
+
contentDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.ContentDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentDetachFromTargetDeleteResponse, unknown, {}>>;
|
|
86
|
+
/** GET /api/v1/contents/{host}/{target_id}; permission: public/session-derived. */
|
|
87
|
+
contentListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentListOnTargetGetResponse, unknown, {}>>;
|
|
88
|
+
/** POST /api/v1/contents/{host}/{target_id}; permission: public/session-derived. */
|
|
89
|
+
contentAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.ContentAttachToTargetPostInput, options?: RequestOptions<T.ContentAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.ContentAttachToTargetPostResponse, T.ContentAttachToTargetPostInput, {}>>;
|
|
90
|
+
/** DELETE /api/v1/contents/{id}; permission: public/session-derived. */
|
|
91
|
+
contentDeleteContentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentDeleteContentDeleteResponse, unknown, {}>>;
|
|
92
|
+
/** GET /api/v1/contents/{id}; permission: public/session-derived. */
|
|
93
|
+
contentShowContentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentShowContentGetResponse, unknown, {}>>;
|
|
94
|
+
/** PATCH /api/v1/contents/{id}; permission: public/session-derived. */
|
|
95
|
+
contentUpdateContentPatch(id: Identifier, data: T.ContentUpdateContentPatchInput, params?: T.ContentUpdateContentPatchQuery, options?: RequestOptions<T.ContentUpdateContentPatchInput>): Promise<import("axios").AxiosResponse<T.ContentUpdateContentPatchResponse, T.ContentUpdateContentPatchInput, {}>>;
|
|
96
|
+
/** PUT /api/v1/contents/{id}; permission: public/session-derived. */
|
|
97
|
+
contentUpdateContentPut(id: Identifier, data: T.ContentUpdateContentPutInput, params?: T.ContentUpdateContentPutQuery, options?: RequestOptions<T.ContentUpdateContentPutInput>): Promise<import("axios").AxiosResponse<T.ContentUpdateContentPutResponse, T.ContentUpdateContentPutInput, {}>>;
|
|
98
|
+
/** GET /api/v1/integration/flow; permission: public/session-derived. */
|
|
99
|
+
integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
|
|
100
|
+
/** GET /api/v1/inventory/inventories; permission: public/session-derived. */
|
|
101
|
+
inventoryListInventoriesGet(params?: T.InventoryListInventoriesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryListInventoriesGetResponse, unknown, {}>>;
|
|
102
|
+
/** POST /api/v1/inventory/inventories; permission: public/session-derived. */
|
|
103
|
+
inventoryCreateInventoryPost(data: T.InventoryCreateInventoryPostInput, options?: RequestOptions<T.InventoryCreateInventoryPostInput>): Promise<import("axios").AxiosResponse<T.InventoryCreateInventoryPostResponse, T.InventoryCreateInventoryPostInput, {}>>;
|
|
104
|
+
/** DELETE /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
|
|
105
|
+
inventoryDeleteInventoryDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryDeleteInventoryDeleteResponse, unknown, {}>>;
|
|
106
|
+
/** GET /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
|
|
107
|
+
inventoryShowInventoryGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryShowInventoryGetResponse, unknown, {}>>;
|
|
108
|
+
/** PATCH /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
|
|
109
|
+
inventoryUpdateInventoryPatch(id: Identifier, data: T.InventoryUpdateInventoryPatchInput, options?: RequestOptions<T.InventoryUpdateInventoryPatchInput>): Promise<import("axios").AxiosResponse<T.InventoryUpdateInventoryPatchResponse, T.InventoryUpdateInventoryPatchInput, {}>>;
|
|
110
|
+
/** PUT /api/v1/inventory/inventories/{id}; permission: public/session-derived. */
|
|
111
|
+
inventoryUpdateInventoryPut(id: Identifier, data: T.InventoryUpdateInventoryPutInput, options?: RequestOptions<T.InventoryUpdateInventoryPutInput>): Promise<import("axios").AxiosResponse<T.InventoryUpdateInventoryPutResponse, T.InventoryUpdateInventoryPutInput, {}>>;
|
|
112
|
+
/** GET /api/v1/inventory/stock-movements; permission: public/session-derived. */
|
|
113
|
+
stockMovementListStockMovementsGet(params?: T.StockMovementListStockMovementsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.StockMovementListStockMovementsGetResponse, unknown, {}>>;
|
|
114
|
+
/** POST /api/v1/inventory/stock-movements; permission: public/session-derived. */
|
|
115
|
+
stockMovementCreateStockMovementPost(data: T.StockMovementCreateStockMovementPostInput, options?: RequestOptions<T.StockMovementCreateStockMovementPostInput>): Promise<import("axios").AxiosResponse<T.StockMovementCreateStockMovementPostResponse, T.StockMovementCreateStockMovementPostInput, {}>>;
|
|
116
|
+
/** GET /api/v1/inventory/warehouses; permission: public/session-derived. */
|
|
117
|
+
inventoryListWarehousesGet(params?: T.InventoryListWarehousesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryListWarehousesGetResponse, unknown, {}>>;
|
|
118
|
+
/** POST /api/v1/inventory/warehouses; permission: public/session-derived. */
|
|
119
|
+
inventoryCreateWarehousePost(data: T.InventoryCreateWarehousePostInput, options?: RequestOptions<T.InventoryCreateWarehousePostInput>): Promise<import("axios").AxiosResponse<T.InventoryCreateWarehousePostResponse, T.InventoryCreateWarehousePostInput, {}>>;
|
|
120
|
+
/** DELETE /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
|
|
121
|
+
inventoryDeleteWarehouseDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryDeleteWarehouseDeleteResponse, unknown, {}>>;
|
|
122
|
+
/** GET /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
|
|
123
|
+
inventoryShowWarehouseGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InventoryShowWarehouseGetResponse, unknown, {}>>;
|
|
124
|
+
/** PATCH /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
|
|
125
|
+
inventoryUpdateWarehousePatch(id: Identifier, data: T.InventoryUpdateWarehousePatchInput, options?: RequestOptions<T.InventoryUpdateWarehousePatchInput>): Promise<import("axios").AxiosResponse<T.InventoryUpdateWarehousePatchResponse, T.InventoryUpdateWarehousePatchInput, {}>>;
|
|
126
|
+
/** PUT /api/v1/inventory/warehouses/{id}; permission: public/session-derived. */
|
|
127
|
+
inventoryUpdateWarehousePut(id: Identifier, data: T.InventoryUpdateWarehousePutInput, options?: RequestOptions<T.InventoryUpdateWarehousePutInput>): Promise<import("axios").AxiosResponse<T.InventoryUpdateWarehousePutResponse, T.InventoryUpdateWarehousePutInput, {}>>;
|
|
128
|
+
/** GET /api/v1/pricing; permission: public/session-derived. */
|
|
129
|
+
servicePricingListPricingGet(params?: T.ServicePricingListPricingGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServicePricingListPricingGetResponse, unknown, {}>>;
|
|
130
|
+
/** POST /api/v1/pricing; permission: public/session-derived. */
|
|
131
|
+
servicePricingCreatePricingPost(data: T.ServicePricingCreatePricingPostInput, options?: RequestOptions<T.ServicePricingCreatePricingPostInput>): Promise<import("axios").AxiosResponse<T.ServicePricingCreatePricingPostResponse, T.ServicePricingCreatePricingPostInput, {}>>;
|
|
132
|
+
/** DELETE /api/v1/pricing/{id}; permission: public/session-derived. */
|
|
133
|
+
servicePricingDeletePricingDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServicePricingDeletePricingDeleteResponse, unknown, {}>>;
|
|
134
|
+
/** GET /api/v1/pricing/{id}; permission: public/session-derived. */
|
|
135
|
+
servicePricingShowPricingGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServicePricingShowPricingGetResponse, unknown, {}>>;
|
|
136
|
+
/** PATCH /api/v1/pricing/{id}; permission: public/session-derived. */
|
|
137
|
+
servicePricingUpdatePricingPatch(id: Identifier, data: T.ServicePricingUpdatePricingPatchInput, options?: RequestOptions<T.ServicePricingUpdatePricingPatchInput>): Promise<import("axios").AxiosResponse<T.ServicePricingUpdatePricingPatchResponse, T.ServicePricingUpdatePricingPatchInput, {}>>;
|
|
138
|
+
/** PUT /api/v1/pricing/{id}; permission: public/session-derived. */
|
|
139
|
+
servicePricingUpdatePricingPut(id: Identifier, data: T.ServicePricingUpdatePricingPutInput, options?: RequestOptions<T.ServicePricingUpdatePricingPutInput>): Promise<import("axios").AxiosResponse<T.ServicePricingUpdatePricingPutResponse, T.ServicePricingUpdatePricingPutInput, {}>>;
|
|
140
|
+
/** DELETE /api/v1/reactions/{host}/{target_id}; permission: public/session-derived. */
|
|
141
|
+
reactionDeleteOnTargetDelete(host: Identifier, targetId: Identifier, params?: T.ReactionDeleteOnTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReactionDeleteOnTargetDeleteResponse, unknown, {}>>;
|
|
142
|
+
/** GET /api/v1/reactions/{host}/{target_id}; permission: public/session-derived. */
|
|
143
|
+
reactionListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReactionListOnTargetGetResponse, unknown, {}>>;
|
|
144
|
+
/** POST /api/v1/reactions/{host}/{target_id}; permission: public/session-derived. */
|
|
145
|
+
reactionCreateOnTargetPost(host: Identifier, targetId: Identifier, data: T.ReactionCreateOnTargetPostInput, options?: RequestOptions<T.ReactionCreateOnTargetPostInput>): Promise<import("axios").AxiosResponse<T.ReactionCreateOnTargetPostResponse, T.ReactionCreateOnTargetPostInput, {}>>;
|
|
146
|
+
/** GET /api/v1/requests; permission: public/session-derived. */
|
|
147
|
+
requestListRequestsGet(params?: T.RequestListRequestsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListRequestsGetResponse, unknown, {}>>;
|
|
148
|
+
/** POST /api/v1/requests; permission: public/session-derived. */
|
|
149
|
+
requestCreateRequestPost(data: T.RequestCreateRequestPostInput, options?: RequestOptions<T.RequestCreateRequestPostInput>): Promise<import("axios").AxiosResponse<T.RequestCreateRequestPostResponse, T.RequestCreateRequestPostInput, {}>>;
|
|
150
|
+
/** DELETE /api/v1/requests/{host}/{target_id}; permission: public/session-derived. */
|
|
151
|
+
requestDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.RequestDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestDetachFromTargetDeleteResponse, unknown, {}>>;
|
|
152
|
+
/** GET /api/v1/requests/{host}/{target_id}; permission: public/session-derived. */
|
|
153
|
+
requestListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListOnTargetGetResponse, unknown, {}>>;
|
|
154
|
+
/** POST /api/v1/requests/{host}/{target_id}; permission: public/session-derived. */
|
|
155
|
+
requestAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.RequestAttachToTargetPostInput, options?: RequestOptions<T.RequestAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.RequestAttachToTargetPostResponse, T.RequestAttachToTargetPostInput, {}>>;
|
|
156
|
+
/** DELETE /api/v1/requests/{id}; permission: public/session-derived. */
|
|
157
|
+
requestDeleteRequestDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestDeleteRequestDeleteResponse, unknown, {}>>;
|
|
158
|
+
/** GET /api/v1/requests/{id}; permission: public/session-derived. */
|
|
159
|
+
requestShowRequestGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestShowRequestGetResponse, unknown, {}>>;
|
|
160
|
+
/** PATCH /api/v1/requests/{id}; permission: public/session-derived. */
|
|
161
|
+
requestUpdateRequestPatch(id: Identifier, data: T.RequestUpdateRequestPatchInput, options?: RequestOptions<T.RequestUpdateRequestPatchInput>): Promise<import("axios").AxiosResponse<T.RequestUpdateRequestPatchResponse, T.RequestUpdateRequestPatchInput, {}>>;
|
|
162
|
+
/** PUT /api/v1/requests/{id}; permission: public/session-derived. */
|
|
163
|
+
requestUpdateRequestPut(id: Identifier, data: T.RequestUpdateRequestPutInput, options?: RequestOptions<T.RequestUpdateRequestPutInput>): Promise<import("axios").AxiosResponse<T.RequestUpdateRequestPutResponse, T.RequestUpdateRequestPutInput, {}>>;
|
|
164
|
+
/** GET /api/v1/requests/{request_id}/logs; permission: public/session-derived. */
|
|
165
|
+
requestListLogsForRequestGet(requestId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListLogsForRequestGetResponse, unknown, {}>>;
|
|
166
|
+
/** POST /api/v1/requests/{request_id}/logs; permission: public/session-derived. */
|
|
167
|
+
requestSubmitPost(requestId: Identifier, data: T.RequestSubmitPostInput, options?: RequestOptions<T.RequestSubmitPostInput>): Promise<import("axios").AxiosResponse<T.RequestSubmitPostResponse, T.RequestSubmitPostInput, {}>>;
|
|
168
|
+
/** GET /api/v1/requests/category/{category_id}/logs; permission: public/session-derived. */
|
|
169
|
+
requestListLogsForCategoryGet(categoryId: Identifier, params?: T.RequestListLogsForCategoryGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RequestListLogsForCategoryGetResponse, unknown, {}>>;
|
|
170
|
+
/** GET /api/v1/samples; permission: public/session-derived. */
|
|
171
|
+
userSampleListSamplesGet(params?: T.UserSampleListSamplesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleListSamplesGetResponse, unknown, {}>>;
|
|
172
|
+
/** POST /api/v1/samples; permission: public/session-derived. */
|
|
173
|
+
userSampleCreateSamplePost(data: T.UserSampleCreateSamplePostInput, options?: RequestOptions<T.UserSampleCreateSamplePostInput>): Promise<import("axios").AxiosResponse<T.UserSampleCreateSamplePostResponse, T.UserSampleCreateSamplePostInput, {}>>;
|
|
174
|
+
/** DELETE /api/v1/samples/{id}; permission: public/session-derived. */
|
|
175
|
+
userSampleDeleteSampleDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleDeleteSampleDeleteResponse, unknown, {}>>;
|
|
176
|
+
/** GET /api/v1/samples/{id}; permission: public/session-derived. */
|
|
177
|
+
userSampleShowSampleGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleShowSampleGetResponse, unknown, {}>>;
|
|
178
|
+
/** PATCH /api/v1/samples/{id}; permission: public/session-derived. */
|
|
179
|
+
userSampleUpdateSamplePatch(id: Identifier, data: T.UserSampleUpdateSamplePatchInput, options?: RequestOptions<T.UserSampleUpdateSamplePatchInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateSamplePatchResponse, T.UserSampleUpdateSamplePatchInput, {}>>;
|
|
180
|
+
/** PUT /api/v1/samples/{id}; permission: public/session-derived. */
|
|
181
|
+
userSampleUpdateSamplePut(id: Identifier, data: T.UserSampleUpdateSamplePutInput, options?: RequestOptions<T.UserSampleUpdateSamplePutInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateSamplePutResponse, T.UserSampleUpdateSamplePutInput, {}>>;
|
|
182
|
+
/** GET /api/v1/samples/{sample_id}/variables; permission: public/session-derived. */
|
|
183
|
+
userSampleListSampleVariablesGet(sampleId: Identifier, params?: T.UserSampleListSampleVariablesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleListSampleVariablesGetResponse, unknown, {}>>;
|
|
184
|
+
/** POST /api/v1/samples/{sample_id}/variables; permission: public/session-derived. */
|
|
185
|
+
userSampleCreateSampleVariablePost(sampleId: Identifier, data: T.UserSampleCreateSampleVariablePostInput, options?: RequestOptions<T.UserSampleCreateSampleVariablePostInput>): Promise<import("axios").AxiosResponse<T.UserSampleCreateSampleVariablePostResponse, T.UserSampleCreateSampleVariablePostInput, {}>>;
|
|
186
|
+
/** GET /api/v1/samples/by-slug/{slug}/variables-map; permission: public/session-derived. */
|
|
187
|
+
userSampleVariablesMapBySlugGet(slug: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleVariablesMapBySlugGetResponse, unknown, {}>>;
|
|
188
|
+
/** GET /api/v1/samples/variables; permission: public/session-derived. */
|
|
189
|
+
userSampleListAllVariablesGet(params?: T.UserSampleListAllVariablesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleListAllVariablesGetResponse, unknown, {}>>;
|
|
190
|
+
/** DELETE /api/v1/samples/variables/{id}; permission: public/session-derived. */
|
|
191
|
+
userSampleDeleteVariableDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleDeleteVariableDeleteResponse, unknown, {}>>;
|
|
192
|
+
/** GET /api/v1/samples/variables/{id}; permission: public/session-derived. */
|
|
193
|
+
userSampleShowVariableGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.UserSampleShowVariableGetResponse, unknown, {}>>;
|
|
194
|
+
/** PATCH /api/v1/samples/variables/{id}; permission: public/session-derived. */
|
|
195
|
+
userSampleUpdateVariablePatch(id: Identifier, data: T.UserSampleUpdateVariablePatchInput, options?: RequestOptions<T.UserSampleUpdateVariablePatchInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateVariablePatchResponse, T.UserSampleUpdateVariablePatchInput, {}>>;
|
|
196
|
+
/** PUT /api/v1/samples/variables/{id}; permission: public/session-derived. */
|
|
197
|
+
userSampleUpdateVariablePut(id: Identifier, data: T.UserSampleUpdateVariablePutInput, options?: RequestOptions<T.UserSampleUpdateVariablePutInput>): Promise<import("axios").AxiosResponse<T.UserSampleUpdateVariablePutResponse, T.UserSampleUpdateVariablePutInput, {}>>;
|
|
198
|
+
/** GET /api/v1/seo-contents; permission: public/session-derived. */
|
|
199
|
+
seoContentListSeoContentsGet(params?: T.SeoContentListSeoContentsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentListSeoContentsGetResponse, unknown, {}>>;
|
|
200
|
+
/** POST /api/v1/seo-contents; permission: public/session-derived. */
|
|
201
|
+
seoContentCreateSeoContentPost(data: T.SeoContentCreateSeoContentPostInput, options?: RequestOptions<T.SeoContentCreateSeoContentPostInput>): Promise<import("axios").AxiosResponse<T.SeoContentCreateSeoContentPostResponse, T.SeoContentCreateSeoContentPostInput, {}>>;
|
|
202
|
+
/** DELETE /api/v1/seo-contents/{host}/{target_id}; permission: public/session-derived. */
|
|
203
|
+
seoContentDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.SeoContentDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentDetachFromTargetDeleteResponse, unknown, {}>>;
|
|
204
|
+
/** GET /api/v1/seo-contents/{host}/{target_id}; permission: public/session-derived. */
|
|
205
|
+
seoContentListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentListOnTargetGetResponse, unknown, {}>>;
|
|
206
|
+
/** POST /api/v1/seo-contents/{host}/{target_id}; permission: public/session-derived. */
|
|
207
|
+
seoContentAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.SeoContentAttachToTargetPostInput, options?: RequestOptions<T.SeoContentAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.SeoContentAttachToTargetPostResponse, T.SeoContentAttachToTargetPostInput, {}>>;
|
|
208
|
+
/** DELETE /api/v1/seo-contents/{id}; permission: public/session-derived. */
|
|
209
|
+
seoContentDeleteSeoContentDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentDeleteSeoContentDeleteResponse, unknown, {}>>;
|
|
210
|
+
/** GET /api/v1/seo-contents/{id}; permission: public/session-derived. */
|
|
211
|
+
seoContentShowSeoContentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SeoContentShowSeoContentGetResponse, unknown, {}>>;
|
|
212
|
+
/** PATCH /api/v1/seo-contents/{id}; permission: public/session-derived. */
|
|
213
|
+
seoContentUpdateSeoContentPatch(id: Identifier, data: T.SeoContentUpdateSeoContentPatchInput, options?: RequestOptions<T.SeoContentUpdateSeoContentPatchInput>): Promise<import("axios").AxiosResponse<T.SeoContentUpdateSeoContentPatchResponse, T.SeoContentUpdateSeoContentPatchInput, {}>>;
|
|
214
|
+
/** PUT /api/v1/seo-contents/{id}; permission: public/session-derived. */
|
|
215
|
+
seoContentUpdateSeoContentPut(id: Identifier, data: T.SeoContentUpdateSeoContentPutInput, options?: RequestOptions<T.SeoContentUpdateSeoContentPutInput>): Promise<import("axios").AxiosResponse<T.SeoContentUpdateSeoContentPutResponse, T.SeoContentUpdateSeoContentPutInput, {}>>;
|
|
216
|
+
/** GET /api/v1/shop/cart; permission: public/session-derived. */
|
|
217
|
+
cartShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CartShowGetResponse, unknown, {}>>;
|
|
218
|
+
/** PUT /api/v1/shop/cart; permission: public/session-derived. */
|
|
219
|
+
cartReplacePut(data: T.CartReplacePutInput, options?: RequestOptions<T.CartReplacePutInput>): Promise<import("axios").AxiosResponse<T.CartReplacePutResponse, T.CartReplacePutInput, {}>>;
|
|
220
|
+
/** GET /api/v1/shop/orders; permission: public/session-derived. */
|
|
221
|
+
orderListOrdersGet(params?: T.OrderListOrdersGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderListOrdersGetResponse, unknown, {}>>;
|
|
222
|
+
/** POST /api/v1/shop/orders; permission: public/session-derived. */
|
|
223
|
+
orderCreateOrderPost(data: T.OrderCreateOrderPostInput, options?: RequestOptions<T.OrderCreateOrderPostInput>): Promise<import("axios").AxiosResponse<T.OrderCreateOrderPostResponse, T.OrderCreateOrderPostInput, {}>>;
|
|
224
|
+
/** DELETE /api/v1/shop/orders/{id}; permission: public/session-derived. */
|
|
225
|
+
orderDeleteOrderDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderDeleteOrderDeleteResponse, unknown, {}>>;
|
|
226
|
+
/** GET /api/v1/shop/orders/{id}; permission: public/session-derived. */
|
|
227
|
+
orderShowOrderGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderShowOrderGetResponse, unknown, {}>>;
|
|
228
|
+
/** PATCH /api/v1/shop/orders/{id}; permission: public/session-derived. */
|
|
229
|
+
orderUpdateOrderPatch(id: Identifier, data: T.OrderUpdateOrderPatchInput, options?: RequestOptions<T.OrderUpdateOrderPatchInput>): Promise<import("axios").AxiosResponse<T.OrderUpdateOrderPatchResponse, T.OrderUpdateOrderPatchInput, {}>>;
|
|
230
|
+
/** PUT /api/v1/shop/orders/{id}; permission: public/session-derived. */
|
|
231
|
+
orderUpdateOrderPut(id: Identifier, data: T.OrderUpdateOrderPutInput, options?: RequestOptions<T.OrderUpdateOrderPutInput>): Promise<import("axios").AxiosResponse<T.OrderUpdateOrderPutResponse, T.OrderUpdateOrderPutInput, {}>>;
|
|
232
|
+
/** GET /api/v1/shop/orders/{order_id}/items; permission: public/session-derived. */
|
|
233
|
+
orderListOrderItemsGet(orderId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OrderListOrderItemsGetResponse, unknown, {}>>;
|
|
234
|
+
/** POST /api/v1/shop/orders/{order_id}/items; permission: public/session-derived. */
|
|
235
|
+
orderAddOrderItemPost(orderId: Identifier, data: T.OrderAddOrderItemPostInput, options?: RequestOptions<T.OrderAddOrderItemPostInput>): Promise<import("axios").AxiosResponse<T.OrderAddOrderItemPostResponse, T.OrderAddOrderItemPostInput, {}>>;
|
|
236
|
+
/** GET /api/v1/shop/products; permission: public/session-derived. */
|
|
237
|
+
productListProductsGet(params?: T.ProductListProductsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductListProductsGetResponse, unknown, {}>>;
|
|
238
|
+
/** POST /api/v1/shop/products; permission: public/session-derived. */
|
|
239
|
+
productCreateProductPost(data: T.ProductCreateProductPostInput, options?: RequestOptions<T.ProductCreateProductPostInput>): Promise<import("axios").AxiosResponse<T.ProductCreateProductPostResponse, T.ProductCreateProductPostInput, {}>>;
|
|
240
|
+
/** DELETE /api/v1/shop/products/{id}; permission: public/session-derived. */
|
|
241
|
+
productDeleteProductDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductDeleteProductDeleteResponse, unknown, {}>>;
|
|
242
|
+
/** GET /api/v1/shop/products/{id}; permission: public/session-derived. */
|
|
243
|
+
productShowProductGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductShowProductGetResponse, unknown, {}>>;
|
|
244
|
+
/** PATCH /api/v1/shop/products/{id}; permission: public/session-derived. */
|
|
245
|
+
productUpdateProductPatch(id: Identifier, data: T.ProductUpdateProductPatchInput, options?: RequestOptions<T.ProductUpdateProductPatchInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateProductPatchResponse, T.ProductUpdateProductPatchInput, {}>>;
|
|
246
|
+
/** PUT /api/v1/shop/products/{id}; permission: public/session-derived. */
|
|
247
|
+
productUpdateProductPut(id: Identifier, data: T.ProductUpdateProductPutInput, options?: RequestOptions<T.ProductUpdateProductPutInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateProductPutResponse, T.ProductUpdateProductPutInput, {}>>;
|
|
248
|
+
/** GET /api/v1/shop/products/{product_id}/variants; permission: public/session-derived. */
|
|
249
|
+
productListProductVariantsGet(productId: Identifier, params?: T.ProductListProductVariantsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductListProductVariantsGetResponse, unknown, {}>>;
|
|
250
|
+
/** POST /api/v1/shop/products/{product_id}/variants; permission: public/session-derived. */
|
|
251
|
+
productCreateVariantPost(productId: Identifier, data: T.ProductCreateVariantPostInput, options?: RequestOptions<T.ProductCreateVariantPostInput>): Promise<import("axios").AxiosResponse<T.ProductCreateVariantPostResponse, T.ProductCreateVariantPostInput, {}>>;
|
|
252
|
+
/** GET /api/v1/shop/variants; permission: public/session-derived. */
|
|
253
|
+
productListVariantsGet(params?: T.ProductListVariantsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductListVariantsGetResponse, unknown, {}>>;
|
|
254
|
+
/** DELETE /api/v1/shop/variants/{id}; permission: public/session-derived. */
|
|
255
|
+
productDeleteVariantDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductDeleteVariantDeleteResponse, unknown, {}>>;
|
|
256
|
+
/** GET /api/v1/shop/variants/{id}; permission: public/session-derived. */
|
|
257
|
+
productShowVariantGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProductShowVariantGetResponse, unknown, {}>>;
|
|
258
|
+
/** PATCH /api/v1/shop/variants/{id}; permission: public/session-derived. */
|
|
259
|
+
productUpdateVariantPatch(id: Identifier, data: T.ProductUpdateVariantPatchInput, options?: RequestOptions<T.ProductUpdateVariantPatchInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateVariantPatchResponse, T.ProductUpdateVariantPatchInput, {}>>;
|
|
260
|
+
/** PUT /api/v1/shop/variants/{id}; permission: public/session-derived. */
|
|
261
|
+
productUpdateVariantPut(id: Identifier, data: T.ProductUpdateVariantPutInput, options?: RequestOptions<T.ProductUpdateVariantPutInput>): Promise<import("axios").AxiosResponse<T.ProductUpdateVariantPutResponse, T.ProductUpdateVariantPutInput, {}>>;
|
|
262
|
+
/** GET /api/v1/tags; permission: public/session-derived. */
|
|
263
|
+
tagListTagsGet(params?: T.TagListTagsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagListTagsGetResponse, unknown, {}>>;
|
|
264
|
+
/** POST /api/v1/tags; permission: public/session-derived. */
|
|
265
|
+
tagCreateTagPost(data: T.TagCreateTagPostInput, options?: RequestOptions<T.TagCreateTagPostInput>): Promise<import("axios").AxiosResponse<T.TagCreateTagPostResponse, T.TagCreateTagPostInput, {}>>;
|
|
266
|
+
/** DELETE /api/v1/tags/{host}/{target_id}; permission: public/session-derived. */
|
|
267
|
+
tagDetachFromTargetDelete(host: Identifier, targetId: Identifier, params?: T.TagDetachFromTargetDeleteQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagDetachFromTargetDeleteResponse, unknown, {}>>;
|
|
268
|
+
/** GET /api/v1/tags/{host}/{target_id}; permission: public/session-derived. */
|
|
269
|
+
tagListOnTargetGet(host: Identifier, targetId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagListOnTargetGetResponse, unknown, {}>>;
|
|
270
|
+
/** POST /api/v1/tags/{host}/{target_id}; permission: public/session-derived. */
|
|
271
|
+
tagAttachToTargetPost(host: Identifier, targetId: Identifier, data: T.TagAttachToTargetPostInput, options?: RequestOptions<T.TagAttachToTargetPostInput>): Promise<import("axios").AxiosResponse<T.TagAttachToTargetPostResponse, T.TagAttachToTargetPostInput, {}>>;
|
|
272
|
+
/** DELETE /api/v1/tags/{id}; permission: public/session-derived. */
|
|
273
|
+
tagDeleteTagDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagDeleteTagDeleteResponse, unknown, {}>>;
|
|
274
|
+
/** GET /api/v1/tags/{id}; permission: public/session-derived. */
|
|
275
|
+
tagShowTagGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TagShowTagGetResponse, unknown, {}>>;
|
|
276
|
+
/** PATCH /api/v1/tags/{id}; permission: public/session-derived. */
|
|
277
|
+
tagUpdateTagPatch(id: Identifier, data: T.TagUpdateTagPatchInput, options?: RequestOptions<T.TagUpdateTagPatchInput>): Promise<import("axios").AxiosResponse<T.TagUpdateTagPatchResponse, T.TagUpdateTagPatchInput, {}>>;
|
|
278
|
+
/** PUT /api/v1/tags/{id}; permission: public/session-derived. */
|
|
279
|
+
tagUpdateTagPut(id: Identifier, data: T.TagUpdateTagPutInput, options?: RequestOptions<T.TagUpdateTagPutInput>): Promise<import("axios").AxiosResponse<T.TagUpdateTagPutResponse, T.TagUpdateTagPutInput, {}>>;
|
|
280
|
+
}
|
|
281
|
+
//# sourceMappingURL=operations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|