@arcgis/coding-components 1.0.0-beta.12 → 1.0.0-beta.13

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 (41) hide show
  1. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.ar.json +858 -192
  2. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.bg.json +821 -155
  3. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.bs.json +829 -163
  4. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.ca.json +829 -163
  5. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.cs.json +829 -163
  6. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.da.json +829 -163
  7. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.de.json +829 -163
  8. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.el.json +858 -192
  9. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.en.json +851 -185
  10. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.es.json +829 -163
  11. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.et.json +829 -163
  12. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.fi.json +858 -192
  13. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.fr.json +829 -163
  14. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.he.json +858 -192
  15. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.hr.json +829 -163
  16. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.hu.json +829 -163
  17. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.id.json +858 -192
  18. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.it.json +821 -155
  19. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.ja.json +859 -193
  20. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.ko.json +859 -193
  21. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.lt.json +829 -163
  22. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.lv.json +829 -163
  23. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.nb.json +829 -163
  24. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.nl.json +829 -163
  25. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.pl.json +829 -163
  26. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.pt-BR.json +829 -163
  27. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.pt-PT.json +829 -163
  28. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.ro.json +829 -163
  29. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.ru.json +858 -192
  30. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.sk.json +829 -163
  31. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.sl.json +829 -163
  32. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.sr.json +845 -179
  33. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.sv.json +829 -163
  34. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.th.json +858 -192
  35. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.tr.json +858 -192
  36. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.uk.json +858 -192
  37. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.vi.json +858 -192
  38. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.zh-CN.json +859 -193
  39. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.zh-HK.json +859 -193
  40. package/dist/arcgis-coding-components/assets/arcade-language/api/arcade-api.t9n.zh-TW.json +859 -193
  41. package/package.json +3 -3
@@ -605,6 +605,31 @@
605
605
  "max": 4
606
606
  }
607
607
  },
