-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.spelling
1604 lines (1604 loc) · 19 KB
/
.spelling
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
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ECharts
Cloudfront
speechrecognition
Pre
pre-filter
dronahq
deltecs
WebSockets
WebSocket
Binance
displayMessage
cryptocurrency
startWebSocket
infotech
docusaurus
backend
popups
html
aspx
php
api
sdk
src
dronahq.js
oauth
sendgrid
github
mongodb
macos
dropdown
navbar
http
microapp
freeflow
tooltip
popup
openai
barcode
powershell
checkboxes
openid
eg
url
frontend
secretid
restsharp
apis
signin
saml
webapp
okta
ios
ubuntu
sso
X509Certificate
metadata
iocd
kubernetes
mysql
entrypoint
css
textarea
encodeurl
encodeurlcomponent
decodeurl
decodeurlcomponent
boolean
whitespace
substring
eval
acos
acosh
asin
asinh
atan
atanh
atan2
fullscreen
actionflow
realtime
automations
actionflows
node.js
versioned
i18e
1.0
jamstack
16.14
arrowright
VersionedLink
TabItem
docusaurus.new
basics.svg
VideoEmbed
LoginUser
AuthorizeUser
SecretKey
seperated
JWTs
v7.3.3
PostgreSQL
changelogs
databases
vCPUs
8.0
5.0
k8s
mongod
docker-entrypoint-initdb.d
CONVERT_TZ
base64
license_key
mysql_host
mysql_password
aws_s3_region
aws_s3_access_key_id
aws_s3_access_key_secret
aws_s3_bucket_name
s3
cpu
js
kanban
e.g.
arrow_right.svg
pre-built
analytics
Fx
2.0
deprovisioning
watchlist
datasource
customizable
pre-defined
dronahq.com
Versioning
resize
behaviour
24-Column
ui
Multiscreen
autogenerated
pre-set
viewport
Tablegrid
TableGrid
tablegrid
WhatsApp
pre-initialized
Querystring
productname2
O'Reilly
checkbox
citiesvisited
20DronaHQ
20to
UTF-8
110.4
millis
toMillis
fromMillis
dayOfTheWeek
hasSameDate
datePlus
YYYY-MM-DD
diffDate
isLocalTime
110.48
invoice.number
24hr
12hr
datepicker
DateTime
datetimepicker
strDate
action_value
enter_press
focus_out
multiscreen
microapps
widgetautocrud
oidc
user.firstname
user.email
usermail
middleware
Javascript
AuthnRequest
SAMPLE_DOMAIN
URIs
Xano
GetAllInstances
GetAllWorkspaces
GetAllTables
GetTableContent
SearchTableContent
GetTableSchema
CreateTableContent
UpdateTableContent
DeleteTableContent
TruncateTable
pwgen
stdout
MYSQL_USER
5.6
5.5
mongosh
cli
4.x
5.0.
preconfigured
SSOs
whitelist
webserver
Localhost
https
protos
gRPC
2.2.7.
aws
mongodb_password
ReadWriteMany
2x
VMs
kubectl
IPv6
pem
gcloud
pre-existing
params
docker-entrypoint-initdb
DocumentDB
Shopify
GetAllCustomers
GetSingleCustomer
RetrieveOrdersByCustomer
SearchCustomerByQuery
CreateCustomer
SendInviteToCustomer
UpdateCustomer
GetChannelList
SendMessageToChannel
GetUserList
SendMessage
SendMessageWithBlocks
Gmail
hostname
Whitelisting
whitelisted
GetAccount
GetCustomerList
CreateCustomer
UpdateCustomer
GetAllCharges
InitiateRefund
CreateProduct
GetProductDetails
ListAllProducts
DeleteProduct
ListAllPrices
CreatePrice
CreatePriceRecurring
GetPriceDetails
CreatePaymentLink
ListAllPaymentLinks
GetPaymentLinkDetails
Trello
GetMyBoards
GetBoardLists
AddCard
GetCardsInList
GetAllOpenCardsInBoard
Twilio
SendMessage
SendWhatsappTextMessage
SendWhatsappMediaMessage
SendVerify
SendVerifyWithConfiguration
VerifyCode
Whatsapp
24-hour
pre-configured
Typeform
Vertica
UIs
containerd
repo
systemd
CGroup
kubelet
sudo
kubemaster
linux
Multipass
Runtime
kubeadm
mongodb_host
Plotly
Plotly.js
Cascader
value_select
value_change
Zendesk
What3Words
MyMemory
OCRSpace
OCR.space
DetectText
DetectTextV2
GPT-3
DALL-E
GetModels
CreateCompletion
CreateChatCompletion
CreateEdit
CreateImage
CreateImageEdit
CreateImageVariation
CreateEmbeddings
CreateTranscription
CreateTranslation
ListFiles
UploadFile
DeleteFile
RetrieveFile
RetrieveFileContent
CreateFineTune
ListFineTunes
RetrieveFineTune
CancelFineTune
ListFineTuneEvents
DeleteFineTunedModel
CreateModeration
ListEngines
RetrieveEngine
ChatGPT
GenerateText
GPT-3
EditText
GenerateImage
EditImage
GenerateImageVariations
GenerateChatGPTResponse
GenerateCode
EditCode
TextModeration
TranscribeAudioToText
GenerateTextEmbedding
QuickBooks
Razorpay
Netbanking
Redis
Salesforce
Airtable
Postgres
Subdomain
GetProductList
UpdateProduct
CreateProductVariant
GetOrderDetails
GetAllOrders
CreatePriceRule
GetPriceRules
GetSinglePriceRule
DeletePriceRule
CreateDiscountCode
GetAllDiscountCodes
GetSingleDiscountCode
DeleteDiscountCode
GetProfile
GetUserRepos
ListAllOrganizations
CreateGist
GetRepoUsers
CreateIssue
GetAllLabels
GetIssueList
UpdateIssue
CreateComment
sendEmail
GetCalendarList
GetPrimaryCalendar
AddQuickEvent
AddDetailedEvent
GetAllRowsV2
FindRowsV2
GetAllSheets
GetSheetDetails
CreateSheet
GetAllRows
AddRows
UpdateRow
AddMultipleRows
FindDriveFiles
GetSingleRow
ClearMultipleRows
UpdateMultipleRows
GraphQL
SpaceX
HackerRank
ViewAllTests
GetTestDetails
GetAllTemplates
InviteCandidate
GetTickets
GetProfile
GetGroups
GetUsers
CreateTicket
UpdateTicket
AddTagsToTicket
AddCommentToTicket
FindTicket
CreateTicketWithRequester
GetProfile
GetUpcomingMeetings
CreateMeeting
advanceddropdown
chatbot
listdir
deletefile
changemode
mkdir
rmdir
downloadfile
uploadfile
FindOne
InsertOne
InsertMany
UpdateOne
UpdateMany
DeleteOne
MariaDB
Jira
GetResources
GetProfile
GetProjects
GetAllIssueTypes
GetUsers
GetAllPriorities
CreateIssue
Atlassian
CreateUser
CreateLead
GetContactByID
GetAllContacts
UpdateUser
UpdateLead
SearchByEmail
Instamojo
GetPaymentRequests
CreatePaymentRequests
GetPaymentDetails
GetPaymentRequestDetails
GetRefundList
GetRefundDetails
InfluxDB
HubSpot
GetContacts
CreateContact
GetOwners
SearchContacts
GetDeals
MYSQL_DATABASE
MYSQL_ROOT_PASSWORD
my-secret-pw
VirtualBox
crashlooping
crictl
KodeKloud
config
screen_routing
ROUTING_LEVEL1
ROUTING_LEVEL2
ROUTING_LEVEL3
ROUTING_LEVEL4
mTLS
webhook
Typeahead
timestamp
textinput
Freshdesk
ViewTicketById
ListConversationOfATicket
AddNotesToATicket
ViewAllContacts
ViewContactById
CreateReply
SearchTickets
ViewAllTickets
Firestore
Elasticsearch
clearScroll
deleteByQuery
deleteByQueryRethrottle
deleteScript
existsSource
fieldCaps
getScript
getSource
mget
msearch
msearchTemplate
mtermvectors
putScript
rankEval
reindex
reindexRethrottle
renderSearchTemplate
scriptsPainlessExecute
searchShards
searchTemplate
termvectors
updateByQuery
updateByQueryRethrottle
cat.aliases
cat.allocation
cat.count
cat.fielddata
cat.health
cat.help
cat.indices
cat.master
cat.nodeattrs
cat.nodes
cat.pendingTasks
cat.plugins
cat.recovery
cat.repositories
cat.segments
cat.shards
cat.snapshots
cat.tasks
cat.templates
cat.threadPool
cluster.allocationExplain
cluster.getSettings
cluster.health
cluster.pendingTasks
cluster.putSettings
cluster.remoteInfo
cluster.reroute
cluster.state
cluster.stats
indices.analyze
indices.clearCache
indices.clone
indices.close
indices.create
indices.delete
indices.deleteAlias
indices.deleteTemplate
indices.exists
indices.existsAlias
indices.existsTemplate
indices.existsType
indices.flush
indices.flushSynced
indices.forcemerge
indices.get
indices.getAlias
Datastore
Namespace
namespace
TextInput
1.1
1.2
1.3
1.4
1.5
2.1
2.2
3.1
3.2
Quickstart
1.0a
replicaset
dev
AUTOMATION.version
AUTOMATION.triggerTime
AUTOMATION.logs
webhook.body
webhook.query
webhook.headers
What3words
GetLocation
Get3Words
subdomain
runtime
GetForms
GetFormResponse
AlaSQL
NoSQL
8.3.0
reusability
webhooks
data.records
schema.bases
FindRowById
natively
Serverless
datasets
eu-west-2
dataset
Asana
GetProjectList
GetWorkspaces
GetWorkspaceDetails
CreateProject
GetSections
GetProjectStatus
GetTags
CreateTask
AddTaskToSection
GetTasksByProjects
GetTaskDetails
DeleteTask
UpdateTask
serverless
GetFunctionDetails
InvokeFunction
ListFunctions
RequestResponse
DryRun
DigitalOcean
GetPreSignedUrl
pre-signed
ListBuckets
ListObjects
DeleteObjects
CopyObject
BigQuery
Bitly
Bitly's
GenerateShortLink
JSON-encoded
Multistep
multistep
Connectorname.result.rows.columnname1
Connectorname.result.rows.columnname2
datastore.columnname1
ArrayValue
resized
StringEncode
i.e.
uncheck
untrusted
downtimes
sheet1
sheet2
key1
key2
isGlobal
isWritable
UserOpen
SharedKey
ArrayOfJsonobjects.Key1
ArrayOfJsonobjects.Key2
newkeyname1
newkeyname2
Prod_depend_Doc.Prod_name
Prod_depend_Doc.Quantity
Prod_depend_Doc.Price
Prod_name
ProductName
CostPrice
Prod_ID
ProductID
datastore.columnname2
dep_name
emp_name
Prod_depend_Doc.Prod_ID
prod_datastore.result.rows.name
prod_datastore.result.rows.author_id
prod_datastore.result.rows.name
connectorname.result.rows.columnname1
connectorname.result.rows.columnname2
employee.dep_id
department.dep_id
department.dep_name
destinationLocation
sourceLocation
inputUnit
10.5
25.5
11.5
21.5
20.5
70.5
80.5
employee.emp_name
employee.dep_id
department.dep_id
department.dep_name
json
item1
item2
item3
item4
item5
item6
number1
number2
45.7458
74.9864
40.7486
73.9864
45.64
74.88
unique_id
Fenil
Ramanuj
Divyesh
Rishabh
Brijesh
Rahul
Ronak
Luv
text1
text2
column1
column2
column3
ColumnIndexNumber
ProfileViews.unique_id
ProfileViews.Name
val1
val2
valn
start_date
end_date
datepicker1
substringAfter
base64encode
base64decode
jsonParse
sqrt
formatBase
isFinite
log10
log2
num
afterDate
timestamp1
timestamp2
timestamps
swapFn
substringBefore
uuid
timepicker
Timepicker
Debounce
Moment.js
12-hour
Pomodoro
on_start
on_stop
on_reset
alarm_interval
autocomplete
typeahead
typeahead.PROPERTIES.TYPEDTEXT
Multiselect
row_select
add_click
update_click
delete_click
save_changes
refresh_click
Searchbar
PDFs
split_button
button_click
Order_changed
Action_click
Image_clicked
reCAPTCHA
Sitekey
select_bar
pre-select
pre-selected
RAW_JSON
querybuilder.Query
On_apply
On_clear
pagination.Selected_Page
pagination.Number_of_Pages
OTPs
otp
javascript
openAPI
3.0
SaaS
pre-compiled
parameterized
Petstore
sanitization
HashiCorp
authorized_keys
DevOps
requestor
ClickHouse
datasources
Datasources
breakpoint
usecases
nullable
iframe
frameBorder
allowFullScreen
webkitallowfullscreen
mozallowfullscreen
GetCustomers
getCustomers
CustomerAddress
CustomerDepartment
CustomerEmail
CustomerFullName
CustomerID
automagically
GitLab
Bitbucket
v1.0
v2.0
m1
Homescreen
Colour
iphone
ipad
actionblocks
actionblock
parallely
Usecase
20px
GenerateCardGallery
organise
const
authSteps
v1.0a
refreshSteps
V1.0a
V1.0a.
v2
JSCode
GenerateImageVariation
TranscribeAudioText
GenerateTextEmbeding
Add-ons
your_subdomain.dronahq.io
nameservers
yourdomain.com
www
ä
ê
ó
Punycode
Verisign
host.example.com
mobileprovision
Siri
p12
px
Playstore
debuggable
keystore
Apk
Keystore
Appstore
Adhoc
Recents
iPA
p8
Appstoreconnect
testflight
alias_name
active_link
reset_link
app_name
admin_name
homescreen
Jailbroken
jailbroken
mpin
Passcode
passcode
Favicon
32x32
favicon
Auth0
Onboarding
onboarding
pre-activated
pdf
pdf's
png
jpeg
addon
100px
PostMessage
postMessage
sidebar_position
utm
iframes
DronaHQ.init
DronaHQ.sendMessage
0.5
datastore
dataUser.cust_id
ad-hoc
Datacenter
datacenter
keyspace
Keyspace
Clarifai
PredictImage
PredictVideo
Clearbit
ClickhouseDB
CloudConvert
AllSupportedFormats
FilterFormatsByInput
CreateConvertFileJob
ShowJob
WaitForAJob
ListJobs
CaptureWebsiteJob
CouchDB
Diffbot
Diffbot's
DynamoDB
Rethrottle
helpdesk
subcollection
values.A
values.B
grpc
Proto
proto
GetProducts
GetProductsById
dropdowns
TranslateText
256x256
512x512
1024x1024
B64_JSON
top_p
postgres
PostgresSQL
ProxyCrawl
ProxyCrawl's
CAPTCHAs
prepend
Prepend
GetMessages
upsert
whitelisting
Templated
geocoding
restruct
Gupshup
Gupshup's
debounce
screen_open
Screen_open
Screen_close
Control_click
textboxes
searchbox
Dialogs
dialogs
Crypto.js
Underscore.js
Datadog
Logsene
RunAPI
hostnames
msg
Papertrail
Sumologic
versioning
Wi-Fi
destinationLocation1
Candidate_details_doc.Grade
July-2020
00.000Z
2019-12-02T18
textToFind
indexNumber
array1
array2
beforeDate
dateEquals
2.718281
valuepicker
textbox
termsandconditions
tab_change
switchgroup
fullname
singleusercard