@dxos/functions 0.8.4-main.21d9917 → 0.8.4-main.2244d791bb

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.
@@ -7,73 +7,73 @@ import { Obj, QueryAST, Type } from '@dxos/echo';
7
7
  */
8
8
  export declare const Kinds: readonly ["email", "queue", "subscription", "timer", "webhook"];
9
9
  export type Kind = (typeof Kinds)[number];
10
- export declare const EmailSpec: Schema.mutable<Schema.Struct<{
10
+ export declare const EmailSpec: Schema.Struct<{
11
11
  kind: Schema.Literal<["email"]>;
12
- }>>;
12
+ }>;
13
13
  export type EmailSpec = Schema.Schema.Type<typeof EmailSpec>;
14
- export declare const QueueSpec: Schema.mutable<Schema.Struct<{
14
+ export declare const QueueSpec: Schema.Struct<{
15
15
  kind: Schema.Literal<["queue"]>;
16
16
  queue: Schema.refine<string, typeof Schema.NonEmptyString>;
17
- }>>;
17
+ }>;
18
18
  export type QueueSpec = Schema.Schema.Type<typeof QueueSpec>;
19
19
  /**
20
20
  * Subscription.
21
21
  */
22
- export declare const SubscriptionSpec: Schema.mutable<Schema.Struct<{
22
+ export declare const SubscriptionSpec: Schema.Struct<{
23
23
  kind: Schema.Literal<["subscription"]>;
24
- query: Schema.mutable<Schema.Struct<{
24
+ query: Schema.Struct<{
25
25
  raw: Schema.optional<Schema.SchemaClass<string, string, never>>;
26
- ast: Schema.Schema<QueryAST.QuerySelectClause | QueryAST.QueryFilterClause | QueryAST.QueryReferenceTraversalClause | QueryAST.QueryIncomingReferencesClause | QueryAST.QueryRelationClause | QueryAST.QueryRelationTraversalClause | QueryAST.QueryUnionClause | QueryAST.QuerySetDifferenceClause | QueryAST.QueryOrderClause | QueryAST.QueryOptionsClause | QueryAST.QueryLimitClause, QueryAST.QuerySelectClause | QueryAST.QueryFilterClause | QueryAST.QueryReferenceTraversalClause | QueryAST.QueryIncomingReferencesClause | QueryAST.QueryRelationClause | QueryAST.QueryRelationTraversalClause | QueryAST.QueryUnionClause | QueryAST.QuerySetDifferenceClause | QueryAST.QueryOrderClause | QueryAST.QueryOptionsClause | QueryAST.QueryLimitClause, never>;
27
- }>>;
26
+ ast: Schema.Schema<QueryAST.QuerySelectClause | QueryAST.QueryFilterClause | QueryAST.QueryReferenceTraversalClause | QueryAST.QueryIncomingReferencesClause | QueryAST.QueryRelationClause | QueryAST.QueryRelationTraversalClause | QueryAST.QueryHierarchyTraversalClause | QueryAST.QueryUnionClause | QueryAST.QuerySetDifferenceClause | QueryAST.QueryOrderClause | QueryAST.QueryOptionsClause | QueryAST.QueryLimitClause, QueryAST.QuerySelectClause | QueryAST.QueryFilterClause | QueryAST.QueryReferenceTraversalClause | QueryAST.QueryIncomingReferencesClause | QueryAST.QueryRelationClause | QueryAST.QueryRelationTraversalClause | QueryAST.QueryHierarchyTraversalClause | QueryAST.QueryUnionClause | QueryAST.QuerySetDifferenceClause | QueryAST.QueryOrderClause | QueryAST.QueryOptionsClause | QueryAST.QueryLimitClause, never>;
27
+ }>;
28
28
  options: Schema.optional<Schema.Struct<{
29
29
  deep: Schema.optional<Schema.SchemaClass<boolean, boolean, never>>;
30
30
  delay: Schema.optional<Schema.SchemaClass<number, number, never>>;
31
31
  }>>;
32
- }>>;
32
+ }>;
33
33
  export type SubscriptionSpec = Schema.Schema.Type<typeof SubscriptionSpec>;
34
34
  /**
35
35
  * Cron timer.
36
36
  */
