@faiber/faiber-crm 0.11.0 → 0.11.2

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.
@@ -12,8 +12,13 @@ export interface ApiActivitiesGetQuery extends QueryParams {
12
12
  "team_id"?: string | null;
13
13
  "owner_user_id"?: string | null;
14
14
  "status"?: string | null;
15
+ "statuses"?: string | null;
16
+ "profile_id"?: string | null;
17
+ "active_from"?: string | null;
18
+ "active_to"?: string | null;
19
+ "sort"?: string | null;
15
20
  }
16
- /** Backend response type: ListData<Activity>. */
21
+ /** Backend response type: ListData<ActivityResponse>. */
17
22
  export type ApiActivitiesGetResponse = import("./types.js").CrmActivityListResponse;
18
23
  /** Backend request type: CreateActivity. */
19
24
  export interface ApiCreateActivityPostInput extends JsonObject {
@@ -30,7 +35,19 @@ export interface ApiCreateActivityPostInput extends JsonObject {
30
35
  "duration_seconds"?: number | null;
31
36
  "metadata"?: BackendJson<"JsonValue">;
32
37
  }
33
- /** Backend response type: Activity. */
38
+ /** Backend response type: ActivityResponse. */
39
+ export interface ApiCreateActivityPostResponseDataProfile extends JsonObject {
40
+ "id": string;
41
+ "user_id"?: string | null;
42
+ "email"?: string | null;
43
+ "phone"?: string | null;
44
+ "national_code"?: string | null;
45
+ "first_name"?: JsonValue | null;
46
+ "last_name"?: JsonValue | null;
47
+ "status"?: string | null;
48
+ "employee_type"?: string | null;
49
+ "avatar"?: string | null;
50
+ }
34
51
  export interface ApiCreateActivityPostResponseData extends JsonObject {
35
52
  "id": string;
36
53
  "lead_id"?: string | null;
@@ -47,8 +64,97 @@ export interface ApiCreateActivityPostResponseData extends JsonObject {
47
64
  "duration_seconds"?: number | null;
48
65
  "metadata": BackendJson<"JsonValue">;
49
66
  "created_at": string;
67
+ "profile"?: ApiCreateActivityPostResponseDataProfile | null;
50
68
  }
51
69
  export type ApiCreateActivityPostResponse = import("./types.js").CrmApiResponse<ApiCreateActivityPostResponseData>;
70
+ /** Backend request type: CreateActivityWithReminder. */
71
+ export interface ApiCreateActivityWithReminderPostInputActivity extends JsonObject {
72
+ "lead_id"?: string | null;
73
+ "deal_id"?: string | null;
74
+ "contact_id"?: string | null;
75
+ "company_id"?: string | null;
76
+ "activity_type": string;
77
+ "direction"?: string | null;
78
+ "subject"?: string | null;
79
+ "body"?: string | null;
80
+ "outcome"?: string | null;
81
+ "occurred_at"?: string | null;
82
+ "duration_seconds"?: number | null;
83
+ "metadata"?: BackendJson<"JsonValue">;
84
+ }
85
+ export interface ApiCreateActivityWithReminderPostInputReminder extends JsonObject {
86
+ "lead_id"?: string | null;
87
+ "deal_id"?: string | null;
88
+ "contact_id"?: string | null;
89
+ "company_id"?: string | null;
90
+ "profile_id"?: string | null;
91
+ "assignee_user_id"?: string | null;
92
+ "title": string;
93
+ "description"?: string | null;
94
+ "task_type"?: string | null;
95
+ "priority"?: string | null;
96
+ "due_at"?: string | null;
97
+ }
98
+ export interface ApiCreateActivityWithReminderPostInput extends JsonObject {
99
+ "activity": ApiCreateActivityWithReminderPostInputActivity;
100
+ "reminder": ApiCreateActivityWithReminderPostInputReminder;
101
+ }
102
+ /** Backend response type: ActivityWithReminder. */
103
+ export interface ApiCreateActivityWithReminderPostResponseDataActivityProfile extends JsonObject {
104
+ "id": string;
105
+ "user_id"?: string | null;
106
+ "email"?: string | null;
107
+ "phone"?: string | null;
108
+ "national_code"?: string | null;
109
+ "first_name"?: JsonValue | null;
110
+ "last_name"?: JsonValue | null;
111
+ "status"?: string | null;
112
+ "employee_type"?: string | null;
113
+ "avatar"?: string | null;
114
+ }
115
+ export interface ApiCreateActivityWithReminderPostResponseDataActivity extends JsonObject {
116
+ "id": string;
117
+ "lead_id"?: string | null;
118
+ "deal_id"?: string | null;
119
+ "contact_id"?: string | null;
120
+ "company_id"?: string | null;
121
+ "owner_user_id": string;
122
+ "activity_type": string;
123
+ "direction"?: string | null;
124
+ "subject"?: string | null;
125
+ "body"?: string | null;
126
+ "outcome"?: string | null;
127
+ "occurred_at": string;
128
+ "duration_seconds"?: number | null;
129
+ "metadata": BackendJson<"JsonValue">;
130
+ "created_at": string;
131
+ "profile"?: ApiCreateActivityWithReminderPostResponseDataActivityProfile | null;
132
+ }
133
+ export interface ApiCreateActivityWithReminderPostResponseDataReminder extends JsonObject {
134
+ "id": string;
135
+ "lead_id"?: string | null;
136
+ "deal_id"?: string | null;
137
+ "contact_id"?: string | null;
138
+ "company_id"?: string | null;
139
+ "profile_id"?: string | null;
140
+ "assignee_user_id": string;
141
+ "created_by": string;
142
+ "title": string;
143
+ "description"?: string | null;
144
+ "task_type": string;
145
+ "priority": string;
146
+ "status": string;
147
+ "due_at"?: string | null;
148
+ "completed_at"?: string | null;
149
+ "version": number;
150
+ "created_at": string;
151
+ "updated_at": string;
152
+ }
153
+ export interface ApiCreateActivityWithReminderPostResponseData extends JsonObject {
154
+ "activity": ApiCreateActivityWithReminderPostResponseDataActivity;
155
+ "reminder": ApiCreateActivityWithReminderPostResponseDataReminder;
156
+ }
157
+ export type ApiCreateActivityWithReminderPostResponse = import("./types.js").CrmApiResponse<ApiCreateActivityWithReminderPostResponseData>;
52
158
  /** Backend query type: ListQuery. */
53
159
  export interface ApiAutomationJobsGetQuery extends QueryParams {
54
160
  "cursor"?: string | null;
@@ -59,6 +165,11 @@ export interface ApiAutomationJobsGetQuery extends QueryParams {
59
165
  "team_id"?: string | null;
60
166
  "owner_user_id"?: string | null;
61
167
  "status"?: string | null;
168
+ "statuses"?: string | null;
169
+ "profile_id"?: string | null;
170
+ "active_from"?: string | null;
171
+ "active_to"?: string | null;
172
+ "sort"?: string | null;
62
173
  }
63
174
  /** Backend response type: ListData<DurableJob>. */
64
175
  export type ApiAutomationJobsGetResponse = import("./types.js").CrmAutomationJobListResponse;
@@ -137,6 +248,11 @@ export interface ApiCompaniesGetQuery extends QueryParams {
137
248
  "team_id"?: string | null;
138
249
  "owner_user_id"?: string | null;
139
250
  "status"?: string | null;
251
+ "statuses"?: string | null;
252
+ "profile_id"?: string | null;
253
+ "active_from"?: string | null;
254
+ "active_to"?: string | null;
255
+ "sort"?: string | null;
140
256
  }
141
257
  /** Backend response type: ListData<Company>. */
142
258
  export type ApiCompaniesGetResponse = import("./types.js").CrmCompanyListResponse;
@@ -245,6 +361,11 @@ export interface ApiContactsGetQuery extends QueryParams {
245
361
  "team_id"?: string | null;
246
362
  "owner_user_id"?: string | null;
247
363
  "status"?: string | null;
364
+ "statuses"?: string | null;
365
+ "profile_id"?: string | null;
366
+ "active_from"?: string | null;
367
+ "active_to"?: string | null;
368
+ "sort"?: string | null;
248
369
  }
249
370
  /** Backend response type: ListData<Contact>. */
250
371
  export type ApiContactsGetResponse = import("./types.js").CrmContactListResponse;
@@ -365,6 +486,11 @@ export interface ApiDealsGetQuery extends QueryParams {
365
486
  "team_id"?: string | null;
366
487
  "owner_user_id"?: string | null;
367
488
  "status"?: string | null;
489
+ "statuses"?: string | null;
490
+ "profile_id"?: string | null;
491
+ "active_from"?: string | null;
492
+ "active_to"?: string | null;
493
+ "sort"?: string | null;
368
494
  }
369
495
  /** Backend response type: ListData<Deal>. */
370
496
  export type ApiDealsGetResponse = import("./types.js").CrmDealListResponse;
@@ -562,6 +688,11 @@ export interface ApiLeadsGetQuery extends QueryParams {
562
688
  "team_id"?: string | null;
563
689
  "owner_user_id"?: string | null;
564
690
  "status"?: string | null;
691
+ "statuses"?: string | null;
692
+ "profile_id"?: string | null;
693
+ "active_from"?: string | null;
694
+ "active_to"?: string | null;
695
+ "sort"?: string | null;
565
696
  }
566
697
  /** Backend response type: ListData<Lead>. */
567
698
  export type ApiLeadsGetResponse = import("./types.js").CrmLeadListResponse;
@@ -575,6 +706,7 @@ export interface ApiCreateLeadPostInput extends JsonObject {
575
706
  "campaign_id"?: string | null;
576
707
  "owner_user_id"?: string | null;
577
708
  "team_id"?: string | null;
709
+ "profile_id"?: string | null;
578
710
  "title": string;
579
711
  "first_name"?: string | null;
580
712
  "last_name"?: string | null;
@@ -600,6 +732,7 @@ export interface ApiCreateLeadPostResponseData extends JsonObject {
600
732
  "campaign_id"?: string | null;
601
733
  "owner_user_id"?: string | null;
602
734
  "team_id"?: string | null;
735
+ "profile_id"?: string | null;
603
736
  "title": string;
604
737
  "first_name"?: string | null;
605
738
  "last_name"?: string | null;
@@ -634,6 +767,7 @@ export interface ApiLeadGetResponseData extends JsonObject {
634
767
  "campaign_id"?: string | null;
635
768
  "owner_user_id"?: string | null;
636
769
  "team_id"?: string | null;
770
+ "profile_id"?: string | null;
637
771
  "title": string;
638
772
  "first_name"?: string | null;
639
773
  "last_name"?: string | null;
@@ -673,6 +807,7 @@ export interface ApiUpdateLeadPatchInput extends JsonObject {
673
807
  "estimated_value"?: number | null;
674
808
  "currency"?: string | null;
675
809
  "next_activity_at"?: string | null;
810
+ "profile_id"?: string | null;
676
811
  }
677
812
  /** Backend response type: Lead. */
678
813
  export interface ApiUpdateLeadPatchResponseData extends JsonObject {
@@ -685,6 +820,7 @@ export interface ApiUpdateLeadPatchResponseData extends JsonObject {
685
820
  "campaign_id"?: string | null;
686
821
  "owner_user_id"?: string | null;
687
822
  "team_id"?: string | null;
823
+ "profile_id"?: string | null;
688
824
  "title": string;
689
825
  "first_name"?: string | null;
690
826
  "last_name"?: string | null;
@@ -725,6 +861,7 @@ export interface ApiAssignLeadPatchResponseData extends JsonObject {
725
861
  "campaign_id"?: string | null;
726
862
  "owner_user_id"?: string | null;
727
863
  "team_id"?: string | null;
864
+ "profile_id"?: string | null;
728
865
  "title": string;
729
866
  "first_name"?: string | null;
730
867
  "last_name"?: string | null;
@@ -748,6 +885,17 @@ export interface ApiAssignLeadPatchResponseData extends JsonObject {
748
885
  "updated_at": string;
749
886
  }
750
887
  export type ApiAssignLeadPatchResponse = import("./types.js").CrmApiResponse<ApiAssignLeadPatchResponseData>;
888
+ /** Backend response type: Vec<LeadHistoryEvent>. */
889
+ export interface ApiLeadHistoryGetResponseItem extends JsonObject {
890
+ "id": string;
891
+ "event_type": string;
892
+ "actor_user_id"?: string | null;
893
+ "data": BackendJson<"JsonValue">;
894
+ "occurred_at": string;
895
+ }
896
+ export type ApiLeadHistoryGetResponse = import("./types.js").CrmApiResponse<ApiLeadHistoryGetResponseItem[]>;
897
+ /** Backend response type: serde_json::Value. */
898
+ export type ApiDeleteLeadRemindersDeleteResponse = import("./types.js").CrmApiResponse<JsonValue>;
751
899
  /** Backend response type: DeletionResult. */
752
900
  export interface ApiRemoveLeadFromSosDeleteResponseData extends JsonObject {
753
901
  "id": string;
@@ -779,6 +927,7 @@ export interface ApiMoveLeadStagePatchResponseData extends JsonObject {
779
927
  "campaign_id"?: string | null;
780
928
  "owner_user_id"?: string | null;
781
929
  "team_id"?: string | null;
930
+ "profile_id"?: string | null;
782
931
  "title": string;
783
932
  "first_name"?: string | null;
784
933
  "last_name"?: string | null;
@@ -802,8 +951,56 @@ export interface ApiMoveLeadStagePatchResponseData extends JsonObject {
802
951
  "updated_at": string;
803
952
  }
804
953
  export type ApiMoveLeadStagePatchResponse = import("./types.js").CrmApiResponse<ApiMoveLeadStagePatchResponseData>;
954
+ /** Backend query type: ListQuery. */
955
+ export interface ApiLightLeadsGetQuery extends QueryParams {
956
+ "cursor"?: string | null;
957
+ "limit"?: number | null;
958
+ "q"?: string | null;
959
+ "pipeline_id"?: string | null;
960
+ "stage_id"?: string | null;
961
+ "team_id"?: string | null;
962
+ "owner_user_id"?: string | null;
963
+ "status"?: string | null;
964
+ "statuses"?: string | null;
965
+ "profile_id"?: string | null;
966
+ "active_from"?: string | null;
967
+ "active_to"?: string | null;
968
+ "sort"?: string | null;
969
+ }
970
+ /** Backend response type: ListData<Lead>. */
971
+ export type ApiLightLeadsGetResponse = import("./types.js").CrmLeadListResponse;
805
972
  /** Backend response type: Vec<PipelineWithStages>. */
806
973
  export type ApiPipelinesGetResponse = import("./types.js").CrmPipelinesResponse;
974
+ /** Backend request type: UpdatePipeline. */
975
+ export interface ApiUpdatePipelinePatchInput extends JsonObject {
976
+ "version": number;
977
+ "name"?: string | null;
978
+ "priority"?: number | null;
979
+ "hint"?: string | null;
980
+ "daily_quota"?: number | null;
981
+ "can_create_lead"?: boolean | null;
982
+ "acquire_flags"?: BackendJson<"JsonValue"> | null;
983
+ "actions"?: BackendJson<"JsonValue"> | null;
984
+ "is_active"?: boolean | null;
985
+ }
986
+ /** Backend response type: Pipeline. */
987
+ export interface ApiUpdatePipelinePatchResponseData extends JsonObject {
988
+ "id": string;
989
+ "name": string;
990
+ "slug": string;
991
+ "entity_type": string;
992
+ "team_id"?: string | null;
993
+ "is_default": boolean;
994
+ "is_active": boolean;
995
+ "priority": number;
996
+ "hint"?: string | null;
997
+ "daily_quota": number;
998
+ "can_create_lead": boolean;
999
+ "acquire_flags": BackendJson<"JsonValue">;
1000
+ "actions": BackendJson<"JsonValue">;
1001
+ "version": number;
1002
+ }
1003
+ export type ApiUpdatePipelinePatchResponse = import("./types.js").CrmApiResponse<ApiUpdatePipelinePatchResponseData>;
807
1004
  /** Backend response type: ReportRun. */
808
1005
  export interface ApiReportRunGetResponseData extends JsonObject {
809
1006
  "id": string;
@@ -874,6 +1071,42 @@ export interface ApiCreateSourcePostResponseData extends JsonObject {
874
1071
  "updated_at": string;
875
1072
  }
876
1073
  export type ApiCreateSourcePostResponse = import("./types.js").CrmApiResponse<ApiCreateSourcePostResponseData>;
1074
+ /** Backend response type: DailyStats. */
1075
+ export interface ApiDailyStatsGetResponseDataWorkflows extends JsonObject {
1076
+ "id": string;
1077
+ "name": string;
1078
+ "slug": string;
1079
+ "priority": number;
1080
+ "hint"?: string | null;
1081
+ "daily_tasks": number;
1082
+ "leads_count": number;
1083
+ "lead_count": number;
1084
+ }
1085
+ export interface ApiDailyStatsGetResponseData extends JsonObject {
1086
+ "workflows": ApiDailyStatsGetResponseDataWorkflows[];
1087
+ "total_tasks": number;
1088
+ "total_done_tasks": number;
1089
+ "extra_tasks_done": number;
1090
+ "all_tasks_done": boolean;
1091
+ }
1092
+ export type ApiDailyStatsGetResponse = import("./types.js").CrmApiResponse<ApiDailyStatsGetResponseData>;
1093
+ /** Backend response type: LeadStats. */
1094
+ export interface ApiLeadStatsGetResponseDataWorkflows extends JsonObject {
1095
+ "id": string;
1096
+ "name": string;
1097
+ "slug": string;
1098
+ "priority": number;
1099
+ "total": number;
1100
+ "active": number;
1101
+ "inactive": number;
1102
+ }
1103
+ export interface ApiLeadStatsGetResponseData extends JsonObject {
1104
+ "total": number;
1105
+ "active": number;
1106
+ "inactive": number;
1107
+ "workflows": ApiLeadStatsGetResponseDataWorkflows[];
1108
+ }
1109
+ export type ApiLeadStatsGetResponse = import("./types.js").CrmApiResponse<ApiLeadStatsGetResponseData>;
877
1110
  /** Backend query type: ListQuery. */
878
1111
  export interface ApiTasksGetQuery extends QueryParams {
879
1112
  "cursor"?: string | null;
@@ -884,6 +1117,11 @@ export interface ApiTasksGetQuery extends QueryParams {
884
1117
  "team_id"?: string | null;
885
1118
  "owner_user_id"?: string | null;
886
1119
  "status"?: string | null;
1120
+ "statuses"?: string | null;
1121
+ "profile_id"?: string | null;
1122
+ "active_from"?: string | null;
1123
+ "active_to"?: string | null;
1124
+ "sort"?: string | null;
887
1125
  }
888
1126
  /** Backend response type: ListData<Task>. */
889
1127
  export type ApiTasksGetResponse = import("./types.js").CrmTaskListResponse;
@@ -893,6 +1131,7 @@ export interface ApiCreateTaskPostInput extends JsonObject {
893
1131
  "deal_id"?: string | null;
894
1132
  "contact_id"?: string | null;
895
1133
  "company_id"?: string | null;
1134
+ "profile_id"?: string | null;
896
1135
  "assignee_user_id"?: string | null;
897
1136
  "title": string;
898
1137
  "description"?: string | null;
@@ -907,6 +1146,7 @@ export interface ApiCreateTaskPostResponseData extends JsonObject {
907
1146
  "deal_id"?: string | null;
908
1147
  "contact_id"?: string | null;
909
1148
  "company_id"?: string | null;
1149
+ "profile_id"?: string | null;
910
1150
  "assignee_user_id": string;
911
1151
  "created_by": string;
912
1152
  "title": string;
@@ -921,6 +1161,12 @@ export interface ApiCreateTaskPostResponseData extends JsonObject {
921
1161
  "updated_at": string;
922
1162
  }
923
1163
  export type ApiCreateTaskPostResponse = import("./types.js").CrmApiResponse<ApiCreateTaskPostResponseData>;
1164
+ /** Backend response type: DeletionResult. */
1165
+ export interface ApiDeleteTaskDeleteResponseData extends JsonObject {
1166
+ "id": string;
1167
+ "deleted": boolean;
1168
+ }
1169
+ export type ApiDeleteTaskDeleteResponse = import("./types.js").CrmApiResponse<ApiDeleteTaskDeleteResponseData>;
924
1170
  /** Backend request type: UpdateTaskStatus. */
925
1171
  export interface ApiUpdateTaskStatusPatchInput extends JsonObject {
926
1172
  "status": string;
@@ -933,6 +1179,7 @@ export interface ApiUpdateTaskStatusPatchResponseData extends JsonObject {
933
1179
  "deal_id"?: string | null;
934
1180
  "contact_id"?: string | null;
935
1181
  "company_id"?: string | null;
1182
+ "profile_id"?: string | null;
936
1183
  "assignee_user_id": string;
937
1184
  "created_by": string;
938
1185
  "title": string;
@@ -1021,6 +1268,30 @@ export interface ApiRemoveTeamMemberDeleteResponseData extends JsonObject {
1021
1268
  "updated_at": string;
1022
1269
  }
1023
1270
  export type ApiRemoveTeamMemberDeleteResponse = import("./types.js").CrmApiResponse<ApiRemoveTeamMemberDeleteResponseData>;
1271
+ /** Backend request type: CreateWorkflowRequest. */
1272
+ export interface ApiCreateWorkflowRoutePostInput extends JsonObject {
1273
+ "name": string;
1274
+ "slug": string;
1275
+ "acquire_flags": string[];
1276
+ "priority": number;
1277
+ "can_create_lead"?: boolean;
1278
+ "actions"?: JsonValue | null;
1279
+ "hint"?: string | null;
1280
+ }
1281
+ /** Backend response type: WorkflowResponse. */
1282
+ export interface ApiCreateWorkflowRoutePostResponseData extends JsonObject {
1283
+ "id": string;
1284
+ "name": string;
1285
+ "slug": string;
1286
+ "acquire_flags": string[];
1287
+ "priority": number;
1288
+ "can_create_lead": boolean;
1289
+ "actions"?: JsonValue | null;
1290
+ "hint"?: string | null;
1291
+ "created_at": string;
1292
+ "updated_at": string;
1293
+ }
1294
+ export type ApiCreateWorkflowRoutePostResponse = import("./types.js").CrmApiResponse<ApiCreateWorkflowRoutePostResponseData>;
1024
1295
  /** Backend response type: Vec<WorkflowAssignment>. */
1025
1296
  export interface ApiListWorkflowAssignmentsGetResponseItem extends JsonObject {
1026
1297
  "id": string;
@@ -1052,6 +1323,41 @@ export interface ApiDeleteWorkflowAssignmentDeleteResponseData extends JsonObjec
1052
1323
  "deleted": boolean;
1053
1324
  }
1054
1325
  export type ApiDeleteWorkflowAssignmentDeleteResponse = import("./types.js").CrmApiResponse<ApiDeleteWorkflowAssignmentDeleteResponseData>;
1326
+ /** Backend response type: Vec<Pipeline>. */
1327
+ export interface ApiMemberWorkflowsGetResponseItem extends JsonObject {
1328
+ "id": string;
1329
+ "name": string;
1330
+ "slug": string;
1331
+ "entity_type": string;
1332
+ "team_id"?: string | null;
1333
+ "is_default": boolean;
1334
+ "is_active": boolean;
1335
+ "priority": number;
1336
+ "hint"?: string | null;
1337
+ "daily_quota": number;
1338
+ "can_create_lead": boolean;
1339
+ "acquire_flags": BackendJson<"JsonValue">;
1340
+ "actions": BackendJson<"JsonValue">;
1341
+ "version": number;
1342
+ }
1343
+ export type ApiMemberWorkflowsGetResponse = import("./types.js").CrmApiResponse<ApiMemberWorkflowsGetResponseItem[]>;
1344
+ /** Backend query type: super::types::WorklogListQuery. */
1345
+ export interface ApiWorklogsGetQuery extends QueryParams {
1346
+ "sort"?: string | null;
1347
+ }
1348
+ /** Backend response type: Vec<WorklogResponse>. */
1349
+ export interface ApiWorklogsGetResponseItem extends JsonObject {
1350
+ "id": string;
1351
+ "log_type": string;
1352
+ "assignee_id": string;
1353
+ "profile_id": string;
1354
+ "start_date": string;
1355
+ "duration": number;
1356
+ "description"?: string | null;
1357
+ "created_at": string;
1358
+ "updated_at": string;
1359
+ }
1360
+ export type ApiWorklogsGetResponse = import("./types.js").CrmApiResponse<ApiWorklogsGetResponseItem[]>;
1055
1361
  /** Backend request type: UpdateWorkspace. */
1056
1362
  export interface ApiUpdateWorkspacePatchInput extends JsonObject {
1057
1363
  "name"?: string | null;