directus-template-cli 0.3.4 → 0.3.5
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/oclif.manifest.json +1 -1
- package/package.json +1 -1
- package/templates/agencyos/package.json +2 -2
- package/templates/agencyos/src/collections.json +346 -232
- package/templates/agencyos/src/content/block_button.json +6 -6
- package/templates/agencyos/src/content/block_button_group.json +11 -11
- package/templates/agencyos/src/content/block_columns_rows.json +6 -6
- package/templates/agencyos/src/content/block_cta.json +3 -3
- package/templates/agencyos/src/content/block_gallery_files.json +10 -10
- package/templates/agencyos/src/content/block_richtext.json +1 -1
- package/templates/agencyos/src/content/block_step_items.json +5 -5
- package/templates/agencyos/src/content/block_team.json +4 -4
- package/templates/agencyos/src/content/help_collections.json +2 -2
- package/templates/agencyos/src/content/inbox.json +15 -1
- package/templates/agencyos/src/content/navigation_items.json +76 -76
- package/templates/agencyos/src/content/organizations.json +2 -2
- package/templates/agencyos/src/content/os_activities.json +3 -3
- package/templates/agencyos/src/content/os_invoice_items.json +6 -6
- package/templates/agencyos/src/content/os_invoices.json +5 -5
- package/templates/agencyos/src/content/os_payment_terms.json +2 -2
- package/templates/agencyos/src/content/os_payments.json +1 -1
- package/templates/agencyos/src/content/os_projects.json +3 -3
- package/templates/agencyos/src/content/os_proposal_blocks.json +4 -4
- package/templates/agencyos/src/content/os_proposals.json +3 -3
- package/templates/agencyos/src/content/os_tasks.json +65 -87
- package/templates/agencyos/src/content/os_tax_rates.json +2 -2
- package/templates/agencyos/src/content/page_blocks.json +23 -23
- package/templates/agencyos/src/content/pages.json +7 -7
- package/templates/agencyos/src/content/posts.json +9 -9
- package/templates/agencyos/src/content/seo.json +10 -10
- package/templates/agencyos/src/content/testimonials.json +4 -4
- package/templates/agencyos/src/dashboards.json +3 -3
- package/templates/agencyos/src/files.json +49 -49
- package/templates/agencyos/src/flows.json +39 -39
- package/templates/agencyos/src/operations.json +74 -74
- package/templates/agencyos/src/panels.json +136 -132
- package/templates/agencyos/src/permissions.json +349 -871
- package/templates/agencyos/src/roles.json +4 -4
- package/templates/agencyos/src/schema/snapshot.json +246 -97
- package/templates/agencyos/src/settings.json +32 -10
- package/templates/agencyos/src/users.json +32 -12
|
@@ -1,16 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
-
"project_logo": "690c2042-e3ad-46f4-9cd8-095a7b3a1df7",
|
|
3
|
-
"public_foreground": null,
|
|
4
2
|
"public_background": null,
|
|
3
|
+
"public_foreground": null,
|
|
4
|
+
"project_logo": "690c2042-e3ad-46f4-9cd8-095a7b3a1df7",
|
|
5
|
+
"public_favicon": null,
|
|
5
6
|
"storage_default_folder": null,
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"project_descriptor": null,
|
|
7
|
+
"default_theme_dark": null,
|
|
8
|
+
"default_theme_light": null,
|
|
9
|
+
"default_appearance": "auto",
|
|
10
10
|
"default_language": "en-US",
|
|
11
|
-
"
|
|
12
|
-
"
|
|
11
|
+
"project_descriptor": null,
|
|
12
|
+
"mapbox_key": null,
|
|
13
|
+
"storage_asset_transform": "all",
|
|
14
|
+
"auth_password_policy": "/^.{8,}$/",
|
|
13
15
|
"project_color": "#18222F",
|
|
16
|
+
"project_url": "https://agencyos.dev",
|
|
17
|
+
"project_name": "Agency OS",
|
|
18
|
+
"theme_dark_overrides": {
|
|
19
|
+
"primary": "#ff99dd"
|
|
20
|
+
},
|
|
21
|
+
"theme_light_overrides": {
|
|
22
|
+
"fontFamilyDisplay": "\"Poppins\", system-ui",
|
|
23
|
+
"navigation": {
|
|
24
|
+
"list": {
|
|
25
|
+
"backgroundActive": "#FFD6F1"
|
|
26
|
+
},
|
|
27
|
+
"background": "#FAFBFC",
|
|
28
|
+
"modules": {
|
|
29
|
+
"button": {
|
|
30
|
+
"backgroundActive": "#FAFBFC",
|
|
31
|
+
"foregroundActive": "#ff99dd"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
14
36
|
"custom_aspect_ratios": null,
|
|
15
37
|
"module_bar": [
|
|
16
38
|
{
|
|
@@ -72,6 +94,6 @@
|
|
|
72
94
|
],
|
|
73
95
|
"custom_css": "",
|
|
74
96
|
"public_note": null,
|
|
75
|
-
"
|
|
76
|
-
"
|
|
97
|
+
"id": 1,
|
|
98
|
+
"auth_login_attempts": 25
|
|
77
99
|
}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
{
|
|
3
3
|
"id": "1a3e5ba4-c118-4607-9918-77d36b74a9a3",
|
|
4
4
|
"avatar": "e15ca910-1567-4f15-b5a0-b802da67f228",
|
|
5
|
-
"role": "
|
|
6
|
-
"last_access": "
|
|
5
|
+
"role": "2d490b3f-7528-4b85-a05f-44aac2f2e05d",
|
|
6
|
+
"last_access": "2024-01-08T00:27:13.791Z",
|
|
7
7
|
"first_name": "Bryant",
|
|
8
8
|
"last_name": "Gillespie",
|
|
9
9
|
"email": "bryant@example.com",
|
|
@@ -11,13 +11,17 @@
|
|
|
11
11
|
"location": null,
|
|
12
12
|
"title": "Carrot Master",
|
|
13
13
|
"language": null,
|
|
14
|
-
"theme": "auto",
|
|
15
14
|
"tfa_secret": null,
|
|
16
15
|
"status": "active",
|
|
17
|
-
"token":
|
|
18
|
-
"last_page": "/
|
|
16
|
+
"token": "**********",
|
|
17
|
+
"last_page": "/users",
|
|
19
18
|
"provider": "default",
|
|
20
19
|
"external_identifier": null,
|
|
20
|
+
"appearance": null,
|
|
21
|
+
"theme_dark": null,
|
|
22
|
+
"theme_light": null,
|
|
23
|
+
"theme_dark_overrides": null,
|
|
24
|
+
"theme_light_overrides": null,
|
|
21
25
|
"auth_data": null,
|
|
22
26
|
"tags": null,
|
|
23
27
|
"description": null,
|
|
@@ -36,13 +40,17 @@
|
|
|
36
40
|
"location": null,
|
|
37
41
|
"title": null,
|
|
38
42
|
"language": null,
|
|
39
|
-
"theme": "auto",
|
|
40
43
|
"tfa_secret": null,
|
|
41
44
|
"status": "active",
|
|
42
45
|
"token": null,
|
|
43
46
|
"last_page": null,
|
|
44
47
|
"provider": "default",
|
|
45
48
|
"external_identifier": null,
|
|
49
|
+
"appearance": null,
|
|
50
|
+
"theme_dark": null,
|
|
51
|
+
"theme_light": null,
|
|
52
|
+
"theme_dark_overrides": null,
|
|
53
|
+
"theme_light_overrides": null,
|
|
46
54
|
"auth_data": null,
|
|
47
55
|
"tags": null,
|
|
48
56
|
"description": "Used for server to server comms. No email and password needed. Be careful when resetting the static token below because it could break some things.",
|
|
@@ -53,7 +61,7 @@
|
|
|
53
61
|
"id": "46cbbc2d-f3e1-468a-9925-c6df6493c496",
|
|
54
62
|
"avatar": null,
|
|
55
63
|
"role": "edc2e863-e2c4-4ee3-bcbd-d090df2911e1",
|
|
56
|
-
"last_access": "
|
|
64
|
+
"last_access": "2024-01-08T00:20:46.414Z",
|
|
57
65
|
"first_name": "Ashley",
|
|
58
66
|
"last_name": "Simmons",
|
|
59
67
|
"email": "ashley@example.com",
|
|
@@ -61,13 +69,17 @@
|
|
|
61
69
|
"location": null,
|
|
62
70
|
"title": null,
|
|
63
71
|
"language": null,
|
|
64
|
-
"theme": "auto",
|
|
65
72
|
"tfa_secret": null,
|
|
66
73
|
"status": "active",
|
|
67
74
|
"token": null,
|
|
68
75
|
"last_page": null,
|
|
69
76
|
"provider": "default",
|
|
70
77
|
"external_identifier": null,
|
|
78
|
+
"appearance": null,
|
|
79
|
+
"theme_dark": null,
|
|
80
|
+
"theme_light": null,
|
|
81
|
+
"theme_dark_overrides": null,
|
|
82
|
+
"theme_light_overrides": null,
|
|
71
83
|
"auth_data": null,
|
|
72
84
|
"tags": null,
|
|
73
85
|
"description": null,
|
|
@@ -86,13 +98,17 @@
|
|
|
86
98
|
"location": null,
|
|
87
99
|
"title": "CEO",
|
|
88
100
|
"language": null,
|
|
89
|
-
"theme": "auto",
|
|
90
101
|
"tfa_secret": null,
|
|
91
102
|
"status": "active",
|
|
92
103
|
"token": null,
|
|
93
104
|
"last_page": null,
|
|
94
105
|
"provider": "default",
|
|
95
106
|
"external_identifier": null,
|
|
107
|
+
"appearance": null,
|
|
108
|
+
"theme_dark": null,
|
|
109
|
+
"theme_light": null,
|
|
110
|
+
"theme_dark_overrides": null,
|
|
111
|
+
"theme_light_overrides": null,
|
|
96
112
|
"auth_data": null,
|
|
97
113
|
"tags": null,
|
|
98
114
|
"description": null,
|
|
@@ -103,7 +119,7 @@
|
|
|
103
119
|
"id": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
|
|
104
120
|
"avatar": null,
|
|
105
121
|
"role": "2d490b3f-7528-4b85-a05f-44aac2f2e05d",
|
|
106
|
-
"last_access": "2023-
|
|
122
|
+
"last_access": "2023-11-04T16:32:05.514Z",
|
|
107
123
|
"first_name": "Admin",
|
|
108
124
|
"last_name": "User",
|
|
109
125
|
"email": "admin.me@example.com",
|
|
@@ -111,13 +127,17 @@
|
|
|
111
127
|
"location": null,
|
|
112
128
|
"title": null,
|
|
113
129
|
"language": null,
|
|
114
|
-
"theme": "auto",
|
|
115
130
|
"tfa_secret": null,
|
|
116
131
|
"status": "active",
|
|
117
132
|
"token": "**********",
|
|
118
|
-
"last_page": "/
|
|
133
|
+
"last_page": "/settings/data-model",
|
|
119
134
|
"provider": "default",
|
|
120
135
|
"external_identifier": null,
|
|
136
|
+
"appearance": null,
|
|
137
|
+
"theme_dark": null,
|
|
138
|
+
"theme_light": null,
|
|
139
|
+
"theme_dark_overrides": null,
|
|
140
|
+
"theme_light_overrides": null,
|
|
121
141
|
"auth_data": null,
|
|
122
142
|
"tags": null,
|
|
123
143
|
"description": null,
|