@prefecthq/prefect-ui-library 2.0.11 → 2.0.13

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.
Files changed (26) hide show
  1. package/dist/{index-076ea4f4.mjs → index-93489a62.mjs} +13783 -13704
  2. package/dist/index-93489a62.mjs.map +1 -0
  3. package/dist/marketing-banner-bg.svg +381 -381
  4. package/dist/prefect-ui-library.mjs +690 -687
  5. package/dist/prefect-ui-library.umd.js +78 -78
  6. package/dist/prefect-ui-library.umd.js.map +1 -1
  7. package/dist/style.css +1 -1
  8. package/dist/types/src/components/DeploymentConfiguration.vue.d.ts +13 -0
  9. package/dist/types/src/components/DeploymentTagsInput.vue.d.ts +6 -0
  10. package/dist/types/src/components/DeploymentsTable.vue.d.ts +0 -6
  11. package/dist/types/src/components/index.d.ts +1 -0
  12. package/dist/types/src/compositions/filters.d.ts +2 -0
  13. package/dist/types/src/compositions/useCustomDefaultFlowRunsFilter.d.ts +3 -0
  14. package/dist/types/src/compositions/useFlow.d.ts +2 -1
  15. package/dist/types/src/maps/index.d.ts +1 -0
  16. package/dist/types/src/models/Deployment.d.ts +4 -0
  17. package/dist/types/src/models/DeploymentUpdate.d.ts +1 -0
  18. package/dist/types/src/models/api/DeploymentResponse.d.ts +2 -0
  19. package/dist/types/src/models/api/DeploymentUpdateRequest.d.ts +1 -0
  20. package/dist/types/src/services/Mapper.d.ts +1 -0
  21. package/dist/types/src/utilities/arrays.d.ts +1 -1
  22. package/dist/types/src/utilities/savedFilters.d.ts +1 -0
  23. package/dist/{viewport.es-88169ec4-fc1db3cf.mjs → viewport.es-88169ec4-8a66ff17.mjs} +2 -2
  24. package/dist/{viewport.es-88169ec4-fc1db3cf.mjs.map → viewport.es-88169ec4-8a66ff17.mjs.map} +1 -1
  25. package/package.json +4 -4
  26. package/dist/index-076ea4f4.mjs.map +0 -1
@@ -117,6 +117,7 @@ export declare const maps: {
117
117
  work_queue_name: string | null;
118
118
  work_pool_name: string | null;
119
119
  infra_overrides: Record<string, unknown> | null;
120
+ enforce_parameter_schema: boolean;
120
121
  }>>;
121
122
  };
122
123
  EmpiricalPolicy: {
@@ -27,6 +27,8 @@ export interface IDeployment {
27
27
  infrastructureOverrides: Record<string, unknown> | null;
28
28
  workQueueName: string | null;
29
29
  workPoolName: string | null;
30
+ enforceParameterSchema: boolean;
31
+ pullSteps: unknown;
30
32
  }
31
33
  export declare class Deployment implements IDeployment {
32
34
  readonly id: string;
@@ -53,6 +55,8 @@ export declare class Deployment implements IDeployment {
53
55
  infrastructureOverrides: Record<string, unknown> | null;
54
56
  workQueueName: string | null;
55
57
  workPoolName: string | null;
58
+ enforceParameterSchema: boolean;
59
+ pullSteps: unknown;
56
60
  constructor(deployment: IDeployment);
57
61
  get deprecated(): boolean;
58
62
  get appliedBy(): string | null;
@@ -8,6 +8,7 @@ type Base = {
8
8
  workQueueName?: string | null;
9
9
  workPoolName?: string | null;
10
10
  infrastructureOverrides?: Record<string, unknown> | null;
11
+ enforceParameterSchema?: boolean;
11
12
  };
12
13
  type BaseEdit = Omit<Base, 'infrastructureOverrides'> & {
13
14
  infrastructureOverrides?: string;
@@ -26,4 +26,6 @@ export type DeploymentResponse = {
26
26
  infra_overrides: Record<string, unknown> | null;
27
27
  work_queue_name: string | null;
28
28
  work_pool_name: string | null;
29
+ enforce_parameter_schema: boolean;
30
+ pull_steps: unknown;
29
31
  };
@@ -13,4 +13,5 @@ export type DeploymentUpdateRequest = Partial<{
13
13
  work_queue_name: string | null;
14
14
  work_pool_name: string | null;
15
15
  infra_overrides: Record<string, unknown> | null;
16
+ enforce_parameter_schema: boolean;
16
17
  }>;
@@ -141,6 +141,7 @@ export declare const mapper: Mapper<{
141
141
  work_queue_name: string | null;
142
142
  work_pool_name: string | null;
143
143
  infra_overrides: Record<string, unknown> | null;
144
+ enforce_parameter_schema: boolean;
144
145
  }>>;
145
146
  };
146
147
  EmpiricalPolicy: {
@@ -2,7 +2,7 @@ export declare function isArray(value: unknown): value is unknown[];
2
2
  export declare function toMap<T extends any[], K extends keyof T[number]>(source: T, key: K): Map<T[number][K], T[number]>;
3
3
  export declare const choice: <T>(list: T[] | readonly T[]) => T;
4
4
  export declare const range: (min: number, max: number) => number[];
5
- export declare function unique<T extends any[]>(array: T): T;
5
+ export declare function unique<T>(array: T[]): T[];
6
6
  export declare function isNonEmptyArray<T extends any[]>(array: T | undefined): array is T;
7
7
  export declare function asArray<T>(input: T | T[] | null): T[];
8
8
  export declare function isSame(arrayA: any[], arrayB: any[]): boolean;
@@ -1,5 +1,6 @@
1
1
  import { SavedSearch, SavedSearchFilter } from '../models/SavedSearch';
2
2
  export declare function isSameFilter(filterA: SavedSearchFilter, filterB: SavedSearchFilter): boolean;
3
+ export declare function isEmptyFilter(filter: SavedSearchFilter): boolean;
3
4
  export declare const oneWeekFilter: SavedSearchFilter;
4
5
  export declare const noScheduleFilter: SavedSearchFilter;
5
6
  export declare const customSavedSearch: SavedSearch;
@@ -1,4 +1,4 @@
1
- import { X as O, c as k, J as b, f as c } from "./index-076ea4f4.mjs";
1
+ import { X as O, c as k, J as b, f as c } from "./index-93489a62.mjs";
2
2
  import "vue";
3
3
  import "@prefecthq/vue-charts";
4
4
  import "@prefecthq/prefect-design";
@@ -1535,4 +1535,4 @@ export {
1535
1535
  C as Viewport,
1536
1536
  N as Wheel
1537
1537
  };
1538
- //# sourceMappingURL=viewport.es-88169ec4-fc1db3cf.mjs.map
1538
+ //# sourceMappingURL=viewport.es-88169ec4-8a66ff17.mjs.map