@talonic/docs 0.20.18 → 0.20.19
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/content.js +1529 -9
- package/dist/index.js +180 -0
- package/dist/index.js.map +1 -1
- package/dist/seo.js +23 -0
- package/package.json +1 -1
- package/dist/tailwind-preset.d.cts +0 -45
- package/dist/tailwind-preset.d.ts +0 -45
package/dist/seo.js
CHANGED
|
@@ -16989,6 +16989,29 @@ var API_NAV_SECTIONS = [
|
|
|
16989
16989
|
{ id: "registry", label: "Registry", children: [
|
|
16990
16990
|
{ id: "registry-query", label: "Query" }
|
|
16991
16991
|
] },
|
|
16992
|
+
{ id: "data-products", label: "Data Products", children: [
|
|
16993
|
+
{ id: "list-data-products", label: "List Data Products" },
|
|
16994
|
+
{ id: "get-data-product", label: "Get Data Product" },
|
|
16995
|
+
{ id: "delete-data-product", label: "Delete Data Product" },
|
|
16996
|
+
{ id: "get-data-product-results", label: "Get Results" }
|
|
16997
|
+
] },
|
|
16998
|
+
{ id: "data-policies", label: "Data Policies", children: [
|
|
16999
|
+
{ id: "list-data-policies", label: "List Policies" },
|
|
17000
|
+
{ id: "create-data-policy", label: "Create Policy" },
|
|
17001
|
+
{ id: "get-data-policy", label: "Get Policy" },
|
|
17002
|
+
{ id: "update-data-policy", label: "Update Policy" },
|
|
17003
|
+
{ id: "delete-data-policy", label: "Delete Policy" },
|
|
17004
|
+
{ id: "list-data-policy-versions", label: "List Versions" },
|
|
17005
|
+
{ id: "list-data-policy-fields", label: "List Fields" },
|
|
17006
|
+
{ id: "list-data-policy-rules", label: "List Rules" }
|
|
17007
|
+
] },
|
|
17008
|
+
{ id: "record-sets", label: "Record Sets", children: [
|
|
17009
|
+
{ id: "list-record-sets", label: "List Record Sets" },
|
|
17010
|
+
{ id: "get-record-set", label: "Get Record Set" },
|
|
17011
|
+
{ id: "list-record-set-fields", label: "List Fields" },
|
|
17012
|
+
{ id: "list-record-set-records", label: "List Records" },
|
|
17013
|
+
{ id: "export-record-set", label: "Export" }
|
|
17014
|
+
] },
|
|
16992
17015
|
{ id: "billing", label: "Billing", children: [
|
|
16993
17016
|
{ id: "billing-settings", label: "Settings" },
|
|
16994
17017
|
{ id: "billing-topup", label: "Auto Top-Up" },
|
package/package.json
CHANGED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Tailwind CSS preset for @talonic/docs consumers.
|
|
3
|
-
* Adds the Void design system color tokens and font families
|
|
4
|
-
* so doc components render correctly in any host app.
|
|
5
|
-
*/
|
|
6
|
-
declare const voidDocsPreset: {
|
|
7
|
-
darkMode: "class";
|
|
8
|
-
theme: {
|
|
9
|
-
extend: {
|
|
10
|
-
colors: {
|
|
11
|
-
'void-bg': string;
|
|
12
|
-
'void-bg-elevated': string;
|
|
13
|
-
'void-surface': string;
|
|
14
|
-
'void-surface-2': string;
|
|
15
|
-
'void-surface-3': string;
|
|
16
|
-
'void-border': string;
|
|
17
|
-
'void-border-hover': string;
|
|
18
|
-
'void-text-primary': string;
|
|
19
|
-
'void-text-secondary': string;
|
|
20
|
-
'void-text-muted': string;
|
|
21
|
-
'void-text-tertiary': string;
|
|
22
|
-
'void-accent': string;
|
|
23
|
-
'void-accent-hover': string;
|
|
24
|
-
'void-accent-dim': string;
|
|
25
|
-
'void-accent-tint': string;
|
|
26
|
-
'void-danger': string;
|
|
27
|
-
'void-danger-solid': string;
|
|
28
|
-
'void-divider': string;
|
|
29
|
-
'void-warning': string;
|
|
30
|
-
'void-warning-dim': string;
|
|
31
|
-
'void-tier-1': string;
|
|
32
|
-
'void-tier-2': string;
|
|
33
|
-
'void-tier-3': string;
|
|
34
|
-
};
|
|
35
|
-
fontFamily: {
|
|
36
|
-
space: string[];
|
|
37
|
-
body: string[];
|
|
38
|
-
mono: string[];
|
|
39
|
-
};
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
plugins: never[];
|
|
43
|
-
};
|
|
44
|
-
|
|
45
|
-
export { voidDocsPreset as default };
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Tailwind CSS preset for @talonic/docs consumers.
|
|
3
|
-
* Adds the Void design system color tokens and font families
|
|
4
|
-
* so doc components render correctly in any host app.
|
|
5
|
-
*/
|
|
6
|
-
declare const voidDocsPreset: {
|
|
7
|
-
darkMode: "class";
|
|
8
|
-
theme: {
|
|
9
|
-
extend: {
|
|
10
|
-
colors: {
|
|
11
|
-
'void-bg': string;
|
|
12
|
-
'void-bg-elevated': string;
|
|
13
|
-
'void-surface': string;
|
|
14
|
-
'void-surface-2': string;
|
|
15
|
-
'void-surface-3': string;
|
|
16
|
-
'void-border': string;
|
|
17
|
-
'void-border-hover': string;
|
|
18
|
-
'void-text-primary': string;
|
|
19
|
-
'void-text-secondary': string;
|
|
20
|
-
'void-text-muted': string;
|
|
21
|
-
'void-text-tertiary': string;
|
|
22
|
-
'void-accent': string;
|
|
23
|
-
'void-accent-hover': string;
|
|
24
|
-
'void-accent-dim': string;
|
|
25
|
-
'void-accent-tint': string;
|
|
26
|
-
'void-danger': string;
|
|
27
|
-
'void-danger-solid': string;
|
|
28
|
-
'void-divider': string;
|
|
29
|
-
'void-warning': string;
|
|
30
|
-
'void-warning-dim': string;
|
|
31
|
-
'void-tier-1': string;
|
|
32
|
-
'void-tier-2': string;
|
|
33
|
-
'void-tier-3': string;
|
|
34
|
-
};
|
|
35
|
-
fontFamily: {
|
|
36
|
-
space: string[];
|
|
37
|
-
body: string[];
|
|
38
|
-
mono: string[];
|
|
39
|
-
};
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
plugins: never[];
|
|
43
|
-
};
|
|
44
|
-
|
|
45
|
-
export { voidDocsPreset as default };
|