-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathmcdev.d.js
672 lines (627 loc) · 37.5 KB
/
mcdev.d.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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
182
183
184
185
186
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
/**
* @typedef {object} BuObject
* @property {string} [clientId] installed package client id
* @property {string} [clientSecret] installed package client secret
* @property {string} [tenant] subdomain part of Authentication Base Uri
* @property {number} [eid] Enterprise ID = MID of the parent BU
* @property {number} [mid] MID of the BU to work with
* @property {string} [businessUnit] name of the BU to interact with
* @property {string} [credential] name of the credential to interact with
*/
/**
* @typedef {Object.<string, string>} TemplateMap
* @typedef {'asset'|'asset-archive'|'asset-asset'|'asset-audio'|'asset-block'|'asset-code'|'asset-document'|'asset-image'|'asset-message'|'asset-other'|'asset-rawimage'|'asset-template'|'asset-textfile'|'asset-video'|'attributeGroup'|'attributeSet'|'automation'|'campaign'|'contentArea'|'dataExtension'|'dataExtensionField'|'dataExtensionTemplate'|'dataExtract'|'dataExtractType'|'discovery'|'deliveryProfile'|'email'|'emailSend'|'event'|'fileLocation'|'fileTransfer'|'filter'|'folder'|'importFile'|'journey'|'list'|'mobileCode'|'mobileKeyword'|'mobileMessage'|'query'|'role'|'script'|'sendClassification'|'senderProfile'|'transactionalEmail'|'transactionalPush'|'transactionalSMS'|'triggeredSend'|'user'|'verification'} SupportedMetadataTypes
* @typedef {Object.<string, string[] | null>} TypeKeyCombo object-key=SupportedMetadataTypes, value=array of external keys
*/
/**
* @typedef {Object.<any, any>} MetadataTypeItem generic metadata item
* @typedef {Object.<string, MetadataTypeItem>} MetadataTypeMap key=customer key
* @typedef {Object.<string, MetadataTypeMap>} MultiMetadataTypeMap key=Supported MetadataType
* @typedef {Object.<string, MetadataTypeItem[]>} MultiMetadataTypeList key=Supported MetadataType
* @typedef {{metadata: MetadataTypeMap, type: string}} MetadataTypeMapObj
* @typedef {{metadata: MetadataTypeItem, type: string}} MetadataTypeItemObj
* @typedef {Object.<number, MultiMetadataTypeMap>} Cache key=MID
* @typedef {{before: MetadataTypeItem, after: MetadataTypeItem}} MetadataTypeItemDiff used during update
*/
/**
* @typedef {object} CodeExtractItem
* @property {MetadataTypeItem} json metadata of one item w/o code
* @property {CodeExtract[]} codeArr list of code snippets in this item
* @property {string[]} subFolder mostly set to null, otherwise list of subfolders
*/
/**
* @typedef {object} CodeExtract
* @property {string[]} subFolder mostly set to null, otherwise subfolders path split into elements
* @property {string} fileName name of file w/o extension
* @property {string} fileExt file extension
* @property {string} content file content
* @property {'base64'} [encoding] optional for binary files
*/
/**
* @typedef {object} QueryItem
* @property {string} name name
* @property {string} key key
* @property {string} description -
* @property {string} [targetId] Object ID of DE (removed before save)
* @property {string} targetKey key of target data extension
* @property {string} r__dataExtension_key key of target data extension
* @property {string} createdDate e.g. "2020-09-14T01:42:03.017"
* @property {string} modifiedDate e.g. "2020-09-14T01:42:03.017"
* @property {'Overwrite'|'Update'|'Append'} targetUpdateTypeName defines how the query writes into the target data extension
* @property {number} [targetUpdateTypeId] 0|1|2, mapped to targetUpdateTypeName via this.definition.targetUpdateTypeMapping
* @property {string} [targetDescription] Description DE (removed before save)
* @property {boolean} isFrozen looks like this is always set to false
* @property {string} [queryText] contains SQL query with line breaks converted to '\n'. The content is extracted during retrieval and written into a separate *.sql file
* @property {string} [categoryId] holds folder ID, replaced with r__folder_Path during retrieve
* @property {string} r__folder_Path folder path in which this DE is saved
* @property {string} [queryDefinitionId] Object ID of query
* @typedef {Object.<string, QueryItem>} QueryMap
*/
/**
* @typedef {object} ScriptItem
* @property {string} name name
* @property {string} key key
* @property {string} description -
* @property {string} createdDate e.g. "2020-09-14T01:42:03.017"
* @property {string} modifiedDate e.g. "2020-09-14T01:42:03.017"
* @property {string} [script] contains script with line breaks converted to '\n'. The content is extracted during retrieval and written into a separate *.ssjs file
* @property {string} [categoryId] holds folder ID, replaced with r__folder_Path during retrieve
* @property {string} r__folder_Path folder path in which this DE is saved
* @typedef {Object.<string, ScriptItem>} ScriptMap
*/
/**
* @typedef {Object.<string, any>} AssetItem
* @typedef {Object.<string, AssetItem>} AssetMap
* @typedef {'archive'|'asset'|'audio'|'block'|'code'|'document'|'image'|'message'|'other'|'rawimage'|'template'|'textfile'|'video'} AssetSubType
*/
/**
* @typedef {object} DataExtensionFieldItem
* @property {string} [ObjectID] id
* @property {string} [CustomerKey] key in format [DEkey].[FieldName]
* @property {object} [DataExtension] -
* @property {string} DataExtension.CustomerKey key of DE
* @property {string} Name name of field
* @property {string} [Name_new] custom attribute that is only used when trying to rename a field from Name to Name_new
* @property {string} DefaultValue empty string for not set
* @property {true|false} IsRequired -
* @property {true|false} [IsNullable] opposite of IsRequired
* @property {true|false} IsPrimaryKey -
* @property {number} Ordinal 1, 2, 3, ...
* @property {'Text'|'Number'|'Date'|'Boolean'|'Decimal'|'EmailAddress'|'Phone'|'Locale'} FieldType can only be set on create
* @property {number|string} MaxLength field length
* @property {string} Scale the number of places after the decimal that the field can hold; example: "0","1", ...
*/
/**
* @typedef {Object.<string, DataExtensionFieldItem>} DataExtensionFieldMap key: name of field, value: DataExtensionFieldItem
*/
/**
* @typedef {object} DataExtensionItem
* @property {string} CustomerKey key
* @property {string} Name name
* @property {string} Description -
* @property {string} [CreatedDate] iso format
* @property {string} [ModifiedDate] iso format
* @property {true|false} IsSendable -
* @property {true|false} IsTestable -
* @property {object} SendableDataExtensionField -
* @property {string} SendableDataExtensionField.Name -
* @property {object} SendableSubscriberField -
* @property {string} SendableSubscriberField.Name -
* @property {DataExtensionFieldItem[]} Fields list of DE fields
* @property {'dataextension'|'salesforcedataextension'|'synchronizeddataextension'|'shared_dataextension'|'shared_salesforcedataextension'} r__folder_ContentType retrieved from associated folder
* @property {string} r__folder_Path folder path in which this DE is saved
* @property {string} [CategoryID] holds folder ID, replaced with r__folder_Path during retrieve
* @property {string} [r__dataExtensionTemplate_name] name of optionally associated DE template
* @property {object} [Template] -
* @property {string} [Template.CustomerKey] key of optionally associated DE teplate
* @property {string} RetainUntil empty string or US date + 12:00:00 AM
* @property {string} c__retainUntil YYYY-MM-DD
* @property {'none'|'allRecordsAndDataextension'|'allRecords'|'individialRecords'} [c__retentionPolicy] readable name of retention policy
* @property {number} [DataRetentionPeriodLength] number of days/weeks/months/years before retention kicks in
* @property {number} [DataRetentionPeriodUnitOfMeasure] 3:Days, 4:Weeks, 5:Months, 6:Years
* @property {string} [c__dataRetentionPeriodUnitOfMeasure] 3:Days, 4:Weeks, 5:Months, 6:Years
* @property {boolean} [RowBasedRetention] true for retention policy individialRecords
* @property {boolean} ResetRetentionPeriodOnImport ?
* @property {boolean} [DeleteAtEndOfRetentionPeriod] true for retention policy allRecords
*/
/**
* @typedef {Object.<string, DataExtensionItem>} DataExtensionMap
*/
/**
* @typedef {object} UserDocument
* @property {'User'|'Installed Package'|'Inactivated User'} TYPE -
* @property {string} [ID] equal to UserID; optional in update/create calls
* @property {string} UserID equal to ID; required in update/create calls
* @property {number} [AccountUserID] user.AccountUserID
* @property {number} c__AccountUserID copy of AccountUserID
* @property {string} CustomerKey user.CustomerKey
* @property {string} Name user.Name
* @property {string} Email user.Email
* @property {string} NotificationEmailAddress user.NotificationEmailAddress
* @property {boolean} ActiveFlag user.ActiveFlag === true ? '✓' : '-'
* @property {boolean} IsAPIUser user.IsAPIUser === true ? '✓' : '-'
* @property {boolean} MustChangePassword user.MustChangePassword === true ? '✓' : '-'
* @property {number} DefaultBusinessUnit default MID; BUName after we resolved it
* @property {number[]} c__AssociatedBusinessUnits associatedBus
* @property {object} [Roles] (API only)
* @property {object[]} [Roles.Role] roles (API only)
* @property {string[]} c__RoleNamesGlobal roles
* @property {string[]} UserPermissions userPermissions
* @property {string} LastSuccessfulLogin this.timeSinceDate(user.LastSuccessfulLogin)
* @property {string} CreatedDate user.CreatedDate
* @property {string} ModifiedDate user.ModifiedDate
* @property {object} Client -
* @property {number} [Client.ID] EID e.g:7281698
* @property {number} [Client.ModifiedBy] AccountUserID of user who last modified this user
* @property {'User'|'Installed Package'} c__type -
* @property {boolean} [IsLocked] (API only)
* @property {boolean} [Unlock] used to unlock a user that has IsLocked === true
* @property {boolean} c__IsLocked_readOnly copy of IsLocked
* @property {string} c__TimeZoneName name of timezone
* @property {object} [TimeZone] (API only)
* @property {string} [TimeZone.Name] (API only)
* @property {string} [TimeZone.ID] (API only)
* @property {string} [Password] only used to set the password. cannot be retrieved
* @property {'en-US'|'fr-CA'|'fr-FR'|'de-DE'|'it-IT'|'ja-JP'|'pt-BR'|'es-419'|'es-ES'} c__LocaleCode fr-CA, en-US, ...
* @property {object} [Locale] (API only)
* @property {'en-US'|'fr-CA'|'fr-FR'|'de-DE'|'it-IT'|'ja-JP'|'pt-BR'|'es-419'|'es-ES'} [Locale.LocaleCode] (API only)
* @property {object} [SsoIdentity] -
* @property {Array|object} [SsoIdentities] -
*/
/**
* @typedef {{before:UserDocument,after:UserDocument}} UserDocumentDiff
* @typedef {Object.<string, UserDocument>} UserDocumentMap key=customer key
*/
/**
* @typedef {object} UserDocumentDocumentHelper
* @property {string} ActiveFlagDocs docs: user.ActiveFlag === true ? '✓' : '-'
* @property {string} IsAPIUserDocs docs: user.IsAPIUser === true ? '✓' : '-'
* @property {string} MustChangePasswordDocs docs: user.MustChangePassword === true ? '✓' : '-'
* @property {string} DefaultBusinessUnitDocs docs: default MID; BUName after we resolved it
* @property {string} RolesDocs docs: list of roles as concatenated string
* @property {string} AssociatedBusDocs docs: list of associated BUs as concatenated string
* @property {string | number} ModifiedBy docs: user name who last modified this user
* @property {string} TimeZoneName docs: name of timezone
* @property {string} IsLockedDocs docs: if the user cannot login
* @typedef {UserDocument & UserDocumentDocumentHelper} UserDocumentDocument
*/
/**
* @typedef {object} AccountUserConfiguration
* @property {object} Client wrapper
* @property {number} Client.ID EID e.g:7281698
* @property {string} [PartnerKey] empty string
* @property {number | string} ID User ID e.g:717133502
* @property {string} [ObjectID] empty string
* @property {number} [Delete] 0,1
* @property {BusinessUnitAssignmentConfiguration} BusinessUnitAssignmentConfiguration -
* @typedef {object} BusinessUnitAssignmentConfiguration
* @property {object} BusinessUnitIds wrapper
* @property {number[]|number} BusinessUnitIds.BusinessUnitId e.g:[518003624]
* @property {boolean} IsDelete assign BU if false, remove assignment if true
*/
/**
* @typedef {object} AutomationActivity
* @property {string} r__key key of associated activity
* @property {string} [name] name (not key) of associated activity
* @property {string} [timeZone] used by wait activity if a specific time of day was set
* @property {number} [objectTypeId] Id of assoicated activity type; see this.definition.activityTypeMapping
* @property {string} [activityObjectId] Object Id of assoicated metadata item
* @property {number} [displayOrder] order within step; starts with 1 or higher number
* @property {string} r__type see this.definition.activityTypeMapping
*/
/**
* @typedef {object} AutomationStep
* @property {string} name description
* @property {string} [annotation] equals AutomationStep.name
* @property {number} [step] step iterator; starts with 1
* @property {number} [stepNumber] step iterator, automatically set during deployment
* @property {AutomationActivity[]} activities -
*/
/**
* @typedef {object} AutomationSchedule REST format
* @property {string} id legacy id of schedule
* @property {number} typeId equals schedule.scheduleTypeId; upsert endpoint requires scheduleTypeId. retrieve endpoint returns typeId
* @property {number} [scheduleTypeId] equals schedule.typeId; upsert endpoint requires scheduleTypeId. retrieve endpoint returns typeId
* @property {string} startDate example: '2021-05-07T09:00:00'
* @property {string} endDate example: '2021-05-07T09:00:00'
* @property {string} icalRecur example: 'FREQ=DAILY;UNTIL=20790606T160000;INTERVAL=1'
* @property {string} timezoneName example: 'W. Europe Standard Time'; see this.definition.timeZoneMapping
* @property {number} [timezoneId] see this.definition.timeZoneMapping
* @property {number} [rangeTypeId] ?
* @property {any} [pattern] ?
* @property {any} [scheduledTime] ?
* @property {string} [scheduledStatus] ?
*/
/**
* @typedef {object} AutomationScheduleSoap SOAP format
* @property {string} [RecurrenceType] 'Minutely'|'Hourly'|'Daily'|'Weekly'|'Monthly'|'Yearly'
* @property {object} Recurrence -
* @property {object} [Recurrence.$] {'xsi:type': keyStem + 'lyRecurrence'}
* @property {'ByYear'} [Recurrence.YearlyRecurrencePatternType] * currently not supported by tool *
* @property {'ByMonth'} [Recurrence.MonthlyRecurrencePatternType] * currently not supported by tool *
* @property {'ByWeek'} [Recurrence.WeeklyRecurrencePatternType] * currently not supported by tool *
* @property {'ByDay'} [Recurrence.DailyRecurrencePatternType] -
* @property {'Interval'} [Recurrence.MinutelyRecurrencePatternType] -
* @property {'Interval'} [Recurrence.HourlyRecurrencePatternType] -
* @property {number} [Recurrence.YearInterval] 1..n * currently not supported by tool *
* @property {number} [Recurrence.MonthInterval] 1..n * currently not supported by tool *
* @property {number} [Recurrence.WeekInterval] 1..n * currently not supported by tool *
* @property {number} [Recurrence.DayInterval] 1..n
* @property {number} [Recurrence.HourInterval] 1..n
* @property {number} [Recurrence.MinuteInterval] 1..n
* @property {number} [_interval] internal variable for CLI output only
* @property {object} TimeZone -
* @property {number} TimeZone.ID AutomationSchedule.timezoneId
* @property {true} [TimeZone.IDSpecified] always true
* @property {string} [_timezoneString] internal variable for CLI output only
* @property {string} StartDateTime AutomationSchedule.startDate
* @property {string} [_StartDateTime] AutomationSchedule.startDate; internal variable for CLI output only
* @property {string} [EndDateTime] AutomationSchedule.endDate
* @property {'EndOn'|'EndAfter'} RecurrenceRangeType set to 'EndOn' if AutomationSchedule.icalRecur contains 'UNTIL'; otherwise to 'EndAfter'
* @property {number} [Occurrences] only exists if RecurrenceRangeType=='EndAfter'
*/
/**
* @typedef {object} AutomationItem
* @property {string} id Object Id
* @property {string} [legacyId] legacy Object Id - used for handling notifications
* @property {string} [ObjectID] Object Id as returned by SOAP API
* @property {string} [programId] legacy id
* @property {string} key key (Rest API)
* @property {string} [CustomerKey] key (SOAP API)
* @property {string} [name] name (Rest API)
* @property {string} [Name] name (SOAP API)
* @property {any} [notifications] notifications
* @property {string} [description] -
* @property {'scheduled'|'triggered'|'automationtriggered'} [type] Starting Source = Schedule / File Drop
* @property {'scheduled'|'triggered'|'automationtriggered'} [automationType] Starting Source = Schedule / File Drop; from legacy api
* @property {'Scheduled'|'Running'|'Ready'|'Building'|'PausedSchedule'|'InactiveTrigger'} [status] automation status
* @property {number} [statusId] automation status
* @property {AutomationSchedule} [schedule] only existing if type=scheduled
* @property {object} [fileTrigger] only existing if type=triggered
* @property {string} fileTrigger.fileNamingPattern file name with placeholders
* @property {number} fileTrigger.fileNamePatternTypeId -
* @property {string} fileTrigger.folderLocationText where to look for the fileNamingPattern
* @property {boolean} fileTrigger.isPublished ?
* @property {boolean} fileTrigger.queueFiles ?
* @property {boolean} fileTrigger.triggerActive -
* @property {object} [automationTrigger] only existing if type=automationtriggered
* @property {object} [startSource] -
* @property {AutomationSchedule} [startSource.schedule] rewritten to AutomationItem.schedule
* @property {object} [startSource.fileDrop] rewritten to AutomationItem.fileTrigger
* @property {string} startSource.fileDrop.fileNamePattern file name with placeholders
* @property {number} startSource.fileDrop.fileNamePatternTypeId -
* @property {string} startSource.fileDrop.folderLocation -
* @property {boolean} startSource.fileDrop.queueFiles -
* @property {number} startSource.typeId -
* @property {AutomationStep[]} [steps] -
* @property {string} [r__folder_Path] folder path
* @property {string} [categoryId] holds folder ID, replaced with r__folder_Path during retrieve
* @property {string} [createdName] user name of person who created this automation
* @property {string} [createdDate] iso format
* @property {string} [modifiedName] user name of person who last modified this automation
* @property {string} [modifiedDate] iso format
* @property {string} [pausedName] user name of person who paused this automation
* @property {string} [pausedDate] iso format
*/
/**
* @typedef {object} VerificationItem
* @property {string} dataVerificationDefinitionId ID / Key
* @property {'IsEqualTo'|'IsLessThan'|'IsGreaterThan'|'IsOutsideRange'|'IsInsideRange'|'IsNotEqualTo'|'IsNotLessThan'|'IsNotGreaterThan'|'IsNotOutsideRange'|'IsNotInsideRange'} verificationType key
* @property {number} value1 used for all verificationTypes; lower value for IsOutsideRange, IsInsideRange, IsNotOutsideRange, IsNotInsideRange
* @property {number} value2 only used for IsOutsideRange, IsInsideRange, IsNotOutsideRange, IsNotInsideRange; otherwise set to 0
* @property {boolean} shouldStopOnFailure flag to stop automation if verification fails
* @property {boolean} shouldEmailOnFailure flag to send email if verification fails
* @property {string} notificationEmailAddress email address to send notification to; empty string if shouldEmailOnFailure=false
* @property {string} notificationEmailMessage email message to send; empty string if shouldEmailOnFailure=false
* @property {number} createdBy user id of creator
* @property {string} [targetObjectId] ObjectID of target data extension
* @property {string} r__dataExtension_key key of target data extension
* @property {string} c__automation_step custom key for verifications based on automation, step and activity number
*/
/**
* @typedef {Object.<string, AutomationItem>} AutomationMap
* @typedef {{metadata:AutomationMap,type:string}} AutomationMapObj
* @typedef {{metadata:object | AutomationItem,type:string}} AutomationItemObj
* @typedef {object} McdevDeltaPkgItem
* @property {string} file relative path to file
* @property {number} changes changed lines
* @property {number} insertions added lines
* @property {number} deletions deleted lines
* @property {boolean} binary is a binary file
* @property {boolean} moved git thinks this file was moved
* @property {string} [fromPath] git thinks this relative path is where the file was before
* @property {string} type metadata type
* @property {string} externalKey key
* @property {string} name name
* @property {'move'|'add/update'|'delete'} gitAction what git recognized as an action
* @property {string} _credential mcdev credential name
* @property {string} _businessUnit mcdev business unit name inside of _credential
* @typedef {import('simple-git').DiffResultTextFile & McdevDeltaPkgItem} DeltaPkgItem
*/
/**
* @typedef {import('sfmc-sdk/util').RestError} RestError
* @typedef {import('sfmc-sdk/util').SOAPError} SOAPError
* @typedef {SOAPError & RestError} SDKError
*/
/**
* @typedef {object} SkipInteraction signals what to insert automatically for things usually asked via wizard
* @property {string} [client_id] client id of installed package
* @property {string} [client_secret] client secret of installed package
* @property {string} [auth_url] tenant specific auth url of installed package
* @property {number} [account_id] MID of the Parent Business Unit
* @property {string} [credentialName] how you would like the credential to be named
* @property {string} [gitRemoteUrl] URL of Git remote server
* @property {boolean} [fixKeysReretrieve] will trigger re-downloading latest versions of dependent types after fixing keys
* @property {string} [gitPush] used by mcdev init to directly push to a remote
* @property {string} [developmentBu] used by mcdev init to directly push to a remote
* @property {string} [downloadBUs] used by mcdev init to directly push to a remote
*/
/**
* @typedef {object} AuthObject
* @property {string} client_id client_id client_id for sfmc-sdk auth
* @property {string} client_secret client_secret for sfmc-sdk auth
* @property {number} account_id mid of business unit to auth against
* @property {string} auth_url authentication base url
*/
/**
* @typedef {object} SoapRequestParams
* @property {string} [continueRequest] request id
* @property {object} [options] additional options (CallsInConversation, Client, ConversationID, Priority, RequestType, SaveOptions, ScheduledTime, SendResponseTo, SequenceCode)
* @property {*} [clientIDs] ?
* @property {SoapSDKFilter} [filter] simple or complex
complex
* @property {boolean} [QueryAllAccounts] all BUs or just one
*/
/**
* @typedef {object} SoapFilterSimple
* @property {string} property field
* @property {'equals'|'notEquals'|'isNull'|'isNotNull'|'greaterThan'|'lessThan'|'greaterThanOrEqual'|'lessThanOrEqual'|'between'|'IN'|'in'|'like'} simpleOperator various options
* @property {string | number | boolean | string[] | number[]} [value] field value
*/
/**
* @typedef {object} SoapFilterComplex
* @property {SoapSDKFilter} leftOperand string for simple or a new filter-object for complex
* @property {'AND'|'OR'} logicalOperator various options
* @property {SoapSDKFilter} rightOperand string for simple or a new filter-object for complex; omit for isNull and isNotNull
*/
/**
* @typedef {object} SoapSDKFilterSimple
* @property {SoapFilterSimple["property"]} leftOperand string for simple or a new filter-object for complex
* @property {SoapFilterSimple["simpleOperator"]} operator various options
* @property {SoapFilterSimple["value"]} [rightOperand] string for simple or a new filter-object for complex; omit for isNull and isNotNull
*/
/**
* @typedef {object} SoapSDKFilterComplex
* @property {SoapFilterComplex["leftOperand"]} leftOperand string for simple or a new filter-object for complex
* @property {SoapFilterComplex["logicalOperator"]} operator various options
* @property {SoapFilterComplex["rightOperand"]} rightOperand string for simple or a new filter-object for complex; omit for isNull and isNotNull
*/
/**
* @typedef {SoapSDKFilterSimple | SoapSDKFilterComplex} SoapSDKFilter
*/
/**
* @typedef {object} AssetRequestParams
* @property {string} [continueRequest] request id
* @property {object} [options] additional options (CallsInConversation, Client, ConversationID, Priority, RequestType, SaveOptions, ScheduledTime, SendResponseTo, SequenceCode)
* @property {*} [clientIDs] ?
complex
* @property {object} [page] pagination
* @property {string[]} [fields] list of fields we want returned
* @property {{property:string, direction: 'ASC'|'DESC'}[]} [sort] pagination
* @property {AssetFilter | AssetFilterSimple} [query] simple or complex filter
*/
/**
* @typedef {object} AssetFilter
* @property {AssetFilter | AssetFilterSimple} leftOperand string for simple or a new filter-object for complex
* @property {'AND'|'OR'} logicalOperator various options
* @property {SoapSDKFilter | AssetFilterSimple} [rightOperand] string for simple or a new filter-object for complex; omit for isNull and isNotNull
*/
/**
* @typedef {object} AssetFilterSimple
* @property {string} property field
* @property {'equal'|'notEquals'|'isNull'|'isNotNull'|'greaterThan'|'lessThan'|'greaterThanOrEqual'|'lessThanOrEqual'|'between'|'IN'|'in'|'like'} simpleOperator various options
* @property {string | number | boolean | Array} value field value
*/
/**
* @typedef {object} Mcdevrc
* @property {object} credentials list of credentials
* @property {object} options configure options for mcdev
* @property {object} directories configure directories for mcdev to read/write to
* @property {string} directories.businessUnits "businessUnits/"
* @property {string} directories.deploy "deploy/"
* @property {string} directories.docs "docs/"
* @property {string} directories.retrieve "retrieve/"
* @property {string} directories.template "template/"
* @property {string} directories.templateBuilds ["retrieve/", "deploy/"]
* @property {Object.<string, object>} markets templating variables grouped by markets
* @property {object} marketList combination of markets and BUs for streamlined deployments
* @property {object} metaDataTypes templating variables grouped by markets
* @property {string[]} metaDataTypes.retrieve define what types shall be downloaded by default during retrieve
* @property {string[]} metaDataTypes.createDeltaPkg defines what types shall be passed to build() as part of running cdp
* @property {string[]} metaDataTypes.documentOnRetrieve which types should be parsed & documented after retrieve
* @property {string} version mcdev version that last updated the config file
*/
/**
* @typedef {'error'|'verbose'|'info'|'debug'} LoggerLevel
* @typedef {object} McdevLogger
* @property {LoggerLevel} [level] (msg) print info message
* @property {(msg:string)=>void} error (msg) print error message; wrapper around winstonLogger.error that also sets error code to 1
* @property {(ex:SDKError,message?:string)=>void} errorStack print error with trace message
* @typedef {import('winston').Logger & McdevLogger} Logger
*/
/**
* @typedef {{id: number, key: string, name: string}} AssetItemSimple
* @typedef {Object.<string, AssetItemSimple>} AssetItemSimpleMap
* @typedef {Object.<number, AssetItemSimple>} AssetItemIdSimpleMap
* @typedef {'id'|'key'|'name'} ContentBlockConversionTypes
*/
/**
* @typedef {object} ExplainType
* @property {string} name readable name of type
* @property {string} apiName api parameter name for type
* @property {string} description more info on what this type is about
* @property {boolean | string[]} retrieveByDefault is it retrieved by default OR list of subtypes that are retrieved by default
* @property {object} supports supported features
* @property {boolean} supports.retrieve can you download this type
* @property {boolean} supports.create can you create new records of this type
* @property {boolean} supports.update can you update records of this type
* @property {boolean} supports.delete can you delete records of this type
* @property {boolean} supports.changeKey can you change the key of existing records of this type
* @property {boolean} supports.buildTemplate can you apply templating on downloaded records of this type
* @property {boolean} supports.retrieveAsTemplate can you retrieve & template in one step
*/
/**
* @typedef {object} ListItem
* @property {object} [Client] wrapper
* @property {number} Client.ID owning BU's MID
* @property {string} [PartnerKey] not used
* @property {string} [CreatedDate] "2021-06-21T11:54:57.103"
* @property {string} [ModifiedDate] "2021-06-21T11:54:57.103"
* @property {number} [ID] unique identifier per BU
* @property {string} [ObjectID] not used
* @property {string} [CustomerKey] unique identifer per BU
* @property {string} [Path] customn field that tracks the exact directory path of the current folder including its own name
* @property {object} [ParentFolder] wrapper
* @property {number} ParentFolder.ID folder id of parent folder; 0 if current folder is already on top level
* @property {string} [ParentFolder.ObjectID] not used
* @property {string} [ParentFolder.Path] customn field that tracks the exact directory path of the current folder including its own name
* @property {string} Name folder name
* @property {string} [Description] deprecated option to describe the folder content
* @property {string} ContentType e.g. "shared_data"; see folder-subtypes for complete list
* @property {boolean} IsActive ?
* @property {boolean} IsEditable option to disable renaming/moving this folder via GUI
* @property {boolean} AllowChildren option to prevent creating subfolders via GUI
* @property {boolean} [_generated] helper flag for Deployer class to signal if the folder was auto-generated or manually placed
*
* @typedef {Object.<number, ListItem>} ListIdMap key=id
* @typedef {Object.<string, ListItem>} ListMap key=customer key
*/
/**
* @typedef {object} ReferenceObject returned by /data/v1/integration/member/salesforce/object/<OBJECT NAME>/referenceobjects
* @property {string} displayname label
* @property {string} referenceObjectName api name of salesforce object
* @property {string} relationshipName name of lookup/MD field on related object ending on __r (way to return fields from other object)
* @property {string} relationshipIdName name of lookup/MD field on related object ending on __c (returning id)
* @property {boolean} isPolymorphic if this lookup can point to multiple objects or not
*
* @typedef {object} SfObjectPicklist returned by /legacy/v1/beta/integration/member/salesforce/object/<OBJECT NAME>
* @property {boolean} active -
* @property {boolean} defaultValue -
* @property {string} label what you see in the GUI
* @property {string} value whats stored in the DB
*/
/**
* @typedef {object} SfObjectField returned by /legacy/v1/beta/integration/member/salesforce/object/<OBJECT NAME>
* @property {string} label "Annual Revenue"
* @property {string} name "AnnualRevenue"
* @property {'currency'|'string'|'int'|'picklist'|'textarea'|'boolean'|'date'|'datetime'|'email'} datatype type
* @property {number} length 0-4000
* @property {boolean} nillable == not required
* @property {boolean} custom is it a custom field
* @property {boolean} updateable always true?
* @property {boolean} createable always true?
* @property {boolean} defaultedoncreate -
* @property {boolean} externalid -
* @property {boolean} idlookup -
* @property {number} precision -
* @property {number} scale -
* @property {'Currency'|'Text'|'Number'|'Picklist'|'Text Area (long)'|'Checkbox'|'Date'|'Date/Time'|'Email'} displaydatatype "Currency"
* @property {string} objectname "Lead",
* @property {string} relationname "",
* @property {boolean} isnamefield -
* @property {SfObjectPicklist[]} [picklist] list of values
*/
/**
* @typedef {object} configurationArguments
* @property {string} applicationExtensionKey SalesforceObjectTriggerV2
* @property {string} version 3.0
* @property {'Created'|'Updated'|'CreatedUpdated'} salesforceTriggerCriteria what record event in SF triggers this
* @property {object} eventDataConfig what objects are used by this event
* @property {eventDataConfigObject[]} eventDataConfig.objects list of sf objects with the fields that are used
* @property {Conditions} primaryObjectFilterCriteria TODO
* @property {Conditions} relatedObjectFilterCriteria TODO
* @property {object} [additionalObjectFilterCriteria] seems to only exist on journey but not on event and also not on every journey
* @property {object} contactKey defines how this event links to the all contacts list
* @property {string} contactKey.relationshipIdName Id / the __c field
* @property {string} contactKey.relationshipName Common / the __r field
* @property {boolean} contactKey.isPolymorphic false
* @property {string} contactKey.referenceObjectName Common
* @property {string} [contactKey.fieldName] if relationshipIdName points to a __c field then this tends to be set to "Id"
* @property {object} passThroughArgument TODO
* @property {object} passThroughArgument.fields TODO
* @property {string} passThroughArgument.fields.ContactKey CampaignMember:Common:Id
* @property {object} passThroughArgument.fields.Email CampaignMember:Common:Email; not affected by changing which field is to be used for email in the journey
* @property {string} [passThroughArgument.fields.HasOptedOutOfEmail] Contact:HasOptedOutOfEmail
* @property {string} primaryObjectFilterSummary primaryObjectFilterCriteria in simplified string-form
* @property {string} relatedObjectFilterSummary relatedObjectFilterCriteria in simplified string-form
* @property {string[]} eventDataSummary eventDataConfig in simplified string-form
* @property {'Created;'|'Updated;'|'Created;Updated;'} evaluationCriteriaSummary salesforceTriggerCriteria plus semi-colon
* @property {'CampaignMember'|'Contact'} contactPersonType if objectAPIName==CampaignMember then this is also CampaignMember; otherwise it's Contact
* @property {string} objectAPIName the SF object on which the salesforceTriggerCriteria is listening on
* @property {string} whoToInject "objectAPIName (Contact / Lead / Contacts and Leads)"
* @property {string} criteria empty string for SF events
* @property {number} schemaVersionId set to 0 for SF events
*/
/**
* @typedef {object} eventDataConfigObject part of configurationArguments
* @property {string} dePrefix CampaignMember:Campaign:
* @property {boolean} isPolymorphic ?
* @property {string} referenceObject field on parent object containing the id; ends on __c for custom fields; same as referenceObject for standard fields; can be "Contacts and Leads"
* @property {string} relationshipName field on parent object acting as lookup; ends on __r for custom fields; same as referenceObject for standard fields; can be "Common"
* @property {string} [relationshipIdName] ?
* @property {string[]} fields list of field names that are used by this journey
*/
/**
* @typedef {object} Conditions part of configurationArguments
* @property {'AND'|'OR'} operand -
* @property {(Conditions | FieldCondition)[]} conditions list of conditions
*/
/**
* @typedef {object} FieldCondition part of configurationArguments
* @property {number} _length is 0 for booleans, otherwise field length
* @property {'currency'|'string'|'int'|'picklist'|'textarea'|'boolean'|'date'|'datetime'|'email'} datatype type
* @property {string} fieldName field API name; "TR1__Email__c"
* @property {string} folderId "CampaignMember-CampaignMember"
* @property {string} id "CampaignMember-CampaignMember-TR1__Email__c"
* @property {boolean} isPolymorphic ?
* @property {string} name likely the field label; "Email"
* @property {'equals'|'EQUALS'|'WASSET'} operator condition comparator
* @property {string} [value] value to compare the field with if operator is sth like "equals"; booleans are stored as upper-camel-case string!
* @property {number} precision ?
* @property {string} referenceObjectName "Contacts and Leads"
* @property {string} relationshipIdName "CommonId"; can be an empty string
* @property {string} relationshipName "Common"; can be an empty string
* @property {number} scale ?
* @property {string} text seems to be equal to name-attribute?; "Email"
*/
/**
*
* @callback validationRuleFix
* @returns {boolean|null} true = test passed; false = test failed & fixed; null = test failed & item removed to fix
*
* @callback validationRuleTest
* @returns {boolean} true = test passed; false = test failed
*
* @typedef {object} validationRule
* @property {string} failedMsg error message to display in case of a failed test
* @property {validationRuleTest} passed test to run
* @property {validationRuleFix} [fix] test to run
*
* @typedef {Object.<string, validationRule>} validationRuleList key=rule name
*/
/**
* @typedef {object} DomainVerificationItem
* @property {number} [enterpriseId] EID
* @property {number} [memberId] MID
* @property {string} [domain] domain or email address used in retrieve and create
* @property {string} [emailAddress] email address used in update call for isSendable field
* @property {'Verified'|'Pending'} [status] returned by retrieve
* @property {'SAP'|'UserDomain'|'PrivateDomain'|'RegisteredDomain'} [domainType] returned by retrieve and required for update call
* @property {boolean} isSendable automatically true upon creation. can be changed to false via update
* @property {string} [emailSendTime] e.g. ""2023-06-19T11:11:17.32""
* @property {string} [notificationEmail] for bulk-creation only: email address to send notifications to when done
* @property {string[]} [addresses] for bulk-creation only: list of email addresses to verify
* @property {string} [deTable] for bulk-creation only: instead of an array in addresses, specify the name of a DE
* @property {string} [deColumn] for bulk-creation only: instead of an array in addresses, specify the name of a DE column/field here
*/
export default {};