windmill-client 1.744.0 → 1.745.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.
@@ -29,7 +29,7 @@ const OpenAPI = {
29
29
  PASSWORD: void 0,
30
30
  TOKEN: getEnv("WM_TOKEN"),
31
31
  USERNAME: void 0,
32
- VERSION: "1.744.0",
32
+ VERSION: "1.745.0",
33
33
  WITH_CREDENTIALS: true,
34
34
  interceptors: {
35
35
  request: new Interceptors(),
package/dist/index.js CHANGED
@@ -126,7 +126,7 @@ const OpenAPI = {
126
126
  PASSWORD: void 0,
127
127
  TOKEN: getEnv$1("WM_TOKEN"),
128
128
  USERNAME: void 0,
129
- VERSION: "1.744.0",
129
+ VERSION: "1.745.0",
130
130
  WITH_CREDENTIALS: true,
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -1890,6 +1890,10 @@ export type User = {
1890
1890
  folders_owners: Array<(string)>;
1891
1891
  added_via?: (UserSource) | null;
1892
1892
  is_service_account?: boolean;
1893
+ /**
1894
+ * True when this is a superadmin viewing a workspace they are not a member of (is_admin/role reflect the superadmin fallback, not an actual membership).
1895
+ */
1896
+ non_member?: boolean;
1893
1897
  };
1894
1898
  export type UserSource = {
1895
1899
  /**
@@ -5255,6 +5259,40 @@ export type WorkspaceComparison = {
5255
5259
  * Summary statistics of the comparison
5256
5260
  */
5257
5261
  summary: CompareSummary;
5262
+ /**
5263
+ * Ahead items excluded from `diffs` because they are not visible to the caller
5264
+ */
5265
+ hidden_ahead: HiddenItemsSummary;
5266
+ /**
5267
+ * Behind items excluded from `diffs` because they are not visible to the caller
5268
+ */
5269
+ hidden_behind: HiddenItemsSummary;
5270
+ };
5271
+ export type HiddenItemsSummary = {
5272
+ /**
5273
+ * Total number of hidden items on this side
5274
+ */
5275
+ total: number;
5276
+ /**
5277
+ * Count of hidden items keyed by item kind (always populated)
5278
+ */
5279
+ by_kind: {
5280
+ [key: string]: (number);
5281
+ };
5282
+ /**
5283
+ * Kind and path of each hidden item; only populated when the caller is an admin of the relevant side (empty otherwise)
5284
+ */
5285
+ items: Array<HiddenItem>;
5286
+ };
5287
+ export type HiddenItem = {
5288
+ /**
5289
+ * Type of the hidden item
5290
+ */
5291
+ kind: string;
5292
+ /**
5293
+ * Path of the hidden item
5294
+ */
5295
+ path: string;
5258
5296
  };
5259
5297
  export type WorkspaceItemDiff = {
5260
5298
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.744.0",
4
+ "version": "1.745.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "homepage": "https://github.com/windmill-labs/windmill/tree/main/typescript-client#readme",