@locusai/shared 0.16.1 → 0.17.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.
Files changed (38) hide show
  1. package/dist/common.d.ts +0 -53
  2. package/dist/common.d.ts.map +1 -1
  3. package/dist/index.d.ts +0 -3
  4. package/dist/index.d.ts.map +1 -1
  5. package/dist/index.js +174 -1140
  6. package/package.json +1 -1
  7. package/dist/constants.d.ts +0 -2
  8. package/dist/constants.d.ts.map +0 -1
  9. package/dist/enums.d.ts +0 -66
  10. package/dist/enums.d.ts.map +0 -1
  11. package/dist/models/activity.d.ts +0 -274
  12. package/dist/models/activity.d.ts.map +0 -1
  13. package/dist/models/agent.d.ts +0 -42
  14. package/dist/models/agent.d.ts.map +0 -1
  15. package/dist/models/auth.d.ts +0 -170
  16. package/dist/models/auth.d.ts.map +0 -1
  17. package/dist/models/aws-instance.d.ts +0 -105
  18. package/dist/models/aws-instance.d.ts.map +0 -1
  19. package/dist/models/ci.d.ts +0 -18
  20. package/dist/models/ci.d.ts.map +0 -1
  21. package/dist/models/doc-group.d.ts +0 -47
  22. package/dist/models/doc-group.d.ts.map +0 -1
  23. package/dist/models/doc.d.ts +0 -84
  24. package/dist/models/doc.d.ts.map +0 -1
  25. package/dist/models/index.d.ts +0 -14
  26. package/dist/models/index.d.ts.map +0 -1
  27. package/dist/models/invitation.d.ts +0 -80
  28. package/dist/models/invitation.d.ts.map +0 -1
  29. package/dist/models/organization.d.ts +0 -102
  30. package/dist/models/organization.d.ts.map +0 -1
  31. package/dist/models/sprint.d.ts +0 -61
  32. package/dist/models/sprint.d.ts.map +0 -1
  33. package/dist/models/task.d.ts +0 -235
  34. package/dist/models/task.d.ts.map +0 -1
  35. package/dist/models/user.d.ts +0 -38
  36. package/dist/models/user.d.ts.map +0 -1
  37. package/dist/models/workspace.d.ts +0 -92
  38. package/dist/models/workspace.d.ts.map +0 -1
