windmill-components 1.501.24 → 1.502.3
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/package/components/Dev.svelte +4 -5
- package/package/components/apps/components/display/AppCarouselList.svelte +39 -4
- package/package/components/apps/editor/appUtils.js +4 -0
- package/package/components/apps/editor/componentsPanel/componentControlUtils.js +3 -1
- package/package/components/apps/editor/settingsPanel/ComponentPanelDataSource.svelte +0 -1
- package/package/components/auditLogs/AuditLogsFilters.svelte +12 -2
- package/package/components/auditLogs/AuditLogsTable.svelte +209 -122
- package/package/components/auditLogs/AuditLogsTable.svelte.d.ts +5 -20
- package/package/components/auditLogs/AuditLogsTimeline.svelte +449 -0
- package/package/components/auditLogs/AuditLogsTimeline.svelte.d.ts +16 -0
- package/package/components/copilot/chat/AIChatDisplay.svelte +23 -165
- package/package/components/copilot/chat/AIChatInput.svelte +128 -0
- package/package/components/copilot/chat/AIChatInput.svelte.d.ts +16 -0
- package/package/components/copilot/chat/AIChatManager.svelte.d.ts +4 -1
- package/package/components/copilot/chat/AIChatManager.svelte.js +33 -13
- package/package/components/copilot/chat/AIChatMessage.svelte +93 -0
- package/package/components/copilot/chat/AIChatMessage.svelte.d.ts +12 -0
- package/package/components/copilot/chat/ContextTextarea.svelte +13 -15
- package/package/components/copilot/chat/ContextTextarea.svelte.d.ts +4 -2
- package/package/components/copilot/chat/flow/FlowAIChat.svelte +11 -0
- package/package/components/copilot/chat/shared.d.ts +13 -3
- package/package/components/flow_builder.d.ts +10 -1
- package/package/components/graph/FlowGraphV2.svelte +1 -0
- package/package/components/search/GlobalSearchModal.svelte +28 -18
- package/package/gen/core/OpenAPI.js +1 -1
- package/package/gen/schemas.gen.d.ts +11 -2
- package/package/gen/schemas.gen.js +11 -2
- package/package/gen/types.gen.d.ts +5 -2
- package/package.json +2 -1
|
@@ -1630,6 +1630,9 @@ export declare const $AuditLog: {
|
|
|
1630
1630
|
readonly parameters: {
|
|
1631
1631
|
readonly type: "object";
|
|
1632
1632
|
};
|
|
1633
|
+
readonly span: {
|
|
1634
|
+
readonly type: "string";
|
|
1635
|
+
};
|
|
1633
1636
|
};
|
|
1634
1637
|
readonly required: readonly ["id", "timestamp", "username", "operation", "action_kind"];
|
|
1635
1638
|
};
|
|
@@ -4246,7 +4249,7 @@ export declare const $LargeFileStorage: {
|
|
|
4246
4249
|
readonly properties: {
|
|
4247
4250
|
readonly type: {
|
|
4248
4251
|
readonly type: "string";
|
|
4249
|
-
readonly enum: readonly ["S3Storage", "AzureBlobStorage", "AzureWorkloadIdentity", "S3AwsOidc"];
|
|
4252
|
+
readonly enum: readonly ["S3Storage", "AzureBlobStorage", "AzureWorkloadIdentity", "S3AwsOidc", "GoogleCloudStorage"];
|
|
4250
4253
|
};
|
|
4251
4254
|
readonly s3_resource_path: {
|
|
4252
4255
|
readonly type: "string";
|
|
@@ -4254,6 +4257,9 @@ export declare const $LargeFileStorage: {
|
|
|
4254
4257
|
readonly azure_blob_resource_path: {
|
|
4255
4258
|
readonly type: "string";
|
|
4256
4259
|
};
|
|
4260
|
+
readonly gcs_resource_path: {
|
|
4261
|
+
readonly type: "string";
|
|
4262
|
+
};
|
|
4257
4263
|
readonly public_resource: {
|
|
4258
4264
|
readonly type: "boolean";
|
|
4259
4265
|
};
|
|
@@ -4264,7 +4270,7 @@ export declare const $LargeFileStorage: {
|
|
|
4264
4270
|
readonly properties: {
|
|
4265
4271
|
readonly type: {
|
|
4266
4272
|
readonly type: "string";
|
|
4267
|
-
readonly enum: readonly ["S3Storage", "AzureBlobStorage", "AzureWorkloadIdentity", "S3AwsOidc"];
|
|
4273
|
+
readonly enum: readonly ["S3Storage", "AzureBlobStorage", "AzureWorkloadIdentity", "S3AwsOidc", "GoogleCloudStorage"];
|
|
4268
4274
|
};
|
|
4269
4275
|
readonly s3_resource_path: {
|
|
4270
4276
|
readonly type: "string";
|
|
@@ -4272,6 +4278,9 @@ export declare const $LargeFileStorage: {
|
|
|
4272
4278
|
readonly azure_blob_resource_path: {
|
|
4273
4279
|
readonly type: "string";
|
|
4274
4280
|
};
|
|
4281
|
+
readonly gcs_resource_path: {
|
|
4282
|
+
readonly type: "string";
|
|
4283
|
+
};
|
|
4275
4284
|
readonly public_resource: {
|
|
4276
4285
|
readonly type: "boolean";
|
|
4277
4286
|
};
|
|
@@ -1664,6 +1664,9 @@ export const $AuditLog = {
|
|
|
1664
1664
|
},
|
|
1665
1665
|
parameters: {
|
|
1666
1666
|
type: 'object'
|
|
1667
|
+
},
|
|
1668
|
+
span: {
|
|
1669
|
+
type: 'string'
|
|
1667
1670
|
}
|
|
1668
1671
|
},
|
|
1669
1672
|
required: ['id', 'timestamp', 'username', 'operation', 'action_kind']
|
|
@@ -4325,7 +4328,7 @@ export const $LargeFileStorage = {
|
|
|
4325
4328
|
properties: {
|
|
4326
4329
|
type: {
|
|
4327
4330
|
type: 'string',
|
|
4328
|
-
enum: ['S3Storage', 'AzureBlobStorage', 'AzureWorkloadIdentity', 'S3AwsOidc']
|
|
4331
|
+
enum: ['S3Storage', 'AzureBlobStorage', 'AzureWorkloadIdentity', 'S3AwsOidc', 'GoogleCloudStorage']
|
|
4329
4332
|
},
|
|
4330
4333
|
s3_resource_path: {
|
|
4331
4334
|
type: 'string'
|
|
@@ -4333,6 +4336,9 @@ export const $LargeFileStorage = {
|
|
|
4333
4336
|
azure_blob_resource_path: {
|
|
4334
4337
|
type: 'string'
|
|
4335
4338
|
},
|
|
4339
|
+
gcs_resource_path: {
|
|
4340
|
+
type: 'string'
|
|
4341
|
+
},
|
|
4336
4342
|
public_resource: {
|
|
4337
4343
|
type: 'boolean'
|
|
4338
4344
|
},
|
|
@@ -4343,7 +4349,7 @@ export const $LargeFileStorage = {
|
|
|
4343
4349
|
properties: {
|
|
4344
4350
|
type: {
|
|
4345
4351
|
type: 'string',
|
|
4346
|
-
enum: ['S3Storage', 'AzureBlobStorage', 'AzureWorkloadIdentity', 'S3AwsOidc']
|
|
4352
|
+
enum: ['S3Storage', 'AzureBlobStorage', 'AzureWorkloadIdentity', 'S3AwsOidc', 'GoogleCloudStorage']
|
|
4347
4353
|
},
|
|
4348
4354
|
s3_resource_path: {
|
|
4349
4355
|
type: 'string'
|
|
@@ -4351,6 +4357,9 @@ export const $LargeFileStorage = {
|
|
|
4351
4357
|
azure_blob_resource_path: {
|
|
4352
4358
|
type: 'string'
|
|
4353
4359
|
},
|
|
4360
|
+
gcs_resource_path: {
|
|
4361
|
+
type: 'string'
|
|
4362
|
+
},
|
|
4354
4363
|
public_resource: {
|
|
4355
4364
|
type: 'boolean'
|
|
4356
4365
|
}
|
|
@@ -518,6 +518,7 @@ export type AuditLog = {
|
|
|
518
518
|
parameters?: {
|
|
519
519
|
[key: string]: unknown;
|
|
520
520
|
};
|
|
521
|
+
span?: string;
|
|
521
522
|
};
|
|
522
523
|
export type MainArgSignature = {
|
|
523
524
|
type: 'Valid' | 'Invalid';
|
|
@@ -1351,15 +1352,17 @@ export type PolarsClientKwargs = {
|
|
|
1351
1352
|
region_name: string;
|
|
1352
1353
|
};
|
|
1353
1354
|
export type LargeFileStorage = {
|
|
1354
|
-
type?: 'S3Storage' | 'AzureBlobStorage' | 'AzureWorkloadIdentity' | 'S3AwsOidc';
|
|
1355
|
+
type?: 'S3Storage' | 'AzureBlobStorage' | 'AzureWorkloadIdentity' | 'S3AwsOidc' | 'GoogleCloudStorage';
|
|
1355
1356
|
s3_resource_path?: string;
|
|
1356
1357
|
azure_blob_resource_path?: string;
|
|
1358
|
+
gcs_resource_path?: string;
|
|
1357
1359
|
public_resource?: boolean;
|
|
1358
1360
|
secondary_storage?: {
|
|
1359
1361
|
[key: string]: {
|
|
1360
|
-
type?: 'S3Storage' | 'AzureBlobStorage' | 'AzureWorkloadIdentity' | 'S3AwsOidc';
|
|
1362
|
+
type?: 'S3Storage' | 'AzureBlobStorage' | 'AzureWorkloadIdentity' | 'S3AwsOidc' | 'GoogleCloudStorage';
|
|
1361
1363
|
s3_resource_path?: string;
|
|
1362
1364
|
azure_blob_resource_path?: string;
|
|
1365
|
+
gcs_resource_path?: string;
|
|
1363
1366
|
public_resource?: boolean;
|
|
1364
1367
|
};
|
|
1365
1368
|
};
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "windmill-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.502.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev",
|
|
6
6
|
"build": "vite build",
|
|
7
7
|
"preview": "vite preview",
|
|
8
|
+
"postinstall": "node ./scripts/untar_ui_builder.js && node ./scripts/patch_files.js",
|
|
8
9
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --threshold warning",
|
|
9
10
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
10
11
|
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
|