@contractspec/example.saas-boilerplate 1.57.0 → 1.58.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/.turbo/turbo-build.log +160 -180
- package/.turbo/turbo-prebuild.log +1 -0
- package/CHANGELOG.md +20 -0
- package/dist/billing/billing.entity.d.ts +40 -45
- package/dist/billing/billing.entity.d.ts.map +1 -1
- package/dist/billing/billing.entity.js +110 -118
- package/dist/billing/billing.enum.d.ts +2 -7
- package/dist/billing/billing.enum.d.ts.map +1 -1
- package/dist/billing/billing.enum.js +17 -24
- package/dist/billing/billing.event.d.ts +67 -73
- package/dist/billing/billing.event.d.ts.map +1 -1
- package/dist/billing/billing.event.js +84 -146
- package/dist/billing/billing.handler.d.ts +59 -62
- package/dist/billing/billing.handler.d.ts.map +1 -1
- package/dist/billing/billing.handler.js +140 -49
- package/dist/billing/billing.operations.d.ts +138 -144
- package/dist/billing/billing.operations.d.ts.map +1 -1
- package/dist/billing/billing.operations.js +273 -175
- package/dist/billing/billing.presentation.d.ts +2 -7
- package/dist/billing/billing.presentation.d.ts.map +1 -1
- package/dist/billing/billing.presentation.js +51 -57
- package/dist/billing/billing.schema.d.ts +159 -164
- package/dist/billing/billing.schema.d.ts.map +1 -1
- package/dist/billing/billing.schema.js +112 -204
- package/dist/billing/index.d.ts +11 -8
- package/dist/billing/index.d.ts.map +1 -0
- package/dist/billing/index.js +689 -9
- package/dist/browser/billing/billing.entity.js +113 -0
- package/dist/browser/billing/billing.enum.js +19 -0
- package/dist/browser/billing/billing.event.js +90 -0
- package/dist/browser/billing/billing.handler.js +148 -0
- package/dist/browser/billing/billing.operations.js +278 -0
- package/dist/browser/billing/billing.presentation.js +52 -0
- package/dist/browser/billing/billing.schema.js +121 -0
- package/dist/browser/billing/index.js +688 -0
- package/dist/browser/dashboard/dashboard.presentation.js +52 -0
- package/dist/browser/dashboard/index.js +52 -0
- package/dist/browser/docs/index.js +93 -0
- package/dist/browser/docs/saas-boilerplate.docblock.js +93 -0
- package/dist/browser/example.js +39 -0
- package/dist/browser/handlers/index.js +358 -0
- package/dist/browser/handlers/saas.handlers.js +134 -0
- package/dist/browser/index.js +3340 -0
- package/dist/browser/presentations/index.js +290 -0
- package/dist/browser/project/index.js +790 -0
- package/dist/browser/project/project.entity.js +77 -0
- package/dist/browser/project/project.enum.js +18 -0
- package/dist/browser/project/project.event.js +103 -0
- package/dist/browser/project/project.handler.js +178 -0
- package/dist/browser/project/project.operations.js +372 -0
- package/dist/browser/project/project.presentation.js +177 -0
- package/dist/browser/project/project.schema.js +134 -0
- package/dist/browser/saas-boilerplate.feature.js +88 -0
- package/dist/browser/seeders/index.js +20 -0
- package/dist/browser/settings/index.js +75 -0
- package/dist/browser/settings/settings.entity.js +74 -0
- package/dist/browser/settings/settings.enum.js +11 -0
- package/dist/browser/shared/mock-data.js +104 -0
- package/dist/browser/shared/overlay-types.js +0 -0
- package/dist/browser/tests/operations.test-spec.js +112 -0
- package/dist/browser/ui/SaasDashboard.js +988 -0
- package/dist/browser/ui/SaasProjectList.js +162 -0
- package/dist/browser/ui/SaasSettingsPanel.js +145 -0
- package/dist/browser/ui/hooks/index.js +159 -0
- package/dist/browser/ui/hooks/useProjectList.js +66 -0
- package/dist/browser/ui/hooks/useProjectMutations.js +91 -0
- package/dist/browser/ui/index.js +1808 -0
- package/dist/browser/ui/modals/CreateProjectModal.js +153 -0
- package/dist/browser/ui/modals/ProjectActionsModal.js +335 -0
- package/dist/browser/ui/modals/index.js +487 -0
- package/dist/browser/ui/overlays/demo-overlays.js +61 -0
- package/dist/browser/ui/overlays/index.js +61 -0
- package/dist/browser/ui/renderers/index.js +675 -0
- package/dist/browser/ui/renderers/project-list.markdown.js +499 -0
- package/dist/browser/ui/renderers/project-list.renderer.js +177 -0
- package/dist/dashboard/dashboard.presentation.d.ts +2 -7
- package/dist/dashboard/dashboard.presentation.d.ts.map +1 -1
- package/dist/dashboard/dashboard.presentation.js +51 -53
- package/dist/dashboard/index.d.ts +5 -2
- package/dist/dashboard/index.d.ts.map +1 -0
- package/dist/dashboard/index.js +53 -3
- package/dist/docs/index.d.ts +2 -1
- package/dist/docs/index.d.ts.map +1 -0
- package/dist/docs/index.js +94 -1
- package/dist/docs/saas-boilerplate.docblock.d.ts +2 -1
- package/dist/docs/saas-boilerplate.docblock.d.ts.map +1 -0
- package/dist/docs/saas-boilerplate.docblock.js +45 -51
- package/dist/example.d.ts +2 -6
- package/dist/example.d.ts.map +1 -1
- package/dist/example.js +38 -50
- package/dist/handlers/index.d.ts +7 -4
- package/dist/handlers/index.d.ts.map +1 -0
- package/dist/handlers/index.js +358 -4
- package/dist/handlers/saas.handlers.d.ts +60 -59
- package/dist/handlers/saas.handlers.d.ts.map +1 -1
- package/dist/handlers/saas.handlers.js +127 -140
- package/dist/index.d.ts +15 -45
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3335 -75
- package/dist/node/billing/billing.entity.js +113 -0
- package/dist/node/billing/billing.enum.js +19 -0
- package/dist/node/billing/billing.event.js +90 -0
- package/dist/node/billing/billing.handler.js +148 -0
- package/dist/node/billing/billing.operations.js +278 -0
- package/dist/node/billing/billing.presentation.js +52 -0
- package/dist/node/billing/billing.schema.js +121 -0
- package/dist/node/billing/index.js +688 -0
- package/dist/node/dashboard/dashboard.presentation.js +52 -0
- package/dist/node/dashboard/index.js +52 -0
- package/dist/node/docs/index.js +93 -0
- package/dist/node/docs/saas-boilerplate.docblock.js +93 -0
- package/dist/node/example.js +39 -0
- package/dist/node/handlers/index.js +358 -0
- package/dist/node/handlers/saas.handlers.js +134 -0
- package/dist/node/index.js +3340 -0
- package/dist/node/presentations/index.js +290 -0
- package/dist/node/project/index.js +790 -0
- package/dist/node/project/project.entity.js +77 -0
- package/dist/node/project/project.enum.js +18 -0
- package/dist/node/project/project.event.js +103 -0
- package/dist/node/project/project.handler.js +178 -0
- package/dist/node/project/project.operations.js +372 -0
- package/dist/node/project/project.presentation.js +177 -0
- package/dist/node/project/project.schema.js +134 -0
- package/dist/node/saas-boilerplate.feature.js +88 -0
- package/dist/node/seeders/index.js +20 -0
- package/dist/node/settings/index.js +75 -0
- package/dist/node/settings/settings.entity.js +74 -0
- package/dist/node/settings/settings.enum.js +11 -0
- package/dist/node/shared/mock-data.js +104 -0
- package/dist/node/shared/overlay-types.js +0 -0
- package/dist/node/tests/operations.test-spec.js +112 -0
- package/dist/node/ui/SaasDashboard.js +988 -0
- package/dist/node/ui/SaasProjectList.js +162 -0
- package/dist/node/ui/SaasSettingsPanel.js +145 -0
- package/dist/node/ui/hooks/index.js +159 -0
- package/dist/node/ui/hooks/useProjectList.js +66 -0
- package/dist/node/ui/hooks/useProjectMutations.js +91 -0
- package/dist/node/ui/index.js +1808 -0
- package/dist/node/ui/modals/CreateProjectModal.js +153 -0
- package/dist/node/ui/modals/ProjectActionsModal.js +335 -0
- package/dist/node/ui/modals/index.js +487 -0
- package/dist/node/ui/overlays/demo-overlays.js +61 -0
- package/dist/node/ui/overlays/index.js +61 -0
- package/dist/node/ui/renderers/index.js +675 -0
- package/dist/node/ui/renderers/project-list.markdown.js +499 -0
- package/dist/node/ui/renderers/project-list.renderer.js +177 -0
- package/dist/presentations/index.d.ts +13 -14
- package/dist/presentations/index.d.ts.map +1 -1
- package/dist/presentations/index.js +289 -15
- package/dist/project/index.d.ts +11 -8
- package/dist/project/index.d.ts.map +1 -0
- package/dist/project/index.js +791 -9
- package/dist/project/project.entity.d.ts +23 -28
- package/dist/project/project.entity.d.ts.map +1 -1
- package/dist/project/project.entity.js +75 -82
- package/dist/project/project.enum.d.ts +2 -7
- package/dist/project/project.enum.d.ts.map +1 -1
- package/dist/project/project.enum.js +16 -23
- package/dist/project/project.event.d.ts +69 -75
- package/dist/project/project.event.d.ts.map +1 -1
- package/dist/project/project.event.js +95 -156
- package/dist/project/project.handler.d.ts +44 -47
- package/dist/project/project.handler.d.ts.map +1 -1
- package/dist/project/project.handler.js +168 -71
- package/dist/project/project.operations.d.ts +341 -347
- package/dist/project/project.operations.d.ts.map +1 -1
- package/dist/project/project.operations.js +366 -253
- package/dist/project/project.presentation.d.ts +2 -7
- package/dist/project/project.presentation.d.ts.map +1 -1
- package/dist/project/project.presentation.js +174 -61
- package/dist/project/project.schema.d.ts +191 -196
- package/dist/project/project.schema.d.ts.map +1 -1
- package/dist/project/project.schema.js +125 -205
- package/dist/saas-boilerplate.feature.d.ts +1 -6
- package/dist/saas-boilerplate.feature.d.ts.map +1 -1
- package/dist/saas-boilerplate.feature.js +87 -206
- package/dist/seeders/index.d.ts +4 -8
- package/dist/seeders/index.d.ts.map +1 -1
- package/dist/seeders/index.js +18 -16
- package/dist/settings/index.d.ts +6 -3
- package/dist/settings/index.d.ts.map +1 -0
- package/dist/settings/index.js +75 -3
- package/dist/settings/settings.entity.d.ts +23 -28
- package/dist/settings/settings.entity.d.ts.map +1 -1
- package/dist/settings/settings.entity.js +72 -75
- package/dist/settings/settings.enum.d.ts +1 -6
- package/dist/settings/settings.enum.d.ts.map +1 -1
- package/dist/settings/settings.enum.js +10 -19
- package/dist/shared/mock-data.d.ts +74 -77
- package/dist/shared/mock-data.d.ts.map +1 -1
- package/dist/shared/mock-data.js +102 -135
- package/dist/shared/overlay-types.d.ts +25 -28
- package/dist/shared/overlay-types.d.ts.map +1 -1
- package/dist/shared/overlay-types.js +1 -0
- package/dist/tests/operations.test-spec.d.ts +4 -9
- package/dist/tests/operations.test-spec.d.ts.map +1 -1
- package/dist/tests/operations.test-spec.js +108 -118
- package/dist/ui/SaasDashboard.d.ts +1 -6
- package/dist/ui/SaasDashboard.d.ts.map +1 -1
- package/dist/ui/SaasDashboard.js +977 -286
- package/dist/ui/SaasProjectList.d.ts +4 -11
- package/dist/ui/SaasProjectList.d.ts.map +1 -1
- package/dist/ui/SaasProjectList.js +159 -72
- package/dist/ui/SaasSettingsPanel.d.ts +1 -6
- package/dist/ui/SaasSettingsPanel.d.ts.map +1 -1
- package/dist/ui/SaasSettingsPanel.js +142 -134
- package/dist/ui/hooks/index.d.ts +3 -3
- package/dist/ui/hooks/index.d.ts.map +1 -0
- package/dist/ui/hooks/index.js +158 -4
- package/dist/ui/hooks/useProjectList.d.ts +26 -30
- package/dist/ui/hooks/useProjectList.d.ts.map +1 -1
- package/dist/ui/hooks/useProjectList.js +63 -71
- package/dist/ui/hooks/useProjectMutations.d.ts +20 -24
- package/dist/ui/hooks/useProjectMutations.d.ts.map +1 -1
- package/dist/ui/hooks/useProjectMutations.js +88 -142
- package/dist/ui/index.d.ts +8 -14
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/ui/index.js +1809 -15
- package/dist/ui/modals/CreateProjectModal.d.ts +10 -19
- package/dist/ui/modals/CreateProjectModal.d.ts.map +1 -1
- package/dist/ui/modals/CreateProjectModal.js +150 -135
- package/dist/ui/modals/ProjectActionsModal.d.ts +20 -33
- package/dist/ui/modals/ProjectActionsModal.d.ts.map +1 -1
- package/dist/ui/modals/ProjectActionsModal.js +333 -289
- package/dist/ui/modals/index.d.ts +3 -3
- package/dist/ui/modals/index.d.ts.map +1 -0
- package/dist/ui/modals/index.js +487 -3
- package/dist/ui/overlays/demo-overlays.d.ts +10 -8
- package/dist/ui/overlays/demo-overlays.d.ts.map +1 -1
- package/dist/ui/overlays/demo-overlays.js +60 -68
- package/dist/ui/overlays/index.d.ts +2 -2
- package/dist/ui/overlays/index.d.ts.map +1 -0
- package/dist/ui/overlays/index.js +62 -3
- package/dist/ui/renderers/index.d.ts +3 -3
- package/dist/ui/renderers/index.d.ts.map +1 -0
- package/dist/ui/renderers/index.js +675 -3
- package/dist/ui/renderers/project-list.markdown.d.ts +15 -14
- package/dist/ui/renderers/project-list.markdown.d.ts.map +1 -1
- package/dist/ui/renderers/project-list.markdown.js +496 -146
- package/dist/ui/renderers/project-list.renderer.d.ts +6 -7
- package/dist/ui/renderers/project-list.renderer.d.ts.map +1 -1
- package/dist/ui/renderers/project-list.renderer.js +176 -15
- package/package.json +508 -98
- package/tsdown.config.js +1 -2
- package/.turbo/turbo-build$colon$bundle.log +0 -180
- package/dist/billing/billing.entity.js.map +0 -1
- package/dist/billing/billing.enum.js.map +0 -1
- package/dist/billing/billing.event.js.map +0 -1
- package/dist/billing/billing.handler.js.map +0 -1
- package/dist/billing/billing.operations.js.map +0 -1
- package/dist/billing/billing.presentation.js.map +0 -1
- package/dist/billing/billing.schema.js.map +0 -1
- package/dist/dashboard/dashboard.presentation.js.map +0 -1
- package/dist/docs/saas-boilerplate.docblock.js.map +0 -1
- package/dist/example.js.map +0 -1
- package/dist/handlers/saas.handlers.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/presentations/index.js.map +0 -1
- package/dist/project/project.entity.js.map +0 -1
- package/dist/project/project.enum.js.map +0 -1
- package/dist/project/project.event.js.map +0 -1
- package/dist/project/project.handler.js.map +0 -1
- package/dist/project/project.operations.js.map +0 -1
- package/dist/project/project.presentation.js.map +0 -1
- package/dist/project/project.schema.js.map +0 -1
- package/dist/saas-boilerplate.feature.js.map +0 -1
- package/dist/seeders/index.js.map +0 -1
- package/dist/settings/settings.entity.js.map +0 -1
- package/dist/settings/settings.enum.js.map +0 -1
- package/dist/shared/mock-data.js.map +0 -1
- package/dist/tests/operations.test-spec.js.map +0 -1
- package/dist/ui/SaasDashboard.js.map +0 -1
- package/dist/ui/SaasProjectList.js.map +0 -1
- package/dist/ui/SaasSettingsPanel.js.map +0 -1
- package/dist/ui/hooks/useProjectList.js.map +0 -1
- package/dist/ui/hooks/useProjectMutations.js.map +0 -1
- package/dist/ui/modals/CreateProjectModal.js.map +0 -1
- package/dist/ui/modals/ProjectActionsModal.js.map +0 -1
- package/dist/ui/overlays/demo-overlays.js.map +0 -1
- package/dist/ui/renderers/project-list.markdown.js.map +0 -1
- package/dist/ui/renderers/project-list.renderer.js.map +0 -1
- package/tsconfig.tsbuildinfo +0 -1
|
@@ -1,419 +1,413 @@
|
|
|
1
|
-
import * as _contractspec_lib_contracts0 from "@contractspec/lib.contracts";
|
|
2
|
-
import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
|
|
3
|
-
|
|
4
|
-
//#region src/project/project.operations.d.ts
|
|
5
1
|
/**
|
|
6
2
|
* Create a new project.
|
|
7
3
|
*/
|
|
8
|
-
declare const CreateProjectContract:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}>,
|
|
31
|
-
id: {
|
|
32
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
33
|
-
isOptional: false;
|
|
34
|
-
};
|
|
35
|
-
name: {
|
|
36
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
37
|
-
isOptional: false;
|
|
38
|
-
};
|
|
39
|
-
description: {
|
|
40
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
41
|
-
isOptional: true;
|
|
42
|
-
};
|
|
43
|
-
slug: {
|
|
44
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
45
|
-
isOptional: true;
|
|
46
|
-
};
|
|
47
|
-
organizationId: {
|
|
48
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
49
|
-
isOptional: false;
|
|
50
|
-
};
|
|
51
|
-
createdBy: {
|
|
52
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
53
|
-
isOptional: false;
|
|
54
|
-
};
|
|
55
|
-
status: {
|
|
56
|
-
type: _contractspec_lib_schema0.EnumType<[string, string, string, string]>;
|
|
57
|
-
isOptional: false;
|
|
58
|
-
};
|
|
59
|
-
isPublic: {
|
|
60
|
-
type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
|
|
61
|
-
isOptional: false;
|
|
62
|
-
};
|
|
63
|
-
tags: {
|
|
64
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
65
|
-
isArray: true;
|
|
66
|
-
isOptional: false;
|
|
67
|
-
};
|
|
68
|
-
createdAt: {
|
|
69
|
-
type: _contractspec_lib_schema0.FieldType<Date, string>;
|
|
70
|
-
isOptional: false;
|
|
71
|
-
};
|
|
72
|
-
updatedAt: {
|
|
73
|
-
type: _contractspec_lib_schema0.FieldType<Date, string>;
|
|
74
|
-
isOptional: false;
|
|
75
|
-
};
|
|
76
|
-
}>, {
|
|
77
|
-
key: string;
|
|
78
|
-
version: string;
|
|
79
|
-
when: string;
|
|
80
|
-
payload: _contractspec_lib_schema0.SchemaModel<{
|
|
4
|
+
export declare const CreateProjectContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
5
|
+
name: {
|
|
6
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
7
|
+
isOptional: false;
|
|
8
|
+
};
|
|
9
|
+
description: {
|
|
10
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
11
|
+
isOptional: true;
|
|
12
|
+
};
|
|
13
|
+
slug: {
|
|
14
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
15
|
+
isOptional: true;
|
|
16
|
+
};
|
|
17
|
+
isPublic: {
|
|
18
|
+
type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
|
|
19
|
+
isOptional: true;
|
|
20
|
+
};
|
|
21
|
+
tags: {
|
|
22
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
23
|
+
isArray: true;
|
|
24
|
+
isOptional: true;
|
|
25
|
+
};
|
|
26
|
+
}>, import("@contractspec/lib.schema").SchemaModel<{
|
|
81
27
|
id: {
|
|
82
|
-
|
|
83
|
-
|
|
28
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
29
|
+
isOptional: false;
|
|
84
30
|
};
|
|
85
31
|
name: {
|
|
86
|
-
|
|
87
|
-
|
|
32
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
33
|
+
isOptional: false;
|
|
88
34
|
};
|
|
89
35
|
description: {
|
|
90
|
-
|
|
91
|
-
|
|
36
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
37
|
+
isOptional: true;
|
|
92
38
|
};
|
|
93
39
|
slug: {
|
|
94
|
-
|
|
95
|
-
|
|
40
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
41
|
+
isOptional: true;
|
|
96
42
|
};
|
|
97
43
|
organizationId: {
|
|
98
|
-
|
|
99
|
-
|
|
44
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
45
|
+
isOptional: false;
|
|
100
46
|
};
|
|
101
47
|
createdBy: {
|
|
102
|
-
|
|
103
|
-
|
|
48
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
49
|
+
isOptional: false;
|
|
104
50
|
};
|
|
105
51
|
status: {
|
|
106
|
-
|
|
107
|
-
|
|
52
|
+
type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
|
|
53
|
+
isOptional: false;
|
|
108
54
|
};
|
|
109
55
|
isPublic: {
|
|
110
|
-
|
|
111
|
-
|
|
56
|
+
type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
|
|
57
|
+
isOptional: false;
|
|
112
58
|
};
|
|
113
59
|
tags: {
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
60
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
61
|
+
isArray: true;
|
|
62
|
+
isOptional: false;
|
|
117
63
|
};
|
|
118
64
|
createdAt: {
|
|
119
|
-
|
|
120
|
-
|
|
65
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
66
|
+
isOptional: false;
|
|
121
67
|
};
|
|
122
68
|
updatedAt: {
|
|
123
|
-
|
|
124
|
-
|
|
69
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
70
|
+
isOptional: false;
|
|
125
71
|
};
|
|
126
|
-
|
|
72
|
+
}>, {
|
|
73
|
+
key: string;
|
|
74
|
+
version: string;
|
|
75
|
+
when: string;
|
|
76
|
+
payload: import("@contractspec/lib.schema").SchemaModel<{
|
|
77
|
+
id: {
|
|
78
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
79
|
+
isOptional: false;
|
|
80
|
+
};
|
|
81
|
+
name: {
|
|
82
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
83
|
+
isOptional: false;
|
|
84
|
+
};
|
|
85
|
+
description: {
|
|
86
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
87
|
+
isOptional: true;
|
|
88
|
+
};
|
|
89
|
+
slug: {
|
|
90
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
91
|
+
isOptional: true;
|
|
92
|
+
};
|
|
93
|
+
organizationId: {
|
|
94
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
95
|
+
isOptional: false;
|
|
96
|
+
};
|
|
97
|
+
createdBy: {
|
|
98
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
99
|
+
isOptional: false;
|
|
100
|
+
};
|
|
101
|
+
status: {
|
|
102
|
+
type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
|
|
103
|
+
isOptional: false;
|
|
104
|
+
};
|
|
105
|
+
isPublic: {
|
|
106
|
+
type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
|
|
107
|
+
isOptional: false;
|
|
108
|
+
};
|
|
109
|
+
tags: {
|
|
110
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
111
|
+
isArray: true;
|
|
112
|
+
isOptional: false;
|
|
113
|
+
};
|
|
114
|
+
createdAt: {
|
|
115
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
116
|
+
isOptional: false;
|
|
117
|
+
};
|
|
118
|
+
updatedAt: {
|
|
119
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
120
|
+
isOptional: false;
|
|
121
|
+
};
|
|
122
|
+
}>;
|
|
127
123
|
}[]>;
|
|
128
124
|
/**
|
|
129
125
|
* Get project by ID.
|
|
130
126
|
*/
|
|
131
|
-
declare const GetProjectContract:
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
}>,
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
127
|
+
export declare const GetProjectContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
128
|
+
projectId: {
|
|
129
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
130
|
+
isOptional: false;
|
|
131
|
+
};
|
|
132
|
+
}>, import("@contractspec/lib.schema").SchemaModel<{
|
|
133
|
+
id: {
|
|
134
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
135
|
+
isOptional: false;
|
|
136
|
+
};
|
|
137
|
+
name: {
|
|
138
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
139
|
+
isOptional: false;
|
|
140
|
+
};
|
|
141
|
+
description: {
|
|
142
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
143
|
+
isOptional: true;
|
|
144
|
+
};
|
|
145
|
+
slug: {
|
|
146
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
147
|
+
isOptional: true;
|
|
148
|
+
};
|
|
149
|
+
organizationId: {
|
|
150
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
151
|
+
isOptional: false;
|
|
152
|
+
};
|
|
153
|
+
createdBy: {
|
|
154
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
155
|
+
isOptional: false;
|
|
156
|
+
};
|
|
157
|
+
status: {
|
|
158
|
+
type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
|
|
159
|
+
isOptional: false;
|
|
160
|
+
};
|
|
161
|
+
isPublic: {
|
|
162
|
+
type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
|
|
163
|
+
isOptional: false;
|
|
164
|
+
};
|
|
165
|
+
tags: {
|
|
166
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
167
|
+
isArray: true;
|
|
168
|
+
isOptional: false;
|
|
169
|
+
};
|
|
170
|
+
createdAt: {
|
|
171
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
172
|
+
isOptional: false;
|
|
173
|
+
};
|
|
174
|
+
updatedAt: {
|
|
175
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
176
|
+
isOptional: false;
|
|
177
|
+
};
|
|
182
178
|
}>, undefined>;
|
|
183
179
|
/**
|
|
184
180
|
* Update a project.
|
|
185
181
|
*/
|
|
186
|
-
declare const UpdateProjectContract:
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
}>,
|
|
217
|
-
id: {
|
|
218
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
219
|
-
isOptional: false;
|
|
220
|
-
};
|
|
221
|
-
name: {
|
|
222
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
223
|
-
isOptional: false;
|
|
224
|
-
};
|
|
225
|
-
description: {
|
|
226
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
227
|
-
isOptional: true;
|
|
228
|
-
};
|
|
229
|
-
slug: {
|
|
230
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
231
|
-
isOptional: true;
|
|
232
|
-
};
|
|
233
|
-
organizationId: {
|
|
234
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
235
|
-
isOptional: false;
|
|
236
|
-
};
|
|
237
|
-
createdBy: {
|
|
238
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
239
|
-
isOptional: false;
|
|
240
|
-
};
|
|
241
|
-
status: {
|
|
242
|
-
type: _contractspec_lib_schema0.EnumType<[string, string, string, string]>;
|
|
243
|
-
isOptional: false;
|
|
244
|
-
};
|
|
245
|
-
isPublic: {
|
|
246
|
-
type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
|
|
247
|
-
isOptional: false;
|
|
248
|
-
};
|
|
249
|
-
tags: {
|
|
250
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
251
|
-
isArray: true;
|
|
252
|
-
isOptional: false;
|
|
253
|
-
};
|
|
254
|
-
createdAt: {
|
|
255
|
-
type: _contractspec_lib_schema0.FieldType<Date, string>;
|
|
256
|
-
isOptional: false;
|
|
257
|
-
};
|
|
258
|
-
updatedAt: {
|
|
259
|
-
type: _contractspec_lib_schema0.FieldType<Date, string>;
|
|
260
|
-
isOptional: false;
|
|
261
|
-
};
|
|
262
|
-
}>, {
|
|
263
|
-
key: string;
|
|
264
|
-
version: string;
|
|
265
|
-
when: string;
|
|
266
|
-
payload: _contractspec_lib_schema0.SchemaModel<{
|
|
182
|
+
export declare const UpdateProjectContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
183
|
+
projectId: {
|
|
184
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
185
|
+
isOptional: false;
|
|
186
|
+
};
|
|
187
|
+
name: {
|
|
188
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
189
|
+
isOptional: true;
|
|
190
|
+
};
|
|
191
|
+
description: {
|
|
192
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
193
|
+
isOptional: true;
|
|
194
|
+
};
|
|
195
|
+
slug: {
|
|
196
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
197
|
+
isOptional: true;
|
|
198
|
+
};
|
|
199
|
+
isPublic: {
|
|
200
|
+
type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
|
|
201
|
+
isOptional: true;
|
|
202
|
+
};
|
|
203
|
+
tags: {
|
|
204
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
205
|
+
isArray: true;
|
|
206
|
+
isOptional: true;
|
|
207
|
+
};
|
|
208
|
+
status: {
|
|
209
|
+
type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
|
|
210
|
+
isOptional: true;
|
|
211
|
+
};
|
|
212
|
+
}>, import("@contractspec/lib.schema").SchemaModel<{
|
|
267
213
|
id: {
|
|
268
|
-
|
|
269
|
-
|
|
214
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
215
|
+
isOptional: false;
|
|
270
216
|
};
|
|
271
217
|
name: {
|
|
272
|
-
|
|
273
|
-
|
|
218
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
219
|
+
isOptional: false;
|
|
274
220
|
};
|
|
275
221
|
description: {
|
|
276
|
-
|
|
277
|
-
|
|
222
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
223
|
+
isOptional: true;
|
|
278
224
|
};
|
|
279
225
|
slug: {
|
|
280
|
-
|
|
281
|
-
|
|
226
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
227
|
+
isOptional: true;
|
|
282
228
|
};
|
|
283
229
|
organizationId: {
|
|
284
|
-
|
|
285
|
-
|
|
230
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
231
|
+
isOptional: false;
|
|
286
232
|
};
|
|
287
233
|
createdBy: {
|
|
288
|
-
|
|
289
|
-
|
|
234
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
235
|
+
isOptional: false;
|
|
290
236
|
};
|
|
291
237
|
status: {
|
|
292
|
-
|
|
293
|
-
|
|
238
|
+
type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
|
|
239
|
+
isOptional: false;
|
|
294
240
|
};
|
|
295
241
|
isPublic: {
|
|
296
|
-
|
|
297
|
-
|
|
242
|
+
type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
|
|
243
|
+
isOptional: false;
|
|
298
244
|
};
|
|
299
245
|
tags: {
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
246
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
247
|
+
isArray: true;
|
|
248
|
+
isOptional: false;
|
|
303
249
|
};
|
|
304
250
|
createdAt: {
|
|
305
|
-
|
|
306
|
-
|
|
251
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
252
|
+
isOptional: false;
|
|
307
253
|
};
|
|
308
254
|
updatedAt: {
|
|
309
|
-
|
|
310
|
-
|
|
255
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
256
|
+
isOptional: false;
|
|
311
257
|
};
|
|
312
|
-
|
|
258
|
+
}>, {
|
|
259
|
+
key: string;
|
|
260
|
+
version: string;
|
|
261
|
+
when: string;
|
|
262
|
+
payload: import("@contractspec/lib.schema").SchemaModel<{
|
|
263
|
+
id: {
|
|
264
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
265
|
+
isOptional: false;
|
|
266
|
+
};
|
|
267
|
+
name: {
|
|
268
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
269
|
+
isOptional: false;
|
|
270
|
+
};
|
|
271
|
+
description: {
|
|
272
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
273
|
+
isOptional: true;
|
|
274
|
+
};
|
|
275
|
+
slug: {
|
|
276
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
277
|
+
isOptional: true;
|
|
278
|
+
};
|
|
279
|
+
organizationId: {
|
|
280
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
281
|
+
isOptional: false;
|
|
282
|
+
};
|
|
283
|
+
createdBy: {
|
|
284
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
285
|
+
isOptional: false;
|
|
286
|
+
};
|
|
287
|
+
status: {
|
|
288
|
+
type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
|
|
289
|
+
isOptional: false;
|
|
290
|
+
};
|
|
291
|
+
isPublic: {
|
|
292
|
+
type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
|
|
293
|
+
isOptional: false;
|
|
294
|
+
};
|
|
295
|
+
tags: {
|
|
296
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
297
|
+
isArray: true;
|
|
298
|
+
isOptional: false;
|
|
299
|
+
};
|
|
300
|
+
createdAt: {
|
|
301
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
302
|
+
isOptional: false;
|
|
303
|
+
};
|
|
304
|
+
updatedAt: {
|
|
305
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
306
|
+
isOptional: false;
|
|
307
|
+
};
|
|
308
|
+
}>;
|
|
313
309
|
}[]>;
|
|
314
310
|
/**
|
|
315
311
|
* Delete a project.
|
|
316
312
|
*/
|
|
317
|
-
declare const DeleteProjectContract:
|
|
318
|
-
projectId: {
|
|
319
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
320
|
-
isOptional: false;
|
|
321
|
-
};
|
|
322
|
-
}>, _contractspec_lib_schema0.SchemaModel<{
|
|
323
|
-
success: {
|
|
324
|
-
type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
|
|
325
|
-
isOptional: false;
|
|
326
|
-
};
|
|
327
|
-
}>, {
|
|
328
|
-
key: string;
|
|
329
|
-
version: string;
|
|
330
|
-
when: string;
|
|
331
|
-
payload: _contractspec_lib_schema0.SchemaModel<{
|
|
313
|
+
export declare const DeleteProjectContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
332
314
|
projectId: {
|
|
333
|
-
|
|
334
|
-
|
|
315
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
316
|
+
isOptional: false;
|
|
335
317
|
};
|
|
336
|
-
|
|
318
|
+
}>, import("@contractspec/lib.schema").SchemaModel<{
|
|
319
|
+
success: {
|
|
320
|
+
type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
|
|
321
|
+
isOptional: false;
|
|
322
|
+
};
|
|
323
|
+
}>, {
|
|
324
|
+
key: string;
|
|
325
|
+
version: string;
|
|
326
|
+
when: string;
|
|
327
|
+
payload: import("@contractspec/lib.schema").SchemaModel<{
|
|
328
|
+
projectId: {
|
|
329
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
330
|
+
isOptional: false;
|
|
331
|
+
};
|
|
332
|
+
}>;
|
|
337
333
|
}[]>;
|
|
338
334
|
/**
|
|
339
335
|
* List organization projects.
|
|
340
336
|
*/
|
|
341
|
-
declare const ListProjectsContract:
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
isOptional: true;
|
|
345
|
-
};
|
|
346
|
-
search: {
|
|
347
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
348
|
-
isOptional: true;
|
|
349
|
-
};
|
|
350
|
-
limit: {
|
|
351
|
-
type: _contractspec_lib_schema0.FieldType<number, number>;
|
|
352
|
-
isOptional: true;
|
|
353
|
-
defaultValue: number;
|
|
354
|
-
};
|
|
355
|
-
offset: {
|
|
356
|
-
type: _contractspec_lib_schema0.FieldType<number, number>;
|
|
357
|
-
isOptional: true;
|
|
358
|
-
defaultValue: number;
|
|
359
|
-
};
|
|
360
|
-
}>, _contractspec_lib_schema0.SchemaModel<{
|
|
361
|
-
projects: {
|
|
362
|
-
type: _contractspec_lib_schema0.SchemaModel<{
|
|
363
|
-
id: {
|
|
364
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
365
|
-
isOptional: false;
|
|
366
|
-
};
|
|
367
|
-
name: {
|
|
368
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
369
|
-
isOptional: false;
|
|
370
|
-
};
|
|
371
|
-
description: {
|
|
372
|
-
type: _contractspec_lib_schema0.FieldType<string, string>;
|
|
337
|
+
export declare const ListProjectsContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
338
|
+
status: {
|
|
339
|
+
type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
|
|
373
340
|
isOptional: true;
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
type:
|
|
341
|
+
};
|
|
342
|
+
search: {
|
|
343
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
377
344
|
isOptional: true;
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
type:
|
|
381
|
-
isOptional:
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
345
|
+
};
|
|
346
|
+
limit: {
|
|
347
|
+
type: import("@contractspec/lib.schema").FieldType<number, number>;
|
|
348
|
+
isOptional: true;
|
|
349
|
+
defaultValue: number;
|
|
350
|
+
};
|
|
351
|
+
offset: {
|
|
352
|
+
type: import("@contractspec/lib.schema").FieldType<number, number>;
|
|
353
|
+
isOptional: true;
|
|
354
|
+
defaultValue: number;
|
|
355
|
+
};
|
|
356
|
+
}>, import("@contractspec/lib.schema").SchemaModel<{
|
|
357
|
+
projects: {
|
|
358
|
+
type: import("@contractspec/lib.schema").SchemaModel<{
|
|
359
|
+
id: {
|
|
360
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
361
|
+
isOptional: false;
|
|
362
|
+
};
|
|
363
|
+
name: {
|
|
364
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
365
|
+
isOptional: false;
|
|
366
|
+
};
|
|
367
|
+
description: {
|
|
368
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
369
|
+
isOptional: true;
|
|
370
|
+
};
|
|
371
|
+
slug: {
|
|
372
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
373
|
+
isOptional: true;
|
|
374
|
+
};
|
|
375
|
+
organizationId: {
|
|
376
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
377
|
+
isOptional: false;
|
|
378
|
+
};
|
|
379
|
+
createdBy: {
|
|
380
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
381
|
+
isOptional: false;
|
|
382
|
+
};
|
|
383
|
+
status: {
|
|
384
|
+
type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
|
|
385
|
+
isOptional: false;
|
|
386
|
+
};
|
|
387
|
+
isPublic: {
|
|
388
|
+
type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
|
|
389
|
+
isOptional: false;
|
|
390
|
+
};
|
|
391
|
+
tags: {
|
|
392
|
+
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
393
|
+
isArray: true;
|
|
394
|
+
isOptional: false;
|
|
395
|
+
};
|
|
396
|
+
createdAt: {
|
|
397
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
398
|
+
isOptional: false;
|
|
399
|
+
};
|
|
400
|
+
updatedAt: {
|
|
401
|
+
type: import("@contractspec/lib.schema").FieldType<Date, string>;
|
|
402
|
+
isOptional: false;
|
|
403
|
+
};
|
|
404
|
+
}>;
|
|
397
405
|
isArray: true;
|
|
398
406
|
isOptional: false;
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
type:
|
|
402
|
-
isOptional: false;
|
|
403
|
-
};
|
|
404
|
-
updatedAt: {
|
|
405
|
-
type: _contractspec_lib_schema0.FieldType<Date, string>;
|
|
407
|
+
};
|
|
408
|
+
total: {
|
|
409
|
+
type: import("@contractspec/lib.schema").FieldType<number, number>;
|
|
406
410
|
isOptional: false;
|
|
407
|
-
|
|
408
|
-
}>;
|
|
409
|
-
isArray: true;
|
|
410
|
-
isOptional: false;
|
|
411
|
-
};
|
|
412
|
-
total: {
|
|
413
|
-
type: _contractspec_lib_schema0.FieldType<number, number>;
|
|
414
|
-
isOptional: false;
|
|
415
|
-
};
|
|
411
|
+
};
|
|
416
412
|
}>, undefined>;
|
|
417
|
-
//#endregion
|
|
418
|
-
export { CreateProjectContract, DeleteProjectContract, GetProjectContract, ListProjectsContract, UpdateProjectContract };
|
|
419
413
|
//# sourceMappingURL=project.operations.d.ts.map
|