@wix/auto_sdk_crm_pipelines 1.0.0 → 1.0.1
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/build/cjs/index.d.ts +76 -130
- package/build/cjs/index.js +194 -977
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +998 -15
- package/build/cjs/index.typings.js +146 -767
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +133 -1005
- package/build/cjs/meta.js +128 -682
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +76 -130
- package/build/es/index.mjs +184 -947
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +998 -15
- package/build/es/index.typings.mjs +138 -743
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +133 -1005
- package/build/es/meta.mjs +121 -659
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +76 -163
- package/build/internal/cjs/index.js +194 -977
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +998 -15
- package/build/internal/cjs/index.typings.js +146 -767
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +133 -1005
- package/build/internal/cjs/meta.js +128 -682
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +76 -163
- package/build/internal/es/index.mjs +184 -947
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +998 -15
- package/build/internal/es/index.typings.mjs +138 -743
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +133 -1005
- package/build/internal/es/meta.mjs +121 -659
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
- package/build/cjs/crm-pipelines-v1-card-pipelines.universal-DGtqU_Zb.d.ts +0 -2265
- package/build/es/crm-pipelines-v1-card-pipelines.universal-DGtqU_Zb.d.mts +0 -2265
- package/build/internal/cjs/crm-pipelines-v1-card-pipelines.universal-BHszxzqA.d.ts +0 -2303
- package/build/internal/es/crm-pipelines-v1-card-pipelines.universal-BHszxzqA.d.mts +0 -2303
|
@@ -1,202 +1,115 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import {
|
|
3
|
-
export {
|
|
2
|
+
import { Pipeline, UpdatePipeline, UpdatePipelineApplicationErrors, DeletePipelineApplicationErrors, BulkUpdatePipelineTagsOptions, BulkUpdatePipelineTagsResponse, BulkUpdatePipelineTagsApplicationErrors, BulkUpdatePipelineTagsByFilterOptions, BulkUpdatePipelineTagsByFilterResponse, BulkUpdatePipelineTagsByFilterApplicationErrors, PipelineCreatedEnvelope, PipelineDeletedEnvelope, PipelineUpdatedEnvelope, PipelinesQueryBuilder, PipelineQuery, typedQueryPipelines } from './index.typings.mjs';
|
|
3
|
+
export { AccountInfo, AccountInfoMetadata, ActionEvent, ApplicationError, BaseEventMetadata, BulkActionMetadata, BulkUpdatePipelineTagsByFilterRequest, BulkUpdatePipelineTagsRequest, BulkUpdatePipelineTagsResult, CommonQueryWithEntityContext, CreatePipelineRequest, CreatePipelineResponse, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, DeletePipelineRequest, DeletePipelineResponse, DomainEvent, DomainEventBodyOneOf, DoneStage, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventMetadata, ExtendedFields, GetPipelineRequest, GetPipelineResponse, IdentificationData, IdentificationDataIdOneOf, ItemMetadata, MessageEnvelope, Outcome, OutcomeWithLiterals, PipelineQuerySpec, PipelinesQueryResult, PrivateTags, QueryPipelinesRequest, QueryPipelinesResponse, RestoreInfo, SortOrder, SortOrderWithLiterals, Sorting, Stage, TagList, UpdatePipelineRequest, UpdatePipelineResponse, WebhookIdentityType, WebhookIdentityTypeWithLiterals, utils } from './index.typings.mjs';
|
|
4
4
|
|
|
5
|
-
declare function
|
|
6
|
-
interface
|
|
5
|
+
declare function createPipeline$1(httpClient: HttpClient): CreatePipelineSignature;
|
|
6
|
+
interface CreatePipelineSignature {
|
|
7
7
|
/**
|
|
8
|
-
* Creates a
|
|
9
|
-
* @returns Created card.
|
|
10
|
-
*/
|
|
11
|
-
(options?: NonNullablePaths<CreateCardOptions, `card.name` | `card.pipelineId` | `card.stageId`, 3>): Promise<NonNullablePaths<Card, `priority` | `value.value` | `value.currency` | `outcome` | `additionalContacts` | `linkedEntities` | `linkedEntities.${number}.entityId` | `linkedEntities.${number}.referencedEntity` | `tags.privateTags.tagIds`, 4> & {
|
|
12
|
-
__applicationErrorsType?: CreateCardApplicationErrors;
|
|
13
|
-
}>;
|
|
14
|
-
}
|
|
15
|
-
declare function getCard$1(httpClient: HttpClient): GetCardSignature;
|
|
16
|
-
interface GetCardSignature {
|
|
17
|
-
/**
|
|
18
|
-
* Retrieves a card by ID.
|
|
19
|
-
* @param - Card ID to retrieve.
|
|
20
|
-
* @returns Retrieved card.
|
|
21
|
-
*/
|
|
22
|
-
(cardId: string): Promise<NonNullablePaths<Card, `priority` | `value.value` | `value.currency` | `outcome` | `additionalContacts` | `linkedEntities` | `linkedEntities.${number}.entityId` | `linkedEntities.${number}.referencedEntity` | `tags.privateTags.tagIds`, 4>>;
|
|
23
|
-
}
|
|
24
|
-
declare function updateCard$1(httpClient: HttpClient): UpdateCardSignature;
|
|
25
|
-
interface UpdateCardSignature {
|
|
26
|
-
/**
|
|
27
|
-
* Updates a card by ID.
|
|
28
|
-
*
|
|
29
|
-
* Each time the card is updated, `revision` increments by 1. The current `revision` must be specified when updating the card. This ensures you're working with the latest card and prevents unintended overwrites.
|
|
8
|
+
* Creates a pipeline with defined stages and a final stage.
|
|
30
9
|
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
* @
|
|
10
|
+
* Pipelines must have at least one stage in addition to the `doneStage`.
|
|
11
|
+
* You must specify allowed outcomes that cards can have when moved to the final stage.
|
|
12
|
+
* @param - Pipeline to create.
|
|
13
|
+
* @returns Created pipeline.
|
|
34
14
|
*/
|
|
35
|
-
(
|
|
36
|
-
__applicationErrorsType?: UpdateCardApplicationErrors;
|
|
37
|
-
}>;
|
|
15
|
+
(pipeline: NonNullablePaths<Pipeline, `doneStage` | `doneStage.allowedOutcomes` | `doneStage.name` | `name` | `stages` | `stages.${number}.name`, 4>): Promise<NonNullablePaths<Pipeline, `stages` | `doneStage.allowedOutcomes` | `tags.privateTags.tagIds`, 4>>;
|
|
38
16
|
}
|
|
39
|
-
declare function
|
|
40
|
-
interface
|
|
17
|
+
declare function getPipeline$1(httpClient: HttpClient): GetPipelineSignature;
|
|
18
|
+
interface GetPipelineSignature {
|
|
41
19
|
/**
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
* Each time a card is moved, its `revision` increments by 1.
|
|
47
|
-
* @param - Card ID to move.
|
|
48
|
-
* @param - ID of the stage to move the card to.
|
|
20
|
+
* Retrieves a pipeline by ID.
|
|
21
|
+
* @param - Pipeline ID to retrieve.
|
|
22
|
+
* @returns Retrieved pipeline.
|
|
49
23
|
*/
|
|
50
|
-
(
|
|
51
|
-
__applicationErrorsType?: MoveCardApplicationErrors;
|
|
52
|
-
}>;
|
|
24
|
+
(pipelineId: string): Promise<NonNullablePaths<Pipeline, `stages` | `doneStage.allowedOutcomes` | `tags.privateTags.tagIds`, 4>>;
|
|
53
25
|
}
|
|
54
|
-
declare function
|
|
55
|
-
interface
|
|
26
|
+
declare function updatePipeline$1(httpClient: HttpClient): UpdatePipelineSignature;
|
|
27
|
+
interface UpdatePipelineSignature {
|
|
56
28
|
/**
|
|
57
|
-
*
|
|
29
|
+
* Updates a pipeline.
|
|
58
30
|
*
|
|
59
|
-
*
|
|
60
|
-
* @param - Card ID to delete.
|
|
61
|
-
*/
|
|
62
|
-
(cardId: string): Promise<void>;
|
|
63
|
-
}
|
|
64
|
-
declare function searchCards$1(httpClient: HttpClient): SearchCardsSignature;
|
|
65
|
-
interface SearchCardsSignature {
|
|
66
|
-
/**
|
|
67
|
-
* Retrieves a list of cards given the provided free-text search expression, filtering, and sorting.
|
|
31
|
+
* Each time the pipeline is updated, `revision` increments by 1. The current `revision` must be specified when updating the pipeline. This ensures you're working with the latest pipeline and prevents unintended overwrites.
|
|
68
32
|
*
|
|
69
|
-
*
|
|
33
|
+
* >**Note:**
|
|
34
|
+
* > You can add and remove stages by calling this method. However, the done stage and any stages that contain cards can't be removed.
|
|
70
35
|
*
|
|
71
|
-
*
|
|
72
|
-
*
|
|
73
|
-
*
|
|
74
|
-
* @param - Search options.
|
|
36
|
+
* </blockquote>
|
|
37
|
+
* @param - Pipeline ID.
|
|
38
|
+
* @returns Updated pipeline.
|
|
75
39
|
*/
|
|
76
|
-
(
|
|
40
|
+
(_id: string, pipeline: NonNullablePaths<UpdatePipeline, `revision`, 2>): Promise<NonNullablePaths<Pipeline, `stages` | `doneStage.allowedOutcomes` | `tags.privateTags.tagIds`, 4> & {
|
|
41
|
+
__applicationErrorsType?: UpdatePipelineApplicationErrors;
|
|
42
|
+
}>;
|
|
77
43
|
}
|
|
78
|
-
declare function
|
|
79
|
-
interface
|
|
44
|
+
declare function deletePipeline$1(httpClient: HttpClient): DeletePipelineSignature;
|
|
45
|
+
interface DeletePipelineSignature {
|
|
80
46
|
/**
|
|
81
|
-
*
|
|
82
|
-
*
|
|
83
|
-
* By default, cards are sorted by `updatedDate` in descending order.
|
|
84
|
-
*
|
|
85
|
-
* For a detailed list of supported filters, sorting options, and search capabilities, see [Cards: Supported Filters, Sorting, and Search](https://dev.wix.com/docs/api-reference/crm/crm/pipelines-wip/card-v1/sort-filter-and-search).
|
|
47
|
+
* Deletes a pipeline.
|
|
86
48
|
*
|
|
87
|
-
*
|
|
88
|
-
*
|
|
49
|
+
* >**Notes:**
|
|
50
|
+
* > - You can't delete a pipeline that contains cards. Make sure to remove all cards in the pipeline before calling this method.
|
|
51
|
+
* > - Deleting a pipeline permanently removes it from a site.
|
|
52
|
+
* @param - Pipeline ID.
|
|
89
53
|
*/
|
|
90
|
-
(pipelineId: string
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
declare function bulkCreateCards$1(httpClient: HttpClient): BulkCreateCardsSignature;
|
|
94
|
-
interface BulkCreateCardsSignature {
|
|
95
|
-
/**
|
|
96
|
-
* Creates multiple cards.
|
|
97
|
-
* @param - List of cards to create.
|
|
98
|
-
*/
|
|
99
|
-
(cards: NonNullablePaths<Card, `name` | `pipelineId` | `stageId`, 2>[], options?: BulkCreateCardsOptions): Promise<NonNullablePaths<BulkCreateCardsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.item.priority` | `results.${number}.item.value.value` | `results.${number}.item.value.currency` | `results.${number}.item.outcome` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
|
|
100
|
-
}
|
|
101
|
-
/** @internal */
|
|
102
|
-
declare function bulkUpdateCards$1(httpClient: HttpClient): BulkUpdateCardsSignature;
|
|
103
|
-
interface BulkUpdateCardsSignature {
|
|
104
|
-
/**
|
|
105
|
-
* Updates multiple cards.
|
|
106
|
-
* @param - List of cards to update.
|
|
107
|
-
*/
|
|
108
|
-
(cards: NonNullablePaths<MaskedCard, `card._id` | `card.revision`, 3>[], options?: BulkUpdateCardsOptions): Promise<NonNullablePaths<BulkUpdateCardsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.item.priority` | `results.${number}.item.value.value` | `results.${number}.item.value.currency` | `results.${number}.item.outcome` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
|
|
109
|
-
}
|
|
110
|
-
/** @internal */
|
|
111
|
-
declare function bulkDeleteCards$1(httpClient: HttpClient): BulkDeleteCardsSignature;
|
|
112
|
-
interface BulkDeleteCardsSignature {
|
|
113
|
-
/**
|
|
114
|
-
* Deletes multiple cards.
|
|
115
|
-
* @param - Card IDs to delete.
|
|
116
|
-
*/
|
|
117
|
-
(cardIds: string[]): Promise<NonNullablePaths<BulkDeleteCardsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
|
|
54
|
+
(pipelineId: string): Promise<void & {
|
|
55
|
+
__applicationErrorsType?: DeletePipelineApplicationErrors;
|
|
56
|
+
}>;
|
|
118
57
|
}
|
|
119
|
-
declare function
|
|
120
|
-
interface
|
|
58
|
+
declare function bulkUpdatePipelineTags$1(httpClient: HttpClient): BulkUpdatePipelineTagsSignature;
|
|
59
|
+
interface BulkUpdatePipelineTagsSignature {
|
|
121
60
|
/**
|
|
122
|
-
* Updates tags on multiple
|
|
61
|
+
* Updates tags on multiple pipelines by specified pipeline IDs.
|
|
123
62
|
*
|
|
124
|
-
* If you specify a tag
|
|
125
|
-
* @param - List of
|
|
63
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, the tag is assigned to the pipelines.
|
|
64
|
+
* @param - List of pipeline IDs to update.
|
|
126
65
|
*/
|
|
127
|
-
(
|
|
128
|
-
__applicationErrorsType?:
|
|
66
|
+
(pipelineIds: string[], options?: BulkUpdatePipelineTagsOptions): Promise<NonNullablePaths<BulkUpdatePipelineTagsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6> & {
|
|
67
|
+
__applicationErrorsType?: BulkUpdatePipelineTagsApplicationErrors;
|
|
129
68
|
}>;
|
|
130
69
|
}
|
|
131
|
-
declare function
|
|
132
|
-
interface
|
|
70
|
+
declare function bulkUpdatePipelineTagsByFilter$1(httpClient: HttpClient): BulkUpdatePipelineTagsByFilterSignature;
|
|
71
|
+
interface BulkUpdatePipelineTagsByFilterSignature {
|
|
133
72
|
/**
|
|
134
|
-
*
|
|
73
|
+
* Updates tags on multiple pipelines, using a filter to select which pipelines to update.
|
|
135
74
|
*
|
|
136
|
-
*
|
|
75
|
+
* If you don't specify a filter, all pipelines on the site are updated.
|
|
76
|
+
* If you specify a tag in both `assignTags` and `unassignTags`, the tag is assigned to the pipelines.
|
|
137
77
|
*
|
|
138
|
-
*
|
|
139
|
-
*
|
|
78
|
+
* > **Note:**
|
|
79
|
+
* > This is an asynchronous method that returns a job ID for tracking progress.
|
|
80
|
+
* To get the status of the job, call [Get Async Job](https://dev.wix.com/docs/api-reference/business-management/async-job/get-async-job).
|
|
81
|
+
* @param - Filter to select which pipelines to update.
|
|
140
82
|
*/
|
|
141
|
-
(filter: Record<string, any>, options?:
|
|
142
|
-
__applicationErrorsType?:
|
|
83
|
+
(filter: Record<string, any>, options?: BulkUpdatePipelineTagsByFilterOptions): Promise<NonNullablePaths<BulkUpdatePipelineTagsByFilterResponse, `jobId`, 2> & {
|
|
84
|
+
__applicationErrorsType?: BulkUpdatePipelineTagsByFilterApplicationErrors;
|
|
143
85
|
}>;
|
|
144
86
|
}
|
|
145
|
-
declare const
|
|
146
|
-
declare const
|
|
147
|
-
declare const
|
|
148
|
-
declare const onCardMoved$1: EventDefinition<CardMovedEnvelope, "wix.crm.pipelines.v1.card_moved">;
|
|
149
|
-
declare const onCardOverdue$1: EventDefinition<CardOverdueEnvelope, "wix.crm.pipelines.v1.card_overdue">;
|
|
150
|
-
declare const onCardStale$1: EventDefinition<CardStaleEnvelope, "wix.crm.pipelines.v1.card_stale">;
|
|
151
|
-
declare const onCardUpdated$1: EventDefinition<CardUpdatedEnvelope, "wix.crm.pipelines.v1.card_updated">;
|
|
87
|
+
declare const onPipelineCreated$1: EventDefinition<PipelineCreatedEnvelope, "wix.crm.pipelines.v1.pipeline_created">;
|
|
88
|
+
declare const onPipelineDeleted$1: EventDefinition<PipelineDeletedEnvelope, "wix.crm.pipelines.v1.pipeline_deleted">;
|
|
89
|
+
declare const onPipelineUpdated$1: EventDefinition<PipelineUpdatedEnvelope, "wix.crm.pipelines.v1.pipeline_updated">;
|
|
152
90
|
|
|
153
|
-
declare function
|
|
154
|
-
():
|
|
155
|
-
(query:
|
|
91
|
+
declare function customQueryPipelines(httpClient: HttpClient): {
|
|
92
|
+
(): PipelinesQueryBuilder;
|
|
93
|
+
(query: PipelineQuery): ReturnType<typeof typedQueryPipelines>;
|
|
156
94
|
};
|
|
157
|
-
declare const
|
|
158
|
-
declare const
|
|
159
|
-
declare const
|
|
160
|
-
declare const
|
|
161
|
-
declare const
|
|
162
|
-
declare const
|
|
163
|
-
declare const
|
|
164
|
-
/** @internal */
|
|
165
|
-
declare const bulkCreateCards: MaybeContext<BuildRESTFunction<typeof bulkCreateCards$1> & typeof bulkCreateCards$1>;
|
|
166
|
-
/** @internal */
|
|
167
|
-
declare const bulkUpdateCards: MaybeContext<BuildRESTFunction<typeof bulkUpdateCards$1> & typeof bulkUpdateCards$1>;
|
|
168
|
-
/** @internal */
|
|
169
|
-
declare const bulkDeleteCards: MaybeContext<BuildRESTFunction<typeof bulkDeleteCards$1> & typeof bulkDeleteCards$1>;
|
|
170
|
-
declare const bulkUpdateCardTags: MaybeContext<BuildRESTFunction<typeof bulkUpdateCardTags$1> & typeof bulkUpdateCardTags$1>;
|
|
171
|
-
declare const bulkUpdateCardTagsByFilter: MaybeContext<BuildRESTFunction<typeof bulkUpdateCardTagsByFilter$1> & typeof bulkUpdateCardTagsByFilter$1>;
|
|
172
|
-
declare const queryCards: MaybeContext<BuildRESTFunction<typeof customQueryCards> & typeof customQueryCards>;
|
|
173
|
-
/**
|
|
174
|
-
* Triggered when a card is assigned.
|
|
175
|
-
*/
|
|
176
|
-
declare const onCardAssigned: BuildEventDefinition<typeof onCardAssigned$1> & typeof onCardAssigned$1;
|
|
177
|
-
/**
|
|
178
|
-
* Triggered when a card is created.
|
|
179
|
-
*/
|
|
180
|
-
declare const onCardCreated: BuildEventDefinition<typeof onCardCreated$1> & typeof onCardCreated$1;
|
|
181
|
-
/**
|
|
182
|
-
* Triggered when a card is deleted.
|
|
183
|
-
*/
|
|
184
|
-
declare const onCardDeleted: BuildEventDefinition<typeof onCardDeleted$1> & typeof onCardDeleted$1;
|
|
185
|
-
/**
|
|
186
|
-
* Triggered when a card is moved from one stage to another.
|
|
187
|
-
*/
|
|
188
|
-
declare const onCardMoved: BuildEventDefinition<typeof onCardMoved$1> & typeof onCardMoved$1;
|
|
95
|
+
declare const createPipeline: MaybeContext<BuildRESTFunction<typeof createPipeline$1> & typeof createPipeline$1>;
|
|
96
|
+
declare const getPipeline: MaybeContext<BuildRESTFunction<typeof getPipeline$1> & typeof getPipeline$1>;
|
|
97
|
+
declare const updatePipeline: MaybeContext<BuildRESTFunction<typeof updatePipeline$1> & typeof updatePipeline$1>;
|
|
98
|
+
declare const deletePipeline: MaybeContext<BuildRESTFunction<typeof deletePipeline$1> & typeof deletePipeline$1>;
|
|
99
|
+
declare const bulkUpdatePipelineTags: MaybeContext<BuildRESTFunction<typeof bulkUpdatePipelineTags$1> & typeof bulkUpdatePipelineTags$1>;
|
|
100
|
+
declare const bulkUpdatePipelineTagsByFilter: MaybeContext<BuildRESTFunction<typeof bulkUpdatePipelineTagsByFilter$1> & typeof bulkUpdatePipelineTagsByFilter$1>;
|
|
101
|
+
declare const queryPipelines: MaybeContext<BuildRESTFunction<typeof customQueryPipelines> & typeof customQueryPipelines>;
|
|
189
102
|
/**
|
|
190
|
-
* Triggered when a
|
|
103
|
+
* Triggered when a pipeline is created.
|
|
191
104
|
*/
|
|
192
|
-
declare const
|
|
105
|
+
declare const onPipelineCreated: BuildEventDefinition<typeof onPipelineCreated$1> & typeof onPipelineCreated$1;
|
|
193
106
|
/**
|
|
194
|
-
* Triggered when a
|
|
107
|
+
* Triggered when a pipeline is deleted.
|
|
195
108
|
*/
|
|
196
|
-
declare const
|
|
109
|
+
declare const onPipelineDeleted: BuildEventDefinition<typeof onPipelineDeleted$1> & typeof onPipelineDeleted$1;
|
|
197
110
|
/**
|
|
198
|
-
* Triggered when a
|
|
111
|
+
* Triggered when a pipeline is updated.
|
|
199
112
|
*/
|
|
200
|
-
declare const
|
|
113
|
+
declare const onPipelineUpdated: BuildEventDefinition<typeof onPipelineUpdated$1> & typeof onPipelineUpdated$1;
|
|
201
114
|
|
|
202
|
-
export {
|
|
115
|
+
export { BulkUpdatePipelineTagsApplicationErrors, BulkUpdatePipelineTagsByFilterApplicationErrors, BulkUpdatePipelineTagsByFilterOptions, BulkUpdatePipelineTagsByFilterResponse, BulkUpdatePipelineTagsOptions, BulkUpdatePipelineTagsResponse, DeletePipelineApplicationErrors, Pipeline, PipelineCreatedEnvelope, PipelineDeletedEnvelope, PipelineQuery, PipelineUpdatedEnvelope, PipelinesQueryBuilder, UpdatePipeline, UpdatePipelineApplicationErrors, bulkUpdatePipelineTags, bulkUpdatePipelineTagsByFilter, createPipeline, deletePipeline, getPipeline, onPipelineCreated, onPipelineDeleted, onPipelineUpdated, queryPipelines, updatePipeline };
|