@pipedream/google_drive 0.3.2 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/actions/add-file-sharing-preference/add-file-sharing-preference.mjs +83 -0
  2. package/actions/copy-file/copy-file.mjs +34 -0
  3. package/actions/create-file/create-file.mjs +242 -0
  4. package/actions/create-file-from-template/create-file-from-template.mjs +98 -0
  5. package/actions/create-file-from-text/create-file-from-text.mjs +67 -0
  6. package/actions/create-folder/create-folder.mjs +89 -0
  7. package/actions/create-shared-drive/create-shared-drive.mjs +25 -0
  8. package/actions/delete-file/delete-file.mjs +37 -0
  9. package/actions/delete-shared-drive/delete-shared-drive.mjs +30 -0
  10. package/actions/download-file/download-file.mjs +120 -0
  11. package/actions/find-file/find-file.mjs +35 -0
  12. package/actions/find-folder/find-folder.mjs +49 -0
  13. package/actions/get-folder-id-for-path/get-folder-id-for-path.mjs +62 -0
  14. package/actions/get-shared-drive/get-shared-drive.mjs +37 -0
  15. package/actions/google-mime-types.mjs +19 -0
  16. package/actions/google-workspace-export-formats.mjs +74 -0
  17. package/actions/language-codes.mjs +742 -0
  18. package/actions/move-file/move-file.mjs +52 -0
  19. package/actions/move-file-to-trash/move-file-to-trash.mjs +41 -0
  20. package/actions/replace-file/replace-file.mjs +134 -0
  21. package/actions/search-shared-drives/search-shared-drives.mjs +34 -0
  22. package/actions/update-file/update-file.mjs +164 -0
  23. package/actions/update-shared-drive/update-shared-drive.mjs +77 -0
  24. package/actions/upload-file/upload-file.mjs +120 -0
  25. package/constants.mjs +200 -0
  26. package/google_drive.app.mjs +1432 -0
  27. package/package.json +23 -20
  28. package/sources/changes-to-specific-files/changes-to-specific-files.mjs +226 -0
  29. package/sources/changes-to-specific-files-shared-drive/changes-to-specific-files-shared-drive.mjs +110 -0
  30. package/sources/common-webhook.mjs +201 -0
  31. package/sources/new-files-instant/new-files-instant.mjs +95 -0
  32. package/sources/new-or-modified-comments/new-or-modified-comments.mjs +104 -0
  33. package/sources/new-or-modified-files/new-or-modified-files.mjs +66 -0
  34. package/sources/new-or-modified-folders/new-or-modified-folders.mjs +86 -0
  35. package/sources/new-shared-drive/new-shared-drive.mjs +68 -0
  36. package/utils.mjs +267 -0
  37. package/google_drive.app.js +0 -212
  38. package/sources/changes-to-specific-files/changes-to-specific-files.js +0 -226
  39. package/sources/new-or-modified-files/new-or-modified-files.js +0 -213