37
- export declare const TimerSpec: Schema.mutable<Schema.Struct<{
37
+ export declare const TimerSpec: Schema.Struct<{
38
38
  kind: Schema.Literal<["timer"]>;
39
39
  cron: Schema.SchemaClass<string, string, never>;
40
- }>>;
40
+ }>;
41
41
  export type TimerSpec = Schema.Schema.Type<typeof TimerSpec>;
42
42
  /**
43
43
  * Webhook.
44
44
  */
45
- export declare const WebhookSpec: Schema.mutable<Schema.Struct<{
45
+ export declare const WebhookSpec: Schema.Struct<{
46
46
  kind: Schema.Literal<["webhook"]>;
47
47
  method: Schema.optional<Schema.SchemaClass<string, string, never>>;
48
48
  port: Schema.optional<Schema.SchemaClass<number, number, never>>;
49
- }>>;
49
+ }>;
50
50
  export type WebhookSpec = Schema.Schema.Type<typeof WebhookSpec>;
51
51
  /**
52
52
  * Trigger schema.
53
53
  */
54
- export declare const Spec: Schema.Union<[Schema.mutable<Schema.Struct<{
54
+ export declare const Spec: Schema.Union<[Schema.Struct<{
55
55
  kind: Schema.Literal<["email"]>;
56
- }>>, Schema.mutable<Schema.Struct<{
56
+ }>, Schema.Struct<{
57
57
  kind: Schema.Literal<["queue"]>;
58
58
  queue: Schema.refine<string, typeof Schema.NonEmptyString>;
59
- }>>, Schema.mutable<Schema.Struct<{
59
+ }>, Schema.Struct<{
60
60
  kind: Schema.Literal<["subscription"]>;
61
- query: Schema.mutable<Schema.Struct<{
61
+ query: Schema.Struct<{
62
62
  raw: Schema.optional<Schema.SchemaClass<string, string, never>>;
63
- ast: Schema.Schema<QueryAST.QuerySelectClause | QueryAST.QueryFilterClause | QueryAST.QueryReferenceTraversalClause | QueryAST.QueryIncomingReferencesClause | QueryAST.QueryRelationClause | QueryAST.QueryRelationTraversalClause | QueryAST.QueryUnionClause | QueryAST.QuerySetDifferenceClause | QueryAST.QueryOrderClause | QueryAST.QueryOptionsClause | QueryAST.QueryLimitClause, QueryAST.QuerySelectClause | QueryAST.QueryFilterClause | QueryAST.QueryReferenceTraversalClause | QueryAST.QueryIncomingReferencesClause | QueryAST.QueryRelationClause | QueryAST.QueryRelationTraversalClause | QueryAST.QueryUnionClause | QueryAST.QuerySetDifferenceClause | QueryAST.QueryOrderClause | QueryAST.QueryOptionsClause | QueryAST.QueryLimitClause, never>;
64
- }>>;
63
+ ast: Schema.Schema<QueryAST.QuerySelectClause | QueryAST.QueryFilterClause | QueryAST.QueryReferenceTraversalClause | QueryAST.QueryIncomingReferencesClause | QueryAST.QueryRelationClause | QueryAST.QueryRelationTraversalClause | QueryAST.QueryHierarchyTraversalClause | QueryAST.QueryUnionClause | QueryAST.QuerySetDifferenceClause | QueryAST.QueryOrderClause | QueryAST.QueryOptionsClause | QueryAST.QueryLimitClause, QueryAST.QuerySelectClause | QueryAST.QueryFilterClause | QueryAST.QueryReferenceTraversalClause | QueryAST.QueryIncomingReferencesClause | QueryAST.QueryRelationClause | QueryAST.QueryRelationTraversalClause | QueryAST.QueryHierarchyTraversalClause | QueryAST.QueryUnionClause | QueryAST.QuerySetDifferenceClause | QueryAST.QueryOrderClause | QueryAST.QueryOptionsClause | QueryAST.QueryLimitClause, never>;
64
+ }>;
65
65
  options: Schema.optional<Schema.Struct<{
66
66
  deep: Schema.optional<Schema.SchemaClass<boolean, boolean, never>>;
67
67
  delay: Schema.optional<Schema.SchemaClass<number, number, never>>;
68
68
  }>>;
69
- }>>, Schema.mutable<Schema.Struct<{
69
+ }>, Schema.Struct<{
70
70
  kind: Schema.Literal<["timer"]>;
71
71
  cron: Schema.SchemaClass<string, string, never>;
72
- }>>, Schema.mutable<Schema.Struct<{
72
+ }>, Schema.Struct<{
73
73
  kind: Schema.Literal<["webhook"]>;
74
74
  method: Schema.optional<Schema.SchemaClass<string, string, never>>;
75
75
  port: Schema.optional<Schema.SchemaClass<number, number, never>>;
76
- }>>]>;
76
+ }>]>;
77
77
  export type Spec = Schema.Schema.Type<typeof Spec>;
