@burdenoff/microfe-adaptercloud 2026.710.2 → 2026.713.1
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/adaptercloud/hooks/useAdapterCloudApi.d.ts +14 -14
- package/dist/adaptercloud/hooks/useAdapterCloudApi.d.ts.map +1 -1
- package/dist/adaptercloud/pages/OverviewPage.d.ts +1 -1
- package/dist/adaptercloud/pages/OverviewPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/adapters/AdapterDetailPage.d.ts +1 -1
- package/dist/adaptercloud/pages/adapters/AdapterDetailPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/adapters/AdapterFormPage.d.ts +1 -1
- package/dist/adaptercloud/pages/adapters/AdapterFormPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/adapters/AdaptersListPage.d.ts +1 -1
- package/dist/adaptercloud/pages/adapters/AdaptersListPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/connections/ConnectionDetailPage.d.ts +1 -1
- package/dist/adaptercloud/pages/connections/ConnectionDetailPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/connections/ConnectionFormPage.d.ts +1 -1
- package/dist/adaptercloud/pages/connections/ConnectionFormPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/connections/ConnectionsListPage.d.ts +1 -1
- package/dist/adaptercloud/pages/connections/ConnectionsListPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/costs/CostsPage.d.ts +1 -1
- package/dist/adaptercloud/pages/costs/CostsPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/drift/DriftListPage.d.ts +1 -1
- package/dist/adaptercloud/pages/drift/DriftListPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/policies/PoliciesListPage.d.ts +1 -1
- package/dist/adaptercloud/pages/policies/PoliciesListPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/policies/PolicyDetailPage.d.ts +1 -1
- package/dist/adaptercloud/pages/policies/PolicyDetailPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/policies/PolicyFormPage.d.ts +1 -1
- package/dist/adaptercloud/pages/policies/PolicyFormPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/resources/ResourceDetailPage.d.ts +1 -1
- package/dist/adaptercloud/pages/resources/ResourceDetailPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/resources/ResourcesListPage.d.ts +1 -1
- package/dist/adaptercloud/pages/resources/ResourcesListPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/sync-runs/SyncRunsListPage.d.ts +1 -1
- package/dist/adaptercloud/pages/sync-runs/SyncRunsListPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/topology/TopologyPage.d.ts +1 -1
- package/dist/adaptercloud/pages/topology/TopologyPage.d.ts.map +1 -1
- package/dist/adaptercloud/pages/violations/ViolationsListPage.d.ts +1 -1
- package/dist/adaptercloud/pages/violations/ViolationsListPage.d.ts.map +1 -1
- package/dist/adaptercloud/utils/cn.js +2 -2
- package/dist/generated/wspace-operations.d.ts +7 -7
- package/dist/generated/wspace-operations.d.ts.map +1 -1
- package/dist/node_modules/{.bun/clsx@2.1.1/node_modules/clsx → clsx}/dist/clsx.js +1 -1
- package/dist/node_modules/clsx/dist/clsx.js.map +1 -0
- package/dist/node_modules/{.bun/tailwind-merge@3.5.0/node_modules/tailwind-merge → tailwind-merge}/dist/bundle-mjs.js +212 -170
- package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js.map +1 -0
- package/dist/services/createSandboxAssistantTransport.d.ts +8 -24
- package/dist/services/createSandboxAssistantTransport.d.ts.map +1 -1
- package/dist/services/createSandboxAssistantTransport.js +8 -114
- package/dist/services/createSandboxAssistantTransport.js.map +1 -1
- package/package.json +3 -3
- package/dist/generated/wspace-operations.js +0 -59
- package/dist/generated/wspace-operations.js.map +0 -1
- package/dist/node_modules/.bun/clsx@2.1.1/node_modules/clsx/dist/clsx.js.map +0 -1
- package/dist/node_modules/.bun/tailwind-merge@3.5.0/node_modules/tailwind-merge/dist/bundle-mjs.js.map +0 -1
- package/dist/services/assistantApi.d.ts +0 -68
- package/dist/services/assistantApi.d.ts.map +0 -1
- package/dist/services/assistantApi.js +0 -202
- package/dist/services/assistantApi.js.map +0 -1
|
@@ -25,8 +25,8 @@ export interface AdapterListFilter {
|
|
|
25
25
|
status?: AdaAdapterStatus;
|
|
26
26
|
pagination?: PaginationInput;
|
|
27
27
|
}
|
|
28
|
-
export declare const useAdapters: (filter?: AdapterListFilter) => import('@tanstack/react-query').UseQueryResult<AdaAdapterConnectionPage
|
|
29
|
-
export declare const useAdapter: (id: string | undefined) => import('@tanstack/react-query').UseQueryResult<AdaAdapter | null
|
|
28
|
+
export declare const useAdapters: (filter?: AdapterListFilter) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaAdapterConnectionPage>, Error>;
|
|
29
|
+
export declare const useAdapter: (id: string | undefined) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaAdapter | null>, Error>;
|
|
30
30
|
export declare const useCreateAdapter: () => import('@tanstack/react-query').UseMutationResult<AdaAdapter, Error, AdaCreateAdapterInput, unknown>;
|
|
31
31
|
export declare const useUpdateAdapter: () => import('@tanstack/react-query').UseMutationResult<AdaAdapter, Error, {
|
|
32
32
|
id: string;
|
|
@@ -38,8 +38,8 @@ export interface ConnectionListFilter {
|
|
|
38
38
|
status?: AdaConnectionStatus;
|
|
39
39
|
pagination?: PaginationInput;
|
|
40
40
|
}
|
|
41
|
-
export declare const useConnections: (filter?: ConnectionListFilter) => import('@tanstack/react-query').UseQueryResult<AdaConnectionPage
|
|
42
|
-
export declare const useConnection: (id: string | undefined) => import('@tanstack/react-query').UseQueryResult<AdaConnection | null
|
|
41
|
+
export declare const useConnections: (filter?: ConnectionListFilter) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaConnectionPage>, Error>;
|
|
42
|
+
export declare const useConnection: (id: string | undefined) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaConnection | null>, Error>;
|
|
43
43
|
export declare const useCreateConnection: () => import('@tanstack/react-query').UseMutationResult<AdaConnection, Error, AdaCreateConnectionInput, unknown>;
|
|
44
44
|
export declare const useUpdateConnection: () => import('@tanstack/react-query').UseMutationResult<AdaConnection, Error, {
|
|
45
45
|
id: string;
|
|
@@ -56,15 +56,15 @@ export interface ResourceListFilter {
|
|
|
56
56
|
state?: AdaResourceState;
|
|
57
57
|
pagination?: PaginationInput;
|
|
58
58
|
}
|
|
59
|
-
export declare const useResources: (filter?: ResourceListFilter) => import('@tanstack/react-query').UseQueryResult<AdaResourcePage
|
|
60
|
-
export declare const useResource: (id: string | undefined) => import('@tanstack/react-query').UseQueryResult<AdaResource | null
|
|
59
|
+
export declare const useResources: (filter?: ResourceListFilter) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaResourcePage>, Error>;
|
|
60
|
+
export declare const useResource: (id: string | undefined) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaResource | null>, Error>;
|
|
61
61
|
export interface PolicyListFilter {
|
|
62
62
|
isActive?: boolean;
|
|
63
63
|
kind?: AdaPolicyKind;
|
|
64
64
|
pagination?: PaginationInput;
|
|
65
65
|
}
|
|
66
|
-
export declare const usePolicies: (filter?: PolicyListFilter) => import('@tanstack/react-query').UseQueryResult<AdaPolicyPage
|
|
67
|
-
export declare const usePolicy: (id: string | undefined) => import('@tanstack/react-query').UseQueryResult<AdaPolicy | null
|
|
66
|
+
export declare const usePolicies: (filter?: PolicyListFilter) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaPolicyPage>, Error>;
|
|
67
|
+
export declare const usePolicy: (id: string | undefined) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaPolicy | null>, Error>;
|
|
68
68
|
export declare const useCreatePolicy: () => import('@tanstack/react-query').UseMutationResult<AdaPolicy, Error, AdaCreatePolicyInput, unknown>;
|
|
69
69
|
export declare const useUpdatePolicy: () => import('@tanstack/react-query').UseMutationResult<AdaPolicy, Error, {
|
|
70
70
|
id: string;
|
|
@@ -77,7 +77,7 @@ export interface ViolationListFilter {
|
|
|
77
77
|
status?: AdaViolationStatus;
|
|
78
78
|
pagination?: PaginationInput;
|
|
79
79
|
}
|
|
80
|
-
export declare const useViolations: (filter?: ViolationListFilter) => import('@tanstack/react-query').UseQueryResult<AdaPolicyViolationPage
|
|
80
|
+
export declare const useViolations: (filter?: ViolationListFilter) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaPolicyViolationPage>, Error>;
|
|
81
81
|
export declare const useResolveViolation: () => import('@tanstack/react-query').UseMutationResult<AdaPolicyViolation, Error, {
|
|
82
82
|
id: string;
|
|
83
83
|
status: AdaViolationStatus;
|
|
@@ -87,23 +87,23 @@ export interface DriftListFilter {
|
|
|
87
87
|
resourceId?: string;
|
|
88
88
|
status?: AdaDriftStatus;
|
|
89
89
|
}
|
|
90
|
-
export declare const useDriftRecords: (filter?: DriftListFilter) => import('@tanstack/react-query').UseQueryResult<AdaDriftRecord[]
|
|
90
|
+
export declare const useDriftRecords: (filter?: DriftListFilter) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaDriftRecord[]>, Error>;
|
|
91
91
|
export declare const useRemediateDrift: () => import('@tanstack/react-query').UseMutationResult<AdaDriftRecord, Error, string, unknown>;
|
|
92
92
|
export interface SyncRunListFilter {
|
|
93
93
|
connectionId?: string;
|
|
94
94
|
status?: AdaSyncStatus;
|
|
95
95
|
pagination?: PaginationInput;
|
|
96
96
|
}
|
|
97
|
-
export declare const useSyncRuns: (filter?: SyncRunListFilter) => import('@tanstack/react-query').UseQueryResult<AdaSyncRunPage
|
|
97
|
+
export declare const useSyncRuns: (filter?: SyncRunListFilter) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaSyncRunPage>, Error>;
|
|
98
98
|
export declare const useStartSyncRun: () => import('@tanstack/react-query').UseMutationResult<AdaSyncRun, Error, AdaStartSyncRunInput, unknown>;
|
|
99
99
|
export declare const useCancelSyncRun: () => import('@tanstack/react-query').UseMutationResult<AdaSyncRun, Error, string, unknown>;
|
|
100
|
-
export declare const useCostSummary: (connectionId?: string) => import('@tanstack/react-query').UseQueryResult<AdaCostSummary
|
|
100
|
+
export declare const useCostSummary: (connectionId?: string) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaCostSummary>, Error>;
|
|
101
101
|
export interface CostRecordListFilter {
|
|
102
102
|
connectionId?: string;
|
|
103
103
|
resourceId?: string;
|
|
104
104
|
service?: string;
|
|
105
105
|
}
|
|
106
|
-
export declare const useCostRecords: (filter?: CostRecordListFilter) => import('@tanstack/react-query').UseQueryResult<AdaCostRecord[]
|
|
106
|
+
export declare const useCostRecords: (filter?: CostRecordListFilter) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaCostRecord[]>, Error>;
|
|
107
107
|
export interface TopologyFilter {
|
|
108
108
|
resourceId?: string;
|
|
109
109
|
kind?: AdaEdgeKind;
|
|
@@ -113,5 +113,5 @@ export interface TopologyFilter {
|
|
|
113
113
|
* with `useResources` to render the topology graph — edges reference resources
|
|
114
114
|
* by id, resources supply the node labels/state/type.
|
|
115
115
|
*/
|
|
116
|
-
export declare const useTopology: (filter?: TopologyFilter) => import('@tanstack/react-query').UseQueryResult<AdaTopologyEdge[]
|
|
116
|
+
export declare const useTopology: (filter?: TopologyFilter) => import('@tanstack/react-query').UseQueryResult<NoInfer<AdaTopologyEdge[]>, Error>;
|
|
117
117
|
//# sourceMappingURL=useAdapterCloudApi.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useAdapterCloudApi.d.ts","sourceRoot":"","sources":["../../../src/adaptercloud/hooks/useAdapterCloudApi.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AASH,OAAO,KAAK,EACV,UAAU,EACV,wBAAwB,EACxB,cAAc,EACd,gBAAgB,EAChB,aAAa,EACb,iBAAiB,EACjB,mBAAmB,EACnB,aAAa,EACb,cAAc,EACd,cAAc,EACd,cAAc,EACd,SAAS,EACT,aAAa,EACb,aAAa,EACb,kBAAkB,EAClB,sBAAsB,EACtB,WAAW,EACX,eAAe,EACf,gBAAgB,EAChB,UAAU,EACV,cAAc,EACd,aAAa,EACb,eAAe,EACf,WAAW,EACX,kBAAkB,EAClB,eAAe,EACf,qBAAqB,EACrB,qBAAqB,EACrB,wBAAwB,EACxB,wBAAwB,EACxB,oBAAoB,EACpB,oBAAoB,EACpB,oBAAoB,EACrB,MAAM,UAAU,CAAC;AAMlB,eAAO,MAAM,OAAO;;;iCAGW,MAAM;0BAEb,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;uBAE1B,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;kBAC5B,MAAM;0BACE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;qBAE5B,MAAM;wBACH,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;mBAC5B,MAAM;uBACF,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;iBAC7B,MAAM;yBACE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;oBAC5B,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;uBACpB,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;kBAC5B,MAAM;uBACD,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;CAC3C,CAAC;AAwFF,eAAO,MAAM,YAAY,qEAcxB,CAAC;AAMF,MAAM,WAAW,iBAAiB;IAChC,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,UAAU,CAAC,EAAE,eAAe,CAAC;CAC9B;AAED,eAAO,MAAM,WAAW,GAAI,SAAQ,iBAAsB,
|
|
1
|
+
{"version":3,"file":"useAdapterCloudApi.d.ts","sourceRoot":"","sources":["../../../src/adaptercloud/hooks/useAdapterCloudApi.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
* (workspace cost summary by service). All data is live from the deployed
|
|
9
9
|
* `wspace-adaptercloud-svc` subgraph.
|
|
10
10
|
*/
|
|
11
|
-
export declare function OverviewPage(): import("react
|
|
11
|
+
export declare function OverviewPage(): import("react").JSX.Element;
|
|
12
12
|
//# sourceMappingURL=OverviewPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OverviewPage.d.ts","sourceRoot":"","sources":["../../../src/adaptercloud/pages/OverviewPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AA+CH,wBAAgB,YAAY,
|
|
1
|
+
{"version":3,"file":"OverviewPage.d.ts","sourceRoot":"","sources":["../../../src/adaptercloud/pages/OverviewPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AA+CH,wBAAgB,YAAY,gCA8W3B"}
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Full view of one adapter (`adaAdapter`) — metadata, capabilities, config
|
|
6
6
|
* schema and its connections. Supports archiving via `adaArchiveAdapter`.
|
|
7
7
|
*/
|
|
8
|
-
export declare function AdapterDetailPage(): import("react
|
|
8
|
+
export declare function AdapterDetailPage(): import("react").JSX.Element;
|
|
9
9
|
//# sourceMappingURL=AdapterDetailPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AdapterDetailPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/adapters/AdapterDetailPage.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAgBH,wBAAgB,iBAAiB,
|
|
1
|
+
{"version":3,"file":"AdapterDetailPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/adapters/AdapterDetailPage.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAgBH,wBAAgB,iBAAiB,gCAkShC"}
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* (`adaUpdateAdapter`). The presence of a route `:id` switches to edit mode and
|
|
7
7
|
* pre-fills from `adaAdapter`.
|
|
8
8
|
*/
|
|
9
|
-
export declare function AdapterFormPage(): import("react
|
|
9
|
+
export declare function AdapterFormPage(): import("react").JSX.Element;
|
|
10
10
|
//# sourceMappingURL=AdapterFormPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AdapterFormPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/adapters/AdapterFormPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAgJH,wBAAgB,eAAe,
|
|
1
|
+
{"version":3,"file":"AdapterFormPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/adapters/AdapterFormPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAgJH,wBAAgB,eAAe,gCAiY9B"}
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* Lists from `adaListAdapters` with kind/status filters and offset pagination
|
|
7
7
|
* (driven by `AdaPageInfo.hasMore`).
|
|
8
8
|
*/
|
|
9
|
-
export declare function AdaptersListPage(): import("react
|
|
9
|
+
export declare function AdaptersListPage(): import("react").JSX.Element;
|
|
10
10
|
//# sourceMappingURL=AdaptersListPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AdaptersListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/adapters/AdaptersListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AA6CH,wBAAgB,gBAAgB,
|
|
1
|
+
{"version":3,"file":"AdaptersListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/adapters/AdaptersListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AA6CH,wBAAgB,gBAAgB,gCA2M/B"}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
* (`adaSetConnectionStatus`), disable (`adaDisableConnection`), and starting a
|
|
8
8
|
* sync run (`adaStartSyncRun`) against it.
|
|
9
9
|
*/
|
|
10
|
-
export declare function ConnectionDetailPage(): import("react
|
|
10
|
+
export declare function ConnectionDetailPage(): import("react").JSX.Element;
|
|
11
11
|
//# sourceMappingURL=ConnectionDetailPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectionDetailPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/connections/ConnectionDetailPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AA+BH,wBAAgB,oBAAoB,
|
|
1
|
+
{"version":3,"file":"ConnectionDetailPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/connections/ConnectionDetailPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AA+BH,wBAAgB,oBAAoB,gCAoSnC"}
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* edits an existing one (`adaUpdateConnection`). Edit mode pre-fills from
|
|
7
7
|
* `adaConnection`; the adapter cannot be changed after creation.
|
|
8
8
|
*/
|
|
9
|
-
export declare function ConnectionFormPage(): import("react
|
|
9
|
+
export declare function ConnectionFormPage(): import("react").JSX.Element;
|
|
10
10
|
//# sourceMappingURL=ConnectionFormPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectionFormPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/connections/ConnectionFormPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AA+CH,wBAAgB,kBAAkB,
|
|
1
|
+
{"version":3,"file":"ConnectionFormPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/connections/ConnectionFormPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AA+CH,wBAAgB,kBAAkB,gCAySjC"}
|
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
* fabric's reach reads at a glance (mirrors the aws/azure/gke/snowflake logos in
|
|
9
9
|
* the mock).
|
|
10
10
|
*/
|
|
11
|
-
export declare function ConnectionsListPage(): import("react
|
|
11
|
+
export declare function ConnectionsListPage(): import("react").JSX.Element;
|
|
12
12
|
//# sourceMappingURL=ConnectionsListPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectionsListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/connections/ConnectionsListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAoDH,wBAAgB,mBAAmB,
|
|
1
|
+
{"version":3,"file":"ConnectionsListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/connections/ConnectionsListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAoDH,wBAAgB,mBAAmB,gCAgPlC"}
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Workspace FinOps: the cost summary by service (`adaCostSummary`) plus the raw
|
|
6
6
|
* cost-record ledger (`adaListCostRecords`), optionally filtered by service.
|
|
7
7
|
*/
|
|
8
|
-
export declare function CostsPage(): import("react
|
|
8
|
+
export declare function CostsPage(): import("react").JSX.Element;
|
|
9
9
|
//# sourceMappingURL=CostsPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CostsPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/costs/CostsPage.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAqBH,wBAAgB,SAAS,
|
|
1
|
+
{"version":3,"file":"CostsPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/costs/CostsPage.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAqBH,wBAAgB,SAAS,gCAkSxB"}
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* Filters by status; each detected/acknowledged record can be remediated via
|
|
7
7
|
* `adaRemediateDrift`.
|
|
8
8
|
*/
|
|
9
|
-
export declare function DriftListPage(): import("react
|
|
9
|
+
export declare function DriftListPage(): import("react").JSX.Element;
|
|
10
10
|
//# sourceMappingURL=DriftListPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DriftListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/drift/DriftListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAsCH,wBAAgB,aAAa,
|
|
1
|
+
{"version":3,"file":"DriftListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/drift/DriftListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAsCH,wBAAgB,aAAa,gCAoP5B"}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
* KIND / ENFORCEMENT / SEVERITY badges, an applies-to chip set, and an inline
|
|
8
8
|
* Active toggle wired to `adaUpdatePolicy` (optimistic, toasts on success).
|
|
9
9
|
*/
|
|
10
|
-
export declare function PoliciesListPage(): import("react
|
|
10
|
+
export declare function PoliciesListPage(): import("react").JSX.Element;
|
|
11
11
|
//# sourceMappingURL=PoliciesListPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PoliciesListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/policies/PoliciesListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAsEH,wBAAgB,gBAAgB,
|
|
1
|
+
{"version":3,"file":"PoliciesListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/policies/PoliciesListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAsEH,wBAAgB,gBAAgB,gCAoQ/B"}
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* expression, applies-to selector, and the violations it has produced. Supports
|
|
7
7
|
* archiving via `adaArchivePolicy`.
|
|
8
8
|
*/
|
|
9
|
-
export declare function PolicyDetailPage(): import("react
|
|
9
|
+
export declare function PolicyDetailPage(): import("react").JSX.Element;
|
|
10
10
|
//# sourceMappingURL=PolicyDetailPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PolicyDetailPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/policies/PolicyDetailPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAkBH,wBAAgB,gBAAgB,
|
|
1
|
+
{"version":3,"file":"PolicyDetailPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/policies/PolicyDetailPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAkBH,wBAAgB,gBAAgB,gCAsP/B"}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
* pre-fills from `adaPolicy` (including the JSON expression). The expression is a
|
|
8
8
|
* JSON document validated client-side before submit.
|
|
9
9
|
*/
|
|
10
|
-
export declare function PolicyFormPage(): import("react
|
|
10
|
+
export declare function PolicyFormPage(): import("react").JSX.Element;
|
|
11
11
|
//# sourceMappingURL=PolicyFormPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PolicyFormPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/policies/PolicyFormPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAyBH,wBAAgB,cAAc,
|
|
1
|
+
{"version":3,"file":"PolicyFormPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/policies/PolicyFormPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAyBH,wBAAgB,cAAc,gCA+T7B"}
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* cost, provider tags / attributes, dependency edges, and any drift records that
|
|
7
7
|
* reference it (`adaListDriftRecords`).
|
|
8
8
|
*/
|
|
9
|
-
export declare function ResourceDetailPage(): import("react
|
|
9
|
+
export declare function ResourceDetailPage(): import("react").JSX.Element;
|
|
10
10
|
//# sourceMappingURL=ResourceDetailPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ResourceDetailPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/resources/ResourceDetailPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAmBH,wBAAgB,kBAAkB,
|
|
1
|
+
{"version":3,"file":"ResourceDetailPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/resources/ResourceDetailPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAmBH,wBAAgB,kBAAkB,gCA+SjC"}
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* Supports filtering by lifecycle state, resource type (free text) and, via the
|
|
7
7
|
* `?connectionId=` URL param, by connection. Offset pagination.
|
|
8
8
|
*/
|
|
9
|
-
export declare function ResourcesListPage(): import("react
|
|
9
|
+
export declare function ResourcesListPage(): import("react").JSX.Element;
|
|
10
10
|
//# sourceMappingURL=ResourcesListPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ResourcesListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/resources/ResourcesListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAkBH,wBAAgB,iBAAiB,
|
|
1
|
+
{"version":3,"file":"ResourcesListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/resources/ResourcesListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAkBH,wBAAgB,iBAAiB,gCAmPhC"}
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
* card per run (via fe-libs `ResponsiveTable`). Filters by status; queued/running
|
|
10
10
|
* runs can be cancelled via `adaCancelSyncRun`.
|
|
11
11
|
*/
|
|
12
|
-
export declare function SyncRunsListPage(): import("react
|
|
12
|
+
export declare function SyncRunsListPage(): import("react").JSX.Element;
|
|
13
13
|
//# sourceMappingURL=SyncRunsListPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SyncRunsListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/sync-runs/SyncRunsListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAuFH,wBAAgB,gBAAgB,
|
|
1
|
+
{"version":3,"file":"SyncRunsListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/sync-runs/SyncRunsListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAuFH,wBAAgB,gBAAgB,gCAiS/B"}
|
|
@@ -10,5 +10,5 @@
|
|
|
10
10
|
* deployed `wspace-adaptercloud-svc` subgraph — nodes from `adaListResources`,
|
|
11
11
|
* edges from `adaListTopologyEdges`. No mocks.
|
|
12
12
|
*/
|
|
13
|
-
export declare function TopologyPage(): import("react
|
|
13
|
+
export declare function TopologyPage(): import("react").JSX.Element;
|
|
14
14
|
//# sourceMappingURL=TopologyPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TopologyPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/topology/TopologyPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAwEH,wBAAgB,YAAY,
|
|
1
|
+
{"version":3,"file":"TopologyPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/topology/TopologyPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAwEH,wBAAgB,YAAY,gCA2a3B"}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
* transitioned via `adaResolveViolation` — acknowledge, resolve, or waive (a
|
|
8
8
|
* waiver requires a reason, enforced both client-side and at the service).
|
|
9
9
|
*/
|
|
10
|
-
export declare function ViolationsListPage(): import("react
|
|
10
|
+
export declare function ViolationsListPage(): import("react").JSX.Element;
|
|
11
11
|
//# sourceMappingURL=ViolationsListPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ViolationsListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/violations/ViolationsListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAuCH,wBAAgB,kBAAkB,
|
|
1
|
+
{"version":3,"file":"ViolationsListPage.d.ts","sourceRoot":"","sources":["../../../../src/adaptercloud/pages/violations/ViolationsListPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAuCH,wBAAgB,kBAAkB,gCA2XjC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import e from "../../node_modules
|
|
2
|
-
import { twMerge as t } from "../../node_modules
|
|
1
|
+
import e from "../../node_modules/clsx/dist/clsx.js";
|
|
2
|
+
import { twMerge as t } from "../../node_modules/tailwind-merge/dist/bundle-mjs.js";
|
|
3
3
|
//#region src/adaptercloud/utils/cn.ts
|
|
4
4
|
function n(...n) {
|
|
5
5
|
return t(e(n));
|
|
@@ -92,7 +92,7 @@ export type CreateSandboxMutationFn = Apollo.MutationFunction<Types.CreateSandbo
|
|
|
92
92
|
* },
|
|
93
93
|
* });
|
|
94
94
|
*/
|
|
95
|
-
export declare function useCreateSandboxMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateSandboxMutation, Types.CreateSandboxMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateSandboxMutation, any, Apollo.ApolloCache>;
|
|
95
|
+
export declare function useCreateSandboxMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateSandboxMutation, Types.CreateSandboxMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateSandboxMutation, any, Apollo.ApolloCache, undefined>;
|
|
96
96
|
export type CreateSandboxMutationHookResult = ReturnType<typeof useCreateSandboxMutation>;
|
|
97
97
|
export type CreateSandboxMutationResult = Apollo.MutationResult<Types.CreateSandboxMutation>;
|
|
98
98
|
export type CreateSandboxMutationOptions = Apollo.BaseMutationOptions<Types.CreateSandboxMutation, Types.CreateSandboxMutationVariables>;
|
|
@@ -115,7 +115,7 @@ export type ProxySandboxRequestMutationFn = Apollo.MutationFunction<Types.ProxyS
|
|
|
115
115
|
* },
|
|
116
116
|
* });
|
|
117
117
|
*/
|
|
118
|
-
export declare function useProxySandboxRequestMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ProxySandboxRequestMutation, Types.ProxySandboxRequestMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.ProxySandboxRequestMutation, any, Apollo.ApolloCache>;
|
|
118
|
+
export declare function useProxySandboxRequestMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ProxySandboxRequestMutation, Types.ProxySandboxRequestMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.ProxySandboxRequestMutation, any, Apollo.ApolloCache, undefined>;
|
|
119
119
|
export type ProxySandboxRequestMutationHookResult = ReturnType<typeof useProxySandboxRequestMutation>;
|
|
120
120
|
export type ProxySandboxRequestMutationResult = Apollo.MutationResult<Types.ProxySandboxRequestMutation>;
|
|
121
121
|
export type ProxySandboxRequestMutationOptions = Apollo.BaseMutationOptions<Types.ProxySandboxRequestMutation, Types.ProxySandboxRequestMutationVariables>;
|
|
@@ -140,7 +140,7 @@ export type ExtendSandboxTtlMutationFn = Apollo.MutationFunction<Types.ExtendSan
|
|
|
140
140
|
* },
|
|
141
141
|
* });
|
|
142
142
|
*/
|
|
143
|
-
export declare function useExtendSandboxTtlMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ExtendSandboxTtlMutation, Types.ExtendSandboxTtlMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.ExtendSandboxTtlMutation, any, Apollo.ApolloCache>;
|
|
143
|
+
export declare function useExtendSandboxTtlMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ExtendSandboxTtlMutation, Types.ExtendSandboxTtlMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.ExtendSandboxTtlMutation, any, Apollo.ApolloCache, undefined>;
|
|
144
144
|
export type ExtendSandboxTtlMutationHookResult = ReturnType<typeof useExtendSandboxTtlMutation>;
|
|
145
145
|
export type ExtendSandboxTtlMutationResult = Apollo.MutationResult<Types.ExtendSandboxTtlMutation>;
|
|
146
146
|
export type ExtendSandboxTtlMutationOptions = Apollo.BaseMutationOptions<Types.ExtendSandboxTtlMutation, Types.ExtendSandboxTtlMutationVariables>;
|
|
@@ -167,8 +167,8 @@ export declare function useGetSandboxQuery(baseOptions: ApolloReactHooks.QueryHo
|
|
|
167
167
|
skip?: boolean;
|
|
168
168
|
} | {
|
|
169
169
|
skip: boolean;
|
|
170
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetSandboxQuery, Types.GetSandboxQueryVariables, "
|
|
171
|
-
export declare function useGetSandboxLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetSandboxQuery, Types.GetSandboxQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetSandboxQuery, Types.GetSandboxQueryVariables, "
|
|
170
|
+
})): ApolloReactHooks.useQuery.Result<Types.GetSandboxQuery, Types.GetSandboxQueryVariables, "empty" | "complete" | "streaming", Types.GetSandboxQueryVariables>;
|
|
171
|
+
export declare function useGetSandboxLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetSandboxQuery, Types.GetSandboxQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetSandboxQuery, Types.GetSandboxQueryVariables, "empty" | "complete" | "streaming">;
|
|
172
172
|
export declare function useGetSandboxSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSandboxQuery, Types.GetSandboxQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSandboxQuery, Types.GetSandboxQueryVariables>;
|
|
173
173
|
export declare function useGetSandboxSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSandboxQuery, Types.GetSandboxQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSandboxQuery | undefined, Types.GetSandboxQueryVariables>;
|
|
174
174
|
export type GetSandboxQueryHookResult = ReturnType<typeof useGetSandboxQuery>;
|
|
@@ -197,8 +197,8 @@ export declare function useGetActiveSandboxesQuery(baseOptions: ApolloReactHooks
|
|
|
197
197
|
skip?: boolean;
|
|
198
198
|
} | {
|
|
199
199
|
skip: boolean;
|
|
200
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetActiveSandboxesQuery, Types.GetActiveSandboxesQueryVariables, "
|
|
201
|
-
export declare function useGetActiveSandboxesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetActiveSandboxesQuery, Types.GetActiveSandboxesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetActiveSandboxesQuery, Types.GetActiveSandboxesQueryVariables, "
|
|
200
|
+
})): ApolloReactHooks.useQuery.Result<Types.GetActiveSandboxesQuery, Types.GetActiveSandboxesQueryVariables, "empty" | "complete" | "streaming", Types.GetActiveSandboxesQueryVariables>;
|
|
201
|
+
export declare function useGetActiveSandboxesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetActiveSandboxesQuery, Types.GetActiveSandboxesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetActiveSandboxesQuery, Types.GetActiveSandboxesQueryVariables, "empty" | "complete" | "streaming">;
|
|
202
202
|
export declare function useGetActiveSandboxesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetActiveSandboxesQuery, Types.GetActiveSandboxesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetActiveSandboxesQuery, Types.GetActiveSandboxesQueryVariables>;
|
|
203
203
|
export declare function useGetActiveSandboxesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetActiveSandboxesQuery, Types.GetActiveSandboxesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetActiveSandboxesQuery | undefined, Types.GetActiveSandboxesQueryVariables>;
|
|
204
204
|
export type GetActiveSandboxesQueryHookResult = ReturnType<typeof useGetActiveSandboxesQuery>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wspace-operations.d.ts","sourceRoot":"","sources":["../../src/generated/wspace-operations.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"wspace-operations.d.ts","sourceRoot":"","sources":["../../src/generated/wspace-operations.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AAGxC,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,gBAAgB,MAAM,sBAAsB,CAAC;AAEzD,MAAM,MAAM,8BAA8B,GAAG,KAAK,CAAC,KAAK,CAAC;IACvD,KAAK,EAAE,KAAK,CAAC,kBAAkB,CAAC;CACjC,CAAC,CAAC;AAGH,MAAM,MAAM,qBAAqB,GAAG;IAAE,UAAU,CAAC,EAAE,UAAU,CAAC;IAAC,aAAa,EAAE;QAAE,UAAU,CAAC,EAAE,SAAS,CAAC;QAAC,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC;QAAC,OAAO,EAAE;YAAE,UAAU,CAAC,EAAE,gBAAgB,CAAC;YAAC,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;SAAE,CAAA;KAAE,CAAA;CAAE,CAAC;AAE3O,MAAM,MAAM,oCAAoC,GAAG,KAAK,CAAC,KAAK,CAAC;IAC7D,KAAK,EAAE,KAAK,CAAC,wBAAwB,CAAC;CACvC,CAAC,CAAC;AAGH,MAAM,MAAM,2BAA2B,GAAG;IAAE,UAAU,CAAC,EAAE,UAAU,CAAC;IAAC,mBAAmB,EAAE;QAAE,UAAU,CAAC,EAAE,sBAAsB,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAAA;KAAE,CAAA;CAAE,CAAC;AAE3L,MAAM,MAAM,iCAAiC,GAAG,KAAK,CAAC,KAAK,CAAC;IAC1D,EAAE,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC;IACjC,iBAAiB,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC;IACjD,OAAO,EAAE,KAAK,CAAC,YAAY,CAAC;CAC7B,CAAC,CAAC;AAGH,MAAM,MAAM,wBAAwB,GAAG;IAAE,UAAU,CAAC,EAAE,UAAU,CAAC;IAAC,gBAAgB,EAAE;QAAE,UAAU,CAAC,EAAE,SAAS,CAAC;QAAC,EAAE,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE,CAAA;CAAE,CAAC;AAEhJ,MAAM,MAAM,wBAAwB,GAAG,KAAK,CAAC,KAAK,CAAC;IACjD,EAAE,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC;IACjC,OAAO,EAAE,KAAK,CAAC,YAAY,CAAC;CAC7B,CAAC,CAAC;AAGH,MAAM,MAAM,eAAe,GAAG;IAAE,UAAU,CAAC,EAAE,OAAO,CAAC;IAAC,UAAU,CAAC,EAAE;QAAE,UAAU,CAAC,EAAE,SAAS,CAAC;QAAC,EAAE,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,OAAO,EAAE;YAAE,UAAU,CAAC,EAAE,gBAAgB,CAAC;YAAC,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;SAAE,CAAA;KAAE,GAAG,IAAI,CAAA;CAAE,CAAC;AAEvP,MAAM,MAAM,gCAAgC,GAAG,KAAK,CAAC,KAAK,CAAC;IACzD,OAAO,EAAE,KAAK,CAAC,YAAY,CAAC;CAC7B,CAAC,CAAC;AAGH,MAAM,MAAM,uBAAuB,GAAG;IAAE,UAAU,CAAC,EAAE,OAAO,CAAC;IAAC,kBAAkB,EAAE,KAAK,CAAC;QAAE,UAAU,CAAC,EAAE,SAAS,CAAC;QAAC,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAAC;QAAC,QAAQ,EAAE,KAAK,CAAC,eAAe,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,CAAC;AAG5Q,eAAO,MAAM,qBAAqB,qBAW7B,CAAC;AACN,MAAM,MAAM,uBAAuB,GAAG,MAAM,CAAC,gBAAgB,CAAC,KAAK,CAAC,qBAAqB,EAAE,KAAK,CAAC,8BAA8B,CAAC,CAAC;AAEjI;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAgB,wBAAwB,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC,mBAAmB,CAAC,KAAK,CAAC,qBAAqB,EAAE,KAAK,CAAC,8BAA8B,CAAC,6GAGvJ;AACP,MAAM,MAAM,+BAA+B,GAAG,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1F,MAAM,MAAM,2BAA2B,GAAG,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC;AAC7F,MAAM,MAAM,4BAA4B,GAAG,MAAM,CAAC,mBAAmB,CAAC,KAAK,CAAC,qBAAqB,EAAE,KAAK,CAAC,8BAA8B,CAAC,CAAC;AACzI,eAAO,MAAM,2BAA2B,qBAOnC,CAAC;AACN,MAAM,MAAM,6BAA6B,GAAG,MAAM,CAAC,gBAAgB,CAAC,KAAK,CAAC,2BAA2B,EAAE,KAAK,CAAC,oCAAoC,CAAC,CAAC;AAEnJ;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAgB,8BAA8B,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC,mBAAmB,CAAC,KAAK,CAAC,2BAA2B,EAAE,KAAK,CAAC,oCAAoC,CAAC,mHAGzK;AACP,MAAM,MAAM,qCAAqC,GAAG,UAAU,CAAC,OAAO,8BAA8B,CAAC,CAAC;AACtG,MAAM,MAAM,iCAAiC,GAAG,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC;AACzG,MAAM,MAAM,kCAAkC,GAAG,MAAM,CAAC,mBAAmB,CAAC,KAAK,CAAC,2BAA2B,EAAE,KAAK,CAAC,oCAAoC,CAAC,CAAC;AAC3J,eAAO,MAAM,wBAAwB,qBAWhC,CAAC;AACN,MAAM,MAAM,0BAA0B,GAAG,MAAM,CAAC,gBAAgB,CAAC,KAAK,CAAC,wBAAwB,EAAE,KAAK,CAAC,iCAAiC,CAAC,CAAC;AAE1I;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,2BAA2B,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC,mBAAmB,CAAC,KAAK,CAAC,wBAAwB,EAAE,KAAK,CAAC,iCAAiC,CAAC,gHAGhK;AACP,MAAM,MAAM,kCAAkC,GAAG,UAAU,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChG,MAAM,MAAM,8BAA8B,GAAG,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC;AACnG,MAAM,MAAM,+BAA+B,GAAG,MAAM,CAAC,mBAAmB,CAAC,KAAK,CAAC,wBAAwB,EAAE,KAAK,CAAC,iCAAiC,CAAC,CAAC;AAClJ,eAAO,MAAM,kBAAkB,qBAW1B,CAAC;AAEN;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAgB,kBAAkB,CAAC,WAAW,EAAE,gBAAgB,CAAC,gBAAgB,CAAC,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,CAAC;IAAE,SAAS,EAAE,KAAK,CAAC,wBAAwB,CAAC;IAAC,IAAI,CAAC,EAAE,OAAO,CAAC;CAAE,GAAG;IAAE,IAAI,EAAE,OAAO,CAAC;CAAE,CAAC,+JAGzN;AACP,wBAAgB,sBAAsB,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC,oBAAoB,CAAC,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,wBAAwB,CAAC,wIAGxI;AAET,wBAAgB,0BAA0B,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC,wBAAwB,CAAC,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,gBAAgB,CAAC,sBAAsB,CAAC,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,wBAAwB,CAAC,CAAC;AAC3P,wBAAgB,0BAA0B,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC,SAAS,GAAG,gBAAgB,CAAC,wBAAwB,CAAC,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,gBAAgB,CAAC,sBAAsB,CAAC,KAAK,CAAC,eAAe,GAAG,SAAS,EAAE,KAAK,CAAC,wBAAwB,CAAC,CAAC;AAKpS,MAAM,MAAM,yBAAyB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC9E,MAAM,MAAM,6BAA6B,GAAG,UAAU,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtF,MAAM,MAAM,iCAAiC,GAAG,UAAU,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC9F,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,wBAAwB,CAAC,CAAC;AAC9G,eAAO,MAAM,0BAA0B,qBAWlC,CAAC;AAEN;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,0BAA0B,CAAC,WAAW,EAAE,gBAAgB,CAAC,gBAAgB,CAAC,KAAK,CAAC,uBAAuB,EAAE,KAAK,CAAC,gCAAgC,CAAC,GAAG,CAAC;IAAE,SAAS,EAAE,KAAK,CAAC,gCAAgC,CAAC;IAAC,IAAI,CAAC,EAAE,OAAO,CAAC;CAAE,GAAG;IAAE,IAAI,EAAE,OAAO,CAAC;CAAE,CAAC,uLAGzP;AACP,wBAAgB,8BAA8B,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC,oBAAoB,CAAC,KAAK,CAAC,uBAAuB,EAAE,KAAK,CAAC,gCAAgC,CAAC,wJAGhK;AAET,wBAAgB,kCAAkC,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC,wBAAwB,CAAC,KAAK,CAAC,uBAAuB,EAAE,KAAK,CAAC,gCAAgC,CAAC,GAAG,gBAAgB,CAAC,sBAAsB,CAAC,KAAK,CAAC,uBAAuB,EAAE,KAAK,CAAC,gCAAgC,CAAC,CAAC;AACnS,wBAAgB,kCAAkC,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC,SAAS,GAAG,gBAAgB,CAAC,wBAAwB,CAAC,KAAK,CAAC,uBAAuB,EAAE,KAAK,CAAC,gCAAgC,CAAC,GAAG,gBAAgB,CAAC,sBAAsB,CAAC,KAAK,CAAC,uBAAuB,GAAG,SAAS,EAAE,KAAK,CAAC,gCAAgC,CAAC,CAAC;AAK5U,MAAM,MAAM,iCAAiC,GAAG,UAAU,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC9F,MAAM,MAAM,qCAAqC,GAAG,UAAU,CAAC,OAAO,8BAA8B,CAAC,CAAC;AACtG,MAAM,MAAM,yCAAyC,GAAG,UAAU,CAAC,OAAO,kCAAkC,CAAC,CAAC;AAC9G,MAAM,MAAM,6BAA6B,GAAG,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,uBAAuB,EAAE,KAAK,CAAC,gCAAgC,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clsx.js","names":[],"sources":["../../../../node_modules/clsx/dist/clsx.mjs"],"sourcesContent":["function r(e){var t,f,n=\"\";if(\"string\"==typeof e||\"number\"==typeof e)n+=e;else if(\"object\"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=\" \"),n+=f)}else for(f in e)e[f]&&(n&&(n+=\" \"),n+=f);return n}export function clsx(){for(var e,t,f=0,n=\"\",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=\" \"),n+=t);return n}export default clsx;"],"x_google_ignoreList":[0],"mappings":";AAAA,SAAS,EAAE,GAAE;CAAC,IAAI,GAAE,GAAE,IAAE;AAAG,KAAa,OAAO,KAAjB,YAA8B,OAAO,KAAjB,SAAmB,MAAG;UAAoB,OAAO,KAAjB,SAAmB,KAAG,MAAM,QAAQ,EAAE,EAAC;EAAC,IAAI,IAAE,EAAE;AAAO,OAAI,IAAE,GAAE,IAAE,GAAE,IAAI,GAAE,OAAK,IAAE,EAAE,EAAE,GAAG,MAAI,MAAI,KAAG,MAAK,KAAG;OAAQ,MAAI,KAAK,EAAE,GAAE,OAAK,MAAI,KAAG,MAAK,KAAG;AAAG,QAAO;;AAAE,SAAgB,IAAM;AAAC,MAAI,IAAI,GAAE,GAAE,IAAE,GAAE,IAAE,IAAG,IAAE,UAAU,QAAO,IAAE,GAAE,IAAI,EAAC,IAAE,UAAU,QAAM,IAAE,EAAE,EAAE,MAAI,MAAI,KAAG,MAAK,KAAG;AAAG,QAAO"}
|