@confighub/api 0.1.2 → 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.d.cts +186 -92
- package/dist/index.d.ts +186 -92
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -395,6 +395,26 @@ interface paths {
|
|
|
395
395
|
patch?: never;
|
|
396
396
|
trace?: never;
|
|
397
397
|
};
|
|
398
|
+
"/me/browser-session": {
|
|
399
|
+
parameters: {
|
|
400
|
+
query?: never;
|
|
401
|
+
header?: never;
|
|
402
|
+
path?: never;
|
|
403
|
+
cookie?: never;
|
|
404
|
+
};
|
|
405
|
+
get?: never;
|
|
406
|
+
put?: never;
|
|
407
|
+
/**
|
|
408
|
+
* Create a single-use link that signs a browser in as the current user
|
|
409
|
+
* @description Returns a short-lived, single-use URL. Opening it exchanges the ticket for a session cookie. Intended for instances with no identity provider, where the browser has no other way to authenticate.
|
|
410
|
+
*/
|
|
411
|
+
post: operations["CreateBrowserSession"];
|
|
412
|
+
delete?: never;
|
|
413
|
+
options?: never;
|
|
414
|
+
head?: never;
|
|
415
|
+
patch?: never;
|
|
416
|
+
trace?: never;
|
|
417
|
+
};
|
|
398
418
|
"/oauth_client": {
|
|
399
419
|
parameters: {
|
|
400
420
|
query?: never;
|
|
@@ -2780,10 +2800,21 @@ interface components {
|
|
|
2780
2800
|
/** @description Status indicates the current status of the bridge worker. Possible values include Connected, Disconnected, ActionSent, ActionResultReceived. */
|
|
2781
2801
|
Status?: string;
|
|
2782
2802
|
};
|
|
2803
|
+
BrowserSessionResponse: {
|
|
2804
|
+
ExpiresIn?: number;
|
|
2805
|
+
Ticket?: string;
|
|
2806
|
+
URL?: string;
|
|
2807
|
+
};
|
|
2783
2808
|
/** @description Defines a change's identity as it moves between Spaces. */
|
|
2784
2809
|
ChangeOrder: {
|
|
2785
2810
|
/** @description AbortedReason says why the ChangeOrder was given up on. Setting it is what aborts one: a ChangeOrder with a reason is Aborted whatever its Links say. */
|
|
2786
2811
|
AbortedReason?: string;
|
|
2812
|
+
/**
|
|
2813
|
+
* Format: uuid
|
|
2814
|
+
* @description AdoptedEndTagID is the Tag whose marks were taken as the ChangeOrder's boundary, when it was created with one, and empty when the boundary was each Unit's head Revision.
|
|
2815
|
+
* @example 248df4b7-aa70-47b8-a036-33ac447e668d
|
|
2816
|
+
*/
|
|
2817
|
+
readonly AdoptedEndTagID?: string;
|
|
2787
2818
|
/** @description An optional map of Annotation key/value pairs for tools to attach information to entities. */
|
|
2788
2819
|
Annotations?: {
|
|
2789
2820
|
[key: string]: string;
|
|
@@ -2815,7 +2846,7 @@ interface components {
|
|
|
2815
2846
|
DisplayName?: string;
|
|
2816
2847
|
/**
|
|
2817
2848
|
* Format: uuid
|
|
2818
|
-
* @description EndTagID is the identifier of the set of Revisions that end the ChangeOrder.
|
|
2849
|
+
* @description EndTagID is the identifier of the set of Revisions that end the ChangeOrder. The ChangeOrder always mints this Tag itself; supplying one at creation adopts its marks as the boundary, and the supplied Tag is recorded as AdoptedEndTagID and never written to. Without one the boundary is each Unit's head Revision.
|
|
2819
2850
|
* @example 248df4b7-aa70-47b8-a036-33ac447e668d
|
|
2820
2851
|
*/
|
|
2821
2852
|
EndTagID?: string;
|
|
@@ -2837,7 +2868,7 @@ interface components {
|
|
|
2837
2868
|
readonly ReleasedSpaceIDs?: components["schemas"]["UUID"][];
|
|
2838
2869
|
/** @description ResolvedSpaceIDs is where the ChangeOrder has been fully propagated to: the Spaces in scope whose Links of its UpdateType have all merged it, plus the Space it resides in. Derived when the ChangeOrder is read. */
|
|
2839
2870
|
readonly ResolvedSpaceIDs?: components["schemas"]["UUID"][];
|
|
2840
|
-
/** @description SkippedUnits names the Units of the ChangeOrder's Space that it
|
|
2871
|
+
/** @description SkippedUnits names the Units of the ChangeOrder's Space that it carries no Revisions of, mapped to the reason. Written when the scope is derived. A skipped Unit may still be marked by the ChangeOrder's Tags, when the Spaces in scope had already taken it. */
|
|
2841
2872
|
readonly SkippedUnits?: {
|
|
2842
2873
|
[key: string]: string;
|
|
2843
2874
|
};
|
|
@@ -3117,8 +3148,6 @@ interface components {
|
|
|
3117
3148
|
Error?: components["schemas"]["ResponseError"];
|
|
3118
3149
|
/** Format: int64 */
|
|
3119
3150
|
GatedUnitCount?: number;
|
|
3120
|
-
/** Format: int64 */
|
|
3121
|
-
IncompleteApplyUnitCount?: number;
|
|
3122
3151
|
Organization?: components["schemas"]["Organization"];
|
|
3123
3152
|
ReleaseTarget?: components["schemas"]["Target"];
|
|
3124
3153
|
Space?: components["schemas"]["Space"];
|
|
@@ -3153,12 +3182,12 @@ interface components {
|
|
|
3153
3182
|
TriggerFilter?: components["schemas"]["Filter"];
|
|
3154
3183
|
Triggers?: components["schemas"]["Trigger"][];
|
|
3155
3184
|
/** Format: int64 */
|
|
3156
|
-
UnappliedUnitCount?: number;
|
|
3157
|
-
/** Format: int64 */
|
|
3158
3185
|
UnapprovedUnitCount?: number;
|
|
3159
3186
|
/** Format: int64 */
|
|
3160
3187
|
UnlinkedUnitCount?: number;
|
|
3161
3188
|
/** Format: int64 */
|
|
3189
|
+
UnreleasedUnitCount?: number;
|
|
3190
|
+
/** Format: int64 */
|
|
3162
3191
|
UpgradableUnitCount?: number;
|
|
3163
3192
|
/** Format: int64 */
|
|
3164
3193
|
WarnedUnitCount?: number;
|
|
@@ -3198,11 +3227,9 @@ interface components {
|
|
|
3198
3227
|
FromLink?: components["schemas"]["Link"][];
|
|
3199
3228
|
HeadMutation?: components["schemas"]["Mutation"];
|
|
3200
3229
|
HeadRevision?: components["schemas"]["Revision"];
|
|
3201
|
-
|
|
3230
|
+
LastReleasedRevision?: components["schemas"]["Revision"];
|
|
3202
3231
|
LatestUnitEvent?: components["schemas"]["UnitEvent"];
|
|
3203
|
-
LiveRevision?: components["schemas"]["Revision"];
|
|
3204
3232
|
Organization?: components["schemas"]["Organization"];
|
|
3205
|
-
PreviousLiveRevision?: components["schemas"]["Revision"];
|
|
3206
3233
|
Space?: components["schemas"]["Space"];
|
|
3207
3234
|
Target?: components["schemas"]["Target"];
|
|
3208
3235
|
Unit?: components["schemas"]["Unit"];
|
|
@@ -4511,12 +4538,6 @@ interface components {
|
|
|
4511
4538
|
Description?: string;
|
|
4512
4539
|
/** @description The type of entity. */
|
|
4513
4540
|
readonly EntityType?: string;
|
|
4514
|
-
/**
|
|
4515
|
-
* Format: date-time
|
|
4516
|
-
* @description Time at which the revision was applied, if it was applied. If not applied, the value is "0001-01-01T00:00:00Z".
|
|
4517
|
-
* @example 2006-01-02T15:04:05Z07:00
|
|
4518
|
-
*/
|
|
4519
|
-
LiveAt?: string;
|
|
4520
4541
|
/**
|
|
4521
4542
|
* Format: uuid
|
|
4522
4543
|
* @description Unique identifier for an Organization.
|
|
@@ -5158,7 +5179,7 @@ interface components {
|
|
|
5158
5179
|
* @example 248df4b7-aa70-47b8-a036-33ac447e668d
|
|
5159
5180
|
*/
|
|
5160
5181
|
OrganizationID?: string;
|
|
5161
|
-
/** @description Specifies the source of additional configuration data to pass to functions that need it (e.g., vet-immutable needs
|
|
5182
|
+
/** @description Specifies the source of additional configuration data to pass to functions that need it (e.g., vet-immutable needs a baseline revision to compare against). Uses revision specifier format such as LastReleasedRevisionNum or Before:HeadRevisionNum. */
|
|
5162
5183
|
OtherDataSource?: string;
|
|
5163
5184
|
/** @description Caller-supplied parameter values for expanding templated argument Values; transient, not persisted */
|
|
5164
5185
|
Params?: {
|
|
@@ -5333,18 +5354,13 @@ interface components {
|
|
|
5333
5354
|
Labels?: {
|
|
5334
5355
|
[key: string]: string;
|
|
5335
5356
|
};
|
|
5336
|
-
/**
|
|
5337
|
-
* Format: int64
|
|
5338
|
-
* @description Sequence number the last Revision applied. 0 if no live revision.
|
|
5339
|
-
*/
|
|
5340
|
-
readonly LastAppliedRevisionNum?: number;
|
|
5341
5357
|
/** @description LastChangeDescription is a human-readable description of the last change. This description is copied to the new Revision when the Data is changed. */
|
|
5342
5358
|
LastChangeDescription?: string;
|
|
5343
5359
|
/**
|
|
5344
5360
|
* Format: int64
|
|
5345
|
-
* @description Sequence number the last Revision
|
|
5361
|
+
* @description Sequence number of the last Revision published in a Release. 0 if no Revision has been released.
|
|
5346
5362
|
*/
|
|
5347
|
-
readonly
|
|
5363
|
+
readonly LastReleasedRevisionNum?: number;
|
|
5348
5364
|
/** @description Attribute paths that this Unit needs from upstream Units via NeedsProvides Links. Computed from get-needed and stored on data updates. */
|
|
5349
5365
|
readonly NeededPaths?: components["schemas"]["AttributeValue"][];
|
|
5350
5366
|
/**
|
|
@@ -5354,11 +5370,6 @@ interface components {
|
|
|
5354
5370
|
*/
|
|
5355
5371
|
OrganizationID?: string;
|
|
5356
5372
|
PathAnnotations?: components["schemas"]["PathAnnotationList"];
|
|
5357
|
-
/**
|
|
5358
|
-
* Format: int64
|
|
5359
|
-
* @description Sequence number the previous Revision applied. 0 if no live revision.
|
|
5360
|
-
*/
|
|
5361
|
-
readonly PreviousLiveRevisionNum?: number;
|
|
5362
5373
|
/** @description Attribute paths that this Unit provides to downstream Units via NeedsProvides Links. Computed from get-provided and stored on data updates. */
|
|
5363
5374
|
readonly ProvidedPaths?: components["schemas"]["AttributeInfo"][];
|
|
5364
5375
|
/** @description ProviderType identifies which bridge to use in the case that the Target supports multiple ProviderTypes. */
|
|
@@ -5722,7 +5733,7 @@ interface components {
|
|
|
5722
5733
|
MutationSources?: components["schemas"]["ResourceMutationList"];
|
|
5723
5734
|
};
|
|
5724
5735
|
UnitTagRequest: {
|
|
5725
|
-
/** @description Which Unit revision to tag: a named revision ('HeadRevisionNum', '
|
|
5736
|
+
/** @description Which Unit revision to tag: a named revision ('HeadRevisionNum', 'LastReleasedRevisionNum'), a revision number, an entity reference ('Tag:uuid', 'ChangeSet:uuid', 'Revision:uuid'), any of those prefixed with 'Before:', or 'Remove' to remove the tag from the unit */
|
|
5726
5737
|
Revision?: string;
|
|
5727
5738
|
/**
|
|
5728
5739
|
* Format: uuid
|
|
@@ -8229,7 +8240,7 @@ interface operations {
|
|
|
8229
8240
|
* An example conjunction is:
|
|
8230
8241
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
8231
8242
|
*
|
|
8232
|
-
* Supported attributes for filtering on ChangeOrder: AbortedReason, Annotations, ChangeOrderID, CreatedAt, DeleteGates, Description, DisplayName, EndTagID, InScopeSpaceIDs, Labels, OrganizationID, ReleasedSpaceIDs, ResolvedSpaceIDs, SkippedUnits, Slug, SpaceID, StartTagID, State, UpdateType, UpdatedAt.
|
|
8243
|
+
* Supported attributes for filtering on ChangeOrder: AbortedReason, AdoptedEndTagID, Annotations, ChangeOrderID, CreatedAt, DeleteGates, Description, DisplayName, EndTagID, InScopeSpaceIDs, Labels, OrganizationID, ReleasedSpaceIDs, ResolvedSpaceIDs, SkippedUnits, Slug, SpaceID, StartTagID, State, UpdateType, UpdatedAt.
|
|
8233
8244
|
*
|
|
8234
8245
|
* The whole string must be query-encoded.
|
|
8235
8246
|
*/
|
|
@@ -8397,7 +8408,7 @@ interface operations {
|
|
|
8397
8408
|
* An example conjunction is:
|
|
8398
8409
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
8399
8410
|
*
|
|
8400
|
-
* Supported attributes for filtering on ChangeOrder: AbortedReason, Annotations, ChangeOrderID, CreatedAt, DeleteGates, Description, DisplayName, EndTagID, InScopeSpaceIDs, Labels, OrganizationID, ReleasedSpaceIDs, ResolvedSpaceIDs, SkippedUnits, Slug, SpaceID, StartTagID, State, UpdateType, UpdatedAt.
|
|
8411
|
+
* Supported attributes for filtering on ChangeOrder: AbortedReason, AdoptedEndTagID, Annotations, ChangeOrderID, CreatedAt, DeleteGates, Description, DisplayName, EndTagID, InScopeSpaceIDs, Labels, OrganizationID, ReleasedSpaceIDs, ResolvedSpaceIDs, SkippedUnits, Slug, SpaceID, StartTagID, State, UpdateType, UpdatedAt.
|
|
8401
8412
|
*
|
|
8402
8413
|
* The whole string must be query-encoded.
|
|
8403
8414
|
*/
|
|
@@ -8665,7 +8676,7 @@ interface operations {
|
|
|
8665
8676
|
* An example conjunction is:
|
|
8666
8677
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
8667
8678
|
*
|
|
8668
|
-
* Supported attributes for filtering on ChangeOrder: AbortedReason, Annotations, ChangeOrderID, CreatedAt, DeleteGates, Description, DisplayName, EndTagID, InScopeSpaceIDs, Labels, OrganizationID, ReleasedSpaceIDs, ResolvedSpaceIDs, SkippedUnits, Slug, SpaceID, StartTagID, State, UpdateType, UpdatedAt.
|
|
8679
|
+
* Supported attributes for filtering on ChangeOrder: AbortedReason, AdoptedEndTagID, Annotations, ChangeOrderID, CreatedAt, DeleteGates, Description, DisplayName, EndTagID, InScopeSpaceIDs, Labels, OrganizationID, ReleasedSpaceIDs, ResolvedSpaceIDs, SkippedUnits, Slug, SpaceID, StartTagID, State, UpdateType, UpdatedAt.
|
|
8669
8680
|
*
|
|
8670
8681
|
* The whole string must be query-encoded.
|
|
8671
8682
|
*/
|
|
@@ -8849,7 +8860,7 @@ interface operations {
|
|
|
8849
8860
|
* An example conjunction is:
|
|
8850
8861
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
8851
8862
|
*
|
|
8852
|
-
* Supported attributes for filtering on ChangeOrder: AbortedReason, Annotations, ChangeOrderID, CreatedAt, DeleteGates, Description, DisplayName, EndTagID, InScopeSpaceIDs, Labels, OrganizationID, ReleasedSpaceIDs, ResolvedSpaceIDs, SkippedUnits, Slug, SpaceID, StartTagID, State, UpdateType, UpdatedAt.
|
|
8863
|
+
* Supported attributes for filtering on ChangeOrder: AbortedReason, AdoptedEndTagID, Annotations, ChangeOrderID, CreatedAt, DeleteGates, Description, DisplayName, EndTagID, InScopeSpaceIDs, Labels, OrganizationID, ReleasedSpaceIDs, ResolvedSpaceIDs, SkippedUnits, Slug, SpaceID, StartTagID, State, UpdateType, UpdatedAt.
|
|
8853
8864
|
*
|
|
8854
8865
|
* The whole string must be query-encoded.
|
|
8855
8866
|
*/
|
|
@@ -10793,7 +10804,7 @@ interface operations {
|
|
|
10793
10804
|
change_set_id?: string;
|
|
10794
10805
|
/** @description User-defined category for the Mutation. Must be alphanumeric, at most 64 characters. The prefix 'ConfigHub' is reserved. */
|
|
10795
10806
|
subgroup?: string;
|
|
10796
|
-
/** @description Source of additional configuration data to pass to functions that need it (e.g., vet-immutable). Supports named revision specifiers:
|
|
10807
|
+
/** @description Source of additional configuration data to pass to functions that need it (e.g., vet-immutable). Supports named revision specifiers: LastReleasedRevisionNum, HeadRevisionNum. Can be prefixed with 'Before:' (e.g., Before:HeadRevisionNum). May be repeated for multiple sources. */
|
|
10797
10808
|
other_data_source?: string;
|
|
10798
10809
|
/**
|
|
10799
10810
|
* @description The specified string is an expression for the purpose of filtering
|
|
@@ -10830,9 +10841,9 @@ interface operations {
|
|
|
10830
10841
|
* An example conjunction is:
|
|
10831
10842
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
10832
10843
|
*
|
|
10833
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
10844
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
10834
10845
|
*
|
|
10835
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
10846
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
10836
10847
|
*
|
|
10837
10848
|
* The whole string must be query-encoded.
|
|
10838
10849
|
*/
|
|
@@ -12781,6 +12792,89 @@ interface operations {
|
|
|
12781
12792
|
};
|
|
12782
12793
|
};
|
|
12783
12794
|
};
|
|
12795
|
+
CreateBrowserSession: {
|
|
12796
|
+
parameters: {
|
|
12797
|
+
query?: never;
|
|
12798
|
+
header?: never;
|
|
12799
|
+
path?: never;
|
|
12800
|
+
cookie?: never;
|
|
12801
|
+
};
|
|
12802
|
+
requestBody?: never;
|
|
12803
|
+
responses: {
|
|
12804
|
+
/** @description OK */
|
|
12805
|
+
200: {
|
|
12806
|
+
headers: {
|
|
12807
|
+
[name: string]: unknown;
|
|
12808
|
+
};
|
|
12809
|
+
content: {
|
|
12810
|
+
"application/json": components["schemas"]["BrowserSessionResponse"];
|
|
12811
|
+
};
|
|
12812
|
+
};
|
|
12813
|
+
/** @description BrowserSession request is invalid (Bad Request). */
|
|
12814
|
+
400: {
|
|
12815
|
+
headers: {
|
|
12816
|
+
[name: string]: unknown;
|
|
12817
|
+
};
|
|
12818
|
+
content: {
|
|
12819
|
+
"application/json": components["schemas"]["StandardErrorResponse"];
|
|
12820
|
+
};
|
|
12821
|
+
};
|
|
12822
|
+
/** @description Unauthorized access. */
|
|
12823
|
+
401: {
|
|
12824
|
+
headers: {
|
|
12825
|
+
[name: string]: unknown;
|
|
12826
|
+
};
|
|
12827
|
+
content: {
|
|
12828
|
+
"application/json": components["schemas"]["StandardErrorResponse"];
|
|
12829
|
+
};
|
|
12830
|
+
};
|
|
12831
|
+
/** @description Forbidden access. */
|
|
12832
|
+
403: {
|
|
12833
|
+
headers: {
|
|
12834
|
+
[name: string]: unknown;
|
|
12835
|
+
};
|
|
12836
|
+
content: {
|
|
12837
|
+
"application/json": components["schemas"]["StandardErrorResponse"];
|
|
12838
|
+
};
|
|
12839
|
+
};
|
|
12840
|
+
/** @description BrowserSession not found. */
|
|
12841
|
+
404: {
|
|
12842
|
+
headers: {
|
|
12843
|
+
[name: string]: unknown;
|
|
12844
|
+
};
|
|
12845
|
+
content: {
|
|
12846
|
+
"application/json": components["schemas"]["StandardErrorResponse"];
|
|
12847
|
+
};
|
|
12848
|
+
};
|
|
12849
|
+
/** @description BrowserSession data conflict. Data has changed since last read. */
|
|
12850
|
+
409: {
|
|
12851
|
+
headers: {
|
|
12852
|
+
[name: string]: unknown;
|
|
12853
|
+
};
|
|
12854
|
+
content: {
|
|
12855
|
+
"application/json": components["schemas"]["StandardErrorResponse"];
|
|
12856
|
+
};
|
|
12857
|
+
};
|
|
12858
|
+
/** @description Something went wrong while processing BrowserSession. */
|
|
12859
|
+
500: {
|
|
12860
|
+
headers: {
|
|
12861
|
+
[name: string]: unknown;
|
|
12862
|
+
};
|
|
12863
|
+
content: {
|
|
12864
|
+
"application/json": components["schemas"]["StandardErrorResponse"];
|
|
12865
|
+
};
|
|
12866
|
+
};
|
|
12867
|
+
/** @description Unexpected error. */
|
|
12868
|
+
default: {
|
|
12869
|
+
headers: {
|
|
12870
|
+
[name: string]: unknown;
|
|
12871
|
+
};
|
|
12872
|
+
content: {
|
|
12873
|
+
"application/json": components["schemas"]["StandardErrorResponse"];
|
|
12874
|
+
};
|
|
12875
|
+
};
|
|
12876
|
+
};
|
|
12877
|
+
};
|
|
12784
12878
|
ListOAuthClients: {
|
|
12785
12879
|
parameters: {
|
|
12786
12880
|
query?: never;
|
|
@@ -14470,7 +14564,7 @@ interface operations {
|
|
|
14470
14564
|
* An example conjunction is:
|
|
14471
14565
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
14472
14566
|
*
|
|
14473
|
-
* Supported attributes for filtering on Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description,
|
|
14567
|
+
* Supported attributes for filtering on Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description, OrganizationID, Releases, RevisionID, RevisionNum, Source, SpaceID, Tags, UnitID, UpdatedAt, UserAgent, UserID.
|
|
14474
14568
|
*
|
|
14475
14569
|
* To list tagged Revisions use `Tags ? '<tag-id>'`.
|
|
14476
14570
|
*
|
|
@@ -14539,7 +14633,7 @@ interface operations {
|
|
|
14539
14633
|
*
|
|
14540
14634
|
* Field names are case-sensitive and PascalCase, as in the JSON encoding. Sort direction defaults to ASC when the 'DIRECTION:' prefix is omitted.
|
|
14541
14635
|
*
|
|
14542
|
-
* Supported attributes for ordering Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description,
|
|
14636
|
+
* Supported attributes for ordering Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description, OrganizationID, Releases, RevisionID, RevisionNum, Source, SpaceID, Tags, UnitID, UpdatedAt, UserAgent, UserID.
|
|
14543
14637
|
*
|
|
14544
14638
|
* Example: 'DESC:CreatedAt' or 'DisplayName,DESC:CreatedAt'.
|
|
14545
14639
|
*
|
|
@@ -14668,7 +14762,7 @@ interface operations {
|
|
|
14668
14762
|
* An example conjunction is:
|
|
14669
14763
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
14670
14764
|
*
|
|
14671
|
-
* Supported attributes for filtering on Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description,
|
|
14765
|
+
* Supported attributes for filtering on Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description, OrganizationID, Releases, RevisionID, RevisionNum, Source, SpaceID, Tags, UnitID, UpdatedAt, UserAgent, UserID.
|
|
14672
14766
|
*
|
|
14673
14767
|
* To list tagged Revisions use `Tags ? '<tag-id>'`.
|
|
14674
14768
|
*
|
|
@@ -14737,7 +14831,7 @@ interface operations {
|
|
|
14737
14831
|
*
|
|
14738
14832
|
* Field names are case-sensitive and PascalCase, as in the JSON encoding. Sort direction defaults to ASC when the 'DIRECTION:' prefix is omitted.
|
|
14739
14833
|
*
|
|
14740
|
-
* Supported attributes for ordering Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description,
|
|
14834
|
+
* Supported attributes for ordering Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description, OrganizationID, Releases, RevisionID, RevisionNum, Source, SpaceID, Tags, UnitID, UpdatedAt, UserAgent, UserID.
|
|
14741
14835
|
*
|
|
14742
14836
|
* Example: 'DESC:CreatedAt' or 'DisplayName,DESC:CreatedAt'.
|
|
14743
14837
|
*
|
|
@@ -14866,7 +14960,7 @@ interface operations {
|
|
|
14866
14960
|
* An example conjunction is:
|
|
14867
14961
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
14868
14962
|
*
|
|
14869
|
-
* Supported attributes for filtering on Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description,
|
|
14963
|
+
* Supported attributes for filtering on Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description, OrganizationID, Releases, RevisionID, RevisionNum, Source, SpaceID, Tags, UnitID, UpdatedAt, UserAgent, UserID.
|
|
14870
14964
|
*
|
|
14871
14965
|
* To list tagged Revisions use `Tags ? '<tag-id>'`.
|
|
14872
14966
|
*
|
|
@@ -14935,7 +15029,7 @@ interface operations {
|
|
|
14935
15029
|
*
|
|
14936
15030
|
* Field names are case-sensitive and PascalCase, as in the JSON encoding. Sort direction defaults to ASC when the 'DIRECTION:' prefix is omitted.
|
|
14937
15031
|
*
|
|
14938
|
-
* Supported attributes for ordering Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description,
|
|
15032
|
+
* Supported attributes for ordering Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description, OrganizationID, Releases, RevisionID, RevisionNum, Source, SpaceID, Tags, UnitID, UpdatedAt, UserAgent, UserID.
|
|
14939
15033
|
*
|
|
14940
15034
|
* Example: 'DESC:CreatedAt' or 'DisplayName,DESC:CreatedAt'.
|
|
14941
15035
|
*
|
|
@@ -17313,7 +17407,7 @@ interface operations {
|
|
|
17313
17407
|
* An example conjunction is:
|
|
17314
17408
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
17315
17409
|
*
|
|
17316
|
-
* Supported attributes for filtering on ChangeOrder: AbortedReason, Annotations, ChangeOrderID, CreatedAt, DeleteGates, Description, DisplayName, EndTagID, InScopeSpaceIDs, Labels, OrganizationID, ReleasedSpaceIDs, ResolvedSpaceIDs, SkippedUnits, Slug, SpaceID, StartTagID, State, UpdateType, UpdatedAt.
|
|
17410
|
+
* Supported attributes for filtering on ChangeOrder: AbortedReason, AdoptedEndTagID, Annotations, ChangeOrderID, CreatedAt, DeleteGates, Description, DisplayName, EndTagID, InScopeSpaceIDs, Labels, OrganizationID, ReleasedSpaceIDs, ResolvedSpaceIDs, SkippedUnits, Slug, SpaceID, StartTagID, State, UpdateType, UpdatedAt.
|
|
17317
17411
|
*
|
|
17318
17412
|
* The whole string must be query-encoded.
|
|
17319
17413
|
*/
|
|
@@ -19430,7 +19524,7 @@ interface operations {
|
|
|
19430
19524
|
change_set_id?: string;
|
|
19431
19525
|
/** @description User-defined category for the Mutation. Must be alphanumeric, at most 64 characters. The prefix 'ConfigHub' is reserved. */
|
|
19432
19526
|
subgroup?: string;
|
|
19433
|
-
/** @description Source of additional configuration data to pass to functions that need it (e.g., vet-immutable). Supports named revision specifiers:
|
|
19527
|
+
/** @description Source of additional configuration data to pass to functions that need it (e.g., vet-immutable). Supports named revision specifiers: LastReleasedRevisionNum, HeadRevisionNum. Can be prefixed with 'Before:' (e.g., Before:HeadRevisionNum). May be repeated for multiple sources. */
|
|
19434
19528
|
other_data_source?: string;
|
|
19435
19529
|
/**
|
|
19436
19530
|
* @description The specified string is an expression for the purpose of filtering
|
|
@@ -19467,9 +19561,9 @@ interface operations {
|
|
|
19467
19561
|
* An example conjunction is:
|
|
19468
19562
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
19469
19563
|
*
|
|
19470
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
19564
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
19471
19565
|
*
|
|
19472
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
19566
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
19473
19567
|
*
|
|
19474
19568
|
* The whole string must be query-encoded.
|
|
19475
19569
|
*/
|
|
@@ -23969,9 +24063,9 @@ interface operations {
|
|
|
23969
24063
|
* An example conjunction is:
|
|
23970
24064
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
23971
24065
|
*
|
|
23972
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
24066
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
23973
24067
|
*
|
|
23974
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
24068
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
23975
24069
|
*
|
|
23976
24070
|
* The whole string must be query-encoded.
|
|
23977
24071
|
*/
|
|
@@ -24013,7 +24107,7 @@ interface operations {
|
|
|
24013
24107
|
* The attribute names are case-sensitive, PascalCase, and
|
|
24014
24108
|
* expected in a comma-separated list format as in the JSON encoding.
|
|
24015
24109
|
*
|
|
24016
|
-
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum,
|
|
24110
|
+
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum, LastReleasedRevisionNum, OrganizationID, SpaceID, TargetID, UnitEventID, UpstreamSpaceID, UpstreamUnitID.
|
|
24017
24111
|
*
|
|
24018
24112
|
* The whole string must be query-encoded.
|
|
24019
24113
|
*/
|
|
@@ -24238,7 +24332,7 @@ interface operations {
|
|
|
24238
24332
|
* The attribute names are case-sensitive, PascalCase, and
|
|
24239
24333
|
* expected in a comma-separated list format as in the JSON encoding.
|
|
24240
24334
|
*
|
|
24241
|
-
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum,
|
|
24335
|
+
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum, LastReleasedRevisionNum, OrganizationID, SpaceID, TargetID, UnitEventID, UpstreamSpaceID, UpstreamUnitID.
|
|
24242
24336
|
*
|
|
24243
24337
|
* The whole string must be query-encoded.
|
|
24244
24338
|
*/
|
|
@@ -24346,15 +24440,15 @@ interface operations {
|
|
|
24346
24440
|
squash?: boolean;
|
|
24347
24441
|
/** @description Upgrade the unit to the latest version of its upstream unit */
|
|
24348
24442
|
upgrade?: boolean;
|
|
24349
|
-
/** @description Restore revision source. Supports: Named revisions ('
|
|
24443
|
+
/** @description Restore revision source. Supports: Named revisions ('HeadRevisionNum', 'LastReleasedRevisionNum'), direct revision number (e.g., '42'), or entity references ('Tag:uuid', 'ChangeSet:uuid', 'ChangeOrder:uuid', 'Revision:uuid'). Can be prefixed with 'Before:' to select the revision immediately before the specified one (e.g., 'Before:LastReleasedRevisionNum', 'Before:42'). When using Tag or ChangeSet references, the latest revision associated with that entity is selected. 'ChangeOrder:uuid' selects the revision the change order ended at on this Unit and 'Before:ChangeOrder:uuid' the one before it began, which is what undoes a promotion however many revisions it made. */
|
|
24350
24444
|
restore?: string;
|
|
24351
24445
|
/** @description Resolve Links from this (downstream) Unit to another (upstream) Unit, propagating what each Link's UpdateType says to propagate. Expects Link:*, Link:<uuid>, or Link:<where expression>. Link:* selects every Link from this Unit that can resolve; a where expression selects among those, evaluated against the Links themselves (e.g. UpdateType = 'MergeUnits'), which is how to name one Link in a bulk operation, where a UUID cannot be. A Link with UpdateType None resolves nothing and is never selected. An AutoUpdate Link may be resolved by hand: it does what the queue would have done, and nothing when the Link is already level with its source. */
|
|
24352
24446
|
resolve?: string;
|
|
24353
24447
|
/** @description Merge source unit. Currently it must be a unit ID or 'Self'. */
|
|
24354
24448
|
merge_source?: string;
|
|
24355
|
-
/** @description Merge base revision, which provides the base configuration data of the changes to merge. With merge_source, this is a revision of the merge source unit. With merge_external_source, this is a revision of the unit being updated and overrides the default selection of the latest MergeExternal revision. Supports: Named revisions ('
|
|
24449
|
+
/** @description Merge base revision, which provides the base configuration data of the changes to merge. With merge_source, this is a revision of the merge source unit. With merge_external_source, this is a revision of the unit being updated and overrides the default selection of the latest MergeExternal revision. Supports: Named revisions ('HeadRevisionNum', 'LastReleasedRevisionNum'), direct revision number (e.g., '42'), or entity references ('Tag:uuid', 'ChangeSet:uuid', 'ChangeOrder:uuid', 'Revision:uuid'). Can be prefixed with 'Before:' to select the revision immediately before the specified one (e.g., 'Before:LastReleasedRevisionNum', 'Before:42'). When using Tag or ChangeSet references, the latest revision associated with that entity is selected. 'ChangeOrder:uuid' selects the revision the change order ended at on this Unit and 'Before:ChangeOrder:uuid' the one before it began, which is what undoes a promotion however many revisions it made. */
|
|
24356
24450
|
merge_base?: string;
|
|
24357
|
-
/** @description Merge end revision of the merge source, which provides the final configuration of the changes to merge. Also accepted with upgrade and with resolve, where it names how far along the source to take the propagation; the default there is the source's head. Naming a ChangeSet or Tag that ends a change is what leaves a change still being made at the source behind. Supports: Named revisions ('
|
|
24451
|
+
/** @description Merge end revision of the merge source, which provides the final configuration of the changes to merge. Also accepted with upgrade and with resolve, where it names how far along the source to take the propagation; the default there is the source's head. Naming a ChangeSet or Tag that ends a change is what leaves a change still being made at the source behind. Supports: Named revisions ('HeadRevisionNum', 'LastReleasedRevisionNum'), direct revision number (e.g., '42'), or entity references ('Tag:uuid', 'ChangeSet:uuid', 'ChangeOrder:uuid', 'Revision:uuid'). Can be prefixed with 'Before:' to select the revision immediately before the specified one (e.g., 'Before:LastReleasedRevisionNum', 'Before:42'). When using Tag or ChangeSet references, the latest revision associated with that entity is selected. 'ChangeOrder:uuid' selects the revision the change order ended at on this Unit and 'Before:ChangeOrder:uuid' the one before it began, which is what undoes a promotion however many revisions it made. */
|
|
24358
24452
|
merge_end?: string;
|
|
24359
24453
|
/** @description Identifier of the external source for merge-on-update. When set, computes mutations between the last MergeExternal revision and the provided data, then patches the current unit data with those mutations. */
|
|
24360
24454
|
merge_external_source?: string;
|
|
@@ -24646,15 +24740,15 @@ interface operations {
|
|
|
24646
24740
|
squash?: boolean;
|
|
24647
24741
|
/** @description Upgrade the unit to the latest version of its upstream unit */
|
|
24648
24742
|
upgrade?: boolean;
|
|
24649
|
-
/** @description Restore revision source. Supports: Named revisions ('
|
|
24743
|
+
/** @description Restore revision source. Supports: Named revisions ('HeadRevisionNum', 'LastReleasedRevisionNum'), direct revision number (e.g., '42'), or entity references ('Tag:uuid', 'ChangeSet:uuid', 'ChangeOrder:uuid', 'Revision:uuid'). Can be prefixed with 'Before:' to select the revision immediately before the specified one (e.g., 'Before:LastReleasedRevisionNum', 'Before:42'). When using Tag or ChangeSet references, the latest revision associated with that entity is selected. 'ChangeOrder:uuid' selects the revision the change order ended at on this Unit and 'Before:ChangeOrder:uuid' the one before it began, which is what undoes a promotion however many revisions it made. */
|
|
24650
24744
|
restore?: string;
|
|
24651
24745
|
/** @description Resolve Links from this (downstream) Unit to another (upstream) Unit, propagating what each Link's UpdateType says to propagate. Expects Link:*, Link:<uuid>, or Link:<where expression>. Link:* selects every Link from this Unit that can resolve; a where expression selects among those, evaluated against the Links themselves (e.g. UpdateType = 'MergeUnits'), which is how to name one Link in a bulk operation, where a UUID cannot be. A Link with UpdateType None resolves nothing and is never selected. An AutoUpdate Link may be resolved by hand: it does what the queue would have done, and nothing when the Link is already level with its source. */
|
|
24652
24746
|
resolve?: string;
|
|
24653
24747
|
/** @description Merge source unit. Currently it must be a unit ID or 'Self'. */
|
|
24654
24748
|
merge_source?: string;
|
|
24655
|
-
/** @description Merge base revision, which provides the base configuration data of the changes to merge. With merge_source, this is a revision of the merge source unit. With merge_external_source, this is a revision of the unit being updated and overrides the default selection of the latest MergeExternal revision. Supports: Named revisions ('
|
|
24749
|
+
/** @description Merge base revision, which provides the base configuration data of the changes to merge. With merge_source, this is a revision of the merge source unit. With merge_external_source, this is a revision of the unit being updated and overrides the default selection of the latest MergeExternal revision. Supports: Named revisions ('HeadRevisionNum', 'LastReleasedRevisionNum'), direct revision number (e.g., '42'), or entity references ('Tag:uuid', 'ChangeSet:uuid', 'ChangeOrder:uuid', 'Revision:uuid'). Can be prefixed with 'Before:' to select the revision immediately before the specified one (e.g., 'Before:LastReleasedRevisionNum', 'Before:42'). When using Tag or ChangeSet references, the latest revision associated with that entity is selected. 'ChangeOrder:uuid' selects the revision the change order ended at on this Unit and 'Before:ChangeOrder:uuid' the one before it began, which is what undoes a promotion however many revisions it made. */
|
|
24656
24750
|
merge_base?: string;
|
|
24657
|
-
/** @description Merge end revision of the merge source, which provides the final configuration of the changes to merge. Also accepted with upgrade and with resolve, where it names how far along the source to take the propagation; the default there is the source's head. Naming a ChangeSet or Tag that ends a change is what leaves a change still being made at the source behind. Supports: Named revisions ('
|
|
24751
|
+
/** @description Merge end revision of the merge source, which provides the final configuration of the changes to merge. Also accepted with upgrade and with resolve, where it names how far along the source to take the propagation; the default there is the source's head. Naming a ChangeSet or Tag that ends a change is what leaves a change still being made at the source behind. Supports: Named revisions ('HeadRevisionNum', 'LastReleasedRevisionNum'), direct revision number (e.g., '42'), or entity references ('Tag:uuid', 'ChangeSet:uuid', 'ChangeOrder:uuid', 'Revision:uuid'). Can be prefixed with 'Before:' to select the revision immediately before the specified one (e.g., 'Before:LastReleasedRevisionNum', 'Before:42'). When using Tag or ChangeSet references, the latest revision associated with that entity is selected. 'ChangeOrder:uuid' selects the revision the change order ended at on this Unit and 'Before:ChangeOrder:uuid' the one before it began, which is what undoes a promotion however many revisions it made. */
|
|
24658
24752
|
merge_end?: string;
|
|
24659
24753
|
/** @description Identifier of the external source for merge-on-update. When set, computes mutations between the last MergeExternal revision and the provided data, then patches the current unit data with those mutations. */
|
|
24660
24754
|
merge_external_source?: string;
|
|
@@ -24870,7 +24964,7 @@ interface operations {
|
|
|
24870
24964
|
ApproveUnit: {
|
|
24871
24965
|
parameters: {
|
|
24872
24966
|
query?: {
|
|
24873
|
-
/** @description Revision to approve (defaults to HeadRevisionNum). Can be a revision number, '
|
|
24967
|
+
/** @description Revision to approve (defaults to HeadRevisionNum). Can be a revision number, 'LastReleasedRevisionNum', 'Tag:uuid', 'ChangeSet:uuid', etc. */
|
|
24874
24968
|
revision?: string;
|
|
24875
24969
|
};
|
|
24876
24970
|
header?: never;
|
|
@@ -25142,7 +25236,7 @@ interface operations {
|
|
|
25142
25236
|
protect?: boolean;
|
|
25143
25237
|
/** @description The classes of guarded reason this operation is cleared for, as a JSON Clearance -- a list of {Key, Operator, Values} requirements, where Operator is Exists, In, NotIn, or DoesNotExist. A path whose guards this does not cover is not written, and the withheld change is reported as a Guarded conflict. An absent or empty clearance clears nothing, which only matters for a Unit that has guards. */
|
|
25144
25238
|
clearance?: string;
|
|
25145
|
-
/** @description Merge base revision, which provides the base configuration data of the changes to merge. With merge_source, this is a revision of the merge source unit. With merge_external_source, this is a revision of the unit being updated and overrides the default selection of the latest MergeExternal revision. Supports: Named revisions ('
|
|
25239
|
+
/** @description Merge base revision, which provides the base configuration data of the changes to merge. With merge_source, this is a revision of the merge source unit. With merge_external_source, this is a revision of the unit being updated and overrides the default selection of the latest MergeExternal revision. Supports: Named revisions ('HeadRevisionNum', 'LastReleasedRevisionNum'), direct revision number (e.g., '42'), or entity references ('Tag:uuid', 'ChangeSet:uuid', 'ChangeOrder:uuid', 'Revision:uuid'). Can be prefixed with 'Before:' to select the revision immediately before the specified one (e.g., 'Before:LastReleasedRevisionNum', 'Before:42'). When using Tag or ChangeSet references, the latest revision associated with that entity is selected. 'ChangeOrder:uuid' selects the revision the change order ended at on this Unit and 'Before:ChangeOrder:uuid' the one before it began, which is what undoes a promotion however many revisions it made. */
|
|
25146
25240
|
merge_base?: string;
|
|
25147
25241
|
/** @description Identifier of the external source for merge-on-update. When set, computes mutations between the last MergeExternal revision and the provided data, then patches the current unit data with those mutations. */
|
|
25148
25242
|
merge_external_source?: string;
|
|
@@ -26222,7 +26316,7 @@ interface operations {
|
|
|
26222
26316
|
* An example conjunction is:
|
|
26223
26317
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
26224
26318
|
*
|
|
26225
|
-
* Supported attributes for filtering on Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description,
|
|
26319
|
+
* Supported attributes for filtering on Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description, OrganizationID, Releases, RevisionID, RevisionNum, Source, SpaceID, Tags, UnitID, UpdatedAt, UserAgent, UserID.
|
|
26226
26320
|
*
|
|
26227
26321
|
* To list a tagged Revision use `Tags ? '<tag-id>'`.
|
|
26228
26322
|
*
|
|
@@ -26291,7 +26385,7 @@ interface operations {
|
|
|
26291
26385
|
*
|
|
26292
26386
|
* Field names are case-sensitive and PascalCase, as in the JSON encoding. Sort direction defaults to ASC when the 'DIRECTION:' prefix is omitted.
|
|
26293
26387
|
*
|
|
26294
|
-
* Supported attributes for ordering Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description,
|
|
26388
|
+
* Supported attributes for ordering Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description, OrganizationID, Releases, RevisionID, RevisionNum, Source, SpaceID, Tags, UnitID, UpdatedAt, UserAgent, UserID.
|
|
26295
26389
|
*
|
|
26296
26390
|
* Example: 'DESC:CreatedAt' or 'DisplayName,DESC:CreatedAt'.
|
|
26297
26391
|
*
|
|
@@ -26410,7 +26504,7 @@ interface operations {
|
|
|
26410
26504
|
*
|
|
26411
26505
|
* Field names are case-sensitive and PascalCase, as in the JSON encoding. Sort direction defaults to ASC when the 'DIRECTION:' prefix is omitted.
|
|
26412
26506
|
*
|
|
26413
|
-
* Supported attributes for ordering Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description,
|
|
26507
|
+
* Supported attributes for ordering Revision: ApplyGates, ApplyWarnings, ApprovedBy, ChangeOrders, ChangeSetID, Conflicts, CreatedAt, DataHash, Description, OrganizationID, Releases, RevisionID, RevisionNum, Source, SpaceID, Tags, UnitID, UpdatedAt, UserAgent, UserID.
|
|
26414
26508
|
*
|
|
26415
26509
|
* Example: 'DESC:CreatedAt' or 'DisplayName,DESC:CreatedAt'.
|
|
26416
26510
|
*
|
|
@@ -30121,9 +30215,9 @@ interface operations {
|
|
|
30121
30215
|
* An example conjunction is:
|
|
30122
30216
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
30123
30217
|
*
|
|
30124
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
30218
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
30125
30219
|
*
|
|
30126
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
30220
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
30127
30221
|
*
|
|
30128
30222
|
* The whole string must be query-encoded.
|
|
30129
30223
|
*/
|
|
@@ -30165,7 +30259,7 @@ interface operations {
|
|
|
30165
30259
|
* The attribute names are case-sensitive, PascalCase, and
|
|
30166
30260
|
* expected in a comma-separated list format as in the JSON encoding.
|
|
30167
30261
|
*
|
|
30168
|
-
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum,
|
|
30262
|
+
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum, LastReleasedRevisionNum, OrganizationID, SpaceID, TargetID, UnitEventID, UpstreamSpaceID, UpstreamUnitID.
|
|
30169
30263
|
*
|
|
30170
30264
|
* The whole string must be query-encoded.
|
|
30171
30265
|
*/
|
|
@@ -30303,9 +30397,9 @@ interface operations {
|
|
|
30303
30397
|
* An example conjunction is:
|
|
30304
30398
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
30305
30399
|
*
|
|
30306
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
30400
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
30307
30401
|
*
|
|
30308
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
30402
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
30309
30403
|
*
|
|
30310
30404
|
* The whole string must be query-encoded.
|
|
30311
30405
|
*/
|
|
@@ -30347,7 +30441,7 @@ interface operations {
|
|
|
30347
30441
|
* The attribute names are case-sensitive, PascalCase, and
|
|
30348
30442
|
* expected in a comma-separated list format as in the JSON encoding.
|
|
30349
30443
|
*
|
|
30350
|
-
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum,
|
|
30444
|
+
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum, LastReleasedRevisionNum, OrganizationID, SpaceID, TargetID, UnitEventID, UpstreamSpaceID, UpstreamUnitID.
|
|
30351
30445
|
*
|
|
30352
30446
|
* The whole string must be query-encoded.
|
|
30353
30447
|
*/
|
|
@@ -30645,9 +30739,9 @@ interface operations {
|
|
|
30645
30739
|
* An example conjunction is:
|
|
30646
30740
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
30647
30741
|
*
|
|
30648
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
30742
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
30649
30743
|
*
|
|
30650
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
30744
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
30651
30745
|
*
|
|
30652
30746
|
* The whole string must be query-encoded.
|
|
30653
30747
|
*/
|
|
@@ -30689,7 +30783,7 @@ interface operations {
|
|
|
30689
30783
|
* The attribute names are case-sensitive, PascalCase, and
|
|
30690
30784
|
* expected in a comma-separated list format as in the JSON encoding.
|
|
30691
30785
|
*
|
|
30692
|
-
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum,
|
|
30786
|
+
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum, LastReleasedRevisionNum, OrganizationID, SpaceID, TargetID, UnitEventID, UpstreamSpaceID, UpstreamUnitID.
|
|
30693
30787
|
*
|
|
30694
30788
|
* The whole string must be query-encoded.
|
|
30695
30789
|
*/
|
|
@@ -30840,9 +30934,9 @@ interface operations {
|
|
|
30840
30934
|
* An example conjunction is:
|
|
30841
30935
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
30842
30936
|
*
|
|
30843
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
30937
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
30844
30938
|
*
|
|
30845
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
30939
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
30846
30940
|
*
|
|
30847
30941
|
* The whole string must be query-encoded.
|
|
30848
30942
|
*/
|
|
@@ -30884,7 +30978,7 @@ interface operations {
|
|
|
30884
30978
|
* The attribute names are case-sensitive, PascalCase, and
|
|
30885
30979
|
* expected in a comma-separated list format as in the JSON encoding.
|
|
30886
30980
|
*
|
|
30887
|
-
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum,
|
|
30981
|
+
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum, LastReleasedRevisionNum, OrganizationID, SpaceID, TargetID, UnitEventID, UpstreamSpaceID, UpstreamUnitID.
|
|
30888
30982
|
*
|
|
30889
30983
|
* The whole string must be query-encoded.
|
|
30890
30984
|
*/
|
|
@@ -30899,15 +30993,15 @@ interface operations {
|
|
|
30899
30993
|
squash?: boolean;
|
|
30900
30994
|
/** @description Upgrade the unit to the latest version of its upstream unit */
|
|
30901
30995
|
upgrade?: boolean;
|
|
30902
|
-
/** @description Restore revision source. Supports: Named revisions ('
|
|
30996
|
+
/** @description Restore revision source. Supports: Named revisions ('HeadRevisionNum', 'LastReleasedRevisionNum'), direct revision number (e.g., '42'), or entity references ('Tag:uuid', 'ChangeSet:uuid', 'ChangeOrder:uuid', 'Revision:uuid'). Can be prefixed with 'Before:' to select the revision immediately before the specified one (e.g., 'Before:LastReleasedRevisionNum', 'Before:42'). When using Tag or ChangeSet references, the latest revision associated with that entity is selected. 'ChangeOrder:uuid' selects the revision the change order ended at on this Unit and 'Before:ChangeOrder:uuid' the one before it began, which is what undoes a promotion however many revisions it made. */
|
|
30903
30997
|
restore?: string;
|
|
30904
30998
|
/** @description Resolve Links from this (downstream) Unit to another (upstream) Unit, propagating what each Link's UpdateType says to propagate. Expects Link:*, Link:<uuid>, or Link:<where expression>. Link:* selects every Link from this Unit that can resolve; a where expression selects among those, evaluated against the Links themselves (e.g. UpdateType = 'MergeUnits'), which is how to name one Link in a bulk operation, where a UUID cannot be. A Link with UpdateType None resolves nothing and is never selected. An AutoUpdate Link may be resolved by hand: it does what the queue would have done, and nothing when the Link is already level with its source. */
|
|
30905
30999
|
resolve?: string;
|
|
30906
31000
|
/** @description Merge source unit. Currently it must be a unit ID or 'Self'. */
|
|
30907
31001
|
merge_source?: string;
|
|
30908
|
-
/** @description Merge base revision, which provides the base configuration data of the changes to merge. With merge_source, this is a revision of the merge source unit. With merge_external_source, this is a revision of the unit being updated and overrides the default selection of the latest MergeExternal revision. Supports: Named revisions ('
|
|
31002
|
+
/** @description Merge base revision, which provides the base configuration data of the changes to merge. With merge_source, this is a revision of the merge source unit. With merge_external_source, this is a revision of the unit being updated and overrides the default selection of the latest MergeExternal revision. Supports: Named revisions ('HeadRevisionNum', 'LastReleasedRevisionNum'), direct revision number (e.g., '42'), or entity references ('Tag:uuid', 'ChangeSet:uuid', 'ChangeOrder:uuid', 'Revision:uuid'). Can be prefixed with 'Before:' to select the revision immediately before the specified one (e.g., 'Before:LastReleasedRevisionNum', 'Before:42'). When using Tag or ChangeSet references, the latest revision associated with that entity is selected. 'ChangeOrder:uuid' selects the revision the change order ended at on this Unit and 'Before:ChangeOrder:uuid' the one before it began, which is what undoes a promotion however many revisions it made. */
|
|
30909
31003
|
merge_base?: string;
|
|
30910
|
-
/** @description Merge end revision of the merge source, which provides the final configuration of the changes to merge. Also accepted with upgrade and with resolve, where it names how far along the source to take the propagation; the default there is the source's head. Naming a ChangeSet or Tag that ends a change is what leaves a change still being made at the source behind. Supports: Named revisions ('
|
|
31004
|
+
/** @description Merge end revision of the merge source, which provides the final configuration of the changes to merge. Also accepted with upgrade and with resolve, where it names how far along the source to take the propagation; the default there is the source's head. Naming a ChangeSet or Tag that ends a change is what leaves a change still being made at the source behind. Supports: Named revisions ('HeadRevisionNum', 'LastReleasedRevisionNum'), direct revision number (e.g., '42'), or entity references ('Tag:uuid', 'ChangeSet:uuid', 'ChangeOrder:uuid', 'Revision:uuid'). Can be prefixed with 'Before:' to select the revision immediately before the specified one (e.g., 'Before:LastReleasedRevisionNum', 'Before:42'). When using Tag or ChangeSet references, the latest revision associated with that entity is selected. 'ChangeOrder:uuid' selects the revision the change order ended at on this Unit and 'Before:ChangeOrder:uuid' the one before it began, which is what undoes a promotion however many revisions it made. */
|
|
30911
31005
|
merge_end?: string;
|
|
30912
31006
|
/** @description Identifier of the external source for merge-on-update. When set, computes mutations between the last MergeExternal revision and the provided data, then patches the current unit data with those mutations. */
|
|
30913
31007
|
merge_external_source?: string;
|
|
@@ -31160,9 +31254,9 @@ interface operations {
|
|
|
31160
31254
|
* An example conjunction is:
|
|
31161
31255
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
31162
31256
|
*
|
|
31163
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
31257
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
31164
31258
|
*
|
|
31165
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
31259
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
31166
31260
|
*
|
|
31167
31261
|
* The whole string must be query-encoded.
|
|
31168
31262
|
*/
|
|
@@ -31204,12 +31298,12 @@ interface operations {
|
|
|
31204
31298
|
* The attribute names are case-sensitive, PascalCase, and
|
|
31205
31299
|
* expected in a comma-separated list format as in the JSON encoding.
|
|
31206
31300
|
*
|
|
31207
|
-
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum,
|
|
31301
|
+
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum, LastReleasedRevisionNum, OrganizationID, SpaceID, TargetID, UnitEventID, UpstreamSpaceID, UpstreamUnitID.
|
|
31208
31302
|
*
|
|
31209
31303
|
* The whole string must be query-encoded.
|
|
31210
31304
|
*/
|
|
31211
31305
|
include?: string;
|
|
31212
|
-
/** @description Revision to approve (defaults to HeadRevisionNum). Can be a revision number, '
|
|
31306
|
+
/** @description Revision to approve (defaults to HeadRevisionNum). Can be a revision number, 'LastReleasedRevisionNum', 'Tag:uuid', 'ChangeSet:uuid', etc. */
|
|
31213
31307
|
revision?: string;
|
|
31214
31308
|
};
|
|
31215
31309
|
header?: never;
|
|
@@ -31339,9 +31433,9 @@ interface operations {
|
|
|
31339
31433
|
* An example conjunction is:
|
|
31340
31434
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
31341
31435
|
*
|
|
31342
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
31436
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
31343
31437
|
*
|
|
31344
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
31438
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
31345
31439
|
*
|
|
31346
31440
|
* The whole string must be query-encoded.
|
|
31347
31441
|
*/
|
|
@@ -31383,7 +31477,7 @@ interface operations {
|
|
|
31383
31477
|
* The attribute names are case-sensitive, PascalCase, and
|
|
31384
31478
|
* expected in a comma-separated list format as in the JSON encoding.
|
|
31385
31479
|
*
|
|
31386
|
-
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum,
|
|
31480
|
+
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum, LastReleasedRevisionNum, OrganizationID, SpaceID, TargetID, UnitEventID, UpstreamSpaceID, UpstreamUnitID.
|
|
31387
31481
|
*
|
|
31388
31482
|
* The whole string must be query-encoded.
|
|
31389
31483
|
*/
|
|
@@ -31525,9 +31619,9 @@ interface operations {
|
|
|
31525
31619
|
* An example conjunction is:
|
|
31526
31620
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
31527
31621
|
*
|
|
31528
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
31622
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
31529
31623
|
*
|
|
31530
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
31624
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
31531
31625
|
*
|
|
31532
31626
|
* The whole string must be query-encoded.
|
|
31533
31627
|
*/
|
|
@@ -31569,7 +31663,7 @@ interface operations {
|
|
|
31569
31663
|
* The attribute names are case-sensitive, PascalCase, and
|
|
31570
31664
|
* expected in a comma-separated list format as in the JSON encoding.
|
|
31571
31665
|
*
|
|
31572
|
-
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum,
|
|
31666
|
+
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum, LastReleasedRevisionNum, OrganizationID, SpaceID, TargetID, UnitEventID, UpstreamSpaceID, UpstreamUnitID.
|
|
31573
31667
|
*
|
|
31574
31668
|
* The whole string must be query-encoded.
|
|
31575
31669
|
*/
|
|
@@ -31853,9 +31947,9 @@ interface operations {
|
|
|
31853
31947
|
* An example conjunction is:
|
|
31854
31948
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
31855
31949
|
*
|
|
31856
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
31950
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
31857
31951
|
*
|
|
31858
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
31952
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
31859
31953
|
*
|
|
31860
31954
|
* The whole string must be query-encoded.
|
|
31861
31955
|
*/
|
|
@@ -31897,7 +31991,7 @@ interface operations {
|
|
|
31897
31991
|
* The attribute names are case-sensitive, PascalCase, and
|
|
31898
31992
|
* expected in a comma-separated list format as in the JSON encoding.
|
|
31899
31993
|
*
|
|
31900
|
-
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum,
|
|
31994
|
+
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum, LastReleasedRevisionNum, OrganizationID, SpaceID, TargetID, UnitEventID, UpstreamSpaceID, UpstreamUnitID.
|
|
31901
31995
|
*
|
|
31902
31996
|
* The whole string must be query-encoded.
|
|
31903
31997
|
*/
|
|
@@ -32210,9 +32304,9 @@ interface operations {
|
|
|
32210
32304
|
* An example conjunction is:
|
|
32211
32305
|
* `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
|
|
32212
32306
|
*
|
|
32213
|
-
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt,
|
|
32307
|
+
* Supported attributes for filtering on Unit: Annotations, ApplyGates, ApplyWarnings, ApprovedBy, BridgeWorkerID, ChangeSetID, Conflicts, CreatedAt, DataHash, DeleteGates, DestroyGates, DisplayName, FromLinkID, HeadRevisionNum, HeadUnitActionNum, HeadUnitEventNum, Labels, LastActionAt, LastChangeDescription, LastReleasedRevisionNum, OrganizationID, ProviderType, Slug, SpaceID, TargetID, TargetOptions, ToolchainType, UnitID, UpdatedAt, UpstreamRevisionNum, UpstreamSpaceID, UpstreamUnitID, Values.
|
|
32214
32308
|
*
|
|
32215
|
-
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `
|
|
32309
|
+
* Finding all units created by cloning can be done using the expression `UpstreamRevisionNum > 0`. Clones of a specific unit can be found by additionally filtering based on `UpstreamUnitID`. Unapplied units can be found using `LastReleasedRevisionNum = 0`. Units with unapplied changes can be found with `HeadRevisionNum > LastReleasedRevisionNum`.
|
|
32216
32310
|
*
|
|
32217
32311
|
* The whole string must be query-encoded.
|
|
32218
32312
|
*/
|
|
@@ -32254,7 +32348,7 @@ interface operations {
|
|
|
32254
32348
|
* The attribute names are case-sensitive, PascalCase, and
|
|
32255
32349
|
* expected in a comma-separated list format as in the JSON encoding.
|
|
32256
32350
|
*
|
|
32257
|
-
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum,
|
|
32351
|
+
* Supported attributes for Unit are ApprovedBy, BridgeWorkerID, ChangeSetID, FromLinkID, HeadMutationNum, HeadRevisionNum, LastReleasedRevisionNum, OrganizationID, SpaceID, TargetID, UnitEventID, UpstreamSpaceID, UpstreamUnitID.
|
|
32258
32352
|
*
|
|
32259
32353
|
* The whole string must be query-encoded.
|
|
32260
32354
|
*/
|