@contractspec/example.saas-boilerplate 1.44.1 → 1.45.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 (46) hide show
  1. package/.turbo/turbo-build$colon$bundle.log +24 -24
  2. package/.turbo/turbo-build.log +24 -24
  3. package/CHANGELOG.md +31 -0
  4. package/dist/billing/billing.event.d.ts +21 -21
  5. package/dist/billing/billing.event.js +3 -3
  6. package/dist/billing/billing.event.js.map +1 -1
  7. package/dist/billing/billing.operations.d.ts +43 -43
  8. package/dist/billing/billing.operations.d.ts.map +1 -1
  9. package/dist/billing/billing.operations.js +5 -5
  10. package/dist/billing/billing.operations.js.map +1 -1
  11. package/dist/billing/billing.presentation.js +2 -2
  12. package/dist/billing/billing.presentation.js.map +1 -1
  13. package/dist/billing/billing.schema.d.ts +47 -47
  14. package/dist/dashboard/dashboard.presentation.js +2 -2
  15. package/dist/dashboard/dashboard.presentation.js.map +1 -1
  16. package/dist/example.d.ts +3 -33
  17. package/dist/example.d.ts.map +1 -1
  18. package/dist/example.js +16 -11
  19. package/dist/example.js.map +1 -1
  20. package/dist/project/project.entity.d.ts +24 -24
  21. package/dist/project/project.enum.d.ts +3 -3
  22. package/dist/project/project.event.d.ts +22 -22
  23. package/dist/project/project.event.js +4 -4
  24. package/dist/project/project.event.js.map +1 -1
  25. package/dist/project/project.operations.d.ts +106 -106
  26. package/dist/project/project.operations.d.ts.map +1 -1
  27. package/dist/project/project.operations.js +8 -8
  28. package/dist/project/project.operations.js.map +1 -1
  29. package/dist/project/project.presentation.js +2 -2
  30. package/dist/project/project.presentation.js.map +1 -1
  31. package/dist/project/project.schema.d.ts +54 -54
  32. package/dist/saas-boilerplate.feature.js +38 -38
  33. package/dist/saas-boilerplate.feature.js.map +1 -1
  34. package/dist/settings/settings.entity.d.ts +24 -24
  35. package/dist/settings/settings.enum.d.ts +2 -2
  36. package/package.json +10 -10
  37. package/src/billing/billing.event.ts +3 -3
  38. package/src/billing/billing.operations.ts +5 -5
  39. package/src/billing/billing.presentation.ts +2 -2
  40. package/src/dashboard/dashboard.presentation.ts +2 -2
  41. package/src/example.ts +16 -9
  42. package/src/project/project.event.ts +4 -4
  43. package/src/project/project.operations.ts +8 -8
  44. package/src/project/project.presentation.ts +2 -2
  45. package/src/saas-boilerplate.feature.ts +42 -38
  46. package/tsconfig.tsbuildinfo +1 -1
@@ -1,89 +1,89 @@
1
- import * as _contractspec_lib_schema186 from "@contractspec/lib.schema";
2
- import * as _contractspec_lib_contracts7 from "@contractspec/lib.contracts";
1
+ import * as _contractspec_lib_schema172 from "@contractspec/lib.schema";
2
+ import * as _contractspec_lib_contracts6 from "@contractspec/lib.contracts";
3
3
 
4
4
  //#region src/project/project.event.d.ts
5
5
  /**
6
6
  * Event: A new project has been created.
7
7
  */