78
78
  /**
79
79
  * Function trigger.
@@ -87,30 +87,31 @@ declare const TriggerSchema: Type.Obj<{
87
87
  readonly inputNodeId?: string | undefined;
88
88
  readonly enabled?: boolean | undefined;
89
89
  readonly spec?: {
90
- kind: "email";
90
+ readonly kind: "email";
91
91
  } | {
92
- queue: string;
93
- kind: "queue";
92
+ readonly queue: string;
93
+ readonly kind: "queue";
94
94
  } | {
95
- kind: "subscription";
96
- query: {
97
- raw?: string | undefined;
98
- ast: QueryAST.QuerySelectClause | QueryAST.QueryFilterClause | QueryAST.QueryReferenceTraversalClause | QueryAST.QueryIncomingReferencesClause | QueryAST.QueryRelationClause | QueryAST.QueryRelationTraversalClause | QueryAST.QueryUnionClause | QueryAST.QuerySetDifferenceClause | QueryAST.QueryOrderClause | QueryAST.QueryOptionsClause | QueryAST.QueryLimitClause;
95
+ readonly kind: "subscription";
96
+ readonly query: {
97
+ readonly raw?: string | undefined;
98
+ readonly ast: QueryAST.QuerySelectClause | QueryAST.QueryFilterClause | QueryAST.QueryReferenceTraversalClause | QueryAST.QueryIncomingReferencesClause | QueryAST.QueryRelationClause | QueryAST.QueryRelationTraversalClause | QueryAST.QueryHierarchyTraversalClause | QueryAST.QueryUnionClause | QueryAST.QuerySetDifferenceClause | QueryAST.QueryOrderClause | QueryAST.QueryOptionsClause | QueryAST.QueryLimitClause;
99
99
  };
100
- options?: {
100
+ readonly options?: {
101
101
  readonly deep?: boolean | undefined;
102
102
  readonly delay?: number | undefined;
103
103
  } | undefined;
104
104
  } | {
105
- kind: "timer";
106
- cron: string;
105
+ readonly kind: "timer";
106
+ readonly cron: string;
107
107
  } | {
108
- kind: "webhook";
109
- method?: string | undefined;
110
- port?: number | undefined;
108
+ readonly kind: "webhook";
109
+ readonly method?: string | undefined;
110
+ readonly port?: number | undefined;
111
111
  } | undefined;
112
+ readonly concurrency?: number | undefined;
112
113
  readonly input?: {
113
- [x: string]: any;
114
+ readonly [x: string]: any;
114
115
  } | undefined;
115
116
  }, Schema.Struct.Fields>;
116
117
  export interface Trigger extends Schema.Schema.Type<typeof TriggerSchema> {
@@ -1 +1 @@
1
- {"version":3,"file":"Trigger.d.ts","sourceRoot":"","sources":["../../../../src/types/Trigger.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAGxC,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAKjD;;;;GAIG;AACH,eAAO,MAAM,KAAK,iEAAkE,CAAC;AACrF,MAAM,MAAM,IAAI,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;AAI1C,eAAO,MAAM,SAAS;;GAEC,CAAC;AACxB,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,SAAS,CAAC,CAAC;AAE7D,eAAO,MAAM,SAAS;;;GAKC,CAAC;AACxB,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,SAAS,CAAC,CAAC;AAE7D;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;GAcN,CAAC;AACxB,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE3E;;GAEG;AACH,eAAO,MAAM,SAAS;;;GAMC,CAAC;AACxB,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,SAAS,CAAC,CAAC;AAE7D;;GAEG;AACH,eAAO,MAAM,WAAW;;;;GAaD,CAAC;AACxB,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,WAAW,CAAC,CAAC;AAEjE;;GAEG;AACH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;KAEf,CAAC;AACH,MAAM,MAAM,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnD;;;;GAIG;AACH,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAsClB,CAAC;AAEF,MAAM,WAAW,OAAQ,SAAQ,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,aAAa,CAAC;CAAG;AAC5E,eAAO,MAAM,OAAO,EAAE,IAAI,CAAC,GAAG,CAAC,OAAO,CAAwB,CAAC;AAE/D,eAAO,MAAM,IAAI,GAAI,OAAO,GAAG,CAAC,SAAS,CAAC,OAAO,OAAO,CAAC,2GAA6B,CAAC"}
1
+ {"version":3,"file":"Trigger.d.ts","sourceRoot":"","sources":["../../../../src/types/Trigger.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAGxC,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAKjD;;;;GAIG;AACH,eAAO,MAAM,KAAK,iEAAkE,CAAC;AACrF,MAAM,MAAM,IAAI,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;AAI1C,eAAO,MAAM,SAAS;;EAEpB,CAAC;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,SAAS,CAAC,CAAC;AAE7D,eAAO,MAAM,SAAS;;;EAKpB,CAAC;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,SAAS,CAAC,CAAC;AAE7D;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;EAc3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE3E;;GAEG;AACH,eAAO,MAAM,SAAS;;;EAMpB,CAAC;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,SAAS,CAAC,CAAC;AAE7D;;GAEG;AACH,eAAO,MAAM,WAAW;;;;EAatB,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,WAAW,CAAC,CAAC;AAEjE;;GAEG;AACH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;IAEf,CAAC;AACH,MAAM,MAAM,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnD;;;;GAIG;AACH,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBA+ClB,CAAC;AAEF,MAAM,WAAW,OAAQ,SAAQ,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,aAAa,CAAC;CAAG;AAC5E,eAAO,MAAM,OAAO,EAAE,IAAI,CAAC,GAAG,CAAC,OAAO,CAAwB,CAAC;AAE/D,eAAO,MAAM,IAAI,GAAI,OAAO,GAAG,CAAC,SAAS,CAAC,OAAO,OAAO,CAAC,2GAA6B,CAAC"}
@@ -1,19 +1,19 @@
1
1
  import * as Schema from 'effect/Schema';
2
- export declare const EmailEvent: Schema.mutable<Schema.Struct<{
2
+ export declare const EmailEvent: Schema.Struct<{
3
3
  from: typeof Schema.String;
4
4
  to: typeof Schema.String;
5
5
  subject: typeof Schema.String;
6
6
  created: typeof Schema.String;
7
7
  body: typeof Schema.String;
8
- }>>;
8
+ }>;
9
9
  export type EmailEvent = Schema.Schema.Type<typeof EmailEvent>;
10
- export declare const QueueEvent: Schema.mutable<Schema.Struct<{
10
+ export declare const QueueEvent: Schema.Struct<{
11
11
  queue: Schema.refine<string, typeof Schema.NonEmptyString>;
12
12
  item: typeof Schema.Any;
13
13
  cursor: typeof Schema.String;
14
- }>>;
14
+ }>;
15
15
  export type QueueEvent = Schema.Schema.Type<typeof QueueEvent>;
16
- export declare const SubscriptionEvent: Schema.mutable<Schema.Struct<{
16
+ export declare const SubscriptionEvent: Schema.Struct<{
17
17
  /**
18
18
  * Type of the mutation.
19
19
  */
