@crowdin/n8n-nodes-crowdin 0.8.0 → 0.9.0
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.
- package/dist/nodes/Crowdin/properties/crowdin/fileBased/projects.js +45 -182
- package/dist/nodes/Crowdin/properties/crowdin/fileBased/projects.js.map +1 -1
- package/dist/nodes/Crowdin/properties/crowdin/fileBased/reports.js +59 -0
- package/dist/nodes/Crowdin/properties/crowdin/fileBased/reports.js.map +1 -1
- package/dist/nodes/Crowdin/properties/crowdin/fileBased/screenshots.js +3 -3
- package/dist/nodes/Crowdin/properties/crowdin/fileBased/screenshots.js.map +1 -1
- package/dist/nodes/Crowdin/properties/crowdin/stringBased/projects.js +45 -182
- package/dist/nodes/Crowdin/properties/crowdin/stringBased/projects.js.map +1 -1
- package/dist/nodes/Crowdin/properties/crowdin/stringBased/reports.js +33 -0
- package/dist/nodes/Crowdin/properties/crowdin/stringBased/reports.js.map +1 -1
- package/dist/nodes/Crowdin/properties/enterprise/fileBased/projectsAndGroups.js +45 -182
- package/dist/nodes/Crowdin/properties/enterprise/fileBased/projectsAndGroups.js.map +1 -1
- package/dist/nodes/Crowdin/properties/enterprise/fileBased/reports.js +79 -0
- package/dist/nodes/Crowdin/properties/enterprise/fileBased/reports.js.map +1 -1
- package/dist/nodes/Crowdin/properties/enterprise/fileBased/screenshots.js +3 -3
- package/dist/nodes/Crowdin/properties/enterprise/fileBased/screenshots.js.map +1 -1
- package/dist/nodes/Crowdin/properties/enterprise/stringBased/projectsAndGroups.js +45 -182
- package/dist/nodes/Crowdin/properties/enterprise/stringBased/projectsAndGroups.js.map +1 -1
- package/dist/nodes/Crowdin/properties/enterprise/stringBased/reports.js +53 -0
- package/dist/nodes/Crowdin/properties/enterprise/stringBased/reports.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -390,6 +390,11 @@ exports.projectsAndGroupsProperties = [
|
|
|
390
390
|
request: {
|
|
391
391
|
method: 'PATCH',
|
|
392
392
|
url: '=/projects/{{$parameter["projectId"]}}/strings-exporter-settings/{{$parameter["systemStringsExporterSettingsId"]}}'
|
|
393
|
+
},
|
|
394
|
+
send: {
|
|
395
|
+
preSend: [
|
|
396
|
+
preSend_1.transformToJsonPatch
|
|
397
|
+
]
|
|
393
398
|
}
|
|
394
399
|
}
|
|
395
400
|
}
|
|
@@ -5697,188 +5702,6 @@ exports.projectsAndGroupsProperties = [
|
|
|
5697
5702
|
]
|
|
5698
5703
|
}
|
|
5699
5704
|
},
|
|
5700
|
-
{
|
|
5701
|
-
displayName: 'Body',
|
|
5702
|
-
name: '_body',
|
|
5703
|
-
description: 'Select configuration type',
|
|
5704
|
-
default: {},
|
|
5705
|
-
type: 'fixedCollection',
|
|
5706
|
-
displayOptions: {
|
|
5707
|
-
show: {
|
|
5708
|
-
resource: [
|
|
5709
|
-
'projectsAndGroups'
|
|
5710
|
-
],
|
|
5711
|
-
operation: [
|
|
5712
|
-
'api.projects.strings-exporter-settings.patch'
|
|
5713
|
-
]
|
|
5714
|
-
}
|
|
5715
|
-
},
|
|
5716
|
-
options: [
|
|
5717
|
-
{
|
|
5718
|
-
displayName: 'Android Strings Exporter Settings',
|
|
5719
|
-
name: '_androidStringsExporterSettings',
|
|
5720
|
-
values: [
|
|
5721
|
-
{
|
|
5722
|
-
displayName: 'Format',
|
|
5723
|
-
name: 'format',
|
|
5724
|
-
type: 'string',
|
|
5725
|
-
default: '',
|
|
5726
|
-
description: 'Defines strings exporter format',
|
|
5727
|
-
required: true,
|
|
5728
|
-
placeholder: 'android'
|
|
5729
|
-
},
|
|
5730
|
-
{
|
|
5731
|
-
displayName: 'Settings',
|
|
5732
|
-
name: 'settings',
|
|
5733
|
-
type: 'fixedCollection',
|
|
5734
|
-
default: {},
|
|
5735
|
-
description: 'Defines strings exporter settings',
|
|
5736
|
-
placeholder: 'Add Field',
|
|
5737
|
-
options: [
|
|
5738
|
-
{
|
|
5739
|
-
displayName: 'Fields',
|
|
5740
|
-
name: 'fields',
|
|
5741
|
-
values: [
|
|
5742
|
-
{
|
|
5743
|
-
displayName: 'Convert Placeholders',
|
|
5744
|
-
name: 'convertPlaceholders',
|
|
5745
|
-
type: 'boolean',
|
|
5746
|
-
default: false,
|
|
5747
|
-
description: 'Convert placeholders to Android format.'
|
|
5748
|
-
},
|
|
5749
|
-
{
|
|
5750
|
-
displayName: 'Convert Line Breaks',
|
|
5751
|
-
name: 'convertLineBreaks',
|
|
5752
|
-
type: 'boolean',
|
|
5753
|
-
default: false,
|
|
5754
|
-
description: 'Сonvert simple line breaks (Enter) to \\n (e.g. New\\nLine).'
|
|
5755
|
-
},
|
|
5756
|
-
{
|
|
5757
|
-
displayName: 'Use Cdata For Strings With Tags',
|
|
5758
|
-
name: 'useCdataForStringsWithTags',
|
|
5759
|
-
type: 'boolean',
|
|
5760
|
-
default: false,
|
|
5761
|
-
description: 'Encloses strings with HTML tags in CDATA sections (e.g., `<b>Name</b>` > `<![CDATA[<b>Name</b>]]>`). Does not apply to strings with only `<xliff:g>` tags.'
|
|
5762
|
-
}
|
|
5763
|
-
]
|
|
5764
|
-
}
|
|
5765
|
-
],
|
|
5766
|
-
required: true
|
|
5767
|
-
}
|
|
5768
|
-
]
|
|
5769
|
-
},
|
|
5770
|
-
{
|
|
5771
|
-
displayName: 'MacOSX Strings Exporter Settings',
|
|
5772
|
-
name: '_macOsxStringsExporterSettings',
|
|
5773
|
-
values: [
|
|
5774
|
-
{
|
|
5775
|
-
displayName: 'Format',
|
|
5776
|
-
name: 'format',
|
|
5777
|
-
type: 'string',
|
|
5778
|
-
default: '',
|
|
5779
|
-
description: 'Defines strings exporter format',
|
|
5780
|
-
required: true,
|
|
5781
|
-
placeholder: 'macosx'
|
|
5782
|
-
},
|
|
5783
|
-
{
|
|
5784
|
-
displayName: 'Settings',
|
|
5785
|
-
name: 'settings',
|
|
5786
|
-
type: 'fixedCollection',
|
|
5787
|
-
default: {},
|
|
5788
|
-
description: 'Defines strings exporter settings',
|
|
5789
|
-
placeholder: 'Add Field',
|
|
5790
|
-
options: [
|
|
5791
|
-
{
|
|
5792
|
-
displayName: 'Fields',
|
|
5793
|
-
name: 'fields',
|
|
5794
|
-
values: [
|
|
5795
|
-
{
|
|
5796
|
-
displayName: 'Convert Placeholders',
|
|
5797
|
-
name: 'convertPlaceholders',
|
|
5798
|
-
type: 'boolean',
|
|
5799
|
-
default: false,
|
|
5800
|
-
description: 'Convert placeholders to MacOSX format.'
|
|
5801
|
-
},
|
|
5802
|
-
{
|
|
5803
|
-
displayName: 'Convert Line Breaks',
|
|
5804
|
-
name: 'convertLineBreaks',
|
|
5805
|
-
type: 'boolean',
|
|
5806
|
-
default: false,
|
|
5807
|
-
description: 'Сonvert simple line breaks (Enter) to \\n (e.g. New\\nLine).'
|
|
5808
|
-
}
|
|
5809
|
-
]
|
|
5810
|
-
}
|
|
5811
|
-
],
|
|
5812
|
-
required: true
|
|
5813
|
-
}
|
|
5814
|
-
]
|
|
5815
|
-
},
|
|
5816
|
-
{
|
|
5817
|
-
displayName: 'Xliff Strings Exporter Settings',
|
|
5818
|
-
name: '_xliffStringsExporterSettings',
|
|
5819
|
-
values: [
|
|
5820
|
-
{
|
|
5821
|
-
displayName: 'Format',
|
|
5822
|
-
name: 'format',
|
|
5823
|
-
type: 'string',
|
|
5824
|
-
default: '',
|
|
5825
|
-
description: 'Defines strings exporter format',
|
|
5826
|
-
required: true,
|
|
5827
|
-
placeholder: 'xliff'
|
|
5828
|
-
},
|
|
5829
|
-
{
|
|
5830
|
-
displayName: 'Settings',
|
|
5831
|
-
name: 'settings',
|
|
5832
|
-
type: 'fixedCollection',
|
|
5833
|
-
default: {},
|
|
5834
|
-
description: 'Defines strings exporter settings',
|
|
5835
|
-
placeholder: 'Add Field',
|
|
5836
|
-
options: [
|
|
5837
|
-
{
|
|
5838
|
-
displayName: 'Fields',
|
|
5839
|
-
name: 'fields',
|
|
5840
|
-
values: [
|
|
5841
|
-
{
|
|
5842
|
-
displayName: 'Language pair mapping',
|
|
5843
|
-
name: 'json:languagePairMapping',
|
|
5844
|
-
type: 'json',
|
|
5845
|
-
default: '{}',
|
|
5846
|
-
description: 'Defines language pair mapping',
|
|
5847
|
-
placeholder: '{"uk":"es","de":"en"}'
|
|
5848
|
-
},
|
|
5849
|
-
{
|
|
5850
|
-
displayName: 'Copy Source To Empty Target',
|
|
5851
|
-
name: 'copySourceToEmptyTarget',
|
|
5852
|
-
type: 'boolean',
|
|
5853
|
-
default: true
|
|
5854
|
-
},
|
|
5855
|
-
{
|
|
5856
|
-
displayName: 'Export Translators Comment',
|
|
5857
|
-
name: 'exportTranslatorsComment',
|
|
5858
|
-
type: 'boolean',
|
|
5859
|
-
default: true,
|
|
5860
|
-
description: 'Export comments added by translators.'
|
|
5861
|
-
}
|
|
5862
|
-
]
|
|
5863
|
-
}
|
|
5864
|
-
],
|
|
5865
|
-
required: true
|
|
5866
|
-
}
|
|
5867
|
-
]
|
|
5868
|
-
}
|
|
5869
|
-
],
|
|
5870
|
-
routing: {
|
|
5871
|
-
send: {
|
|
5872
|
-
preSend: [
|
|
5873
|
-
preSend_1.normalizeRootBody
|
|
5874
|
-
],
|
|
5875
|
-
property: '_body',
|
|
5876
|
-
propertyInDotNotation: false,
|
|
5877
|
-
type: 'body',
|
|
5878
|
-
value: '={{ $value }}'
|
|
5879
|
-
}
|
|
5880
|
-
}
|
|
5881
|
-
},
|
|
5882
5705
|
{
|
|
5883
5706
|
displayName: 'Update Fields',
|
|
5884
5707
|
name: 'updateFields',
|
|
@@ -8782,6 +8605,46 @@ exports.projectsAndGroupsProperties = [
|
|
|
8782
8605
|
}
|
|
8783
8606
|
}
|
|
8784
8607
|
},
|
|
8608
|
+
{
|
|
8609
|
+
displayName: 'Update Fields',
|
|
8610
|
+
name: 'updateFields',
|
|
8611
|
+
type: 'collection',
|
|
8612
|
+
placeholder: 'Add Field',
|
|
8613
|
+
default: {},
|
|
8614
|
+
displayOptions: {
|
|
8615
|
+
show: {
|
|
8616
|
+
resource: [
|
|
8617
|
+
'projectsAndGroups'
|
|
8618
|
+
],
|
|
8619
|
+
operation: [
|
|
8620
|
+
'api.projects.strings-exporter-settings.patch'
|
|
8621
|
+
]
|
|
8622
|
+
}
|
|
8623
|
+
},
|
|
8624
|
+
options: [
|
|
8625
|
+
{
|
|
8626
|
+
displayName: 'Format',
|
|
8627
|
+
name: 'format',
|
|
8628
|
+
type: 'string',
|
|
8629
|
+
default: '',
|
|
8630
|
+
description: 'Value for /format',
|
|
8631
|
+
placeholder: 'android'
|
|
8632
|
+
},
|
|
8633
|
+
{
|
|
8634
|
+
displayName: 'Settings',
|
|
8635
|
+
name: 'json:settings',
|
|
8636
|
+
type: 'json',
|
|
8637
|
+
default: '{}',
|
|
8638
|
+
description: 'Defines file format settings'
|
|
8639
|
+
}
|
|
8640
|
+
],
|
|
8641
|
+
routing: {
|
|
8642
|
+
send: {
|
|
8643
|
+
type: 'body',
|
|
8644
|
+
value: '={{ $value }}'
|
|
8645
|
+
}
|
|
8646
|
+
}
|
|
8647
|
+
},
|
|
8785
8648
|
{
|
|
8786
8649
|
displayName: 'Return All',
|
|
8787
8650
|
name: 'returnAll',
|