8
- declare const ProjectCreatedEvent: _contractspec_lib_contracts7.EventSpec<_contractspec_lib_schema186.SchemaModel<{
8
+ declare const ProjectCreatedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema172.SchemaModel<{
9
9
  projectId: {
10
- type: _contractspec_lib_schema186.FieldType<string, string>;
10
+ type: _contractspec_lib_schema172.FieldType<string, string>;
11
11
  isOptional: false;
12
12
  };
13
13
  name: {
14
- type: _contractspec_lib_schema186.FieldType<string, string>;
14
+ type: _contractspec_lib_schema172.FieldType<string, string>;
15
15
  isOptional: false;
16
16
  };
17
17
  organizationId: {
18
- type: _contractspec_lib_schema186.FieldType<string, string>;
18
+ type: _contractspec_lib_schema172.FieldType<string, string>;
19
19
  isOptional: false;
20
20
  };
21
21
  createdBy: {
22
- type: _contractspec_lib_schema186.FieldType<string, string>;
22
+ type: _contractspec_lib_schema172.FieldType<string, string>;
23
23
  isOptional: false;
24
24
  };
25
25
  createdAt: {
26
- type: _contractspec_lib_schema186.FieldType<Date, string>;
26
+ type: _contractspec_lib_schema172.FieldType<Date, string>;
27
27
  isOptional: false;
28
28
  };
29
29
  }>>;
30
30
  /**
31
31
  * Event: A project has been updated.
32
32
  */
33
- declare const ProjectUpdatedEvent: _contractspec_lib_contracts7.EventSpec<_contractspec_lib_schema186.SchemaModel<{
33
+ declare const ProjectUpdatedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema172.SchemaModel<{
34
34
  projectId: {
35
- type: _contractspec_lib_schema186.FieldType<string, string>;
35
+ type: _contractspec_lib_schema172.FieldType<string, string>;
36
36
  isOptional: false;
37
37
  };
38
38
  updatedFields: {
39
- type: _contractspec_lib_schema186.FieldType<string, string>;
39
+ type: _contractspec_lib_schema172.FieldType<string, string>;
40
40
  isArray: true;
41
41
  isOptional: false;
42
42
  };
43
43
  updatedBy: {
44
- type: _contractspec_lib_schema186.FieldType<string, string>;
44
+ type: _contractspec_lib_schema172.FieldType<string, string>;
45
45
  isOptional: false;
46
46
  };
47
47
  updatedAt: {
48
- type: _contractspec_lib_schema186.FieldType<Date, string>;
48
+ type: _contractspec_lib_schema172.FieldType<Date, string>;
49
49
  isOptional: false;
50
50
  };
51
51
  }>>;
52
52
  /**
53
53
  * Event: A project has been deleted.
54
54
  */
55
- declare const ProjectDeletedEvent: _contractspec_lib_contracts7.EventSpec<_contractspec_lib_schema186.SchemaModel<{
55
+ declare const ProjectDeletedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema172.SchemaModel<{
56
56
  projectId: {
57
- type: _contractspec_lib_schema186.FieldType<string, string>;
57
+ type: _contractspec_lib_schema172.FieldType<string, string>;
58
58
  isOptional: false;
59
59
  };
60
60
  organizationId: {
61
- type: _contractspec_lib_schema186.FieldType<string, string>;
61
+ type: _contractspec_lib_schema172.FieldType<string, string>;
62
62
  isOptional: false;
63
63
  };
64
64
  deletedBy: {
65
- type: _contractspec_lib_schema186.FieldType<string, string>;
65
+ type: _contractspec_lib_schema172.FieldType<string, string>;
66
66
  isOptional: false;
67
67
  };
68
68
  deletedAt: {
69
- type: _contractspec_lib_schema186.FieldType<Date, string>;
69
+ type: _contractspec_lib_schema172.FieldType<Date, string>;
70
70
  isOptional: false;
71
71
  };
72
72
  }>>;
73
73
  /**
74
74
  * Event: A project has been archived.
75
75
  */
76
- declare const ProjectArchivedEvent: _contractspec_lib_contracts7.EventSpec<_contractspec_lib_schema186.SchemaModel<{
76
+ declare const ProjectArchivedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema172.SchemaModel<{
77
77
  projectId: {
78
- type: _contractspec_lib_schema186.FieldType<string, string>;
78
+ type: _contractspec_lib_schema172.FieldType<string, string>;
79
79
  isOptional: false;
80
80
  };
81
81
  archivedBy: {
82
- type: _contractspec_lib_schema186.FieldType<string, string>;
82
+ type: _contractspec_lib_schema172.FieldType<string, string>;
83
83
  isOptional: false;
84
84
  };
85
85
  archivedAt: {
86
- type: _contractspec_lib_schema186.FieldType<Date, string>;
86
+ type: _contractspec_lib_schema172.FieldType<Date, string>;
87
87
  isOptional: false;
88
88
  };
89
89
  }>>;
@@ -109,7 +109,7 @@ const ProjectArchivedPayload = defineSchemaModel({
109
109
  const ProjectCreatedEvent = defineEvent({
110
110
  meta: {
111
111
  key: "project.created",
112
- version: 1,
112
+ version: "1.0.0",
113
113
  description: "A new project has been created.",
114
114
  stability: "stable",
115
115
  owners: ["@saas-team"],
@@ -123,7 +123,7 @@ const ProjectCreatedEvent = defineEvent({
123
123
  const ProjectUpdatedEvent = defineEvent({
124
124
  meta: {
125
125
  key: "project.updated",
126
- version: 1,
126
+ version: "1.0.0",
127
127
  description: "A project has been updated.",
128
128
  stability: "stable",
129
129
  owners: ["@saas-team"],
@@ -137,7 +137,7 @@ const ProjectUpdatedEvent = defineEvent({
137
137
  const ProjectDeletedEvent = defineEvent({
138
138
  meta: {
139
139
  key: "project.deleted",
140
- version: 1,
140
+ version: "1.0.0",
141
141
  description: "A project has been deleted.",
142
142
  stability: "stable",
143
143
  owners: ["@saas-team"],
@@ -151,7 +151,7 @@ const ProjectDeletedEvent = defineEvent({
151
151
  const ProjectArchivedEvent = defineEvent({
152
152
  meta: {
153
153
  key: "project.archived",
154
- version: 1,
154
+ version: "1.0.0",
155
155
  description: "A project has been archived.",
156
156
  stability: "stable",
157
157
  owners: ["@saas-team"],
@@ -1 +1 @@
1
- {"version":3,"file":"project.event.js","names":[],"sources":["../../src/project/project.event.ts"],"sourcesContent":["import { ScalarTypeEnum, defineSchemaModel } from '@contractspec/lib.schema';\nimport { defineEvent } from '@contractspec/lib.contracts';\n\n/**\n * Payload when a project is created.\n */\nconst ProjectCreatedPayload = defineSchemaModel({\n name: 'ProjectCreatedPayload',\n description: 'Payload when a project is created',\n fields: {\n projectId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n name: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n organizationId: {\n type: ScalarTypeEnum.String_unsecure(),\n isOptional: false,\n },\n createdBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n createdAt: { type: ScalarTypeEnum.DateTime(), isOptional: false },\n },\n});\n\n/**\n * Payload when a project is updated.\n */\nconst ProjectUpdatedPayload = defineSchemaModel({\n name: 'ProjectUpdatedPayload',\n description: 'Payload when a project is updated',\n fields: {\n projectId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n updatedFields: {\n type: ScalarTypeEnum.String_unsecure(),\n isArray: true,\n isOptional: false,\n },\n updatedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n updatedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false },\n },\n});\n\n/**\n * Payload when a project is deleted.\n */\nconst ProjectDeletedPayload = defineSchemaModel({\n name: 'ProjectDeletedPayload',\n description: 'Payload when a project is deleted',\n fields: {\n projectId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n organizationId: {\n type: ScalarTypeEnum.String_unsecure(),\n isOptional: false,\n },\n deletedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n deletedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false },\n },\n});\n\n/**\n * Payload when a project is archived.\n */\nconst ProjectArchivedPayload = defineSchemaModel({\n name: 'ProjectArchivedPayload',\n description: 'Payload when a project is archived',\n fields: {\n projectId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n archivedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n archivedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false },\n },\n});\n\n/**\n * Event: A new project has been created.\n */\nexport const ProjectCreatedEvent = defineEvent({\n meta: {\n key: 'project.created',\n version: 1,\n description: 'A new project has been created.',\n stability: 'stable',\n owners: ['@saas-team'],\n tags: ['project', 'created'],\n },\n payload: ProjectCreatedPayload,\n});\n\n/**\n * Event: A project has been updated.\n */\nexport const ProjectUpdatedEvent = defineEvent({\n meta: {\n key: 'project.updated',\n version: 1,\n description: 'A project has been updated.',\n stability: 'stable',\n owners: ['@saas-team'],\n tags: ['project', 'updated'],\n },\n payload: ProjectUpdatedPayload,\n});\n\n/**\n * Event: A project has been deleted.\n */\nexport const ProjectDeletedEvent = defineEvent({\n meta: {\n key: 'project.deleted',\n version: 1,\n description: 'A project has been deleted.',\n stability: 'stable',\n owners: ['@saas-team'],\n tags: ['project', 'deleted'],\n },\n payload: ProjectDeletedPayload,\n});\n\n/**\n * Event: A project has been archived.\n */\nexport const ProjectArchivedEvent = defineEvent({\n meta: {\n key: 'project.archived',\n version: 1,\n description: 'A project has been archived.',\n stability: 'stable',\n owners: ['@saas-team'],\n tags: ['project', 'archived'],\n },\n payload: ProjectArchivedPayload,\n});\n"],"mappings":";;;;;;;AAMA,MAAM,wBAAwB,kBAAkB;CAC9C,MAAM;CACN,aAAa;CACb,QAAQ;EACN,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,MAAM;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACnE,gBAAgB;GACd,MAAM,eAAe,iBAAiB;GACtC,YAAY;GACb;EACD,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,WAAW;GAAE,MAAM,eAAe,UAAU;GAAE,YAAY;GAAO;EAClE;CACF,CAAC;;;;AAKF,MAAM,wBAAwB,kBAAkB;CAC9C,MAAM;CACN,aAAa;CACb,QAAQ;EACN,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,eAAe;GACb,MAAM,eAAe,iBAAiB;GACtC,SAAS;GACT,YAAY;GACb;EACD,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,WAAW;GAAE,MAAM,eAAe,UAAU;GAAE,YAAY;GAAO;EAClE;CACF,CAAC;;;;AAKF,MAAM,wBAAwB,kBAAkB;CAC9C,MAAM;CACN,aAAa;CACb,QAAQ;EACN,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,gBAAgB;GACd,MAAM,eAAe,iBAAiB;GACtC,YAAY;GACb;EACD,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,WAAW;GAAE,MAAM,eAAe,UAAU;GAAE,YAAY;GAAO;EAClE;CACF,CAAC;;;;AAKF,MAAM,yBAAyB,kBAAkB;CAC/C,MAAM;CACN,aAAa;CACb,QAAQ;EACN,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,YAAY;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACzE,YAAY;GAAE,MAAM,eAAe,UAAU;GAAE,YAAY;GAAO;EACnE;CACF,CAAC;;;;AAKF,MAAa,sBAAsB,YAAY;CAC7C,MAAM;EACJ,KAAK;EACL,SAAS;EACT,aAAa;EACb,WAAW;EACX,QAAQ,CAAC,aAAa;EACtB,MAAM,CAAC,WAAW,UAAU;EAC7B;CACD,SAAS;CACV,CAAC;;;;AAKF,MAAa,sBAAsB,YAAY;CAC7C,MAAM;EACJ,KAAK;EACL,SAAS;EACT,aAAa;EACb,WAAW;EACX,QAAQ,CAAC,aAAa;EACtB,MAAM,CAAC,WAAW,UAAU;EAC7B;CACD,SAAS;CACV,CAAC;;;;AAKF,MAAa,sBAAsB,YAAY;CAC7C,MAAM;EACJ,KAAK;EACL,SAAS;EACT,aAAa;EACb,WAAW;EACX,QAAQ,CAAC,aAAa;EACtB,MAAM,CAAC,WAAW,UAAU;EAC7B;CACD,SAAS;CACV,CAAC;;;;AAKF,MAAa,uBAAuB,YAAY;CAC9C,MAAM;EACJ,KAAK;EACL,SAAS;EACT,aAAa;EACb,WAAW;EACX,QAAQ,CAAC,aAAa;EACtB,MAAM,CAAC,WAAW,WAAW;EAC9B;CACD,SAAS;CACV,CAAC"}
1
+ {"version":3,"file":"project.event.js","names":[],"sources":["../../src/project/project.event.ts"],"sourcesContent":["import { ScalarTypeEnum, defineSchemaModel } from '@contractspec/lib.schema';\nimport { defineEvent } from '@contractspec/lib.contracts';\n\n/**\n * Payload when a project is created.\n */\nconst ProjectCreatedPayload = defineSchemaModel({\n name: 'ProjectCreatedPayload',\n description: 'Payload when a project is created',\n fields: {\n projectId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n name: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n organizationId: {\n type: ScalarTypeEnum.String_unsecure(),\n isOptional: false,\n },\n createdBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n createdAt: { type: ScalarTypeEnum.DateTime(), isOptional: false },\n },\n});\n\n/**\n * Payload when a project is updated.\n */\nconst ProjectUpdatedPayload = defineSchemaModel({\n name: 'ProjectUpdatedPayload',\n description: 'Payload when a project is updated',\n fields: {\n projectId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n updatedFields: {\n type: ScalarTypeEnum.String_unsecure(),\n isArray: true,\n isOptional: false,\n },\n updatedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n updatedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false },\n },\n});\n\n/**\n * Payload when a project is deleted.\n */\nconst ProjectDeletedPayload = defineSchemaModel({\n name: 'ProjectDeletedPayload',\n description: 'Payload when a project is deleted',\n fields: {\n projectId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n organizationId: {\n type: ScalarTypeEnum.String_unsecure(),\n isOptional: false,\n },\n deletedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n deletedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false },\n },\n});\n\n/**\n * Payload when a project is archived.\n */\nconst ProjectArchivedPayload = defineSchemaModel({\n name: 'ProjectArchivedPayload',\n description: 'Payload when a project is archived',\n fields: {\n projectId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n archivedBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n archivedAt: { type: ScalarTypeEnum.DateTime(), isOptional: false },\n },\n});\n\n/**\n * Event: A new project has been created.\n */\nexport const ProjectCreatedEvent = defineEvent({\n meta: {\n key: 'project.created',\n version: '1.0.0',\n description: 'A new project has been created.',\n stability: 'stable',\n owners: ['@saas-team'],\n tags: ['project', 'created'],\n },\n payload: ProjectCreatedPayload,\n});\n\n/**\n * Event: A project has been updated.\n */\nexport const ProjectUpdatedEvent = defineEvent({\n meta: {\n key: 'project.updated',\n version: '1.0.0',\n description: 'A project has been updated.',\n stability: 'stable',\n owners: ['@saas-team'],\n tags: ['project', 'updated'],\n },\n payload: ProjectUpdatedPayload,\n});\n\n/**\n * Event: A project has been deleted.\n */\nexport const ProjectDeletedEvent = defineEvent({\n meta: {\n key: 'project.deleted',\n version: '1.0.0',\n description: 'A project has been deleted.',\n stability: 'stable',\n owners: ['@saas-team'],\n tags: ['project', 'deleted'],\n },\n payload: ProjectDeletedPayload,\n});\n\n/**\n * Event: A project has been archived.\n */\nexport const ProjectArchivedEvent = defineEvent({\n meta: {\n key: 'project.archived',\n version: '1.0.0',\n description: 'A project has been archived.',\n stability: 'stable',\n owners: ['@saas-team'],\n tags: ['project', 'archived'],\n },\n payload: ProjectArchivedPayload,\n});\n"],"mappings":";;;;;;;AAMA,MAAM,wBAAwB,kBAAkB;CAC9C,MAAM;CACN,aAAa;CACb,QAAQ;EACN,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,MAAM;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACnE,gBAAgB;GACd,MAAM,eAAe,iBAAiB;GACtC,YAAY;GACb;EACD,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,WAAW;GAAE,MAAM,eAAe,UAAU;GAAE,YAAY;GAAO;EAClE;CACF,CAAC;;;;AAKF,MAAM,wBAAwB,kBAAkB;CAC9C,MAAM;CACN,aAAa;CACb,QAAQ;EACN,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,eAAe;GACb,MAAM,eAAe,iBAAiB;GACtC,SAAS;GACT,YAAY;GACb;EACD,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,WAAW;GAAE,MAAM,eAAe,UAAU;GAAE,YAAY;GAAO;EAClE;CACF,CAAC;;;;AAKF,MAAM,wBAAwB,kBAAkB;CAC9C,MAAM;CACN,aAAa;CACb,QAAQ;EACN,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,gBAAgB;GACd,MAAM,eAAe,iBAAiB;GACtC,YAAY;GACb;EACD,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,WAAW;GAAE,MAAM,eAAe,UAAU;GAAE,YAAY;GAAO;EAClE;CACF,CAAC;;;;AAKF,MAAM,yBAAyB,kBAAkB;CAC/C,MAAM;CACN,aAAa;CACb,QAAQ;EACN,WAAW;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACxE,YAAY;GAAE,MAAM,eAAe,iBAAiB;GAAE,YAAY;GAAO;EACzE,YAAY;GAAE,MAAM,eAAe,UAAU;GAAE,YAAY;GAAO;EACnE;CACF,CAAC;;;;AAKF,MAAa,sBAAsB,YAAY;CAC7C,MAAM;EACJ,KAAK;EACL,SAAS;EACT,aAAa;EACb,WAAW;EACX,QAAQ,CAAC,aAAa;EACtB,MAAM,CAAC,WAAW,UAAU;EAC7B;CACD,SAAS;CACV,CAAC;;;;AAKF,MAAa,sBAAsB,YAAY;CAC7C,MAAM;EACJ,KAAK;EACL,SAAS;EACT,aAAa;EACb,WAAW;EACX,QAAQ,CAAC,aAAa;EACtB,MAAM,CAAC,WAAW,UAAU;EAC7B;CACD,SAAS;CACV,CAAC;;;;AAKF,MAAa,sBAAsB,YAAY;CAC7C,MAAM;EACJ,KAAK;EACL,SAAS;EACT,aAAa;EACb,WAAW;EACX,QAAQ,CAAC,aAAa;EACtB,MAAM,CAAC,WAAW,UAAU;EAC7B;CACD,SAAS;CACV,CAAC;;;;AAKF,MAAa,uBAAuB,YAAY;CAC9C,MAAM;EACJ,KAAK;EACL,SAAS;EACT,aAAa;EACb,WAAW;EACX,QAAQ,CAAC,aAAa;EACtB,MAAM,CAAC,WAAW,WAAW;EAC9B;CACD,SAAS;CACV,CAAC"}