@@ -1,105 +0,0 @@
1
- import { z } from "zod";
2
- import { AwsRegion, InstanceStatus } from "../enums";
3
- export declare enum InstanceAction {
4
- START = "START",
5
- STOP = "STOP",
6
- TERMINATE = "TERMINATE"
7
- }
8
- export declare const AwsCredentialsSchema: z.ZodObject<{
9
- accessKeyId: z.ZodString;
10
- secretAccessKey: z.ZodString;
11
- region: z.ZodDefault<z.ZodEnum<typeof AwsRegion>>;
12
- }, z.core.$strip>;
13
- export type AwsCredentials = z.infer<typeof AwsCredentialsSchema>;
14
- export declare const IntegrationSchema: z.ZodObject<{
15
- name: z.ZodString;
16
- config: z.ZodRecord<z.ZodString, z.ZodString>;
17
- }, z.core.$strip>;
18
- export type Integration = z.infer<typeof IntegrationSchema>;
19
- export declare const AwsInstanceSchema: z.ZodObject<{
20
- id: z.ZodUUID;
21
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
22
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
23
- workspaceId: z.ZodUUID;
24
- instanceId: z.ZodString;
25
- status: z.ZodEnum<typeof InstanceStatus>;
26
- instanceType: z.ZodEnum<{
27
- "t3.micro": "t3.micro";
28
- "t3.small": "t3.small";
29
- "t3.medium": "t3.medium";
30
- }>;
31
- region: z.ZodDefault<z.ZodEnum<typeof AwsRegion>>;
32
- publicIp: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33
- launchTime: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>>;
34
- repoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35
- integrations: z.ZodDefault<z.ZodArray<z.ZodObject<{
36
- name: z.ZodString;
37
- config: z.ZodRecord<z.ZodString, z.ZodString>;
38
- }, z.core.$strip>>>;
39
- }, z.core.$strip>;
40
- export type AwsInstance = z.infer<typeof AwsInstanceSchema>;
41
- export declare const CreateAwsInstanceSchema: z.ZodObject<{
42
- workspaceId: z.ZodUUID;
43
- instanceType: z.ZodDefault<z.ZodEnum<{
44
- "t3.micro": "t3.micro";
45
- "t3.small": "t3.small";
46
- "t3.medium": "t3.medium";
47
- }>>;
48
- region: z.ZodDefault<z.ZodEnum<typeof AwsRegion>>;
49
- repoUrl: z.ZodOptional<z.ZodString>;
50
- integrations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
51
- name: z.ZodString;
52
- config: z.ZodRecord<z.ZodString, z.ZodString>;
53
- }, z.core.$strip>>>>;
54
- }, z.core.$strip>;
55
- export type CreateAwsInstance = z.infer<typeof CreateAwsInstanceSchema>;
56
- export declare const UpdateAwsInstanceSchema: z.ZodObject<{
57
- status: z.ZodOptional<z.ZodEnum<typeof InstanceStatus>>;
58
- instanceType: z.ZodOptional<z.ZodEnum<{
59
- "t3.micro": "t3.micro";
60
- "t3.small": "t3.small";
61
- "t3.medium": "t3.medium";
62
- }>>;
63
- publicIp: z.ZodOptional<z.ZodNullable<z.ZodString>>;
64
- launchTime: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>>;
65
- repoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
66
- integrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
67
- name: z.ZodString;
68
- config: z.ZodRecord<z.ZodString, z.ZodString>;
69
- }, z.core.$strip>>>;
70
- }, z.core.$strip>;
71
- export type UpdateAwsInstance = z.infer<typeof UpdateAwsInstanceSchema>;
72
- export declare const SaveAwsCredentialsSchema: z.ZodObject<{
73
- accessKeyId: z.ZodString;
74
- secretAccessKey: z.ZodString;
75
- region: z.ZodDefault<z.ZodString>;
76
- }, z.core.$strip>;
77
- export type SaveAwsCredentials = z.infer<typeof SaveAwsCredentialsSchema>;
78
- export declare const ProvisionAwsInstanceSchema: z.ZodObject<{
79
- repoUrl: z.ZodString;
80
- githubToken: z.ZodString;
81
- instanceType: z.ZodDefault<z.ZodEnum<{
82
- "t3.micro": "t3.micro";
83
- "t3.small": "t3.small";
84
- "t3.medium": "t3.medium";
85
- }>>;
86
- integrations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
87
- name: z.ZodString;
88
- config: z.ZodRecord<z.ZodString, z.ZodString>;
89
- }, z.core.$strip>>>>;
90
- }, z.core.$strip>;
91
- export type ProvisionAwsInstance = z.infer<typeof ProvisionAwsInstanceSchema>;
92
- export declare const InstanceActionBodySchema: z.ZodObject<{
93
- action: z.ZodEnum<typeof InstanceAction>;
94
- }, z.core.$strip>;
95
- export type InstanceActionBody = z.infer<typeof InstanceActionBodySchema>;
96
- export declare const InstanceIdParamSchema: z.ZodObject<{
97
- workspaceId: z.ZodString;
98
- instanceId: z.ZodString;
99
- }, z.core.$strip>;
100
- export type InstanceIdParam = z.infer<typeof InstanceIdParamSchema>;
101
- export declare const UpdateSecurityRulesSchema: z.ZodObject<{
102
- allowedIps: z.ZodArray<z.ZodString>;
103
- }, z.core.$strip>;
104
- export type UpdateSecurityRules = z.infer<typeof UpdateSecurityRulesSchema>;
105
- //# sourceMappingURL=aws-instance.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"aws-instance.d.ts","sourceRoot":"","sources":["../../src/models/aws-instance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAMrD,oBAAY,cAAc;IACxB,KAAK,UAAU;IACf,IAAI,SAAS;IACb,SAAS,cAAc;CACxB;AAMD,eAAO,MAAM,oBAAoB;;;;iBAI/B,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,iBAAiB;;;iBAG5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;iBAU5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;iBAQlC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;iBAOlC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,wBAAwB;;;;iBAInC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAM1E,eAAO,MAAM,0BAA0B;;;;;;;;;;;;iBAOrC,CAAC;AAEH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE9E,eAAO,MAAM,wBAAwB;;iBAEnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,qBAAqB;;;iBAGhC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAQpE,eAAO,MAAM,yBAAyB;;iBAIpC,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC"}
@@ -1,18 +0,0 @@
1
- import { z } from "zod";
2
- export declare const RecordCiSchema: z.ZodObject<{
3
- taskId: z.ZodUUID;
4
- workspaceId: z.ZodUUID;
5
- result: z.ZodObject<{
6
- ok: z.ZodBoolean;
7
- summary: z.ZodString;
8
- commands: z.ZodArray<z.ZodObject<{
9
- cmd: z.ZodString;
10
- exitCode: z.ZodNumber;
11
- durationMs: z.ZodOptional<z.ZodNumber>;
12
- error: z.ZodOptional<z.ZodString>;
13
- }, z.core.$strip>>;
14
- preset: z.ZodString;
15
- }, z.core.$strip>;
16
- }, z.core.$strip>;
17
- export type RecordCi = z.infer<typeof RecordCiSchema>;
18
- //# sourceMappingURL=ci.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ci.d.ts","sourceRoot":"","sources":["../../src/models/ci.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;iBAgBzB,CAAC;AAEH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC"}
@@ -1,47 +0,0 @@
1
- import { z } from "zod";
2
- export declare const DocGroupSchema: z.ZodObject<{
3
- id: z.ZodUUID;
4
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
5
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
6
- workspaceId: z.ZodUUID;
7
- name: z.ZodString;
8
- order: z.ZodDefault<z.ZodNumber>;
9
- }, z.core.$strip>;
10
- export type DocGroup = z.infer<typeof DocGroupSchema>;
11
- export declare const CreateDocGroupSchema: z.ZodObject<{
12
- name: z.ZodString;
13
- order: z.ZodOptional<z.ZodNumber>;
14
- }, z.core.$strip>;
15
- export type CreateDocGroup = z.infer<typeof CreateDocGroupSchema>;
16
- export declare const UpdateDocGroupSchema: z.ZodObject<{
17
- name: z.ZodOptional<z.ZodString>;
18
- order: z.ZodOptional<z.ZodNumber>;
19
- }, z.core.$strip>;
20
- export type UpdateDocGroup = z.infer<typeof UpdateDocGroupSchema>;
21
- export declare const DocGroupResponseSchema: z.ZodObject<{
22
- group: z.ZodObject<{
23
- id: z.ZodUUID;
24
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
25
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
26
- workspaceId: z.ZodUUID;
27
- name: z.ZodString;
28
- order: z.ZodDefault<z.ZodNumber>;
29
- }, z.core.$strip>;
30
- }, z.core.$strip>;
31
- export type DocGroupResponse = z.infer<typeof DocGroupResponseSchema>;
32
- export declare const DocGroupsResponseSchema: z.ZodObject<{
33
- groups: z.ZodArray<z.ZodObject<{
34
- id: z.ZodUUID;
35
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
36
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
37
- workspaceId: z.ZodUUID;
38
- name: z.ZodString;
39
- order: z.ZodDefault<z.ZodNumber>;
40
- }, z.core.$strip>>;
41
- }, z.core.$strip>;
42
- export type DocGroupsResponse = z.infer<typeof DocGroupsResponseSchema>;
43
- export declare const DocGroupIdParamSchema: z.ZodObject<{
44
- id: z.ZodString;
45
- }, z.core.$strip>;
46
- export type DocGroupIdParam = z.infer<typeof DocGroupIdParamSchema>;
47
- //# sourceMappingURL=doc-group.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"doc-group.d.ts","sourceRoot":"","sources":["../../src/models/doc-group.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,cAAc;;;;;;;iBAIzB,CAAC;AAEH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD,eAAO,MAAM,oBAAoB;;;iBAG/B,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,oBAAoB;;;iBAG/B,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,sBAAsB;;;;;;;;;iBAEjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,uBAAuB;;;;;;;;;iBAElC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,qBAAqB;;iBAEhC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
@@ -1,84 +0,0 @@
1
- import { z } from "zod";
2
- export declare const DocGroupSchemaForDoc: z.ZodObject<{
3
- id: z.ZodUUID;
4
- name: z.ZodString;
5
- }, z.core.$strip>;
6
- export declare enum DocType {
7
- GENERAL = "GENERAL",
8
- PRD = "PRD",
9
- TECH_SPEC = "TECH_SPEC",
10
- ADR = "ADR",
11
- API_DESIGN = "API_DESIGN"
12
- }
13
- export declare const DocSchema: z.ZodObject<{
14
- id: z.ZodUUID;
15
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
16
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
17
- workspaceId: z.ZodUUID;
18
- groupId: z.ZodOptional<z.ZodNullable<z.ZodUUID>>;
19
- title: z.ZodString;
20
- content: z.ZodDefault<z.ZodString>;
21
- type: z.ZodDefault<z.ZodEnum<typeof DocType>>;
22
- group: z.ZodOptional<z.ZodNullable<z.ZodObject<{
23
- id: z.ZodUUID;
24
- name: z.ZodString;
25
- }, z.core.$strip>>>;
26
- }, z.core.$strip>;
27
- export type Doc = z.infer<typeof DocSchema>;
28
- export declare const CreateDocSchema: z.ZodObject<{
29
- title: z.ZodString;
30
- content: z.ZodOptional<z.ZodString>;
31
- type: z.ZodDefault<z.ZodOptional<z.ZodEnum<typeof DocType>>>;
32
- groupId: z.ZodOptional<z.ZodString>;
33
- }, z.core.$strip>;
34
- export type CreateDoc = z.infer<typeof CreateDocSchema>;
35
- export declare const UpdateDocSchema: z.ZodObject<{
36
- title: z.ZodOptional<z.ZodString>;
37
- content: z.ZodOptional<z.ZodString>;
38
- type: z.ZodOptional<z.ZodEnum<typeof DocType>>;
39
- groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40
- }, z.core.$strip>;
41
- export type UpdateDoc = z.infer<typeof UpdateDocSchema>;
42
- export declare const DocResponseSchema: z.ZodObject<{
43
- doc: z.ZodObject<{
44
- id: z.ZodUUID;
45
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
46
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
47
- workspaceId: z.ZodUUID;
48
- groupId: z.ZodOptional<z.ZodNullable<z.ZodUUID>>;
49
- title: z.ZodString;
50
- content: z.ZodDefault<z.ZodString>;
51
- type: z.ZodDefault<z.ZodEnum<typeof DocType>>;
52
- group: z.ZodOptional<z.ZodNullable<z.ZodObject<{
53
- id: z.ZodUUID;
54
- name: z.ZodString;
55
- }, z.core.$strip>>>;
56
- }, z.core.$strip>;
57
- }, z.core.$strip>;
58
- export type DocResponse = z.infer<typeof DocResponseSchema>;
59
- export declare const DocsResponseSchema: z.ZodObject<{
60
- docs: z.ZodArray<z.ZodObject<{
61
- id: z.ZodUUID;
62
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
63
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
64
- workspaceId: z.ZodUUID;
65
- groupId: z.ZodOptional<z.ZodNullable<z.ZodUUID>>;
66
- title: z.ZodString;
67
- content: z.ZodDefault<z.ZodString>;
68
- type: z.ZodDefault<z.ZodEnum<typeof DocType>>;
69
- group: z.ZodOptional<z.ZodNullable<z.ZodObject<{
70
- id: z.ZodUUID;
71
- name: z.ZodString;
72
- }, z.core.$strip>>>;
73
- }, z.core.$strip>>;
74
- }, z.core.$strip>;
75
- export type DocsResponse = z.infer<typeof DocsResponseSchema>;
76
- export declare const DocIdParamSchema: z.ZodObject<{
77
- id: z.ZodString;
78
- }, z.core.$strip>;
79
- export type DocIdParam = z.infer<typeof DocIdParamSchema>;
80
- export declare const DocQuerySchema: z.ZodObject<{
81
- workspaceId: z.ZodOptional<z.ZodString>;
82
- }, z.core.$strip>;
83
- export type DocQuery = z.infer<typeof DocQuerySchema>;
84
- //# sourceMappingURL=doc.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"doc.d.ts","sourceRoot":"","sources":["../../src/models/doc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,oBAAoB;;;iBAG/B,CAAC;AAEH,oBAAY,OAAO;IACjB,OAAO,YAAY;IACnB,GAAG,QAAQ;IACX,SAAS,cAAc;IACvB,GAAG,QAAQ;IACX,UAAU,eAAe;CAC1B;AAED,eAAO,MAAM,SAAS;;;;;;;;;;;;;iBAOpB,CAAC;AAEH,MAAM,MAAM,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAE5C,eAAO,MAAM,eAAe;;;;;iBAK1B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAExD,eAAO,MAAM,eAAe;;;;;iBAK1B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAMxD,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;iBAE5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;iBAE7B,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAM9D,eAAO,MAAM,gBAAgB;;iBAE3B,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE1D,eAAO,MAAM,cAAc;;iBAEzB,CAAC;AAEH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC"}
@@ -1,14 +0,0 @@
1
- export * from "./activity";
2
- export * from "./agent";
3
- export * from "./auth";
4
- export * from "./aws-instance";
5
- export * from "./ci";
6
- export * from "./doc";
7
- export * from "./doc-group";
8
- export * from "./invitation";
9
- export * from "./organization";
10
- export * from "./sprint";
11
- export * from "./task";
12
- export * from "./user";
13
- export * from "./workspace";
14
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,MAAM,CAAC;AACrB,cAAc,OAAO,CAAC;AACtB,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC"}
@@ -1,80 +0,0 @@
1
- import { z } from "zod";
2
- import { MembershipRole } from "../enums";
3
- export declare const InvitationSchema: z.ZodObject<{
4
- id: z.ZodUUID;
5
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
6
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
7
- orgId: z.ZodString;
8
- email: z.ZodString;
9
- role: z.ZodEnum<typeof MembershipRole>;
10
- token: z.ZodString;
11
- expiresAt: z.ZodNumber;
12
- acceptedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13
- invitedBy: z.ZodUUID;
14
- }, z.core.$strip>;
15
- export type Invitation = z.infer<typeof InvitationSchema>;
16
- export declare const CreateInvitationSchema: z.ZodObject<{
17
- orgId: z.ZodString;
18
- email: z.ZodString;
19
- role: z.ZodDefault<z.ZodEnum<typeof MembershipRole>>;
20
- }, z.core.$strip>;
21
- export type CreateInvitation = z.infer<typeof CreateInvitationSchema>;
22
- export declare const AcceptInvitationSchema: z.ZodObject<{
23
- token: z.ZodString;
24
- name: z.ZodOptional<z.ZodString>;
25
- }, z.core.$strip>;
26
- export type AcceptInvitation = z.infer<typeof AcceptInvitationSchema>;
27
- export declare const InvitationIdParamSchema: z.ZodObject<{
28
- id: z.ZodString;
29
- }, z.core.$strip>;
30
- export type InvitationIdParam = z.infer<typeof InvitationIdParamSchema>;
31
- export declare const InvitationVerifyParamSchema: z.ZodObject<{
32
- token: z.ZodString;
33
- }, z.core.$strip>;
34
- export type InvitationVerifyParam = z.infer<typeof InvitationVerifyParamSchema>;
35
- export declare const InvitationQuerySchema: z.ZodObject<{
36
- orgId: z.ZodOptional<z.ZodString>;
37
- }, z.core.$strip>;
38
- export type InvitationQuery = z.infer<typeof InvitationQuerySchema>;
39
- export declare const InvitationResponseSchema: z.ZodObject<{
40
- invitation: z.ZodObject<{
41
- id: z.ZodUUID;
42
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
43
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
44
- orgId: z.ZodString;
45
- email: z.ZodString;
46
- role: z.ZodEnum<typeof MembershipRole>;
47
- token: z.ZodString;
48
- expiresAt: z.ZodNumber;
49
- acceptedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
50
- invitedBy: z.ZodUUID;
51
- }, z.core.$strip>;
52
- userExists: z.ZodOptional<z.ZodBoolean>;
53
- }, z.core.$strip>;
54
- export type InvitationResponse = z.infer<typeof InvitationResponseSchema>;
55
- export declare const InvitationsResponseSchema: z.ZodObject<{
56
- invitations: z.ZodArray<z.ZodObject<{
57
- id: z.ZodUUID;
58
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
59
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
60
- orgId: z.ZodString;
61
- email: z.ZodString;
62
- role: z.ZodEnum<typeof MembershipRole>;
63
- token: z.ZodString;
64
- expiresAt: z.ZodNumber;
65
- acceptedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
66
- invitedBy: z.ZodUUID;
67
- }, z.core.$strip>>;
68
- }, z.core.$strip>;
69
- export type InvitationsResponse = z.infer<typeof InvitationsResponseSchema>;
70
- export declare const AcceptInvitationResponseSchema: z.ZodObject<{
71
- membership: z.ZodObject<{
72
- id: z.ZodUUID;
73
- userId: z.ZodUUID;
74
- orgId: z.ZodUUID;
75
- role: z.ZodEnum<typeof MembershipRole>;
76
- createdAt: z.ZodNumber;
77
- }, z.core.$strip>;
78
- }, z.core.$strip>;
79
- export type AcceptInvitationResponse = z.infer<typeof AcceptInvitationResponseSchema>;
80
- //# sourceMappingURL=invitation.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"invitation.d.ts","sourceRoot":"","sources":["../../src/models/invitation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAE1C,eAAO,MAAM,gBAAgB;;;;;;;;;;;iBAQ3B,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE1D,eAAO,MAAM,sBAAsB;;;;iBAIjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,sBAAsB;;;iBAGjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAMtE,eAAO,MAAM,uBAAuB;;iBAElC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,2BAA2B;;iBAEtC,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF,eAAO,MAAM,qBAAqB;;iBAEhC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAMpE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;iBAGnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;iBAEpC,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E,eAAO,MAAM,8BAA8B;;;;;;;;iBAQzC,CAAC;AAEH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAC5C,OAAO,8BAA8B,CACtC,CAAC"}
@@ -1,102 +0,0 @@
1
- import { z } from "zod";
2
- export declare const OrganizationSchema: z.ZodObject<{
3
- id: z.ZodUUID;
4
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
5
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
6
- name: z.ZodString;
7
- avatarUrl: z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>;
8
- }, z.core.$strip>;
9
- export type Organization = z.infer<typeof OrganizationSchema>;
10
- export declare const CreateOrganizationSchema: z.ZodObject<{
11
- name: z.ZodString;
12
- avatarUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
13
- }, z.core.$strip>;
14
- export type CreateOrganization = z.infer<typeof CreateOrganizationSchema>;
15
- export declare const UpdateOrganizationSchema: z.ZodObject<{
16
- name: z.ZodOptional<z.ZodString>;
17
- avatarUrl: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>>;
18
- }, z.core.$strip>;
19
- export type UpdateOrganization = z.infer<typeof UpdateOrganizationSchema>;
20
- export declare const AddMemberSchema: z.ZodObject<{
21
- userId: z.ZodString;
22
- role: z.ZodDefault<z.ZodEnum<{
23
- ADMIN: "ADMIN";
24
- MEMBER: "MEMBER";
25
- }>>;
26
- }, z.core.$strip>;
27
- export type AddMember = z.infer<typeof AddMemberSchema>;
28
- export declare const MembershipWithUserSchema: z.ZodObject<{
29
- id: z.ZodUUID;
30
- userId: z.ZodUUID;
31
- orgId: z.ZodUUID;
32
- role: z.ZodString;
33
- createdAt: z.ZodNumber;
34
- user: z.ZodObject<{
35
- id: z.ZodUUID;
36
- email: z.ZodString;
37
- name: z.ZodString;
38
- avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39
- }, z.core.$strip>;
40
- }, z.core.$strip>;
41
- export type MembershipWithUser = z.infer<typeof MembershipWithUserSchema>;
42
- export declare const OrgIdParamSchema: z.ZodObject<{
43
- orgId: z.ZodString;
44
- }, z.core.$strip>;
45
- export type OrgIdParam = z.infer<typeof OrgIdParamSchema>;
46
- export declare const MembershipIdParamSchema: z.ZodObject<{
47
- id: z.ZodString;
48
- }, z.core.$strip>;
49
- export type MembershipIdParam = z.infer<typeof MembershipIdParamSchema>;
50
- export declare const OrganizationResponseSchema: z.ZodObject<{
51
- organization: z.ZodObject<{
52
- id: z.ZodUUID;
53
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
54
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
55
- name: z.ZodString;
56
- avatarUrl: z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>;
57
- }, z.core.$strip>;
58
- }, z.core.$strip>;
59
- export type OrganizationResponse = z.infer<typeof OrganizationResponseSchema>;
60
- export declare const OrganizationsResponseSchema: z.ZodObject<{
61
- organizations: z.ZodArray<z.ZodObject<{
62
- id: z.ZodUUID;
63
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
64
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
65
- name: z.ZodString;
66
- avatarUrl: z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>;
67
- }, z.core.$strip>>;
68
- }, z.core.$strip>;
69
- export type OrganizationsResponse = z.infer<typeof OrganizationsResponseSchema>;
70
- export declare const MembersResponseSchema: z.ZodObject<{
71
- members: z.ZodArray<z.ZodObject<{
72
- id: z.ZodUUID;
73
- userId: z.ZodUUID;
74
- orgId: z.ZodUUID;
75
- role: z.ZodString;
76
- createdAt: z.ZodNumber;
77
- user: z.ZodObject<{
78
- id: z.ZodUUID;
79
- email: z.ZodString;
80
- name: z.ZodString;
81
- avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
82
- }, z.core.$strip>;
83
- }, z.core.$strip>>;
84
- }, z.core.$strip>;
85
- export type MembersResponse = z.infer<typeof MembersResponseSchema>;
86
- export declare const MembershipResponseSchema: z.ZodObject<{
87
- membership: z.ZodObject<{
88
- id: z.ZodUUID;
89
- userId: z.ZodUUID;
90
- orgId: z.ZodUUID;
91
- role: z.ZodString;
92
- createdAt: z.ZodNumber;
93
- user: z.ZodObject<{
94
- id: z.ZodUUID;
95
- email: z.ZodString;
96
- name: z.ZodString;
97
- avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98
- }, z.core.$strip>;
99
- }, z.core.$strip>;
100
- }, z.core.$strip>;
101
- export type MembershipResponse = z.infer<typeof MembershipResponseSchema>;
102
- //# sourceMappingURL=organization.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"organization.d.ts","sourceRoot":"","sources":["../../src/models/organization.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,kBAAkB;;;;;;iBAQ7B,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,eAAO,MAAM,wBAAwB;;;iBAGnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,wBAAwB;;;iBAInC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,eAAe;;;;;;iBAG1B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAExD,eAAO,MAAM,wBAAwB;;;;;;;;;;;;iBAYnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAM1E,eAAO,MAAM,gBAAgB;;iBAE3B,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE1D,eAAO,MAAM,uBAAuB;;iBAElC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAMxE,eAAO,MAAM,0BAA0B;;;;;;;;iBAErC,CAAC;AAEH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE9E,eAAO,MAAM,2BAA2B;;;;;;;;iBAEtC,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;iBAEhC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;iBAEnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
@@ -1,61 +0,0 @@
1
- import { z } from "zod";
2
- import { SprintStatus } from "../enums";
3
- export declare const SprintSchema: z.ZodObject<{
4
- id: z.ZodUUID;
5
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
6
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
7
- workspaceId: z.ZodOptional<z.ZodNullable<z.ZodUUID>>;
8
- name: z.ZodString;
9
- status: z.ZodEnum<typeof SprintStatus>;
10
- startDate: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>>;
11
- endDate: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>>;
12
- }, z.core.$strip>;
13
- export type Sprint = z.infer<typeof SprintSchema>;
14
- export declare const CreateSprintSchema: z.ZodObject<{
15
- name: z.ZodString;
16
- startDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
17
- endDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
18
- taskIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
19
- }, z.core.$strip>;
20
- export type CreateSprint = z.infer<typeof CreateSprintSchema>;
21
- export declare const UpdateSprintSchema: z.ZodObject<{
22
- workspaceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodUUID>>>;
23
- status: z.ZodOptional<z.ZodEnum<typeof SprintStatus>>;
24
- name: z.ZodOptional<z.ZodString>;
25
- startDate: z.ZodNullable<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
26
- endDate: z.ZodNullable<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
27
- }, z.core.$strip>;
28
- export type UpdateSprint = z.infer<typeof UpdateSprintSchema>;
29
- export declare const SprintIdParamSchema: z.ZodObject<{
30
- id: z.ZodString;
31
- }, z.core.$strip>;
32
- export type SprintIdParam = z.infer<typeof SprintIdParamSchema>;
33
- export declare const SprintQuerySchema: z.ZodObject<{}, z.core.$strip>;
34
- export type SprintQuery = z.infer<typeof SprintQuerySchema>;
35
- export declare const SprintResponseSchema: z.ZodObject<{
36
- sprint: z.ZodObject<{
37
- id: z.ZodUUID;
38
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
39
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
40
- workspaceId: z.ZodOptional<z.ZodNullable<z.ZodUUID>>;
41
- name: z.ZodString;
42
- status: z.ZodEnum<typeof SprintStatus>;
43
- startDate: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>>;
44
- endDate: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>>;
45
- }, z.core.$strip>;
46
- }, z.core.$strip>;
47
- export type SprintResponse = z.infer<typeof SprintResponseSchema>;
48
- export declare const SprintsResponseSchema: z.ZodObject<{
49
- sprints: z.ZodArray<z.ZodObject<{
50
- id: z.ZodUUID;
51
- createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
52
- updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>;
53
- workspaceId: z.ZodOptional<z.ZodNullable<z.ZodUUID>>;
54
- name: z.ZodString;
55
- status: z.ZodEnum<typeof SprintStatus>;
56
- startDate: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>>;
57
- endDate: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>>;
58
- }, z.core.$strip>>;
59
- }, z.core.$strip>;
60
- export type SprintsResponse = z.infer<typeof SprintsResponseSchema>;
61
- //# sourceMappingURL=sprint.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"sprint.d.ts","sourceRoot":"","sources":["../../src/models/sprint.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAExC,eAAO,MAAM,YAAY;;;;;;;;;iBAMvB,CAAC;AAEH,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAElD,eAAO,MAAM,kBAAkB;;;;;iBAK7B,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,eAAO,MAAM,kBAAkB;;;;;;iBAY3B,CAAC;AAEL,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAM9D,eAAO,MAAM,mBAAmB;;iBAE9B,CAAC;AAEH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,iBAAiB,gCAAe,CAAC;AAE9C,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAM5D,eAAO,MAAM,oBAAoB;;;;;;;;;;;iBAE/B,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,qBAAqB;;;;;;;;;;;iBAEhC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}