windmill-client 1.317.1 → 1.319.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/core/OpenAPI.js +1 -1
- package/dist/schemas.gen.d.ts +6 -0
- package/dist/schemas.gen.js +6 -0
- package/dist/types.gen.d.ts +8 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -1688,6 +1688,12 @@ export declare const $Policy: {
|
|
|
1688
1688
|
readonly type: "object";
|
|
1689
1689
|
};
|
|
1690
1690
|
};
|
|
1691
|
+
readonly triggerables_v2: {
|
|
1692
|
+
readonly type: "object";
|
|
1693
|
+
readonly additionalProperties: {
|
|
1694
|
+
readonly type: "object";
|
|
1695
|
+
};
|
|
1696
|
+
};
|
|
1691
1697
|
readonly execution_mode: {
|
|
1692
1698
|
readonly type: "string";
|
|
1693
1699
|
readonly enum: readonly ["viewer", "publisher", "anonymous"];
|
package/dist/schemas.gen.js
CHANGED
|
@@ -1731,6 +1731,12 @@ exports.$Policy = {
|
|
|
1731
1731
|
type: 'object'
|
|
1732
1732
|
}
|
|
1733
1733
|
},
|
|
1734
|
+
triggerables_v2: {
|
|
1735
|
+
type: 'object',
|
|
1736
|
+
additionalProperties: {
|
|
1737
|
+
type: 'object'
|
|
1738
|
+
}
|
|
1739
|
+
},
|
|
1734
1740
|
execution_mode: {
|
|
1735
1741
|
type: 'string',
|
|
1736
1742
|
enum: ['viewer', 'publisher', 'anonymous']
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -558,6 +558,11 @@ export type Policy = {
|
|
|
558
558
|
[key: string]: unknown;
|
|
559
559
|
};
|
|
560
560
|
};
|
|
561
|
+
triggerables_v2?: {
|
|
562
|
+
[key: string]: {
|
|
563
|
+
[key: string]: unknown;
|
|
564
|
+
};
|
|
565
|
+
};
|
|
561
566
|
execution_mode?: 'viewer' | 'publisher' | 'anonymous';
|
|
562
567
|
on_behalf_of?: string;
|
|
563
568
|
on_behalf_of_email?: string;
|
|
@@ -3709,6 +3714,9 @@ export type $OpenApiTs = {
|
|
|
3709
3714
|
force_viewer_static_fields?: {
|
|
3710
3715
|
[key: string]: unknown;
|
|
3711
3716
|
};
|
|
3717
|
+
force_viewer_one_of_fields?: {
|
|
3718
|
+
[key: string]: unknown;
|
|
3719
|
+
};
|
|
3712
3720
|
};
|
|
3713
3721
|
workspace: string;
|
|
3714
3722
|
};
|