@confighub/api 0.1.3 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.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. Settable at creation to adopt an existing Tag as the boundary; the ChangeOrder creates one on each in-scope Unit's head Revision if it is not set.
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 covers nothing of, mapped to the reason. Written when the scope is derived. */
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
  };
@@ -8209,7 +8240,7 @@ interface operations {
8209
8240
  * An example conjunction is:
8210
8241
  * `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
8211
8242
  *
8212
- * 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.
8213
8244
  *
8214
8245
  * The whole string must be query-encoded.
8215
8246
  */
@@ -8377,7 +8408,7 @@ interface operations {
8377
8408
  * An example conjunction is:
8378
8409
  * `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
8379
8410
  *
8380
- * 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.
8381
8412
  *
8382
8413
  * The whole string must be query-encoded.
8383
8414
  */
@@ -8645,7 +8676,7 @@ interface operations {
8645
8676
  * An example conjunction is:
8646
8677
  * `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
8647
8678
  *
8648
- * 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.
8649
8680
  *
8650
8681
  * The whole string must be query-encoded.
8651
8682
  */
@@ -8829,7 +8860,7 @@ interface operations {
8829
8860
  * An example conjunction is:
8830
8861
  * `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
8831
8862
  *
8832
- * 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.
8833
8864
  *
8834
8865
  * The whole string must be query-encoded.
8835
8866
  */
@@ -12761,6 +12792,89 @@ interface operations {
12761
12792
  };
12762
12793
  };
12763
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
+ };
12764
12878
  ListOAuthClients: {
12765
12879
  parameters: {
12766
12880
  query?: never;
@@ -17293,7 +17407,7 @@ interface operations {
17293
17407
  * An example conjunction is:
17294
17408
  * `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
17295
17409
  *
17296
- * 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.
17297
17411
  *
17298
17412
  * The whole string must be query-encoded.
17299
17413
  */
package/dist/index.d.ts 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. Settable at creation to adopt an existing Tag as the boundary; the ChangeOrder creates one on each in-scope Unit's head Revision if it is not set.
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 covers nothing of, mapped to the reason. Written when the scope is derived. */
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
  };
@@ -8209,7 +8240,7 @@ interface operations {
8209
8240
  * An example conjunction is:
8210
8241
  * `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
8211
8242
  *
8212
- * 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.
8213
8244
  *
8214
8245
  * The whole string must be query-encoded.
8215
8246
  */
@@ -8377,7 +8408,7 @@ interface operations {
8377
8408
  * An example conjunction is:
8378
8409
  * `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
8379
8410
  *
8380
- * 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.
8381
8412
  *
8382
8413
  * The whole string must be query-encoded.
8383
8414
  */
@@ -8645,7 +8676,7 @@ interface operations {
8645
8676
  * An example conjunction is:
8646
8677
  * `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
8647
8678
  *
8648
- * 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.
8649
8680
  *
8650
8681
  * The whole string must be query-encoded.
8651
8682
  */
@@ -8829,7 +8860,7 @@ interface operations {
8829
8860
  * An example conjunction is:
8830
8861
  * `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
8831
8862
  *
8832
- * 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.
8833
8864
  *
8834
8865
  * The whole string must be query-encoded.
8835
8866
  */
@@ -12761,6 +12792,89 @@ interface operations {
12761
12792
  };
12762
12793
  };
12763
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
+ };
12764
12878
  ListOAuthClients: {
12765
12879
  parameters: {
12766
12880
  query?: never;
@@ -17293,7 +17407,7 @@ interface operations {
17293
17407
  * An example conjunction is:
17294
17408
  * `CreatedAt >= '2025-01-07' AND Slug = 'test' AND Labels.mykey = 'myvalue'`.
17295
17409
  *
17296
- * 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.
17297
17411
  *
17298
17412
  * The whole string must be query-encoded.
17299
17413
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@confighub/api",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "description": "Typed, framework-agnostic client for the ConfigHub API",
5
5
  "license": "MIT",
6
6
  "repository": {