@@ -0,0 +1,742 @@
1
+ export default [
2
+ {
3
+ label: "Undetected",
4
+ value: "und",
5
+ },
6
+ {
7
+ label: "Abkhazian",
8
+ value: "ab",
9
+ },
10
+ {
11
+ label: "Afar",
12
+ value: "aa",
13
+ },
14
+ {
15
+ label: "Afrikaans",
16
+ value: "af",
17
+ },
18
+ {
19
+ label: "Akan",
20
+ value: "ak",
21
+ },
22
+ {
23
+ label: "Albanian",
24
+ value: "sq",
25
+ },
26
+ {
27
+ label: "Amharic",
28
+ value: "am",
29
+ },
30
+ {
31
+ label: "Arabic",
32
+ value: "ar",
33
+ },
34
+ {
35
+ label: "Aragonese",
36
+ value: "an",
37
+ },
38
+ {
39
+ label: "Armenian",
40
+ value: "hy",
41
+ },
42
+ {
43
+ label: "Assamese",
44
+ value: "as",
45
+ },
46
+ {
47
+ label: "Avaric",
48
+ value: "av",
49
+ },
50
+ {
51
+ label: "Avestan",
52
+ value: "ae",
53
+ },
54
+ {
55
+ label: "Aymara",
56
+ value: "ay",
57
+ },
58
+ {
59
+ label: "Azerbaijani",
60
+ value: "az",
61
+ },
62
+ {
63
+ label: "Bambara",
64
+ value: "bm",
65
+ },
66
+ {
67
+ label: "Bashkir",
68
+ value: "ba",
69
+ },
70
+ {
71
+ label: "Basque",
72
+ value: "eu",
73
+ },
74
+ {
75
+ label: "Belarusian",
76
+ value: "be",
77
+ },
78
+ {
79
+ label: "Bengali",
80
+ value: "bn",
81
+ },
82
+ {
83
+ label: "Bihari languages",
84
+ value: "bh",
85
+ },
86
+ {
87
+ label: "Bislama",
88
+ value: "bi",
89
+ },
90
+ {
91
+ label: "Bokmål, Norwegian; Norwegian Bokmål",
92
+ value: "nb",
93
+ },
94
+ {
95
+ label: "Bosnian",
96
+ value: "bs",
97
+ },
98
+ {
99
+ label: "Breton",
100
+ value: "br",
101
+ },
102
+ {
103
+ label: "Bulgarian",
104
+ value: "bg",
105
+ },
106
+ {
107
+ label: "Burmese",
108
+ value: "my",
109
+ },
110
+ {
111
+ label: "Catalan; Valencian",
112
+ value: "ca",
113
+ },
114
+ {
115
+ label: "Central Khmer",
116
+ value: "km",
117
+ },
118
+ {
119
+ label: "Chamorro",
120
+ value: "ch",
121
+ },
122
+ {
123
+ label: "Chechen",
124
+ value: "ce",
125
+ },
126
+ {
127
+ label: "Chichewa; Chewa; Nyanja",
128
+ value: "ny",
129
+ },
130
+ {
131
+ label: "Chinese",
132
+ value: "zh",
133
+ },
134
+ {
135
+ label: "Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic",
136
+ value: "cu",
137
+ },
138
+ {
139
+ label: "Chuvash",
140
+ value: "cv",
141
+ },
142
+ {
143
+ label: "Cornish",
144
+ value: "kw",
145
+ },
146
+ {
147
+ label: "Corsican",
148
+ value: "co",
149
+ },
150
+ {
151
+ label: "Cree",
152
+ value: "cr",
153
+ },
154
+ {
155
+ label: "Croatian",
156
+ value: "hr",
157
+ },
158
+ {
159
+ label: "Czech",
160
+ value: "cs",
161
+ },
162
+ {
163
+ label: "Danish",
164
+ value: "da",
165
+ },
166
+ {
167
+ label: "Divehi; Dhivehi; Maldivian",
168
+ value: "dv",
169
+ },
170
+ {
171
+ label: "Dutch; Flemish",
172
+ value: "nl",
173
+ },
174
+ {
175
+ label: "Dzongkha",
176
+ value: "dz",
177
+ },
178
+ {
179
+ label: "English",
180
+ value: "en",
181
+ },
182
+ {
183
+ label: "Esperanto",
184
+ value: "eo",
185
+ },
186
+ {
187
+ label: "Estonian",
188
+ value: "et",
189
+ },
190
+ {
191
+ label: "Ewe",
192
+ value: "ee",
193
+ },
194
+ {
195
+ label: "Faroese",
196
+ value: "fo",
197
+ },
198
+ {
199
+ label: "Fijian",
200
+ value: "fj",
201
+ },
202
+ {
203
+ label: "Finnish",
204
+ value: "fi",
205
+ },
206
+ {
207
+ label: "French",
208
+ value: "fr",
209
+ },
210
+ {
211
+ label: "Fulah",
212
+ value: "ff",
213
+ },
214
+ {
215
+ label: "Gaelic; Scottish Gaelic",
216
+ value: "gd",
217
+ },
218
+ {
219
+ label: "Galician",
220
+ value: "gl",
221
+ },
222
+ {
223
+ label: "Ganda",
224
+ value: "lg",
225
+ },
226
+ {
227
+ label: "Georgian",
228
+ value: "ka",
229
+ },
230
+ {
231
+ label: "German",
232
+ value: "de",
233
+ },
234
+ {
235
+ label: "Greek, Modern (1453-)",
236
+ value: "el",
237
+ },
238
+ {
239
+ label: "Guarani",
240
+ value: "gn",
241
+ },
242
+ {
243
+ label: "Gujarati",
244
+ value: "gu",
245
+ },
246
+ {
247
+ label: "Haitian; Haitian Creole",
248
+ value: "ht",
249
+ },
250
+ {
251
+ label: "Hausa",
252
+ value: "ha",
253
+ },
254
+ {
255
+ label: "Hebrew",
256
+ value: "he",
257
+ },
258
+ {
259
+ label: "Herero",
260
+ value: "hz",
261
+ },
262
+ {
263
+ label: "Hindi",
264
+ value: "hi",
265
+ },
266
+ {
267
+ label: "Hiri Motu",
268
+ value: "ho",
269
+ },
270
+ {
271
+ label: "Hungarian",
272
+ value: "hu",
273
+ },
274
+ {
275
+ label: "Icelandic",
276
+ value: "is",
277
+ },
278
+ {
279
+ label: "Ido",
280
+ value: "io",
281
+ },
282
+ {
283
+ label: "Igbo",
284
+ value: "ig",
285
+ },
286
+ {
287
+ label: "Indonesian",
288
+ value: "id",
289
+ },
290
+ {
291
+ label: "Interlingua (International Auxiliary Language Association)",
292
+ value: "ia",
293
+ },
294
+ {
295
+ label: "Interlingue; Occidental",
296
+ value: "ie",
297
+ },
298
+ {
299
+ label: "Inuktitut",
300
+ value: "iu",
301
+ },
302
+ {
303
+ label: "Inupiaq",
304
+ value: "ik",
305
+ },
306
+ {
307
+ label: "Irish",
308
+ value: "ga",
309
+ },
310
+ {
311
+ label: "Italian",
312
+ value: "it",
313
+ },
314
+ {
315
+ label: "Japanese",
316
+ value: "ja",
317
+ },
318
+ {
319
+ label: "Javanese",
320
+ value: "jv",
321
+ },
322
+ {
323
+ label: "Kalaallisut; Greenlandic",
324
+ value: "kl",
325
+ },
326
+ {
327
+ label: "Kannada",
328
+ value: "kn",
329
+ },
330
+ {
331
+ label: "Kanuri",
332
+ value: "kr",
333
+ },
334
+ {
335
+ label: "Kashmiri",
336
+ value: "ks",
337
+ },
338
+ {
339
+ label: "Kazakh",
340
+ value: "kk",
341
+ },
342
+ {
343
+ label: "Kikuyu; Gikuyu",
344
+ value: "ki",
345
+ },
346
+ {
347
+ label: "Kinyarwanda",
348
+ value: "rw",
349
+ },
350
+ {
351
+ label: "Kirghiz; Kyrgyz",
352
+ value: "ky",
353
+ },
354
+ {
355
+ label: "Komi",
356
+ value: "kv",
357
+ },
358
+ {
359
+ label: "Kongo",
360
+ value: "kg",
361
+ },
362
+ {
363
+ label: "Korean",
364
+ value: "ko",
365
+ },
366
+ {
367
+ label: "Kuanyama; Kwanyama",
368
+ value: "kj",
369
+ },
370
+ {
371
+ label: "Kurdish",
372
+ value: "ku",
373
+ },
374
+ {
375
+ label: "Lao",
376
+ value: "lo",
377
+ },
378
+ {
379
+ label: "Latin",
380
+ value: "la",
381
+ },
382
+ {
383
+ label: "Latvian",
384
+ value: "lv",
385
+ },
386
+ {
387
+ label: "Limburgan; Limburger; Limburgish",
388
+ value: "li",
389
+ },
390
+ {
391
+ label: "Lingala",
392
+ value: "ln",
393
+ },
394
+ {
395
+ label: "Lithuanian",
396
+ value: "lt",
397
+ },
398
+ {
399
+ label: "Luba-Katanga",
400
+ value: "lu",
401
+ },
402
+ {
403
+ label: "Luxembourgish; Letzeburgesch",
404
+ value: "lb",
405
+ },
406
+ {
407
+ label: "Macedonian",
408
+ value: "mk",
409
+ },
410
+ {
411
+ label: "Malagasy",
412
+ value: "mg",
413
+ },
414
+ {
415
+ label: "Malay",
416
+ value: "ms",
417
+ },
418
+ {
419
+ label: "Malayalam",
420
+ value: "ml",
421
+ },
422
+ {
423
+ label: "Maltese",
424
+ value: "mt",
425
+ },
426
+ {
427
+ label: "Manx",
428
+ value: "gv",
429
+ },
430
+ {
431
+ label: "Maori",
432
+ value: "mi",
433
+ },
434
+ {
435
+ label: "Marathi",
436
+ value: "mr",
437
+ },
438
+ {
439
+ label: "Marshallese",
440
+ value: "mh",
441
+ },
442
+ {
443
+ label: "Mongolian",
444
+ value: "mn",
445
+ },
446
+ {
447
+ label: "Nauru",
448
+ value: "na",
449
+ },
450
+ {
451
+ label: "Navajo; Navaho",
452
+ value: "nv",
453
+ },
454
+ {
455
+ label: "Ndebele, North; North Ndebele",
456
+ value: "nd",
457
+ },
458
+ {
459
+ label: "Ndebele, South; South Ndebele",
460
+ value: "nr",
461
+ },
462
+ {
463
+ label: "Ndonga",
464
+ value: "ng",
465
+ },
466
+ {
467
+ label: "Nepali",
468
+ value: "ne",
469
+ },
470
+ {
471
+ label: "Northern Sami",
472
+ value: "se",
473
+ },
474
+ {
475
+ label: "Norwegian",
476
+ value: "no",
477
+ },
478
+ {
479
+ label: "Norwegian Nynorsk; Nynorsk, Norwegian",
480
+ value: "nn",
481
+ },
482
+ {
483
+ label: "Occitan (post 1500)",
484
+ value: "oc",
485
+ },
486
+ {
487
+ label: "Ojibwa",
488
+ value: "oj",
489
+ },
490
+ {
491
+ label: "Oriya",
492
+ value: "or",
493
+ },
494
+ {
495
+ label: "Oromo",
496
+ value: "om",
497
+ },
498
+ {
499
+ label: "Ossetian; Ossetic",
500
+ value: "os",
501
+ },
502
+ {
503
+ label: "Pali",
504
+ value: "pi",
505
+ },
506
+ {
507
+ label: "Panjabi; Punjabi",
508
+ value: "pa",
509
+ },
510
+ {
511
+ label: "Persian",
512
+ value: "fa",
513
+ },
514
+ {
515
+ label: "Polish",
516
+ value: "pl",
517
+ },
518
+ {
519
+ label: "Portuguese",
520
+ value: "pt",
521
+ },
522
+ {
523
+ label: "Pushto; Pashto",
524
+ value: "ps",
525
+ },
526
+ {
527
+ label: "Quechua",
528
+ value: "qu",
529
+ },
530
+ {
531
+ label: "Romanian; Moldavian; Moldovan",
532
+ value: "ro",
533
+ },
534
+ {
535
+ label: "Romansh",
536
+ value: "rm",
537
+ },
538
+ {
539
+ label: "Rundi",
540
+ value: "rn",
541
+ },
542
+ {
543
+ label: "Russian",
544
+ value: "ru",
545
+ },
546
+ {
547
+ label: "Samoan",
548
+ value: "sm",
549
+ },
550
+ {
551
+ label: "Sango",
552
+ value: "sg",
553
+ },
554
+ {
555
+ label: "Sanskrit",
556
+ value: "sa",
557
+ },
558
+ {
559
+ label: "Sardinian",
560
+ value: "sc",
561
+ },
562
+ {
563
+ label: "Serbian",
564
+ value: "sr",
565
+ },
566
+ {
567
+ label: "Shona",
568
+ value: "sn",
569
+ },
570
+ {
571
+ label: "Sichuan Yi; Nuosu",
572
+ value: "ii",
573
+ },
574
+ {
575
+ label: "Sindhi",
576
+ value: "sd",
577
+ },
578
+ {
579
+ label: "Sinhala; Sinhalese",
580
+ value: "si",
581
+ },
582
+ {
583
+ label: "Slovak",
584
+ value: "sk",
585
+ },
586
+ {
587
+ label: "Slovenian",
588
+ value: "sl",
589
+ },
590
+ {
591
+ label: "Somali",
592
+ value: "so",
593
+ },
594
+ {
595
+ label: "Sotho, Southern",
596
+ value: "st",
597
+ },
598
+ {
599
+ label: "Spanish; Castilian",
600
+ value: "es",
601
+ },
602
+ {
603
+ label: "Sundanese",
604
+ value: "su",
605
+ },
606
+ {
607
+ label: "Swahili",
608
+ value: "sw",
609
+ },
610
+ {
611
+ label: "Swati",
612
+ value: "ss",
613
+ },
614
+ {
615
+ label: "Swedish",
616
+ value: "sv",
617
+ },
618
+ {
619
+ label: "Tagalog",
620
+ value: "tl",
621
+ },
622
+ {
623
+ label: "Tahitian",
624
+ value: "ty",
625
+ },
626
+ {
627
+ label: "Tajik",
628
+ value: "tg",
629
+ },
630
+ {
631
+ label: "Tamil",
632
+ value: "ta",
633
+ },
634
+ {
635
+ label: "Tatar",
636
+ value: "tt",
637
+ },
638
+ {
639
+ label: "Telugu",
640
+ value: "te",
641
+ },
642
+ {
643
+ label: "Thai",
644
+ value: "th",
645
+ },
646
+ {
647
+ label: "Tibetan",
648
+ value: "bo",
649
+ },
650
+ {
651
+ label: "Tigrinya",
652
+ value: "ti",
653
+ },
654
+ {
655
+ label: "Tonga (Tonga Islands)",
656
+ value: "to",
657
+ },
658
+ {
659
+ label: "Tsonga",
660
+ value: "ts",
661
+ },
662
+ {
663
+ label: "Tswana",
664
+ value: "tn",
665
+ },
666
+ {
667
+ label: "Turkish",
668
+ value: "tr",
669
+ },
670
+ {
671
+ label: "Turkmen",
672
+ value: "tk",
673
+ },
674
+ {
675
+ label: "Twi",
676
+ value: "tw",
677
+ },
678
+ {
679
+ label: "Uighur; Uyghur",
680
+ value: "ug",
681
+ },
682
+ {
683
+ label: "Ukrainian",
684
+ value: "uk",
685
+ },
686
+ {
687
+ label: "Urdu",
688
+ value: "ur",
689
+ },
690
+ {
691
+ label: "Uzbek",
692
+ value: "uz",
693
+ },
694
+ {
695
+ label: "Venda",
696
+ value: "ve",
697
+ },
698
+ {
699
+ label: "Vietnamese",
700
+ value: "vi",
701
+ },
702
+ {
703
+ label: "Volapük",
704
+ value: "vo",
705
+ },
706
+ {
707
+ label: "Walloon",
708
+ value: "wa",
709
+ },
710
+ {
711
+ label: "Welsh",
712
+ value: "cy",
713
+ },
714
+ {
715
+ label: "Western Frisian",
716
+ value: "fy",
717
+ },
718
+ {
719
+ label: "Wolof",
720
+ value: "wo",
721
+ },
722
+ {
723
+ label: "Xhosa",
724
+ value: "xh",
725
+ },
726
+ {
727
+ label: "Yiddish",
728
+ value: "yi",
729
+ },
730
+ {
731
+ label: "Yoruba",
732
+ value: "yo",
733
+ },
734
+ {
735
+ label: "Zhuang; Chuang",
736
+ value: "za",
737
+ },
738
+ {
739
+ label: "Zulu",
740
+ value: "zu",
741
+ },
742
+ ];