608
+ {
609
+ "type": "function",
610
+ "name": "featuresetbyrelationshipclass",
611
+ "bundle": "data-access",
612
+ "sinceVersion": "1.24",
613
+ "link": "https://developers.arcgis.com/arcade/function-reference/featureset_functions/#featuresetbyrelationshipclass",
614
+ "description": "Returns the related records for a given feature as a FeatureSet based on the class name of the relationship.",
615
+ "examples": "\n##### דוגמה\n\nReturns the count of pole inspection related records\n\n```arcade\n// A calculation rule that returns the count of a pole inspection records.\n// When a pole feature is updated the calculation rule reads all its related inspections records from the comments field and returns the total inspection count for that feature.\nvar fsinspected = FeatureSetByRelationshipClass($feature, “pole_inspection”, [“comments”], false);\nreturn Count(fsinspected);\n```\n\n",
616
+ "completion": {
617
+ "label": "FeatureSetByRelationshipClass",
618
+ "detail": "FeatureSetByRelationshipClass(inputFeature, relationshipClass, fieldNames?, includeGeometry?) -> FeatureSet",
619
+ "insertText": "FeatureSetByRelationshipClass(${1:inputFeature_}, ${2:relationshipClass_})$0",
620
+ "insertTextMode": 2,
621
+ "insertTextFormat": 2,
622
+ "kind": 3,
623
+ "documentation": {
624
+ "kind": "markdown",
625
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nReturns the related records for a given feature as a FeatureSet based on the class name of the relationship.\n\n**פרמטרים**\n\n- **inputFeature**: [Feature](https://developers.arcgis.com/arcade/guide/types/#feature) - The feature from which to fetch related records. This feature must come from a feature service; feature collections are not supported.\n- **relationshipClass**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - The class name of the relationship according to the feature service associated with the given feature.\n- **fieldNames** (_Optional_): [Array](https://developers.arcgis.com/arcade/guide/types/#array)<[Text](https://developers.arcgis.com/arcade/guide/types/#text)> - The fields to return in the FeatureSet. This list includes fields from both the relationship table and the input Feature.\n- **includeGeometry** (_Optional_): [Boolean](https://developers.arcgis.com/arcade/guide/types/#boolean) - Indicates whether to return the geometry for the resulting features.\n\n**ערך החזרה**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)"
626
+ }
627
+ },
628
+ "parametersInfo": {
629
+ "min": 2,
630
+ "max": 4
631
+ }
632
+ },
608
633
  {
609
634
  "type": "function",
610
635
  "name": "featuresetbyrelationshipname",
@@ -3217,7 +3242,7 @@
3217
3242
  "bundle": "core",
3218
3243
  "link": "https://developers.arcgis.com/arcade/function-reference/text_functions/#text",
3219
3244
  "description": "המרת הארגומנט שלה לערך טקסט ובאופן אופציונלי גם פרמוט שלו. מחזירה ערך ריק (null) במקרה של כשל.",
3220
- "examples": "\n##### דוגמאות\n\nהצב את המספר משמאל לנקודה העשרונית\n\n```arcade\nText(123, '0000') // '0123'\n```\n\nהגבל את המספר משמאל לנקודה העשרונית\n\n```arcade\nText(123, '00') // '23'\n```\n\nקבץ את המספר לפי אלפים\n\n```arcade\nText(1234, '#,###') // '1,234'\n```\n\nעגל את המספר משתי ספרות אחרי הנקודה העשרונית\n\n```arcade\nText(12345678.123, '#,###.00') // '12,345,678.12'\n```\n\nמספר בפורמט של מטבע\n\n```arcade\nText(1234.55, '$#,###.00') // '$1,234.55'\n```\n\nעגל את המספר משתי ספרות אחרי הנקודה העשרונית\n\n```arcade\nText(1.236, '#.00') // '1.24'\n```\n\nשמר ספרות משמעותיות וקבץ לפי אלפים\n\n```arcade\nText(1234.5678, '#,##0.00#') // '1,234.568'\n```\n\nפרמט את המספר ופרמט חיובי/שלילי - אם קיימת תת-תבנית שלילית, היא משרתת רק כדי לציים את הקידומת והסיומת השליליות\n\n```arcade\nText(-2, 'Floor #;Basement #') // 'Basement 2'\n```\n\n\n\n```arcade\nText(2, 'Floor #;Basement #') // 'Floor 2'\n```\n\nהכפל ב-100 ופרמט כאחוזים\n\n```arcade\nText(0.3, '#%') // '30%'\n```\n\nפורמט תאריך ושעה כרגע, למשל 'Tuesday, October 25, 2016 @ 08:43:11'\n\n```arcade\nText(Now(), 'dddd, MMMM D, Y @ h:m:s')\n```\n\nתאריך שנשמר בשדה `datetime` כבר מייצג זמן מקומי, אבל Arcade מניח שהוא ב-UTC. משנה את הזמן המקומי ל-UTC, כדי למנוע התאמה כפולה של אזור הזמן.\n\n```arcade\nText(ToUTC($feature.datetime), 'dddd, MMMM D, Y @ h:m:s')\n```\n\n",
3245
+ "examples": "\n##### דוגמאות\n\nהצב את המספר משמאל לנקודה העשרונית\n\n```arcade\nText(123, '0000') // '0123'\n```\n\nהגבל את המספר משמאל לנקודה העשרונית\n\n```arcade\nText(123, '00') // '23'\n```\n\nקבץ את המספר לפי אלפים\n\n```arcade\nText(1234, '#,###') // '1,234'\n```\n\nעגל את המספר משתי ספרות אחרי הנקודה העשרונית\n\n```arcade\nText(12345678.123, '#,###.00') // '12,345,678.12'\n```\n\nמספר בפורמט של מטבע\n\n```arcade\nText(1234.55, '$#,###.00') // '$1,234.55'\n```\n\nעגל את המספר משתי ספרות אחרי הנקודה העשרונית\n\n```arcade\nText(1.236, '#.00') // '1.24'\n```\n\nשמר ספרות משמעותיות וקבץ לפי אלפים\n\n```arcade\nText(1234.5678, '#,##0.00#') // '1,234.568'\n```\n\nפרמט את המספר ופרמט חיובי/שלילי - אם קיימת תת-תבנית שלילית, היא משרתת רק כדי לציים את הקידומת והסיומת השליליות\n\n```arcade\nText(-2, 'Floor #;Basement #') // 'Basement 2'\n```\n\n\n\n```arcade\nText(2, 'Floor #;Basement #') // 'Floor 2'\n```\n\nהכפל ב-100 ופרמט כאחוזים\n\n```arcade\nText(0.3, '#%') // '30%'\n```\n\nפורמט תאריך ושעה כרגע, למשל 'Tuesday, October 25, 2016 @ 08:43:11'\n\n```arcade\nText(Now(), 'dddd, MMMM D, Y @ h:m:s')\n```\n\nתאריך שנשמר בשדה `datetime` כבר מייצג זמן מקומי, אבל Arcade מניח שהוא ב-UTC. משנה את הזמן המקומי ל-UTC, כדי למנוע התאמה כפולה של אזור הזמן.\n\n```arcade\nText(startDate, 'ddd, MMM D, Y h:mm:ss A ZZZZ')\n// returns Thu, Sep 14, 2023 10:04:49 AM PDT\n```\n\n",
3221
3246
  "completion": {
3222
3247
  "label": "Text",
3223
3248
  "detail": "Text(value, format?) -> Text",
@@ -3816,6 +3841,31 @@
3816
3841
  "max": 2
3817
3842
  }
3818
3843
  },
3844
+ {
3845
+ "type": "function",
3846
+ "name": "equals",
3847
+ "bundle": "core",
3848
+ "sinceVersion": "1.24",
3849
+ "link": "https://developers.arcgis.com/arcade/function-reference/logical_functions/#equals",
3850
+ "description": "Indicates if two values are equal. Object types (i.e. Arrays, Features, Dictionaries, Geometry) will return true only if they are the same object.",
3851
+ "examples": "\n##### דוגמה\n\nCompares if two values are equal\n\n```arcade\nEquals(1, \"1\") // returns false\n\nvar testVal = \"test\";\nEquals(testVal, \"test\") // returns true\n\nvar array1 = Array(5);\nvar array2 = Array(5);\nEquals(array1, array2); // returns false\nEquals(array1, array1); // returns true\n```\n\n",
3852
+ "completion": {
3853
+ "label": "Equals",
3854
+ "detail": "Equals(value1, value2) -> Boolean",
3855
+ "insertText": "Equals(${1:value1_}, ${2:value2_})$0",
3856
+ "insertTextMode": 2,
3857
+ "insertTextFormat": 2,
3858
+ "kind": 3,
3859
+ "documentation": {
3860
+ "kind": "markdown",
3861
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nIndicates if two values are equal. Object types (i.e. Arrays, Features, Dictionaries, Geometry) will return true only if they are the same object.\n\n**פרמטרים**\n\n- **value1**: [Any](https://developers.arcgis.com/arcade/guide/types/#any) - The first input value.\n- **value2**: [Any](https://developers.arcgis.com/arcade/guide/types/#any) - The second input value.\n\n**ערך החזרה**: [Boolean](https://developers.arcgis.com/arcade/guide/types/#boolean)"
3862
+ }
3863
+ },
3864
+ "parametersInfo": {
3865
+ "min": 2,
3866
+ "max": 2
3867
+ }
3868
+ },
3819
3869
  {
3820
3870
  "type": "function",
3821
3871
  "name": "iif",
@@ -5519,7 +5569,7 @@
5519
5569
  "kind": 3,
5520
5570
  "documentation": {
5521
5571
  "kind": "markdown",
5522
- "value": "**[מאז גרסה 1.12](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמפיק ערך קוד hash עבור המשתנה הנתון.\n\n**פרמטר**\n\n- **value**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) \\| [Number](https://developers.arcgis.com/arcade/guide/types/#number) \\| [Boolean](https://developers.arcgis.com/arcade/guide/types/#boolean) \\| [Date](https://developers.arcgis.com/arcade/guide/types/#date) \\| [Array](https://developers.arcgis.com/arcade/guide/types/#array)<[Any](https://developers.arcgis.com/arcade/guide/types/#any)> \\| [Dictionary](https://developers.arcgis.com/arcade/guide/types/#dictionary) \\| [Geometry](https://developers.arcgis.com/arcade/guide/types/#geometry) - המשתנה להפקדת קוד hash.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
5572
+ "value": "**[מאז גרסה 1.12](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמפיק ערך קוד hash עבור המשתנה הנתון.\n\n**פרמטר**\n\n- **value**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) \\| [Number](https://developers.arcgis.com/arcade/guide/types/#number) \\| [Boolean](https://developers.arcgis.com/arcade/guide/types/#boolean) \\| [Date](https://developers.arcgis.com/arcade/guide/types/#date) \\| [Array](https://developers.arcgis.com/arcade/guide/types/#array)<[Any](https://developers.arcgis.com/arcade/guide/types/#any)> \\| [Dictionary](https://developers.arcgis.com/arcade/guide/types/#dictionary) \\| [Geometry](https://developers.arcgis.com/arcade/guide/types/#geometry) \\| DateOnly \\| Time - המשתנה להפקדת קוד hash.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
5523
5573
  }
5524
5574
  },
5525
5575
  "parametersInfo": {
@@ -6135,29 +6185,54 @@
6135
6185
  "id": "date_functions",
6136
6186
  "title": "פונקציות תאריך",
6137
6187
  "items": [
6188
+ {
6189
+ "type": "function",
6190
+ "name": "changetimezone",
6191
+ "bundle": "core",
6192
+ "sinceVersion": "1.24",
6193
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#changetimezone",
6194
+ "description": "Changes the time zone used to display the given Date value. If the input `dateValue` has an `unknown` time zone, then the output Date value will display with the same date and time as the input `dateValue`, but will be assigned the `newTimeZone`.",
6195
+ "examples": "\n##### דוגמאות\n\nChanges the given Date's time zone from `America/New_York` to `America/Los_Angeles`\n\n```arcade\nvar inputDate = Date(2011,10,11,8,0,0,0, \"America/New_York\")\nChangeTimeZone(inputDate, \"America/Los_Angeles\");\n// returns a Date representing Nov 11, 2011, 5:00:00 AM PST\n```\n\nAssigns a Date with an `unknown` time zone to a time offset of `+07:00`\n\n```arcade\nvar inputDate = Date(2011,10,11,8,0,0,0, \"unknown\")\nChangeTimeZone(inputDate, \"+07:00\");\n// returns a Date representing Nov 11, 2011, 8:00:00 AM +07:00\n```\n\n",
6196
+ "completion": {
6197
+ "label": "ChangeTimeZone",
6198
+ "detail": "ChangeTimeZone(dateValue, newTimeZone) -> Date",
6199
+ "insertText": "ChangeTimeZone(${1:dateValue_}, ${2:newTimeZone_})$0",
6200
+ "insertTextMode": 2,
6201
+ "insertTextFormat": 2,
6202
+ "kind": 3,
6203
+ "documentation": {
6204
+ "kind": "markdown",
6205
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nChanges the time zone used to display the given Date value. If the input `dateValue` has an `unknown` time zone, then the output Date value will display with the same date and time as the input `dateValue`, but will be assigned the `newTimeZone`.\n\n**פרמטרים**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - A Date value containing date and time information.\n- **newTimeZone**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - The new time zone that will be used to display the given Date value. \nThe time zone must be one of the following:\n - text representing an entry in the [IANA time zone database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List) (e.g. `America/New_York`)\n - text representing the hours and minutes that should be added to UTC (e.g. `+07:00` or `-03:00`)\n - `system` - time zone will be set to the device or system's local time zone \n - `default` - the time zone of the profile's execution context\n - `UTC`\n - `unknown` - removes time zone information for the given value and displays the date and time as it was defined by the data source\n\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
6206
+ }
6207
+ },
6208
+ "parametersInfo": {
6209
+ "min": 2,
6210
+ "max": 2
6211
+ }
6212
+ },
6138
6213
  [
6139
6214
  {
6140
6215
  "type": "function",
6141
6216
  "name": "date",
6142
6217
  "bundle": "core",
6143
6218
  "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#date1",
6144
- "description": "יוצר אובייקט תאריך מקבוצת פרמטרים כברירת מחדל, תאריכים נוצרים בזמן המקומי של הלקוח או המערכת.",
6145
- "examples": "\n##### דוגמאות\n\nיוצר תאריך שמייצג את השעה הנתונה בזמן המקומי של המערכת בה פועל Arcade\n\n```arcade\n// Date that represents Jun 02, 1987, 12:00:00 AM PST\nDate(1987,05,02)\n```\n\nיוצר תאריך שמייצג את השעה הנוכחית בזמן המקומי של המערכת בה פועל Arcade\n\n```arcade\n// Date represents Jan 27, 2023, 12:41:20 PM PST\nDate()\n```\n\n",
6219
+ "description": "Creates a Date object from a set of parameters. By default, Dates are created in the time zone of the profile's execution context.",
6220
+ "examples": "\n##### דוגמאות\n\nCreates a Date representing the given time in the time zone of the profile's execution context running Arcade\n\n```arcade\n// Date that represents Jun 02, 1987, 12:00:00 AM PST\nDate(1987,05,02)\n```\n\nCreates a Date with time defined in a specific time zone\n\n```arcade\nDate(1990, 10, 2, 2, 23, 0, 0, \"America/New_York\");\n // Date represents Nov 2, 1990, 2:23:00 AM EST\n```\n\n",
6146
6221
  "completion": {
6147
6222
  "label": "Date",
6148
- "detail": "Date(year, month, day, hour?, minute?, second?, millisecond?) -> Date",
6223
+ "detail": "Date(year, month, day, hour?, minute?, second?, millisecond?, timeZone?) -> Date",
6149
6224
  "insertText": "Date(${1:year_}, ${2:month_}, ${3:day_})$0",
6150
6225
  "insertTextMode": 2,
6151
6226
  "insertTextFormat": 2,
6152
6227
  "kind": 3,
6153
6228
  "documentation": {
6154
6229
  "kind": "markdown",
6155
- "value": "יוצר אובייקט תאריך מקבוצת פרמטרים כברירת מחדל, תאריכים נוצרים בזמן המקומי של הלקוח או המערכת.\n\n**פרמטרים**\n\n- **year**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - מספר שמייצג שנה.\n- **month**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - החודש (0-11) היה '0' בינואר ו-'11' בדצמבר.\n- **day**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - היום בחודש (1-31).\n- **hour** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - השעה ביום (0-23).\n- **minute** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - הדקה בשעה (0-59).\n- **second** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - השנייה בדקה (0-59).\n- **millisecond** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - אלפית השנייה בשנייה (0-999).\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
6230
+ "value": "Creates a Date object from a set of parameters. By default, Dates are created in the time zone of the profile's execution context.\n\n**פרמטרים**\n\n- **year**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - A number representing a year.\n- **month**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The month (0-11) where `0` is January and `11` is December.\n- **day**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The day of the month (1-31).\n- **hour** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The hour of the day (0-23).\n- **minute** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The minute of the hour (0-59).\n- **second** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The second of the minute (0-59).\n- **millisecond** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The millisecond of the second (0-999).\n- **timeZone** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - _Since 1.24_ The time zone of the Date. If not specified, the Date will be created in the default time zone of the profile's execution context. \nPossible values:\n - text representing an entry in the [IANA time zone database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List) (e.g. `America/New_York`)\n - text representing the hours and minutes that should be added to UTC (e.g. `+07:00` or `-03:00`)\n - `system` - time zone will be set to the device or system's local time zone \n - `default` - the time zone of the profile's execution context\n - `UTC`\n - `unknown` - removes time zone information for the given value and displays the date and time as it was defined by the data source\n\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
6156
6231
  }
6157
6232
  },
6158
6233
  "parametersInfo": {
6159
6234
  "min": 3,
6160
- "max": 7
6235
+ "max": 8
6161
6236
  }
6162
6237
  },
6163
6238
  {
@@ -6165,8 +6240,8 @@
6165
6240
  "name": "date",
6166
6241
  "bundle": "core",
6167
6242
  "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#date2",
6168
- "description": "יוצר תאריך עם מספר Unix epoch באזור הזמן המקומי של הלקוח או המערכת.",
6169
- "examples": "\n##### דוגמה\n\nאלפיות שנייה מאז 1 בינואר 1970\n\n```arcade\nDate(1476987783555) // 'Thu Oct 20 2016 11:23:03 GMT-0700 (PDT)'\n```\n\n",
6243
+ "description": "Creates a Date with the given Unix epoch number. By default, the Date will display in the time zone of the profile's execution context. If no epoch is provided, creates a Date at the current date and time in the default time zone of the profile.",
6244
+ "examples": "\n##### דוגמאות\n\nMilliseconds since January 1, 1970\n\n```arcade\nDate(1476987783555) // 'Thu Oct 20 2016 11:23:03 GMT-0700 (PDT)'\n```\n\nCreates a Date representing the current time in the time zone of the profile's execution context running Arcade\n\n```arcade\n// Date represents Jan 27, 2023, 12:41:20 PM PST\nDate()\n```\n\n",
6170
6245
  "completion": {
6171
6246
  "label": "Date",
6172
6247
  "detail": "Date(epoch?) -> Date",
@@ -6176,7 +6251,7 @@
6176
6251
  "kind": 3,
6177
6252
  "documentation": {
6178
6253
  "kind": "markdown",
6179
- "value": "יוצר תאריך עם מספר Unix epoch באזור הזמן המקומי של הלקוח או המערכת.\n\n**פרמטר**\n\n- **epoch** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - מספר אלפיות השנייה מאז 1 בינואר 1970 שעון UTC.\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
6254
+ "value": "Creates a Date with the given Unix epoch number. By default, the Date will display in the time zone of the profile's execution context. If no epoch is provided, creates a Date at the current date and time in the default time zone of the profile.\n\n**פרמטר**\n\n- **epoch** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The number of milliseconds since January 1, 1970 UTC.\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
6180
6255
  }
6181
6256
  },
6182
6257
  "parametersInfo": {
@@ -6189,8 +6264,8 @@
6189
6264
  "name": "date",
6190
6265
  "bundle": "core",
6191
6266
  "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#date3",
6192
- "description": "ממיר ערך טקסט ISO 8601 לאובייקט תאריך באזור הזמן המקומי של הלקוח או המערכת.",
6193
- "examples": "\n##### דוגמה\n\nערך טקסט ISO 8601\n\n```arcade\nDate('2016-10-20T17:41:37+00:00') // 'Thu Oct 20 2016 10:41:37 GMT-0700 (PDT)'\n```\n\n",
6267
+ "description": "Creates a Date value from an ISO 8601 text value. If a UTC offset is provided, the date will still be displayed in the time zone of the profile. If no text value is provided, creates a date at the current date and time in the time zone of the profile.",
6268
+ "examples": "\n##### דוגמאות\n\nCreates a Date from an ISO 8601 text value with a known time offset\n\n```arcade\nDate('2016-10-20T17:41:37+00:00') // 'Thu Oct 20 2016 10:41:37 GMT-0700 (PDT)'\n```\n\nCreates a Date from an ISO 8601 text value with an unknown time offset\n\n```arcade\nDate('2016-10-20T17:41:37') // 'Thu Oct 20 2016 5:41:37 PM PDT'\n```\n\n",
6194
6269
  "completion": {
6195
6270
  "label": "Date",
6196
6271
  "detail": "Date(timestamp?) -> Date",
@@ -6200,154 +6275,386 @@
6200
6275
  "kind": 3,
6201
6276
  "documentation": {
6202
6277
  "kind": "markdown",
6203
- "value": "ממיר ערך טקסט ISO 8601 לאובייקט תאריך באזור הזמן המקומי של הלקוח או המערכת.\n\n**פרמטר**\n\n- **timestamp** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - ערך בטקסט ISO 8601 להמרה לתאריך.\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
6278
+ "value": "Creates a Date value from an ISO 8601 text value. If a UTC offset is provided, the date will still be displayed in the time zone of the profile. If no text value is provided, creates a date at the current date and time in the time zone of the profile.\n\n**פרמטר**\n\n- **timestamp** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - An ISO 8601 text value to be converted into a Date.\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
6204
6279
  }
6205
6280
  },
6206
6281
  "parametersInfo": {
6207
6282
  "min": 0,
6208
6283
  "max": 1
6209
6284
  }
6210
- }
6211
- ],
6212
- {
6213
- "type": "function",
6214
- "name": "dateadd",
6215
- "bundle": "core",
6216
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#dateadd",
6217
- "description": "מוסיף כמות ספציפית של זמן ליחידות נתונות של תאריך ומחזיר תאריך חדש.",
6218
- "examples": "\n##### דוגמה\n\nמוסיף 7 ימים לתאריך בשדה המסופק\n\n```arcade\nvar startDate = Date($feature.dateField);\nvar oneWeekLater = DateAdd(startDate, 7, 'days');\nreturn oneWeekLater;\n```\n\n",
6219
- "completion": {
6220
- "label": "DateAdd",
6221
- "detail": "DateAdd(dateValue, addValue, units?) -> Date",
6222
- "insertText": "DateAdd(${1:dateValue_}, ${2:addValue_})$0",
6223
- "insertTextMode": 2,
6224
- "insertTextFormat": 2,
6225
- "kind": 3,
6226
- "documentation": {
6227
- "kind": "markdown",
6228
- "value": "מוסיף כמות ספציפית של זמן ליחידות נתונות של תאריך ומחזיר תאריך חדש.\n\n**פרמטרים**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - תאריך הקלט שאליו יתווסף זמן.\n- **addValue**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - הערך להוספת התאריך ביחידות הנתונות.\n- **units** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - היחידות של המספר שיש להוסיף לתאריך. ברירת המחדל האא 'אלפיות שנייה'. סוגי היחידות הנתמכים כוללים אלפיות שנייה, שניות, דקות, שעות, ימים, חודשים, שנים.\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
6285
+ },
6286
+ {
6287
+ "type": "function",
6288
+ "name": "date",
6289
+ "bundle": "core",
6290
+ "sinceVersion": "1.24",
6291
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#date4",
6292
+ "description": "Creates a Date from a DateOnly value, with an optional Time and time zone value.",
6293
+ "examples": "\n##### דוגמה\n\nCreates a Date from a DateOnly and time type\n\n```arcade\nDate(DateOnly(2022,10,11), Time(\"11:20 am\"))\n// returns a Date representing Nov 11, 2022, 11:20:00 AM in an unknown time zone\n```\n\n",
6294
+ "completion": {
6295
+ "label": "Date",
6296
+ "detail": "Date(dateOnlyValue, timeValue?, timeZone?) -> Date",
6297
+ "insertText": "Date(${1:dateOnlyValue_})$0",
6298
+ "insertTextMode": 2,
6299
+ "insertTextFormat": 2,
6300
+ "kind": 3,
6301
+ "documentation": {
6302
+ "kind": "markdown",
6303
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a Date from a DateOnly value, with an optional Time and time zone value.\n\n**פרמטרים**\n\n- **dateOnlyValue**: DateOnly - The DateOnly value from which to create a Date value.\n- **timeValue** (_Optional_): Time - The Time value for the Date. If not specified, the Date will be created with a time of `00:00:00`.\n- **timeZone** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - The time zone of the Date. If not specified, the Date will be created in the `unknown` time zone. \nPossible values:\n - text representing an entry in the [IANA time zone database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List) (e.g. `America/New_York`)\n - text representing the hours and minutes that should be added to UTC (e.g. `+07:00` or `-03:00`)\n - `system` - time zone will be set to the device or system's local time zone \n - `default` - the time zone of the profile's execution context\n - `UTC`\n - `unknown` - removes time zone information for the given value and displays the date and time as it was defined by the data source\n\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
6304
+ }
6305
+ },
6306
+ "parametersInfo": {
6307
+ "min": 1,
6308
+ "max": 3
6229
6309
  }
6230
6310
  },
6231
- "parametersInfo": {
6232
- "min": 2,
6233
- "max": 3
6311
+ {
6312
+ "type": "function",
6313
+ "name": "date",
6314
+ "bundle": "core",
6315
+ "sinceVersion": "1.24",
6316
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#date5",
6317
+ "description": "Creates a copy of the given Date.",
6318
+ "examples": "\n##### דוגמה\n\nCreates a copy of the current Date value\n\n```arcade\nvar copiedDate = Date(Now())\n```\n\n",
6319
+ "completion": {
6320
+ "label": "Date",
6321
+ "detail": "Date(dateValue) -> Date",
6322
+ "insertText": "Date(${1:dateValue_})$0",
6323
+ "insertTextMode": 2,
6324
+ "insertTextFormat": 2,
6325
+ "kind": 3,
6326
+ "documentation": {
6327
+ "kind": "markdown",
6328
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a copy of the given Date.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - The Date to copy.\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
6329
+ }
6330
+ },
6331
+ "parametersInfo": {
6332
+ "min": 1,
6333
+ "max": 1
6334
+ }
6234
6335
  }
6235
- },
6236
- {
6237
- "type": "function",
6238
- "name": "datediff",
6239
- "bundle": "core",
6240
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#datediff",
6241
- "description": "מפחית שני תאריכים ומחזירה את ההפרש ביחידות ספציפיות.",
6242
- "examples": "\n##### דוגמה\n\nמפחית שני תאריכים ומחזירה את הגיל\n\n```arcade\nvar startDate = Date($feature.startDateField);\nvar endDate = Date($feature.endDateField);\nvar age = DateDiff(endDate, startDate, 'years');\nreturn age;\n```\n\n",
6243
- "completion": {
6244
- "label": "DateDiff",
6245
- "detail": "DateDiff(date1, date2, units?) -> Number",
6246
- "insertText": "DateDiff(${1:date1_}, ${2:date2_})$0",
6247
- "insertTextMode": 2,
6248
- "insertTextFormat": 2,
6249
- "kind": 3,
6250
- "documentation": {
6251
- "kind": "markdown",
6252
- "value": "מפחית שני תאריכים ומחזירה את ההפרש ביחידות ספציפיות.\n\n**פרמטרים**\n\n- **date1**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו יש להפחית תאריך שני.\n- **date2**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך להפחתה מהתאריך הראשון הנתון.\n- **units** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - היחידות שבהן יש להחזיר את ההפרש בין שני התאריכים הנתונים. סוגי היחידות הנתמכים כוללים אלפיות שנייה, שניות, דקות, שעות, ימים, חודשים, שנים. ערך ברירת המחדל הוא 'אלפיות שנייה'.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6336
+ ],
6337
+ [
6338
+ {
6339
+ "type": "function",
6340
+ "name": "dateadd",
6341
+ "bundle": "core",
6342
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#dateadd1",
6343
+ "description": "Adds a specified amount of time in the given units to a Date and returns a new Date. If the Date has an IANA time zone, then daylight saving and other time zone driven logic will apply.",
6344
+ "examples": "\n##### דוגמה\n\nAdds 7 days to the given Date\n\n```arcade\nvar startDate = Date(2023, 9, 1, 12, 00);\nvar oneWeekLater = DateAdd(startDate, 7, 'days');\nreturn oneWeekLater;\n// returns a Date representing Oct 8, 2023, 12:00:00 PM PDT\n```\n\n",
6345
+ "completion": {
6346
+ "label": "DateAdd",
6347
+ "detail": "DateAdd(dateValue, addValue, units?) -> Date",
6348
+ "insertText": "DateAdd(${1:dateValue_}, ${2:addValue_})$0",
6349
+ "insertTextMode": 2,
6350
+ "insertTextFormat": 2,
6351
+ "kind": 3,
6352
+ "documentation": {
6353
+ "kind": "markdown",
6354
+ "value": "Adds a specified amount of time in the given units to a Date and returns a new Date. If the Date has an IANA time zone, then daylight saving and other time zone driven logic will apply.\n\n**פרמטרים**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - The input Date to which to add time.\n- **addValue**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The value to add to the Date in the given units.\n- **units** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - The units of the number to add to the Date. Default is `milliseconds`. The supported unit types include `milliseconds`, `seconds`, `minutes`, `hours`, `days`, `months`, `years`\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
6355
+ }
6356
+ },
6357
+ "parametersInfo": {
6358
+ "min": 2,
6359
+ "max": 3
6253
6360
  }
6254
6361
  },
6255
- "parametersInfo": {
6256
- "min": 2,
6257
- "max": 3
6258
- }
6259
- },
6260
- {
6261
- "type": "function",
6262
- "name": "day",
6263
- "bundle": "core",
6264
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#day",
6265
- "description": "מחזיר את היום בחודש של התאריך הנתון.",
6266
- "examples": "\n##### דוגמה\n\nמקבל את היום בחודש של התאריך הנתון\n\n```arcade\nDay(Now())\n```\n\n",
6267
- "completion": {
6268
- "label": "Day",
6269
- "detail": "Day(dateValue) -> Number",
6270
- "insertText": "Day(${1:dateValue_})$0",
6271
- "insertTextMode": 2,
6272
- "insertTextFormat": 2,
6273
- "kind": 3,
6274
- "documentation": {
6275
- "kind": "markdown",
6276
- "value": "מחזיר את היום בחודש של התאריך הנתון.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו יתקבל היום בחודש.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6362
+ {
6363
+ "type": "function",
6364
+ "name": "dateadd",
6365
+ "bundle": "core",
6366
+ "sinceVersion": "1.24",
6367
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#dateadd2",
6368
+ "description": "Adds a specified amount of time in the given units to a DateOnly value and returns a new DateOnly value.",
6369
+ "examples": "\n##### דוגמאות\n\nAdds 7 days to the Date in the provided field\n\n```arcade\nvar startDate = DateOnly(2023,5,4); // equivalent to 2023-06-04\nvar oneWeekLater = DateAdd(startDate, 7, 'days');\nreturn oneWeekLater;\n// returns 2023-06-11\n```\n\nAdds 12 hours to the Date in the provided field\n\n```arcade\nvar startDate = DateOnly(2023,5,4); // equivalent to 2023-06-04\nvar hoursLater = DateAdd(startDate, 12, 'hours');\nreturn hoursLater;\n// returns the original start date, 2023-06-04\n// since 12 hours < 1 day, the DateOnly input is not changed\n```\n\n",
6370
+ "completion": {
6371
+ "label": "DateAdd",
6372
+ "detail": "DateAdd(dateOnlyValue, addValue, units?) -> DateOnly",
6373
+ "insertText": "DateAdd(${1:dateOnlyValue_}, ${2:addValue_})$0",
6374
+ "insertTextMode": 2,
6375
+ "insertTextFormat": 2,
6376
+ "kind": 3,
6377
+ "documentation": {
6378
+ "kind": "markdown",
6379
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nAdds a specified amount of time in the given units to a DateOnly value and returns a new DateOnly value.\n\n**פרמטרים**\n\n- **dateOnlyValue**: DateOnly - The input DateOnly value to which to add time.\n- **addValue**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The value to add to the date in the given units. For DateOnly inputs, this value will be rounded down to the nearest day based on a 24-hour interval. If the value to be added is less than 24 hours, then no value will be added to the DateOnly input.\n- **units** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - The units of the number to add to the date. Default is `milliseconds`. The supported unit types include `milliseconds`, `seconds`, `minutes`, `hours`, `days`, `months`, `years`\n\n**ערך החזרה**: DateOnly"
6380
+ }
6381
+ },
6382
+ "parametersInfo": {
6383
+ "min": 2,
6384
+ "max": 3
6277
6385
  }
6278
6386
  },
6279
- "parametersInfo": {
6280
- "min": 1,
6281
- "max": 1
6387
+ {
6388
+ "type": "function",
6389
+ "name": "dateadd",
6390
+ "bundle": "core",
6391
+ "sinceVersion": "1.24",
6392
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#dateadd3",
6393
+ "description": "Adds a specified amount of time in the given units to a Time value and returns a new Time value.",
6394
+ "examples": "\n##### דוגמאות\n\nAdds 7 hours to the given Time\n\n```arcade\nvar startTime = Time(11,30); // equivalent to 11:30:00\nvar hoursLater = DateAdd(startTime, 7, 'hours');\nreturn hoursLater;\n// returns 18:30:00\n```\n\nAdds 90 seconds to the given Time\n\n```arcade\nvar startTime = Time(11,30); // equivalent to 11:30:00\nvar secondsLater = DateAdd(startTime, 90, \"seconds\");\nreturn secondsLater;\n// returns 11:31:30\n```\n\nAdds 25 hours to the given Time\n\n```arcade\nvar startTime = Time(11,30); // equivalent to 11:30:00\nvar hoursLater = DateAdd(startTime, 25, 'hours');\nreturn hoursLater;\n// returns 12:30:00\n```\n\n",
6395
+ "completion": {
6396
+ "label": "DateAdd",
6397
+ "detail": "DateAdd(timeValue, addValue, units?) -> Time",
6398
+ "insertText": "DateAdd(${1:timeValue_}, ${2:addValue_})$0",
6399
+ "insertTextMode": 2,
6400
+ "insertTextFormat": 2,
6401
+ "kind": 3,
6402
+ "documentation": {
6403
+ "kind": "markdown",
6404
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nAdds a specified amount of time in the given units to a Time value and returns a new Time value.\n\n**פרמטרים**\n\n- **timeValue**: Time - The input Time value to which to add time.\n- **addValue**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The value to add to the time in the given units.\n- **units** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - The units of the number to add to the date. Default is `milliseconds`. The supported unit types include `milliseconds`, `seconds`, `minutes`, `hours`\n\n**ערך החזרה**: Time"
6405
+ }
6406
+ },
6407
+ "parametersInfo": {
6408
+ "min": 2,
6409
+ "max": 3
6410
+ }
6282
6411
  }
6283
- },
6284
- {
6285
- "type": "function",
6286
- "name": "hour",
6287
- "bundle": "core",
6288
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#hour",
6289
- "description": "מחזיר את השעה בתאריך הנתון.",
6290
- "examples": "\n##### דוגמה\n\nמקבל את השעה של הזמן הנוכחי\n\n```arcade\nHour(Now())\n```\n\n",
6291
- "completion": {
6292
- "label": "Hour",
6293
- "detail": "Hour(dateValue) -> Number",
6294
- "insertText": "Hour(${1:dateValue_})$0",
6295
- "insertTextMode": 2,
6296
- "insertTextFormat": 2,
6297
- "kind": 3,
6298
- "documentation": {
6299
- "kind": "markdown",
6300
- "value": "מחזיר את השעה בתאריך הנתון.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו תתקבל השעה.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6412
+ ],
6413
+ [
6414
+ {
6415
+ "type": "function",
6416
+ "name": "datediff",
6417
+ "bundle": "core",
6418
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#datediff1",
6419
+ "description": "Subtracts two Dates, and returns the difference in the specified units.",
6420
+ "examples": "\n##### דוגמאות\n\nSubtracts two Dates and returns the age\n\n```arcade\nvar startDate = Date($feature.startDateField);\nvar endDate = Date($feature.endDateField);\nvar age = DateDiff(endDate, startDate, 'years');\nreturn age;\n```\n\nSubtracts two Dates and returns the difference. Since the time zone is Los Angeles\n\n```arcade\nvar startDate = Date(2022,2,23,2,23,22,0, \"America/New_York\"); // Mar 23, 2022, 2:23:22 AM EDT\nvar endDate = Date(2022,2,23,5,23,22,0, \"unknown\"); // Mar 23, 2022, 5:23:22 AM\n\nDateDiff(endDate, startDate, 'hours')\n// returns 3, since the Date with an unknown time zone is assumed to be New York time before the difference is calculated\n\nDateDiff(endDate, startDate, 'hours', \"America/Los_Angeles\");\n// returns 6, since the Date with an unknown time zone is now considered to be Los Angeles time before the difference is calculated\n```\n\n",
6421
+ "completion": {
6422
+ "label": "DateDiff",
6423
+ "detail": "DateDiff(date1, date2, units?, timeZone?) -> Number",
6424
+ "insertText": "DateDiff(${1:date1_}, ${2:date2_})$0",
6425
+ "insertTextMode": 2,
6426
+ "insertTextFormat": 2,
6427
+ "kind": 3,
6428
+ "documentation": {
6429
+ "kind": "markdown",
6430
+ "value": "Subtracts two Dates, and returns the difference in the specified units.\n\n**פרמטרים**\n\n- **date1**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - The Date value from which to subtract a second Date.\n- **date2**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - The Date value to subtract from the first given Date.\n- **units** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - The units in which to return the difference of the two given Dates. The supported unit types include `milliseconds`, `seconds`, `minutes`, `hours`, `days`, `months`, `years`. The default value is `milliseconds`.\n- **timeZone** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - _Since version 1.24_ The time zone to assign to input Dates with an unknown time zone. If not specified, then the following will happen: (1) If one input has a defined time zone and the other is unknown, then the value with the unknown time zone will assume a time zone that matches the other input. (2) If both inputs are unknown time zones, then the DateDiff will be calculated on both Dates as if they were defined in the same time zone. \nPossible values: \n - text representing an entry in the [IANA time zone database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List) (e.g. `America/New_York`)\n - text representing the hours and minutes that should be added to UTC (e.g. `+07:00` or `-03:00`)\n - `system` - time zone will be set to the device or system's local time zone \n - `default` - the time zone of the profile's execution context\n - `UTC`\n - `unknown` - removes time zone information for the given value and displays the date and time as it was defined by the data source\n\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6431
+ }
6432
+ },
6433
+ "parametersInfo": {
6434
+ "min": 2,
6435
+ "max": 4
6301
6436
  }
6302
6437
  },
6303
- "parametersInfo": {
6304
- "min": 1,
6305
- "max": 1
6306
- }
6307
- },
6308
- {
6309
- "type": "function",
6310
- "name": "isomonth",
6311
- "bundle": "core",
6312
- "sinceVersion": "1.12",
6313
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#isomonth",
6314
- "description": "מחזיר את החודש של התאריך הנתון, על בסיס תקן ISO 8601. הערכים נעים בין 1-12, כאשר ינואר הוא '1' ודצמבר הוא '12'ץ",
6315
- "examples": "\n##### דוגמה\n\nמקבל את החודש של התאריך הנתון, על בסיס תקן ISO 8601. מחזיר '12', עבור חודש דצמבר.\n\n```arcade\nISOMonth(Date(1980, 11, 31))\n```\n\n",
6316
- "completion": {
6317
- "label": "ISOMonth",
6318
- "detail": "ISOMonth(dateValue) -> Number",
6319
- "insertText": "ISOMonth(${1:dateValue_})$0",
6320
- "insertTextMode": 2,
6321
- "insertTextFormat": 2,
6322
- "kind": 3,
6323
- "documentation": {
6324
- "kind": "markdown",
6325
- "value": "**[מאז גרסה 1.12](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמחזיר את החודש של התאריך הנתון, על בסיס תקן ISO 8601. הערכים נעים בין 1-12, כאשר ינואר הוא '1' ודצמבר הוא '12'ץ\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו יתקבל החודש.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6438
+ {
6439
+ "type": "function",
6440
+ "name": "datediff",
6441
+ "bundle": "core",
6442
+ "sinceVersion": "1.24",
6443
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#datediff2",
6444
+ "description": "Subtracts two DateOnly values, and returns the difference in the specified units.",
6445
+ "examples": "\n##### דוגמה\n\nSubtracts two DateOnly values and returns the difference in years\n\n```arcade\nvar startDate = DateOnly(1996,11,10);\nvar endDate = DateOnly(); // today's date\nvar age = DateDiff(endDate, startDate, 'years');\nFloor(age); // round down\n// returns 26\n```\n\n",
6446
+ "completion": {
6447
+ "label": "DateDiff",
6448
+ "detail": "DateDiff(dateOnly1, dateOnly2, units?) -> Number",
6449
+ "insertText": "DateDiff(${1:dateOnly1_}, ${2:dateOnly2_})$0",
6450
+ "insertTextMode": 2,
6451
+ "insertTextFormat": 2,
6452
+ "kind": 3,
6453
+ "documentation": {
6454
+ "kind": "markdown",
6455
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nSubtracts two DateOnly values, and returns the difference in the specified units.\n\n**פרמטרים**\n\n- **dateOnly1**: DateOnly - The DateOnly value from which to subtract a second DateOnly value.\n- **dateOnly2**: DateOnly - The DateOnly value to subtract from the first given DateOnly value.\n- **units** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - The units in which to return the difference of the two given DateOnly values. The supported unit types include `milliseconds`, `seconds`, `minutes`, `hours`, `days`, `months`, `years`. The default value is `milliseconds`.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6456
+ }
6457
+ },
6458
+ "parametersInfo": {
6459
+ "min": 2,
6460
+ "max": 3
6326
6461
  }
6327
6462
  },
6328
- "parametersInfo": {
6329
- "min": 1,
6330
- "max": 1
6463
+ {
6464
+ "type": "function",
6465
+ "name": "datediff",
6466
+ "bundle": "core",
6467
+ "sinceVersion": "1.24",
6468
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#datediff3",
6469
+ "description": "Subtracts two Time values, and returns the difference in the specified units.",
6470
+ "examples": "\n##### דוגמה\n\nSubtracts two Time values and returns the difference in hours\n\n```arcade\nDateDiff(Time(23,0), Time(9,0), 'hours')\n// returns 14\n```\n\n",
6471
+ "completion": {
6472
+ "label": "DateDiff",
6473
+ "detail": "DateDiff(time1, time2, units?) -> Number",
6474
+ "insertText": "DateDiff(${1:time1_}, ${2:time2_})$0",
6475
+ "insertTextMode": 2,
6476
+ "insertTextFormat": 2,
6477
+ "kind": 3,
6478
+ "documentation": {
6479
+ "kind": "markdown",
6480
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nSubtracts two Time values, and returns the difference in the specified units.\n\n**פרמטרים**\n\n- **time1**: Time - The Time value from which to subtract a second Time value.\n- **time2**: Time - The Time value to subtract from the first given Time value.\n- **units** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - The units in which to return the difference of the two given Time values. The supported unit types include `milliseconds`, `seconds`, `minutes`, `hours`. The default value is `milliseconds`.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6481
+ }
6482
+ },
6483
+ "parametersInfo": {
6484
+ "min": 2,
6485
+ "max": 3
6486
+ }
6331
6487
  }
6332
- },
6333
- {
6488
+ ],
6489
+ [
6490
+ {
6491
+ "type": "function",
6492
+ "name": "dateonly",
6493
+ "bundle": "core",
6494
+ "sinceVersion": "1.24",
6495
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#dateonly1",
6496
+ "description": "Creates a DateOnly value based on the current date in the time zone of the profile's execution context.",
6497
+ "examples": "\n##### דוגמה\n\nReturns the current DateOnly (no time)\n\n```arcade\nDateOnly()\n// returns the current date, i.e. 2023-09-12\n```\n\n",
6498
+ "completion": {
6499
+ "label": "DateOnly",
6500
+ "detail": "DateOnly() -> DateOnly",
6501
+ "insertText": "DateOnly($0)",
6502
+ "insertTextMode": 2,
6503
+ "insertTextFormat": 2,
6504
+ "kind": 3,
6505
+ "documentation": {
6506
+ "kind": "markdown",
6507
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a DateOnly value based on the current date in the time zone of the profile's execution context.\n\n**ערך החזרה**: DateOnly"
6508
+ }
6509
+ },
6510
+ "parametersInfo": {
6511
+ "min": 0,
6512
+ "max": 0
6513
+ }
6514
+ },
6515
+ {
6516
+ "type": "function",
6517
+ "name": "dateonly",
6518
+ "bundle": "core",
6519
+ "sinceVersion": "1.24",
6520
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#dateonly2",
6521
+ "description": "Creates a DateOnly value from a given date.",
6522
+ "examples": "\n##### דוגמה\n\nReturns the DateOnly from the given date\n\n```arcade\nDateOnly(Date(2008,10,11,10,30));\n// returns 2008-11-11\n```\n\n",
6523
+ "completion": {
6524
+ "label": "DateOnly",
6525
+ "detail": "DateOnly(dateValue) -> DateOnly",
6526
+ "insertText": "DateOnly(${1:dateValue_})$0",
6527
+ "insertTextMode": 2,
6528
+ "insertTextFormat": 2,
6529
+ "kind": 3,
6530
+ "documentation": {
6531
+ "kind": "markdown",
6532
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a DateOnly value from a given date.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - The date from which to create the DateOnly value.\n\n**ערך החזרה**: DateOnly"
6533
+ }
6534
+ },
6535
+ "parametersInfo": {
6536
+ "min": 1,
6537
+ "max": 1
6538
+ }
6539
+ },
6540
+ {
6541
+ "type": "function",
6542
+ "name": "dateonly",
6543
+ "bundle": "core",
6544
+ "sinceVersion": "1.24",
6545
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#dateonly3",
6546
+ "description": "Creates a DateOnly date with the given Unix epoch number.",
6547
+ "examples": "\n##### דוגמה\n\nReturns the DateOnly from the number of milliseconds since January 1, 1970\n\n```arcade\nDateOnly(1476987783555);\n// returns 2016-10-20\n```\n\n",
6548
+ "completion": {
6549
+ "label": "DateOnly",
6550
+ "detail": "DateOnly(epoch) -> DateOnly",
6551
+ "insertText": "DateOnly(${1:epoch_})$0",
6552
+ "insertTextMode": 2,
6553
+ "insertTextFormat": 2,
6554
+ "kind": 3,
6555
+ "documentation": {
6556
+ "kind": "markdown",
6557
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a DateOnly date with the given Unix epoch number.\n\n**פרמטר**\n\n- **epoch**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The number of milliseconds since January 1, 1970 UTC.\n\n**ערך החזרה**: DateOnly"
6558
+ }
6559
+ },
6560
+ "parametersInfo": {
6561
+ "min": 1,
6562
+ "max": 1
6563
+ }
6564
+ },
6565
+ {
6566
+ "type": "function",
6567
+ "name": "dateonly",
6568
+ "bundle": "core",
6569
+ "sinceVersion": "1.24",
6570
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#dateonly4",
6571
+ "description": "Creates a DateOnly value from inputs representing the year, month, and day.",
6572
+ "examples": "\n##### דוגמה\n\nCreates a DateOnly value from inputs representing the year, month, and day\n\n```arcade\nDateOnly(1996, 11, 10)\n// returns 1996-12-10\n```\n\n",
6573
+ "completion": {
6574
+ "label": "DateOnly",
6575
+ "detail": "DateOnly(year, month, day) -> DateOnly",
6576
+ "insertText": "DateOnly(${1:year_}, ${2:month_}, ${3:day_})$0",
6577
+ "insertTextMode": 2,
6578
+ "insertTextFormat": 2,
6579
+ "kind": 3,
6580
+ "documentation": {
6581
+ "kind": "markdown",
6582
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a DateOnly value from inputs representing the year, month, and day.\n\n**פרמטרים**\n\n- **year**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - A number representing a year.\n- **month**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The month (0-11) where `0` is January and `11` is December.\n- **day**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The day of the month (1-31).\n\n**ערך החזרה**: DateOnly"
6583
+ }
6584
+ },
6585
+ "parametersInfo": {
6586
+ "min": 3,
6587
+ "max": 3
6588
+ }
6589
+ },
6590
+ {
6591
+ "type": "function",
6592
+ "name": "dateonly",
6593
+ "bundle": "core",
6594
+ "sinceVersion": "1.24",
6595
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#dateonly5",
6596
+ "description": "Creates a DateOnly value from a text input representing an ISO formatted date, or another formatted text with an additional input indicating the date's format.",
6597
+ "examples": "\n##### דוגמאות\n\nCreates a DateOnly value from a text value representing the date\n\n```arcade\nDateOnly(\"2023-05-11T13:43:18.990+01:00\");\n// returns 2023-05-11\n```\n\nCreates a DateOnly value from a text value representing the date in the given format\n\n```arcade\nDateOnly(\"10 Jan 2022\",\"D MMM Y\")\n// returns 2022-01-10\n```\n\n",
6598
+ "completion": {
6599
+ "label": "DateOnly",
6600
+ "detail": "DateOnly(dateValue, format?) -> DateOnly",
6601
+ "insertText": "DateOnly(${1:dateValue_})$0",
6602
+ "insertTextMode": 2,
6603
+ "insertTextFormat": 2,
6604
+ "kind": 3,
6605
+ "documentation": {
6606
+ "kind": "markdown",
6607
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a DateOnly value from a text input representing an ISO formatted date, or another formatted text with an additional input indicating the date's format.\n\n**פרמטרים**\n\n- **dateValue**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - A text value representing a date. This should either be an ISO formatted date or another formatted text representing a date. If this value does not follow ISO format, the `format` parameter must be defined indicating the date's format.\n- **format** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - A text value indicating the format of the `dateValue` input. \nPossible values: \n - `D`: Day of the month, not padded (1 - 31) \n - `DD`: Day of the month, padded (01 - 31) \n - `DDD`: Ordinal day of the year (1 - 365) \n - `d`: Day of the week (1 - 7) \n - `ddd`: Abbreviated day of the week (e.g. Mon) \n - `dddd`: Full day of the week (e.g. Monday) \n - `M`: Month number (1 - 12) \n - `MM`: Month number, padded (01 - 12) \n - `MMM`: Abbreviated month name (e.g. Jan) \n - `MMMM`: Full month name (e.g. January) \n - `Y`: Full year \n - `YY`: Two-digit year \n\n\n**ערך החזרה**: DateOnly"
6608
+ }
6609
+ },
6610
+ "parametersInfo": {
6611
+ "min": 1,
6612
+ "max": 2
6613
+ }
6614
+ },
6615
+ {
6616
+ "type": "function",
6617
+ "name": "dateonly",
6618
+ "bundle": "core",
6619
+ "sinceVersion": "1.24",
6620
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#dateonly6",
6621
+ "description": "Creates a copy of a DateOnly value.",
6622
+ "examples": "\n##### דוגמה\n\nCreates a copy of DateOnly value\n\n```arcade\nvar originalDateOnly = DateOnly(1996,11,10)\nvar copiedDateOnly = DateOnly(originalDateOnly)\nreturn copiedDateOnly;\n```\n\n",
6623
+ "completion": {
6624
+ "label": "DateOnly",
6625
+ "detail": "DateOnly(dateOnlyValue) -> DateOnly",
6626
+ "insertText": "DateOnly(${1:dateOnlyValue_})$0",
6627
+ "insertTextMode": 2,
6628
+ "insertTextFormat": 2,
6629
+ "kind": 3,
6630
+ "documentation": {
6631
+ "kind": "markdown",
6632
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a copy of a DateOnly value.\n\n**פרמטר**\n\n- **dateOnlyValue**: DateOnly - The DateOnly value to copy.\n\n**ערך החזרה**: DateOnly"
6633
+ }
6634
+ },
6635
+ "parametersInfo": {
6636
+ "min": 1,
6637
+ "max": 1
6638
+ }
6639
+ }
6640
+ ],
6641
+ {
6334
6642
  "type": "function",
6335
- "name": "isoweek",
6643
+ "name": "day",
6336
6644
  "bundle": "core",
6337
- "sinceVersion": "1.12",
6338
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#isoweek",
6339
- "description": "מחזיר את השבוע בשנה של התאריך הנתון, על בסיס תקן ISO 8601 ללוח שנה של תאריך שבוע. הערכים נעים בין 1-53, כאשר השבוע הראשון בשנה הוא '1' והשבוע האחרון בשנה הוא '52' או '53', בהתאם לשנה.",
6340
- "examples": "\n##### דוגמה\n\nמקבל את השבוע של התאריך הנתון, על בסיס תקן ISO 8601. מחזיר '1', מכיוון שתאריך זה כלול בשבוע הראשון של השנה הבאה.\n\n```arcade\nISOWeek(Date(1980, 11, 31))\n```\n\n",
6645
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#day",
6646
+ "description": "מחזיר את היום בחודש של התאריך הנתון.",
6647
+ "examples": "\n##### דוגמאות\n\nמקבל את היום בחודש של התאריך הנתון\n\n```arcade\nDay(Now())\n```\n\nReturns the day of the month from a DateOnly value\n\n```arcade\nDay(DateOnly(1996, 11, 10))\n// returns 10\n```\n\n",
6341
6648
  "completion": {
6342
- "label": "ISOWeek",
6343
- "detail": "ISOWeek(dateValue) -> Number",
6344
- "insertText": "ISOWeek(${1:dateValue_})$0",
6649
+ "label": "Day",
6650
+ "detail": "Day(dateValue) -> Number",
6651
+ "insertText": "Day(${1:dateValue_})$0",
6345
6652
  "insertTextMode": 2,
6346
6653
  "insertTextFormat": 2,
6347
6654
  "kind": 3,
6348
6655
  "documentation": {
6349
6656
  "kind": "markdown",
6350
- "value": "**[מאז גרסה 1.12](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמחזיר את השבוע בשנה של התאריך הנתון, על בסיס תקן ISO 8601 ללוח שנה של תאריך שבוע. הערכים נעים בין 1-53, כאשר השבוע הראשון בשנה הוא '1' והשבוע האחרון בשנה הוא '52' או '53', בהתאם לשנה.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - -ערך התאריך שממנו יתקבל השבוע.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6657
+ "value": "מחזיר את היום בחודש של התאריך הנתון.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) \\| DateOnly - ערך התאריך שממנו יתקבל היום בחודש.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6351
6658
  }
6352
6659
  },
6353
6660
  "parametersInfo": {
@@ -6355,24 +6662,75 @@
6355
6662
  "max": 1
6356
6663
  }
6357
6664
  },
6665
+ [
6666
+ {
6667
+ "type": "function",
6668
+ "name": "hour",
6669
+ "bundle": "core",
6670
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#hour1",
6671
+ "description": "Returns the hour of the time in the given date (0-23).",
6672
+ "examples": "\n##### דוגמה\n\nGets the hour of the current time\n\n```arcade\nHour(Now())\n```\n\n",
6673
+ "completion": {
6674
+ "label": "Hour",
6675
+ "detail": "Hour(dateValue) -> Number",
6676
+ "insertText": "Hour(${1:dateValue_})$0",
6677
+ "insertTextMode": 2,
6678
+ "insertTextFormat": 2,
6679
+ "kind": 3,
6680
+ "documentation": {
6681
+ "kind": "markdown",
6682
+ "value": "Returns the hour of the time in the given date (0-23).\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - A Date value from which to get the hour of the time.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6683
+ }
6684
+ },
6685
+ "parametersInfo": {
6686
+ "min": 1,
6687
+ "max": 1
6688
+ }
6689
+ },
6690
+ {
6691
+ "type": "function",
6692
+ "name": "hour",
6693
+ "bundle": "core",
6694
+ "sinceVersion": "1.24",
6695
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#hour2",
6696
+ "description": "Returns the hour of the given time (0-23).",
6697
+ "examples": "\n##### דוגמה\n\nGets the hour of the time\n\n```arcade\nHour(Time(2, 59, 23))\n// returns 2\n```\n\n",
6698
+ "completion": {
6699
+ "label": "Hour",
6700
+ "detail": "Hour(timeValue) -> Number",
6701
+ "insertText": "Hour(${1:timeValue_})$0",
6702
+ "insertTextMode": 2,
6703
+ "insertTextFormat": 2,
6704
+ "kind": 3,
6705
+ "documentation": {
6706
+ "kind": "markdown",
6707
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nReturns the hour of the given time (0-23).\n\n**פרמטר**\n\n- **timeValue**: Time - A Time value from which to get the hour.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6708
+ }
6709
+ },
6710
+ "parametersInfo": {
6711
+ "min": 1,
6712
+ "max": 1
6713
+ }
6714
+ }
6715
+ ],
6358
6716
  {
6359
6717
  "type": "function",
6360
- "name": "isoweekday",
6718
+ "name": "isomonth",
6361
6719
  "bundle": "core",
6362
6720
  "sinceVersion": "1.12",
6363
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#isoweekday",
6364
- "description": "מחזיר את היום בשבוע של התאריך הנתון, על בסיס תקן ISO 8601. הערכים נעים בין 1-7, כאשר יום שני הוא '1' ויום שבת הוא '7'.",
6365
- "examples": "\n##### דוגמה\n\nמחזיר את היום בשבוע של התאריך הנתון, על בסיס תקן ISO 8601. מחזיר '3', עבור יום רביעי.\n\n```arcade\nISOWeekday(Date(1980, 11, 31))\n```\n\n",
6721
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#isomonth",
6722
+ "description": "מחזיר את החודש של התאריך הנתון, על בסיס תקן ISO 8601. הערכים נעים בין 1-12, כאשר ינואר הוא '1' ודצמבר הוא '12'ץ",
6723
+ "examples": "\n##### דוגמאות\n\nמקבל את החודש של התאריך הנתון, על בסיס תקן ISO 8601. מחזיר '12', עבור חודש דצמבר.\n\n```arcade\nISOMonth(Date(1980, 11, 31))\n```\n\nGets the month of the given DateOnly value, based on the ISO 8601 standard.\n\n```arcade\nISOMonth(DateOnly(1996, 0, 10))\n// returns 1, for January\n```\n\n",
6366
6724
  "completion": {
6367
- "label": "ISOWeekday",
6368
- "detail": "ISOWeekday(dateValue) -> Number",
6369
- "insertText": "ISOWeekday(${1:dateValue_})$0",
6725
+ "label": "ISOMonth",
6726
+ "detail": "ISOMonth(dateValue) -> Number",
6727
+ "insertText": "ISOMonth(${1:dateValue_})$0",
6370
6728
  "insertTextMode": 2,
6371
6729
  "insertTextFormat": 2,
6372
6730
  "kind": 3,
6373
6731
  "documentation": {
6374
6732
  "kind": "markdown",
6375
- "value": "**[מאז גרסה 1.12](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמחזיר את היום בשבוע של התאריך הנתון, על בסיס תקן ISO 8601. הערכים נעים בין 1-7, כאשר יום שני הוא '1' ויום שבת הוא '7'.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו יוחזר היום בשבוע.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6733
+ "value": "**[מאז גרסה 1.12](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמחזיר את החודש של התאריך הנתון, על בסיס תקן ISO 8601. הערכים נעים בין 1-12, כאשר ינואר הוא '1' ודצמבר הוא '12'ץ\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) \\| DateOnly - ערך התאריך שממנו יתקבל החודש.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6376
6734
  }
6377
6735
  },
6378
6736
  "parametersInfo": {
@@ -6382,22 +6740,22 @@
6382
6740
  },
6383
6741
  {
6384
6742
  "type": "function",
6385
- "name": "isoyear",
6743
+ "name": "isoweek",
6386
6744
  "bundle": "core",
6387
6745
  "sinceVersion": "1.12",
6388
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#isoyear",
6389
- "description": "מחזיר את השנה של התאריך הנתון, על בסיס תקן ISO 8601 ללוח שנה של תאריך שבוע.",
6390
- "examples": "\n##### דוגמה\n\nמקבל את השנה של התאריך הנתון, על בסיס תקן ISO 8601 ללוח שנה של תאריך שבוע. מחזיר '1981', מכיוון שתאריך זה כלול בשבוע הראשון של השנה הבאה.\n\n```arcade\nISOYear(Date(1980, 11, 31))\n```\n\n",
6746
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#isoweek",
6747
+ "description": "מחזיר את השבוע בשנה של התאריך הנתון, על בסיס תקן ISO 8601 ללוח שנה של תאריך שבוע. הערכים נעים בין 1-53, כאשר השבוע הראשון בשנה הוא '1' והשבוע האחרון בשנה הוא '52' או '53', בהתאם לשנה.",
6748
+ "examples": "\n##### דוגמאות\n\nמקבל את השבוע של התאריך הנתון, על בסיס תקן ISO 8601. מחזיר '1', מכיוון שתאריך זה כלול בשבוע הראשון של השנה הבאה.\n\n```arcade\nISOWeek(Date(1980, 11, 31))\n```\n\nGets the week of the given DateOnly value, based on the ISO 8601 standard.\n\n```arcade\nISOWeek(DateOnly(1996, 11, 10))\n// returns 50\n```\n\n",
6391
6749
  "completion": {
6392
- "label": "ISOYear",
6393
- "detail": "ISOYear(dateValue) -> Number",
6394
- "insertText": "ISOYear(${1:dateValue_})$0",
6750
+ "label": "ISOWeek",
6751
+ "detail": "ISOWeek(dateValue) -> Number",
6752
+ "insertText": "ISOWeek(${1:dateValue_})$0",
6395
6753
  "insertTextMode": 2,
6396
6754
  "insertTextFormat": 2,
6397
6755
  "kind": 3,
6398
6756
  "documentation": {
6399
6757
  "kind": "markdown",
6400
- "value": "**[מאז גרסה 1.12](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמחזיר את השנה של התאריך הנתון, על בסיס תקן ISO 8601 ללוח שנה של תאריך שבוע.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו תתקבל השנה.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6758
+ "value": "**[מאז גרסה 1.12](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמחזיר את השבוע בשנה של התאריך הנתון, על בסיס תקן ISO 8601 ללוח שנה של תאריך שבוע. הערכים נעים בין 1-53, כאשר השבוע הראשון בשנה הוא '1' והשבוע האחרון בשנה הוא '52' או '53', בהתאם לשנה.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) \\| DateOnly - -ערך התאריך שממנו יתקבל השבוע.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6401
6759
  }
6402
6760
  },
6403
6761
  "parametersInfo": {
@@ -6407,21 +6765,22 @@
6407
6765
  },
6408
6766
  {
6409
6767
  "type": "function",
6410
- "name": "millisecond",
6768
+ "name": "isoweekday",
6411
6769
  "bundle": "core",
6412
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#millisecond",
6413
- "description": "מחזיר את אלפיות השנייה של הזמן בתאריך.",
6414
- "examples": "\n##### דוגמה\n\nמקבל את אלפיות השנייה של הזמן הנוכחי\n\n```arcade\nMillisecond(Now())\n```\n\n",
6770
+ "sinceVersion": "1.12",
6771
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#isoweekday",
6772
+ "description": "מחזיר את היום בשבוע של התאריך הנתון, על בסיס תקן ISO 8601. הערכים נעים בין 1-7, כאשר יום שני הוא '1' ויום שבת הוא '7'.",
6773
+ "examples": "\n##### דוגמאות\n\nמחזיר את היום בשבוע של התאריך הנתון, על בסיס תקן ISO 8601. מחזיר '3', עבור יום רביעי.\n\n```arcade\nISOWeekday(Date(1980, 11, 31))\n```\n\nReturns the day of the week of the given DateOnly value, based on the ISO 8601 standard.\n\n```arcade\nISOWeekday(DateOnly(1996, 11, 10))\n// returns 2, for Tuesday\n```\n\n",
6415
6774
  "completion": {
6416
- "label": "Millisecond",
6417
- "detail": "Millisecond(dateValue) -> Number",
6418
- "insertText": "Millisecond(${1:dateValue_})$0",
6775
+ "label": "ISOWeekday",
6776
+ "detail": "ISOWeekday(dateValue) -> Number",
6777
+ "insertText": "ISOWeekday(${1:dateValue_})$0",
6419
6778
  "insertTextMode": 2,
6420
6779
  "insertTextFormat": 2,
6421
6780
  "kind": 3,
6422
6781
  "documentation": {
6423
6782
  "kind": "markdown",
6424
- "value": "מחזיר את אלפיות השנייה של הזמן בתאריך.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו תתקבלנה אלפיות השנייה של הזמן.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6783
+ "value": "**[מאז גרסה 1.12](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמחזיר את היום בשבוע של התאריך הנתון, על בסיס תקן ISO 8601. הערכים נעים בין 1-7, כאשר יום שני הוא '1' ויום שבת הוא '7'.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) \\| DateOnly - ערך התאריך שממנו יוחזר היום בשבוע.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6425
6784
  }
6426
6785
  },
6427
6786
  "parametersInfo": {
@@ -6431,21 +6790,22 @@
6431
6790
  },
6432
6791
  {
6433
6792
  "type": "function",
6434
- "name": "minute",
6793
+ "name": "isoyear",
6435
6794
  "bundle": "core",
6436
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#minute",
6437
- "description": "מחזיר את הדקה בזמן בתאריך הנתון.",
6438
- "examples": "\n##### דוגמה\n\nמקבל את הדקה של הזמן הנוכחי\n\n```arcade\nMinute(Now())\n```\n\n",
6795
+ "sinceVersion": "1.12",
6796
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#isoyear",
6797
+ "description": "מחזיר את השנה של התאריך הנתון, על בסיס תקן ISO 8601 ללוח שנה של תאריך שבוע.",
6798
+ "examples": "\n##### דוגמאות\n\nמקבל את השנה של התאריך הנתון, על בסיס תקן ISO 8601 ללוח שנה של תאריך שבוע. מחזיר '1981', מכיוון שתאריך זה כלול בשבוע הראשון של השנה הבאה.\n\n```arcade\nISOYear(Date(1980, 11, 31))\n```\n\nGets the year of the given DateOnly value, based on the ISO 8601 week date calendar.\n\n```arcade\nISOYear(DateOnly(1996, 11, 10))\n// returns 1996\n```\n\n",
6439
6799
  "completion": {
6440
- "label": "Minute",
6441
- "detail": "Minute(dateValue) -> Number",
6442
- "insertText": "Minute(${1:dateValue_})$0",
6800
+ "label": "ISOYear",
6801
+ "detail": "ISOYear(dateValue) -> Number",
6802
+ "insertText": "ISOYear(${1:dateValue_})$0",
6443
6803
  "insertTextMode": 2,
6444
6804
  "insertTextFormat": 2,
6445
6805
  "kind": 3,
6446
6806
  "documentation": {
6447
6807
  "kind": "markdown",
6448
- "value": "מחזיר את הדקה בזמן בתאריך הנתון.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו תתקבל הדקה בזמן.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6808
+ "value": "**[מאז גרסה 1.12](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמחזיר את השנה של התאריך הנתון, על בסיס תקן ISO 8601 ללוח שנה של תאריך שבוע.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) \\| DateOnly - ערך התאריך שממנו תתקבל השנה.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6449
6809
  }
6450
6810
  },
6451
6811
  "parametersInfo": {
@@ -6453,13 +6813,115 @@
6453
6813
  "max": 1
6454
6814
  }
6455
6815
  },
6816
+ [
6817
+ {
6818
+ "type": "function",
6819
+ "name": "millisecond",
6820
+ "bundle": "core",
6821
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#millisecond1",
6822
+ "description": "Returns the millisecond of the time in the date.",
6823
+ "examples": "\n##### דוגמה\n\nGets the millisecond of the current time\n\n```arcade\nMillisecond(Now())\n```\n\n",
6824
+ "completion": {
6825
+ "label": "Millisecond",
6826
+ "detail": "Millisecond(dateValue) -> Number",
6827
+ "insertText": "Millisecond(${1:dateValue_})$0",
6828
+ "insertTextMode": 2,
6829
+ "insertTextFormat": 2,
6830
+ "kind": 3,
6831
+ "documentation": {
6832
+ "kind": "markdown",
6833
+ "value": "Returns the millisecond of the time in the date.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - A Date value from which to get the millisecond of the time.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6834
+ }
6835
+ },
6836
+ "parametersInfo": {
6837
+ "min": 1,
6838
+ "max": 1
6839
+ }
6840
+ },
6841
+ {
6842
+ "type": "function",
6843
+ "name": "millisecond",
6844
+ "bundle": "core",
6845
+ "sinceVersion": "1.24",
6846
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#millisecond2",
6847
+ "description": "Returns the millisecond of the given time.",
6848
+ "examples": "\n##### דוגמה\n\nGets the millisecond of the time\n\n```arcade\nHour(Time(2, 59, 23, 450))\n// returns 450\n```\n\n",
6849
+ "completion": {
6850
+ "label": "Millisecond",
6851
+ "detail": "Millisecond(timeValue) -> Number",
6852
+ "insertText": "Millisecond(${1:timeValue_})$0",
6853
+ "insertTextMode": 2,
6854
+ "insertTextFormat": 2,
6855
+ "kind": 3,
6856
+ "documentation": {
6857
+ "kind": "markdown",
6858
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nReturns the millisecond of the given time.\n\n**פרמטר**\n\n- **timeValue**: Time - A Time value from which to get the millisecond.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6859
+ }
6860
+ },
6861
+ "parametersInfo": {
6862
+ "min": 1,
6863
+ "max": 1
6864
+ }
6865
+ }
6866
+ ],
6867
+ [
6868
+ {
6869
+ "type": "function",
6870
+ "name": "minute",
6871
+ "bundle": "core",
6872
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#minute1",
6873
+ "description": "Returns the minute of the time in the given date.",
6874
+ "examples": "\n##### דוגמה\n\nGets the minute of the current time\n\n```arcade\nMinute(Now())\n```\n\n",
6875
+ "completion": {
6876
+ "label": "Minute",
6877
+ "detail": "Minute(dateValue) -> Number",
6878
+ "insertText": "Minute(${1:dateValue_})$0",
6879
+ "insertTextMode": 2,
6880
+ "insertTextFormat": 2,
6881
+ "kind": 3,
6882
+ "documentation": {
6883
+ "kind": "markdown",
6884
+ "value": "Returns the minute of the time in the given date.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - A Date value from which to get the minute of the time.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6885
+ }
6886
+ },
6887
+ "parametersInfo": {
6888
+ "min": 1,
6889
+ "max": 1
6890
+ }
6891
+ },
6892
+ {
6893
+ "type": "function",
6894
+ "name": "minute",
6895
+ "bundle": "core",
6896
+ "sinceVersion": "1.24",
6897
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#minute2",
6898
+ "description": "Returns the minute of the given time.",
6899
+ "examples": "\n##### דוגמה\n\nGets the minute of the time\n\n```arcade\nHour(Time(2, 59, 23))\n// returns 59\n```\n\n",
6900
+ "completion": {
6901
+ "label": "Minute",
6902
+ "detail": "Minute(timeValue) -> Number",
6903
+ "insertText": "Minute(${1:timeValue_})$0",
6904
+ "insertTextMode": 2,
6905
+ "insertTextFormat": 2,
6906
+ "kind": 3,
6907
+ "documentation": {
6908
+ "kind": "markdown",
6909
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nReturns the minute of the given time.\n\n**פרמטר**\n\n- **timeValue**: Time - A Time value from which to get the minute.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6910
+ }
6911
+ },
6912
+ "parametersInfo": {
6913
+ "min": 1,
6914
+ "max": 1
6915
+ }
6916
+ }
6917
+ ],
6456
6918
  {
6457
6919
  "type": "function",
6458
6920
  "name": "month",
6459
6921
  "bundle": "core",
6460
6922
  "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#month",
6461
6923
  "description": "מחזיר את החודש של התאריך הנתון. טווח הערכים הוא 0-11 כאשר ינואר הוא '0' ודצמבר הוא '11'.",
6462
- "examples": "\n##### דוגמה\n\nמקבל את החודש של התאריך הנתון. מחזיר 11, עבור חודש דצמבר.\n\n```arcade\nMonth(Date(1980, 11, 31))\n```\n\n",
6924
+ "examples": "\n##### דוגמאות\n\nמקבל את החודש של התאריך הנתון. מחזיר 11, עבור חודש דצמבר.\n\n```arcade\nMonth(Date(1980, 11, 31))\n// returns 11\n```\n\nGets the month of the given DateOnly value.\n\n```arcade\nMonth(DateOnly(1996, 0, 31))\n// returns 0, for the month of January\n```\n\n",
6463
6925
  "completion": {
6464
6926
  "label": "Month",
6465
6927
  "detail": "Month(dateValue) -> Number",
@@ -6469,7 +6931,7 @@
6469
6931
  "kind": 3,
6470
6932
  "documentation": {
6471
6933
  "kind": "markdown",
6472
- "value": "מחזיר את החודש של התאריך הנתון. טווח הערכים הוא 0-11 כאשר ינואר הוא '0' ודצמבר הוא '11'.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו יתקבל החודש.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6934
+ "value": "מחזיר את החודש של התאריך הנתון. טווח הערכים הוא 0-11 כאשר ינואר הוא '0' ודצמבר הוא '11'.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) \\| DateOnly - ערך התאריך שממנו יתקבל החודש.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6473
6935
  }
6474
6936
  },
6475
6937
  "parametersInfo": {
@@ -6501,23 +6963,227 @@
6501
6963
  "max": 0
6502
6964
  }
6503
6965
  },
6966
+ [
6967
+ {
6968
+ "type": "function",
6969
+ "name": "second",
6970
+ "bundle": "core",
6971
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#second1",
6972
+ "description": "Returns the second of the time in the date.",
6973
+ "examples": "\n##### דוגמה\n\nGets the second of the current time\n\n```arcade\nSecond(Now())\n```\n\n",
6974
+ "completion": {
6975
+ "label": "Second",
6976
+ "detail": "Second(dateValue) -> Number",
6977
+ "insertText": "Second(${1:dateValue_})$0",
6978
+ "insertTextMode": 2,
6979
+ "insertTextFormat": 2,
6980
+ "kind": 3,
6981
+ "documentation": {
6982
+ "kind": "markdown",
6983
+ "value": "Returns the second of the time in the date.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - A Date value from which to get the second of the time.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6984
+ }
6985
+ },
6986
+ "parametersInfo": {
6987
+ "min": 1,
6988
+ "max": 1
6989
+ }
6990
+ },
6991
+ {
6992
+ "type": "function",
6993
+ "name": "second",
6994
+ "bundle": "core",
6995
+ "sinceVersion": "1.24",
6996
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#second2",
6997
+ "description": "Returns the second of the given time.",
6998
+ "examples": "\n##### דוגמה\n\nGets the second of the time\n\n```arcade\nHour(Time(2, 59, 23))\n// returns 23\n```\n\n",
6999
+ "completion": {
7000
+ "label": "Second",
7001
+ "detail": "Second(timeValue) -> Number",
7002
+ "insertText": "Second(${1:timeValue_})$0",
7003
+ "insertTextMode": 2,
7004
+ "insertTextFormat": 2,
7005
+ "kind": 3,
7006
+ "documentation": {
7007
+ "kind": "markdown",
7008
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nReturns the second of the given time.\n\n**פרמטר**\n\n- **timeValue**: Time - A Time value from which to get the second.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
7009
+ }
7010
+ },
7011
+ "parametersInfo": {
7012
+ "min": 1,
7013
+ "max": 1
7014
+ }
7015
+ }
7016
+ ],
7017
+ [
7018
+ {
7019
+ "type": "function",
7020
+ "name": "time",
7021
+ "bundle": "core",
7022
+ "sinceVersion": "1.24",
7023
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#time1",
7024
+ "description": "Creates a Time value representing the current time in the time zone of the profile's execution context.",
7025
+ "examples": "\n##### דוגמה\n\nReturns the current time displayed using the profile's default time zone\n\n```arcade\n// Time represents 12:41:20 PM\nTime()\n```\n\n",
7026
+ "completion": {
7027
+ "label": "Time",
7028
+ "detail": "Time() -> Time",
7029
+ "insertText": "Time($0)",
7030
+ "insertTextMode": 2,
7031
+ "insertTextFormat": 2,
7032
+ "kind": 3,
7033
+ "documentation": {
7034
+ "kind": "markdown",
7035
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a Time value representing the current time in the time zone of the profile's execution context.\n\n**ערך החזרה**: Time"
7036
+ }
7037
+ },
7038
+ "parametersInfo": {
7039
+ "min": 0,
7040
+ "max": 0
7041
+ }
7042
+ },
7043
+ {
7044
+ "type": "function",
7045
+ "name": "time",
7046
+ "bundle": "core",
7047
+ "sinceVersion": "1.24",
7048
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#time2",
7049
+ "description": "Creates a Time value from a given date.",
7050
+ "examples": "\n##### דוגמה\n\nReturns the Time from the given date\n\n```arcade\nTime(Date(2008,10,11,10,30));\n// returns a Time value of 10:30:00 AM\n```\n\n",
7051
+ "completion": {
7052
+ "label": "Time",
7053
+ "detail": "Time(dateValue) -> Time",
7054
+ "insertText": "Time(${1:dateValue_})$0",
7055
+ "insertTextMode": 2,
7056
+ "insertTextFormat": 2,
7057
+ "kind": 3,
7058
+ "documentation": {
7059
+ "kind": "markdown",
7060
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a Time value from a given date.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - The date from which to get the time.\n\n**ערך החזרה**: Time"
7061
+ }
7062
+ },
7063
+ "parametersInfo": {
7064
+ "min": 1,
7065
+ "max": 1
7066
+ }
7067
+ },
7068
+ {
7069
+ "type": "function",
7070
+ "name": "time",
7071
+ "bundle": "core",
7072
+ "sinceVersion": "1.24",
7073
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#time3",
7074
+ "description": "Creates a Time value from a given number representing milliseconds since midnight. If the input value is larger than 86,400,000 (the maximum number of milliseconds in a day) or less than 0, the function will return `null`.",
7075
+ "examples": "\n##### דוגמאות\n\nReturns the Time from the number of milliseconds since midnight\n\n```arcade\nTime(8119800);\n// returns a Time value of 02:15:19.800\n```\n\nReturns the Time from the number of milliseconds since midnight\n\n```arcade\nTime(86400001);\n// returns null - the input value exceeds the number of milliseconds in a day\n```\n\n",
7076
+ "completion": {
7077
+ "label": "Time",
7078
+ "detail": "Time(numValue) -> Time",
7079
+ "insertText": "Time(${1:numValue_})$0",
7080
+ "insertTextMode": 2,
7081
+ "insertTextFormat": 2,
7082
+ "kind": 3,
7083
+ "documentation": {
7084
+ "kind": "markdown",
7085
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a Time value from a given number representing milliseconds since midnight. If the input value is larger than 86,400,000 (the maximum number of milliseconds in a day) or less than 0, the function will return `null`.\n\n**פרמטר**\n\n- **numValue**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The number of milliseconds since midnight.\n\n**ערך החזרה**: Time"
7086
+ }
7087
+ },
7088
+ "parametersInfo": {
7089
+ "min": 1,
7090
+ "max": 1
7091
+ }
7092
+ },
7093
+ {
7094
+ "type": "function",
7095
+ "name": "time",
7096
+ "bundle": "core",
7097
+ "sinceVersion": "1.24",
7098
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#time4",
7099
+ "description": "Creates a Time value from inputs representing hours, minutes, seconds, and milliseconds.",
7100
+ "examples": "\n##### דוגמה\n\nCreates a Time value from inputs representing hours, minutes, seconds, and milliseconds\n\n```arcade\nTime(13, 20);\n// returns a Time value of 13:20:00\n \nTime(2, 59, 23)\n// returns a Time value of 02:59:23\n \nTime(15, 47, 0, 474)\n// returns a Time value of 15:47:00.474\n```\n\n",
7101
+ "completion": {
7102
+ "label": "Time",
7103
+ "detail": "Time(hours, minutes, seconds?, milliseconds?) -> Time",
7104
+ "insertText": "Time(${1:hours_}, ${2:minutes_})$0",
7105
+ "insertTextMode": 2,
7106
+ "insertTextFormat": 2,
7107
+ "kind": 3,
7108
+ "documentation": {
7109
+ "kind": "markdown",
7110
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a Time value from inputs representing hours, minutes, seconds, and milliseconds.\n\n**פרמטרים**\n\n- **hours**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The number representing hours of the Time value (0-23).\n- **minutes**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The number representing the minutes of the Time value (0-59).\n- **seconds** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The number representing the seconds of the Time value (0-59).\n- **milliseconds** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - The number representing the milliseconds of the Time value (0-999).\n\n**ערך החזרה**: Time"
7111
+ }
7112
+ },
7113
+ "parametersInfo": {
7114
+ "min": 2,
7115
+ "max": 4
7116
+ }
7117
+ },
7118
+ {
7119
+ "type": "function",
7120
+ "name": "time",
7121
+ "bundle": "core",
7122
+ "sinceVersion": "1.24",
7123
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#time5",
7124
+ "description": "Creates a Time value from a text input representing time, with an optional input indicating the text's format.",
7125
+ "examples": "\n##### דוגמאות\n\nCreates a Time value from a text value representing the time\n\n```arcade\nTime(\"1:20 PM\");\n// returns a Time value of 13:20:00\n```\n\nCreates a Time value from a text value representing the time and formatting\n\n```arcade\nTime(\"12 05 04\", \"HH MM ss\")\n// returns a Time value of 12:05:04\n```\n\n",
7126
+ "completion": {
7127
+ "label": "Time",
7128
+ "detail": "Time(timeValue, format?) -> Time",
7129
+ "insertText": "Time(${1:timeValue_})$0",
7130
+ "insertTextMode": 2,
7131
+ "insertTextFormat": 2,
7132
+ "kind": 3,
7133
+ "documentation": {
7134
+ "kind": "markdown",
7135
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nCreates a Time value from a text input representing time, with an optional input indicating the text's format.\n\n**פרמטרים**\n\n- **timeValue**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - A text value representing a time.\n- **format** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - A text value indicating the format of the `timeValue` input. \nPossible values: \n - `h`: Civilian hours, not padded (0 - 12) \n - `hh`: Civilian hours, padded (00 - 12) \n - `H`: Military hours, not padded (0 - 24) \n - `HH`: Military hours, padded (00 - 24) \n - `m`: Minutes, not padded (0 - 59) \n - `mm`: Minutes, padded (00 - 59) \n - `s`: Seconds, not padded (0 - 59) \n - `ss`: Seconds, padded (00 - 59) \n - `A`: AM/PM \n\n\n**ערך החזרה**: Time"
7136
+ }
7137
+ },
7138
+ "parametersInfo": {
7139
+ "min": 1,
7140
+ "max": 2
7141
+ }
7142
+ }
7143
+ ],
7144
+ {
7145
+ "type": "function",
7146
+ "name": "timestamp",
7147
+ "bundle": "core",
7148
+ "sinceVersion": "1.1",
7149
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#timestamp",
7150
+ "description": "יוצר ערך תאריך שמייצג את התאריך והשעה הנוכחיים לפי שעון UTC.",
7151
+ "examples": "\n##### דוגמה\n\nיוצר תאריך לפי שעון UTC\n\n```arcade\n// Date that represents Jan 27, 2023, 8:41:20 PM UTC\nTimestamp()\n```\n\n",
7152
+ "completion": {
7153
+ "label": "Timestamp",
7154
+ "detail": "Timestamp() -> Date",
7155
+ "insertText": "Timestamp($0)",
7156
+ "insertTextMode": 2,
7157
+ "insertTextFormat": 2,
7158
+ "kind": 3,
7159
+ "documentation": {
7160
+ "kind": "markdown",
7161
+ "value": "**[מאז גרסה 1.1](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nיוצר ערך תאריך שמייצג את התאריך והשעה הנוכחיים לפי שעון UTC.\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
7162
+ }
7163
+ },
7164
+ "parametersInfo": {
7165
+ "min": 0,
7166
+ "max": 0
7167
+ }
7168
+ },
6504
7169
  {
6505
7170
  "type": "function",
6506
- "name": "second",
7171
+ "name": "timezone",
6507
7172
  "bundle": "core",
6508
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#second",
6509
- "description": "מחזיר את השנייה של הזמן בתאריך.",
6510
- "examples": "\n##### דוגמה\n\nמקבל את השנייה של הזמן הנוכחי\n\n```arcade\nSecond(Now())\n```\n\n",
7173
+ "sinceVersion": "1.24",
7174
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#timezone",
7175
+ "description": "Returns the time zone of the given Date. The time zone will be one of the following:\n- text representing an entry in the [IANA time zone database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List) (i.e. `America/New_York`)\n- text representing the hours and minutes that should be added to UTC (i.e. `+07:00` or `-03:00`)\n- `system` - time zone will be based on the client or system's local time zone \n- `UTC`\n- `unknown`\n",
7176
+ "examples": "\n##### דוגמה\n\nReturns the time zone of a Date\n\n```arcade\nvar natlPizzaDay = Date(2024, 1, 9, 0, 0, 0, 0, \"America/Los_Angeles\");\nTimeZone(natlPizzaDay);\n// Returns 'America/Los_Angeles'\n```\n\n",
6511
7177
  "completion": {
6512
- "label": "Second",
6513
- "detail": "Second(dateValue) -> Number",
6514
- "insertText": "Second(${1:dateValue_})$0",
7178
+ "label": "TimeZone",
7179
+ "detail": "TimeZone(dateValue) -> Text",
7180
+ "insertText": "TimeZone(${1:dateValue_})$0",
6515
7181
  "insertTextMode": 2,
6516
7182
  "insertTextFormat": 2,
6517
7183
  "kind": 3,
6518
7184
  "documentation": {
6519
7185
  "kind": "markdown",
6520
- "value": "מחזיר את השנייה של הזמן בתאריך.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו תתקבל השנייה בזמן.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
7186
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nReturns the time zone of the given Date. The time zone will be one of the following:\n- text representing an entry in the [IANA time zone database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List) (i.e. `America/New_York`)\n- text representing the hours and minutes that should be added to UTC (i.e. `+07:00` or `-03:00`)\n- `system` - time zone will be based on the client or system's local time zone \n- `UTC`\n- `unknown`\n\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - A Date value from which to get the time zone.\n\n**ערך החזרה**: [Text](https://developers.arcgis.com/arcade/guide/types/#text)"
6521
7187
  }
6522
7188
  },
6523
7189
  "parametersInfo": {
@@ -6527,27 +7193,27 @@
6527
7193
  },
6528
7194
  {
6529
7195
  "type": "function",
6530
- "name": "timestamp",
7196
+ "name": "timezoneoffset",
6531
7197
  "bundle": "core",
6532
- "sinceVersion": "1.1",
6533
- "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#timestamp",
6534
- "description": "יוצר ערך תאריך שמייצג את התאריך והשעה הנוכחיים לפי שעון UTC.",
6535
- "examples": "\n##### דוגמה\n\nיוצר תאריך לפי שעון UTC\n\n```arcade\n// Date that represents Jan 27, 2023, 8:41:20 PM UTC\nTimestamp()\n```\n\n",
7198
+ "sinceVersion": "1.24",
7199
+ "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#timezoneoffset",
7200
+ "description": "Returns the time zone offset in minutes from UTC for the given Date.",
7201
+ "examples": "\n##### דוגמה\n\nReturns the time zone offset in minutes from UTC\n\n```arcade\nvar inputDate = Date(2011, 10, 11, 8, 0, 0, 0, \"America/New_York\")\nTimeZoneOffset(inputDate);\n// returns -18000000\n```\n\n",
6536
7202
  "completion": {
6537
- "label": "Timestamp",
6538
- "detail": "Timestamp() -> Date",
6539
- "insertText": "Timestamp($0)",
7203
+ "label": "TimeZoneOffset",
7204
+ "detail": "TimeZoneOffset(dateValue) -> Number",
7205
+ "insertText": "TimeZoneOffset(${1:dateValue_})$0",
6540
7206
  "insertTextMode": 2,
6541
7207
  "insertTextFormat": 2,
6542
7208
  "kind": 3,
6543
7209
  "documentation": {
6544
7210
  "kind": "markdown",
6545
- "value": "**[מאז גרסה 1.1](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nיוצר ערך תאריך שמייצג את התאריך והשעה הנוכחיים לפי שעון UTC.\n\n**ערך החזרה**: [Date](https://developers.arcgis.com/arcade/guide/types/#date)"
7211
+ "value": "**[מאז גרסה 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nReturns the time zone offset in minutes from UTC for the given Date.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - A Date value from which to get the time zone offset.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6546
7212
  }
6547
7213
  },
6548
7214
  "parametersInfo": {
6549
- "min": 0,
6550
- "max": 0
7215
+ "min": 1,
7216
+ "max": 1
6551
7217
  }
6552
7218
  },
6553
7219
  {
@@ -6631,7 +7297,7 @@
6631
7297
  "sinceVersion": "1.14",
6632
7298
  "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#week",
6633
7299
  "description": "מחזיר את מספר השבוע של התאריך הנתון. הערכים נעים בטווח 0-53, כאשר השבוע הראשון בשנה הוא '0' והשבוע האחרון בשנה הוא '51', '52' או '53', בהתאם לשנה. ייתכן שבשבוע הראשון ובשבוע האחרון אין שבעה ימים.",
6634
- "examples": "\n##### דוגמאות\n\nהשתמש בברירת המחדל לתחילת השבוע (יום ראשון)\n\n```arcade\nWeek( Date(1974,0,3) )\n// Returns 0\n```\n\nהגדר את תחילת השבוע ליום חמישי\n\n```arcade\nWeek( Date(1974,0,3), 4 )\n// Returns 1\n```\n\nהגדר את תחילת השבוע ליום שישי\n\n```arcade\nWeek( Date(1974,0,3), 5 )\n// Returns 0\n```\n\n\n\n```arcade\nWeek( Date(1945,8,23) )\n// Returns 38\n```\n\n\n\n```arcade\nWeek( Date(2022,7,20) )\n// Returns 33\n```\n\n",
7300
+ "examples": "\n##### דוגמאות\n\nהשתמש בברירת המחדל לתחילת השבוע (יום ראשון)\n\n```arcade\nWeek( Date(1974,0,3) )\n// Returns 0\n```\n\nהגדר את תחילת השבוע ליום חמישי\n\n```arcade\nWeek( Date(1974,0,3), 4 )\n// Returns 1\n```\n\nהגדר את תחילת השבוע ליום שישי\n\n```arcade\nWeek( Date(1974,0,3), 5 )\n// Returns 0\n```\n\n\n\n```arcade\nWeek( Date(1945,8,23) )\n// Returns 38\n```\n\n\n\n```arcade\nWeek( Date(2022,7,20) )\n// Returns 33\n```\n\nReturns the week from the DateOnly value\n\n```arcade\nWeek(DateOnly(1996, 11, 10))\n// returns 49\n```\n\n",
6635
7301
  "completion": {
6636
7302
  "label": "Week",
6637
7303
  "detail": "Week(dateValue, startDay?) -> Number",
@@ -6641,7 +7307,7 @@
6641
7307
  "kind": 3,
6642
7308
  "documentation": {
6643
7309
  "kind": "markdown",
6644
- "value": "**[מאז גרסה 1.14](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמחזיר את מספר השבוע של התאריך הנתון. הערכים נעים בטווח 0-53, כאשר השבוע הראשון בשנה הוא '0' והשבוע האחרון בשנה הוא '51', '52' או '53', בהתאם לשנה. ייתכן שבשבוע הראשון ובשבוע האחרון אין שבעה ימים.\n\n**פרמטרים**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - -ערך התאריך שממנו יתקבל השבוע.\n- **startDay** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - מספר שמייצג את היום הראשון בשבוע. ראשון = 0; שני = 1; שלישי = 2; רביעי = 3; חמישי = 4; שישי = 5; שבת = 6. ברירת המחדל היא '0' (יום ראשון).\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
7310
+ "value": "**[מאז גרסה 1.14](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nמחזיר את מספר השבוע של התאריך הנתון. הערכים נעים בטווח 0-53, כאשר השבוע הראשון בשנה הוא '0' והשבוע האחרון בשנה הוא '51', '52' או '53', בהתאם לשנה. ייתכן שבשבוע הראשון ובשבוע האחרון אין שבעה ימים.\n\n**פרמטרים**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) \\| DateOnly - -ערך התאריך שממנו יתקבל השבוע.\n- **startDay** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) - מספר שמייצג את היום הראשון בשבוע. ראשון = 0; שני = 1; שלישי = 2; רביעי = 3; חמישי = 4; שישי = 5; שבת = 6. ברירת המחדל היא '0' (יום ראשון).\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6645
7311
  }
6646
7312
  },
6647
7313
  "parametersInfo": {
@@ -6655,7 +7321,7 @@
6655
7321
  "bundle": "core",
6656
7322
  "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#weekday",
6657
7323
  "description": "מחזיר את היום בשבוע של התאריך הנתון. טווח הערכים הוא 0-6 כאשר ינואר הוא '0' ודצמבר הוא '6'.",
6658
- "examples": "\n##### דוגמה\n\nמחזיר את היום בשבוע של התאריך הנתון. מחזיר '3', עבור יום רביעי.\n\n```arcade\nWeekday(Date(1980, 11, 31))\n```\n\n",
7324
+ "examples": "\n##### דוגמאות\n\nמחזיר את היום בשבוע של התאריך הנתון. מחזיר '3', עבור יום רביעי.\n\n```arcade\nWeekday(Date(1980, 11, 31))\n```\n\nReturns the day of the week of the given DateOnly value.\n\n```arcade\nWeekday(DateOnly(1996, 11, 10))\n// returns 2, for Tuesday\n```\n\n",
6659
7325
  "completion": {
6660
7326
  "label": "Weekday",
6661
7327
  "detail": "Weekday(dateValue) -> Number",
@@ -6665,7 +7331,7 @@
6665
7331
  "kind": 3,
6666
7332
  "documentation": {
6667
7333
  "kind": "markdown",
6668
- "value": "מחזיר את היום בשבוע של התאריך הנתון. טווח הערכים הוא 0-6 כאשר ינואר הוא '0' ודצמבר הוא '6'.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו יוחזר היום בשבוע.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
7334
+ "value": "מחזיר את היום בשבוע של התאריך הנתון. טווח הערכים הוא 0-6 כאשר ינואר הוא '0' ודצמבר הוא '6'.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) \\| DateOnly - ערך התאריך שממנו יוחזר היום בשבוע.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6669
7335
  }
6670
7336
  },
6671
7337
  "parametersInfo": {
@@ -6679,7 +7345,7 @@
6679
7345
  "bundle": "core",
6680
7346
  "link": "https://developers.arcgis.com/arcade/function-reference/date_functions/#year",
6681
7347
  "description": "מחזיר את השנה של התאריך הנתון.",
6682
- "examples": "\n##### דוגמה\n\nמקבל את השנה של התאריך הנוכחי\n\n```arcade\nYear(Now())\n```\n\n",
7348
+ "examples": "\n##### דוגמאות\n\nמקבל את השנה של התאריך הנוכחי\n\n```arcade\nYear(Now())\n```\n\nGets the year of the given DateOnly value\n\n```arcade\nYear(DateOnly(1996, 11, 10))\n// returns 1996\n```\n\n",
6683
7349
  "completion": {
6684
7350
  "label": "Year",
6685
7351
  "detail": "Year(dateValue) -> Number",
@@ -6689,7 +7355,7 @@
6689
7355
  "kind": 3,
6690
7356
  "documentation": {
6691
7357
  "kind": "markdown",
6692
- "value": "מחזיר את השנה של התאריך הנתון.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) - ערך התאריך שממנו תתקבל השנה.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
7358
+ "value": "מחזיר את השנה של התאריך הנתון.\n\n**פרמטר**\n\n- **dateValue**: [Date](https://developers.arcgis.com/arcade/guide/types/#date) \\| DateOnly - ערך התאריך שממנו תתקבל השנה.\n\n**ערך החזרה**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"
6693
7359
  }
6694
7360
  },
6695
7361
  "parametersInfo": {