@@ -26,30 +26,30 @@ export declare const SubscriptionEvent: Schema.mutable<Schema.Struct<{
26
26
  * @deprecated
27
27
  */
28
28
  changedObjectId: Schema.optional<typeof Schema.String>;
29
- }>>;
29
+ }>;
30
30
  export type SubscriptionEvent = Schema.Schema.Type<typeof SubscriptionEvent>;
31
- export declare const TimerEvent: Schema.mutable<Schema.Struct<{
31
+ export declare const TimerEvent: Schema.Struct<{
32
32
  tick: typeof Schema.Number;
33
- }>>;
33
+ }>;
34
34
  export type TimerEvent = Schema.Schema.Type<typeof TimerEvent>;
35
- export declare const WebhookEvent: Schema.mutable<Schema.Struct<{
35
+ export declare const WebhookEvent: Schema.Struct<{
36
36
  url: typeof Schema.String;
37
37
  method: Schema.Literal<["GET", "POST"]>;
38
38
  headers: Schema.Record$<typeof Schema.String, typeof Schema.String>;
39
39
  bodyText: typeof Schema.String;
40
- }>>;
40
+ }>;
41
41
  export type WebhookEvent = Schema.Schema.Type<typeof WebhookEvent>;
42
- export declare const TriggerEvent: Schema.Union<[Schema.mutable<Schema.Struct<{
42
+ export declare const TriggerEvent: Schema.Union<[Schema.Struct<{
43
43
  from: typeof Schema.String;
44
44
  to: typeof Schema.String;
45
45
  subject: typeof Schema.String;
46
46
  created: typeof Schema.String;
47
47
  body: typeof Schema.String;
48
- }>>, Schema.mutable<Schema.Struct<{
48
+ }>, Schema.Struct<{
49
49
  queue: Schema.refine<string, typeof Schema.NonEmptyString>;
50
50
  item: typeof Schema.Any;
51
51
  cursor: typeof Schema.String;
52
- }>>, Schema.mutable<Schema.Struct<{
52
+ }>, Schema.Struct<{
53
53
  /**
54
54
  * Type of the mutation.
55
55
  */
@@ -62,13 +62,13 @@ export declare const TriggerEvent: Schema.Union<[Schema.mutable<Schema.Struct<{
62
62
  * @deprecated
63
63
  */
64
64
  changedObjectId: Schema.optional<typeof Schema.String>;
65
- }>>, Schema.mutable<Schema.Struct<{
65
+ }>, Schema.Struct<{
66
66
  tick: typeof Schema.Number;
67
- }>>, Schema.mutable<Schema.Struct<{
67
+ }>, Schema.Struct<{
68
68
  url: typeof Schema.String;
69
69
  method: Schema.Literal<["GET", "POST"]>;
70
70
  headers: Schema.Record$<typeof Schema.String, typeof Schema.String>;
71
71
  bodyText: typeof Schema.String;
72
- }>>]>;
72
+ }>]>;
73
73
  export type TriggerEvent = Schema.Schema.Type<typeof TriggerEvent>;
74
74
  //# sourceMappingURL=TriggerEvent.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TriggerEvent.d.ts","sourceRoot":"","sources":["../../../../src/types/TriggerEvent.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAUxC,eAAO,MAAM,UAAU;;;;;;GAQtB,CAAC;AACF,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,UAAU,CAAC,CAAC;AAE/D,eAAO,MAAM,UAAU;;;;GAMtB,CAAC;AACF,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,UAAU,CAAC,CAAC;AAE/D,eAAO,MAAM,iBAAiB;IAC5B;;OAEG;;IAIH;;OAEG;;IAGH;;OAEG;;GAEkB,CAAC;AACxB,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE7E,eAAO,MAAM,UAAU;;GAAyD,CAAC;AACjF,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,UAAU,CAAC,CAAC;AAE/D,eAAO,MAAM,YAAY;;;;;GAOxB,CAAC;AACF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,YAAY,CAAC,CAAC;AAEnE,eAAO,MAAM,YAAY;;;;;;;;;;;IA/BvB;;OAEG;;IAIH;;OAEG;;IAGH;;OAEG;;;;;;;;;KAkBwG,CAAC;AAC9G,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,YAAY,CAAC,CAAC"}
1
+ {"version":3,"file":"TriggerEvent.d.ts","sourceRoot":"","sources":["../../../../src/types/TriggerEvent.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAUxC,eAAO,MAAM,UAAU;;;;;;EAMrB,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,UAAU,CAAC,CAAC;AAE/D,eAAO,MAAM,UAAU;;;;EAIrB,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,UAAU,CAAC,CAAC;AAE/D,eAAO,MAAM,iBAAiB;IAC5B;;OAEG;;IAIH;;OAEG;;IAGH;;OAEG;;EAEH,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE7E,eAAO,MAAM,UAAU;;EAAyC,CAAC;AACjE,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,UAAU,CAAC,CAAC;AAE/D,eAAO,MAAM,YAAY;;;;;EAKvB,CAAC;AACH,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,YAAY,CAAC,CAAC;AAEnE,eAAO,MAAM,YAAY;;;;;;;;;;;IA7BvB;;OAEG;;IAIH;;OAEG;;IAGH;;OAEG;;;;;;;;;IAgBwG,CAAC;AAC9G,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,YAAY,CAAC,CAAC"}